]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
bd83cb56 | 2 | // Name: wx/event.h |
c801d85f KB |
3 | // Purpose: Event classes |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bd83cb56 | 8 | // Copyright: (c) wxWindows team |
2b854a32 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_EVENTH__ |
13 | #define _WX_EVENTH__ | |
c801d85f KB |
14 | |
15 | #ifdef __GNUG__ | |
2b854a32 | 16 | #pragma interface "event.h" |
c801d85f KB |
17 | #endif |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/object.h" | |
e90c1d2a VZ |
21 | |
22 | #if wxUSE_GUI | |
23 | #include "wx/gdicmn.h" | |
43b5058d | 24 | #include "wx/cursor.h" |
e90c1d2a | 25 | #endif |
42e69d6b | 26 | |
72cdf4c9 | 27 | #include "wx/thread.h" |
c801d85f | 28 | |
e90c1d2a VZ |
29 | // ---------------------------------------------------------------------------- |
30 | // forward declarations | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
33 | class WXDLLEXPORT wxList; | |
34 | ||
35 | #if wxUSE_GUI | |
36 | class WXDLLEXPORT wxClientData; | |
37 | class WXDLLEXPORT wxDC; | |
38 | class WXDLLEXPORT wxMenu; | |
73974df1 | 39 | class WXDLLEXPORT wxWindow; |
e90c1d2a VZ |
40 | #endif // wxUSE_GUI |
41 | ||
42 | // ---------------------------------------------------------------------------- | |
43 | // Event types | |
44 | // ---------------------------------------------------------------------------- | |
64693098 | 45 | |
cbee8f8d VZ |
46 | typedef int wxEventType; |
47 | ||
48 | // in previous versions of wxWindows the event types used to be constants | |
49 | // which created difficulties with custom/user event types definition | |
50 | // | |
51 | // starting from wxWindows 2.4 the event types are now dynamically assigned | |
52 | // using wxNewEventType() which solves this problem, however at price of | |
53 | // several incompatibilities: | |
54 | // | |
55 | // a) event table macros declaration changed, it now uses wxEventTableEntry | |
56 | // ctor instead of initialisation from an agregate - the macro | |
57 | // DECLARE_EVENT_TABLE_ENTRY may be used to write code which can compile | |
58 | // with all versions of wxWindows | |
59 | // | |
60 | // b) event types can't be used as switch() cases as they're not really | |
61 | // constant any more - there is no magic solution here, you just have to | |
62 | // change the switch()es to if()s | |
63 | // | |
64 | // if these are real problems for you, define WXWIN_COMPATIBILITY_EVENT_TYPES | |
65 | // to get 100% old behaviour, however you won't be able to use the libraries | |
66 | // using the new dynamic event type allocation in such case, so avoid it if | |
67 | // possible. | |
68 | ||
69 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
70 | ||
71 | #define DECLARE_EVENT_TABLE_ENTRY(type, id, idLast, fn, obj) \ | |
72 | { type, id, idLast, fn, obj } | |
73 | ||
74 | #define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value, | |
75 | ||
76 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
77 | ||
78 | #define DECLARE_EVENT_TABLE_ENTRY(type, id, idLast, fn, obj) \ | |
79 | wxEventTableEntry(type, id, idLast, fn, obj) | |
80 | ||
81 | #define DECLARE_EVENT_TYPE(name, value) extern wxEventType name; | |
82 | ||
83 | // generate a new unique event type | |
84 | extern WXDLLEXPORT wxEventType wxNewEventType(); | |
85 | ||
86 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
87 | ||
88 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
89 | enum | |
90 | { | |
91 | wxEVT_NULL = 0, | |
92 | wxEVT_FIRST = 10000, | |
93 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
94 | extern wxEventType wxEVT_NULL; | |
95 | extern wxEventType wxEVT_FIRST; | |
96 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
97 | ||
98 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1) | |
99 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED, 2) | |
100 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED, 3) | |
101 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED, 4) | |
102 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 5) | |
103 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 6) | |
104 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7) | |
105 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8) | |
106 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED, 9) | |
107 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED, 10) | |
108 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED, 11) | |
109 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED, 12) | |
110 | ||
111 | // wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use | |
112 | // wxEVT_SCROLL... events | |
113 | ||
114 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED, 13) | |
115 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED, 14) | |
116 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED, 15) | |
117 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED, 16) | |
118 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER, 17) | |
119 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED, 18) | |
120 | ||
121 | // Sockets and timers send events, too | |
122 | DECLARE_EVENT_TYPE(wxEVT_SOCKET, 50) | |
123 | DECLARE_EVENT_TYPE(wxEVT_TIMER , 80) | |
124 | ||
125 | // Mouse event types | |
126 | DECLARE_EVENT_TYPE(wxEVT_LEFT_DOWN, 100) | |
127 | DECLARE_EVENT_TYPE(wxEVT_LEFT_UP, 101) | |
128 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DOWN, 102) | |
129 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_UP, 103) | |
130 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_DOWN, 104) | |
131 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_UP, 105) | |
132 | DECLARE_EVENT_TYPE(wxEVT_MOTION, 106) | |
133 | DECLARE_EVENT_TYPE(wxEVT_ENTER_WINDOW, 107) | |
134 | DECLARE_EVENT_TYPE(wxEVT_LEAVE_WINDOW, 108) | |
135 | DECLARE_EVENT_TYPE(wxEVT_LEFT_DCLICK, 109) | |
136 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK, 110) | |
137 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_DCLICK, 111) | |
138 | DECLARE_EVENT_TYPE(wxEVT_SET_FOCUS, 112) | |
139 | DECLARE_EVENT_TYPE(wxEVT_KILL_FOCUS, 113) | |
140 | ||
141 | // Non-client mouse events | |
142 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN, 200) | |
143 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_UP, 201) | |
144 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN, 202) | |
145 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP, 203) | |
146 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN, 204) | |
147 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_UP, 205) | |
148 | DECLARE_EVENT_TYPE(wxEVT_NC_MOTION, 206) | |
149 | DECLARE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW, 207) | |
150 | DECLARE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW, 208) | |
151 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK, 209) | |
152 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK, 210) | |
153 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK, 211) | |
154 | ||
155 | // Character input event type | |
156 | DECLARE_EVENT_TYPE(wxEVT_CHAR, 212) | |
157 | DECLARE_EVENT_TYPE(wxEVT_CHAR_HOOK, 213) | |
158 | DECLARE_EVENT_TYPE(wxEVT_NAVIGATION_KEY, 214) | |
159 | DECLARE_EVENT_TYPE(wxEVT_KEY_DOWN, 215) | |
160 | DECLARE_EVENT_TYPE(wxEVT_KEY_UP, 216) | |
161 | ||
162 | // Set cursor event | |
163 | DECLARE_EVENT_TYPE(wxEVT_SET_CURSOR, 230) | |
164 | ||
165 | // wxScrollbar and wxSlider event identifiers | |
166 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_TOP, 300) | |
167 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM, 301) | |
168 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEUP, 302) | |
169 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN, 303) | |
170 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP, 304) | |
171 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN, 305) | |
172 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK, 306) | |
173 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE, 307) | |
174 | ||
175 | // Scroll events from wxWindow | |
176 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP, 320) | |
177 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM, 321) | |
178 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP, 322) | |
179 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN, 323) | |
180 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP, 324) | |
181 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN, 325) | |
182 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK, 326) | |
183 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE, 327) | |
184 | ||
185 | // System events | |
186 | DECLARE_EVENT_TYPE(wxEVT_SIZE, 400) | |
187 | DECLARE_EVENT_TYPE(wxEVT_MOVE, 401) | |
188 | DECLARE_EVENT_TYPE(wxEVT_CLOSE_WINDOW, 402) | |
189 | DECLARE_EVENT_TYPE(wxEVT_END_SESSION, 403) | |
190 | DECLARE_EVENT_TYPE(wxEVT_QUERY_END_SESSION, 404) | |
191 | DECLARE_EVENT_TYPE(wxEVT_ACTIVATE_APP, 405) | |
192 | DECLARE_EVENT_TYPE(wxEVT_POWER, 406) | |
193 | DECLARE_EVENT_TYPE(wxEVT_ACTIVATE, 409) | |
194 | DECLARE_EVENT_TYPE(wxEVT_CREATE, 410) | |
195 | DECLARE_EVENT_TYPE(wxEVT_DESTROY, 411) | |
196 | DECLARE_EVENT_TYPE(wxEVT_SHOW, 412) | |
197 | DECLARE_EVENT_TYPE(wxEVT_ICONIZE, 413) | |
198 | DECLARE_EVENT_TYPE(wxEVT_MAXIMIZE, 414) | |
199 | DECLARE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED, 415) | |
200 | DECLARE_EVENT_TYPE(wxEVT_PAINT, 416) | |
201 | DECLARE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND, 417) | |
202 | DECLARE_EVENT_TYPE(wxEVT_NC_PAINT, 418) | |
203 | DECLARE_EVENT_TYPE(wxEVT_PAINT_ICON, 419) | |
204 | DECLARE_EVENT_TYPE(wxEVT_MENU_CHAR, 420) | |
205 | DECLARE_EVENT_TYPE(wxEVT_MENU_INIT, 421) | |
206 | DECLARE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT, 422) | |
207 | DECLARE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT, 423) | |
208 | DECLARE_EVENT_TYPE(wxEVT_CONTEXT_MENU, 424) | |
209 | DECLARE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED, 425) | |
210 | DECLARE_EVENT_TYPE(wxEVT_SETTING_CHANGED, 426) | |
211 | DECLARE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE, 427) | |
212 | DECLARE_EVENT_TYPE(wxEVT_PALETTE_CHANGED, 428) | |
213 | DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN, 429) | |
214 | DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP, 430) | |
215 | DECLARE_EVENT_TYPE(wxEVT_JOY_MOVE, 431) | |
216 | DECLARE_EVENT_TYPE(wxEVT_JOY_ZMOVE, 432) | |
217 | DECLARE_EVENT_TYPE(wxEVT_DROP_FILES, 433) | |
218 | DECLARE_EVENT_TYPE(wxEVT_DRAW_ITEM, 434) | |
219 | DECLARE_EVENT_TYPE(wxEVT_MEASURE_ITEM, 435) | |
220 | DECLARE_EVENT_TYPE(wxEVT_COMPARE_ITEM, 436) | |
221 | DECLARE_EVENT_TYPE(wxEVT_INIT_DIALOG, 437) | |
222 | DECLARE_EVENT_TYPE(wxEVT_IDLE, 438) | |
223 | DECLARE_EVENT_TYPE(wxEVT_UPDATE_UI, 439) | |
224 | ||
225 | // System misc. | |
226 | DECLARE_EVENT_TYPE(wxEVT_END_PROCESS, 440) | |
227 | ||
228 | // Dial up events | |
229 | DECLARE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED, 450) | |
230 | DECLARE_EVENT_TYPE(wxEVT_DIALUP_DISCONNECTED, 451) | |
231 | ||
232 | // Generic command events | |
233 | // Note: a click is a higher-level event than button down/up | |
234 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK, 500) | |
235 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK, 501) | |
236 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK, 502) | |
237 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK, 503) | |
238 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS, 504) | |
239 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS, 505) | |
240 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_ENTER, 506) | |
241 | ||
242 | // Tree control event types | |
243 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_DRAG, 600) | |
244 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_RDRAG, 601) | |
245 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, 602) | |
246 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_LABEL_EDIT, 603) | |
247 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_DELETE_ITEM, 604) | |
248 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_GET_INFO, 605) | |
249 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SET_INFO, 606) | |
250 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDED, 607) | |
251 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDING, 608) | |
252 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSED, 609) | |
253 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSING, 610) | |
254 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGED, 611) | |
255 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGING, 612) | |
256 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_KEY_DOWN, 613) | |
257 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, 614) | |
258 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, 615) | |
259 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 616) | |
260 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_DRAG, 617) | |
261 | ||
262 | // List control event types | |
263 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG, 700) | |
264 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG, 701) | |
265 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, 702) | |
266 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT, 703) | |
267 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM, 704) | |
268 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, 705) | |
269 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO, 706) | |
270 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO, 707) | |
271 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED, 708) | |
272 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED, 709) | |
273 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN, 710) | |
274 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM, 711) | |
275 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK, 712) | |
276 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, 713) | |
277 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 714) | |
278 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED, 715) | |
279 | ||
280 | // Tab and notebook control event types | |
23f681ec VZ |
281 | #if defined(__BORLANDC__) && defined(__WIN16__) |
282 | // For 16-bit BC++, these 2 would be identical otherwise (truncated) | |
283 | #define wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED wxEVT_COMMAND_NB_PAGE_CHANGED | |
284 | #define wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING wxEVT_COMMAND_NB_PAGE_CHANGING | |
285 | #endif | |
286 | ||
cbee8f8d VZ |
287 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGED, 800) |
288 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TAB_SEL_CHANGING, 801) | |
289 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 802) | |
290 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 803) | |
291 | ||
292 | // Splitter events | |
293 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 850) | |
294 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 851) | |
295 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 852) | |
296 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_UNSPLIT, 853) | |
297 | ||
298 | // Wizard events | |
299 | DECLARE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGED, 900) | |
300 | DECLARE_EVENT_TYPE(wxEVT_WIZARD_PAGE_CHANGING, 901) | |
301 | DECLARE_EVENT_TYPE(wxEVT_WIZARD_CANCEL, 902) | |
302 | ||
303 | // Calendar events | |
304 | DECLARE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED, 950) | |
305 | DECLARE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED, 951) | |
306 | DECLARE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED, 952) | |
307 | DECLARE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED, 953) | |
308 | DECLARE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED, 954) | |
309 | DECLARE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED, 955) | |
310 | ||
311 | DECLARE_EVENT_TYPE(wxEVT_USER_FIRST, 2000) | |
312 | ||
313 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
314 | }; | |
315 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES | |
96f6c703 | 316 | |
cbee8f8d VZ |
317 | // these 2 events are the same |
318 | #define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED | |
96f6c703 | 319 | |
77d4384e | 320 | // Compatibility |
c801d85f KB |
321 | |
322 | #if WXWIN_COMPATIBILITY | |
323 | ||
324 | #define wxEVENT_TYPE_BUTTON_COMMAND wxEVT_COMMAND_BUTTON_CLICKED | |
325 | #define wxEVENT_TYPE_CHECKBOX_COMMAND wxEVT_COMMAND_CHECKBOX_CLICKED | |
326 | #define wxEVENT_TYPE_CHOICE_COMMAND wxEVT_COMMAND_CHOICE_SELECTED | |
327 | #define wxEVENT_TYPE_LISTBOX_COMMAND wxEVT_COMMAND_LISTBOX_SELECTED | |
328 | #define wxEVENT_TYPE_LISTBOX_DCLICK_COMMAND wxEVT_COMMAND_LISTBOX_DOUBLECLICKED | |
329 | #define wxEVENT_TYPE_TEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED | |
330 | #define wxEVENT_TYPE_MULTITEXT_COMMAND wxEVT_COMMAND_TEXT_UPDATED | |
331 | #define wxEVENT_TYPE_MENU_COMMAND wxEVT_COMMAND_MENU_SELECTED | |
332 | #define wxEVENT_TYPE_SLIDER_COMMAND wxEVT_COMMAND_SLIDER_UPDATED | |
333 | #define wxEVENT_TYPE_RADIOBOX_COMMAND wxEVT_COMMAND_RADIOBOX_SELECTED | |
334 | #define wxEVENT_TYPE_RADIOBUTTON_COMMAND wxEVT_COMMAND_RADIOBUTTON_SELECTED | |
335 | #define wxEVENT_TYPE_TEXT_ENTER_COMMAND wxEVT_COMMAND_TEXT_ENTER | |
336 | #define wxEVENT_TYPE_SET_FOCUS wxEVT_SET_FOCUS | |
337 | #define wxEVENT_TYPE_KILL_FOCUS wxEVT_KILL_FOCUS | |
338 | #define wxEVENT_TYPE_SCROLLBAR_COMMAND wxEVT_COMMAND_SCROLLBAR_UPDATED | |
339 | #define wxEVENT_TYPE_VIRT_LISTBOX_COMMAND wxEVT_COMMAND_VLBOX_SELECTED | |
340 | #define wxEVENT_TYPE_COMBOBOX_COMMAND wxEVT_COMMAND_COMBOBOX_SELECTED | |
341 | ||
342 | #define wxEVENT_TYPE_LEFT_DOWN wxEVT_LEFT_DOWN | |
343 | #define wxEVENT_TYPE_LEFT_UP wxEVT_LEFT_UP | |
344 | #define wxEVENT_TYPE_MIDDLE_DOWN wxEVT_MIDDLE_DOWN | |
345 | #define wxEVENT_TYPE_MIDDLE_UP wxEVT_MIDDLE_UP | |
346 | #define wxEVENT_TYPE_RIGHT_DOWN wxEVT_RIGHT_DOWN | |
347 | #define wxEVENT_TYPE_RIGHT_UP wxEVT_RIGHT_UP | |
348 | #define wxEVENT_TYPE_MOTION wxEVT_MOTION | |
349 | #define wxEVENT_TYPE_ENTER_WINDOW wxEVT_ENTER_WINDOW | |
350 | #define wxEVENT_TYPE_LEAVE_WINDOW wxEVT_LEAVE_WINDOW | |
351 | #define wxEVENT_TYPE_LEFT_DCLICK wxEVT_LEFT_DCLICK | |
352 | #define wxEVENT_TYPE_MIDDLE_DCLICK wxEVT_MIDDLE_DCLICK | |
353 | #define wxEVENT_TYPE_RIGHT_DCLICK wxEVT_RIGHT_DCLICK | |
354 | #define wxEVENT_TYPE_CHAR wxEVT_CHAR | |
355 | #define wxEVENT_TYPE_SCROLL_TOP wxEVT_SCROLL_TOP | |
356 | #define wxEVENT_TYPE_SCROLL_BOTTOM wxEVT_SCROLL_BOTTOM | |
357 | #define wxEVENT_TYPE_SCROLL_LINEUP wxEVT_SCROLL_LINEUP | |
358 | #define wxEVENT_TYPE_SCROLL_LINEDOWN wxEVT_SCROLL_LINEDOWN | |
359 | #define wxEVENT_TYPE_SCROLL_PAGEUP wxEVT_SCROLL_PAGEUP | |
360 | #define wxEVENT_TYPE_SCROLL_PAGEDOWN wxEVT_SCROLL_PAGEDOWN | |
361 | #define wxEVENT_TYPE_SCROLL_THUMBTRACK wxEVT_SCROLL_THUMBTRACK | |
362 | ||
2b854a32 | 363 | #endif // WXWIN_COMPATIBILITY |
c801d85f KB |
364 | |
365 | /* | |
366 | * wxWindows events, covering all interesting things that might happen | |
367 | * (button clicking, resizing, setting text in widgets, etc.). | |
368 | * | |
369 | * For each completely new event type, derive a new event class. | |
370 | * An event CLASS represents a C++ class defining a range of similar event TYPES; | |
371 | * examples are canvas events, panel item command events. | |
372 | * An event TYPE is a unique identifier for a particular system event, | |
373 | * such as a button press or a listbox deselection. | |
374 | * | |
375 | */ | |
376 | ||
2b854a32 | 377 | class WXDLLEXPORT wxEvent : public wxObject |
c801d85f | 378 | { |
2b854a32 | 379 | DECLARE_ABSTRACT_CLASS(wxEvent) |
c801d85f KB |
380 | |
381 | public: | |
2b854a32 VZ |
382 | wxEvent(int id = 0); |
383 | ~wxEvent() {} | |
384 | ||
385 | void SetEventType(wxEventType typ) { m_eventType = typ; } | |
386 | wxEventType GetEventType() const { return m_eventType; } | |
387 | wxObject *GetEventObject() const { return m_eventObject; } | |
388 | void SetEventObject(wxObject *obj) { m_eventObject = obj; } | |
389 | long GetTimestamp() const { return m_timeStamp; } | |
390 | void SetTimestamp(long ts = 0) { m_timeStamp = ts; } | |
391 | int GetId() const { return m_id; } | |
392 | void SetId(int Id) { m_id = Id; } | |
393 | ||
394 | // Can instruct event processor that we wish to ignore this event | |
395 | // (treat as if the event table entry had not been found): this must be done | |
396 | // to allow the event processing by the base classes (calling event.Skip() | |
397 | // is the analog of calling the base class verstion of a virtual function) | |
398 | void Skip(bool skip = TRUE) { m_skipped = skip; } | |
399 | bool GetSkipped() const { return m_skipped; }; | |
c801d85f | 400 | |
193bf013 VZ |
401 | // implementation only: this test is explicitlty anti OO and this functions |
402 | // exists only for optimization purposes | |
403 | bool IsCommandEvent() const { return m_isCommandEvent; } | |
404 | ||
aadbdf11 | 405 | void CopyObject(wxObject& object_dest) const; |
a737331d | 406 | |
c801d85f | 407 | public: |
2b854a32 | 408 | wxObject* m_eventObject; |
2b854a32 VZ |
409 | wxEventType m_eventType; |
410 | long m_timeStamp; | |
411 | int m_id; | |
412 | wxObject* m_callbackUserData; | |
42e69d6b | 413 | bool m_skipped; |
193bf013 VZ |
414 | |
415 | // optimization: instead of using costly IsKindOf() we keep a flag telling | |
416 | // whether we're a command event (by far the most common case) | |
417 | bool m_isCommandEvent; | |
c801d85f KB |
418 | }; |
419 | ||
e90c1d2a VZ |
420 | #if wxUSE_GUI |
421 | ||
c801d85f KB |
422 | // Item or menu event class |
423 | /* | |
424 | wxEVT_COMMAND_BUTTON_CLICKED | |
425 | wxEVT_COMMAND_CHECKBOX_CLICKED | |
426 | wxEVT_COMMAND_CHOICE_SELECTED | |
427 | wxEVT_COMMAND_LISTBOX_SELECTED | |
428 | wxEVT_COMMAND_LISTBOX_DOUBLECLICKED | |
429 | wxEVT_COMMAND_TEXT_UPDATED | |
430 | wxEVT_COMMAND_TEXT_ENTER | |
431 | wxEVT_COMMAND_MENU_SELECTED | |
432 | wxEVT_COMMAND_SLIDER_UPDATED | |
433 | wxEVT_COMMAND_RADIOBOX_SELECTED | |
434 | wxEVT_COMMAND_RADIOBUTTON_SELECTED | |
435 | wxEVT_COMMAND_SCROLLBAR_UPDATED | |
436 | wxEVT_COMMAND_VLBOX_SELECTED | |
437 | wxEVT_COMMAND_COMBOBOX_SELECTED | |
438 | */ | |
439 | ||
2b854a32 | 440 | class WXDLLEXPORT wxCommandEvent : public wxEvent |
c801d85f | 441 | { |
2b854a32 | 442 | DECLARE_DYNAMIC_CLASS(wxCommandEvent) |
c801d85f | 443 | |
2b854a32 VZ |
444 | public: |
445 | wxCommandEvent(wxEventType commandType = wxEVT_NULL, int id = 0); | |
446 | ~wxCommandEvent() {} | |
c801d85f | 447 | |
2b854a32 VZ |
448 | /* |
449 | * Accessors dependent on context | |
450 | * | |
451 | */ | |
c801d85f | 452 | |
2b854a32 VZ |
453 | // Set/Get client data from controls |
454 | void SetClientData(void* clientData) { m_clientData = clientData; } | |
455 | void *GetClientData() const { return m_clientData; } | |
c801d85f | 456 | |
2b854a32 VZ |
457 | // Set/Get client object from controls |
458 | void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; } | |
459 | void *GetClientObject() const { return m_clientObject; } | |
f5e27805 | 460 | |
2b854a32 VZ |
461 | // Get listbox selection if single-choice |
462 | int GetSelection() const { return m_commandInt; } | |
c801d85f | 463 | |
2b854a32 | 464 | // Set/Get listbox/choice selection string |
29006414 | 465 | void SetString(const wxString& s) { m_commandString = s; } |
7214297d | 466 | wxString GetString() const { return m_commandString; } |
c801d85f | 467 | |
2b854a32 | 468 | // Get checkbox value |
3ca6a5f0 | 469 | bool IsChecked() const { return m_commandInt != 0; } |
c801d85f | 470 | |
2b854a32 VZ |
471 | // TRUE if the listbox event was a selection. |
472 | bool IsSelection() const { return (m_extraLong != 0); } | |
c801d85f | 473 | |
2b854a32 VZ |
474 | void SetExtraLong(long extraLong) { m_extraLong = extraLong; } |
475 | long GetExtraLong() const { return m_extraLong ; } | |
c801d85f | 476 | |
2b854a32 VZ |
477 | void SetInt(int i) { m_commandInt = i; } |
478 | long GetInt() const { return m_commandInt ; } | |
c801d85f | 479 | |
aadbdf11 GL |
480 | void CopyObject(wxObject& obj) const; |
481 | ||
3ca6a5f0 BP |
482 | #ifdef WXWIN_COMPATIBILITY_2 |
483 | bool Checked() const { return IsChecked(); } | |
484 | #endif // WXWIN_COMPATIBILITY_2 | |
485 | ||
2b854a32 | 486 | public: |
29006414 | 487 | wxString m_commandString; // String event argument |
2b854a32 VZ |
488 | int m_commandInt; |
489 | long m_extraLong; // Additional information (e.g. select/deselect) | |
490 | void* m_clientData; // Arbitrary client data | |
491 | wxClientData* m_clientObject; // Arbitrary client object | |
c801d85f KB |
492 | }; |
493 | ||
fd3f686c VZ |
494 | // this class adds a possibility to react (from the user) code to a control |
495 | // notification: allow or veto the operation being reported. | |
2b854a32 | 496 | class WXDLLEXPORT wxNotifyEvent : public wxCommandEvent |
fd3f686c VZ |
497 | { |
498 | public: | |
499 | wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int id = 0) | |
500 | : wxCommandEvent(commandType, id) { m_bAllow = TRUE; } | |
501 | ||
23f681ec | 502 | // veto the operation (usually it's allowed by default) |
fd3f686c VZ |
503 | void Veto() { m_bAllow = FALSE; } |
504 | ||
23f681ec VZ |
505 | // allow the operation if it was disabled by default |
506 | void Allow() { m_bAllow = TRUE; } | |
507 | ||
fd3f686c VZ |
508 | // for implementation code only: is the operation allowed? |
509 | bool IsAllowed() const { return m_bAllow; } | |
510 | ||
924ef850 RR |
511 | // probably useless: CopyObject() is used for deferred event |
512 | // handling but wxNotifyEvent must be processed immediately | |
513 | void CopyObject(wxObject& obj) const; | |
514 | ||
fd3f686c VZ |
515 | private: |
516 | bool m_bAllow; | |
517 | ||
92976ab6 | 518 | DECLARE_DYNAMIC_CLASS(wxNotifyEvent) |
fd3f686c VZ |
519 | }; |
520 | ||
d1367c3d RR |
521 | // Scroll event class, derived form wxCommandEvent. wxScrollEvents are |
522 | // sent by wxSlider and wxScrollbar. | |
c801d85f KB |
523 | /* |
524 | wxEVT_SCROLL_TOP | |
525 | wxEVT_SCROLL_BOTTOM | |
526 | wxEVT_SCROLL_LINEUP | |
527 | wxEVT_SCROLL_LINEDOWN | |
528 | wxEVT_SCROLL_PAGEUP | |
529 | wxEVT_SCROLL_PAGEDOWN | |
530 | wxEVT_SCROLL_THUMBTRACK | |
7d56fb8f | 531 | wxEVT_SCROLL_THUMBRELEASE |
c801d85f KB |
532 | */ |
533 | ||
2b854a32 | 534 | class WXDLLEXPORT wxScrollEvent : public wxCommandEvent |
c801d85f | 535 | { |
2b854a32 | 536 | DECLARE_DYNAMIC_CLASS(wxScrollEvent) |
c801d85f | 537 | |
2b854a32 VZ |
538 | public: |
539 | wxScrollEvent(wxEventType commandType = wxEVT_NULL, | |
540 | int id = 0, int pos = 0, int orient = 0); | |
541 | ~wxScrollEvent() {} | |
542 | ||
543 | /* | |
544 | * Accessors | |
545 | * | |
546 | */ | |
547 | ||
548 | int GetOrientation() const { return (int) m_extraLong ; } | |
549 | int GetPosition() const { return m_commandInt ; } | |
550 | void SetOrientation(int orient) { m_extraLong = (long) orient; } | |
551 | void SetPosition(int pos) { m_commandInt = pos; } | |
c801d85f KB |
552 | }; |
553 | ||
d1367c3d RR |
554 | // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents |
555 | // are sent by wxWindow. | |
556 | /* | |
557 | wxEVT_SCROLLWIN_TOP | |
558 | wxEVT_SCROLLWIN_BOTTOM | |
559 | wxEVT_SCROLLWIN_LINEUP | |
560 | wxEVT_SCROLLWIN_LINEDOWN | |
561 | wxEVT_SCROLLWIN_PAGEUP | |
562 | wxEVT_SCROLLWIN_PAGEDOWN | |
563 | wxEVT_SCROLLWIN_THUMBTRACK | |
7d56fb8f | 564 | wxEVT_SCROLLWIN_THUMBRELEASE |
d1367c3d RR |
565 | */ |
566 | ||
567 | class WXDLLEXPORT wxScrollWinEvent : public wxEvent | |
568 | { | |
569 | DECLARE_DYNAMIC_CLASS(wxScrollWinEvent) | |
570 | ||
571 | public: | |
572 | wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, | |
573 | int pos = 0, int orient = 0); | |
574 | ~wxScrollWinEvent() {} | |
575 | ||
576 | /* | |
577 | * Accessors | |
578 | */ | |
579 | ||
580 | int GetOrientation() const { return (int) m_extraLong ; } | |
581 | int GetPosition() const { return m_commandInt ; } | |
582 | void SetOrientation(int orient) { m_extraLong = (long) orient; } | |
583 | void SetPosition(int pos) { m_commandInt = pos; } | |
584 | ||
3c679789 | 585 | void CopyObject(wxObject& object_dest) const; |
d1367c3d RR |
586 | public: |
587 | int m_commandInt; // Additional information | |
20947e08 | 588 | long m_extraLong; |
d1367c3d RR |
589 | }; |
590 | ||
c801d85f KB |
591 | // Mouse event class |
592 | ||
593 | /* | |
594 | wxEVT_LEFT_DOWN | |
595 | wxEVT_LEFT_UP | |
596 | wxEVT_MIDDLE_DOWN | |
597 | wxEVT_MIDDLE_UP | |
598 | wxEVT_RIGHT_DOWN | |
599 | wxEVT_RIGHT_UP | |
600 | wxEVT_MOTION | |
601 | wxEVT_ENTER_WINDOW | |
602 | wxEVT_LEAVE_WINDOW | |
603 | wxEVT_LEFT_DCLICK | |
604 | wxEVT_MIDDLE_DCLICK | |
605 | wxEVT_RIGHT_DCLICK | |
606 | wxEVT_NC_LEFT_DOWN | |
607 | wxEVT_NC_LEFT_UP, | |
608 | wxEVT_NC_MIDDLE_DOWN, | |
609 | wxEVT_NC_MIDDLE_UP, | |
610 | wxEVT_NC_RIGHT_DOWN, | |
611 | wxEVT_NC_RIGHT_UP, | |
612 | wxEVT_NC_MOTION, | |
613 | wxEVT_NC_ENTER_WINDOW, | |
614 | wxEVT_NC_LEAVE_WINDOW, | |
615 | wxEVT_NC_LEFT_DCLICK, | |
616 | wxEVT_NC_MIDDLE_DCLICK, | |
617 | wxEVT_NC_RIGHT_DCLICK, | |
618 | */ | |
619 | ||
2b854a32 | 620 | class WXDLLEXPORT wxMouseEvent : public wxEvent |
c801d85f | 621 | { |
2b854a32 | 622 | DECLARE_DYNAMIC_CLASS(wxMouseEvent) |
c801d85f | 623 | |
2b854a32 VZ |
624 | public: |
625 | wxMouseEvent(wxEventType mouseType = wxEVT_NULL); | |
c801d85f | 626 | |
2b854a32 VZ |
627 | // Was it a button event? (*doesn't* mean: is any button *down*?) |
628 | bool IsButton() const { return Button(-1); } | |
c801d85f | 629 | |
2b854a32 VZ |
630 | // Was it a down event from button 1, 2 or 3 or any? |
631 | bool ButtonDown(int but = -1) const; | |
c801d85f | 632 | |
2b854a32 VZ |
633 | // Was it a dclick event from button 1, 2 or 3 or any? |
634 | bool ButtonDClick(int but = -1) const; | |
c801d85f | 635 | |
2b854a32 VZ |
636 | // Was it a up event from button 1, 2 or 3 or any? |
637 | bool ButtonUp(int but = -1) const; | |
c801d85f | 638 | |
2b854a32 VZ |
639 | // Was the given button 1,2,3 or any changing state? |
640 | bool Button(int but) const; | |
c801d85f | 641 | |
2b854a32 VZ |
642 | // Was the given button 1,2,3 or any in Down state? |
643 | bool ButtonIsDown(int but) const; | |
c801d85f | 644 | |
2b854a32 VZ |
645 | // Find state of shift/control keys |
646 | bool ControlDown() const { return m_controlDown; } | |
647 | bool MetaDown() const { return m_metaDown; } | |
648 | bool AltDown() const { return m_altDown; } | |
649 | bool ShiftDown() const { return m_shiftDown; } | |
c801d85f | 650 | |
2b854a32 VZ |
651 | // Find which event was just generated |
652 | bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); } | |
653 | bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); } | |
654 | bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); } | |
c801d85f | 655 | |
2b854a32 VZ |
656 | bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); } |
657 | bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); } | |
658 | bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); } | |
c801d85f | 659 | |
2b854a32 VZ |
660 | bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); } |
661 | bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); } | |
662 | bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); } | |
c801d85f | 663 | |
2b854a32 VZ |
664 | // Find the current state of the mouse buttons (regardless |
665 | // of current event type) | |
666 | bool LeftIsDown() const { return m_leftDown; } | |
667 | bool MiddleIsDown() const { return m_middleDown; } | |
668 | bool RightIsDown() const { return m_rightDown; } | |
c801d85f | 669 | |
2b854a32 VZ |
670 | // True if a button is down and the mouse is moving |
671 | bool Dragging() const | |
672 | { | |
673 | return ((m_eventType == wxEVT_MOTION) && | |
674 | (LeftIsDown() || MiddleIsDown() || RightIsDown())); | |
675 | } | |
c801d85f | 676 | |
2b854a32 VZ |
677 | // True if the mouse is moving, and no button is down |
678 | bool Moving() const { return (m_eventType == wxEVT_MOTION); } | |
c801d85f | 679 | |
2b854a32 VZ |
680 | // True if the mouse is just entering the window |
681 | bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); } | |
c801d85f | 682 | |
2b854a32 VZ |
683 | // True if the mouse is just leaving the window |
684 | bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); } | |
c801d85f | 685 | |
2b854a32 | 686 | // Find the position of the event |
20947e08 | 687 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const |
b02da6b1 VZ |
688 | { |
689 | if (xpos) | |
20947e08 | 690 | *xpos = m_x; |
b02da6b1 VZ |
691 | if (ypos) |
692 | *ypos = m_y; | |
693 | } | |
694 | ||
0e528b99 | 695 | #ifndef __WIN16__ |
bf57d1ad | 696 | void GetPosition(long *xpos, long *ypos) const |
b02da6b1 VZ |
697 | { |
698 | if (xpos) | |
20947e08 | 699 | *xpos = (long)m_x; |
b02da6b1 | 700 | if (ypos) |
bf57d1ad | 701 | *ypos = (long)m_y; |
b02da6b1 | 702 | } |
0e528b99 | 703 | #endif |
c801d85f | 704 | |
2b854a32 VZ |
705 | // Find the position of the event |
706 | wxPoint GetPosition() const { return wxPoint(m_x, m_y); } | |
c801d85f | 707 | |
2b854a32 VZ |
708 | // Find the logical position of the event given the DC |
709 | wxPoint GetLogicalPosition(const wxDC& dc) const ; | |
c801d85f | 710 | |
2b854a32 VZ |
711 | // Compatibility |
712 | #if WXWIN_COMPATIBILITY | |
20947e08 | 713 | void Position(long *xpos, long *ypos) const |
b02da6b1 VZ |
714 | { |
715 | if (xpos) | |
20947e08 | 716 | *xpos = (long)m_x; |
b02da6b1 VZ |
717 | if (ypos) |
718 | *ypos = (long)m_y; | |
719 | } | |
720 | ||
2b854a32 VZ |
721 | void Position(float *xpos, float *ypos) const |
722 | { | |
723 | *xpos = (float) m_x; *ypos = (float) m_y; | |
724 | } | |
725 | #endif // WXWIN_COMPATIBILITY | |
c801d85f | 726 | |
2b854a32 | 727 | // Get X position |
6cedba09 | 728 | wxCoord GetX() const { return m_x; } |
c801d85f | 729 | |
2b854a32 | 730 | // Get Y position |
6cedba09 | 731 | wxCoord GetY() const { return m_y; } |
c801d85f | 732 | |
aadbdf11 GL |
733 | void CopyObject(wxObject& obj) const; |
734 | ||
c801d85f | 735 | public: |
b02da6b1 VZ |
736 | wxCoord m_x, m_y; |
737 | ||
2b854a32 VZ |
738 | bool m_leftDown; |
739 | bool m_middleDown; | |
740 | bool m_rightDown; | |
741 | ||
742 | bool m_controlDown; | |
743 | bool m_shiftDown; | |
744 | bool m_altDown; | |
745 | bool m_metaDown; | |
c801d85f KB |
746 | }; |
747 | ||
43b5058d VZ |
748 | // Cursor set event |
749 | ||
750 | /* | |
751 | wxEVT_SET_CURSOR | |
752 | */ | |
753 | ||
754 | class WXDLLEXPORT wxSetCursorEvent : public wxEvent | |
755 | { | |
756 | public: | |
757 | wxSetCursorEvent(wxCoord x, wxCoord y) | |
758 | { | |
759 | m_eventType = wxEVT_SET_CURSOR; | |
760 | ||
761 | m_x = x; | |
762 | m_y = y; | |
763 | } | |
764 | ||
765 | wxCoord GetX() const { return m_x; } | |
766 | wxCoord GetY() const { return m_y; } | |
767 | ||
768 | void SetCursor(const wxCursor& cursor) { m_cursor = cursor; } | |
769 | const wxCursor& GetCursor() const { return m_cursor; } | |
770 | bool HasCursor() const { return m_cursor.Ok(); } | |
771 | ||
772 | private: | |
773 | wxCoord m_x, m_y; | |
774 | wxCursor m_cursor; | |
775 | }; | |
776 | ||
c801d85f KB |
777 | // Keyboard input event class |
778 | ||
779 | /* | |
780 | wxEVT_CHAR | |
781 | wxEVT_CHAR_HOOK | |
4ce81a75 | 782 | wxEVT_KEY_DOWN |
c801d85f KB |
783 | wxEVT_KEY_UP |
784 | */ | |
785 | ||
2b854a32 | 786 | class WXDLLEXPORT wxKeyEvent : public wxEvent |
c801d85f | 787 | { |
2b854a32 | 788 | DECLARE_DYNAMIC_CLASS(wxKeyEvent) |
c801d85f KB |
789 | |
790 | public: | |
2b854a32 | 791 | wxKeyEvent(wxEventType keyType = wxEVT_NULL); |
c801d85f | 792 | |
2b854a32 VZ |
793 | // Find state of shift/control keys |
794 | bool ControlDown() const { return m_controlDown; } | |
795 | bool MetaDown() const { return m_metaDown; } | |
796 | bool AltDown() const { return m_altDown; } | |
797 | bool ShiftDown() const { return m_shiftDown; } | |
f6bcfd97 BP |
798 | |
799 | bool HasModifiers() const { return ControlDown() || AltDown() || MetaDown(); } | |
800 | ||
801 | // get the key code: an ASCII7 char or an element of wxKeyCode enum | |
802 | int GetKeyCode() const { return (int)m_keyCode; } | |
c801d85f | 803 | |
2b854a32 | 804 | // Find the position of the event |
b02da6b1 VZ |
805 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const |
806 | { | |
20947e08 | 807 | if (xpos) *xpos = m_x; |
b02da6b1 VZ |
808 | if (ypos) *ypos = m_y; |
809 | } | |
810 | ||
0e528b99 | 811 | #ifndef __WIN16__ |
bf57d1ad | 812 | void GetPosition(long *xpos, long *ypos) const |
b02da6b1 | 813 | { |
20947e08 | 814 | if (xpos) *xpos = (long)m_x; |
bf57d1ad | 815 | if (ypos) *ypos = (long)m_y; |
b02da6b1 | 816 | } |
0e528b99 | 817 | #endif |
803ef874 JS |
818 | |
819 | wxPoint GetPosition() const | |
820 | { return wxPoint(m_x, m_y); } | |
c801d85f | 821 | |
2b854a32 | 822 | // Get X position |
b02da6b1 | 823 | wxCoord GetX() const { return m_x; } |
c801d85f | 824 | |
2b854a32 | 825 | // Get Y position |
b02da6b1 | 826 | wxCoord GetY() const { return m_y; } |
c801d85f | 827 | |
aadbdf11 GL |
828 | void CopyObject(wxObject& obj) const; |
829 | ||
f6bcfd97 BP |
830 | // deprecated |
831 | long KeyCode() const { return m_keyCode; } | |
832 | ||
2b854a32 | 833 | public: |
b02da6b1 VZ |
834 | wxCoord m_x, m_y; |
835 | ||
2b854a32 | 836 | long m_keyCode; |
b02da6b1 | 837 | |
2b854a32 VZ |
838 | bool m_controlDown; |
839 | bool m_shiftDown; | |
840 | bool m_altDown; | |
841 | bool m_metaDown; | |
b0e813a0 | 842 | bool m_scanCode; |
c801d85f KB |
843 | }; |
844 | ||
845 | // Size event class | |
846 | /* | |
847 | wxEVT_SIZE | |
848 | */ | |
849 | ||
2b854a32 | 850 | class WXDLLEXPORT wxSizeEvent : public wxEvent |
c801d85f | 851 | { |
2b854a32 | 852 | DECLARE_DYNAMIC_CLASS(wxSizeEvent) |
c801d85f | 853 | |
2b854a32 VZ |
854 | public: |
855 | wxSize m_size; | |
c801d85f | 856 | |
2b854a32 VZ |
857 | wxSizeEvent() { m_eventType = wxEVT_SIZE; } |
858 | wxSizeEvent(const wxSize& sz, int id = 0) | |
859 | : m_size(sz) | |
860 | { m_eventType = wxEVT_SIZE; m_id = id; } | |
c801d85f | 861 | |
2b854a32 | 862 | wxSize GetSize() const { return m_size; } |
aadbdf11 GL |
863 | |
864 | void CopyObject(wxObject& obj) const; | |
c801d85f KB |
865 | }; |
866 | ||
867 | // Move event class | |
868 | ||
869 | /* | |
870 | wxEVT_MOVE | |
871 | */ | |
872 | ||
2b854a32 | 873 | class WXDLLEXPORT wxMoveEvent : public wxEvent |
c801d85f | 874 | { |
2b854a32 | 875 | DECLARE_DYNAMIC_CLASS(wxMoveEvent) |
c801d85f | 876 | |
2b854a32 VZ |
877 | public: |
878 | wxPoint m_pos; | |
c801d85f | 879 | |
2b854a32 VZ |
880 | wxMoveEvent() { m_eventType = wxEVT_MOVE; } |
881 | wxMoveEvent(const wxPoint& pos, int id = 0) | |
882 | : m_pos(pos) | |
883 | { m_eventType = wxEVT_MOVE; m_id = id; } | |
c801d85f | 884 | |
2b854a32 | 885 | wxPoint GetPosition() const { return m_pos; } |
aadbdf11 GL |
886 | |
887 | void CopyObject(wxObject& obj) const; | |
c801d85f KB |
888 | }; |
889 | ||
890 | // Paint event class | |
891 | /* | |
892 | wxEVT_PAINT | |
893 | wxEVT_NC_PAINT | |
894 | wxEVT_PAINT_ICON | |
895 | */ | |
896 | ||
b078fa02 JS |
897 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
898 | // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined | |
98243fed | 899 | extern WXDLLEXPORT int g_isPainting; |
edccf428 VZ |
900 | #endif // debug |
901 | ||
2b854a32 | 902 | class WXDLLEXPORT wxPaintEvent : public wxEvent |
c801d85f | 903 | { |
2b854a32 | 904 | DECLARE_DYNAMIC_CLASS(wxPaintEvent) |
c801d85f | 905 | |
2b854a32 | 906 | public: |
edccf428 VZ |
907 | wxPaintEvent(int Id = 0) |
908 | { | |
909 | m_eventType = wxEVT_PAINT; | |
910 | m_id = Id; | |
911 | ||
b078fa02 | 912 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
edccf428 VZ |
913 | // set the internal flag for the duration of processing of WM_PAINT |
914 | g_isPainting++; | |
915 | #endif // debug | |
916 | } | |
917 | ||
b078fa02 | 918 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
edccf428 VZ |
919 | ~wxPaintEvent() |
920 | { | |
921 | g_isPainting--; | |
922 | } | |
923 | #endif // debug | |
c801d85f KB |
924 | }; |
925 | ||
926 | // Erase background event class | |
927 | /* | |
928 | wxEVT_ERASE_BACKGROUND | |
929 | */ | |
930 | ||
2b854a32 | 931 | class WXDLLEXPORT wxEraseEvent : public wxEvent |
c801d85f | 932 | { |
2b854a32 VZ |
933 | DECLARE_DYNAMIC_CLASS(wxEraseEvent) |
934 | ||
935 | public: | |
936 | wxDC *m_dc; | |
937 | ||
938 | wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL) | |
939 | { m_eventType = wxEVT_ERASE_BACKGROUND; m_id = Id; m_dc = dc; } | |
940 | wxDC *GetDC() const { return m_dc; } | |
aadbdf11 GL |
941 | |
942 | void CopyObject(wxObject& obj) const; | |
c801d85f KB |
943 | }; |
944 | ||
945 | // Focus event class | |
946 | /* | |
947 | wxEVT_SET_FOCUS | |
948 | wxEVT_KILL_FOCUS | |
949 | */ | |
950 | ||
2b854a32 | 951 | class WXDLLEXPORT wxFocusEvent : public wxEvent |
c801d85f | 952 | { |
2b854a32 | 953 | DECLARE_DYNAMIC_CLASS(wxFocusEvent) |
c801d85f | 954 | |
2b854a32 VZ |
955 | public: |
956 | wxFocusEvent(wxEventType type = wxEVT_NULL, int Id = 0) | |
957 | { m_eventType = type; m_id = Id; } | |
c801d85f KB |
958 | }; |
959 | ||
960 | // Activate event class | |
961 | /* | |
962 | wxEVT_ACTIVATE | |
963 | wxEVT_ACTIVATE_APP | |
964 | */ | |
965 | ||
2b854a32 | 966 | class WXDLLEXPORT wxActivateEvent : public wxEvent |
c801d85f | 967 | { |
2b854a32 VZ |
968 | DECLARE_DYNAMIC_CLASS(wxActivateEvent) |
969 | ||
970 | public: | |
971 | wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0) | |
972 | { m_eventType = type; m_active = active; m_id = Id; } | |
973 | bool GetActive() const { return m_active; } | |
c801d85f | 974 | |
aadbdf11 GL |
975 | void CopyObject(wxObject& obj) const; |
976 | ||
2b854a32 VZ |
977 | private: |
978 | bool m_active; | |
c801d85f KB |
979 | }; |
980 | ||
981 | // InitDialog event class | |
982 | /* | |
983 | wxEVT_INIT_DIALOG | |
984 | */ | |
985 | ||
2b854a32 | 986 | class WXDLLEXPORT wxInitDialogEvent : public wxEvent |
c801d85f | 987 | { |
2b854a32 | 988 | DECLARE_DYNAMIC_CLASS(wxInitDialogEvent) |
c801d85f | 989 | |
2b854a32 VZ |
990 | public: |
991 | wxInitDialogEvent(int Id = 0) | |
992 | { m_eventType = wxEVT_INIT_DIALOG; m_id = Id; } | |
c801d85f KB |
993 | }; |
994 | ||
995 | // Miscellaneous menu event class | |
996 | /* | |
997 | wxEVT_MENU_CHAR, | |
998 | wxEVT_MENU_INIT, | |
999 | wxEVT_MENU_HIGHLIGHT, | |
1000 | wxEVT_POPUP_MENU_INIT, | |
1001 | wxEVT_CONTEXT_MENU, | |
1002 | */ | |
1003 | ||
2b854a32 | 1004 | class WXDLLEXPORT wxMenuEvent : public wxEvent |
c801d85f | 1005 | { |
2b854a32 | 1006 | DECLARE_DYNAMIC_CLASS(wxMenuEvent) |
c801d85f KB |
1007 | |
1008 | public: | |
aadbdf11 GL |
1009 | wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0) |
1010 | { m_eventType = type; m_menuId = id; } | |
c801d85f | 1011 | |
aadbdf11 | 1012 | int GetMenuId() const { return m_menuId; } |
c801d85f | 1013 | |
aadbdf11 | 1014 | void CopyObject(wxObject& obj) const; |
2b854a32 | 1015 | private: |
aadbdf11 | 1016 | int m_menuId; |
c801d85f KB |
1017 | }; |
1018 | ||
1019 | // Window close or session close event class | |
1020 | /* | |
1021 | wxEVT_CLOSE_WINDOW, | |
1022 | wxEVT_END_SESSION, | |
1023 | wxEVT_QUERY_END_SESSION | |
1024 | */ | |
1025 | ||
2b854a32 | 1026 | class WXDLLEXPORT wxCloseEvent : public wxEvent |
c801d85f | 1027 | { |
2b854a32 VZ |
1028 | DECLARE_DYNAMIC_CLASS(wxCloseEvent) |
1029 | ||
c801d85f | 1030 | public: |
2b854a32 VZ |
1031 | wxCloseEvent(wxEventType type = wxEVT_NULL, int id = 0) |
1032 | { | |
1033 | m_eventType = type; | |
1034 | m_loggingOff = TRUE; | |
1035 | m_veto = FALSE; // should be FALSE by default | |
1036 | m_id = id; | |
1037 | #if WXWIN_COMPATIBILITY | |
1038 | m_force = FALSE; | |
1039 | #endif // WXWIN_COMPATIBILITY | |
1040 | m_canVeto = TRUE; | |
1041 | } | |
1042 | ||
1043 | void SetLoggingOff(bool logOff) { m_loggingOff = logOff; } | |
1044 | bool GetLoggingOff() const { return m_loggingOff; } | |
1045 | ||
fe4e9e6c VZ |
1046 | void Veto(bool veto = TRUE) |
1047 | { | |
1048 | // GetVeto() will return FALSE anyhow... | |
1049 | wxCHECK_RET( m_canVeto, | |
223d09f6 | 1050 | wxT("call to Veto() ignored (can't veto this event)") ); |
fe4e9e6c VZ |
1051 | |
1052 | m_veto = veto; | |
1053 | } | |
2b854a32 | 1054 | void SetCanVeto(bool canVeto) { m_canVeto = canVeto; } |
e3065973 | 1055 | // No more asserts here please, the one you put here was wrong. |
2b854a32 | 1056 | bool CanVeto() const { return m_canVeto; } |
fe4e9e6c | 1057 | bool GetVeto() const { return m_canVeto && m_veto; } |
c801d85f | 1058 | |
2b854a32 VZ |
1059 | #if WXWIN_COMPATIBILITY |
1060 | // This is probably obsolete now, since we use CanVeto instead, in | |
1061 | // both OnCloseWindow and OnQueryEndSession. | |
1062 | // m_force == ! m_canVeto i.e., can't veto means we must force it to close. | |
1063 | void SetForce(bool force) { m_force = force; } | |
1064 | bool GetForce() const { return m_force; } | |
1065 | #endif | |
1066 | ||
aadbdf11 GL |
1067 | void CopyObject(wxObject& obj) const; |
1068 | ||
2b854a32 VZ |
1069 | protected: |
1070 | bool m_loggingOff; | |
1071 | bool m_veto, m_canVeto; | |
1072 | ||
1073 | #if WXWIN_COMPATIBILITY | |
1074 | bool m_force; | |
1075 | #endif | |
c801d85f KB |
1076 | }; |
1077 | ||
1078 | /* | |
1079 | wxEVT_SHOW | |
1080 | */ | |
1081 | ||
2b854a32 | 1082 | class WXDLLEXPORT wxShowEvent : public wxEvent |
c801d85f | 1083 | { |
2b854a32 VZ |
1084 | DECLARE_DYNAMIC_CLASS(wxShowEvent) |
1085 | ||
c801d85f KB |
1086 | public: |
1087 | ||
2b854a32 VZ |
1088 | wxShowEvent(int id = 0, bool show = FALSE) |
1089 | { m_eventType = wxEVT_SHOW; m_id = id; m_show = show; } | |
c801d85f | 1090 | |
2b854a32 VZ |
1091 | void SetShow(bool show) { m_show = show; } |
1092 | bool GetShow() const { return m_show; } | |
c801d85f | 1093 | |
aadbdf11 GL |
1094 | void CopyObject(wxObject& obj) const; |
1095 | ||
c801d85f | 1096 | protected: |
2b854a32 | 1097 | bool m_show; |
c801d85f KB |
1098 | }; |
1099 | ||
1100 | /* | |
1101 | wxEVT_ICONIZE | |
1102 | */ | |
1103 | ||
2b854a32 | 1104 | class WXDLLEXPORT wxIconizeEvent : public wxEvent |
c801d85f | 1105 | { |
2b854a32 | 1106 | DECLARE_DYNAMIC_CLASS(wxIconizeEvent) |
c801d85f | 1107 | |
2b854a32 VZ |
1108 | public: |
1109 | wxIconizeEvent(int id = 0) | |
1110 | { m_eventType = wxEVT_ICONIZE; m_id = id; } | |
c801d85f KB |
1111 | }; |
1112 | ||
1113 | /* | |
1114 | wxEVT_MAXIMIZE | |
1115 | */ | |
1116 | ||
2b854a32 | 1117 | class WXDLLEXPORT wxMaximizeEvent : public wxEvent |
c801d85f | 1118 | { |
2b854a32 | 1119 | DECLARE_DYNAMIC_CLASS(wxMaximizeEvent) |
c801d85f | 1120 | |
2b854a32 VZ |
1121 | public: |
1122 | wxMaximizeEvent(int id = 0) | |
1123 | { m_eventType = wxEVT_MAXIMIZE; m_id = id; } | |
c801d85f KB |
1124 | }; |
1125 | ||
1126 | // Joystick event class | |
1127 | /* | |
1128 | wxEVT_JOY_BUTTON_DOWN, | |
1129 | wxEVT_JOY_BUTTON_UP, | |
1130 | wxEVT_JOY_MOVE, | |
1131 | wxEVT_JOY_ZMOVE | |
1132 | */ | |
1133 | ||
1134 | // Which joystick? Same as Windows ids so no conversion necessary. | |
1135 | #define wxJOYSTICK1 0 | |
1136 | #define wxJOYSTICK2 1 | |
1137 | ||
1138 | // Which button is down? | |
1139 | #define wxJOY_BUTTON1 1 | |
1140 | #define wxJOY_BUTTON2 2 | |
1141 | #define wxJOY_BUTTON3 4 | |
1142 | #define wxJOY_BUTTON4 8 | |
1143 | #define wxJOY_BUTTON_ANY -1 | |
1144 | ||
2b854a32 | 1145 | class WXDLLEXPORT wxJoystickEvent : public wxEvent |
c801d85f | 1146 | { |
2b854a32 VZ |
1147 | DECLARE_DYNAMIC_CLASS(wxJoystickEvent) |
1148 | ||
1149 | public: | |
1150 | wxPoint m_pos; | |
1151 | int m_zPosition; | |
1152 | int m_buttonChange; // Which button changed? | |
1153 | int m_buttonState; // Which buttons are down? | |
1154 | int m_joyStick; // Which joystick? | |
1155 | ||
1156 | wxJoystickEvent(wxEventType type = wxEVT_NULL, | |
1157 | int state = 0, | |
1158 | int joystick = wxJOYSTICK1, | |
1159 | int change = 0) | |
1160 | { | |
1161 | m_eventType = type; | |
1162 | m_buttonState = state; | |
1163 | m_pos = wxPoint(0,0); | |
1164 | m_zPosition = 0; | |
1165 | m_joyStick = joystick; | |
1166 | m_buttonChange = change; | |
1167 | } | |
1168 | ||
1169 | wxPoint GetPosition() const { return m_pos; } | |
1170 | int GetZPosition() const { return m_zPosition; } | |
1171 | int GetButtonState() const { return m_buttonState; } | |
1172 | int GetButtonChange() const { return m_buttonChange; } | |
1173 | int GetJoystick() const { return m_joyStick; } | |
1174 | ||
1175 | void SetJoystick(int stick) { m_joyStick = stick; } | |
1176 | void SetButtonState(int state) { m_buttonState = state; } | |
1177 | void SetButtonChange(int change) { m_buttonChange = change; } | |
1178 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1179 | void SetZPosition(int zPos) { m_zPosition = zPos; } | |
1180 | ||
1181 | // Was it a button event? (*doesn't* mean: is any button *down*?) | |
1182 | bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) || | |
b70ababc | 1183 | (GetEventType() == wxEVT_JOY_BUTTON_UP)); } |
2b854a32 VZ |
1184 | |
1185 | // Was it a move event? | |
1186 | bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE) ; } | |
1187 | ||
1188 | // Was it a zmove event? | |
1189 | bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE) ; } | |
1190 | ||
1191 | // Was it a down event from button 1, 2, 3, 4 or any? | |
1192 | bool ButtonDown(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1193 | { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) && |
2b854a32 | 1194 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } |
c801d85f | 1195 | |
2b854a32 VZ |
1196 | // Was it a up event from button 1, 2, 3 or any? |
1197 | bool ButtonUp(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1198 | { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) && |
2b854a32 | 1199 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } |
c801d85f | 1200 | |
2b854a32 VZ |
1201 | // Was the given button 1,2,3,4 or any in Down state? |
1202 | bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1203 | { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) || |
2b854a32 | 1204 | ((m_buttonState & but) == but)); } |
f305c661 GL |
1205 | |
1206 | void CopyObject(wxObject& obj) const; | |
c801d85f KB |
1207 | }; |
1208 | ||
1209 | // Drop files event class | |
1210 | /* | |
1211 | wxEVT_DROP_FILES | |
1212 | */ | |
1213 | ||
2b854a32 | 1214 | class WXDLLEXPORT wxDropFilesEvent : public wxEvent |
c801d85f | 1215 | { |
2b854a32 | 1216 | DECLARE_DYNAMIC_CLASS(wxDropFilesEvent) |
c801d85f | 1217 | |
2b854a32 VZ |
1218 | public: |
1219 | int m_noFiles; | |
1220 | wxPoint m_pos; | |
1221 | wxString* m_files; // Memory (de)allocated by code calling ProcessEvent | |
1222 | ||
1223 | wxDropFilesEvent(wxEventType type = wxEVT_NULL, | |
1224 | int noFiles = 0, | |
1225 | wxString *files = (wxString *) NULL) | |
1226 | { m_eventType = type; m_noFiles = noFiles; m_files = files; } | |
1227 | ||
1228 | wxPoint GetPosition() const { return m_pos; } | |
1229 | int GetNumberOfFiles() const { return m_noFiles; } | |
1230 | wxString *GetFiles() const { return m_files; } | |
f305c661 GL |
1231 | |
1232 | void CopyObject(wxObject& obj) const; | |
c801d85f KB |
1233 | }; |
1234 | ||
c801d85f KB |
1235 | // Update UI event |
1236 | /* | |
1237 | wxEVT_UPDATE_UI | |
1238 | */ | |
1239 | ||
2b854a32 | 1240 | class WXDLLEXPORT wxUpdateUIEvent : public wxCommandEvent |
c801d85f | 1241 | { |
2b854a32 | 1242 | DECLARE_DYNAMIC_CLASS(wxUpdateUIEvent) |
c801d85f | 1243 | |
2b854a32 VZ |
1244 | public: |
1245 | wxUpdateUIEvent(wxWindowID commandId = 0) | |
1246 | { | |
1247 | m_eventType = wxEVT_UPDATE_UI; | |
1248 | m_id = commandId; | |
1249 | m_checked = FALSE; | |
1250 | m_setChecked = FALSE; | |
1251 | m_enabled = FALSE; | |
1252 | m_setEnabled = FALSE; | |
1253 | m_setText = FALSE; | |
1254 | m_text = ""; | |
1255 | } | |
1256 | ||
1257 | bool GetChecked() const { return m_checked; } | |
1258 | bool GetEnabled() const { return m_enabled; } | |
1259 | wxString GetText() const { return m_text; } | |
1260 | bool GetSetText() const { return m_setText; } | |
1261 | bool GetSetChecked() const { return m_setChecked; } | |
1262 | bool GetSetEnabled() const { return m_setEnabled; } | |
1263 | ||
1264 | void Check(bool check) { m_checked = check; m_setChecked = TRUE; } | |
1265 | void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; } | |
1266 | void SetText(const wxString& text) { m_text = text; m_setText = TRUE; } | |
c801d85f | 1267 | |
f305c661 GL |
1268 | void CopyObject(wxObject& obj) const; |
1269 | ||
2b854a32 VZ |
1270 | protected: |
1271 | bool m_checked; | |
1272 | bool m_enabled; | |
1273 | bool m_setEnabled; | |
1274 | bool m_setText; | |
1275 | bool m_setChecked; | |
1276 | wxString m_text; | |
c801d85f KB |
1277 | }; |
1278 | ||
1279 | /* | |
1280 | wxEVT_SYS_COLOUR_CHANGED | |
1281 | */ | |
1282 | ||
1283 | // TODO: shouldn't all events record the window ID? | |
2b854a32 | 1284 | class WXDLLEXPORT wxSysColourChangedEvent : public wxEvent |
c801d85f | 1285 | { |
2b854a32 | 1286 | DECLARE_DYNAMIC_CLASS(wxSysColourChangedEvent) |
c801d85f | 1287 | |
2b854a32 VZ |
1288 | public: |
1289 | wxSysColourChangedEvent() | |
1290 | { m_eventType = wxEVT_SYS_COLOUR_CHANGED; } | |
c801d85f KB |
1291 | }; |
1292 | ||
f7bd2698 JS |
1293 | /* |
1294 | wxEVT_PALETTE_CHANGED | |
1295 | */ | |
1296 | ||
2b854a32 | 1297 | class WXDLLEXPORT wxPaletteChangedEvent : public wxEvent |
f7bd2698 | 1298 | { |
2b854a32 | 1299 | DECLARE_DYNAMIC_CLASS(wxPaletteChangedEvent) |
f7bd2698 JS |
1300 | |
1301 | public: | |
2b854a32 VZ |
1302 | wxPaletteChangedEvent(wxWindowID id = 0) : wxEvent(id) |
1303 | { | |
1304 | m_eventType = wxEVT_PALETTE_CHANGED; | |
1305 | m_changedWindow = (wxWindow *) NULL; | |
1306 | } | |
f7bd2698 | 1307 | |
2b854a32 VZ |
1308 | void SetChangedWindow(wxWindow* win) { m_changedWindow = win; } |
1309 | wxWindow* GetChangedWindow() const { return m_changedWindow; } | |
f7bd2698 | 1310 | |
f305c661 GL |
1311 | void CopyObject(wxObject& obj) const; |
1312 | ||
f7bd2698 | 1313 | protected: |
2b854a32 | 1314 | wxWindow* m_changedWindow; |
f7bd2698 JS |
1315 | }; |
1316 | ||
1317 | /* | |
1318 | wxEVT_QUERY_NEW_PALETTE | |
1319 | Indicates the window is getting keyboard focus and should re-do its palette. | |
1320 | */ | |
1321 | ||
2b854a32 | 1322 | class WXDLLEXPORT wxQueryNewPaletteEvent : public wxEvent |
f7bd2698 | 1323 | { |
2b854a32 | 1324 | DECLARE_DYNAMIC_CLASS(wxQueryNewPaletteEvent) |
f7bd2698 JS |
1325 | |
1326 | public: | |
2b854a32 VZ |
1327 | wxQueryNewPaletteEvent(wxWindowID id = 0): wxEvent(id) |
1328 | { m_eventType = wxEVT_QUERY_NEW_PALETTE; m_paletteRealized = FALSE; } | |
f7bd2698 | 1329 | |
2b854a32 VZ |
1330 | // App sets this if it changes the palette. |
1331 | void SetPaletteRealized(bool realized) { m_paletteRealized = realized; } | |
1332 | bool GetPaletteRealized() const { return m_paletteRealized; } | |
f7bd2698 | 1333 | |
f305c661 GL |
1334 | void CopyObject(wxObject& obj) const; |
1335 | ||
f7bd2698 | 1336 | protected: |
2b854a32 | 1337 | bool m_paletteRealized; |
f7bd2698 JS |
1338 | }; |
1339 | ||
7fdefd57 VZ |
1340 | /* |
1341 | Event generated by dialog navigation keys | |
1342 | wxEVT_NAVIGATION_KEY | |
1343 | */ | |
d9506e77 VZ |
1344 | // NB: don't derive from command event to avoid being propagated to the parent |
1345 | class WXDLLEXPORT wxNavigationKeyEvent : public wxEvent | |
7fdefd57 | 1346 | { |
7fdefd57 | 1347 | public: |
d9506e77 VZ |
1348 | wxNavigationKeyEvent() |
1349 | { | |
1350 | SetEventType(wxEVT_NAVIGATION_KEY); | |
1351 | ||
1352 | m_flags = IsForward | Propagate; // defaults are for TAB | |
1353 | m_focus = (wxWindow *)NULL; | |
1354 | } | |
7fdefd57 | 1355 | |
2b854a32 | 1356 | // direction: forward (true) or backward (false) |
d9506e77 VZ |
1357 | bool GetDirection() const |
1358 | { return (m_flags & IsForward) != 0; } | |
1359 | void SetDirection(bool bForward) | |
1360 | { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; } | |
7fdefd57 | 1361 | |
2b854a32 VZ |
1362 | // it may be a window change event (MDI, notebook pages...) or a control |
1363 | // change event | |
d9506e77 VZ |
1364 | bool IsWindowChange() const |
1365 | { return (m_flags & WinChange) != 0; } | |
1366 | void SetWindowChange(bool bIs) | |
1367 | { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; } | |
1368 | ||
1369 | // some navigation events are meant to be propagated upwards (Windows | |
1370 | // convention is to do this for TAB events) while others should always | |
1371 | // cycle inside the panel/radiobox/whatever we're current inside | |
1372 | bool ShouldPropagate() const | |
1373 | { return (m_flags & Propagate) != 0; } | |
1374 | void SetPropagate(bool bDoIt) | |
1375 | { if ( bDoIt ) m_flags |= Propagate; else m_flags &= ~Propagate; } | |
7fdefd57 | 1376 | |
2b854a32 VZ |
1377 | // the child which has the focus currently (may be NULL - use |
1378 | // wxWindow::FindFocus then) | |
d9506e77 VZ |
1379 | wxWindow* GetCurrentFocus() const { return m_focus; } |
1380 | void SetCurrentFocus(wxWindow *win) { m_focus = win; } | |
1381 | ||
1382 | private: | |
1383 | enum | |
1384 | { | |
1385 | IsForward = 0x0001, | |
1386 | WinChange = 0x0002, | |
1387 | Propagate = 0x0004 | |
1388 | }; | |
1389 | ||
1390 | long m_flags; | |
1391 | wxWindow *m_focus; | |
1392 | ||
1393 | DECLARE_DYNAMIC_CLASS(wxNavigationKeyEvent) | |
7fdefd57 VZ |
1394 | }; |
1395 | ||
42e69d6b VZ |
1396 | // Window creation/destruction events: the first is sent as soon as window is |
1397 | // created (i.e. the underlying GUI object exists), but when the C++ object is | |
1398 | // fully initialized (so virtual functions may be called). The second, | |
1399 | // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's | |
1400 | // still safe to call virtual functions at this moment | |
1401 | /* | |
1402 | wxEVT_CREATE | |
1403 | wxEVT_DESTROY | |
1404 | */ | |
1405 | ||
f6bcfd97 | 1406 | class WXDLLEXPORT wxWindowCreateEvent : public wxCommandEvent |
42e69d6b VZ |
1407 | { |
1408 | DECLARE_DYNAMIC_CLASS(wxWindowCreateEvent) | |
1409 | ||
1410 | public: | |
1411 | wxWindowCreateEvent(wxWindow *win = NULL); | |
1412 | ||
1413 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1414 | }; | |
1415 | ||
f6bcfd97 | 1416 | class WXDLLEXPORT wxWindowDestroyEvent : public wxCommandEvent |
42e69d6b VZ |
1417 | { |
1418 | DECLARE_DYNAMIC_CLASS(wxWindowDestroyEvent) | |
1419 | ||
1420 | public: | |
1421 | wxWindowDestroyEvent(wxWindow *win = NULL); | |
1422 | ||
1423 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1424 | }; | |
1425 | ||
bd83cb56 | 1426 | // A help event is sent when the user clicks on a window in context-help mode. |
b96340e6 | 1427 | /* |
bd83cb56 VZ |
1428 | wxEVT_HELP |
1429 | wxEVT_DETAILED_HELP | |
1430 | */ | |
b96340e6 JS |
1431 | |
1432 | class WXDLLEXPORT wxHelpEvent : public wxCommandEvent | |
1433 | { | |
b96340e6 | 1434 | public: |
bd83cb56 VZ |
1435 | wxHelpEvent(wxEventType type = wxEVT_NULL, |
1436 | wxWindowID id = 0, | |
1437 | const wxPoint& pt = wxDefaultPosition) | |
1438 | { | |
1439 | m_eventType = type; | |
1440 | m_id = id; | |
1441 | m_pos = pt; | |
1442 | } | |
b96340e6 | 1443 | |
bd83cb56 VZ |
1444 | // Position of event (in screen coordinates) |
1445 | const wxPoint& GetPosition() const { return m_pos; } | |
1446 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
b96340e6 | 1447 | |
bd83cb56 VZ |
1448 | // Optional link to further help |
1449 | const wxString& GetLink() const { return m_link; } | |
1450 | void SetLink(const wxString& link) { m_link = link; } | |
fb6261e9 | 1451 | |
bd83cb56 VZ |
1452 | // Optional target to display help in. E.g. a window specification |
1453 | const wxString& GetTarget() const { return m_target; } | |
1454 | void SetTarget(const wxString& target) { m_target = target; } | |
fb6261e9 | 1455 | |
bd83cb56 VZ |
1456 | protected: |
1457 | wxPoint m_pos; | |
1458 | wxString m_target; | |
1459 | wxString m_link; | |
1460 | ||
1461 | private: | |
1462 | DECLARE_DYNAMIC_CLASS(wxHelpEvent) | |
b96340e6 JS |
1463 | }; |
1464 | ||
e90c1d2a VZ |
1465 | #endif // wxUSE_GUI |
1466 | ||
1467 | // Idle event | |
1468 | /* | |
1469 | wxEVT_IDLE | |
1470 | */ | |
1471 | ||
1472 | class WXDLLEXPORT wxIdleEvent : public wxEvent | |
1473 | { | |
1474 | DECLARE_DYNAMIC_CLASS(wxIdleEvent) | |
1475 | ||
1476 | public: | |
1477 | wxIdleEvent() | |
1478 | { m_eventType = wxEVT_IDLE; m_requestMore = FALSE; } | |
1479 | ||
1480 | void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; } | |
1481 | bool MoreRequested() const { return m_requestMore; } | |
1482 | ||
1483 | void CopyObject(wxObject& obj) const; | |
1484 | ||
1485 | protected: | |
1486 | bool m_requestMore; | |
1487 | }; | |
1488 | ||
e5fb7191 | 1489 | /* TODO |
c801d85f | 1490 | wxEVT_POWER, |
c801d85f KB |
1491 | wxEVT_MOUSE_CAPTURE_CHANGED, |
1492 | wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95) | |
c801d85f KB |
1493 | // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate |
1494 | // wxEVT_FONT_CHANGED to all other windows (maybe). | |
1495 | wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific. | |
1496 | wxEVT_MEASURE_ITEM, | |
1497 | wxEVT_COMPARE_ITEM | |
1498 | */ | |
1499 | ||
8e193f38 VZ |
1500 | // ============================================================================ |
1501 | // event handler and related classes | |
1502 | // ============================================================================ | |
1503 | ||
c801d85f KB |
1504 | typedef void (wxObject::*wxObjectEventFunction)(wxEvent&); |
1505 | ||
1506 | struct WXDLLEXPORT wxEventTableEntry | |
77d4384e | 1507 | { |
cbee8f8d | 1508 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES |
0b5eceb6 VZ |
1509 | wxEventTableEntry(int evType, int id, int idLast, |
1510 | wxObjectEventFunction fn, wxObject *data); | |
cbee8f8d | 1511 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES |
82a5f02c | 1512 | |
0b5eceb6 | 1513 | int m_eventType; // the event type |
77d4384e RR |
1514 | int m_id; // control/menu/toolbar id |
1515 | int m_lastId; // used for ranges of ids | |
1516 | wxObjectEventFunction m_fn; // function to call: not wxEventFunction, | |
1517 | // because of dependency problems | |
1518 | ||
1519 | wxObject* m_callbackUserData; | |
1520 | }; | |
1521 | ||
0b5eceb6 | 1522 | struct WXDLLEXPORT wxDynamicEventTableEntry : public wxEventTableEntry |
c801d85f | 1523 | { |
cbee8f8d | 1524 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES |
0b5eceb6 VZ |
1525 | wxDynamicEventTableEntry(int evType, int id, int idLast, |
1526 | wxObjectEventFunction fn, wxObject *data) | |
1527 | : wxEventTableEntry(evType, id, idLast, fn, data) | |
1528 | { | |
1529 | } | |
cbee8f8d | 1530 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES |
c801d85f KB |
1531 | }; |
1532 | ||
1533 | struct WXDLLEXPORT wxEventTable | |
1534 | { | |
0b5eceb6 VZ |
1535 | const wxEventTable *baseTable; // base event table (next in chain) |
1536 | const wxEventTableEntry *entries; // bottom of entry array | |
c801d85f KB |
1537 | }; |
1538 | ||
2b854a32 | 1539 | class WXDLLEXPORT wxEvtHandler : public wxObject |
c801d85f | 1540 | { |
2b854a32 VZ |
1541 | DECLARE_DYNAMIC_CLASS(wxEvtHandler) |
1542 | ||
1543 | public: | |
1544 | wxEvtHandler(); | |
1545 | ~wxEvtHandler(); | |
1546 | ||
1547 | wxEvtHandler *GetNextHandler() const { return m_nextHandler; } | |
1548 | wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; } | |
1549 | void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; } | |
1550 | void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; } | |
1551 | ||
8e193f38 | 1552 | void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; } |
2b854a32 VZ |
1553 | bool GetEvtHandlerEnabled() const { return m_enabled; } |
1554 | ||
8e193f38 VZ |
1555 | // process an event right now |
1556 | virtual bool ProcessEvent(wxEvent& event); | |
2b854a32 | 1557 | |
8e193f38 VZ |
1558 | // add an event to be processed later |
1559 | void AddPendingEvent(wxEvent& event); | |
2b854a32 | 1560 | |
8e193f38 VZ |
1561 | // process all pending events |
1562 | void ProcessPendingEvents(); | |
2b854a32 | 1563 | |
20947e08 | 1564 | // add a |
7214297d GL |
1565 | #if wxUSE_THREADS |
1566 | bool ProcessThreadEvent(wxEvent& event); | |
7214297d | 1567 | #endif |
2b854a32 VZ |
1568 | |
1569 | // Dynamic association of a member function handler with the event handler, | |
1570 | // id and event type | |
77d4384e | 1571 | void Connect( int id, int lastId, int eventType, |
2b854a32 VZ |
1572 | wxObjectEventFunction func, |
1573 | wxObject *userData = (wxObject *) NULL ); | |
1574 | ||
1575 | // Convenience function: take just one id | |
77d4384e | 1576 | void Connect( int id, int eventType, |
2b854a32 VZ |
1577 | wxObjectEventFunction func, |
1578 | wxObject *userData = (wxObject *) NULL ) | |
1579 | { Connect(id, -1, eventType, func, userData); } | |
1580 | ||
97d7bfb8 RR |
1581 | bool Disconnect( int id, int lastId = -1, wxEventType eventType = wxEVT_NULL, |
1582 | wxObjectEventFunction func = NULL, | |
1583 | wxObject *userData = (wxObject *) NULL ); | |
1584 | ||
1585 | // Convenience function: take just one id | |
1586 | bool Disconnect( int id, wxEventType eventType = wxEVT_NULL, | |
1587 | wxObjectEventFunction func = NULL, | |
1588 | wxObject *userData = (wxObject *) NULL ) | |
1589 | { return Disconnect(id, -1, eventType, func, userData); } | |
98243fed | 1590 | |
8e193f38 VZ |
1591 | // implementation from now on |
1592 | virtual bool SearchEventTable(wxEventTable& table, wxEvent& event); | |
2b854a32 | 1593 | bool SearchDynamicEventTable( wxEvent& event ); |
c801d85f | 1594 | |
63863e09 | 1595 | #if wxUSE_THREADS |
20947e08 DW |
1596 | void ClearEventLocker() |
1597 | { | |
1598 | # if !defined(__VISAGECPP__) | |
1599 | delete m_eventsLocker; | |
1600 | m_eventsLocker = NULL; | |
1601 | #endif | |
1602 | }; | |
63863e09 JS |
1603 | #endif |
1604 | ||
8e193f38 VZ |
1605 | // old stuff |
1606 | ||
1607 | #if WXWIN_COMPATIBILITY_2 | |
1608 | virtual void OnCommand(wxWindow& WXUNUSED(win), | |
1609 | wxCommandEvent& WXUNUSED(event)) | |
1610 | { | |
1611 | wxFAIL_MSG(wxT("shouldn't be called any more")); | |
1612 | } | |
1613 | ||
1614 | // Called if child control has no callback function | |
1615 | virtual long Default() | |
1616 | { return GetNextHandler() ? GetNextHandler()->Default() : 0; }; | |
1617 | #endif // WXWIN_COMPATIBILITY_2 | |
1618 | ||
1619 | #if WXWIN_COMPATIBILITY | |
1620 | virtual bool OnClose(); | |
1621 | #endif | |
1622 | ||
c801d85f | 1623 | private: |
8e193f38 | 1624 | static const wxEventTableEntry sm_eventTableEntries[]; |
2b854a32 | 1625 | |
c801d85f | 1626 | protected: |
193bf013 VZ |
1627 | static const wxEventTable sm_eventTable; |
1628 | ||
1629 | virtual const wxEventTable *GetEventTable() const; | |
1630 | ||
c801d85f | 1631 | protected: |
63863e09 JS |
1632 | wxEvtHandler* m_nextHandler; |
1633 | wxEvtHandler* m_previousHandler; | |
63863e09 | 1634 | wxList* m_dynamicEvents; |
42e69d6b | 1635 | wxList* m_pendingEvents; |
7214297d | 1636 | #if wxUSE_THREADS |
20947e08 DW |
1637 | #if defined (__VISAGECPP__) |
1638 | wxCriticalSection m_eventsLocker; | |
1639 | # else | |
63863e09 | 1640 | wxCriticalSection* m_eventsLocker; |
20947e08 | 1641 | # endif |
7214297d | 1642 | #endif |
193bf013 VZ |
1643 | |
1644 | // optimization: instead of using costly IsKindOf() to decide whether we're | |
1645 | // a window (which is true in 99% of cases), use this flag | |
63863e09 | 1646 | bool m_isWindow; |
8e193f38 VZ |
1647 | |
1648 | // Is event handler enabled? | |
1649 | bool m_enabled; | |
c801d85f KB |
1650 | }; |
1651 | ||
1652 | typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&); | |
e90c1d2a | 1653 | #if wxUSE_GUI |
c801d85f KB |
1654 | typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&); |
1655 | typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&); | |
c5b42c87 | 1656 | typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&); |
c801d85f KB |
1657 | typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&); |
1658 | typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&); | |
1659 | typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&); | |
1660 | typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&); | |
1661 | typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&); | |
1662 | typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&); | |
1663 | typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&); | |
1664 | typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&); | |
1665 | typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&); | |
1666 | typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&); | |
1667 | typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&); | |
1668 | typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&); | |
1669 | typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&); | |
1670 | typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&); | |
1671 | typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&); | |
1672 | typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&); | |
1673 | typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&); | |
1674 | typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxShowEvent&); | |
1675 | typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxShowEvent&); | |
81d66cf3 | 1676 | typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&); |
f7bd2698 JS |
1677 | typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&); |
1678 | typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&); | |
43b5058d VZ |
1679 | typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&); |
1680 | typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&); | |
1681 | typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&); | |
669f7a11 | 1682 | typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&); |
b96340e6 | 1683 | typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&); |
e90c1d2a | 1684 | #endif // wxUSE_GUI |
c801d85f KB |
1685 | |
1686 | // N.B. In GNU-WIN32, you *have* to take the address of a member function | |
1687 | // (use &) or the compiler crashes... | |
1688 | ||
1689 | #define DECLARE_EVENT_TABLE() \ | |
1690 | private:\ | |
2b854a32 | 1691 | static const wxEventTableEntry sm_eventTableEntries[];\ |
c801d85f | 1692 | protected:\ |
2b854a32 VZ |
1693 | static const wxEventTable sm_eventTable;\ |
1694 | virtual const wxEventTable* GetEventTable() const; | |
c801d85f KB |
1695 | |
1696 | #define BEGIN_EVENT_TABLE(theClass, baseClass) \ | |
1697 | const wxEventTable *theClass::GetEventTable() const { return &theClass::sm_eventTable; }\ | |
1698 | const wxEventTable theClass::sm_eventTable =\ | |
2b854a32 | 1699 | { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] };\ |
c801d85f KB |
1700 | const wxEventTableEntry theClass::sm_eventTableEntries[] = { \ |
1701 | ||
1702 | #define END_EVENT_TABLE() \ | |
82a5f02c | 1703 | wxEventTableEntry( 0, 0, 0, 0, 0 ) }; |
2b854a32 | 1704 | |
c801d85f KB |
1705 | /* |
1706 | * Event table macros | |
1707 | */ | |
1708 | ||
1709 | // Generic events | |
82a5f02c RR |
1710 | #define EVT_CUSTOM(event, id, func) wxEventTableEntry( event, id, -1, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ), |
1711 | #define EVT_CUSTOM_RANGE(event, id1, id2, func) wxEventTableEntry( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
1712 | |
1713 | // Miscellaneous | |
82a5f02c RR |
1714 | #define EVT_SIZE(func) wxEventTableEntry( wxEVT_SIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSizeEventFunction) & func, (wxObject *) NULL ), |
1715 | #define EVT_MOVE(func) wxEventTableEntry( wxEVT_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMoveEventFunction) & func, (wxObject *) NULL ), | |
1716 | #define EVT_CLOSE(func) wxEventTableEntry( wxEVT_CLOSE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
1717 | #define EVT_END_SESSION(func) wxEventTableEntry( wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
1718 | #define EVT_QUERY_END_SESSION(func) wxEventTableEntry( wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
1719 | #define EVT_PAINT(func) wxEventTableEntry( wxEVT_PAINT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaintEventFunction) & func, (wxObject *) NULL ), | |
1720 | #define EVT_ERASE_BACKGROUND(func) wxEventTableEntry( wxEVT_ERASE_BACKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxEraseEventFunction) & func, (wxObject *) NULL ), | |
1721 | #define EVT_CHAR(func) wxEventTableEntry( wxEVT_CHAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
1722 | #define EVT_KEY_DOWN(func) wxEventTableEntry( wxEVT_KEY_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
1723 | #define EVT_KEY_UP(func) wxEventTableEntry( wxEVT_KEY_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, (wxObject *) NULL ), | |
1724 | #define EVT_CHAR_HOOK(func) wxEventTableEntry( wxEVT_CHAR_HOOK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCharEventFunction) & func, NULL ), | |
1725 | #define EVT_MENU_HIGHLIGHT(id, func) wxEventTableEntry( wxEVT_MENU_HIGHLIGHT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ), | |
1726 | #define EVT_MENU_HIGHLIGHT_ALL(func) wxEventTableEntry( wxEVT_MENU_HIGHLIGHT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMenuEventFunction) & func, (wxObject *) NULL ), | |
1727 | #define EVT_SET_FOCUS(func) wxEventTableEntry( wxEVT_SET_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ), | |
1728 | #define EVT_KILL_FOCUS(func) wxEventTableEntry( wxEVT_KILL_FOCUS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxFocusEventFunction) & func, (wxObject *) NULL ), | |
1729 | #define EVT_ACTIVATE(func) wxEventTableEntry( wxEVT_ACTIVATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ), | |
1730 | #define EVT_ACTIVATE_APP(func) wxEventTableEntry( wxEVT_ACTIVATE_APP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxActivateEventFunction) & func, (wxObject *) NULL ), | |
1731 | #define EVT_END_SESSION(func) wxEventTableEntry( wxEVT_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
1732 | #define EVT_QUERY_END_SESSION(func) wxEventTableEntry( wxEVT_QUERY_END_SESSION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCloseEventFunction) & func, (wxObject *) NULL ), | |
1733 | #define EVT_DROP_FILES(func) wxEventTableEntry( wxEVT_DROP_FILES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDropFilesEventFunction) & func, (wxObject *) NULL ), | |
1734 | #define EVT_INIT_DIALOG(func) wxEventTableEntry( wxEVT_INIT_DIALOG, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxInitDialogEventFunction) & func, (wxObject *) NULL ), | |
1735 | #define EVT_SYS_COLOUR_CHANGED(func) wxEventTableEntry( wxEVT_SYS_COLOUR_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSysColourChangedFunction) & func, (wxObject *) NULL ), | |
1736 | #define EVT_SHOW(func) wxEventTableEntry( wxEVT_SHOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxShowEventFunction) & func, (wxObject *) NULL ), | |
1737 | #define EVT_MAXIMIZE(func) wxEventTableEntry( wxEVT_MAXIMIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMaximizeEventFunction) & func, (wxObject *) NULL ), | |
1738 | #define EVT_ICONIZE(func) wxEventTableEntry( wxEVT_ICONIZE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIconizeEventFunction) & func, (wxObject *) NULL ), | |
1739 | #define EVT_NAVIGATION_KEY(func) wxEventTableEntry( wxEVT_NAVIGATION_KEY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxNavigationKeyEventFunction) & func, (wxObject *) NULL ), | |
1740 | #define EVT_PALETTE_CHANGED(func) wxEventTableEntry( wxEVT_PALETTE_CHANGED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxPaletteChangedEventFunction) & func, (wxObject *) NULL ), | |
1741 | #define EVT_QUERY_NEW_PALETTE(func) wxEventTableEntry( wxEVT_QUERY_NEW_PALETTE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryNewPaletteEventFunction) & func, (wxObject *) NULL ), | |
1742 | #define EVT_WINDOW_CREATE(func) wxEventTableEntry( wxEVT_CREATE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxWindowCreateEventFunction) & func, (wxObject *) NULL ), | |
1743 | #define EVT_WINDOW_DESTROY(func) wxEventTableEntry( wxEVT_DESTROY, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxWindowDestroyEventFunction) & func, (wxObject *) NULL ), | |
1744 | #define EVT_SET_CURSOR(func) wxEventTableEntry( wxEVT_SET_CURSOR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxSetCursorEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
1745 | |
1746 | // Mouse events | |
82a5f02c RR |
1747 | #define EVT_LEFT_DOWN(func) wxEventTableEntry( wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), |
1748 | #define EVT_LEFT_UP(func) wxEventTableEntry( wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1749 | #define EVT_MIDDLE_DOWN(func) wxEventTableEntry( wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1750 | #define EVT_MIDDLE_UP(func) wxEventTableEntry( wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1751 | #define EVT_RIGHT_DOWN(func) wxEventTableEntry( wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1752 | #define EVT_RIGHT_UP(func) wxEventTableEntry( wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1753 | #define EVT_MOTION(func) wxEventTableEntry( wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1754 | #define EVT_LEFT_DCLICK(func) wxEventTableEntry( wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1755 | #define EVT_MIDDLE_DCLICK(func) wxEventTableEntry( wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1756 | #define EVT_RIGHT_DCLICK(func) wxEventTableEntry( wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1757 | #define EVT_LEAVE_WINDOW(func) wxEventTableEntry( wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
1758 | #define EVT_ENTER_WINDOW(func) wxEventTableEntry( wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
1759 | |
1760 | // All mouse events | |
1761 | #define EVT_MOUSE_EVENTS(func) \ | |
82a5f02c RR |
1762 | wxEventTableEntry( wxEVT_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ |
1763 | wxEventTableEntry( wxEVT_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1764 | wxEventTableEntry( wxEVT_MIDDLE_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1765 | wxEventTableEntry( wxEVT_MIDDLE_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1766 | wxEventTableEntry( wxEVT_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1767 | wxEventTableEntry( wxEVT_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1768 | wxEventTableEntry( wxEVT_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1769 | wxEventTableEntry( wxEVT_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1770 | wxEventTableEntry( wxEVT_MIDDLE_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1771 | wxEventTableEntry( wxEVT_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1772 | wxEventTableEntry( wxEVT_ENTER_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ),\ | |
1773 | wxEventTableEntry( wxEVT_LEAVE_WINDOW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxMouseEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
1774 | |
1775 | // EVT_COMMAND | |
82a5f02c RR |
1776 | #define EVT_COMMAND(id, event, fn) wxEventTableEntry( event, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
1777 | #define EVT_COMMAND_RANGE(id1, id2, event, fn) wxEventTableEntry( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f | 1778 | |
c5b42c87 RR |
1779 | // Scrolling from wxWindow (sent to wxScrolledWindow) |
1780 | #define EVT_SCROLLWIN(func) \ | |
82a5f02c RR |
1781 | wxEventTableEntry( wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ |
1782 | wxEventTableEntry( wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
1783 | wxEventTableEntry( wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
1784 | wxEventTableEntry( wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
1785 | wxEventTableEntry( wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
1786 | wxEventTableEntry( wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
1787 | wxEventTableEntry( wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ),\ | |
1788 | wxEventTableEntry( wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1789 | ||
1790 | #define EVT_SCROLLWIN_TOP(func) wxEventTableEntry( wxEVT_SCROLLWIN_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1791 | #define EVT_SCROLLWIN_BOTTOM(func) wxEventTableEntry( wxEVT_SCROLLWIN_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1792 | #define EVT_SCROLLWIN_LINEUP(func) wxEventTableEntry( wxEVT_SCROLLWIN_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1793 | #define EVT_SCROLLWIN_LINEDOWN(func) wxEventTableEntry( wxEVT_SCROLLWIN_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1794 | #define EVT_SCROLLWIN_PAGEUP(func) wxEventTableEntry( wxEVT_SCROLLWIN_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1795 | #define EVT_SCROLLWIN_PAGEDOWN(func) wxEventTableEntry( wxEVT_SCROLLWIN_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1796 | #define EVT_SCROLLWIN_THUMBTRACK(func) wxEventTableEntry( wxEVT_SCROLLWIN_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
1797 | #define EVT_SCROLLWIN_THUMBRELEASE(func) wxEventTableEntry( wxEVT_SCROLLWIN_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollWinEventFunction) & func, (wxObject *) NULL ), | |
c5b42c87 RR |
1798 | |
1799 | // Scrolling from wxSlider and wxScrollBar | |
c801d85f | 1800 | #define EVT_SCROLL(func) \ |
82a5f02c RR |
1801 | wxEventTableEntry( wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ |
1802 | wxEventTableEntry( wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1803 | wxEventTableEntry( wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1804 | wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1805 | wxEventTableEntry( wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1806 | wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1807 | wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1808 | wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1809 | ||
1810 | #define EVT_SCROLL_TOP(func) wxEventTableEntry( wxEVT_SCROLL_TOP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1811 | #define EVT_SCROLL_BOTTOM(func) wxEventTableEntry( wxEVT_SCROLL_BOTTOM, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1812 | #define EVT_SCROLL_LINEUP(func) wxEventTableEntry( wxEVT_SCROLL_LINEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1813 | #define EVT_SCROLL_LINEDOWN(func) wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1814 | #define EVT_SCROLL_PAGEUP(func) wxEventTableEntry( wxEVT_SCROLL_PAGEUP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1815 | #define EVT_SCROLL_PAGEDOWN(func) wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1816 | #define EVT_SCROLL_THUMBTRACK(func) wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1817 | #define EVT_SCROLL_THUMBRELEASE(func) wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
c801d85f | 1818 | |
c5b42c87 | 1819 | // Scrolling from wxSlider and wxScrollBar, with an id |
c801d85f | 1820 | #define EVT_COMMAND_SCROLL(id, func) \ |
82a5f02c RR |
1821 | wxEventTableEntry( wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ |
1822 | wxEventTableEntry( wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1823 | wxEventTableEntry( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1824 | wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1825 | wxEventTableEntry( wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1826 | wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1827 | wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ),\ | |
1828 | wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1829 | ||
1830 | #define EVT_COMMAND_SCROLL_TOP(id, func) wxEventTableEntry( wxEVT_SCROLL_TOP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1831 | #define EVT_COMMAND_SCROLL_BOTTOM(id, func) wxEventTableEntry( wxEVT_SCROLL_BOTTOM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1832 | #define EVT_COMMAND_SCROLL_LINEUP(id, func) wxEventTableEntry( wxEVT_SCROLL_LINEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1833 | #define EVT_COMMAND_SCROLL_LINEDOWN(id, func) wxEventTableEntry( wxEVT_SCROLL_LINEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1834 | #define EVT_COMMAND_SCROLL_PAGEUP(id, func) wxEventTableEntry( wxEVT_SCROLL_PAGEUP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1835 | #define EVT_COMMAND_SCROLL_PAGEDOWN(id, func) wxEventTableEntry( wxEVT_SCROLL_PAGEDOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1836 | #define EVT_COMMAND_SCROLL_THUMBTRACK(id, func) wxEventTableEntry( wxEVT_SCROLL_THUMBTRACK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
1837 | #define EVT_COMMAND_SCROLL_THUMBRELEASE(id, func) wxEventTableEntry( wxEVT_SCROLL_THUMBRELEASE, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxScrollEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
1838 | |
1839 | // Convenience macros for commonly-used commands | |
82a5f02c RR |
1840 | #define EVT_BUTTON(id, fn) wxEventTableEntry( wxEVT_COMMAND_BUTTON_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
1841 | #define EVT_CHECKBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHECKBOX_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1842 | #define EVT_CHOICE(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHOICE_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1843 | #define EVT_LISTBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_LISTBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1844 | #define EVT_LISTBOX_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1845 | #define EVT_TEXT(id, fn) wxEventTableEntry( wxEVT_COMMAND_TEXT_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1846 | #define EVT_TEXT_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_TEXT_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1847 | #define EVT_MENU(id, fn) wxEventTableEntry( wxEVT_COMMAND_MENU_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1848 | #define EVT_MENU_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1849 | #define EVT_SLIDER(id, fn) wxEventTableEntry( wxEVT_COMMAND_SLIDER_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1850 | #define EVT_RADIOBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_RADIOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1851 | #define EVT_RADIOBUTTON(id, fn) wxEventTableEntry( wxEVT_COMMAND_RADIOBUTTON_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f | 1852 | // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events |
82a5f02c RR |
1853 | #define EVT_SCROLLBAR(id, fn) wxEventTableEntry( wxEVT_COMMAND_SCROLLBAR_UPDATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
1854 | #define EVT_VLBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_VLBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1855 | #define EVT_COMBOBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_COMBOBOX_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1856 | #define EVT_TOOL(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_CLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1857 | #define EVT_TOOL_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1858 | #define EVT_TOOL_RCLICKED(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_RCLICKED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1859 | #define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1860 | #define EVT_TOOL_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_TOOL_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1861 | #define EVT_CHECKLISTBOX(id, fn) wxEventTableEntry( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f KB |
1862 | |
1863 | // Generic command events | |
82a5f02c RR |
1864 | #define EVT_COMMAND_LEFT_CLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), |
1865 | #define EVT_COMMAND_LEFT_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1866 | #define EVT_COMMAND_RIGHT_CLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1867 | #define EVT_COMMAND_RIGHT_DCLICK(id, fn) wxEventTableEntry( wxEVT_COMMAND_RIGHT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1868 | #define EVT_COMMAND_SET_FOCUS(id, fn) wxEventTableEntry( wxEVT_COMMAND_SET_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1869 | #define EVT_COMMAND_KILL_FOCUS(id, fn) wxEventTableEntry( wxEVT_COMMAND_KILL_FOCUS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
1870 | #define EVT_COMMAND_ENTER(id, fn) wxEventTableEntry( wxEVT_COMMAND_ENTER, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL ), | |
c801d85f KB |
1871 | |
1872 | // Joystick events | |
1873 | #define EVT_JOY_DOWN(func) \ | |
82a5f02c | 1874 | wxEventTableEntry( wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 1875 | #define EVT_JOY_UP(func) \ |
82a5f02c | 1876 | wxEventTableEntry( wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 1877 | #define EVT_JOY_MOVE(func) \ |
82a5f02c | 1878 | wxEventTableEntry( wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f | 1879 | #define EVT_JOY_ZMOVE(func) \ |
82a5f02c | 1880 | wxEventTableEntry( wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), |
c801d85f KB |
1881 | |
1882 | // All joystick events | |
1883 | #define EVT_JOYSTICK_EVENTS(func) \ | |
82a5f02c RR |
1884 | wxEventTableEntry( wxEVT_JOY_BUTTON_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\ |
1885 | wxEventTableEntry( wxEVT_JOY_BUTTON_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\ | |
1886 | wxEventTableEntry( wxEVT_JOY_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ),\ | |
1887 | wxEventTableEntry( wxEVT_JOY_ZMOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxJoystickEventFunction) & func, (wxObject *) NULL ), | |
c801d85f KB |
1888 | |
1889 | // Idle event | |
1890 | #define EVT_IDLE(func) \ | |
82a5f02c | 1891 | wxEventTableEntry( wxEVT_IDLE, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxIdleEventFunction) & func, (wxObject *) NULL ), |
c801d85f KB |
1892 | |
1893 | // Update UI event | |
1894 | #define EVT_UPDATE_UI(id, func) \ | |
82a5f02c | 1895 | wxEventTableEntry( wxEVT_UPDATE_UI, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxUpdateUIEventFunction) & func, (wxObject *) NULL ), |
3ca6a5f0 | 1896 | #define EVT_UPDATE_UI_RANGE(id1, id2, func) \ |
82a5f02c | 1897 | wxEventTableEntry( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction)(wxUpdateUIEventFunction)&func, (wxObject *) NULL ), |
c801d85f | 1898 | |
b96340e6 JS |
1899 | // Help events |
1900 | #define EVT_HELP(id, func) \ | |
82a5f02c | 1901 | wxEventTableEntry( wxEVT_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), |
b96340e6 JS |
1902 | |
1903 | #define EVT_HELP_RANGE(id1, id2, func) \ | |
82a5f02c | 1904 | wxEventTableEntry( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), |
b96340e6 | 1905 | |
fb6261e9 | 1906 | #define EVT_DETAILED_HELP(id, func) \ |
82a5f02c | 1907 | wxEventTableEntry( wxEVT_DETAILED_HELP, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), |
fb6261e9 JS |
1908 | |
1909 | #define EVT_DETAILED_HELP_RANGE(id1, id2, func) \ | |
82a5f02c | 1910 | wxEventTableEntry( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) (wxHelpEventFunction) & func, (wxObject *) NULL ), |
fb6261e9 | 1911 | |
8e193f38 VZ |
1912 | // ---------------------------------------------------------------------------- |
1913 | // Global data | |
1914 | // ---------------------------------------------------------------------------- | |
1915 | ||
1916 | // for pending event processing - notice that there is intentionally no | |
1917 | // WXDLLEXPORT here | |
1918 | extern wxList *wxPendingEvents; | |
1919 | #if wxUSE_THREADS | |
1920 | extern wxCriticalSection *wxPendingEventsLocker; | |
1921 | #endif | |
1922 | ||
e90c1d2a VZ |
1923 | // ---------------------------------------------------------------------------- |
1924 | // Helper functions | |
1925 | // ---------------------------------------------------------------------------- | |
1926 | ||
1927 | #if wxUSE_GUI | |
e702ff0f JS |
1928 | |
1929 | // Find a window with the focus, that is also a descendant of the given window. | |
1930 | // This is used to determine the window to initially send commands to. | |
1931 | wxWindow* wxFindFocusDescendant(wxWindow* ancestor); | |
1932 | ||
e90c1d2a VZ |
1933 | #endif // wxUSE_GUI |
1934 | ||
c801d85f | 1935 | #endif |
2b854a32 | 1936 | // _WX_EVENTH__ |