summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Screen.h
blob: 6b1d0eec2d03c84b2b44cedf5f3e27cc9779eaff (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
#pragma once

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

namespace Pinetime {
  namespace Applications {
    class DisplayApp;
    namespace Screens {
      class Screen {
        public:
          explicit Screen(DisplayApp* app) : app{app} {}
          virtual ~Screen() = default;

          /**
           * Most of the time, apps only react to events (touch events, for example).
           * In this case you don't need to do anything in this method.
           *
           * For example, InfiniPaint does nothing in Refresh().
           * But, if you want to update your display periodically, draw an animation...
           * you cannot do it in a touch event handler because these handlers are not
           * called if the user does not touch the screen.
           *
           * That's why Refresh() is there: update the display periodically.
           *
           * @return false if the app can be closed, true if it must continue to run
           **/
          virtual bool Refresh() = 0;

          /** @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;
      };
    }
  }
}