/lvgl-3.7.0/docs/widgets/extra/ |
D | menu.md | 12 - Main page: lv_menu_page 17 - Sidebar page: lv_menu_page 39 ### Create a menu page 40 `lv_menu_page_create(menu, title)` creates a new empty menu page. 41 You can add any widgets to the page. 43 ### Set a menu page in the main area 44 Once a menu page has been created, you can set it to the main area with `lv_menu_set_page(menu, pag… 46 ### Set a menu page in the sidebar 47 Once a menu page has been created, you can set it to the sidebar with `lv_menu_set_sidebar_page(men… 50 …obj in the main page. When you click the btn obj, you want it to open up a new page, use `lv_menu_… [all …]
|
/lvgl-3.7.0/src/extra/widgets/menu/ |
D | lv_menu.c | 126 lv_menu_page_t * page = (lv_menu_page_t *)obj; in lv_menu_page_create() local 128 page->title = lv_mem_alloc(strlen(title) + 1); in lv_menu_page_create() 129 LV_ASSERT_MALLOC(page->title); in lv_menu_page_create() 130 if(page->title == NULL) return NULL; in lv_menu_page_create() 131 strcpy(page->title, title); in lv_menu_page_create() 134 page->title = NULL; in lv_menu_page_create() 174 lv_obj_t * page = NULL; in lv_menu_refr() local 177 page = act_hist->page; in lv_menu_refr() 185 lv_menu_set_page(obj, page); in lv_menu_refr() 192 void lv_menu_set_page(lv_obj_t * obj, lv_obj_t * page) in lv_menu_set_page() argument [all …]
|
D | lv_menu.h | 43 lv_obj_t * page; member 47 lv_obj_t * page; member 135 void lv_menu_set_page(lv_obj_t * obj, lv_obj_t * page); 142 void lv_menu_set_sidebar_page(lv_obj_t * obj, lv_obj_t * page); 164 void lv_menu_set_load_page_event(lv_obj_t * menu, lv_obj_t * obj, lv_obj_t * page);
|
/lvgl-3.7.0/demos/widgets/ |
D | lv_demo_widgets.py | 134 lv.page.set_scrl_layout(lv.page.__cast__(parent), lv.LAYOUT.PRETTY_TOP) 152 grid_w= lv.page.get_width_grid(lv.page.__cast__(parent),1,1) 155 grid_w= lv.page.get_width_grid(lv.page.__cast__(parent),2,1) 238 page = lv.page.__cast__(parent) 239 lv.page.set_scrl_layout(page, lv.LAYOUT.PRETTY_TOP) 243 grid_h_chart = lv.page.get_height_grid(page,1,1) 245 grid_w_chart=lv.page.get_width_grid(page,1,1) 247 grid_w_chart=lv.page.get_width_grid(page,1,2) 331 grid_w_meter = lv.page.get_width_grid(page, 1, 1) 333 grid_w_meter = lv.page.get_width_grid(page, 2, 1) [all …]
|
/lvgl-3.7.0/docs/get-started/ |
D | index.md | 5 2. Read the [Introduction](https://docs.lvgl.io/latest/en/html/intro/index.html) page of the docume… 6 3. Read the [Quick overview](https://docs.lvgl.io/master/get-started/quick-overview.html) page of t… 11 8. Read the [Overview](https://docs.lvgl.io/master/overview/index.html) page to get a better unders…
|
/lvgl-3.7.0/src/extra/widgets/tabview/ |
D | lv_tabview.c | 73 lv_obj_t * page = lv_obj_create(cont); in lv_tabview_add_tab() local 74 lv_obj_set_size(page, LV_PCT(100), LV_PCT(100)); in lv_tabview_add_tab() 75 lv_obj_clear_flag(page, LV_OBJ_FLAG_CLICK_FOCUSABLE); in lv_tabview_add_tab() 121 return page; in lv_tabview_add_tab()
|
/lvgl-3.7.0/examples/widgets/menu/ |
D | index.rst | 20 Simple Menu with floating btn to add new menu page
|
/lvgl-3.7.0/ |
D | README.md | 122 2. Read the [Introduction](https://docs.lvgl.io/master/intro/index.html) page of the documentation … 123 …the [Quick overview](https://docs.lvgl.io/master/get-started/quick-overview.html) page (15 minutes) 127 7. Read the [Overview](https://docs.lvgl.io/master/overview/index.html) page to get a better unders…
|
/lvgl-3.7.0/scripts/ |
D | Doxyfile | 44 # for a project that appears at the top of each page and should give viewer a 219 # page for each member. If set to NO, the documentation of a member will be part 383 # instead of on a separate page (for HTML and Man pages) or section (for LaTeX 396 # to NO, structs, classes, and unions are shown on a separate page (for HTML and 537 # append additional text to a page's title, such as Class Reference. If set to 671 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 679 # page. This will remove the Namespaces entry from the Quick Index and from the 942 # is part of the input, its contents will be placed on the main page 944 # and want to reuse the introduction page also for the doxygen output. 1097 # generated HTML page (for example: .htm, .php, .asp). [all …]
|
/lvgl-3.7.0/docs/ |
D | CONTRIBUTING.md | 41 4. Add a commit message on the bottom of the page. 52 5. Create a PR on GitHub from the page of your `lvgl` repository (`https://github.com/<YOUR_NAME>/l… 252 For further ideas take a look at the [Roadmap](/ROADMAP) page. If you are interested in any of them…
|
D | CHANGELOG.md | 178 - fix(menu): prevent setting the current page again [`4136`](https://github.com/lvgl/lvgl/pull/4136) 1325 - docs(animimg) Add missing animation image page [`2609`](https://github.com/lvgl/lvgl/pull/2609) 1354 - docs list all examples on one page [`25acaf4`](https://github.com/lvgl/lvgl/commit/25acaf45ca8727… 1501 - Update page.html [`9573bab`](https://github.com/lvgl/lvgl/commit/9573bab5cbe2da643f5146e62c176bdd… 1758 - fix(page) fix LV_SCROLLBAR_MODE_DRAG 1984 - `tabview` by default allow auto expanding the page only to right and bottom (#1573)
|
/lvgl-3.7.0/docs/overview/ |
D | indev.md | 69 …. It works similar to the *TAB* key on the PC to select an element in an application or a web page.
|
D | scroll.md | 131 The object will be scrolled into view even if it's on a different page of a tabview.
|
/lvgl-3.7.0/docs/widgets/ |
D | obj.md | 20 …LVGL (padding, coordinates in styles, layouts, etc) visit the [Coordinates](/overview/coords) page.
|
/lvgl-3.7.0/src/widgets/ |
D | lv_dropdown.c | 54 static void list_press_handler(lv_obj_t * page);
|