#pragma once #include #include #include #include "displayapp/Controllers.h" #include "displayapp/screens/Screen.h" #include "displayapp/Apps.h" #include "Symbols.h" namespace Pinetime { namespace Controllers { class Settings; class Battery; class Ble; class NotificationManager; class MotionController; class DateTime; class HeartRateController; class WeatherService; class FS; } namespace Applications { namespace Screens { class Clock : public Screen { public: Clock(Controllers::DateTime& dateTimeController, const Controllers::Battery& batteryController, const Controllers::Ble& bleController, Controllers::NotificationManager& notificationManager, Controllers::Settings& settingsController, Controllers::HeartRateController& heartRateController, Controllers::MotionController& motionController, Controllers::WeatherService& weatherService, Controllers::FS& filesystem); ~Clock() override; bool OnTouchEvent(TouchEvents event) override; bool OnButtonPushed() override; private: Controllers::DateTime& dateTimeController; const Controllers::Battery& batteryController; const Controllers::Ble& bleController; Controllers::NotificationManager& notificationManager; Controllers::Settings& settingsController; Controllers::HeartRateController& heartRateController; Controllers::MotionController& motionController; Controllers::WeatherService& weatherService; Controllers::FS& filesystem; std::unique_ptr screen; std::unique_ptr WatchFaceDigitalScreen(); std::unique_ptr WatchFaceAnalogScreen(); std::unique_ptr WatchFacePineTimeStyleScreen(); std::unique_ptr WatchFaceTerminalScreen(); std::unique_ptr WatchFaceInfineatScreen(); std::unique_ptr WatchFaceCasioStyleG7710(); }; } } }