Lines Matching refs:weather_forecast_hourly

44 static lv_obj_t * weather_forecast_hourly;  variable
124 lv_obj_clean(weather_forecast_hourly); in lv_demo_smartwatch_weather_hourly_clear()
183 lv_obj_t * panel = lv_obj_create(weather_forecast_hourly); in lv_demo_smartwatch_weather_add_hourly()
341 weather_forecast_hourly = lv_obj_create(weather_hourly_panel); in create_screen_weather()
342 lv_obj_set_width(weather_forecast_hourly, lv_pct(100)); in create_screen_weather()
343 lv_obj_set_height(weather_forecast_hourly, lv_pct(100)); in create_screen_weather()
344 lv_obj_set_align(weather_forecast_hourly, LV_ALIGN_CENTER); in create_screen_weather()
345 lv_obj_set_flex_flow(weather_forecast_hourly, LV_FLEX_FLOW_ROW); in create_screen_weather()
346 …lv_obj_set_flex_align(weather_forecast_hourly, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START, LV_FLEX_A… in create_screen_weather()
347 lv_obj_set_scrollbar_mode(weather_forecast_hourly, LV_SCROLLBAR_MODE_OFF); in create_screen_weather()
348 lv_obj_set_scroll_dir(weather_forecast_hourly, LV_DIR_HOR); in create_screen_weather()
349 lv_obj_set_style_radius(weather_forecast_hourly, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
350 …lv_obj_set_style_bg_color(weather_forecast_hourly, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE… in create_screen_weather()
351 lv_obj_set_style_bg_opa(weather_forecast_hourly, 255, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
352 lv_obj_set_style_border_width(weather_forecast_hourly, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
353 lv_obj_set_style_pad_left(weather_forecast_hourly, 50, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
354 lv_obj_set_style_pad_right(weather_forecast_hourly, 100, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
355 lv_obj_set_style_pad_top(weather_forecast_hourly, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
356 lv_obj_set_style_pad_bottom(weather_forecast_hourly, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
357 lv_obj_set_style_pad_column(weather_forecast_hourly, 10, LV_PART_MAIN | LV_STATE_DEFAULT); in create_screen_weather()
383 lv_obj_set_scrollbar_mode(weather_forecast_hourly, lv_demo_smartwatch_get_scrollbar_mode()); in weather_screen_event_cb()