Lines Matching refs:btn
9 lv_obj_t * btn; in lv_example_style_15() local
13 btn = lv_btn_create(lv_scr_act()); in lv_example_style_15()
14 lv_obj_set_size(btn, 100, 40); in lv_example_style_15()
15 lv_obj_align(btn, LV_ALIGN_CENTER, 0, -70); in lv_example_style_15()
17 label = lv_label_create(btn); in lv_example_style_15()
23 btn = lv_btn_create(lv_scr_act()); in lv_example_style_15()
24 lv_obj_set_size(btn, 100, 40); in lv_example_style_15()
25 lv_obj_set_style_opa(btn, LV_OPA_50, 0); in lv_example_style_15()
26 lv_obj_align(btn, LV_ALIGN_CENTER, 0, 0); in lv_example_style_15()
28 label = lv_label_create(btn); in lv_example_style_15()
34 btn = lv_btn_create(lv_scr_act()); in lv_example_style_15()
35 lv_obj_set_size(btn, 100, 40); in lv_example_style_15()
36 lv_obj_set_style_transform_angle(btn, 150, 0); /*15 deg*/ in lv_example_style_15()
37 lv_obj_set_style_transform_zoom(btn, 256 + 64, 0); /*1.25x*/ in lv_example_style_15()
38 lv_obj_set_style_transform_pivot_x(btn, 50, 0); in lv_example_style_15()
39 lv_obj_set_style_transform_pivot_y(btn, 20, 0); in lv_example_style_15()
40 lv_obj_set_style_opa(btn, LV_OPA_50, 0); in lv_example_style_15()
41 lv_obj_align(btn, LV_ALIGN_CENTER, 0, 70); in lv_example_style_15()
43 label = lv_label_create(btn); in lv_example_style_15()