Lines Matching refs:label
185 struct rtgui_label* label; in app_main() local
216 label = rtgui_label_create("RT-Thread & RTGUI"); in app_main()
217 if (label == RT_NULL) in app_main()
223 RTGUI_WIDGET_TEXTALIGN(RTGUI_WIDGET(label)) = RTGUI_ALIGN_LEFT; in app_main()
224 RTGUI_WIDGET_BACKGROUND(RTGUI_WIDGET(label)) = red; in app_main()
225 RTGUI_WIDGET_FOREGROUND(RTGUI_WIDGET(label)) = white; in app_main()
231 rtgui_widget_set_rect(RTGUI_WIDGET(label), &rect3); in app_main()
232 rtgui_container_add_child(container, RTGUI_WIDGET(label)); in app_main()
259 label = rtgui_label_create("EFM32GG_DK3750 Kit"); in app_main()
260 if (label == RT_NULL) in app_main()
265 RTGUI_WIDGET_TEXTALIGN(RTGUI_WIDGET(label)) = RTGUI_ALIGN_LEFT; in app_main()
266 RTGUI_WIDGET_BACKGROUND(RTGUI_WIDGET(label)) = white; in app_main()
267 RTGUI_WIDGET_FOREGROUND(RTGUI_WIDGET(label)) = blue; in app_main()
273 rtgui_widget_set_rect(RTGUI_WIDGET(label), &rect3); in app_main()
274 rtgui_container_add_child(container, RTGUI_WIDGET(label)); in app_main()
301 label = rtgui_label_create("哈罗,盹胖!"); in app_main()
302 if(label == RT_NULL) in app_main()
307 RTGUI_WIDGET_BACKGROUND(RTGUI_WIDGET(label)) = white; in app_main()
308 RTGUI_WIDGET_FOREGROUND(RTGUI_WIDGET(label)) = black; in app_main()
309 RTGUI_WIDGET(label)->align = RTGUI_ALIGN_CENTER_HORIZONTAL | RTGUI_ALIGN_CENTER_VERTICAL; in app_main()
310 rtgui_widget_set_miniwidth(RTGUI_WIDGET(label),130); in app_main()
311 rtgui_box_append(box, RTGUI_WIDGET(label)); in app_main()
415 struct rtgui_label* label; in app_photo() local
443 label = rtgui_label_create("Photo Frame Demo"); in app_photo()
444 if (label == RT_NULL) in app_photo()
450 RTGUI_WIDGET_TEXTALIGN(RTGUI_WIDGET(label)) = RTGUI_ALIGN_LEFT; in app_photo()
451 RTGUI_WIDGET_BACKGROUND(RTGUI_WIDGET(label)) = white; in app_photo()
452 RTGUI_WIDGET_FOREGROUND(RTGUI_WIDGET(label)) = blue; in app_photo()
458 rtgui_widget_set_rect(RTGUI_WIDGET(label), &rect2); in app_photo()
459 rtgui_object_set_event_handler(RTGUI_OBJECT(label), photo_lable_event_handler); in app_photo()
460 rtgui_container_add_child(container, RTGUI_WIDGET(label)); in app_photo()