summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Screen.h
blob: 30de2adcf4aba0f6e79deefa90b6cd7b739917d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#pragma once

#include <cstdint>
#include "../TouchEvents.h"
#include <lvgl/lvgl.h>

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 {
      private:
        virtual void Refresh() {
        }

      public:
        explicit Screen(DisplayApp* app) : app {app} {
        }
        virtual ~Screen() = default;

        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 */
        virtual bool OnTouchEvent(TouchEvents event) {
          return false;
        }
        virtual bool OnTouchEvent(uint16_t x, uint16_t y) {
          return false;
        }

      protected:
        DisplayApp* app;
        bool running = true;
      };
    }
  }
}