@@ -103,10 +103,10 @@ class ColorEditorPopup : public BaseDialog
103
103
lv_obj_set_flex_align (hbox_obj, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_START,
104
104
LV_FLEX_ALIGN_SPACE_AROUND);
105
105
106
- colorPad = new ColorSwatch (hbox, {0 , 0 , COLOR_PAD_WIDTH, COLOR_PAD_HEIGHT },
106
+ colorPad = new ColorSwatch (hbox, {0 , 0 , COLOR_PAD_WIDTH, EdgeTxStyles::STD_FONT_HEIGHT },
107
107
COLOR_THEME_PRIMARY1);
108
108
109
- hexStr = new StaticText (hbox, {0 , 0 , CVAL_W , 0 }, " " , COLOR_THEME_PRIMARY1_INDEX, FONT (L));
109
+ hexStr = new StaticText (hbox, {0 , 0 , EdgeTxStyles::EDIT_FLD_WIDTH , 0 }, " " , COLOR_THEME_PRIMARY1_INDEX, FONT (L));
110
110
111
111
updateColor (color);
112
112
@@ -149,7 +149,7 @@ class ColorEditorPopup : public BaseDialog
149
149
150
150
hbox = new Window (vbox, rect_t {});
151
151
hbox->padTop (BTN_PAD_TOP);
152
- hbox->setFlexLayout (LV_FLEX_FLOW_ROW, BTN_PAD_ROW );
152
+ hbox->setFlexLayout (LV_FLEX_FLOW_ROW, EdgeTxStyles::STD_FONT_HEIGHT );
153
153
lv_obj_set_flex_align (hbox->getLvObj (), LV_FLEX_ALIGN_CENTER,
154
154
LV_FLEX_ALIGN_END, LV_FLEX_ALIGN_SPACE_BETWEEN);
155
155
lv_obj_set_flex_grow (hbox->getLvObj (), 1 );
@@ -169,19 +169,16 @@ class ColorEditorPopup : public BaseDialog
169
169
static LAYOUT_VAL (CE_SZ, 182 , 182 , LS(182 ))
170
170
static LAYOUT_VAL2(COLOR_EDIT_WIDTH, LCD_W * 0.8 , LCD_W * 0.7 )
171
171
static LAYOUT_VAL(COLOR_PAD_WIDTH, 52 , 52 , LS(52 ))
172
- static LAYOUT_VAL(COLOR_PAD_HEIGHT, 32 , 32 , LS(32 ))
173
- static LAYOUT_VAL(CVAL_W, 100 , 100 , LS(100 ))
174
172
static LAYOUT_VAL(BTN_W, 80 , 80 , LS(80 ))
175
173
static LAYOUT_VAL(BTN_PAD_TOP, 60 , 60 , LS(60 ))
176
- static LAYOUT_VAL(BTN_PAD_ROW, 20 , 20 , LS(20 ))
177
174
};
178
175
179
176
ColorPicker::ColorPicker (Window* parent, const rect_t & rect,
180
177
std::function<uint32_t ()> getValue,
181
178
std::function<void (uint32_t )> setValue,
182
179
std::function<void (uint32_t )> preview,
183
180
COLOR_EDITOR_FMT fmt) :
184
- Button (parent, {rect.x , rect.y , rect.w == 0 ? ColorEditorPopup::COLOR_PAD_WIDTH : rect.w , ColorEditorPopup::COLOR_PAD_HEIGHT }),
181
+ Button (parent, {rect.x , rect.y , rect.w == 0 ? ColorEditorPopup::COLOR_PAD_WIDTH : rect.w , EdgeTxStyles::UI_ELEMENT_HEIGHT }),
185
182
setValue (std::move(setValue)), preview(std::move(preview)), format(fmt)
186
183
{
187
184
updateColor (getValue ());
0 commit comments