Searched refs:lv_obj_set_x (Results 1 – 14 of 14) sorted by relevance
/lvgl-3.7.0/examples/anim/ |
D | lv_example_anim_2.c | 6 lv_obj_set_x(var, v); in anim_x_cb()
|
D | lv_example_anim_1.c | 6 lv_obj_set_x(var, v); in anim_x_cb()
|
/lvgl-3.7.0/docs/overview/ |
D | animation.md | 10 …th the majority of the property *set* functions in LVGL. For example `lv_obj_set_x(obj, value)` or… 28 lv_anim_set_exec_cb(&a, (lv_anim_exec_xcb_t) lv_obj_set_x); 79 For example, animate the x and y coordinates with `lv_obj_set_x` and `lv_obj_set_y`. However, only … 99 …20,0,100)` will yield 5000 milliseconds. For example, in the case of `lv_obj_set_x` *unit* is pixe…
|
D | coords.md | 15 - pixel: Simply a position in pixels. An integer always means pixels. E.g. `lv_obj_set_x(btn, 10)` 47 …oordinate related property is stored as a style property. If you use `lv_obj_set_x(obj, 20)` LVGL … 77 lv_obj_set_x(obj, 10); //Separate... 87 lv_obj_set_x(btn, lv_pct(10)); //x = 10 % of parent content area width
|
D | object.md | 87 lv_obj_set_x(obj1, -30); /*Move the child a little bit off the parent*/
|
/lvgl-3.7.0/examples/widgets/checkbox/ |
D | lv_example_checkbox_2.c | 71 lv_obj_set_x(cont2, lv_pct(50)); in lv_example_checkbox_2()
|
/lvgl-3.7.0/src/core/ |
D | lv_obj_pos.h | 58 void lv_obj_set_x(struct _lv_obj_t * obj, lv_coord_t x);
|
D | lv_disp.c | 510 lv_obj_set_x(obj, v); in set_x_anim()
|
D | lv_obj_pos.c | 48 lv_obj_set_x(obj, x); in lv_obj_set_pos() 52 void lv_obj_set_x(lv_obj_t * obj, lv_coord_t x) in lv_obj_set_x() function
|
/lvgl-3.7.0/src/widgets/ |
D | lv_roller.c | 603 lv_obj_set_x(label, (lv_obj_get_content_width(obj) - lv_obj_get_width(label)) / 2); in refr_position() 606 lv_obj_set_x(label, lv_obj_get_content_width(obj) - lv_obj_get_width(label)); in refr_position() 609 lv_obj_set_x(label, 0); in refr_position()
|
/lvgl-3.7.0/docs/widgets/ |
D | obj.md | 26 You can set the position relative to the parent with `lv_obj_set_x(obj, new_x)` and `lv_obj_set_y(o…
|
/lvgl-3.7.0/docs/get-started/ |
D | quick-overview.md | 108 lv_obj_set_x(btn1, 30);
|
/lvgl-3.7.0/demos/music/ |
D | lv_demo_music_main.c | 122 lv_obj_set_x((lv_obj_t *)obj, (lv_coord_t)x); in _obj_set_x_anim_cb()
|
/lvgl-3.7.0/demos/benchmark/ |
D | lv_demo_benchmark.c | 1155 lv_obj_set_x(obj, rnd_next(0, lv_obj_get_width(scene_bg) - lv_obj_get_width(obj))); in fall_anim()
|