Home
last modified time | relevance | path

Searched refs:anim_type (Results 1 – 19 of 19) sorted by relevance

/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch_private.h143 void lv_demo_smartwatch_home_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
151 void lv_demo_smartwatch_settings_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t dela…
159 void lv_demo_smartwatch_control_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
167 void lv_demo_smartwatch_weather_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
175 void lv_demo_smartwatch_list_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
183 void lv_demo_smartwatch_notifications_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t…
191 void lv_demo_smartwatch_qr_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
199 void lv_demo_smartwatch_easter_egg_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t de…
Dlv_demo_smartwatch_easter_egg.h43 void lv_demo_smartwatch_easter_egg_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t de…
Dlv_demo_smartwatch_list.h44 void lv_demo_smartwatch_list_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
Dlv_demo_smartwatch_control.h44 void lv_demo_smartwatch_control_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
Dlv_demo_smartwatch_qr.h43 void lv_demo_smartwatch_qr_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
Dlv_demo_smartwatch_notifications.h48 void lv_demo_smartwatch_notifications_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t…
Dlv_demo_smartwatch_weather.h43 void lv_demo_smartwatch_weather_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay…
Dlv_demo_smartwatch_settings.h43 void lv_demo_smartwatch_settings_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t dela…
Dlv_demo_smartwatch_qr.c101 void lv_demo_smartwatch_qr_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay) in lv_demo_smartwatch_qr_load() argument
103 lv_screen_load_anim(qr_screen, anim_type, time, delay, false); in lv_demo_smartwatch_qr_load()
Dlv_demo_smartwatch_easter_egg.c66 void lv_demo_smartwatch_easter_egg_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t de… in lv_demo_smartwatch_easter_egg_load() argument
81 lv_screen_load_anim(easter_egg_screen, anim_type, time, delay, false); in lv_demo_smartwatch_easter_egg_load()
Dlv_demo_smartwatch.h76 void lv_demo_smartwatch_home_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay);
Dlv_demo_smartwatch_control.c64 void lv_demo_smartwatch_control_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay) in lv_demo_smartwatch_control_load() argument
66 lv_screen_load_anim(control_screen, anim_type, time, delay, false); in lv_demo_smartwatch_control_load()
Dlv_demo_smartwatch_list.c86 void lv_demo_smartwatch_list_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay) in lv_demo_smartwatch_list_load() argument
88 lv_demo_smartwatch_home_load(anim_type, time, delay); in lv_demo_smartwatch_list_load()
Dlv_demo_smartwatch_notifications.c94 void lv_demo_smartwatch_notifications_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t… in lv_demo_smartwatch_notifications_load() argument
96 lv_screen_load_anim(notification_screen, anim_type, time, delay, false); in lv_demo_smartwatch_notifications_load()
Dlv_demo_smartwatch_settings.c69 void lv_demo_smartwatch_settings_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t dela… in lv_demo_smartwatch_settings_load() argument
71 lv_screen_load_anim(settings_screen, anim_type, time, delay, false); in lv_demo_smartwatch_settings_load()
Dlv_demo_smartwatch_weather.c99 void lv_demo_smartwatch_weather_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay) in lv_demo_smartwatch_weather_load() argument
101 lv_screen_load_anim(weather_screen, anim_type, time, delay, false); in lv_demo_smartwatch_weather_load()
Dlv_demo_smartwatch.c213 void lv_demo_smartwatch_home_load(lv_screen_load_anim_t anim_type, uint32_t time, uint32_t delay) in lv_demo_smartwatch_home_load() argument
215 lv_screen_load_anim(home_tile, anim_type, time, delay, false); in lv_demo_smartwatch_home_load()
/lvgl-latest/src/display/
Dlv_display.c637 void lv_screen_load_anim(lv_obj_t * new_scr, lv_screen_load_anim_t anim_type, uint32_t time, uint32… in lv_screen_load_anim() argument
665 d->draw_prev_over_act = is_out_anim(anim_type); in lv_screen_load_anim()
699 switch(anim_type) { in lv_screen_load_anim()
1206 static bool is_out_anim(lv_screen_load_anim_t anim_type) in is_out_anim() argument
1208 return anim_type == LV_SCR_LOAD_ANIM_FADE_OUT || in is_out_anim()
1209 anim_type == LV_SCR_LOAD_ANIM_OUT_LEFT || in is_out_anim()
1210 anim_type == LV_SCR_LOAD_ANIM_OUT_RIGHT || in is_out_anim()
1211 anim_type == LV_SCR_LOAD_ANIM_OUT_TOP || in is_out_anim()
1212 anim_type == LV_SCR_LOAD_ANIM_OUT_BOTTOM; in is_out_anim()
Dlv_display.h416 void lv_screen_load_anim(lv_obj_t * scr, lv_screen_load_anim_t anim_type, uint32_t time, uint32_t d…