Lines Matching refs:hint_panel

63 static lv_obj_t * hint_panel;  variable
259 lv_demo_obj_set_hidden(hint_panel, true); in lv_demo_smartwatch_show_scroll_hint()
271 lv_obj_set_parent(hint_panel, lv_tileview_get_tile_active(active_screen)); in lv_demo_smartwatch_show_scroll_hint()
275 lv_obj_set_parent(hint_panel, active_screen); in lv_demo_smartwatch_show_scroll_hint()
278 lv_demo_obj_set_hidden(hint_panel, dir == LV_DIR_NONE); in lv_demo_smartwatch_show_scroll_hint()
478 hint_panel = lv_obj_create(dialog_parent); in create_scroll_hints()
480 lv_obj_set_width(hint_panel, lv_pct(100)); in create_scroll_hints()
481 lv_obj_set_height(hint_panel, lv_pct(100)); in create_scroll_hints()
482 lv_obj_set_align(hint_panel, LV_ALIGN_CENTER); in create_scroll_hints()
483 lv_obj_add_flag(hint_panel, LV_OBJ_FLAG_HIDDEN); in create_scroll_hints()
484 lv_obj_remove_flag(hint_panel, LV_OBJ_FLAG_CLICKABLE); in create_scroll_hints()
485 lv_obj_set_style_radius(hint_panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
486 lv_obj_set_style_bg_color(hint_panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
487 lv_obj_set_style_bg_opa(hint_panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
488 lv_obj_set_style_border_width(hint_panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
489 lv_obj_set_style_pad_left(hint_panel, 5, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
490 lv_obj_set_style_pad_right(hint_panel, 5, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
491 lv_obj_set_style_pad_top(hint_panel, 5, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
492 lv_obj_set_style_pad_bottom(hint_panel, 5, LV_PART_MAIN | LV_STATE_DEFAULT); in create_scroll_hints()
494 hint_up = lv_image_create(hint_panel); in create_scroll_hints()
508 hint_down = lv_image_create(hint_panel); in create_scroll_hints()
523 hint_left = lv_image_create(hint_panel); in create_scroll_hints()
538 hint_right = lv_image_create(hint_panel); in create_scroll_hints()