aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/Screen.h
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-03-20 11:27:16 +0100
committerGitHub <noreply@github.com>2021-03-20 11:27:16 +0100
commit9e9bb2085e70a9c8b8c2e74f6027f5392e366158 (patch)
tree0549cf49f95f6142af862063f46750ea994a8941 /src/displayapp/screens/Screen.h
parentada942535718d48eec37cca4f50d678e7201dc67 (diff)
parent282e34dca14ddc799b9511643e50a4f9023003ed (diff)
Merge pull request #217 from joaquimorg/MultiFaceClock
Multi face support, analog clock, 12/24 config
Diffstat (limited to 'src/displayapp/screens/Screen.h')
-rw-r--r--src/displayapp/screens/Screen.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/displayapp/screens/Screen.h b/src/displayapp/screens/Screen.h
index 6b1d0eec..638dac99 100644
--- a/src/displayapp/screens/Screen.h
+++ b/src/displayapp/screens/Screen.h
@@ -7,6 +7,26 @@ namespace Pinetime {
namespace Applications {
class DisplayApp;
namespace Screens {
+
+ template <class T>
+ class DirtyValue {
+ public:
+ DirtyValue() = default; // Use NSDMI
+ explicit DirtyValue(T const& v):value{v}{} // Use MIL and const-lvalue-ref
+ bool IsUpdated() const { return isUpdated; }
+ 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;
+ }
+ private:
+ T value{}; // NSDMI - default initialise type
+ bool isUpdated{true}; // NSDMI - use brace initilisation
+ };
+
class Screen {
public:
explicit Screen(DisplayApp* app) : app{app} {}