aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/settings/SettingWeatherFormat.h
diff options
context:
space:
mode:
authorFintasticMan <finlay.neon.kid@gmail.com>2023-07-15 02:23:10 +0200
committerJF <JF002@users.noreply.github.com>2023-12-23 21:42:16 +0100
commitd889f3e4446107ce5bdd45c6791281e37cadf5b0 (patch)
treea0b7d59842dd0a1a97b524bc093bfe69948bd521 /src/displayapp/screens/settings/SettingWeatherFormat.h
parentc04813b6d303f4b341e5c7df885809913e83060a (diff)
settings: Add settings item for weather format
Diffstat (limited to 'src/displayapp/screens/settings/SettingWeatherFormat.h')
-rw-r--r--src/displayapp/screens/settings/SettingWeatherFormat.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/displayapp/screens/settings/SettingWeatherFormat.h b/src/displayapp/screens/settings/SettingWeatherFormat.h
new file mode 100644
index 00000000..a3d2bf4b
--- /dev/null
+++ b/src/displayapp/screens/settings/SettingWeatherFormat.h
@@ -0,0 +1,26 @@
+#pragma once
+
+#include <array>
+#include <cstdint>
+#include <lvgl/lvgl.h>
+
+#include "components/settings/Settings.h"
+#include "displayapp/screens/Screen.h"
+#include "displayapp/screens/CheckboxList.h"
+
+namespace Pinetime {
+
+ namespace Applications {
+ namespace Screens {
+
+ class SettingWeatherFormat : public Screen {
+ public:
+ explicit SettingWeatherFormat(Pinetime::Controllers::Settings& settingsController);
+ ~SettingWeatherFormat() override;
+
+ private:
+ CheckboxList checkboxList;
+ };
+ }
+ }
+}