-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathACObserver.h
226 lines (202 loc) · 10.3 KB
/
ACObserver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#pragma once
#define OBSERVER_CALL_EVENT(name,arg) {\
py::gil_scoped_acquire_for_archicad acq(this->m_state); \
try { \
py::object py_obsr = py::cast(this); \
if (py::hasattr(py_obsr, name)) { \
py_obsr.attr(name)(arg); \
} \
}catch (py::error_already_set & err) { \
err.restore(); \
if (PyErr_Occurred()) { \
PyErr_Print(); \
} \
} \
}
#define OBSERVER_CALL_EVENT_SET_PROCESSED(name,arg,pro_ptr) {\
py::gil_scoped_acquire_for_archicad acq(this->m_state); \
try { \
py::object py_obsr = py::cast(this); \
if (py::hasattr(py_obsr, name)) { \
py::object result = py_obsr.attr(name)(arg); \
*pro_ptr=true; \
} \
}catch (py::error_already_set & err) { \
err.restore(); \
if (PyErr_Occurred()) { \
PyErr_Print(); \
} \
} \
}
#define OBSERVER_CALL_EVENT_WITH_RETURN(name,arg,ret_ptr,ret_type) {\
py::gil_scoped_acquire_for_archicad acq(this->m_state); \
try { \
py::object py_obsr = py::cast(this); \
if (py::hasattr(py_obsr, name)) { \
py::object result = py_obsr.attr(name)(arg); \
if (!result.is_none()) { \
*ret_ptr = result.cast<ret_type>(); \
} \
} \
}catch (py::error_already_set & err) { \
err.restore(); \
if (PyErr_Occurred()) { \
PyErr_Print(); \
} \
} \
} \
#define OBSERVER_CALL_EVENT_WITH_RETURN_AND_SET_PROCESSED(name,arg,ret_ptr,ret_type,pro_ptr) {\
py::gil_scoped_acquire_for_archicad acq(this->m_state); \
try { \
py::object py_obsr = py::cast(this); \
if (py::hasattr(py_obsr, name)) { \
py::object result = py_obsr.attr(name)(arg); \
if (!result.is_none()) { \
*ret_ptr = result.cast<ret_type>(); \
} \
*pro_ptr=true; \
} \
}catch (py::error_already_set & err) { \
err.restore(); \
if (PyErr_Occurred()) { \
PyErr_Print(); \
} \
} \
}
#define ITEMOBSERVER_METHODS \
void ItemChangeRequested(const ItemMouseDownEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemChangeRequested", ev); \
} \
void ItemChanged(const ItemChangeEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemChanged", ev); \
} \
void ItemCharEntered(const ItemCharEnterEvent& ev, bool* denyChar) override { \
OBSERVER_CALL_EVENT_WITH_RETURN("ItemCharEntered", ev, denyChar, bool); \
} \
void ItemClicked(const ItemClickEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemClicked", ev); \
} \
void ItemMouseDown(const ItemMouseDownEvent& ev, bool* processed) override { \
OBSERVER_CALL_EVENT_SET_PROCESSED("ItemMouseDown", ev, processed); \
} \
void ItemContextHelpRequested(const ItemHelpEvent& ev, GS::UniString* contextHelpAnchor) override { \
OBSERVER_CALL_EVENT_WITH_RETURN("ItemContextHelpRequested", ev, contextHelpAnchor, GS::UniString); \
} \
void ItemContextMenuRequested(const ItemContextMenuEvent& ev, bool* needHelp, bool* processed) override { \
OBSERVER_CALL_EVENT_WITH_RETURN_AND_SET_PROCESSED("ItemContextMenuRequested", ev, needHelp, bool, processed); \
} \
void ItemDoubleClicked(const ItemDoubleClickEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemDoubleClicked", ev); \
} \
void ItemFocusGained(const ItemFocusEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemFocusGained", ev); \
} \
void ItemFocusLost(const ItemFocusEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemFocusLost", ev); \
} \
void ItemMouseMoved(const ItemMouseMoveEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemMouseMoved", ev); \
} \
void ItemToolTipRequested(const ItemHelpEvent& ev, GS::UniString* toolTipText) override { \
OBSERVER_CALL_EVENT_WITH_RETURN("ItemToolTipRequested", ev, toolTipText, GS::UniString); \
} \
void ItemTrackEntered(const ItemTrackEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemTrackEntered", ev); \
} \
void ItemTracked(const ItemTrackEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemTracked", ev); \
} \
void ItemTrackExited(const ItemTrackEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemTrackExited", ev); \
} \
void ItemUpdate(const ItemUpdateEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemUpdate", ev); \
} \
void ItemWheelTrackEntered(const ItemWheelEvent& ev, bool* processed) override { \
OBSERVER_CALL_EVENT_SET_PROCESSED("ItemWheelTrackEntered", ev, processed); \
} \
void ItemWheelTracked(const ItemWheelTrackEvent& ev, bool* processed) override { \
OBSERVER_CALL_EVENT_SET_PROCESSED("ItemWheelTracked", ev, processed); \
} \
void ItemWheelTrackExited(const ItemWheelEvent& ev, bool* processed) override { \
OBSERVER_CALL_EVENT_SET_PROCESSED("ItemWheelTrackExited", ev, processed); \
} \
void ItemResolutionFactorChanged(const ItemResolutionFactorChangeEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemResolutionFactorChanged", ev); \
} \
void ItemHoverStarted(const ItemHoverEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemHoverStarted", ev); \
} \
void ItemHoverEnded(const ItemHoverEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemHoverEnded", ev); \
} \
void ItemPressed(const ItemPressedEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemPressed", ev); \
} \
void ItemOverlayUpdate(const ItemUpdateEvent& ev) override { \
OBSERVER_CALL_EVENT("ItemOverlayUpdate", ev); \
}
#define EDITDRAGSOURCEOBSERVER \
void EditDragStarting(const EditDragSourceEvent& ev, bool* canStart) override { \
\
} \
void EditDragStarted(const EditDragSourceEvent& ev, UShort* effect) override { \
\
} \
void EditDragStarted(const EditDragSourceEvent& ev, UShort* effect, bool* rightDragMenu) override { \
\
} \
void EditDragEnded(const EditDragSourceEvent& ev, DragDrop::Effect effect) override { \
\
} \
void EditDragSetDelayedData(const EditDragSourceEvent& ev) override { \
\
}
#define EDITDRAGTARGETOBSERVER \
void EditDragEntered(const EditDropTargetEvent& ev, DragDrop::Effect* effect, bool* defBehaviour) override { \
\
} \
void EditDragEntered(const EditDropTargetEvent& ev, DragDrop::Effect* effect, bool* defBehaviour, bool* rightDragMenu) override { \
\
} \
void EditDragMoved(const EditDropTargetEvent& ev, DragDrop::Effect* effect, DragDrop::Feedback* denyFeedback) override { \
\
} \
void EditDragLeft(const EditDropTargetEvent& ev, DragDrop::Effect* effect) override { \
\
} \
void EditDropped(const EditDropTargetEvent& ev, DragDrop::Effect* effect) override { \
\
}
#define LISTBOXDRAGSOURCEOBSERVER \
void ListBoxDragStarting(const ListBoxDragSourceEvent& ev, bool* canStart) override { \
\
} \
void ListBoxDragStarted(const ListBoxDragSourceEvent& ev, UShort* effect) override { \
\
} \
void ListBoxDragStarted(const ListBoxDragSourceEvent& ev, UShort* effect, bool* rightDragMenu) override { \
\
} \
void ListBoxDragEnded(const ListBoxDragSourceEvent& ev, DragDrop::Effect effect) override { \
\
} \
void ListBoxDragSetDelayedData(const ListBoxDragSourceEvent& ev) override { \
\
}
#define LISTBOXDRAGTARGETOBSERVER \
void ListBoxDragEntered(const ListBoxDropTargetEvent& ev, DragDrop::Effect* effect, bool* defBehaviour) override { \
\
} \
void ListBoxDragEntered(const ListBoxDropTargetEvent& ev, DragDrop::Effect* effect, bool* defBehaviour, bool* rightDragMenu) override { \
\
} \
void ListBoxDragMoved(const ListBoxDropTargetEvent& ev, DragDrop::Effect* effect, DragDrop::Feedback* denyFeedback) override { \
\
} \
void ListBoxDragLeft(const ListBoxDropTargetEvent& ev, DragDrop::Effect* effect) override { \
\
} \
void ListBoxDropped(const ListBoxDropTargetEvent& ev, DragDrop::Effect* effect) override { \
\
}