ref: fdc89f1a20889c0295534f58dc2e82ce8c55a18b
src/displayapp/screens/WatchFaceCasioStyleG7710.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
#pragma once #include <displayapp/screens/BatteryIcon.h> #include <lvgl/src/lv_core/lv_obj.h> #include <chrono> #include <cstdint> #include <memory> #include "displayapp/screens/Screen.h" #include "components/datetime/DateTimeController.h" #include "components/ble/BleController.h" namespace Pinetime { namespace Controllers { class Settings; class Battery; class Ble; class NotificationManager; class HeartRateController; class MotionController; } namespace Applications { namespace Screens { class WatchFaceCasioStyleG7710 : public Screen { public: WatchFaceCasioStyleG7710(DisplayApp* app, Controllers::DateTime& dateTimeController, Controllers::Battery& batteryController, Controllers::Ble& bleController, Controllers::NotificationManager& notificatioManager, Controllers::Settings& settingsController, Controllers::HeartRateController& heartRateController, Controllers::MotionController& motionController, Controllers::FS& filesystem); ~WatchFaceCasioStyleG7710() override; void Refresh() override; static bool IsAvailable(Pinetime::Controllers::FS& filesystem); private: uint8_t displayedHour = -1; uint8_t displayedMinute = -1; uint16_t currentYear = 1970; Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown; Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown; uint8_t currentDay = 0; DirtyValue<uint8_t> batteryPercentRemaining {}; DirtyValue<bool> powerPresent {}; DirtyValue<bool> bleState {}; DirtyValue<bool> bleRadioEnabled {}; DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime {}; DirtyValue<bool> motionSensorOk {}; DirtyValue<uint32_t> stepCount {}; DirtyValue<uint8_t> heartbeat {}; DirtyValue<bool> heartbeatRunning {}; DirtyValue<bool> notificationState {}; lv_point_t line_icons_points[3] {{0, 5}, {117, 5}, {122, 0}}; lv_point_t line_day_of_week_number_points[4] {{0, 0}, {100, 0}, {95, 95}, {0, 95}}; lv_point_t line_day_of_year_points[3] {{0, 5}, {130, 5}, {135, 0}}; lv_point_t line_date_points[3] {{0, 5}, {135, 5}, {140, 0}}; lv_point_t line_time_points[3] {{0, 0}, {230, 0}, {235, 5}}; lv_color_t color_text = lv_color_hex(0x98B69A); lv_style_t style_line; lv_style_t style_border; lv_obj_t* label_time; lv_obj_t* line_time; lv_obj_t* label_time_ampm; lv_obj_t* label_date; lv_obj_t* line_date; lv_obj_t* label_day_of_week; lv_obj_t* label_week_number; lv_obj_t* line_day_of_week_number; lv_obj_t* label_day_of_year; lv_obj_t* line_day_of_year; lv_obj_t* backgroundLabel; lv_obj_t* bleIcon; lv_obj_t* batteryPlug; lv_obj_t* label_battery_vallue; lv_obj_t* heartbeatIcon; lv_obj_t* heartbeatValue; lv_obj_t* stepIcon; lv_obj_t* stepValue; lv_obj_t* notificationIcon; lv_obj_t* line_icons; BatteryIcon batteryIcon; Controllers::DateTime& dateTimeController; Controllers::Battery& batteryController; Controllers::Ble& bleController; Controllers::NotificationManager& notificatioManager; Controllers::Settings& settingsController; Controllers::HeartRateController& heartRateController; Controllers::MotionController& motionController; lv_task_t* taskRefresh; lv_font_t* font_dot40 = nullptr; lv_font_t* font_segment40 = nullptr; lv_font_t* font_segment115 = nullptr; }; } } } |