summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Clock.h
diff options
context:
space:
mode:
authorJoaquim <joaquim.org@gmail.com>2021-02-24 19:40:24 +0000
committerJoaquim <joaquim.org@gmail.com>2021-02-24 19:40:24 +0000
commit8c53d0b70baa03c2b07360444a7cd0ad99bb8381 (patch)
tree52585926f2abc810b2b93475dfb2580e6ea19f85 /src/displayapp/screens/Clock.h
parentc18f4e5811dbd388e3b4acc29b1fab68279ec405 (diff)
Multi face support, analog clock, 12/24 config
Diffstat (limited to 'src/displayapp/screens/Clock.h')
-rw-r--r--src/displayapp/screens/Clock.h69
1 files changed, 15 insertions, 54 deletions
diff --git a/src/displayapp/screens/Clock.h b/src/displayapp/screens/Clock.h
index 18d70532..2b1be4ac 100644
--- a/src/displayapp/screens/Clock.h
+++ b/src/displayapp/screens/Clock.h
@@ -5,38 +5,22 @@
#include <cstdint>
#include <memory>
#include "Screen.h"
+#include "ScreenList.h"
#include "components/datetime/DateTimeController.h"
namespace Pinetime {
+ namespace Drivers {
+ class BMA421;
+ }
namespace Controllers {
+ class Settings;
class Battery;
class Ble;
class NotificationManager;
- class HeartRateController;
}
namespace Applications {
namespace Screens {
-
- template <class T>
- class DirtyValue {
- public:
- DirtyValue() = default; // Use NSDMI
- explicit DirtyValue(T const& v):value{v}{} // Use MIL and const-lvalue-ref
- bool IsUpdated() const { return isUpdated; }
- T const& Get() { this->isUpdated = false; return value; } // never expose a non-const lvalue-ref
- DirtyValue& operator=(const T& other) {
- if (this->value != other) {
- this->value = other;
- this->isUpdated = true;
- }
- return *this;
- }
- private:
- T value{}; // NSDMI - default initialise type
- bool isUpdated{true}; // NSDMI - use brace initilisation
- };
-
class Clock : public Screen {
public:
Clock(DisplayApp* app,
@@ -44,53 +28,30 @@ namespace Pinetime {
Controllers::Battery& batteryController,
Controllers::Ble& bleController,
Controllers::NotificationManager& notificatioManager,
+ Controllers::Settings &settingsController,
Controllers::HeartRateController& heartRateController);
~Clock() override;
bool Refresh() override;
bool OnButtonPushed() override;
+ bool OnTouchEvent(TouchEvents event) override;
- void OnObjectEvent(lv_obj_t *pObj, lv_event_t i);
private:
- static const char* MonthToString(Pinetime::Controllers::DateTime::Months month);
- static const char* DayOfWeekToString(Pinetime::Controllers::DateTime::Days dayOfWeek);
- static char const *DaysString[];
- static char const *MonthsString[];
-
- char displayedChar[5];
-
- uint16_t currentYear = 1970;
- Pinetime::Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
- Pinetime::Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown;
- uint8_t currentDay = 0;
-
- DirtyValue<int> batteryPercentRemaining {};
- DirtyValue<bool> bleState {};
- DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime{};
- DirtyValue<uint32_t> stepCount {};
- DirtyValue<uint8_t> heartbeat {};
- DirtyValue<bool> heartbeatRunning {};
- DirtyValue<bool> notificationState {};
-
- lv_obj_t* label_time;
- lv_obj_t* label_date;
- lv_obj_t* backgroundLabel;
- lv_obj_t* batteryIcon;
- lv_obj_t* bleIcon;
- lv_obj_t* batteryPlug;
- lv_obj_t* heartbeatIcon;
- lv_obj_t* heartbeatValue;
- lv_obj_t* heartbeatBpm;
- lv_obj_t* stepIcon;
- lv_obj_t* stepValue;
- lv_obj_t* notificationIcon;
Controllers::DateTime& dateTimeController;
Controllers::Battery& batteryController;
Controllers::Ble& bleController;
Controllers::NotificationManager& notificatioManager;
+ Controllers::Settings& settingsController;
Controllers::HeartRateController& heartRateController;
+
+ ScreenList<2> screens;
+ std::unique_ptr<Screen> WatchFaceDigitalScreen();
+ std::unique_ptr<Screen> WatchFaceAnalogScreen();
+ std::unique_ptr<Screen> WatchFaceMinimalScreen();
+ std::unique_ptr<Screen> WatchFaceCustomScreen();
+
bool running = true;
};