2020-01-18 12:17:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
2020-01-18 12:17:52 -05:00
|
|
|
#include <chrono>
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2020-01-18 12:17:52 -05:00
|
|
|
#include "Screen.h"
|
2021-02-24 14:40:24 -05:00
|
|
|
#include "ScreenList.h"
|
2020-11-15 10:49:36 -05:00
|
|
|
#include "components/datetime/DateTimeController.h"
|
2020-01-18 12:17:52 -05:00
|
|
|
|
|
|
|
namespace Pinetime {
|
2021-02-24 14:40:24 -05:00
|
|
|
namespace Drivers {
|
|
|
|
class BMA421;
|
|
|
|
}
|
2020-11-15 10:49:36 -05:00
|
|
|
namespace Controllers {
|
2021-02-24 14:40:24 -05:00
|
|
|
class Settings;
|
2020-11-15 10:49:36 -05:00
|
|
|
class Battery;
|
|
|
|
class Ble;
|
|
|
|
class NotificationManager;
|
2021-03-31 13:47:27 -04:00
|
|
|
class MotionController;
|
2020-11-15 10:49:36 -05:00
|
|
|
}
|
|
|
|
|
2020-01-18 12:17:52 -05:00
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
2020-11-15 10:49:36 -05:00
|
|
|
class Clock : public Screen {
|
2021-04-24 05:00:45 -04:00
|
|
|
public:
|
2021-04-18 13:28:14 -04:00
|
|
|
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 Refresh() override;
|
|
|
|
|
|
|
|
bool OnTouchEvent(TouchEvents event) override;
|
|
|
|
|
2021-04-24 05:00:45 -04:00
|
|
|
private:
|
2021-04-18 13:28:14 -04:00
|
|
|
Controllers::DateTime& dateTimeController;
|
|
|
|
Controllers::Battery& batteryController;
|
|
|
|
Controllers::Ble& bleController;
|
|
|
|
Controllers::NotificationManager& notificatioManager;
|
|
|
|
Controllers::Settings& settingsController;
|
|
|
|
Controllers::HeartRateController& heartRateController;
|
|
|
|
Controllers::MotionController& motionController;
|
|
|
|
|
2021-05-18 11:45:16 -04:00
|
|
|
ScreenList<2> screens;
|
2021-04-18 13:28:14 -04:00
|
|
|
std::unique_ptr<Screen> WatchFaceDigitalScreen();
|
|
|
|
std::unique_ptr<Screen> WatchFaceAnalogScreen();
|
|
|
|
|
|
|
|
// Examples for more watch faces
|
|
|
|
// std::unique_ptr<Screen> WatchFaceMinimalScreen();
|
|
|
|
// std::unique_ptr<Screen> WatchFaceCustomScreen();
|
2020-01-18 12:17:52 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|