2021-06-29 18:20:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
|
|
|
#include <chrono>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2021-12-06 09:29:14 +00:00
|
|
|
#include "displayapp/Colors.h"
|
2021-06-29 18:20:27 +00:00
|
|
|
#include "components/datetime/DateTimeController.h"
|
2021-12-24 02:30:14 +00:00
|
|
|
#include "components/ble/BleController.h"
|
2022-04-07 14:28:04 +00:00
|
|
|
#include <displayapp/screens/BatteryIcon.h>
|
2021-06-29 18:20:27 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class Settings;
|
|
|
|
class Battery;
|
|
|
|
class Ble;
|
|
|
|
class NotificationManager;
|
|
|
|
class HeartRateController;
|
2021-11-29 22:36:56 +00:00
|
|
|
class MotionController;
|
2021-06-29 18:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
2022-03-12 16:55:54 +00:00
|
|
|
class WatchFacePineTimeStyle : public Screen {
|
2021-06-29 18:20:27 +00:00
|
|
|
public:
|
2022-03-12 16:55:54 +00:00
|
|
|
WatchFacePineTimeStyle(DisplayApp* app,
|
2022-05-09 15:16:08 +00:00
|
|
|
Controllers::DateTime& dateTimeController,
|
|
|
|
Controllers::Battery& batteryController,
|
|
|
|
Controllers::Ble& bleController,
|
|
|
|
Controllers::NotificationManager& notificatioManager,
|
|
|
|
Controllers::Settings& settingsController,
|
|
|
|
Controllers::MotionController& motionController);
|
2022-03-12 16:55:54 +00:00
|
|
|
~WatchFacePineTimeStyle() override;
|
2021-06-29 18:20:27 +00:00
|
|
|
|
2021-10-03 18:01:46 +00:00
|
|
|
bool OnTouchEvent(TouchEvents event) override;
|
2021-11-13 11:02:00 +00:00
|
|
|
bool OnButtonPushed() override;
|
2021-10-03 18:01:46 +00:00
|
|
|
|
2021-07-19 13:26:12 +00:00
|
|
|
void Refresh() override;
|
2021-06-29 18:20:27 +00:00
|
|
|
|
2022-05-09 15:16:08 +00:00
|
|
|
void UpdateSelected(lv_obj_t* object, lv_event_t event);
|
2021-10-03 18:01:46 +00:00
|
|
|
|
2021-06-29 18:20:27 +00:00
|
|
|
private:
|
2022-01-20 14:04:26 +00:00
|
|
|
uint8_t displayedHour = -1;
|
|
|
|
uint8_t displayedMinute = -1;
|
2021-06-29 18:20:27 +00:00
|
|
|
|
|
|
|
uint16_t currentYear = 1970;
|
2021-12-24 02:30:14 +00:00
|
|
|
Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
|
|
|
|
Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown;
|
2021-06-29 18:20:27 +00:00
|
|
|
uint8_t currentDay = 0;
|
2021-10-03 18:01:46 +00:00
|
|
|
uint32_t savedTick = 0;
|
2021-06-29 18:20:27 +00:00
|
|
|
|
2021-07-11 14:55:06 +00:00
|
|
|
DirtyValue<uint8_t> batteryPercentRemaining {};
|
2021-09-03 11:35:38 +00:00
|
|
|
DirtyValue<bool> isCharging {};
|
2022-02-20 14:40:49 +00:00
|
|
|
DirtyValue<bool> bleState {};
|
|
|
|
DirtyValue<bool> bleRadioEnabled {};
|
2021-06-29 18:20:27 +00:00
|
|
|
DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime {};
|
|
|
|
DirtyValue<bool> motionSensorOk {};
|
|
|
|
DirtyValue<uint32_t> stepCount {};
|
|
|
|
DirtyValue<bool> notificationState {};
|
|
|
|
|
2021-11-13 11:11:32 +00:00
|
|
|
static Pinetime::Controllers::Settings::Colors GetNext(Controllers::Settings::Colors color);
|
|
|
|
static Pinetime::Controllers::Settings::Colors GetPrevious(Controllers::Settings::Colors color);
|
2021-10-03 18:01:46 +00:00
|
|
|
|
|
|
|
lv_obj_t* btnNextTime;
|
|
|
|
lv_obj_t* btnPrevTime;
|
|
|
|
lv_obj_t* btnNextBar;
|
|
|
|
lv_obj_t* btnPrevBar;
|
|
|
|
lv_obj_t* btnNextBG;
|
|
|
|
lv_obj_t* btnPrevBG;
|
|
|
|
lv_obj_t* btnReset;
|
|
|
|
lv_obj_t* btnRandom;
|
|
|
|
lv_obj_t* btnClose;
|
2021-06-29 18:20:27 +00:00
|
|
|
lv_obj_t* timebar;
|
|
|
|
lv_obj_t* sidebar;
|
|
|
|
lv_obj_t* timeDD1;
|
|
|
|
lv_obj_t* timeDD2;
|
|
|
|
lv_obj_t* timeAMPM;
|
|
|
|
lv_obj_t* dateDayOfWeek;
|
|
|
|
lv_obj_t* dateDay;
|
|
|
|
lv_obj_t* dateMonth;
|
2022-04-07 14:28:04 +00:00
|
|
|
lv_obj_t* plugIcon;
|
2021-06-29 18:20:27 +00:00
|
|
|
lv_obj_t* bleIcon;
|
|
|
|
lv_obj_t* calendarOuter;
|
|
|
|
lv_obj_t* calendarInner;
|
|
|
|
lv_obj_t* calendarBar1;
|
|
|
|
lv_obj_t* calendarBar2;
|
|
|
|
lv_obj_t* calendarCrossBar1;
|
|
|
|
lv_obj_t* calendarCrossBar2;
|
|
|
|
lv_obj_t* notificationIcon;
|
|
|
|
lv_obj_t* stepGauge;
|
2021-10-03 18:01:46 +00:00
|
|
|
lv_obj_t* btnSet;
|
|
|
|
lv_obj_t* lbl_btnSet;
|
2021-06-29 18:20:27 +00:00
|
|
|
lv_color_t needle_colors[1];
|
|
|
|
|
2022-04-07 14:28:04 +00:00
|
|
|
BatteryIcon batteryIcon;
|
|
|
|
|
2021-06-29 18:20:27 +00:00
|
|
|
Controllers::DateTime& dateTimeController;
|
|
|
|
Controllers::Battery& batteryController;
|
|
|
|
Controllers::Ble& bleController;
|
|
|
|
Controllers::NotificationManager& notificatioManager;
|
|
|
|
Controllers::Settings& settingsController;
|
|
|
|
Controllers::MotionController& motionController;
|
2021-07-19 13:26:12 +00:00
|
|
|
|
2021-09-03 11:35:38 +00:00
|
|
|
void SetBatteryIcon();
|
2021-11-13 11:02:00 +00:00
|
|
|
void CloseMenu();
|
2021-12-06 21:01:49 +00:00
|
|
|
void AlignIcons();
|
2021-09-03 11:35:38 +00:00
|
|
|
|
2021-07-19 13:26:12 +00:00
|
|
|
lv_task_t* taskRefresh;
|
2021-06-29 18:20:27 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2021-11-13 11:02:00 +00:00
|
|
|
}
|