/lvgl-latest/src/widgets/ |
D | lv_objx_templ.c | 45 .width_def = LV_DPI_DEF, 46 .height_def = LV_DPI_DEF,
|
D | lv_switch.c | 58 .width_def = (4 * LV_DPI_DEF) / 10, 59 .height_def = (4 * LV_DPI_DEF) / 17,
|
D | lv_bar.c | 64 .width_def = LV_DPI_DEF * 2, 65 .height_def = LV_DPI_DEF / 10,
|
D | lv_btnmatrix.c | 25 #define BTN_EXTRA_CLICK_AREA_MAX (LV_DPI_DEF / 10) 65 .width_def = LV_DPI_DEF * 2, 66 .height_def = LV_DPI_DEF,
|
D | lv_table.c | 306 table->col_w[col] = LV_DPI_DEF; in lv_table_set_col_cnt() 515 table->col_w[0] = LV_DPI_DEF; in lv_table_constructor() 516 table->row_h[0] = LV_DPI_DEF; in lv_table_constructor()
|
D | lv_textarea.c | 72 .width_def = LV_DPI_DEF * 2, 73 .height_def = LV_DPI_DEF,
|
D | lv_roller.c | 52 .height_def = LV_DPI_DEF,
|
D | lv_arc.c | 409 lv_obj_set_ext_click_area(obj, LV_DPI_DEF / 10); in lv_arc_constructor()
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 21 #define OBJ_SIZE_MIN (LV_MAX(LV_DPI_DEF / 20, 5)) 23 #define RADIUS LV_MAX(LV_DPI_DEF / 15, 2) 24 #define BORDER_WIDTH LV_MAX(LV_DPI_DEF / 40, 1) 25 #define SHADOW_WIDTH_SMALL LV_MAX(LV_DPI_DEF / 15, 5) 26 #define SHADOW_OFS_X_SMALL LV_MAX(LV_DPI_DEF / 20, 2) 27 #define SHADOW_OFS_Y_SMALL LV_MAX(LV_DPI_DEF / 20, 2) 28 #define SHADOW_SPREAD_SMALL LV_MAX(LV_DPI_DEF / 30, 2) 29 #define SHADOW_WIDTH_LARGE LV_MAX(LV_DPI_DEF / 5, 10) 30 #define SHADOW_OFS_X_LARGE LV_MAX(LV_DPI_DEF / 10, 5) 31 #define SHADOW_OFS_Y_LARGE LV_MAX(LV_DPI_DEF / 10, 5) [all …]
|
/lvgl-latest/src/extra/widgets/list/ |
D | lv_list.c | 32 .width_def = (LV_DPI_DEF * 3) / 2, 33 .height_def = LV_DPI_DEF * 2
|
/lvgl-latest/tests/src/test_cases/ |
D | test_config.c | 10 TEST_ASSERT_EQUAL(130, LV_DPI_DEF); in test_config()
|
/lvgl-latest/src/extra/widgets/msgbox/ |
D | lv_msgbox.c | 34 .width_def = LV_DPI_DEF * 2, 132 lv_coord_t btn_h = lv_font_get_line_height(font) + LV_DPI_DEF / 10; in lv_msgbox_create() 133 lv_obj_set_size(mbox->btns, btn_cnt * (2 * LV_DPI_DEF / 3), btn_h); in lv_msgbox_create()
|
/lvgl-latest/src/extra/widgets/led/ |
D | lv_led.c | 35 .width_def = LV_DPI_DEF / 5, 36 .height_def = LV_DPI_DEF / 5,
|
/lvgl-latest/src/extra/widgets/colorwheel/ |
D | lv_colorwheel.c | 57 .width_def = LV_DPI_DEF * 2, 58 .height_def = LV_DPI_DEF * 2, 478 if(r_in > LV_DPI_DEF / 2) { in lv_colorwheel_event() 482 if(r_in < LV_DPI_DEF / 2) r_in = LV_DPI_DEF / 2; in lv_colorwheel_event()
|
/lvgl-latest/src/extra/widgets/calendar/ |
D | lv_calendar_header_arrow.c | 39 .height_def = LV_DPI_DEF / 3
|
D | lv_calendar.c | 43 .width_def = (LV_DPI_DEF * 3) / 2, 44 .height_def = (LV_DPI_DEF * 3) / 2,
|
/lvgl-latest/src/ |
D | lv_conf_internal.h | 263 #ifndef LV_DPI_DEF 265 #define LV_DPI_DEF CONFIG_LV_DPI_DEF macro 267 #define LV_DPI_DEF 130 /*[px/inch]*/ macro 2510 LV_EXPORT_CONST_INT(LV_DPI_DEF);
|
/lvgl-latest/env_support/cmsis-pack/ |
D | lv_conf_cmsis.h | 106 #define LV_DPI_DEF 130 /*[px/inch]*/ macro
|
/lvgl-latest/ |
D | lv_conf_template.h | 99 #define LV_DPI_DEF 130 /*[px/inch]*/
|
/lvgl-latest/demos/keypad_encoder/ |
D | lv_demo_keypad_encoder.c | 71 tv = lv_tabview_create(lv_scr_act(), LV_DIR_TOP, LV_DPI_DEF / 3); in lv_demo_keypad_encoder()
|
/lvgl-latest/src/hal/ |
D | lv_hal_disp.c | 96 driver->dpi = LV_DPI_DEF; in lv_disp_drv_init() 511 if(disp == NULL) return LV_DPI_DEF; /*Do not return 0 because it might be a divider*/ in lv_disp_get_dpi()
|
/lvgl-latest/src/extra/widgets/menu/ |
D | lv_menu.c | 42 .width_def = (LV_DPI_DEF * 3) / 2, 43 .height_def = LV_DPI_DEF * 2,
|
/lvgl-latest/src/extra/widgets/spinbox/ |
D | lv_spinbox.c | 37 .width_def = LV_DPI_DEF,
|
/lvgl-latest/src/core/ |
D | lv_obj.c | 77 .width_def = LV_DPI_DEF, 78 .height_def = LV_DPI_DEF,
|
/lvgl-latest/src/extra/widgets/meter/ |
D | lv_meter.c | 486 p_outer.x = p_center.x + r_out + LV_MAX(LV_DPI_DEF, r_out); in draw_ticks_and_labels()
|