/lvgl-3.7.0/src/extra/widgets/msgbox/ |
D | lv_msgbox.c | 61 lv_obj_t * lv_msgbox_create(lv_obj_t * parent, const char * title, const char * txt, const char * b… in lv_msgbox_create() argument 85 bool has_title = title && strlen(title) > 0; in lv_msgbox_create() 89 mbox->title = lv_label_create(obj); in lv_msgbox_create() 90 lv_label_set_text(mbox->title, has_title ? title : ""); in lv_msgbox_create() 91 lv_label_set_long_mode(mbox->title, LV_LABEL_LONG_SCROLL_CIRCULAR); in lv_msgbox_create() 92 if(add_close_btn) lv_obj_set_flex_grow(mbox->title, 1); in lv_msgbox_create() 93 else lv_obj_set_width(mbox->title, LV_PCT(100)); in lv_msgbox_create() 145 return mbox->title; in lv_msgbox_get_title()
|
D | lv_msgbox.h | 39 lv_obj_t * title; member 63 lv_obj_t * lv_msgbox_create(lv_obj_t * parent, const char * title, const char * txt, const char * b…
|
/lvgl-3.7.0/src/extra/widgets/win/ |
D | lv_win.c | 57 lv_obj_t * title = lv_label_create(header); in lv_win_add_title() local 58 lv_label_set_long_mode(title, LV_LABEL_LONG_DOT); in lv_win_add_title() 59 lv_label_set_text(title, txt); in lv_win_add_title() 60 lv_obj_set_flex_grow(title, 1); in lv_win_add_title() 61 return title; in lv_win_add_title()
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | win.md | 5 The Window is container-like object built from a header with title and buttons and a content area. 24 …exts (but typically only one) can be added to the header with `lv_win_add_title(win, "The title")`. 28 …title and the buttons will be added in the order the functions are called. So adding a button, a t… 29 …the title is set to take all the remaining space on the header. In other words: it pushes to the r…
|
D | msgbox.md | 5 They are built from a background container, a title, an optional close button, a text and optional … 22 `lv_msgbox_create(parent, title, txt, btn_txts[], add_close_btn)` creates a message box. 24 If `parent` is `NULL` the message box will be modal. `title` and `txt` are strings for the title an…
|
D | menu.md | 40 `lv_menu_page_create(menu, title)` creates a new empty menu page.
|
/lvgl-3.7.0/src/extra/widgets/menu/ |
D | lv_menu.c | 120 lv_obj_t * lv_menu_page_create(lv_obj_t * parent, char * title) in lv_menu_page_create() argument 127 if(title) { in lv_menu_page_create() 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() 567 if(page->title != NULL) { in lv_menu_page_destructor() 568 lv_mem_free(page->title); in lv_menu_page_destructor() 569 page->title = NULL; in lv_menu_page_destructor() [all …]
|
D | lv_menu.h | 76 char * title; member 105 lv_obj_t * lv_menu_page_create(lv_obj_t * parent, char * title);
|
/lvgl-3.7.0/demos/widgets/ |
D | lv_demo_widgets.c | 38 static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const… 555 lv_obj_t * title = lv_label_create(chart1_cont); in analytics_create() local 556 lv_label_set_text(title, "Unique visitors"); in analytics_create() 557 lv_obj_add_style(title, &style_title, 0); in analytics_create() 558 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 2, LV_GRID_ALIGN_START, 0, 1); in analytics_create() 599 title = lv_label_create(chart2_cont); in analytics_create() 600 lv_label_set_text(title, "Monthly revenue"); in analytics_create() 601 lv_obj_add_style(title, &style_title, 0); in analytics_create() 602 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 2, LV_GRID_ALIGN_START, 0, 1); in analytics_create() 802 lv_obj_t * title = lv_label_create(panel1); in shop_create() local [all …]
|
/lvgl-3.7.0/.github/ISSUE_TEMPLATE/ |
D | dev-discussion.md | 4 title: ''
|
D | bug-report.md | 4 title: ''
|
/lvgl-3.7.0/demos/music/ |
D | lv_demo_music_list.c | 170 const char * title = _lv_demo_music_get_title(track_id); in add_list_btn() local 196 lv_label_set_text(title_label, title); in add_list_btn()
|
D | lv_demo_music_main.c | 274 lv_obj_t * title = lv_label_create(lv_scr_act()); in _lv_demo_music_main_create() local 275 lv_label_set_text(title, "LVGL Demo\nMusic player"); in _lv_demo_music_main_create() 276 lv_obj_set_style_text_align(title, LV_TEXT_ALIGN_CENTER, 0); in _lv_demo_music_main_create() 277 lv_obj_set_style_text_font(title, font_large, 0); in _lv_demo_music_main_create() 278 lv_obj_set_style_text_line_space(title, 8, 0); in _lv_demo_music_main_create() 279 lv_obj_fade_out(title, 500, INTRO_TIME); in _lv_demo_music_main_create() 281 lv_obj_align_to(title, logo, LV_ALIGN_OUT_LEFT_MID, -20, 0); in _lv_demo_music_main_create()
|
/lvgl-3.7.0/demos/benchmark/ |
D | lv_demo_benchmark.c | 627 static lv_obj_t * title; variable 680 title = lv_label_create(scr); in benchmark_init() 681 lv_obj_set_pos(title, LV_DPI_DEF / 30, LV_DPI_DEF / 30); in benchmark_init() 684 lv_obj_align_to(subtitle, title, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); in benchmark_init() 730 …lv_label_set_text_fmt(title, "%"LV_PRId32"/%"LV_PRId32": %s%s", scene_act * 2 + (opa_mode ? 1 : 0), in lv_demo_benchmark_run_scene() 809 title = lv_label_create(lv_scr_act()); in generate_report() 810 lv_label_set_text_fmt(title, "Weighted FPS: %"LV_PRIu32, fps_weighted); in generate_report() 998 …lv_label_set_text_fmt(title, "%"LV_PRId32"/%"LV_PRId32": %s%s", scene_act * 2 + (opa_mode ? 1 : 0), in next_scene_timer_cb()
|
D | README.md | 11 On to top of the screen the title of the current test step, and the result of the previous step is …
|
/lvgl-3.7.0/docs/others/ |
D | fragment.md | 28 const char *title;
|
/lvgl-3.7.0/scripts/ |
D | changelog-template.hbs | 2 ## [{{title}}]({{href}}) {{niceDate}}
|
D | Doxyfile | 32 # title of most generated pages and in a few other places. 537 # append additional text to a page's title, such as Class Reference. If set to 1694 # following commands have a special meaning inside the header: $title, 1696 # $projectbrief, $projectlogo. Doxygen will replace $title with the empty
|
/lvgl-3.7.0/ |
D | Kconfig | 561 prompt "Select theme default title font" 565 Select theme default title font
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 946 - feat(msgbox): omit title label unless needed [`2539`](https://github.com/lvgl/lvgl/pull/2539) 1744 - fix(win) arabic process the title of the window
|