Lines Matching refs:root
67 GX_WIDGET *app_widget_find(GX_WINDOW *root, CString widget_name) in app_widget_find() argument
76 display = ((GX_WINDOW_ROOT *)root)->gx_window_root_canvas->gx_canvas_display; in app_widget_find()
163 GX_ANIMATION *app_animation_create(GX_WINDOW *root, GX_WIDGET *target) in app_animation_create() argument
170 display = ((GX_WINDOW_ROOT *)root)->gx_window_root_canvas->gx_canvas_display; in app_animation_create()
223 void app_animation_process(GX_ANIMATION_INFO *animation, GX_WINDOW *root, GX_WIDGET *parent, GX_WID… in app_animation_process() argument
225 GX_ANIMATION *app_animation = app_animation_create(root, target); in app_animation_process()
247 UINT app_trigger_action_process(studiox_project *project, int display_index, GX_WINDOW *root, CArra… in app_trigger_action_process() argument
270 parent = app_widget_find(root, action->parent_widget_name); in app_trigger_action_process()
275 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
280 parent = (GX_WIDGET *)root; in app_trigger_action_process()
298 parent = app_widget_find(root, action->parent_widget_name); in app_trigger_action_process()
303 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
308 parent = (GX_WIDGET *)root; in app_trigger_action_process()
325 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
345 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
356 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
364 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
380 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
388 parent = app_widget_find(root, action->parent_widget_name); in app_trigger_action_process()
402 parent = (GX_WIDGET *)root; in app_trigger_action_process()
406 app_animation_process(action->animation, (GX_WINDOW *)root, parent, target); in app_trigger_action_process()
411 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
432 UINT app_root_event_process(GX_WINDOW *root, GX_EVENT *event_ptr) in app_root_event_process() argument
444 status = gx_window_event_process(root, event_ptr); in app_root_event_process()
446 if (project && root->gx_widget_first_child) in app_root_event_process()
457 display = ((GX_WINDOW_ROOT *)root)->gx_window_root_canvas->gx_canvas_display; in app_root_event_process()
546 … return app_trigger_action_process(project, display_index, root, action_list, screen, event_ptr); in app_root_event_process()