/lvgl-latest/src/libs/libjpeg_turbo/ |
D | lv_libjpeg_turbo.c | 48 …jpeg_head_info(const char * filename, uint32_t * width, uint32_t * height, uint32_t * orientation); 50 static bool get_jpeg_direction(uint8_t * data, uint32_t data_size, uint32_t * orientation); 137 uint32_t orientation = 0; in decoder_info() local 139 if(!get_jpeg_head_info(src, &width, &height, &orientation)) { in decoder_info() 145 header->w = (orientation % 180) ? height : width; in decoder_info() 146 header->h = (orientation % 180) ? width : height; in decoder_info() 423 …_jpeg_head_info(const char * filename, uint32_t * width, uint32_t * height, uint32_t * orientation) in get_jpeg_head_info() argument 436 if(!get_jpeg_direction(data, data_size, orientation)) { in get_jpeg_head_info() 478 static bool get_jpeg_direction(uint8_t * data, uint32_t data_size, uint32_t * orientation) in get_jpeg_direction() argument 536 *orientation = 0; in get_jpeg_direction() [all …]
|
/lvgl-latest/docs/details/widgets/ |
D | slider.rst | 41 Value, range and orientation 48 - horizontal orientation, with 57 - for orientation, width and height, simply set width and height properties; 58 - :cpp:expr:`lv_slider_set_orientation(slider, orientation)` to override orientation 59 caused by ``width`` and ``height``. Valid values for ``orientation`` are: 65 The default drawing direction is from left to right in horizontal orientation and 66 bottom to top in vertical orientation. If the minimum value is set to be greater
|
D | switch.rst | 14 By default, a Switch is oriented horizontally. It's orientation will be vertical 55 Change orientation 58 With a Switch is created, its default orientation is 61 :cpp:expr:`lv_switch_set_orientation(widget, orientation)`. Possible values for 62 ``orientation`` are:
|
D | bar.rst | 40 - for orientation, width and height, simply set width and height style properties; 41 - :cpp:expr:`lv_bar_set_orientation(bar, orientation)` to override orientation 42 caused by ``width`` and ``height``. Valid values for ``orientation`` are:
|
D | scale.rst | 42 with tick marks below the line. If you need it to have a different shape, orientation
|
/lvgl-latest/src/widgets/switch/ |
D | lv_switch.c | 88 void lv_switch_set_orientation(lv_obj_t * obj, lv_switch_orientation_t orientation) in lv_switch_set_orientation() argument 93 sw->orientation = orientation; in lv_switch_set_orientation() 106 return sw->orientation; in lv_switch_get_orientation() 121 sw->orientation = LV_SWITCH_ORIENTATION_AUTO; in lv_switch_constructor() 201 switch(sw->orientation) { in draw_main()
|
D | lv_switch_private.h | 37 lv_switch_orientation_t orientation : 3; /**< Orientation of switch*/ member
|
D | lv_switch.h | 61 void lv_switch_set_orientation(lv_obj_t * obj, lv_switch_orientation_t orientation);
|
/lvgl-latest/src/widgets/bar/ |
D | lv_bar_private.h | 48 lv_bar_orientation_t orientation : 3; /**< Orientation of bar*/ member
|
D | lv_bar.h | 97 void lv_bar_set_orientation(lv_obj_t * obj, lv_bar_orientation_t orientation);
|
D | lv_bar.c | 171 void lv_bar_set_orientation(lv_obj_t * obj, lv_bar_orientation_t orientation) in lv_bar_set_orientation() argument 176 bar->orientation = orientation; in lv_bar_set_orientation() 230 return bar->orientation; in lv_bar_get_orientation() 261 bar->orientation = LV_BAR_ORIENTATION_AUTO; in lv_bar_constructor() 306 switch(bar->orientation) { in draw_indic()
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_vg_font.h | 180 …r(NEMA_VG_PAINT_HANDLE paint, char ch, float x, float y, nema_matrix3x3_t m, uint32_t orientation);
|
/lvgl-latest/src/widgets/slider/ |
D | lv_slider.h | 110 void lv_slider_set_orientation(lv_obj_t * obj, lv_slider_orientation_t orientation);
|
D | lv_slider.c | 163 void lv_slider_set_orientation(lv_obj_t * obj, lv_slider_orientation_t orientation) in lv_slider_set_orientation() argument 165 lv_bar_set_orientation(obj, (lv_bar_orientation_t)orientation); in lv_slider_set_orientation() 463 …if(slider->bar.orientation == LV_BAR_ORIENTATION_AUTO) return lv_obj_get_width(obj) >= lv_obj_get_… in is_slider_horizontal() 464 else if(slider->bar.orientation == LV_BAR_ORIENTATION_HORIZONTAL) return true; in is_slider_horizontal()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_bar.c | 405 static lv_obj_t * bar_create_orientation(lv_bar_orientation_t orientation, int32_t w, int32_t h) in bar_create_orientation() argument 408 lv_bar_set_orientation(bar, orientation); in bar_create_orientation()
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | gen_mipi.rst | 18 …) SOCs. These commands provide a common interface to configure display orientation, color resoluti… 137 /* Set display orientation to landscape */ 172 …_create()` function is a flag array. This can be used to configure the orientation and RGB orderin…
|
D | lcd_stm32_guide.rst | 251 …reate()`` call with the appropriate driver. You can change the default orientation by adjusting th…
|
/lvgl-latest/docs/ |
D | CODE_OF_CONDUCT.rst.back | 12 religion, or sexual identity and orientation.
|
D | CHANGELOG.rst | 76 - **feat(bar): add bar orientation** `6212 <https://github.com/lvgl/lvgl/pull/6212>`__
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite.h | 1342 vg_lite_error_t vg_lite_set_mirror(vg_lite_orientation_t orientation);
|
/lvgl-latest/docs/details/main-components/ |
D | display.rst | 386 The orientation of the display can be changed with
|