Merge branch 'pts-options' of github.com:kieranc/InfiniTime into kieranc-pts-options
# Conflicts: # src/components/settings/Settings.h
This commit is contained in:
commit
738c012a73
|
@ -37,10 +37,13 @@ namespace Pinetime {
|
||||||
Orange,
|
Orange,
|
||||||
Pink
|
Pink
|
||||||
};
|
};
|
||||||
|
enum class PTSGaugeStyle : uint8_t { Full, Half, Numeric };
|
||||||
|
|
||||||
struct PineTimeStyle {
|
struct PineTimeStyle {
|
||||||
Colors ColorTime = Colors::Teal;
|
Colors ColorTime = Colors::Teal;
|
||||||
Colors ColorBar = Colors::Teal;
|
Colors ColorBar = Colors::Teal;
|
||||||
Colors ColorBG = Colors::Black;
|
Colors ColorBG = Colors::Black;
|
||||||
|
PTSGaugeStyle gaugeStyle = PTSGaugeStyle::Full;
|
||||||
};
|
};
|
||||||
struct WatchFaceInfineat {
|
struct WatchFaceInfineat {
|
||||||
bool showSideCover = true;
|
bool showSideCover = true;
|
||||||
|
@ -119,6 +122,15 @@ namespace Pinetime {
|
||||||
return settings.watchFaceInfineat.colorIndex;
|
return settings.watchFaceInfineat.colorIndex;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void SetPTSGaugeStyle(PTSGaugeStyle gaugeStyle) {
|
||||||
|
if (gaugeStyle != settings.PTS.gaugeStyle)
|
||||||
|
settingsChanged = true;
|
||||||
|
settings.PTS.gaugeStyle = gaugeStyle;
|
||||||
|
};
|
||||||
|
PTSGaugeStyle GetPTSGaugeStyle() const {
|
||||||
|
return settings.PTS.gaugeStyle;
|
||||||
|
};
|
||||||
|
|
||||||
void SetAppMenu(uint8_t menu) {
|
void SetAppMenu(uint8_t menu) {
|
||||||
appMenu = menu;
|
appMenu = menu;
|
||||||
};
|
};
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"sources": [
|
"sources": [
|
||||||
{
|
{
|
||||||
"file": "material-design-icons/MaterialIcons-Regular.ttf",
|
"file": "material-design-icons/MaterialIcons-Regular.ttf",
|
||||||
"range": "0xf00b, 0xe3aa-0xe3ac, 0xe7f6-0xe7f7, 0xe8b8, 0xef44"
|
"range": "0xf00b, 0xe3aa-0xe3ac, 0xe7f6-0xe7f7, 0xe8b8, 0xef44, 0xe40a"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"bpp": 1,
|
"bpp": 1,
|
||||||
|
|
|
@ -50,6 +50,7 @@ namespace Pinetime {
|
||||||
static constexpr const char* notificationsOn = "\xEE\x9F\xB7";
|
static constexpr const char* notificationsOn = "\xEE\x9F\xB7";
|
||||||
|
|
||||||
static constexpr const char* flashlight = "\xEF\x80\x8B";
|
static constexpr const char* flashlight = "\xEF\x80\x8B";
|
||||||
|
static constexpr const char* paintbrushLg = "\xEE\x90\x8A";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,13 +172,23 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app,
|
||||||
}
|
}
|
||||||
stepGauge = lv_gauge_create(lv_scr_act(), nullptr);
|
stepGauge = lv_gauge_create(lv_scr_act(), nullptr);
|
||||||
lv_gauge_set_needle_count(stepGauge, 1, needle_colors);
|
lv_gauge_set_needle_count(stepGauge, 1, needle_colors);
|
||||||
lv_obj_set_size(stepGauge, 40, 40);
|
|
||||||
lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
|
||||||
lv_gauge_set_scale(stepGauge, 360, 11, 0);
|
|
||||||
lv_gauge_set_angle_offset(stepGauge, 180);
|
|
||||||
lv_gauge_set_critical_value(stepGauge, 100);
|
|
||||||
lv_gauge_set_range(stepGauge, 0, 100);
|
lv_gauge_set_range(stepGauge, 0, 100);
|
||||||
lv_gauge_set_value(stepGauge, 0, 0);
|
lv_gauge_set_value(stepGauge, 0, 0);
|
||||||
|
if (settingsController.GetPTSGaugeStyle() == Pinetime::Controllers::Settings::PTSGaugeStyle::Full) {
|
||||||
|
lv_obj_set_size(stepGauge, 40, 40);
|
||||||
|
lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
||||||
|
lv_gauge_set_scale(stepGauge, 360, 11, 0);
|
||||||
|
lv_gauge_set_angle_offset(stepGauge, 180);
|
||||||
|
lv_gauge_set_critical_value(stepGauge, 100);
|
||||||
|
} else if (settingsController.GetPTSGaugeStyle() == Pinetime::Controllers::Settings::PTSGaugeStyle::Half) {
|
||||||
|
lv_obj_set_size(stepGauge, 37, 37);
|
||||||
|
lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, -10);
|
||||||
|
lv_gauge_set_scale(stepGauge, 180, 5, 0);
|
||||||
|
lv_gauge_set_angle_offset(stepGauge, 0);
|
||||||
|
lv_gauge_set_critical_value(stepGauge, 120);
|
||||||
|
} else if (settingsController.GetPTSGaugeStyle() == Pinetime::Controllers::Settings::PTSGaugeStyle::Numeric) {
|
||||||
|
lv_obj_set_hidden(stepGauge, true);
|
||||||
|
}
|
||||||
|
|
||||||
lv_obj_set_style_local_pad_right(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
|
lv_obj_set_style_local_pad_right(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
|
||||||
lv_obj_set_style_local_pad_left(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
|
lv_obj_set_style_local_pad_left(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, 3);
|
||||||
|
@ -191,6 +201,37 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app,
|
||||||
lv_obj_set_style_local_line_width(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 3);
|
lv_obj_set_style_local_line_width(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 3);
|
||||||
lv_obj_set_style_local_pad_inner(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
|
lv_obj_set_style_local_pad_inner(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
|
||||||
|
|
||||||
|
stepValue = lv_label_create(lv_scr_act(), nullptr);
|
||||||
|
lv_obj_set_style_local_text_color(stepValue, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
|
||||||
|
lv_label_set_text_static(stepValue, "0");
|
||||||
|
lv_obj_align(stepValue, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
||||||
|
if (settingsController.GetPTSGaugeStyle() == Pinetime::Controllers::Settings::PTSGaugeStyle::Numeric) {
|
||||||
|
lv_obj_set_hidden(stepValue, false);
|
||||||
|
} else {
|
||||||
|
lv_obj_set_hidden(stepValue, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
stepIcon = lv_label_create(lv_scr_act(), nullptr);
|
||||||
|
lv_obj_set_style_local_text_color(stepIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
|
||||||
|
lv_label_set_text_static(stepIcon, Symbols::shoe);
|
||||||
|
lv_obj_align(stepIcon, stepValue, LV_ALIGN_OUT_TOP_MID, 0, 0);
|
||||||
|
if (settingsController.GetPTSGaugeStyle() == Pinetime::Controllers::Settings::PTSGaugeStyle::Numeric) {
|
||||||
|
lv_obj_set_hidden(stepIcon, false);
|
||||||
|
} else {
|
||||||
|
lv_obj_set_hidden(stepIcon, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Display seconds
|
||||||
|
timeDD3 = lv_label_create(lv_scr_act(), nullptr);
|
||||||
|
lv_obj_set_style_local_text_color(timeDD3, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
|
||||||
|
lv_label_set_text_static(timeDD3, ":00");
|
||||||
|
lv_obj_align(timeDD3, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
||||||
|
if (settingsController.GetPTSGaugeStyle() == Pinetime::Controllers::Settings::PTSGaugeStyle::Half) {
|
||||||
|
lv_obj_set_hidden(timeDD3, false);
|
||||||
|
} else {
|
||||||
|
lv_obj_set_hidden(timeDD3, true);
|
||||||
|
}
|
||||||
|
|
||||||
btnNextTime = lv_btn_create(lv_scr_act(), nullptr);
|
btnNextTime = lv_btn_create(lv_scr_act(), nullptr);
|
||||||
btnNextTime->user_data = this;
|
btnNextTime->user_data = this;
|
||||||
lv_obj_set_size(btnNextTime, 60, 60);
|
lv_obj_set_size(btnNextTime, 60, 60);
|
||||||
|
@ -281,18 +322,38 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app,
|
||||||
lv_obj_set_event_cb(btnClose, event_handler);
|
lv_obj_set_event_cb(btnClose, event_handler);
|
||||||
lv_obj_set_hidden(btnClose, true);
|
lv_obj_set_hidden(btnClose, true);
|
||||||
|
|
||||||
btnSet = lv_btn_create(lv_scr_act(), nullptr);
|
btnSteps = lv_btn_create(lv_scr_act(), nullptr);
|
||||||
btnSet->user_data = this;
|
btnSteps->user_data = this;
|
||||||
lv_obj_set_height(btnSet, 150);
|
lv_obj_set_size(btnSteps, 160, 60);
|
||||||
lv_obj_set_width(btnSet, 150);
|
lv_obj_align(btnSteps, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
||||||
lv_obj_align(btnSet, lv_scr_act(), LV_ALIGN_CENTER, 0, 0);
|
lv_obj_set_style_local_bg_opa(btnSteps, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
|
||||||
lv_obj_set_style_local_radius(btnSet, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 30);
|
lv_obj_set_style_local_value_str(btnSteps, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "Steps style");
|
||||||
lv_obj_set_style_local_bg_opa(btnSet, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
|
lv_obj_set_event_cb(btnSteps, event_handler);
|
||||||
lv_obj_set_event_cb(btnSet, event_handler);
|
lv_obj_set_hidden(btnSteps, true);
|
||||||
lbl_btnSet = lv_label_create(btnSet, nullptr);
|
|
||||||
lv_obj_set_style_local_text_font(lbl_btnSet, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48);
|
btnSetColor = lv_btn_create(lv_scr_act(), nullptr);
|
||||||
lv_label_set_text_static(lbl_btnSet, Symbols::settings);
|
btnSetColor->user_data = this;
|
||||||
lv_obj_set_hidden(btnSet, true);
|
lv_obj_set_size(btnSetColor, 150, 60);
|
||||||
|
lv_obj_align(btnSetColor, lv_scr_act(), LV_ALIGN_CENTER, 0, -40);
|
||||||
|
lv_obj_set_style_local_radius(btnSetColor, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 20);
|
||||||
|
lv_obj_set_style_local_bg_opa(btnSetColor, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
|
||||||
|
lv_obj_set_event_cb(btnSetColor, event_handler);
|
||||||
|
lbl_btnSetColor = lv_label_create(btnSetColor, nullptr);
|
||||||
|
lv_obj_set_style_local_text_font(lbl_btnSetColor, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48);
|
||||||
|
lv_label_set_text_static(lbl_btnSetColor, Symbols::paintbrushLg);
|
||||||
|
lv_obj_set_hidden(btnSetColor, true);
|
||||||
|
|
||||||
|
btnSetOpts = lv_btn_create(lv_scr_act(), nullptr);
|
||||||
|
btnSetOpts->user_data = this;
|
||||||
|
lv_obj_set_size(btnSetOpts, 150, 60);
|
||||||
|
lv_obj_align(btnSetOpts, lv_scr_act(), LV_ALIGN_CENTER, 0, 40);
|
||||||
|
lv_obj_set_style_local_radius(btnSetOpts, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 20);
|
||||||
|
lv_obj_set_style_local_bg_opa(btnSetOpts, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_50);
|
||||||
|
lv_obj_set_event_cb(btnSetOpts, event_handler);
|
||||||
|
lbl_btnSetOpts = lv_label_create(btnSetOpts, nullptr);
|
||||||
|
lv_obj_set_style_local_text_font(lbl_btnSetOpts, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48);
|
||||||
|
lv_label_set_text_static(lbl_btnSetOpts, Symbols::settings);
|
||||||
|
lv_obj_set_hidden(btnSetOpts, true);
|
||||||
|
|
||||||
taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
|
taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this);
|
||||||
Refresh();
|
Refresh();
|
||||||
|
@ -305,7 +366,8 @@ WatchFacePineTimeStyle::~WatchFacePineTimeStyle() {
|
||||||
|
|
||||||
bool WatchFacePineTimeStyle::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
bool WatchFacePineTimeStyle::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
||||||
if ((event == Pinetime::Applications::TouchEvents::LongTap) && lv_obj_get_hidden(btnRandom)) {
|
if ((event == Pinetime::Applications::TouchEvents::LongTap) && lv_obj_get_hidden(btnRandom)) {
|
||||||
lv_obj_set_hidden(btnSet, false);
|
lv_obj_set_hidden(btnSetColor, false);
|
||||||
|
lv_obj_set_hidden(btnSetOpts, false);
|
||||||
savedTick = lv_tick_get();
|
savedTick = lv_tick_get();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -326,6 +388,7 @@ void WatchFacePineTimeStyle::CloseMenu() {
|
||||||
lv_obj_set_hidden(btnReset, true);
|
lv_obj_set_hidden(btnReset, true);
|
||||||
lv_obj_set_hidden(btnRandom, true);
|
lv_obj_set_hidden(btnRandom, true);
|
||||||
lv_obj_set_hidden(btnClose, true);
|
lv_obj_set_hidden(btnClose, true);
|
||||||
|
lv_obj_set_hidden(btnSteps, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WatchFacePineTimeStyle::OnButtonPushed() {
|
bool WatchFacePineTimeStyle::OnButtonPushed() {
|
||||||
|
@ -399,6 +462,7 @@ void WatchFacePineTimeStyle::Refresh() {
|
||||||
|
|
||||||
uint8_t hour = time.hours().count();
|
uint8_t hour = time.hours().count();
|
||||||
uint8_t minute = time.minutes().count();
|
uint8_t minute = time.minutes().count();
|
||||||
|
uint8_t second = time.seconds().count();
|
||||||
|
|
||||||
if (displayedHour != hour || displayedMinute != minute) {
|
if (displayedHour != hour || displayedMinute != minute) {
|
||||||
displayedHour = hour;
|
displayedHour = hour;
|
||||||
|
@ -424,6 +488,11 @@ void WatchFacePineTimeStyle::Refresh() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (displayedSecond != second) {
|
||||||
|
displayedSecond = second;
|
||||||
|
lv_label_set_text_fmt(timeDD3, ":%02d", second);
|
||||||
|
}
|
||||||
|
|
||||||
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {
|
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {
|
||||||
lv_label_set_text_static(dateDayOfWeek, dateTimeController.DayOfWeekShortToString());
|
lv_label_set_text_static(dateDayOfWeek, dateTimeController.DayOfWeekShortToString());
|
||||||
lv_label_set_text_fmt(dateDay, "%d", day);
|
lv_label_set_text_fmt(dateDay, "%d", day);
|
||||||
|
@ -440,16 +509,19 @@ void WatchFacePineTimeStyle::Refresh() {
|
||||||
stepCount = motionController.NbSteps();
|
stepCount = motionController.NbSteps();
|
||||||
motionSensorOk = motionController.IsSensorOk();
|
motionSensorOk = motionController.IsSensorOk();
|
||||||
if (stepCount.IsUpdated() || motionSensorOk.IsUpdated()) {
|
if (stepCount.IsUpdated() || motionSensorOk.IsUpdated()) {
|
||||||
lv_gauge_set_value(stepGauge, 0, (stepCount.Get() / (settingsController.GetStepsGoal() / 100)));
|
lv_gauge_set_value(stepGauge, 0, (stepCount.Get() / (settingsController.GetStepsGoal() / 100)) % 100);
|
||||||
lv_obj_realign(stepGauge);
|
lv_obj_realign(stepGauge);
|
||||||
|
lv_label_set_text_fmt(stepValue, "%luK", (stepCount.Get() / 1000));
|
||||||
|
lv_obj_realign(stepValue);
|
||||||
if (stepCount.Get() > settingsController.GetStepsGoal()) {
|
if (stepCount.Get() > settingsController.GetStepsGoal()) {
|
||||||
lv_obj_set_style_local_line_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
lv_obj_set_style_local_line_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
||||||
lv_obj_set_style_local_scale_grad_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
lv_obj_set_style_local_scale_grad_color(stepGauge, LV_GAUGE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!lv_obj_get_hidden(btnSet)) {
|
if (!lv_obj_get_hidden(btnSetColor)) {
|
||||||
if ((savedTick > 0) && (lv_tick_get() - savedTick > 3000)) {
|
if ((savedTick > 0) && (lv_tick_get() - savedTick > 3000)) {
|
||||||
lv_obj_set_hidden(btnSet, true);
|
lv_obj_set_hidden(btnSetColor, true);
|
||||||
|
lv_obj_set_hidden(btnSetOpts, true);
|
||||||
savedTick = 0;
|
savedTick = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -561,8 +633,39 @@ void WatchFacePineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event)
|
||||||
if (object == btnClose) {
|
if (object == btnClose) {
|
||||||
CloseMenu();
|
CloseMenu();
|
||||||
}
|
}
|
||||||
if (object == btnSet) {
|
if (object == btnSteps) {
|
||||||
lv_obj_set_hidden(btnSet, true);
|
if (!lv_obj_get_hidden(stepGauge) && (lv_obj_get_hidden(timeDD3))) {
|
||||||
|
// show half gauge & seconds
|
||||||
|
lv_obj_set_hidden(timeDD3, false);
|
||||||
|
lv_obj_set_size(stepGauge, 37, 37);
|
||||||
|
lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, -10);
|
||||||
|
lv_gauge_set_scale(stepGauge, 180, 5, 0);
|
||||||
|
lv_gauge_set_angle_offset(stepGauge, 0);
|
||||||
|
lv_gauge_set_critical_value(stepGauge, 120);
|
||||||
|
settingsController.SetPTSGaugeStyle(Controllers::Settings::PTSGaugeStyle::Half);
|
||||||
|
} else if (!lv_obj_get_hidden(timeDD3) && (lv_obj_get_hidden(stepValue))) {
|
||||||
|
// show step count & icon
|
||||||
|
lv_obj_set_hidden(timeDD3, true);
|
||||||
|
lv_obj_set_hidden(stepGauge, true);
|
||||||
|
lv_obj_set_hidden(stepValue, false);
|
||||||
|
lv_obj_set_hidden(stepIcon, false);
|
||||||
|
settingsController.SetPTSGaugeStyle(Controllers::Settings::PTSGaugeStyle::Numeric);
|
||||||
|
} else {
|
||||||
|
// show full gauge
|
||||||
|
lv_obj_set_hidden(stepGauge, false);
|
||||||
|
lv_obj_set_hidden(stepValue, true);
|
||||||
|
lv_obj_set_hidden(stepIcon, true);
|
||||||
|
lv_obj_set_size(stepGauge, 40, 40);
|
||||||
|
lv_obj_align(stepGauge, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
||||||
|
lv_gauge_set_scale(stepGauge, 360, 11, 0);
|
||||||
|
lv_gauge_set_angle_offset(stepGauge, 180);
|
||||||
|
lv_gauge_set_critical_value(stepGauge, 100);
|
||||||
|
settingsController.SetPTSGaugeStyle(Controllers::Settings::PTSGaugeStyle::Full);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (object == btnSetColor) {
|
||||||
|
lv_obj_set_hidden(btnSetColor, true);
|
||||||
|
lv_obj_set_hidden(btnSetOpts, true);
|
||||||
lv_obj_set_hidden(btnNextTime, false);
|
lv_obj_set_hidden(btnNextTime, false);
|
||||||
lv_obj_set_hidden(btnPrevTime, false);
|
lv_obj_set_hidden(btnPrevTime, false);
|
||||||
lv_obj_set_hidden(btnNextBar, false);
|
lv_obj_set_hidden(btnNextBar, false);
|
||||||
|
@ -573,6 +676,12 @@ void WatchFacePineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event)
|
||||||
lv_obj_set_hidden(btnRandom, false);
|
lv_obj_set_hidden(btnRandom, false);
|
||||||
lv_obj_set_hidden(btnClose, false);
|
lv_obj_set_hidden(btnClose, false);
|
||||||
}
|
}
|
||||||
|
if (object == btnSetOpts) {
|
||||||
|
lv_obj_set_hidden(btnSetColor, true);
|
||||||
|
lv_obj_set_hidden(btnSetOpts, true);
|
||||||
|
lv_obj_set_hidden(btnSteps, false);
|
||||||
|
lv_obj_set_hidden(btnClose, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@ namespace Pinetime {
|
||||||
private:
|
private:
|
||||||
uint8_t displayedHour = -1;
|
uint8_t displayedHour = -1;
|
||||||
uint8_t displayedMinute = -1;
|
uint8_t displayedMinute = -1;
|
||||||
|
uint8_t displayedSecond = -1;
|
||||||
|
|
||||||
uint16_t currentYear = 1970;
|
uint16_t currentYear = 1970;
|
||||||
Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
|
Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
|
||||||
|
@ -71,10 +72,12 @@ namespace Pinetime {
|
||||||
lv_obj_t* btnReset;
|
lv_obj_t* btnReset;
|
||||||
lv_obj_t* btnRandom;
|
lv_obj_t* btnRandom;
|
||||||
lv_obj_t* btnClose;
|
lv_obj_t* btnClose;
|
||||||
|
lv_obj_t* btnSteps;
|
||||||
lv_obj_t* timebar;
|
lv_obj_t* timebar;
|
||||||
lv_obj_t* sidebar;
|
lv_obj_t* sidebar;
|
||||||
lv_obj_t* timeDD1;
|
lv_obj_t* timeDD1;
|
||||||
lv_obj_t* timeDD2;
|
lv_obj_t* timeDD2;
|
||||||
|
lv_obj_t* timeDD3;
|
||||||
lv_obj_t* timeAMPM;
|
lv_obj_t* timeAMPM;
|
||||||
lv_obj_t* dateDayOfWeek;
|
lv_obj_t* dateDayOfWeek;
|
||||||
lv_obj_t* dateDay;
|
lv_obj_t* dateDay;
|
||||||
|
@ -89,8 +92,12 @@ namespace Pinetime {
|
||||||
lv_obj_t* calendarCrossBar2;
|
lv_obj_t* calendarCrossBar2;
|
||||||
lv_obj_t* notificationIcon;
|
lv_obj_t* notificationIcon;
|
||||||
lv_obj_t* stepGauge;
|
lv_obj_t* stepGauge;
|
||||||
lv_obj_t* btnSet;
|
lv_obj_t* btnSetColor;
|
||||||
lv_obj_t* lbl_btnSet;
|
lv_obj_t* btnSetOpts;
|
||||||
|
lv_obj_t* lbl_btnSetColor;
|
||||||
|
lv_obj_t* lbl_btnSetOpts;
|
||||||
|
lv_obj_t* stepIcon;
|
||||||
|
lv_obj_t* stepValue;
|
||||||
lv_color_t needle_colors[1];
|
lv_color_t needle_colors[1];
|
||||||
|
|
||||||
BatteryIcon batteryIcon;
|
BatteryIcon batteryIcon;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user