| /GUIX-v6.2.1/common/inc/ |
| D | gx_animation.h | 65 UINT _gx_animation_create(GX_ANIMATION *animation); 66 UINT _gx_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas); 67 VOID _gx_animation_complete_event_send(GX_ANIMATION *animation); 68 UINT _gx_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent); 69 UINT _gx_animation_start(GX_ANIMATION *animation, GX_ANIMATION_INFO *info); 70 UINT _gx_animation_stop(GX_ANIMATION *animation); 72 VOID _gx_animation_complete(GX_ANIMATION *animation); 74 UINT _gx_animation_drag_disable(GX_ANIMATION *animation, GX_WIDGET *widget); 75 UINT _gx_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_ANIMATION_INFO *info); 77 UINT _gx_animation_drag_tracking(GX_ANIMATION *animation, GX_POINT penpos); [all …]
|
| D | gx_system.h | 70 UINT _gx_system_animation_get(GX_ANIMATION **animation); 71 UINT _gx_system_animation_free(GX_ANIMATION *animation); 178 UINT _gxe_system_animation_get(GX_ANIMATION **animation); 179 UINT _gxe_system_animation_free(GX_ANIMATION *animation); 295 SYSTEM_DECLARE GX_ANIMATION _gx_system_animation_pool[GX_ANIMATION_POOL_SIZE]; 296 SYSTEM_DECLARE GX_ANIMATION *_gx_system_animation_free_list; 300 SYSTEM_DECLARE GX_ANIMATION *_gx_system_animation_list;
|
| /GUIX-v6.2.1/test/example_internal/screen_drag_animation_with_block_move/ |
| D | demo_screen_drag_animation_with_block_move.c | 24 GX_ANIMATION h_screen_drag_animation; 25 GX_ANIMATION v_screen_drag_animation; 81 static VOID enable_screen_drag_animation(GX_ANIMATION* animation, GX_WIDGET** screen_list, GX_WIDGE… in enable_screen_drag_animation() 100 memset(&h_screen_drag_animation, 0, sizeof(GX_ANIMATION)); in create_screen_drag_animations() 101 memset(&v_screen_drag_animation, 0, sizeof(GX_ANIMATION)); in create_screen_drag_animations()
|
| /GUIX-v6.2.1/common/src/ |
| D | gx_animation_delete.c | 75 UINT _gx_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent) in _gx_animation_delete() 77 GX_ANIMATION *animation; in _gx_animation_delete() 78 GX_ANIMATION *next; in _gx_animation_delete()
|
| D | gx_animation_create.c | 73 UINT _gx_animation_create(GX_ANIMATION *animation) in _gx_animation_create() 75 memset(animation, 0, sizeof(GX_ANIMATION)); in _gx_animation_create()
|
| D | gx_system_animation_get.c | 77 UINT _gx_system_animation_get(GX_ANIMATION **animation) in _gx_system_animation_get() 80 GX_ANIMATION *free_block; in _gx_system_animation_get()
|
| D | gx_animation_stop.c | 79 UINT _gx_animation_stop(GX_ANIMATION *animation) in _gx_animation_stop() 82 GX_ANIMATION *previous; in _gx_animation_stop()
|
| D | gx_animation_complete.c | 74 VOID _gx_animation_complete_event_send(GX_ANIMATION *animation) in _gx_animation_complete_event_send() 150 VOID _gx_animation_complete(GX_ANIMATION *animation) in _gx_animation_complete()
|
| D | gx_animation_update.c | 86 GX_ANIMATION *animation; in _gx_animation_update() 87 GX_ANIMATION *next; in _gx_animation_update()
|
| D | gx_animation_drag_event_process.c | 88 static UINT _gx_animation_drag_event_check(GX_ANIMATION *animation, GX_EVENT *event_ptr) in _gx_animation_drag_event_check() 325 GX_ANIMATION *animation; in _gx_animation_drag_event_process()
|
| D | gx_animation_landing_speed_set.c | 73 UINT _gx_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step) in _gx_animation_landing_speed_set()
|
| D | gx_animation_canvas_define.c | 76 UINT _gx_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas) in _gx_animation_canvas_define()
|
| D | gxe_animation_landing_speed_set.c | 73 UINT _gxe_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step) in _gxe_animation_landing_speed_set()
|
| D | gxe_animation_stop.c | 76 UINT _gxe_animation_stop(GX_ANIMATION *animation) in _gxe_animation_stop()
|
| D | gxe_animation_create.c | 69 UINT _gxe_animation_create(GX_ANIMATION *animation) in _gxe_animation_create()
|
| /GUIX-v6.2.1/test/guix_test/regression_test/tests/ |
| D | validation_guix_animation_delete_no_output.c | 48 GX_ANIMATION *animation; in control_thread_entry() 49 GX_ANIMATION *animation2; in control_thread_entry() 50 GX_ANIMATION animation3; in control_thread_entry() 58 memset(&animation3, 0, sizeof(GX_ANIMATION)); in control_thread_entry()
|
| D | validation_guix_animation_stop.c | 69 GX_ANIMATION *animation_1; in control_thread_entry() 70 GX_ANIMATION *animation_2; in control_thread_entry() 71 GX_ANIMATION *animation_3; in control_thread_entry()
|
| D | validation_guix_animation_update.c | 66 GX_ANIMATION animation; in control_thread_entry() 71 memset(&animation, 0, sizeof(GX_ANIMATION)); in control_thread_entry()
|
| D | validation_guix_animation_complete_push_stack.c | 68 GX_ANIMATION animation; in control_thread_entry() 86 memset(&animation, 0, sizeof(GX_ANIMATION)); in control_thread_entry()
|
| D | validation_guix_all_widgets_16bpp_canvas_animation.c | 66 GX_ANIMATION animation; in control_thread_entry() 76 memset(&animation, 0, sizeof(GX_ANIMATION)); in control_thread_entry()
|
| D | validation_guix_animation_complete.c | 66 GX_ANIMATION animation; in control_thread_entry() 81 memset(&animation, 0, sizeof(GX_ANIMATION)); in control_thread_entry()
|
| /GUIX-v6.2.1/test/example_internal/screen_drag_animation_with_canvas/ |
| D | demo_screen_drag_animation_with_canvas.c | 24 GX_ANIMATION h_screen_drag_animation; 25 GX_ANIMATION v_screen_drag_animation; 90 static VOID enable_screen_drag_animation(GX_ANIMATION* animation, GX_WIDGET** screen_list, GX_WIDGE… in enable_screen_drag_animation() 143 memset(&h_screen_drag_animation, 0, sizeof(GX_ANIMATION)); in create_screen_drag_animations() 144 memset(&v_screen_drag_animation, 0, sizeof(GX_ANIMATION)); in create_screen_drag_animations()
|
| /GUIX-v6.2.1/test/example_internal/screen_drag_animation/ |
| D | demo_screen_drag_animation.c | 18 GX_ANIMATION h_screen_drag_animation; 19 GX_ANIMATION v_screen_drag_animation; 119 memset(&h_screen_drag_animation, 0, sizeof(GX_ANIMATION)); in tx_application_define() 120 memset(&v_screen_drag_animation, 0, sizeof(GX_ANIMATION)); in tx_application_define()
|
| /GUIX-v6.2.1/tutorials/demo_guix_transitions/ |
| D | demo_guix_transitions.c | 27 GX_ANIMATION *drag_animation = GX_NULL; 30 GX_ANIMATION *transition_animation;
|
| /GUIX-v6.2.1/samples/demo_guix_home_automation/ |
| D | screen_base.c | 4 extern GX_ANIMATION slide_animation; 150 GX_ANIMATION *animation; in footer_icons_animation_start() 215 GX_ANIMATION *animation; in title_animation_start() 410 GX_ANIMATION *animation; in screen_list_slide()
|