2021-10-13 16:08:35 -04:00
|
|
|
#include "displayapp/screens/Clock.h"
|
2020-11-15 10:49:36 -05:00
|
|
|
|
|
|
|
#include <date/date.h>
|
|
|
|
#include <lvgl/lvgl.h>
|
|
|
|
#include "components/battery/BatteryController.h"
|
2021-03-31 13:47:27 -04:00
|
|
|
#include "components/motion/MotionController.h"
|
2020-11-15 10:49:36 -05:00
|
|
|
#include "components/ble/BleController.h"
|
2020-10-20 14:57:39 -04:00
|
|
|
#include "components/ble/NotificationManager.h"
|
2021-10-13 16:08:35 -04:00
|
|
|
#include "displayapp/DisplayApp.h"
|
|
|
|
#include "displayapp/screens/WatchFaceDigital.h"
|
|
|
|
#include "displayapp/screens/WatchFaceAnalog.h"
|
|
|
|
#include "displayapp/screens/PineTimeStyle.h"
|
2020-10-20 14:57:39 -04:00
|
|
|
|
2021-02-24 14:40:24 -05:00
|
|
|
using namespace Pinetime::Applications::Screens;
|
2020-02-16 12:32:36 -05:00
|
|
|
|
2020-02-23 10:14:03 -05:00
|
|
|
Clock::Clock(DisplayApp* app,
|
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)
|
|
|
|
: Screen(app),
|
|
|
|
dateTimeController {dateTimeController},
|
|
|
|
batteryController {batteryController},
|
|
|
|
bleController {bleController},
|
|
|
|
notificatioManager {notificatioManager},
|
|
|
|
settingsController {settingsController},
|
|
|
|
heartRateController {heartRateController},
|
2021-06-12 08:21:29 -04:00
|
|
|
motionController {motionController},
|
|
|
|
screen {[this, &settingsController]() {
|
|
|
|
switch (settingsController.GetClockFace()) {
|
|
|
|
case 0:
|
|
|
|
return WatchFaceDigitalScreen();
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
return WatchFaceAnalogScreen();
|
|
|
|
break;
|
2021-06-29 14:20:27 -04:00
|
|
|
case 2:
|
|
|
|
return PineTimeStyleScreen();
|
|
|
|
break;
|
2021-06-12 08:21:29 -04:00
|
|
|
}
|
|
|
|
return WatchFaceDigitalScreen();
|
|
|
|
}()} {
|
2021-04-18 13:28:14 -04:00
|
|
|
settingsController.SetAppMenu(0);
|
|
|
|
}
|
2020-02-16 12:32:36 -05:00
|
|
|
|
|
|
|
Clock::~Clock() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
2020-02-10 15:05:33 -05:00
|
|
|
}
|
2020-01-18 12:17:52 -05:00
|
|
|
|
2021-02-24 14:40:24 -05:00
|
|
|
bool Clock::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
2021-06-10 19:15:32 -04:00
|
|
|
return screen->OnTouchEvent(event);
|
2020-01-18 12:17:52 -05:00
|
|
|
}
|
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
std::unique_ptr<Screen> Clock::WatchFaceDigitalScreen() {
|
|
|
|
return std::make_unique<Screens::WatchFaceDigital>(app,
|
|
|
|
dateTimeController,
|
|
|
|
batteryController,
|
|
|
|
bleController,
|
|
|
|
notificatioManager,
|
|
|
|
settingsController,
|
|
|
|
heartRateController,
|
|
|
|
motionController);
|
2020-02-16 12:32:36 -05:00
|
|
|
}
|
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
std::unique_ptr<Screen> Clock::WatchFaceAnalogScreen() {
|
|
|
|
return std::make_unique<Screens::WatchFaceAnalog>(
|
|
|
|
app, dateTimeController, batteryController, bleController, notificatioManager, settingsController);
|
2020-02-23 07:44:39 -05:00
|
|
|
}
|
|
|
|
|
2021-06-29 14:20:27 -04:00
|
|
|
std::unique_ptr<Screen> Clock::PineTimeStyleScreen() {
|
|
|
|
return std::make_unique<Screens::PineTimeStyle>(app,
|
|
|
|
dateTimeController,
|
|
|
|
batteryController,
|
|
|
|
bleController,
|
|
|
|
notificatioManager,
|
|
|
|
settingsController,
|
|
|
|
motionController);
|
|
|
|
}
|