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

#include <cstdint>
#include <lvgl/lvgl.h>
#include "components/datetime/DateTimeController.h"
#include "displayapp/screens/Screen.h"

namespace Pinetime {
  namespace Applications {
    namespace Screens {
      class SettingSetDate : public Screen {
      public:
        SettingSetDate(DisplayApp* app, Pinetime::Controllers::DateTime& dateTimeController);
        ~SettingSetDate() override;

        void HandleButtonPress(lv_obj_t* object, lv_event_t event);

      private:
        Controllers::DateTime& dateTimeController;

        int dayValue;
        int monthValue;
        int yearValue;
        lv_obj_t* lblDay;
        lv_obj_t* lblMonth;
        lv_obj_t* lblYear;
        lv_obj_t* btnDayPlus;
        lv_obj_t* btnDayMinus;
        lv_obj_t* btnMonthPlus;
        lv_obj_t* btnMonthMinus;
        lv_obj_t* btnYearPlus;
        lv_obj_t* btnYearMinus;
        lv_obj_t* btnSetTime;

        int MaximumDayOfMonth() const;
        void CheckDay();
        void UpdateMonthLabel();
      };
    }
  }
}