Home
last modified time | relevance | path

Searched refs:tab (Results 1 – 16 of 16) sorted by relevance

/lvgl-latest/demos/flex_layout/
Dlv_demo_flex_layout_view_ctrl_pad.c20 ui->ctrl_pad.tab.align.ddlist_align_##item = \
21 ddlist_create(tab, \
39 static void tab_flex_create(lv_obj_t * tab, view_t * ui);
40 static void tab_align_create(lv_obj_t * tab, view_t * ui);
41 static void tab_layout_create(lv_obj_t * tab, view_t * ui);
70 ui->ctrl_pad.tab.view = tv; in view_ctrl_pad_create()
72 ui->ctrl_pad.tab.flex.tab = lv_tabview_add_tab(tv, "Flex"); in view_ctrl_pad_create()
73 ui->ctrl_pad.tab.align.tab = lv_tabview_add_tab(tv, "Align"); in view_ctrl_pad_create()
74 ui->ctrl_pad.tab.layout.tab = lv_tabview_add_tab(tv, "Layout"); in view_ctrl_pad_create()
76 tab_flex_create(ui->ctrl_pad.tab.flex.tab, ui); in view_ctrl_pad_create()
[all …]
Dlv_demo_flex_layout_ctrl_pad.c20 lv_obj_t* sbox = ui->ctrl_pad.tab.layout.spinbox_##item; \
26 …lv_obj_add_event_cb(ui->ctrl_pad.tab.layout.spinbox_##item, ctrl_pad_spinbox_event_handler, LV_EVE…
68 ui->ctrl_pad.tab.flex.checkbox_scrl, in ctrl_pad_attach()
95 lv_obj_t * spinbox = ui->ctrl_pad.tab.layout.spinbox_width; in ctrl_pad_obj_update()
99 spinbox = ui->ctrl_pad.tab.layout.spinbox_height; in ctrl_pad_obj_update()
111 lv_obj_t * checkbox = ui->ctrl_pad.tab.flex.checkbox_scrl; in ctrl_pad_obj_update()
Dlv_demo_flex_layout_main.h43 lv_obj_t * tab; member
49 lv_obj_t * tab; member
56 lv_obj_t * tab; member
74 } tab; member
Dlv_demo_flex_layout_flex_loader.c35 lv_dropdown_set_selected(ui->ctrl_pad.tab.align.ddlist_align_##item, \
44 lv_obj_add_event_cb(ui->ctrl_pad.tab.align.ddlist_align_##item, \
100 ui->ctrl_pad.tab.flex.ddlist_flow, in FLEX_ALIGN_EVENT_DEF()
117 lv_dropdown_set_selected(ui->ctrl_pad.tab.flex.ddlist_flow, i, LV_ANIM_OFF); in flex_loader_obj_update()
/lvgl-latest/docs/details/widgets/
Dtabview.rst19 The tab buttons can be positioned on the top, bottom, left and right
22 A new tab can be selected either by clicking on a tab button or by
53 the tab's content can be created.
58 A tab can be renamed with
61 Navigating to a new tab
64 To select a new tab you can:
66 - Click on its tab button
71 Setting tab bar position
75 the tab bar can be moved to any side.
77 Setting tab bar size
[all …]
Dtileview.rst47 content of the tab can be created.
/lvgl-latest/examples/others/observer/
Dindex.rst20 Custom tab view with state management
/lvgl-latest/docs/details/integration/driver/display/
Dlcd_stm32_guide.rst54 #. Switch to the Pinout & Configuration tab.
58 #. Switch to the Clock Configuration tab.
60 #. Switch back to the Pinout & Configuration tab, and in the Middleware and Software Packs category…
62 #. In the Advanced Settings tab enable USE_NEWLIB_REENTRANT. We are finished here.
79 #. Open the Project Manager tab, and select Advanced Settings. On the right hand side there is a Re…
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c230 lv_obj_t * tab = lv_obj_get_child(cont, 0); in lv_demo_widgets_start_slideshow() local
232 int32_t v = lv_obj_get_scroll_bottom(tab); in lv_demo_widgets_start_slideshow()
240 lv_anim_set_var(&a, tab); in lv_demo_widgets_start_slideshow()
1665 lv_obj_t * tab = lv_obj_get_child(cont, tab_id); in slideshow_anim_completed_cb() local
1666 lv_obj_scroll_to_y(tab, 0, LV_ANIM_OFF); in slideshow_anim_completed_cb()
1669 int32_t v = lv_obj_get_scroll_bottom(tab); in slideshow_anim_completed_cb()
1678 lv_anim_set_var(&a, tab); in slideshow_anim_completed_cb()
/lvgl-latest/docs/details/integration/chip/
Drenesas.rst125 …mg_debug_btn|). If prompted with `Debug Configurations`, on the `Debugger` tab select the ``J-Link…
186 …mg_debug_btn|). If prompted with `Debug Configurations`, on the `Debugger` tab select the ``E2 Lit…
Dalif.rst182 graphical editor tab called "Manage Solution" with a gear icon.
/lvgl-latest/docs/
DCODING_STYLE.rst59 - Set editor to use 4 spaces for tab indentations (instead of tab characters).
60 - Exception: the **Kconfig** file and any make files require leading tab characters
DCONTRIBUTING.rst80 repository to your GitHub account (``https://github.com/<YOUR_NAME>?tab=repositories``)
DREADME.md192 * Do not use tab characters in code blocks.
DDoxyfile225 # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
1438 # the same information as the tab index, you could consider setting
/lvgl-latest/src/libs/tiny_ttf/
Dstb_truetype_htcw.h2936 int tab = stbtt__find_table(info->data, info->fontstart, "OS/2"); local
2937 if(!tab)
2939 if(typoAscent) *typoAscent = ttSHORT(info->data, tab + 68);
2940 if(typoDescent) *typoDescent = ttSHORT(info->data, tab + 70);
2941 if(typoLineGap) *typoLineGap = ttSHORT(info->data, tab + 72);