/lvgl-latest/examples/widgets/msgbox/ |
D | lv_example_msgbox_2.c | 12 lv_obj_t * setting = lv_msgbox_create(lv_screen_active()); in lv_example_msgbox_2() local 13 lv_obj_set_style_clip_corner(setting, true, 0); in lv_example_msgbox_2() 16 lv_obj_set_size(setting, 300, 200); in lv_example_msgbox_2() 19 lv_msgbox_add_title(setting, "Setting"); in lv_example_msgbox_2() 20 lv_obj_t * minimize_button = lv_msgbox_add_header_button(setting, LV_SYMBOL_MINUS); in lv_example_msgbox_2() 21 lv_obj_add_event_cb(minimize_button, minimize_button_event_cb, LV_EVENT_CLICKED, setting); in lv_example_msgbox_2() 22 lv_msgbox_add_close_button(setting); in lv_example_msgbox_2() 25 lv_obj_t * content = lv_msgbox_get_content(setting); in lv_example_msgbox_2() 53 lv_obj_t * apply_button = lv_msgbox_add_footer_button(setting, "Apply"); in lv_example_msgbox_2() 56 lv_obj_t * cancel_button = lv_msgbox_add_footer_button(setting, "Cancel"); in lv_example_msgbox_2() [all …]
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_thermostat.c | 399 lv_obj_t * setting = lv_obj_create(parent); in create_widget3_setting() local 400 lv_obj_remove_style_all(setting); in create_widget3_setting() 401 lv_obj_set_height(setting, LV_SIZE_CONTENT); in create_widget3_setting() 402 lv_obj_set_flex_flow(setting, LV_FLEX_FLOW_COLUMN); in create_widget3_setting() 403 lv_obj_set_flex_align(setting, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER); in create_widget3_setting() 404 lv_obj_set_style_pad_row(setting, c->sz->gap[5], 0); in create_widget3_setting() 405 lv_obj_set_flex_grow(setting, 1); in create_widget3_setting() 406 lv_obj_set_style_bg_color(setting, lv_color_white(), 0); in create_widget3_setting() 407 lv_obj_set_style_bg_opa(setting, active ? LV_OPA_60 : LV_OPA_20, 0); in create_widget3_setting() 408 lv_obj_set_style_radius(setting, c->sz->gap[3], 0); in create_widget3_setting() [all …]
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | renesas_glcdc.rst | 40 - This diver relies on code generated by e² studio. Missing the step while setting up the project w… 41 - Activate the diver by setting :c:macro:`LV_USE_RENESAS_GLCDC` to ``1`` in your *"lv_conf.h"*.
|
/lvgl-latest/docs/details/integration/driver/ |
D | windows.rst | 27 - When Windows DPI scaling setting is changed, Windows backend will stretch display content. 34 - When Windows DPI scaling setting is changed, LVGL display DPI value is also changed.
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | configuration.rst | 18 When setting up your project for the first time, copy ``lvgl/lv_conf_template.h`` to 64 The comments in ``lv_conf.h`` explain the meaning of each setting. Be sure
|
/lvgl-latest/docs/details/integration/renderers/ |
D | nema_gfx.rst | 22 Enable the renderer by setting :c:macro:`LV_USE_NEMA_GFX` to ``1`` in 53 provided implementations by setting :c:macro:`LV_USE_NEMA_HAL` to a value other than
|
/lvgl-latest/docs/details/integration/building/ |
D | cmake.rst | 63 All optional targets can be disabled by setting the proper cache variables.
|
/lvgl-latest/docs/details/libs/ |
D | rle.rst | 71 To use the RLE Decoder, enable it in ``lv_conf.h`` configuration file by setting :c:macro:`LV_USE_R…
|
D | freetype.rst | 18 If you haven't already done so, now is a good time to get familiar with setting up
|
/lvgl-latest/docs/details/widgets/ |
D | textarea.rst | 164 drawing might be slow. However, by setting :c:macro:`LV_LABEL_LONG_TXT_HINT` in 171 12 bytes per label by setting it to ``0``. 180 per label in RAM by setting that macro to equate to ``0``.)
|
D | bar.rst | 72 - :cpp:enumerator:`LV_BAR_MODE_RANGE` Allows setting the start value as well with
|
D | image.rst | 100 the same image. This feature can be enabled in the style by setting 183 Any ``offset`` value is applied after the image source is aligned. For example setting
|
D | slider.rst | 77 - :cpp:enumerator:`LV_SLIDER_RANGE` Allows setting the start value as well by
|
D | chart.rst | 73 - You can hide a point by setting its Y-value to :c:macro:`LV_CHART_POINT_NONE`. 203 setting values with ``lv_chart_set_...value_...()`` functions. See below
|
D | label.rst | 174 customized by setting the Label's animation style property, using
|
/lvgl-latest/docs/details/base-widget/ |
D | coord.rst | 11 Similar to many other parts of LVGL, the concept of setting the 212 In other words, every futire x and y setting for that Widget will be relative to the 390 position setting. However, to keep the LVGL API lean, only the most 391 common coordinate setting features have a "simple" version and the more 405 One way to achieve this is by setting a new Y coordinate for the pressed
|
/lvgl-latest/docs/details/integration/driver/touchpad/ |
D | evdev.rst | 28 To set up an event input, first create an input device with ``lv_edev_create`` setting it to the co…
|
/lvgl-latest/docs/ |
D | CODE_OF_CONDUCT.rst.back | 36 professional setting
|
D | Doxyfile | 206 # Note that setting this tag to YES also means that rational rose comments are 318 # globally by setting AUTOLINK_SUPPORT to NO. 350 # This will only work if the methods are indeed getting or setting a simple 659 # documentation regardless of this setting. 935 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 1110 # the setting GENERATE_TREEVIEW). It is highly recommended to start with a 1153 # style sheet in the list overrules the setting of the previous ones in the 1220 # a fully collapsed tree already exceeds this amount). So setting the number of 1438 # the same information as the tab index, you could consider setting 1562 # setting. When disabled, doxygen will generate a PHP script for searching and [all …]
|
/lvgl-latest/docs/details/other-components/ |
D | obj_id.rst | 19 Enable Widget ID functionality by setting :c:macro:`LV_USE_OBJ_ID` to ``1`` in ``lv_conf.h``. 108 functions. You do this by first setting :c:macro:`LV_USE_OBJ_ID_BUILTIN` to `0` in
|
D | font_manager.rst | 23 Enable FreeType and Font Manager in ``lv_conf.h`` by setting the
|
/lvgl-latest/docs/details/integration/chip/ |
D | stm32.rst | 30 A minimal example using STM32CubeIDE, and HAL. \* When setting up 282 LVGL's integration with DMA2D can be enabled by setting ``LV_USE_DRAW_DMA2D``
|
/lvgl-latest/docs/details/main-components/ |
D | draw.rst | 85 by configuring the available Draw Units in ``lv_conf.h``, such as setting 92 several things, but setting its ``evaluate_cb`` and ``dispatch_cb`` callbacks
|
/lvgl-latest/docs/details/integration/framework/ |
D | arduino.rst | 104 After enabling the log module and setting :c:macro:`LV_LOG_LEVEL` accordingly, the
|
/lvgl-latest/docs/details/debugging/ |
D | profiler.rst | 35 1. Enable the built-in profiler functionality by setting :c:macro:`LV_USE_PROFILER_BUILTIN`.
|