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

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

namespace Pinetime {

  namespace Applications {
    namespace Screens {

      class SettingChimes : public Screen {
      public:
        struct Option {
          Controllers::Settings::ChimesOption chimesOption;
          const char* name;
        };

        SettingChimes(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
        ~SettingChimes() override;

        void UpdateSelected(lv_obj_t* object, lv_event_t event);

      private:
        static constexpr std::array<Option, 3> options = {{
          {Controllers::Settings::ChimesOption::None, " Off"},
          {Controllers::Settings::ChimesOption::Hours, " Every hour"},
          {Controllers::Settings::ChimesOption::HalfHours, " Every 30 mins"}
        }};

        lv_obj_t* cbOption[options.size()];

        Controllers::Settings& settingsController;
      };
    }
  }
}