Lines Matching refs:other
17 action_info::action_info(const action_info &other) in action_info() argument
19 copy(other); in action_info()
32 action_info &action_info::operator=(const action_info &other) in operator =() argument
34 copy(other); in operator =()
39 void action_info::copy(const action_info &other) in copy() argument
41 action_type = other.action_type; in copy()
42 action_name = other.action_name; in copy()
43 target_widget_name = other.target_widget_name; in copy()
44 parent_widget_name = other.parent_widget_name; in copy()
45 animation_id_name = other.animation_id_name; in copy()
46 target_show_child_widgets = other.target_show_child_widgets; in copy()
47 parent_show_child_widgets = other.parent_show_child_widgets; in copy()
49 if (other.animation) in copy()
52 (*animation) = (*other.animation); in copy()
100 trigger_info::trigger_info(const trigger_info &other) in trigger_info() argument
102 copy(other); in trigger_info()
124 trigger_info &trigger_info::operator=(const trigger_info &other) in operator =() argument
126 copy(other); in operator =()
225 void trigger_info::copy(const trigger_info &other) in copy() argument
227 trigger_name = other.trigger_name; in copy()
228 trigger_type = other.trigger_type; in copy()
230 system_event_animat_id_name = other.system_event_animat_id_name; in copy()
231 signal_id_name = other.signal_id_name; in copy()
232 user_event_id_name = other.user_event_id_name; in copy()
234 event_type = other.event_type; in copy()
238 for (int index = 0; index < other.action_list.GetCount(); index++) in copy()
240 action = new action_info(*other.action_list.GetAt(index)); in copy()
282 flow_item::flow_item(const flow_item &other) in flow_item() argument
284 copy(other); in flow_item()
297 flow_item &flow_item::operator=(const flow_item &other) in operator =() argument
299 copy(other); in operator =()
304 void flow_item::copy(const flow_item &other) in copy() argument
306 screen_name = other.screen_name; in copy()
307 rect = other.rect; in copy()
308 enabled = other.enabled; in copy()
314 copy = other.trigger_list; in copy()
371 screen_flow::screen_flow(const screen_flow &other) in screen_flow() argument
375 for (int index = 0; index < other.flow_list.GetCount(); index++) in screen_flow()
377 item = new flow_item(*other.flow_list.GetAt(index)); in screen_flow()
381 mScale = other.mScale; in screen_flow()
382 mDiagramScale = other.mDiagramScale; in screen_flow()