/lvgl-latest/docs/details/widgets/ |
D | msgbox.rst | 20 The message box can be modal (blocking clicks on the rest of the screen) 30 The message box is built from other Widgets, so you can check these 45 Create a message box 48 :cpp:expr:`lv_msgbox_create(parent)` creates a message box. 49 If ``parent`` is ``NULL`` the message box will be modal, and will use the 72 The building blocks of the message box can be obtained using the 82 Functions that add something to the message box return a pointer to the newly added Widget: 93 Close the message box 96 :cpp:expr:`lv_msgbox_close(msgbox)` closes (deletes) the message box. 98 :cpp:expr:`lv_msgbox_close_async(msgbox)` closes (deletes) the message box [all …]
|
D | checkbox.rst | 10 The Checkbox Widget is created from a "tick box" and a label. When the 11 Checkbox is clicked the tick box is toggled. 22 - :cpp:enumerator:`LV_PART_INDICATOR` The "tick box" is a square that uses the 25 tick box larger in the respective directions.
|
D | line.rst | 34 (e.g. ``{5, 10}``), or as a percentage of the Line's bounding box using 37 as percentage values do not automatically expand the bounding box.
|
D | textarea.rst | 35 inserted. The cursor's area is always the bounding box of the current
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_smart_meter.c | 166 lv_obj_t * box = lv_obj_create(part); in create_widget1_part() local 167 lv_obj_remove_style_all(box); in create_widget1_part() 168 lv_obj_add_flag(box, LV_OBJ_FLAG_EVENT_BUBBLE); in create_widget1_part() 169 lv_obj_set_size(box, LV_PCT(100), LV_SIZE_CONTENT); in create_widget1_part() 170 lv_obj_set_align(box, LV_ALIGN_BOTTOM_MID); in create_widget1_part() 171 lv_obj_set_flex_flow(box, LV_FLEX_FLOW_ROW); in create_widget1_part() 172 … lv_obj_set_flex_align(box, LV_FLEX_ALIGN_SPACE_BETWEEN, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START); in create_widget1_part() 174 …lv_obj_t * daily_box = lv_demo_high_res_simple_container_create(box, true, c->sz->gap[2], LV_FLEX_… in create_widget1_part() 196 …lv_obj_t * weekly_box = lv_demo_high_res_simple_container_create(box, true, c->sz->gap[2], LV_FLEX… in create_widget1_part() 230 lv_obj_t * box = arg; in widget1_open_part1_anim_cb() local [all …]
|
D | lv_demo_high_res_app_thermostat.c | 250 lv_obj_t * box = lv_obj_get_parent(button); in widget2_temperature_button_clicked_cb() local 251 lv_obj_t * label = lv_obj_get_child(box, 1); in widget2_temperature_button_clicked_cb() 253 int32_t change = button == lv_obj_get_child(box, 0) ? -1 : 1; in widget2_temperature_button_clicked_cb() 262 …lv_obj_t * box = lv_demo_high_res_simple_container_create(parent, true, c->sz->gap[2], LV_FLEX_ALI… in create_widget2_value() local 263 lv_obj_set_flex_grow(box, 1); in create_widget2_value() 265 lv_obj_t * title_label = lv_label_create(box); in create_widget2_value() 270 lv_obj_t * range_label = lv_label_create(box); in create_widget2_value() 276 …lv_obj_t * temperature_box = lv_demo_high_res_simple_container_create(box, false, c->sz->gap[2], L… in create_widget2_value() 307 return box; in create_widget2_value()
|
/lvgl-latest/examples/widgets/msgbox/ |
D | index.rst | 2 Simple Message box 8 Scrolling and styled Message box
|
/lvgl-latest/docs/details/base-widget/ |
D | coord.rst | 84 LVGL follows CSS's `border-box <https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing>`__ 85 model. A Widget's "box" is built from the following parts: 87 :bounding box: the width/height of the elements. 91 :content: the content area which is the size of the bounding box reduced by the border width … 94 …:alt: The box models of LVGL: The content area is smaller than the bounding box with the padding a… 96 The border is drawn inside the bounding box. Inside the border LVGL 99 The outline is drawn outside the bounding box. 324 The above functions set the size of a Widget's bounding box but the 326 bounding box will be enlarged with the addition of padding. 333 The size of the bounding box and the content area can be retrieved with
|
D | event.rst | 228 For example, this can be used to manually close a message box by
|
D | obj.rst | 436 - :cpp:enumerator:`LV_PART_INDICATOR`: Indicator, e.g. for slider, bar, switch, or the tick box of …
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | building_lvgl.rst | 11 LVGL also supports ``make`` and ``CMake`` build systems out of the box.
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgSceneBuilder.cpp | 643 …ectRatioAlign align, AspectRatioMeetOrSlice meetOrSlice, float width, float height, const Box& box) in _calculateAspectRatioMatrix() argument 645 auto sx = width / box.w; in _calculateAspectRatioMatrix() 646 auto sy = height / box.h; in _calculateAspectRatioMatrix() 647 auto tvx = box.x * sx; in _calculateAspectRatioMatrix() 648 auto tvy = box.y * sy; in _calculateAspectRatioMatrix() 663 tvx = box.x * sx; in _calculateAspectRatioMatrix() 664 tvy = box.y * sy; in _calculateAspectRatioMatrix() 665 auto tvw = box.w * sx; in _calculateAspectRatioMatrix() 666 auto tvh = box.h * sy; in _calculateAspectRatioMatrix() 741 Box box = {symbol.vx, symbol.vy, vw, vh}; in _useBuildHelper() local [all …]
|
/lvgl-latest/scripts/ |
D | code-format.cfg | 22 # what Git does out of the box: uses platform line endings in the
|
/lvgl-latest/demos/ |
D | README.md | 116 Shows how the widgets look like out of the box using the built-in material theme.
|
/lvgl-latest/env_support/cmsis-pack/ |
D | README.md | 87 … Widgets and Benchmark can be compiled correctly, this is for improving the out of box experience.)
|
/lvgl-latest/docs/details/libs/ |
D | rlottie.rst | 257 The Esp-box devkit meets this spec and 258 https://github.com/espressif/esp-box is a great starting point to adding
|
/lvgl-latest/docs/details/integration/bindings/ |
D | pikascript.rst | 14 It is simpler, out of the box, runs with no porting and configuration at all, does not depend on OS…
|
/lvgl-latest/docs/details/integration/os/ |
D | zephyr.rst | 24 - **Customizable** - Out-of-the-box support for 500+ boards
|
/lvgl-latest/docs/details/integration/chip/ |
D | espressif.rst | 15 - `ESP-BOX-3 <https://github.com/lvgl/lv_port_espressif_esp-box-3>`__
|
/lvgl-latest/docs/details/main-components/ |
D | font.rst | 211 - ``lv_checkbox``: Shows the box on the right 246 - ticking the ``Compressed`` check box in the online converter
|
D | indev.rst | 277 - If you press the encoder on a complex object (like a list, message box, etc.)
|
/lvgl-latest/docs/ |
D | Doxyfile | 1538 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for 1545 # search using the keyboard; to jump to the search box use <access key> + S 1547 # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1551 # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 2401 # by representing a node as a red box. Note that doxygen if the number of direct 2424 # to support this out of the box.
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.f…
|
/lvgl-latest/ |
D | README.md | 66 …e](https://docs.lvgl.io/master/details/integration/building/cmake.html) is included out of the box.
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style.rst | 175 - :cpp:enumerator:`LV_PART_INDICATOR`: Indicator, e.g. for slider, bar, switch, or the tick box of …
|