InfiniTime/src/displayapp/screens/Clock.h

53 lines
1.6 KiB
C
Raw Normal View History

#pragma once
2020-11-15 15:49:36 +00:00
#include <lvgl/src/lv_core/lv_obj.h>
#include <chrono>
2020-11-15 15:49:36 +00:00
#include <cstdint>
#include <memory>
#include <components/heartrate/HeartRateController.h>
#include "displayapp/screens/Screen.h"
2020-11-15 15:49:36 +00:00
#include "components/datetime/DateTimeController.h"
namespace Pinetime {
2020-11-15 15:49:36 +00:00
namespace Controllers {
class Settings;
2020-11-15 15:49:36 +00:00
class Battery;
class Ble;
class NotificationManager;
class MotionController;
2020-11-15 15:49:36 +00:00
}
namespace Applications {
namespace Screens {
2020-11-15 15:49:36 +00:00
class Clock : public Screen {
2021-04-24 09:00:45 +00:00
public:
Clock(DisplayApp* app,
Controllers::DateTime& dateTimeController,
Controllers::Battery& batteryController,
Controllers::Ble& bleController,
Controllers::NotificationManager& notificatioManager,
Controllers::Settings& settingsController,
Controllers::HeartRateController& heartRateController,
Controllers::MotionController& motionController);
~Clock() override;
bool OnTouchEvent(TouchEvents event) override;
2021-04-24 09:00:45 +00:00
private:
Controllers::DateTime& dateTimeController;
Controllers::Battery& batteryController;
Controllers::Ble& bleController;
Controllers::NotificationManager& notificatioManager;
Controllers::Settings& settingsController;
Controllers::HeartRateController& heartRateController;
Controllers::MotionController& motionController;
std::unique_ptr<Screen> screen;
std::unique_ptr<Screen> WatchFaceDigitalScreen();
std::unique_ptr<Screen> WatchFaceAnalogScreen();
std::unique_ptr<Screen> PineTimeStyleScreen();
};
}
}
}