summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/settings/SettingPineTimeStyle.h
blob: 397bd86d46d26871c0ee05c5acc714436b6e134a (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
#pragma once

#include <cstdint>
#include <lvgl/lvgl.h>
#include "components/settings/Settings.h"
#include "displayapp/screens/Screen.h"

namespace Pinetime {

  namespace Applications {
    namespace Screens {

      class SettingPineTimeStyle : public Screen{
        public:
          SettingPineTimeStyle(DisplayApp* app, Pinetime::Controllers::Settings &settingsController);
          ~SettingPineTimeStyle() override;

          void UpdateSelected(lv_obj_t *object, lv_event_t event);
         
        private:          
          Controllers::Settings& settingsController;

          Pinetime::Controllers::Settings::Colors GetNext(Controllers::Settings::Colors color);
          Pinetime::Controllers::Settings::Colors GetPrevious(Controllers::Settings::Colors color);

          lv_obj_t * btnNextTime;
          lv_obj_t * btnPrevTime;
          lv_obj_t * btnNextBar;
          lv_obj_t * btnPrevBar;
          lv_obj_t * btnNextBG;
          lv_obj_t * btnPrevBG;
          lv_obj_t * btnReset;
          lv_obj_t * btnRandom;
          lv_obj_t * timebar;
          lv_obj_t * sidebar;
          lv_obj_t * timeDD1;
          lv_obj_t * timeDD2;
          lv_obj_t * timeAMPM;
          lv_obj_t * dateDayOfWeek;
          lv_obj_t * dateDay;
          lv_obj_t * dateMonth;
          lv_obj_t * backgroundLabel;
          lv_obj_t * batteryIcon;
          lv_obj_t * bleIcon;
          lv_obj_t * calendarOuter;
          lv_obj_t * calendarInner;
          lv_obj_t * calendarBar1;
          lv_obj_t * calendarBar2;
          lv_obj_t * calendarCrossBar1;
          lv_obj_t * calendarCrossBar2;
          lv_obj_t * stepGauge;
          lv_color_t needle_colors[1];
      };
    }
  }
}