mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
Run code formatter
This commit is contained in:
parent
2d0480c03d
commit
41e65d9df1
@ -205,7 +205,8 @@ void _lv_disp_refr_task(lv_task_t * task)
|
|||||||
if(lv_disp_is_true_double_buf(disp_refr)) {
|
if(lv_disp_is_true_double_buf(disp_refr)) {
|
||||||
if(disp_refr->driver.set_px_cb) {
|
if(disp_refr->driver.set_px_cb) {
|
||||||
LV_LOG_WARN("Can't handle 2 screen sized buffers with set_px_cb. Display is not refreshed.");
|
LV_LOG_WARN("Can't handle 2 screen sized buffers with set_px_cb. Display is not refreshed.");
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_disp_buf_t * vdb = lv_disp_get_buf(disp_refr);
|
lv_disp_buf_t * vdb = lv_disp_get_buf(disp_refr);
|
||||||
|
|
||||||
/*Flush the content of the VDB*/
|
/*Flush the content of the VDB*/
|
||||||
|
@ -456,9 +456,12 @@ LV_ATTRIBUTE_FAST_MEM static inline lv_color_t lv_color_mix(lv_color_t c1, lv_co
|
|||||||
lv_color_t ret;
|
lv_color_t ret;
|
||||||
#if LV_COLOR_DEPTH != 1
|
#if LV_COLOR_DEPTH != 1
|
||||||
/*LV_COLOR_DEPTH == 8, 16 or 32*/
|
/*LV_COLOR_DEPTH == 8, 16 or 32*/
|
||||||
LV_COLOR_SET_R(ret, LV_MATH_UDIV255((uint16_t) LV_COLOR_GET_R(c1) * mix + LV_COLOR_GET_R(c2) * (255 - mix) + LV_COLOR_MIX_ROUND_OFS));
|
LV_COLOR_SET_R(ret, LV_MATH_UDIV255((uint16_t) LV_COLOR_GET_R(c1) * mix + LV_COLOR_GET_R(c2) *
|
||||||
LV_COLOR_SET_G(ret, LV_MATH_UDIV255((uint16_t) LV_COLOR_GET_G(c1) * mix + LV_COLOR_GET_G(c2) * (255 - mix) + LV_COLOR_MIX_ROUND_OFS));
|
(255 - mix) + LV_COLOR_MIX_ROUND_OFS));
|
||||||
LV_COLOR_SET_B(ret, LV_MATH_UDIV255((uint16_t) LV_COLOR_GET_B(c1) * mix + LV_COLOR_GET_B(c2) * (255 - mix) + LV_COLOR_MIX_ROUND_OFS));
|
LV_COLOR_SET_G(ret, LV_MATH_UDIV255((uint16_t) LV_COLOR_GET_G(c1) * mix + LV_COLOR_GET_G(c2) *
|
||||||
|
(255 - mix) + LV_COLOR_MIX_ROUND_OFS));
|
||||||
|
LV_COLOR_SET_B(ret, LV_MATH_UDIV255((uint16_t) LV_COLOR_GET_B(c1) * mix + LV_COLOR_GET_B(c2) *
|
||||||
|
(255 - mix) + LV_COLOR_MIX_ROUND_OFS));
|
||||||
LV_COLOR_SET_A(ret, 0xFF);
|
LV_COLOR_SET_A(ret, 0xFF);
|
||||||
#else
|
#else
|
||||||
/*LV_COLOR_DEPTH == 1*/
|
/*LV_COLOR_DEPTH == 1*/
|
||||||
|
@ -73,8 +73,7 @@
|
|||||||
/**********************
|
/**********************
|
||||||
* TYPEDEFS
|
* TYPEDEFS
|
||||||
**********************/
|
**********************/
|
||||||
typedef struct
|
typedef struct {
|
||||||
{
|
|
||||||
lv_style_t scr;
|
lv_style_t scr;
|
||||||
lv_style_t bg;
|
lv_style_t bg;
|
||||||
lv_style_t bg_click;
|
lv_style_t bg_click;
|
||||||
@ -546,21 +545,24 @@ static void calendar_init(void)
|
|||||||
lv_style_set_text_color(&styles->calendar_header, LV_STATE_PRESSED, IS_LIGHT ? lv_color_hex(0x888888) : LV_COLOR_WHITE);
|
lv_style_set_text_color(&styles->calendar_header, LV_STATE_PRESSED, IS_LIGHT ? lv_color_hex(0x888888) : LV_COLOR_WHITE);
|
||||||
|
|
||||||
style_init_reset(&styles->calendar_daynames);
|
style_init_reset(&styles->calendar_daynames);
|
||||||
lv_style_set_text_color(&styles->calendar_daynames, LV_STATE_DEFAULT, IS_LIGHT ? lv_color_hex(0x31404f) : lv_color_hex3(0xeee));
|
lv_style_set_text_color(&styles->calendar_daynames, LV_STATE_DEFAULT,
|
||||||
|
IS_LIGHT ? lv_color_hex(0x31404f) : lv_color_hex3(0xeee));
|
||||||
lv_style_set_pad_left(&styles->calendar_daynames, LV_STATE_DEFAULT, PAD_DEF);
|
lv_style_set_pad_left(&styles->calendar_daynames, LV_STATE_DEFAULT, PAD_DEF);
|
||||||
lv_style_set_pad_right(&styles->calendar_daynames, LV_STATE_DEFAULT, PAD_DEF);
|
lv_style_set_pad_right(&styles->calendar_daynames, LV_STATE_DEFAULT, PAD_DEF);
|
||||||
lv_style_set_pad_bottom(&styles->calendar_daynames, LV_STATE_DEFAULT, PAD_DEF);
|
lv_style_set_pad_bottom(&styles->calendar_daynames, LV_STATE_DEFAULT, PAD_DEF);
|
||||||
|
|
||||||
style_init_reset(&styles->calendar_date_nums);
|
style_init_reset(&styles->calendar_date_nums);
|
||||||
lv_style_set_radius(&styles->calendar_date_nums, LV_STATE_DEFAULT, LV_DPX(4));
|
lv_style_set_radius(&styles->calendar_date_nums, LV_STATE_DEFAULT, LV_DPX(4));
|
||||||
lv_style_set_text_color(&styles->calendar_date_nums, LV_STATE_CHECKED, IS_LIGHT ? lv_color_hex(0x31404f) : LV_COLOR_WHITE);
|
lv_style_set_text_color(&styles->calendar_date_nums, LV_STATE_CHECKED,
|
||||||
|
IS_LIGHT ? lv_color_hex(0x31404f) : LV_COLOR_WHITE);
|
||||||
|
|
||||||
lv_style_set_bg_opa(&styles->calendar_date_nums, LV_STATE_CHECKED, IS_LIGHT ? LV_OPA_20 : LV_OPA_40);
|
lv_style_set_bg_opa(&styles->calendar_date_nums, LV_STATE_CHECKED, IS_LIGHT ? LV_OPA_20 : LV_OPA_40);
|
||||||
lv_style_set_bg_opa(&styles->calendar_date_nums, LV_STATE_PRESSED, LV_OPA_20);
|
lv_style_set_bg_opa(&styles->calendar_date_nums, LV_STATE_PRESSED, LV_OPA_20);
|
||||||
lv_style_set_bg_opa(&styles->calendar_date_nums, LV_STATE_FOCUSED, LV_OPA_COVER);
|
lv_style_set_bg_opa(&styles->calendar_date_nums, LV_STATE_FOCUSED, LV_OPA_COVER);
|
||||||
lv_style_set_text_color(&styles->calendar_date_nums, LV_STATE_FOCUSED, LV_COLOR_WHITE);
|
lv_style_set_text_color(&styles->calendar_date_nums, LV_STATE_FOCUSED, LV_COLOR_WHITE);
|
||||||
lv_style_set_bg_color(&styles->calendar_date_nums, LV_STATE_FOCUSED, theme.color_primary);
|
lv_style_set_bg_color(&styles->calendar_date_nums, LV_STATE_FOCUSED, theme.color_primary);
|
||||||
lv_style_set_bg_color(&styles->calendar_date_nums, LV_STATE_DEFAULT, IS_LIGHT ? lv_color_hex(0x666666) : LV_COLOR_WHITE);
|
lv_style_set_bg_color(&styles->calendar_date_nums, LV_STATE_DEFAULT,
|
||||||
|
IS_LIGHT ? lv_color_hex(0x666666) : LV_COLOR_WHITE);
|
||||||
lv_style_set_bg_color(&styles->calendar_date_nums, LV_STATE_CHECKED, theme.color_primary);
|
lv_style_set_bg_color(&styles->calendar_date_nums, LV_STATE_CHECKED, theme.color_primary);
|
||||||
lv_style_set_border_width(&styles->calendar_date_nums, LV_STATE_CHECKED, 2);
|
lv_style_set_border_width(&styles->calendar_date_nums, LV_STATE_CHECKED, 2);
|
||||||
lv_style_set_border_side(&styles->calendar_date_nums, LV_STATE_CHECKED, LV_BORDER_SIDE_LEFT);
|
lv_style_set_border_side(&styles->calendar_date_nums, LV_STATE_CHECKED, LV_BORDER_SIDE_LEFT);
|
||||||
@ -684,7 +686,8 @@ static void textarea_init(void)
|
|||||||
lv_style_set_border_side(&styles->ta_cursor, LV_STATE_DEFAULT, LV_BORDER_SIDE_LEFT);
|
lv_style_set_border_side(&styles->ta_cursor, LV_STATE_DEFAULT, LV_BORDER_SIDE_LEFT);
|
||||||
|
|
||||||
style_init_reset(&styles->ta_placeholder);
|
style_init_reset(&styles->ta_placeholder);
|
||||||
lv_style_set_text_color(&styles->ta_placeholder, LV_STATE_DEFAULT, IS_LIGHT ? COLOR_BG_TEXT_DIS : lv_color_hex(0xa1adbd));
|
lv_style_set_text_color(&styles->ta_placeholder, LV_STATE_DEFAULT,
|
||||||
|
IS_LIGHT ? COLOR_BG_TEXT_DIS : lv_color_hex(0xa1adbd));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,8 +24,7 @@
|
|||||||
* TYPEDEFS
|
* TYPEDEFS
|
||||||
**********************/
|
**********************/
|
||||||
|
|
||||||
typedef struct
|
typedef struct {
|
||||||
{
|
|
||||||
lv_style_t scr;
|
lv_style_t scr;
|
||||||
lv_style_t bg;
|
lv_style_t bg;
|
||||||
lv_style_t clip_corner;
|
lv_style_t clip_corner;
|
||||||
|
@ -80,7 +80,8 @@ static void basic_init(void)
|
|||||||
style_init_reset(&styles->btn);
|
style_init_reset(&styles->btn);
|
||||||
lv_style_set_bg_color(&styles->btn, LV_STATE_PRESSED, lv_color_hex3(0xccc));
|
lv_style_set_bg_color(&styles->btn, LV_STATE_PRESSED, lv_color_hex3(0xccc));
|
||||||
lv_style_set_bg_color(&styles->btn, LV_STATE_CHECKED, theme.color_primary);
|
lv_style_set_bg_color(&styles->btn, LV_STATE_CHECKED, theme.color_primary);
|
||||||
lv_style_set_bg_color(&styles->btn, LV_STATE_CHECKED | LV_STATE_PRESSED, lv_color_darken(theme.color_primary, LV_OPA_30));
|
lv_style_set_bg_color(&styles->btn, LV_STATE_CHECKED | LV_STATE_PRESSED, lv_color_darken(theme.color_primary,
|
||||||
|
LV_OPA_30));
|
||||||
lv_style_set_bg_color(&styles->btn, LV_STATE_DISABLED, LV_COLOR_SILVER);
|
lv_style_set_bg_color(&styles->btn, LV_STATE_DISABLED, LV_COLOR_SILVER);
|
||||||
lv_style_set_text_color(&styles->btn, LV_STATE_DISABLED, LV_COLOR_GRAY);
|
lv_style_set_text_color(&styles->btn, LV_STATE_DISABLED, LV_COLOR_GRAY);
|
||||||
lv_style_set_image_recolor(&styles->btn, LV_STATE_DISABLED, LV_COLOR_GRAY);
|
lv_style_set_image_recolor(&styles->btn, LV_STATE_DISABLED, LV_COLOR_GRAY);
|
||||||
|
@ -202,7 +202,8 @@ lv_btn_state_t lv_btn_get_state(const lv_obj_t * btn)
|
|||||||
if(obj_state & LV_STATE_CHECKED) {
|
if(obj_state & LV_STATE_CHECKED) {
|
||||||
if(obj_state & LV_STATE_PRESSED) return LV_BTN_STATE_CHECKED_PRESSED;
|
if(obj_state & LV_STATE_PRESSED) return LV_BTN_STATE_CHECKED_PRESSED;
|
||||||
else return LV_BTN_STATE_CHECKED_RELEASED;
|
else return LV_BTN_STATE_CHECKED_RELEASED;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
if(obj_state & LV_STATE_PRESSED) return LV_BTN_STATE_PRESSED;
|
if(obj_state & LV_STATE_PRESSED) return LV_BTN_STATE_PRESSED;
|
||||||
else return LV_BTN_STATE_RELEASED;
|
else return LV_BTN_STATE_RELEASED;
|
||||||
}
|
}
|
||||||
|
@ -587,7 +587,8 @@ static lv_design_res_t lv_img_design(lv_obj_t * img, const lv_area_t * clip_area
|
|||||||
|
|
||||||
if(zoom_final != LV_IMG_ZOOM_NONE) {
|
if(zoom_final != LV_IMG_ZOOM_NONE) {
|
||||||
if(_lv_area_is_in(clip_area, &img->coords, 0) == false) return LV_DESIGN_RES_NOT_COVER;
|
if(_lv_area_is_in(clip_area, &img->coords, 0) == false) return LV_DESIGN_RES_NOT_COVER;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_area_t a;
|
lv_area_t a;
|
||||||
_lv_img_buf_get_transformed_area(&a, lv_obj_get_width(img), lv_obj_get_height(img), 0, zoom_final, &ext->pivot);
|
_lv_img_buf_get_transformed_area(&a, lv_obj_get_width(img), lv_obj_get_height(img), 0, zoom_final, &ext->pivot);
|
||||||
a.x1 += img->coords.x1;
|
a.x1 += img->coords.x1;
|
||||||
|
@ -785,7 +785,8 @@ uint32_t lv_label_get_letter_on(const lv_obj_t * label, lv_point_t * pos)
|
|||||||
uint32_t cid = _lv_txt_encoded_get_char_id(bidi_txt, i);
|
uint32_t cid = _lv_txt_encoded_get_char_id(bidi_txt, i);
|
||||||
if(txt[line_start + cid] == '\0') {
|
if(txt[line_start + cid] == '\0') {
|
||||||
logical_pos = i;
|
logical_pos = i;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
bool is_rtl;
|
bool is_rtl;
|
||||||
logical_pos = _lv_bidi_get_logical_pos(&txt[line_start], NULL,
|
logical_pos = _lv_bidi_get_logical_pos(&txt[line_start], NULL,
|
||||||
txt_len, lv_obj_get_base_dir(label), cid, &is_rtl);
|
txt_len, lv_obj_get_base_dir(label), cid, &is_rtl);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user