clang-format and clang-tidy PineTimeStyle
This commit is contained in:
parent
39157f2f19
commit
2e7b51c8e1
|
@ -38,8 +38,8 @@
|
|||
using namespace Pinetime::Applications::Screens;
|
||||
|
||||
namespace {
|
||||
static void event_handler(lv_obj_t* obj, lv_event_t event) {
|
||||
PineTimeStyle* screen = static_cast<PineTimeStyle*>(obj->user_data);
|
||||
void event_handler(lv_obj_t* obj, lv_event_t event) {
|
||||
auto* screen = static_cast<PineTimeStyle*>(obj->user_data);
|
||||
screen->UpdateSelected(obj, event);
|
||||
}
|
||||
}
|
||||
|
@ -305,7 +305,7 @@ PineTimeStyle::~PineTimeStyle() {
|
|||
}
|
||||
|
||||
bool PineTimeStyle::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
||||
if ((event == Pinetime::Applications::TouchEvents::LongTap) && (lv_obj_get_hidden(btnRandom) == true)) {
|
||||
if ((event == Pinetime::Applications::TouchEvents::LongTap) && lv_obj_get_hidden(btnRandom)) {
|
||||
lv_obj_set_hidden(btnSet, false);
|
||||
savedTick = lv_tick_get();
|
||||
return true;
|
||||
|
@ -447,7 +447,7 @@ void PineTimeStyle::Refresh() {
|
|||
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) == false) {
|
||||
if (!lv_obj_get_hidden(btnSet)) {
|
||||
if ((savedTick > 0) && (lv_tick_get() - savedTick > 3000)) {
|
||||
lv_obj_set_hidden(btnSet, true);
|
||||
savedTick = 0;
|
||||
|
@ -463,8 +463,9 @@ void PineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event) {
|
|||
if (event == LV_EVENT_CLICKED) {
|
||||
if (object == btnNextTime) {
|
||||
valueTime = GetNext(valueTime);
|
||||
if(valueTime == valueBG)
|
||||
if (valueTime == valueBG) {
|
||||
valueTime = GetNext(valueTime);
|
||||
}
|
||||
settingsController.SetPTSColorTime(valueTime);
|
||||
lv_obj_set_style_local_text_color(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Convert(valueTime));
|
||||
lv_obj_set_style_local_text_color(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Convert(valueTime));
|
||||
|
@ -472,8 +473,9 @@ void PineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event) {
|
|||
}
|
||||
if (object == btnPrevTime) {
|
||||
valueTime = GetPrevious(valueTime);
|
||||
if(valueTime == valueBG)
|
||||
if (valueTime == valueBG) {
|
||||
valueTime = GetPrevious(valueTime);
|
||||
}
|
||||
settingsController.SetPTSColorTime(valueTime);
|
||||
lv_obj_set_style_local_text_color(timeDD1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Convert(valueTime));
|
||||
lv_obj_set_style_local_text_color(timeDD2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Convert(valueTime));
|
||||
|
@ -481,9 +483,10 @@ void PineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event) {
|
|||
}
|
||||
if (object == btnNextBar) {
|
||||
valueBar = GetNext(valueBar);
|
||||
if(valueBar == Controllers::Settings::Colors::Black)
|
||||
if (valueBar == Controllers::Settings::Colors::Black) {
|
||||
valueBar = GetNext(valueBar);
|
||||
if(valueBar == Controllers::Settings::Colors::White) {
|
||||
}
|
||||
if (valueBar == Controllers::Settings::Colors::White) {
|
||||
needle_colors[0] = LV_COLOR_BLACK;
|
||||
} else {
|
||||
needle_colors[0] = LV_COLOR_WHITE;
|
||||
|
@ -493,9 +496,10 @@ void PineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event) {
|
|||
}
|
||||
if (object == btnPrevBar) {
|
||||
valueBar = GetPrevious(valueBar);
|
||||
if(valueBar == Controllers::Settings::Colors::Black)
|
||||
if (valueBar == Controllers::Settings::Colors::Black) {
|
||||
valueBar = GetPrevious(valueBar);
|
||||
if(valueBar == Controllers::Settings::Colors::White) {
|
||||
}
|
||||
if (valueBar == Controllers::Settings::Colors::White) {
|
||||
needle_colors[0] = LV_COLOR_BLACK;
|
||||
} else {
|
||||
needle_colors[0] = LV_COLOR_WHITE;
|
||||
|
@ -505,15 +509,17 @@ void PineTimeStyle::UpdateSelected(lv_obj_t* object, lv_event_t event) {
|
|||
}
|
||||
if (object == btnNextBG) {
|
||||
valueBG = GetNext(valueBG);
|
||||
if(valueBG == valueTime)
|
||||
if (valueBG == valueTime) {
|
||||
valueBG = GetNext(valueBG);
|
||||
}
|
||||
settingsController.SetPTSColorBG(valueBG);
|
||||
lv_obj_set_style_local_bg_color(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Convert(valueBG));
|
||||
}
|
||||
if (object == btnPrevBG) {
|
||||
valueBG = GetPrevious(valueBG);
|
||||
if(valueBG == valueTime)
|
||||
if (valueBG == valueTime) {
|
||||
valueBG = GetPrevious(valueBG);
|
||||
}
|
||||
settingsController.SetPTSColorBG(valueBG);
|
||||
lv_obj_set_style_local_bg_color(timebar, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Convert(valueBG));
|
||||
}
|
||||
|
|
|
@ -54,8 +54,8 @@ namespace Pinetime {
|
|||
DirtyValue<uint32_t> stepCount {};
|
||||
DirtyValue<bool> notificationState {};
|
||||
|
||||
Pinetime::Controllers::Settings::Colors GetNext(Controllers::Settings::Colors color);
|
||||
Pinetime::Controllers::Settings::Colors GetPrevious(Controllers::Settings::Colors color);
|
||||
static Pinetime::Controllers::Settings::Colors GetNext(Controllers::Settings::Colors color);
|
||||
static Pinetime::Controllers::Settings::Colors GetPrevious(Controllers::Settings::Colors color);
|
||||
|
||||
lv_obj_t* btnNextTime;
|
||||
lv_obj_t* btnPrevTime;
|
||||
|
|
Loading…
Reference in a new issue