/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_msgbox.c | 169 int32_t h_header = (header == NULL) ? 0 : lv_obj_get_height(header); in test_msgbox_content_auto_height() 170 int32_t h_footer = (footer == NULL) ? 0 : lv_obj_get_height(footer); in test_msgbox_content_auto_height() 171 int32_t h_content = lv_obj_get_height(content); in test_msgbox_content_auto_height() 185 h_header = (header == NULL) ? 0 : lv_obj_get_height(header); in test_msgbox_content_auto_height() 186 h_footer = (footer == NULL) ? 0 : lv_obj_get_height(footer); in test_msgbox_content_auto_height() 187 h_content = lv_obj_get_height(content); in test_msgbox_content_auto_height()
|
D | test_win.c | 42 TEST_ASSERT_EQUAL(lv_display_get_dpi(lv_obj_get_display(win)) / 2, lv_obj_get_height(header)); in test_win_should_have_valid_documented_default_values()
|
D | test_slider.c | 39 int32_t objh = lv_obj_get_height(slider); in test_textarea_should_have_valid_documented_default_values()
|
/lvgl-latest/src/core/ |
D | lv_obj_pos.c | 134 h = lv_obj_get_height(obj); in lv_obj_refr_size() 164 if(lv_obj_get_width(obj) == w && lv_obj_get_height(obj) == h) return false; in lv_obj_refr_size() 358 y = lv_obj_get_content_height(base) / 2 - lv_obj_get_height(obj) / 2 + btop; in lv_obj_align_to() 378 y = lv_obj_get_content_height(base) - lv_obj_get_height(obj) + btop; in lv_obj_align_to() 382 y = lv_obj_get_content_height(base) - lv_obj_get_height(obj) + btop; in lv_obj_align_to() 387 y = lv_obj_get_content_height(base) - lv_obj_get_height(obj) + btop; in lv_obj_align_to() 392 y = lv_obj_get_content_height(base) / 2 - lv_obj_get_height(obj) / 2 + btop; in lv_obj_align_to() 397 y = lv_obj_get_content_height(base) / 2 - lv_obj_get_height(obj) / 2 + btop; in lv_obj_align_to() 402 y = -lv_obj_get_height(obj); in lv_obj_align_to() 407 y = -lv_obj_get_height(obj); in lv_obj_align_to() [all …]
|
D | lv_obj_pos.h | 300 int32_t lv_obj_get_height(const lv_obj_t * obj);
|
D | lv_obj.c | 88 .getter = lv_obj_get_height, 785 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) + lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event() 788 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) - lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event() 793 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) + lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event() 800 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) - lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event()
|
D | lv_obj_scroll.c | 159 self_h = self_h - (lv_obj_get_height(obj) - space_top - space_bottom); in lv_obj_get_scroll_bottom() 515 int32_t obj_h = lv_obj_get_height(obj); in lv_obj_get_scrollbar_area() 722 int32_t parent_h = lv_obj_get_height(parent) - stop - sbottom; in scroll_area_into_view()
|
/lvgl-latest/src/others/snapshot/ |
D | lv_snapshot.c | 51 int32_t h = lv_obj_get_height(obj); in lv_snapshot_create_draw_buf() 64 int32_t h = lv_obj_get_height(obj); in lv_snapshot_reshape_draw_buf()
|
/lvgl-latest/src/widgets/image/ |
D | lv_image.c | 287 int32_t h = lv_obj_get_height(obj); in lv_image_set_rotation() 329 int32_t h = lv_obj_get_height(obj); in lv_image_set_pivot() 585 img->h = lv_obj_get_height(obj); in lv_image_constructor() 644 int32_t h = lv_obj_get_height(obj); in lv_image_event() 657 if(img->w == lv_obj_get_width(obj) && img->h == lv_obj_get_height(obj) && in lv_image_event() 662 int32_t h = lv_obj_get_height(obj); in lv_image_event() 728 …lv_image_buf_get_transformed_area(&a, lv_obj_get_width(obj), lv_obj_get_height(obj), 0, img->scale… in draw_image() 824 int32_t h = lv_obj_get_height(obj); in scale_update() 862 int32_t scale_y = lv_obj_get_height(obj) * LV_SCALE_NONE / img->h; in update_align()
|
/lvgl-latest/examples/widgets/spinbox/ |
D | lv_example_spinbox_1.c | 31 int32_t h = lv_obj_get_height(spinbox); in lv_example_spinbox_1()
|
/lvgl-latest/src/others/gridnav/ |
D | lv_gridnav.c | 190 int32_t d = lv_obj_get_height(dsc->focused_obj) / 4; in gridnav_event_cb() 209 int32_t d = lv_obj_get_height(dsc->focused_obj) / 4; in gridnav_event_cb() 298 int32_t h_half = lv_obj_get_height(start_child) / 2; in find_chid() 299 …int32_t h_max = lv_obj_get_height(obj) + lv_obj_get_scroll_top(obj) + lv_obj_get_scroll_bottom(obj… in find_chid()
|
/lvgl-latest/src/widgets/win/ |
D | lv_win.c | 97 lv_obj_set_size(obj, lv_obj_get_width(parent), lv_obj_get_height(parent)); in lv_win_constructor()
|
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_6.c | 12 int32_t r = lv_obj_get_height(cont) * 7 / 10; in scroll_event_cb()
|
/lvgl-latest/src/widgets/slider/ |
D | lv_slider.c | 326 …int32_t knob_size = LV_MIN(lv_obj_get_width(obj) + 2 * trans_w, lv_obj_get_height(obj) + 2 * trans… in lv_slider_event() 383 knob_size = lv_obj_get_height(obj); in draw_knob() 463 …bar.orientation == LV_BAR_ORIENTATION_AUTO) return lv_obj_get_width(obj) >= lv_obj_get_height(obj); in is_slider_horizontal() 589 const int32_t h = lv_obj_get_height(obj); in update_knob_pos()
|
/lvgl-latest/src/layouts/grid/ |
D | lv_grid.c | 410 size = LV_MAX(size, lv_obj_get_height(item)); in calc_rows() 534 …y = c->y[row_pos] + row_h - lv_obj_get_height(item) - lv_obj_get_style_margin_bottom(item, LV_PART… in item_repos() 540 if(lv_obj_get_width(item) != item_w || lv_obj_get_height(item) != item_h) { in item_repos() 556 int32_t h = lv_obj_get_height(item); in item_repos()
|
/lvgl-latest/src/widgets/calendar/ |
D | lv_calendar_header_arrow.c | 82 int32_t btn_size = lv_obj_get_height(mo_prev); in my_constructor()
|
/lvgl-latest/demos/flex_layout/ |
D | lv_demo_flex_layout_ctrl_pad.c | 100 value = lv_obj_get_height(obj); in ctrl_pad_obj_update()
|
/lvgl-latest/demos/keypad_encoder/ |
D | lv_demo_keypad_encoder.c | 129 if(lv_obj_get_height(list) > lv_obj_get_content_height(parent)) { in selectors_create()
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_5.c | 76 int32_t full_h = lv_obj_get_height(obj); in add_faded_area()
|
/lvgl-latest/src/libs/barcode/ |
D | lv_barcode.c | 147 buf_h = (barcode->direction == LV_DIR_VER) ? barcode_w * scale : lv_obj_get_height(obj); in lv_barcode_update()
|
/lvgl-latest/src/widgets/line/ |
D | lv_line.c | 246 int32_t h = lv_obj_get_height(obj); in lv_line_event()
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 551 int32_t roller_h = lv_obj_get_height(obj); in draw_main() 558 int32_t remain_h = lv_obj_get_height(label) - normal_label_font->line_height; in draw_main() 654 sel_area->y1 = obj->coords.y1 + lv_obj_get_height(obj) / 2 - d / 2; in get_sel_area()
|
/lvgl-latest/src/widgets/switch/ |
D | lv_switch.c | 216 int32_t knob_size = lv_obj_get_height(obj); in draw_main()
|
/lvgl-latest/src/layouts/flex/ |
D | lv_flex.c | 454 int32_t h = lv_obj_get_height(item); in children_repos() 548 + lv_obj_get_height(obj) in lv_obj_get_height_with_margin()
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 200 lv_anim_set_values(&a, LV_VER_RES, LV_VER_RES - lv_obj_get_height(obj)); in obj_test_task_cb()
|