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

#include <lvgl/lvgl.h>
#include <cstdint>
#include <memory>
#include "Modal.h"
#include "Screen.h"
#include "../Apps.h"

namespace Pinetime {
  namespace Applications {
    namespace Screens {
      class Tile : public Screen {
        public:
          struct Applications {
            const char* icon;
            Pinetime::Applications::Apps application;
          };

          explicit Tile(DisplayApp* app, std::array<Applications, 6>& applications);
          ~Tile() override;

          bool Refresh() override;
          bool OnButtonPushed() override;

          void OnObjectEvent(lv_obj_t* obj, lv_event_t event, uint32_t buttonId);

        private:
          lv_obj_t * btnm1;
          bool running = true;

          const char* btnm_map1[8];
          Pinetime::Applications::Apps apps[6];
      };
    }
  }
}