InfiniTime/src/displayapp/screens/Screen.h

78 lines
1.9 KiB
C
Raw Normal View History

#pragma once
2020-08-21 09:55:59 +00:00
#include <cstdint>
#include "displayapp/TouchEvents.h"
2021-07-19 13:26:12 +00:00
#include <lvgl/lvgl.h>
namespace Pinetime {
namespace Applications {
class DisplayApp;
namespace Screens {
template <class T> class DirtyValue {
2021-04-24 09:00:45 +00:00
public:
DirtyValue() = default; // Use NSDMI
explicit DirtyValue(T const& v) : value {v} {
} // Use MIL and const-lvalue-ref
2021-07-13 18:09:04 +00:00
bool IsUpdated() {
if (this->isUpdated) {
this->isUpdated = false;
return true;
}
return false;
}
T const& Get() {
this->isUpdated = false;
return value;
} // never expose a non-const lvalue-ref
DirtyValue& operator=(const T& other) {
if (this->value != other) {
this->value = other;
this->isUpdated = true;
}
return *this;
}
2021-04-24 09:00:45 +00:00
private:
T value {}; // NSDMI - default initialise type
bool isUpdated {true}; // NSDMI - use brace initilisation
};
class Screen {
2021-07-19 13:26:12 +00:00
private:
virtual void Refresh() {
}
2021-04-24 09:00:45 +00:00
public:
explicit Screen(DisplayApp* app) : app {app} {
}
virtual ~Screen() = default;
2021-07-19 13:26:12 +00:00
static void RefreshTaskCallback(lv_task_t* task);
bool IsRunning() const {
return running;
}
/** @return false if the button hasn't been handled by the app, true if it has been handled */
virtual bool OnButtonPushed() {
return false;
}
/** @return false if the event hasn't been handled by the app, true if it has been handled */
2021-07-15 21:07:55 +00:00
// Returning true will cancel lvgl tap
virtual bool OnTouchEvent(TouchEvents event) {
return false;
}
virtual bool OnTouchEvent(uint16_t x, uint16_t y) {
return false;
}
2021-04-24 09:00:45 +00:00
protected:
DisplayApp* app;
bool running = true;
};
}
}
}