Home
last modified time | relevance | path

Searched refs:action (Results 1 – 25 of 46) sorted by relevance

12

/GUIX-v6.2.1/guix_studio/
Dtrigger_action_edit_dlg.cpp77 action_info *action; in IMPLEMENT_DYNAMIC() local
81 action = new action_info(*trigger->action_list.GetAt(index)); in IMPLEMENT_DYNAMIC()
83 mActionList.Add(action); in IMPLEMENT_DYNAMIC()
244 action_info *action; in OnCancel() local
247 action = mActionList.GetAt(index); in OnCancel()
248 action->RemoveAnimationIdFromDictionary(mDisplayIndex); in OnCancel()
296 action_info *action = new action_info; in OnAddAction() local
297 action->action_type = action_type; in OnAddAction()
298 action->action_name = action_name; in OnAddAction()
299 action->target_widget_name = _T(""); in OnAddAction()
[all …]
Dapp_runner.cpp249 action_info *action; in app_trigger_action_process() local
257 action = action_list->GetAt(index); in app_trigger_action_process()
259 switch (action->action_type) in app_trigger_action_process()
262 if ((action->target_widget_name == SCREEN_STACK_POP_STRING) || in app_trigger_action_process()
263 (action->parent_widget_name == SCREEN_STACK_POP_STRING)) in app_trigger_action_process()
268 if (action->parent_widget_name != SCREEN_STACK_POP_STRING) in app_trigger_action_process()
270 parent = app_widget_find(root, action->parent_widget_name); in app_trigger_action_process()
273 if (action->target_widget_name != SCREEN_STACK_POP_STRING) in app_trigger_action_process()
275 target = app_widget_find(root, action->target_widget_name); in app_trigger_action_process()
290 if ((action->target_widget_name == SCREEN_STACK_POP_STRING) || in app_trigger_action_process()
[all …]
Dscreen_flow.cpp159 action_info *action; in GetActionInfo() local
163 action = ActionList.GetAt(index); in GetActionInfo()
165 if (action->action_name == action_name) in GetActionInfo()
167 return action; in GetActionInfo()
177 action_info *action; in FindActionName() local
180 action = ActionList.GetAt(index); in FindActionName()
182 if (action->action_name == name) in FindActionName()
192 void trigger_info::CreateUniqueActionName(CArray<action_info *> &ActionList, action_info *action) in CreateUniqueActionName() argument
194 if (!FindActionName(ActionList, action->action_name)) in CreateUniqueActionName()
199 CString base = action->action_name; in CreateUniqueActionName()
[all …]
Dscreen_generator.cpp1214 …ator::GenerateAnimationInfo(flow_item *item, trigger_info *trigger, action_info *action, int index) in GenerateAnimationInfo() argument
1222 GX_ANIMATION_INFO *info = action->animation; in GenerateAnimationInfo()
1233 if (action->target_widget_name.GetLength() > 0) in GenerateAnimationInfo()
1235 if (action->target_show_child_widgets) in GenerateAnimationInfo()
1241 …target_info = m_project->FindWidgetInfo(target_info->GetChildWidgetInfo(), action->target_widget_n… in GenerateAnimationInfo()
1246 target_info = m_project->FindWidgetInfo(folder, action->target_widget_name, FALSE); in GenerateAnimationInfo()
1261 if (action->parent_widget_name.IsEmpty()) in GenerateAnimationInfo()
1287 if (action->parent_show_child_widgets) in GenerateAnimationInfo()
1293 …parent_info = m_project->FindWidgetInfo(parent_info->GetChildWidgetInfo(), action->parent_widget_n… in GenerateAnimationInfo()
1298 parent_info = m_project->FindWidgetInfo(folder, action->parent_widget_name, FALSE); in GenerateAnimationInfo()
[all …]
DStudioXProject.cpp3159 action_info *action; in WriteTriggerInfo() local
3183 action = action_list->GetAt(count); in WriteTriggerInfo()
3185 writer.WriteString("action_name", action->action_name); in WriteTriggerInfo()
3186 type_name = trigger_action_select_dlg::GetActionTypeName(action->action_type); in WriteTriggerInfo()
3188 writer.WriteString("target_widget_name", action->target_widget_name); in WriteTriggerInfo()
3189 writer.WriteString("parent_widget_name", action->parent_widget_name); in WriteTriggerInfo()
3190 writer.WriteString("animation_id_name", action->animation_id_name); in WriteTriggerInfo()
3191 writer.WriteBool("target_show_child_widgets", action->target_show_child_widgets); in WriteTriggerInfo()
3192 writer.WriteBool("parent_show_child_widgets", action->parent_show_child_widgets); in WriteTriggerInfo()
3194 if (action->animation) in WriteTriggerInfo()
[all …]
/GUIX-v6.2.1/test/guix_studio_test/test_view/
Dtest_main.py79 parser.add_argument('-b', action='store_true', dest='build_studio', help='Build Studio')
80 …parser.add_argument('-c', action='store_true', dest='run_color_format_tests', help = 'Run color fo…
81 …parser.add_argument('--resources_edit', action='store_true', dest='run_resources_edit_tests', help…
82 … parser.add_argument('-w', action='store_true', dest='run_widget_tests', help = 'Run Widget tests')
83 …parser.add_argument('--menu_widget', action='store_true', dest='run_menu_widget_tests', help = 'Ru…
84 …parser.add_argument('--project_import', action='store_true', dest='run_project_import_tests', help…
85 …parser.add_argument('--scroll_wheel_widget', action='store_true', dest='run_scroll_wheel_widget_te…
86 …parser.add_argument('-t', action='store_true', dest='run_toolbar_tests', help = 'Run toolbar tests…
87 parser.add_argument('-g', action='store_true', dest='generate', help = 'Generate golden files')
88 …parser.add_argument('-s', action='store_true', dest="screenshot", help = "Generate canvas screen s…
[all …]
/GUIX-v6.2.1/test/example_internal/standalone_binres_load_16bpp/
Dstandalone_binres_load_16bpp_specifications.c52 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
59 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
62 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
63 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
70 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
85 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
90 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
96 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
99 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
100 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/template/
Dtemplate_specifications.c51 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
58 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
61 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
62 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
69 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
84 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
89 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
95 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
98 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
99 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/tutorials/demo_guix_menu/
Ddemo_guix_menu_specifications.c52 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
59 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
62 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
63 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
70 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
85 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
90 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
96 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
99 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
100 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/tutorials/demo_guix_transitions/
Ddemo_guix_transitions_specifications.c54 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
61 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
64 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
65 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
72 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
87 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
92 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
98 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
101 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
102 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/system_screen_stack/
Dsystem_screen_stack_specifications.c53 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
60 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
63 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
64 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
71 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
86 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
91 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
97 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
100 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
101 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/guix_studio_test/test_view/golden_files/
Dtrigger_target_rename_specifications.c49 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
56 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
59 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
60 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
67 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
82 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
87 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
93 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
96 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
97 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
Dtemplate_specifications.c53 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
60 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
63 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
64 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
71 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
86 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
91 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
97 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
100 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
101 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/guix_medical_mouse_support/
Dguix_medical_mouse_support_specifications.c51 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
58 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
61 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
62 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
69 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
84 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
89 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
95 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
98 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
99 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_all_widgets_tree_view.c61 enum action{ enum
70 int action; member
128 while(list->action) in control_thread_entry()
134 if(list->action == SCROLL_DOWN) in control_thread_entry()
148 else if(list->action == SCROLL_RIGHT || in control_thread_entry()
149 list->action == SCROLL_LEFT) in control_thread_entry()
156 if(list->action == SCROLL_RIGHT) in control_thread_entry()
180 if(list->action == CLICK_ITEM_ROOT) in control_thread_entry()
/GUIX-v6.2.1/samples/demo_guix_industrial/
Ddemo_guix_industrial_specifications.c52 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
59 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
62 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
63 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
70 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
85 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
90 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
96 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
99 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
100 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/guix_studio_test/test_demo/
Dtest_main.py640 parser.add_argument('-b', action='store_true', dest='build_studio', help='Build Studio')
641 … parser.add_argument('--build_guix', action='store_true', dest='build_guix', help='Build Guix Lib')
642 parser.add_argument('-p', action = 'store', dest ='project', help='Specify Studio project')
643 …parser.add_argument('-t', action = 'store_true', dest ='test', help='Compare generated output file…
644 …parser.add_argument('-g', action = 'store_true', dest ='generate', help="Generate all golden files…
645 …parser.add_argument('-r', action = 'store_true', dest ='gen_resources', help="Generate resource go…
646 …parser.add_argument('-s', action = 'store_true', dest ='gen_specifications', help="Generate specif…
647 …parser.add_argument('-v', action='store', dest='version', help='Specify guix library version, such…
648 …parser.add_argument('--upgrade', action = 'store_true', dest = 'upgrade', help="Upgrade sln files.…
649 …parser.add_argument('--compile_project', action = 'store_true', dest = 'compile_project', help="Co…
[all …]
/GUIX-v6.2.1/samples/demo_guix_car_infotainment/
Ddemo_guix_car_infotainment_specifications.c54 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
61 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
64 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
65 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
72 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
87 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
92 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
98 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
101 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
102 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/samples/demo_guix_widget_types/
Dguix_widget_types_specifications.c55 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
62 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
65 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
66 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
73 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
88 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
93 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
99 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
102 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
103 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/all_widgets_synergy_24BPP_Dave_Disabled/
Dall_widgets_synergy_dave_disabled_specifications.c57 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
64 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
67 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
68 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
75 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
90 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
95 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
101 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
104 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
105 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/all_widgets_execute/
Dall_widgets_execute_specifications.c57 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
64 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
67 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
68 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
75 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
90 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
95 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
101 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
104 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
105 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/samples/demo_guix_medical/
Dguix_medical_specifications.c51 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
58 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
61 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
62 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
69 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
84 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
89 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
95 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
98 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
99 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/all_widgets_synergy_565rgb/
Dall_widgets_synergy_565rgb_specifications.c58 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
65 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
68 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
69 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
76 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
91 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
96 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
102 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
105 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
106 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/all_widgets_32argb/
Dall_widgets_32argb_specifications.c59 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
66 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
69 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
70 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
77 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
92 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
97 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
103 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
106 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
107 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]
/GUIX-v6.2.1/test/example_internal/all_widgets_defined_5_4_0_compatibility/
Dall_widgets_defined_5_4_0_compatibility_specifications.c59 static GX_WIDGET *gx_studio_action_target_get(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_get() argument
66 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_get()
69 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_get()
70 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_get()
77 parent = (GX_WIDGET *)action->parent; in gx_studio_action_target_get()
92 target = (GX_WIDGET *) action->target; in gx_studio_action_target_get()
97 …atic GX_WIDGET *gx_studio_action_target_find(GX_WIDGET *current, GX_CONST GX_STUDIO_ACTION *action) in gx_studio_action_target_find() argument
103 if (action->flags & GX_ACTION_FLAG_DYNAMIC_TARGET) in gx_studio_action_target_find()
106 widget_define = (GX_STUDIO_WIDGET *) action->target; in gx_studio_action_target_find()
107 if(action->flags & GX_ACTION_FLAG_DYNAMIC_PARENT) in gx_studio_action_target_find()
[all …]

12