]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/event.h | |
3 | // Purpose: Event classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_EVENT_H__ | |
13 | #define _WX_EVENT_H__ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__) | |
16 | // Some older compilers (such as EMX) cannot handle | |
17 | // #pragma interface/implementation correctly, iff | |
18 | // #pragma implementation is used in _two_ translation | |
19 | // units (as created by e.g. event.cpp compiled for | |
20 | // libwx_base and event.cpp compiled for libwx_gui_core). | |
21 | // So we must not use those pragmas for those compilers in | |
22 | // such files. | |
23 | #pragma interface "event.h" | |
24 | #endif | |
25 | ||
26 | #include "wx/defs.h" | |
27 | #include "wx/object.h" | |
28 | #include "wx/clntdata.h" | |
29 | ||
30 | #if wxUSE_GUI | |
31 | #include "wx/gdicmn.h" | |
32 | #include "wx/cursor.h" | |
33 | #endif | |
34 | ||
35 | #include "wx/thread.h" | |
36 | ||
37 | #include "wx/dynarray.h" | |
38 | ||
39 | // ---------------------------------------------------------------------------- | |
40 | // forward declarations | |
41 | // ---------------------------------------------------------------------------- | |
42 | ||
43 | class WXDLLIMPEXP_BASE wxList; | |
44 | ||
45 | #if wxUSE_GUI | |
46 | class WXDLLIMPEXP_CORE wxDC; | |
47 | class WXDLLIMPEXP_CORE wxMenu; | |
48 | class WXDLLIMPEXP_CORE wxWindow; | |
49 | class WXDLLIMPEXP_CORE wxWindowBase; | |
50 | #endif // wxUSE_GUI | |
51 | ||
52 | // ---------------------------------------------------------------------------- | |
53 | // Event types | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
56 | typedef int wxEventType; | |
57 | ||
58 | // this is used to make the event table entry type safe, so that for an event | |
59 | // handler only a function with proper parameter list can be given. | |
60 | #ifdef HAVE_STATIC_CAST | |
61 | #define wxStaticCastEvent(type, val) static_cast<type>(val) | |
62 | #else | |
63 | #define wxStaticCastEvent(type, val) ((type)(val)) | |
64 | #endif | |
65 | ||
66 | // in previous versions of wxWindows the event types used to be constants | |
67 | // which created difficulties with custom/user event types definition | |
68 | // | |
69 | // starting from wxWindows 2.4 the event types are now dynamically assigned | |
70 | // using wxNewEventType() which solves this problem, however at price of | |
71 | // several incompatibilities: | |
72 | // | |
73 | // a) event table macros declaration changed, it now uses wxEventTableEntry | |
74 | // ctor instead of initialisation from an agregate - the macro | |
75 | // DECLARE_EVENT_TABLE_ENTRY may be used to write code which can compile | |
76 | // with all versions of wxWindows | |
77 | // | |
78 | // b) event types can't be used as switch() cases as they're not really | |
79 | // constant any more - there is no magic solution here, you just have to | |
80 | // change the switch()es to if()s | |
81 | // | |
82 | // if these are real problems for you, define WXWIN_COMPATIBILITY_EVENT_TYPES | |
83 | // to get 100% old behaviour, however you won't be able to use the libraries | |
84 | // using the new dynamic event type allocation in such case, so avoid it if | |
85 | // possible. | |
86 | ||
87 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
88 | ||
89 | #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \ | |
90 | { type, winid, idLast, fn, obj } | |
91 | ||
92 | #define BEGIN_DECLARE_EVENT_TYPES() enum { | |
93 | #define END_DECLARE_EVENT_TYPES() }; | |
94 | #define DECLARE_EVENT_TYPE(name, value) name = wxEVT_FIRST + value, | |
95 | #define DECLARE_LOCAL_EVENT_TYPE(name, value) name = wxEVT_USER_FIRST + value, | |
96 | #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \ | |
97 | DECLARE_LOCAL_EVENT_TYPE(name, value) | |
98 | #define DEFINE_EVENT_TYPE(name) | |
99 | #define DEFINE_LOCAL_EVENT_TYPE(name) | |
100 | ||
101 | ||
102 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
103 | ||
104 | #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \ | |
105 | wxEventTableEntry(type, winid, idLast, fn, obj) | |
106 | ||
107 | #define EMPTY_PARAMETER_VALUE /* Fake macro parameter value */ | |
108 | ||
109 | #define BEGIN_DECLARE_EVENT_TYPES() | |
110 | #define END_DECLARE_EVENT_TYPES() | |
111 | #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \ | |
112 | extern expdecl const wxEventType name; | |
113 | #define DECLARE_EVENT_TYPE(name, value) \ | |
114 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value) | |
115 | #define DECLARE_LOCAL_EVENT_TYPE(name, value) \ | |
116 | DECLARE_EXPORTED_EVENT_TYPE(EMPTY_PARAMETER_VALUE, name, value) | |
117 | #define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType(); | |
118 | #define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name) | |
119 | ||
120 | // generate a new unique event type | |
121 | extern WXDLLIMPEXP_BASE wxEventType wxNewEventType(); | |
122 | ||
123 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
124 | ||
125 | BEGIN_DECLARE_EVENT_TYPES() | |
126 | ||
127 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
128 | wxEVT_NULL = 0, | |
129 | wxEVT_FIRST = 10000, | |
130 | wxEVT_USER_FIRST = wxEVT_FIRST + 2000, | |
131 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
132 | // it is important to still have these as constants to avoid | |
133 | // initialization order related problems | |
134 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_NULL, 0) | |
135 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_FIRST, 10000) | |
136 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_USER_FIRST, wxEVT_FIRST + 2000) | |
137 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES/!WXWIN_COMPATIBILITY_EVENT_TYPES | |
138 | ||
139 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_BUTTON_CLICKED, 1) | |
140 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKBOX_CLICKED, 2) | |
141 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHOICE_SELECTED, 3) | |
142 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_SELECTED, 4) | |
143 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, 5) | |
144 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, 6) | |
145 | // now they are in wx/textctrl.h | |
146 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
147 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED, 7) | |
148 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER, 8) | |
149 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL, 13) | |
150 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN, 14) | |
151 | #endif // WXWIN_COMPATIBILITY_EVENT_TYPES | |
152 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_MENU_SELECTED, 9) | |
153 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SLIDER_UPDATED, 10) | |
154 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBOX_SELECTED, 11) | |
155 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RADIOBUTTON_SELECTED, 12) | |
156 | ||
157 | // wxEVT_COMMAND_SCROLLBAR_UPDATED is now obsolete since we use | |
158 | // wxEVT_SCROLL... events | |
159 | ||
160 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SCROLLBAR_UPDATED, 13) | |
161 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_VLBOX_SELECTED, 14) | |
162 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_COMBOBOX_SELECTED, 15) | |
163 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_RCLICKED, 16) | |
164 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_TOOL_ENTER, 17) | |
165 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPINCTRL_UPDATED, 18) | |
166 | ||
167 | // Sockets and timers send events, too | |
168 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_SOCKET, 50) | |
169 | DECLARE_EVENT_TYPE(wxEVT_TIMER , 80) | |
170 | ||
171 | // Mouse event types | |
172 | DECLARE_EVENT_TYPE(wxEVT_LEFT_DOWN, 100) | |
173 | DECLARE_EVENT_TYPE(wxEVT_LEFT_UP, 101) | |
174 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DOWN, 102) | |
175 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_UP, 103) | |
176 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_DOWN, 104) | |
177 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_UP, 105) | |
178 | DECLARE_EVENT_TYPE(wxEVT_MOTION, 106) | |
179 | DECLARE_EVENT_TYPE(wxEVT_ENTER_WINDOW, 107) | |
180 | DECLARE_EVENT_TYPE(wxEVT_LEAVE_WINDOW, 108) | |
181 | DECLARE_EVENT_TYPE(wxEVT_LEFT_DCLICK, 109) | |
182 | DECLARE_EVENT_TYPE(wxEVT_MIDDLE_DCLICK, 110) | |
183 | DECLARE_EVENT_TYPE(wxEVT_RIGHT_DCLICK, 111) | |
184 | DECLARE_EVENT_TYPE(wxEVT_SET_FOCUS, 112) | |
185 | DECLARE_EVENT_TYPE(wxEVT_KILL_FOCUS, 113) | |
186 | DECLARE_EVENT_TYPE(wxEVT_CHILD_FOCUS, 114) | |
187 | DECLARE_EVENT_TYPE(wxEVT_MOUSEWHEEL, 115) | |
188 | ||
189 | // Non-client mouse events | |
190 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DOWN, 200) | |
191 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_UP, 201) | |
192 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DOWN, 202) | |
193 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_UP, 203) | |
194 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DOWN, 204) | |
195 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_UP, 205) | |
196 | DECLARE_EVENT_TYPE(wxEVT_NC_MOTION, 206) | |
197 | DECLARE_EVENT_TYPE(wxEVT_NC_ENTER_WINDOW, 207) | |
198 | DECLARE_EVENT_TYPE(wxEVT_NC_LEAVE_WINDOW, 208) | |
199 | DECLARE_EVENT_TYPE(wxEVT_NC_LEFT_DCLICK, 209) | |
200 | DECLARE_EVENT_TYPE(wxEVT_NC_MIDDLE_DCLICK, 210) | |
201 | DECLARE_EVENT_TYPE(wxEVT_NC_RIGHT_DCLICK, 211) | |
202 | ||
203 | // Character input event type | |
204 | DECLARE_EVENT_TYPE(wxEVT_CHAR, 212) | |
205 | DECLARE_EVENT_TYPE(wxEVT_CHAR_HOOK, 213) | |
206 | DECLARE_EVENT_TYPE(wxEVT_NAVIGATION_KEY, 214) | |
207 | DECLARE_EVENT_TYPE(wxEVT_KEY_DOWN, 215) | |
208 | DECLARE_EVENT_TYPE(wxEVT_KEY_UP, 216) | |
209 | #if wxUSE_HOTKEY | |
210 | DECLARE_EVENT_TYPE(wxEVT_HOTKEY, 217) | |
211 | #endif | |
212 | // Set cursor event | |
213 | DECLARE_EVENT_TYPE(wxEVT_SET_CURSOR, 230) | |
214 | ||
215 | // wxScrollBar and wxSlider event identifiers | |
216 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_TOP, 300) | |
217 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_BOTTOM, 301) | |
218 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEUP, 302) | |
219 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_LINEDOWN, 303) | |
220 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEUP, 304) | |
221 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_PAGEDOWN, 305) | |
222 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBTRACK, 306) | |
223 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_THUMBRELEASE, 307) | |
224 | DECLARE_EVENT_TYPE(wxEVT_SCROLL_ENDSCROLL, 308) | |
225 | ||
226 | // Scroll events from wxWindow | |
227 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_TOP, 320) | |
228 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_BOTTOM, 321) | |
229 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEUP, 322) | |
230 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_LINEDOWN, 323) | |
231 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEUP, 324) | |
232 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_PAGEDOWN, 325) | |
233 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBTRACK, 326) | |
234 | DECLARE_EVENT_TYPE(wxEVT_SCROLLWIN_THUMBRELEASE, 327) | |
235 | ||
236 | // System events | |
237 | DECLARE_EVENT_TYPE(wxEVT_SIZE, 400) | |
238 | DECLARE_EVENT_TYPE(wxEVT_MOVE, 401) | |
239 | DECLARE_EVENT_TYPE(wxEVT_CLOSE_WINDOW, 402) | |
240 | DECLARE_EVENT_TYPE(wxEVT_END_SESSION, 403) | |
241 | DECLARE_EVENT_TYPE(wxEVT_QUERY_END_SESSION, 404) | |
242 | DECLARE_EVENT_TYPE(wxEVT_ACTIVATE_APP, 405) | |
243 | DECLARE_EVENT_TYPE(wxEVT_POWER, 406) | |
244 | DECLARE_EVENT_TYPE(wxEVT_ACTIVATE, 409) | |
245 | DECLARE_EVENT_TYPE(wxEVT_CREATE, 410) | |
246 | DECLARE_EVENT_TYPE(wxEVT_DESTROY, 411) | |
247 | DECLARE_EVENT_TYPE(wxEVT_SHOW, 412) | |
248 | DECLARE_EVENT_TYPE(wxEVT_ICONIZE, 413) | |
249 | DECLARE_EVENT_TYPE(wxEVT_MAXIMIZE, 414) | |
250 | DECLARE_EVENT_TYPE(wxEVT_MOUSE_CAPTURE_CHANGED, 415) | |
251 | DECLARE_EVENT_TYPE(wxEVT_PAINT, 416) | |
252 | DECLARE_EVENT_TYPE(wxEVT_ERASE_BACKGROUND, 417) | |
253 | DECLARE_EVENT_TYPE(wxEVT_NC_PAINT, 418) | |
254 | DECLARE_EVENT_TYPE(wxEVT_PAINT_ICON, 419) | |
255 | DECLARE_EVENT_TYPE(wxEVT_MENU_OPEN, 420) | |
256 | DECLARE_EVENT_TYPE(wxEVT_MENU_CLOSE, 421) | |
257 | DECLARE_EVENT_TYPE(wxEVT_MENU_HIGHLIGHT, 422) | |
258 | // DECLARE_EVENT_TYPE(wxEVT_POPUP_MENU_INIT, 423) -- free slot | |
259 | DECLARE_EVENT_TYPE(wxEVT_CONTEXT_MENU, 424) | |
260 | DECLARE_EVENT_TYPE(wxEVT_SYS_COLOUR_CHANGED, 425) | |
261 | DECLARE_EVENT_TYPE(wxEVT_DISPLAY_CHANGED, 426) | |
262 | DECLARE_EVENT_TYPE(wxEVT_SETTING_CHANGED, 427) | |
263 | DECLARE_EVENT_TYPE(wxEVT_QUERY_NEW_PALETTE, 428) | |
264 | DECLARE_EVENT_TYPE(wxEVT_PALETTE_CHANGED, 429) | |
265 | DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_DOWN, 430) | |
266 | DECLARE_EVENT_TYPE(wxEVT_JOY_BUTTON_UP, 431) | |
267 | DECLARE_EVENT_TYPE(wxEVT_JOY_MOVE, 432) | |
268 | DECLARE_EVENT_TYPE(wxEVT_JOY_ZMOVE, 433) | |
269 | DECLARE_EVENT_TYPE(wxEVT_DROP_FILES, 434) | |
270 | DECLARE_EVENT_TYPE(wxEVT_DRAW_ITEM, 435) | |
271 | DECLARE_EVENT_TYPE(wxEVT_MEASURE_ITEM, 436) | |
272 | DECLARE_EVENT_TYPE(wxEVT_COMPARE_ITEM, 437) | |
273 | DECLARE_EVENT_TYPE(wxEVT_INIT_DIALOG, 438) | |
274 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_BASE, wxEVT_IDLE, 439) | |
275 | DECLARE_EVENT_TYPE(wxEVT_UPDATE_UI, 440) | |
276 | DECLARE_EVENT_TYPE(wxEVT_SIZING, 441) | |
277 | DECLARE_EVENT_TYPE(wxEVT_MOVING, 4442) | |
278 | ||
279 | // Generic command events | |
280 | // Note: a click is a higher-level event than button down/up | |
281 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_CLICK, 500) | |
282 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_LEFT_DCLICK, 501) | |
283 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_CLICK, 502) | |
284 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_RIGHT_DCLICK, 503) | |
285 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_SET_FOCUS, 504) | |
286 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_KILL_FOCUS, 505) | |
287 | DECLARE_EVENT_TYPE(wxEVT_COMMAND_ENTER, 506) | |
288 | ||
289 | // Help events | |
290 | DECLARE_EVENT_TYPE(wxEVT_HELP, 1050) | |
291 | DECLARE_EVENT_TYPE(wxEVT_DETAILED_HELP, 1051) | |
292 | ||
293 | END_DECLARE_EVENT_TYPES() | |
294 | ||
295 | // these 2 events are the same | |
296 | #define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED | |
297 | ||
298 | // ---------------------------------------------------------------------------- | |
299 | // Compatibility | |
300 | // ---------------------------------------------------------------------------- | |
301 | ||
302 | // this event is also used by wxComboBox and wxSpinCtrl which don't include | |
303 | // wx/textctrl.h in all ports [yet], so declare it here as well | |
304 | // | |
305 | // still, any new code using it should include wx/textctrl.h explicitly | |
306 | #if !WXWIN_COMPATIBILITY_EVENT_TYPES | |
307 | extern const wxEventType WXDLLIMPEXP_CORE wxEVT_COMMAND_TEXT_UPDATED; | |
308 | #endif | |
309 | ||
310 | // the predefined constants for the number of times we propagate event | |
311 | // upwards window child-parent chain | |
312 | enum Propagation_state | |
313 | { | |
314 | // don't propagate it at all | |
315 | wxEVENT_PROPAGATE_NONE = 0, | |
316 | ||
317 | // propagate it until it is processed | |
318 | wxEVENT_PROPAGATE_MAX = INT_MAX | |
319 | }; | |
320 | ||
321 | /* | |
322 | * wxWindows events, covering all interesting things that might happen | |
323 | * (button clicking, resizing, setting text in widgets, etc.). | |
324 | * | |
325 | * For each completely new event type, derive a new event class. | |
326 | * An event CLASS represents a C++ class defining a range of similar event TYPES; | |
327 | * examples are canvas events, panel item command events. | |
328 | * An event TYPE is a unique identifier for a particular system event, | |
329 | * such as a button press or a listbox deselection. | |
330 | * | |
331 | */ | |
332 | ||
333 | class WXDLLIMPEXP_BASE wxEvent : public wxObject | |
334 | { | |
335 | private: | |
336 | wxEvent& operator=(const wxEvent&); | |
337 | ||
338 | protected: | |
339 | wxEvent(const wxEvent&); // for implementing Clone() | |
340 | ||
341 | public: | |
342 | wxEvent(int winid = 0, wxEventType commandType = wxEVT_NULL ); | |
343 | ||
344 | void SetEventType(wxEventType typ) { m_eventType = typ; } | |
345 | wxEventType GetEventType() const { return m_eventType; } | |
346 | wxObject *GetEventObject() const { return m_eventObject; } | |
347 | void SetEventObject(wxObject *obj) { m_eventObject = obj; } | |
348 | long GetTimestamp() const { return m_timeStamp; } | |
349 | void SetTimestamp(long ts = 0) { m_timeStamp = ts; } | |
350 | int GetId() const { return m_id; } | |
351 | void SetId(int Id) { m_id = Id; } | |
352 | ||
353 | // Can instruct event processor that we wish to ignore this event | |
354 | // (treat as if the event table entry had not been found): this must be done | |
355 | // to allow the event processing by the base classes (calling event.Skip() | |
356 | // is the analog of calling the base class verstion of a virtual function) | |
357 | void Skip(bool skip = TRUE) { m_skipped = skip; } | |
358 | bool GetSkipped() const { return m_skipped; }; | |
359 | ||
360 | // this function is used to create a copy of the event polymorphically and | |
361 | // all derived classes must implement it because otherwise wxPostEvent() | |
362 | // for them wouldn't work (it needs to do a copy of the event) | |
363 | virtual wxEvent *Clone() const = 0; | |
364 | ||
365 | // Implementation only: this test is explicitlty anti OO and this functions | |
366 | // exists only for optimization purposes. | |
367 | bool IsCommandEvent() const { return m_isCommandEvent; } | |
368 | ||
369 | // Determine if this event should be propagating to the parent window. | |
370 | bool ShouldPropagate() const | |
371 | { return m_propagationLevel != wxEVENT_PROPAGATE_NONE; } | |
372 | ||
373 | // Stop an event from propagating to its parent window, returns the old | |
374 | // propagation level value | |
375 | int StopPropagation() | |
376 | { | |
377 | int propagationLevel = m_propagationLevel; | |
378 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; | |
379 | return propagationLevel; | |
380 | } | |
381 | ||
382 | // Resume the event propagation by restoring the propagation level | |
383 | // (returned by StopPropagation()) | |
384 | void ResumePropagation(int propagationLevel) | |
385 | { | |
386 | m_propagationLevel = propagationLevel; | |
387 | } | |
388 | ||
389 | public: | |
390 | wxObject* m_eventObject; | |
391 | wxEventType m_eventType; | |
392 | long m_timeStamp; | |
393 | int m_id; | |
394 | wxObject* m_callbackUserData; | |
395 | ||
396 | protected: | |
397 | // the propagation level: while it is positive, we propagate the event to | |
398 | // the parent window (if any) | |
399 | // | |
400 | // this one doesn't have to be public, we don't have to worry about | |
401 | // backwards compatibility as it is new | |
402 | int m_propagationLevel; | |
403 | ||
404 | public: | |
405 | bool m_skipped; | |
406 | bool m_isCommandEvent; | |
407 | ||
408 | private: | |
409 | // it needs to access our m_propagationLevel | |
410 | friend class WXDLLIMPEXP_BASE wxPropagateOnce; | |
411 | ||
412 | DECLARE_ABSTRACT_CLASS(wxEvent) | |
413 | }; | |
414 | ||
415 | /* | |
416 | * Helper class to temporarily change an event not to propagate. | |
417 | */ | |
418 | class WXDLLIMPEXP_BASE wxPropagationDisabler | |
419 | { | |
420 | public: | |
421 | wxPropagationDisabler(wxEvent& event) : m_event(event) | |
422 | { | |
423 | m_propagationLevelOld = m_event.StopPropagation(); | |
424 | } | |
425 | ||
426 | ~wxPropagationDisabler() | |
427 | { | |
428 | m_event.ResumePropagation(m_propagationLevelOld); | |
429 | } | |
430 | ||
431 | private: | |
432 | wxEvent& m_event; | |
433 | int m_propagationLevelOld; | |
434 | ||
435 | DECLARE_NO_COPY_CLASS(wxPropagationDisabler) | |
436 | }; | |
437 | ||
438 | /* | |
439 | * Another one to temporarily lower propagation level. | |
440 | */ | |
441 | class WXDLLIMPEXP_BASE wxPropagateOnce | |
442 | { | |
443 | public: | |
444 | wxPropagateOnce(wxEvent& event) : m_event(event) | |
445 | { | |
446 | wxASSERT_MSG( m_event.m_propagationLevel > 0, | |
447 | _T("shouldn't be used unless ShouldPropagate()!") ); | |
448 | ||
449 | m_event.m_propagationLevel--; | |
450 | } | |
451 | ||
452 | ~wxPropagateOnce() | |
453 | { | |
454 | m_event.m_propagationLevel++; | |
455 | } | |
456 | ||
457 | private: | |
458 | wxEvent& m_event; | |
459 | ||
460 | DECLARE_NO_COPY_CLASS(wxPropagateOnce) | |
461 | }; | |
462 | ||
463 | #if wxUSE_GUI | |
464 | ||
465 | ||
466 | // Item or menu event class | |
467 | /* | |
468 | wxEVT_COMMAND_BUTTON_CLICKED | |
469 | wxEVT_COMMAND_CHECKBOX_CLICKED | |
470 | wxEVT_COMMAND_CHOICE_SELECTED | |
471 | wxEVT_COMMAND_LISTBOX_SELECTED | |
472 | wxEVT_COMMAND_LISTBOX_DOUBLECLICKED | |
473 | wxEVT_COMMAND_TEXT_UPDATED | |
474 | wxEVT_COMMAND_TEXT_ENTER | |
475 | wxEVT_COMMAND_MENU_SELECTED | |
476 | wxEVT_COMMAND_SLIDER_UPDATED | |
477 | wxEVT_COMMAND_RADIOBOX_SELECTED | |
478 | wxEVT_COMMAND_RADIOBUTTON_SELECTED | |
479 | wxEVT_COMMAND_SCROLLBAR_UPDATED | |
480 | wxEVT_COMMAND_VLBOX_SELECTED | |
481 | wxEVT_COMMAND_COMBOBOX_SELECTED | |
482 | wxEVT_COMMAND_TOGGLEBUTTON_CLICKED | |
483 | */ | |
484 | ||
485 | class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent | |
486 | { | |
487 | public: | |
488 | wxCommandEvent(wxEventType commandType = wxEVT_NULL, int winid = 0); | |
489 | ||
490 | wxCommandEvent(const wxCommandEvent& event) | |
491 | : wxEvent(event), | |
492 | m_commandString(event.m_commandString), | |
493 | m_commandInt(event.m_commandInt), | |
494 | m_extraLong(event.m_extraLong), | |
495 | m_clientData(event.m_clientData), | |
496 | m_clientObject(event.m_clientObject) | |
497 | { } | |
498 | ||
499 | // Set/Get client data from controls | |
500 | void SetClientData(void* clientData) { m_clientData = clientData; } | |
501 | void *GetClientData() const { return m_clientData; } | |
502 | ||
503 | // Set/Get client object from controls | |
504 | void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; } | |
505 | void *GetClientObject() const { return m_clientObject; } | |
506 | ||
507 | // Get listbox selection if single-choice | |
508 | int GetSelection() const { return m_commandInt; } | |
509 | ||
510 | // Set/Get listbox/choice selection string | |
511 | void SetString(const wxString& s) { m_commandString = s; } | |
512 | wxString GetString() const { return m_commandString; } | |
513 | ||
514 | // Get checkbox value | |
515 | bool IsChecked() const { return m_commandInt != 0; } | |
516 | ||
517 | // TRUE if the listbox event was a selection. | |
518 | bool IsSelection() const { return (m_extraLong != 0); } | |
519 | ||
520 | void SetExtraLong(long extraLong) { m_extraLong = extraLong; } | |
521 | long GetExtraLong() const { return m_extraLong; } | |
522 | ||
523 | void SetInt(int i) { m_commandInt = i; } | |
524 | long GetInt() const { return m_commandInt; } | |
525 | ||
526 | virtual wxEvent *Clone() const { return new wxCommandEvent(*this); } | |
527 | ||
528 | public: | |
529 | wxString m_commandString; // String event argument | |
530 | int m_commandInt; | |
531 | long m_extraLong; // Additional information (e.g. select/deselect) | |
532 | void* m_clientData; // Arbitrary client data | |
533 | wxClientData* m_clientObject; // Arbitrary client object | |
534 | ||
535 | private: | |
536 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent) | |
537 | }; | |
538 | ||
539 | // this class adds a possibility to react (from the user) code to a control | |
540 | // notification: allow or veto the operation being reported. | |
541 | class WXDLLIMPEXP_CORE wxNotifyEvent : public wxCommandEvent | |
542 | { | |
543 | public: | |
544 | wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) | |
545 | : wxCommandEvent(commandType, winid) | |
546 | { m_bAllow = TRUE; } | |
547 | ||
548 | wxNotifyEvent(const wxNotifyEvent& event) | |
549 | : wxCommandEvent(event) | |
550 | { m_bAllow = event.m_bAllow; } | |
551 | ||
552 | // veto the operation (usually it's allowed by default) | |
553 | void Veto() { m_bAllow = FALSE; } | |
554 | ||
555 | // allow the operation if it was disabled by default | |
556 | void Allow() { m_bAllow = TRUE; } | |
557 | ||
558 | // for implementation code only: is the operation allowed? | |
559 | bool IsAllowed() const { return m_bAllow; } | |
560 | ||
561 | virtual wxEvent *Clone() const { return new wxNotifyEvent(*this); } | |
562 | ||
563 | private: | |
564 | bool m_bAllow; | |
565 | ||
566 | private: | |
567 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotifyEvent) | |
568 | }; | |
569 | ||
570 | // Scroll event class, derived form wxCommandEvent. wxScrollEvents are | |
571 | // sent by wxSlider and wxScrollBar. | |
572 | /* | |
573 | wxEVT_SCROLL_TOP | |
574 | wxEVT_SCROLL_BOTTOM | |
575 | wxEVT_SCROLL_LINEUP | |
576 | wxEVT_SCROLL_LINEDOWN | |
577 | wxEVT_SCROLL_PAGEUP | |
578 | wxEVT_SCROLL_PAGEDOWN | |
579 | wxEVT_SCROLL_THUMBTRACK | |
580 | wxEVT_SCROLL_THUMBRELEASE | |
581 | wxEVT_SCROLL_ENDSCROLL | |
582 | */ | |
583 | ||
584 | class WXDLLIMPEXP_CORE wxScrollEvent : public wxCommandEvent | |
585 | { | |
586 | public: | |
587 | wxScrollEvent(wxEventType commandType = wxEVT_NULL, | |
588 | int winid = 0, int pos = 0, int orient = 0); | |
589 | ||
590 | int GetOrientation() const { return (int) m_extraLong; } | |
591 | int GetPosition() const { return m_commandInt; } | |
592 | void SetOrientation(int orient) { m_extraLong = (long) orient; } | |
593 | void SetPosition(int pos) { m_commandInt = pos; } | |
594 | ||
595 | virtual wxEvent *Clone() const { return new wxScrollEvent(*this); } | |
596 | ||
597 | private: | |
598 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollEvent) | |
599 | }; | |
600 | ||
601 | // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents | |
602 | // are sent by wxWindow. | |
603 | /* | |
604 | wxEVT_SCROLLWIN_TOP | |
605 | wxEVT_SCROLLWIN_BOTTOM | |
606 | wxEVT_SCROLLWIN_LINEUP | |
607 | wxEVT_SCROLLWIN_LINEDOWN | |
608 | wxEVT_SCROLLWIN_PAGEUP | |
609 | wxEVT_SCROLLWIN_PAGEDOWN | |
610 | wxEVT_SCROLLWIN_THUMBTRACK | |
611 | wxEVT_SCROLLWIN_THUMBRELEASE | |
612 | */ | |
613 | ||
614 | class WXDLLIMPEXP_CORE wxScrollWinEvent : public wxEvent | |
615 | { | |
616 | public: | |
617 | wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, | |
618 | int pos = 0, int orient = 0); | |
619 | wxScrollWinEvent(const wxScrollWinEvent & event) : wxEvent(event) | |
620 | { m_commandInt = event.m_commandInt; | |
621 | m_extraLong = event.m_extraLong; } | |
622 | ||
623 | int GetOrientation() const { return (int) m_extraLong; } | |
624 | int GetPosition() const { return m_commandInt; } | |
625 | void SetOrientation(int orient) { m_extraLong = (long) orient; } | |
626 | void SetPosition(int pos) { m_commandInt = pos; } | |
627 | ||
628 | virtual wxEvent *Clone() const { return new wxScrollWinEvent(*this); } | |
629 | ||
630 | public: | |
631 | int m_commandInt; | |
632 | long m_extraLong; | |
633 | ||
634 | private: | |
635 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollWinEvent) | |
636 | }; | |
637 | ||
638 | // Mouse event class | |
639 | ||
640 | /* | |
641 | wxEVT_LEFT_DOWN | |
642 | wxEVT_LEFT_UP | |
643 | wxEVT_MIDDLE_DOWN | |
644 | wxEVT_MIDDLE_UP | |
645 | wxEVT_RIGHT_DOWN | |
646 | wxEVT_RIGHT_UP | |
647 | wxEVT_MOTION | |
648 | wxEVT_ENTER_WINDOW | |
649 | wxEVT_LEAVE_WINDOW | |
650 | wxEVT_LEFT_DCLICK | |
651 | wxEVT_MIDDLE_DCLICK | |
652 | wxEVT_RIGHT_DCLICK | |
653 | wxEVT_NC_LEFT_DOWN | |
654 | wxEVT_NC_LEFT_UP, | |
655 | wxEVT_NC_MIDDLE_DOWN, | |
656 | wxEVT_NC_MIDDLE_UP, | |
657 | wxEVT_NC_RIGHT_DOWN, | |
658 | wxEVT_NC_RIGHT_UP, | |
659 | wxEVT_NC_MOTION, | |
660 | wxEVT_NC_ENTER_WINDOW, | |
661 | wxEVT_NC_LEAVE_WINDOW, | |
662 | wxEVT_NC_LEFT_DCLICK, | |
663 | wxEVT_NC_MIDDLE_DCLICK, | |
664 | wxEVT_NC_RIGHT_DCLICK, | |
665 | */ | |
666 | ||
667 | // the symbolic names for the mouse buttons | |
668 | enum | |
669 | { | |
670 | wxMOUSE_BTN_ANY = -1, | |
671 | wxMOUSE_BTN_NONE = 0, | |
672 | wxMOUSE_BTN_LEFT = 1, | |
673 | wxMOUSE_BTN_MIDDLE = 2, | |
674 | wxMOUSE_BTN_RIGHT = 3 | |
675 | }; | |
676 | ||
677 | class WXDLLIMPEXP_CORE wxMouseEvent : public wxEvent | |
678 | { | |
679 | public: | |
680 | wxMouseEvent(wxEventType mouseType = wxEVT_NULL); | |
681 | wxMouseEvent(const wxMouseEvent& event) : wxEvent(event) | |
682 | { Assign(event); } | |
683 | ||
684 | // Was it a button event? (*doesn't* mean: is any button *down*?) | |
685 | bool IsButton() const { return Button(wxMOUSE_BTN_ANY); } | |
686 | ||
687 | // Was it a down event from this (or any) button? | |
688 | bool ButtonDown(int but = wxMOUSE_BTN_ANY) const; | |
689 | ||
690 | // Was it a dclick event from this (or any) button? | |
691 | bool ButtonDClick(int but = wxMOUSE_BTN_ANY) const; | |
692 | ||
693 | // Was it a up event from this (or any) button? | |
694 | bool ButtonUp(int but = wxMOUSE_BTN_ANY) const; | |
695 | ||
696 | // Was the given button? | |
697 | bool Button(int but) const; | |
698 | ||
699 | // Was the given button in Down state? | |
700 | bool ButtonIsDown(int but) const; | |
701 | ||
702 | // Get the button which is changing state (wxMOUSE_BTN_NONE if none) | |
703 | int GetButton() const; | |
704 | ||
705 | // Find state of shift/control keys | |
706 | bool ControlDown() const { return m_controlDown; } | |
707 | bool MetaDown() const { return m_metaDown; } | |
708 | bool AltDown() const { return m_altDown; } | |
709 | bool ShiftDown() const { return m_shiftDown; } | |
710 | ||
711 | // Find which event was just generated | |
712 | bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); } | |
713 | bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); } | |
714 | bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); } | |
715 | ||
716 | bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); } | |
717 | bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); } | |
718 | bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); } | |
719 | ||
720 | bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); } | |
721 | bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); } | |
722 | bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); } | |
723 | ||
724 | // Find the current state of the mouse buttons (regardless | |
725 | // of current event type) | |
726 | bool LeftIsDown() const { return m_leftDown; } | |
727 | bool MiddleIsDown() const { return m_middleDown; } | |
728 | bool RightIsDown() const { return m_rightDown; } | |
729 | ||
730 | // True if a button is down and the mouse is moving | |
731 | bool Dragging() const | |
732 | { | |
733 | return (m_eventType == wxEVT_MOTION) && ButtonIsDown(wxMOUSE_BTN_ANY); | |
734 | } | |
735 | ||
736 | // True if the mouse is moving, and no button is down | |
737 | bool Moving() const | |
738 | { | |
739 | return (m_eventType == wxEVT_MOTION) && !ButtonIsDown(wxMOUSE_BTN_ANY); | |
740 | } | |
741 | ||
742 | // True if the mouse is just entering the window | |
743 | bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); } | |
744 | ||
745 | // True if the mouse is just leaving the window | |
746 | bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); } | |
747 | ||
748 | // Find the position of the event | |
749 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const | |
750 | { | |
751 | if (xpos) | |
752 | *xpos = m_x; | |
753 | if (ypos) | |
754 | *ypos = m_y; | |
755 | } | |
756 | ||
757 | void GetPosition(long *xpos, long *ypos) const | |
758 | { | |
759 | if (xpos) | |
760 | *xpos = (long)m_x; | |
761 | if (ypos) | |
762 | *ypos = (long)m_y; | |
763 | } | |
764 | ||
765 | // Find the position of the event | |
766 | wxPoint GetPosition() const { return wxPoint(m_x, m_y); } | |
767 | ||
768 | // Find the logical position of the event given the DC | |
769 | wxPoint GetLogicalPosition(const wxDC& dc) const; | |
770 | ||
771 | // Get X position | |
772 | wxCoord GetX() const { return m_x; } | |
773 | ||
774 | // Get Y position | |
775 | wxCoord GetY() const { return m_y; } | |
776 | ||
777 | // Get wheel rotation, positive or negative indicates direction of | |
778 | // rotation. Current devices all send an event when rotation is equal to | |
779 | // +/-WheelDelta, but this allows for finer resolution devices to be | |
780 | // created in the future. Because of this you shouldn't assume that one | |
781 | // event is equal to 1 line or whatever, but you should be able to either | |
782 | // do partial line scrolling or wait until +/-WheelDelta rotation values | |
783 | // have been accumulated before scrolling. | |
784 | int GetWheelRotation() const { return m_wheelRotation; } | |
785 | ||
786 | // Get wheel delta, normally 120. This is the threshold for action to be | |
787 | // taken, and one such action (for example, scrolling one increment) | |
788 | // should occur for each delta. | |
789 | int GetWheelDelta() const { return m_wheelDelta; } | |
790 | ||
791 | // Returns the configured number of lines (or whatever) to be scrolled per | |
792 | // wheel action. Defaults to one. | |
793 | int GetLinesPerAction() const { return m_linesPerAction; } | |
794 | ||
795 | // Is the system set to do page scrolling? | |
796 | bool IsPageScroll() const { return ((unsigned int)m_linesPerAction == UINT_MAX); } | |
797 | ||
798 | virtual wxEvent *Clone() const { return new wxMouseEvent(*this); } | |
799 | ||
800 | wxMouseEvent& operator=(const wxMouseEvent& event) { Assign(event); return *this; } | |
801 | ||
802 | public: | |
803 | wxCoord m_x, m_y; | |
804 | ||
805 | bool m_leftDown; | |
806 | bool m_middleDown; | |
807 | bool m_rightDown; | |
808 | ||
809 | bool m_controlDown; | |
810 | bool m_shiftDown; | |
811 | bool m_altDown; | |
812 | bool m_metaDown; | |
813 | ||
814 | int m_wheelRotation; | |
815 | int m_wheelDelta; | |
816 | int m_linesPerAction; | |
817 | ||
818 | protected: | |
819 | void Assign(const wxMouseEvent& evt); | |
820 | ||
821 | private: | |
822 | DECLARE_DYNAMIC_CLASS(wxMouseEvent) | |
823 | }; | |
824 | ||
825 | // Cursor set event | |
826 | ||
827 | /* | |
828 | wxEVT_SET_CURSOR | |
829 | */ | |
830 | ||
831 | class WXDLLIMPEXP_CORE wxSetCursorEvent : public wxEvent | |
832 | { | |
833 | public: | |
834 | wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0) | |
835 | : wxEvent(0, wxEVT_SET_CURSOR), | |
836 | m_x(x), m_y(y), m_cursor() | |
837 | { } | |
838 | ||
839 | wxSetCursorEvent(const wxSetCursorEvent & event) | |
840 | : wxEvent(event), | |
841 | m_x(event.m_x), | |
842 | m_y(event.m_y), | |
843 | m_cursor(event.m_cursor) | |
844 | { } | |
845 | ||
846 | wxCoord GetX() const { return m_x; } | |
847 | wxCoord GetY() const { return m_y; } | |
848 | ||
849 | void SetCursor(const wxCursor& cursor) { m_cursor = cursor; } | |
850 | const wxCursor& GetCursor() const { return m_cursor; } | |
851 | bool HasCursor() const { return m_cursor.Ok(); } | |
852 | ||
853 | virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); } | |
854 | ||
855 | private: | |
856 | wxCoord m_x, m_y; | |
857 | wxCursor m_cursor; | |
858 | ||
859 | private: | |
860 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSetCursorEvent) | |
861 | }; | |
862 | ||
863 | // Keyboard input event class | |
864 | ||
865 | /* | |
866 | wxEVT_CHAR | |
867 | wxEVT_CHAR_HOOK | |
868 | wxEVT_KEY_DOWN | |
869 | wxEVT_KEY_UP | |
870 | wxEVT_HOTKEY | |
871 | */ | |
872 | ||
873 | class WXDLLIMPEXP_CORE wxKeyEvent : public wxEvent | |
874 | { | |
875 | public: | |
876 | wxKeyEvent(wxEventType keyType = wxEVT_NULL); | |
877 | wxKeyEvent(const wxKeyEvent& evt); | |
878 | ||
879 | // Find state of shift/control keys | |
880 | bool ControlDown() const { return m_controlDown; } | |
881 | bool MetaDown() const { return m_metaDown; } | |
882 | bool AltDown() const { return m_altDown; } | |
883 | bool ShiftDown() const { return m_shiftDown; } | |
884 | ||
885 | // exclude MetaDown() from HasModifiers() because NumLock under X is often | |
886 | // configured as mod2 modifier, yet the key events even when it is pressed | |
887 | // should be processed normally, not like Ctrl- or Alt-key | |
888 | bool HasModifiers() const { return ControlDown() || AltDown(); } | |
889 | ||
890 | // get the key code: an ASCII7 char or an element of wxKeyCode enum | |
891 | int GetKeyCode() const { return (int)m_keyCode; } | |
892 | ||
893 | // get the raw key code (platform-dependent) | |
894 | wxUint32 GetRawKeyCode() const { return m_rawCode; } | |
895 | ||
896 | // get the raw key flags (platform-dependent) | |
897 | wxUint32 GetRawKeyFlags() const { return m_rawFlags; } | |
898 | ||
899 | // Find the position of the event | |
900 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const | |
901 | { | |
902 | if (xpos) *xpos = m_x; | |
903 | if (ypos) *ypos = m_y; | |
904 | } | |
905 | ||
906 | void GetPosition(long *xpos, long *ypos) const | |
907 | { | |
908 | if (xpos) *xpos = (long)m_x; | |
909 | if (ypos) *ypos = (long)m_y; | |
910 | } | |
911 | ||
912 | wxPoint GetPosition() const | |
913 | { return wxPoint(m_x, m_y); } | |
914 | ||
915 | // Get X position | |
916 | wxCoord GetX() const { return m_x; } | |
917 | ||
918 | // Get Y position | |
919 | wxCoord GetY() const { return m_y; } | |
920 | ||
921 | // deprecated, Use GetKeyCode instead. | |
922 | wxDEPRECATED( long KeyCode() const ); | |
923 | ||
924 | virtual wxEvent *Clone() const { return new wxKeyEvent(*this); } | |
925 | ||
926 | // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for | |
927 | // example) | |
928 | wxKeyEvent& operator=(const wxKeyEvent& evt) | |
929 | { | |
930 | m_x = evt.m_x; | |
931 | m_y = evt.m_y; | |
932 | ||
933 | m_keyCode = evt.m_keyCode; | |
934 | ||
935 | m_controlDown = evt.m_controlDown; | |
936 | m_shiftDown = evt.m_shiftDown; | |
937 | m_altDown = evt.m_altDown; | |
938 | m_metaDown = evt.m_metaDown; | |
939 | m_scanCode = evt.m_scanCode; | |
940 | m_rawCode = evt.m_rawCode; | |
941 | m_rawFlags = evt.m_rawFlags; | |
942 | ||
943 | return *this; | |
944 | } | |
945 | ||
946 | public: | |
947 | wxCoord m_x, m_y; | |
948 | ||
949 | long m_keyCode; | |
950 | ||
951 | bool m_controlDown; | |
952 | bool m_shiftDown; | |
953 | bool m_altDown; | |
954 | bool m_metaDown; | |
955 | bool m_scanCode; | |
956 | ||
957 | #if wxUSE_UNICODE | |
958 | // This contains the full Unicode character | |
959 | // in a character events in Unicode mode | |
960 | wxChar m_uniChar; | |
961 | #endif | |
962 | ||
963 | // these fields contain the platform-specific information about | |
964 | // key that was pressed | |
965 | wxUint32 m_rawCode; | |
966 | wxUint32 m_rawFlags; | |
967 | ||
968 | private: | |
969 | DECLARE_DYNAMIC_CLASS(wxKeyEvent) | |
970 | }; | |
971 | ||
972 | // Size event class | |
973 | /* | |
974 | wxEVT_SIZE | |
975 | */ | |
976 | ||
977 | class WXDLLIMPEXP_CORE wxSizeEvent : public wxEvent | |
978 | { | |
979 | public: | |
980 | wxSizeEvent() : wxEvent(0, wxEVT_SIZE) | |
981 | { } | |
982 | wxSizeEvent(const wxSize& sz, int winid = 0) | |
983 | : wxEvent(winid, wxEVT_SIZE), | |
984 | m_size(sz) | |
985 | { } | |
986 | wxSizeEvent(const wxSizeEvent & event) | |
987 | : wxEvent(event), | |
988 | m_size(event.m_size), m_rect(event.m_rect) | |
989 | { } | |
990 | wxSizeEvent(const wxRect& rect, int id = 0) | |
991 | : m_size(rect.GetSize()), m_rect(rect) | |
992 | { m_eventType = wxEVT_SIZING; m_id = id; } | |
993 | ||
994 | wxSize GetSize() const { return m_size; } | |
995 | wxRect GetRect() const { return m_rect; } | |
996 | void SetRect(wxRect rect) { m_rect = rect; } | |
997 | ||
998 | virtual wxEvent *Clone() const { return new wxSizeEvent(*this); } | |
999 | ||
1000 | public: | |
1001 | wxSize m_size; | |
1002 | wxRect m_rect; // Used for wxEVT_SIZING | |
1003 | ||
1004 | private: | |
1005 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSizeEvent) | |
1006 | }; | |
1007 | ||
1008 | // Move event class | |
1009 | ||
1010 | /* | |
1011 | wxEVT_MOVE | |
1012 | */ | |
1013 | ||
1014 | class WXDLLIMPEXP_CORE wxMoveEvent : public wxEvent | |
1015 | { | |
1016 | public: | |
1017 | wxMoveEvent() | |
1018 | : wxEvent(0, wxEVT_MOVE) | |
1019 | { } | |
1020 | wxMoveEvent(const wxPoint& pos, int winid = 0) | |
1021 | : wxEvent(winid, wxEVT_MOVE), | |
1022 | m_pos(pos) | |
1023 | { } | |
1024 | wxMoveEvent(const wxMoveEvent& event) | |
1025 | : wxEvent(event), | |
1026 | m_pos(event.m_pos) | |
1027 | { } | |
1028 | wxMoveEvent(const wxRect& rect, int id = 0) | |
1029 | : m_pos(rect.GetPosition()), m_rect(rect) | |
1030 | { m_eventType = wxEVT_MOVING; m_id = id; } | |
1031 | ||
1032 | wxPoint GetPosition() const { return m_pos; } | |
1033 | wxRect GetRect() const { return m_rect; } | |
1034 | void SetRect(wxRect rect) { m_rect = rect; } | |
1035 | ||
1036 | virtual wxEvent *Clone() const { return new wxMoveEvent(*this); } | |
1037 | ||
1038 | wxPoint m_pos; | |
1039 | wxRect m_rect; | |
1040 | ||
1041 | private: | |
1042 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMoveEvent) | |
1043 | }; | |
1044 | ||
1045 | // Paint event class | |
1046 | /* | |
1047 | wxEVT_PAINT | |
1048 | wxEVT_NC_PAINT | |
1049 | wxEVT_PAINT_ICON | |
1050 | */ | |
1051 | ||
1052 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) | |
1053 | // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined | |
1054 | extern WXDLLIMPEXP_CORE int g_isPainting; | |
1055 | #endif // debug | |
1056 | ||
1057 | class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent | |
1058 | { | |
1059 | public: | |
1060 | wxPaintEvent(int Id = 0) | |
1061 | : wxEvent(Id, wxEVT_PAINT) | |
1062 | { | |
1063 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) | |
1064 | // set the internal flag for the duration of processing of WM_PAINT | |
1065 | g_isPainting++; | |
1066 | #endif // debug | |
1067 | } | |
1068 | ||
1069 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) | |
1070 | ~wxPaintEvent() | |
1071 | { | |
1072 | g_isPainting--; | |
1073 | } | |
1074 | #endif // debug | |
1075 | ||
1076 | virtual wxEvent *Clone() const { return new wxPaintEvent(*this); } | |
1077 | ||
1078 | private: | |
1079 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaintEvent) | |
1080 | }; | |
1081 | ||
1082 | class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent | |
1083 | { | |
1084 | public: | |
1085 | wxNcPaintEvent(int winid = 0) | |
1086 | : wxEvent(winid, wxEVT_NC_PAINT) | |
1087 | { } | |
1088 | ||
1089 | virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); } | |
1090 | ||
1091 | private: | |
1092 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNcPaintEvent) | |
1093 | }; | |
1094 | ||
1095 | // Erase background event class | |
1096 | /* | |
1097 | wxEVT_ERASE_BACKGROUND | |
1098 | */ | |
1099 | ||
1100 | class WXDLLIMPEXP_CORE wxEraseEvent : public wxEvent | |
1101 | { | |
1102 | public: | |
1103 | wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL) | |
1104 | : wxEvent(Id, wxEVT_ERASE_BACKGROUND), | |
1105 | m_dc(dc) | |
1106 | { } | |
1107 | ||
1108 | wxEraseEvent(const wxEraseEvent& event) | |
1109 | : wxEvent(event), | |
1110 | m_dc(event.m_dc) | |
1111 | { } | |
1112 | ||
1113 | wxDC *GetDC() const { return m_dc; } | |
1114 | ||
1115 | virtual wxEvent *Clone() const { return new wxEraseEvent(*this); } | |
1116 | ||
1117 | wxDC *m_dc; | |
1118 | ||
1119 | private: | |
1120 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxEraseEvent) | |
1121 | }; | |
1122 | ||
1123 | // Focus event class | |
1124 | /* | |
1125 | wxEVT_SET_FOCUS | |
1126 | wxEVT_KILL_FOCUS | |
1127 | */ | |
1128 | ||
1129 | class WXDLLIMPEXP_CORE wxFocusEvent : public wxEvent | |
1130 | { | |
1131 | public: | |
1132 | wxFocusEvent(wxEventType type = wxEVT_NULL, int winid = 0) | |
1133 | : wxEvent(winid, type) | |
1134 | { m_win = NULL; } | |
1135 | ||
1136 | wxFocusEvent(const wxFocusEvent& event) | |
1137 | : wxEvent(event) | |
1138 | { m_win = event.m_win; } | |
1139 | ||
1140 | // The window associated with this event is the window which had focus | |
1141 | // before for SET event and the window which will have focus for the KILL | |
1142 | // one. NB: it may be NULL in both cases! | |
1143 | wxWindow *GetWindow() const { return m_win; } | |
1144 | void SetWindow(wxWindow *win) { m_win = win; } | |
1145 | ||
1146 | virtual wxEvent *Clone() const { return new wxFocusEvent(*this); } | |
1147 | ||
1148 | private: | |
1149 | wxWindow *m_win; | |
1150 | ||
1151 | private: | |
1152 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFocusEvent) | |
1153 | }; | |
1154 | ||
1155 | // wxChildFocusEvent notifies the parent that a child has got the focus: unlike | |
1156 | // wxFocusEvent it is propagated upwards the window chain | |
1157 | class WXDLLIMPEXP_CORE wxChildFocusEvent : public wxCommandEvent | |
1158 | { | |
1159 | public: | |
1160 | wxChildFocusEvent(wxWindow *win = NULL); | |
1161 | ||
1162 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1163 | ||
1164 | virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); } | |
1165 | ||
1166 | private: | |
1167 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxChildFocusEvent) | |
1168 | }; | |
1169 | ||
1170 | // Activate event class | |
1171 | /* | |
1172 | wxEVT_ACTIVATE | |
1173 | wxEVT_ACTIVATE_APP | |
1174 | */ | |
1175 | ||
1176 | class WXDLLIMPEXP_CORE wxActivateEvent : public wxEvent | |
1177 | { | |
1178 | public: | |
1179 | wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = TRUE, int Id = 0) | |
1180 | : wxEvent(Id, type) | |
1181 | { m_active = active; } | |
1182 | wxActivateEvent(const wxActivateEvent& event) | |
1183 | : wxEvent(event) | |
1184 | { m_active = event.m_active; } | |
1185 | ||
1186 | bool GetActive() const { return m_active; } | |
1187 | ||
1188 | virtual wxEvent *Clone() const { return new wxActivateEvent(*this); } | |
1189 | ||
1190 | private: | |
1191 | bool m_active; | |
1192 | ||
1193 | private: | |
1194 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxActivateEvent) | |
1195 | }; | |
1196 | ||
1197 | // InitDialog event class | |
1198 | /* | |
1199 | wxEVT_INIT_DIALOG | |
1200 | */ | |
1201 | ||
1202 | class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent | |
1203 | { | |
1204 | public: | |
1205 | wxInitDialogEvent(int Id = 0) | |
1206 | : wxEvent(Id, wxEVT_INIT_DIALOG) | |
1207 | { } | |
1208 | ||
1209 | virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); } | |
1210 | ||
1211 | private: | |
1212 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxInitDialogEvent) | |
1213 | }; | |
1214 | ||
1215 | // Miscellaneous menu event class | |
1216 | /* | |
1217 | wxEVT_MENU_OPEN, | |
1218 | wxEVT_MENU_CLOSE, | |
1219 | wxEVT_MENU_HIGHLIGHT, | |
1220 | */ | |
1221 | ||
1222 | class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent | |
1223 | { | |
1224 | public: | |
1225 | wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = NULL) | |
1226 | : wxEvent(winid, type) | |
1227 | { m_menuId = winid; m_menu = menu; } | |
1228 | wxMenuEvent(const wxMenuEvent & event) | |
1229 | : wxEvent(event) | |
1230 | { m_menuId = event.m_menuId; m_menu = event.m_menu; } | |
1231 | ||
1232 | // only for wxEVT_MENU_HIGHLIGHT | |
1233 | int GetMenuId() const { return m_menuId; } | |
1234 | ||
1235 | // only for wxEVT_MENU_OPEN/CLOSE | |
1236 | bool IsPopup() const { return m_menuId == -1; } | |
1237 | ||
1238 | // only for wxEVT_MENU_OPEN/CLOSE | |
1239 | wxMenu* GetMenu() const { return m_menu; } | |
1240 | ||
1241 | virtual wxEvent *Clone() const { return new wxMenuEvent(*this); } | |
1242 | ||
1243 | private: | |
1244 | int m_menuId; | |
1245 | wxMenu* m_menu; | |
1246 | ||
1247 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent) | |
1248 | }; | |
1249 | ||
1250 | // Window close or session close event class | |
1251 | /* | |
1252 | wxEVT_CLOSE_WINDOW, | |
1253 | wxEVT_END_SESSION, | |
1254 | wxEVT_QUERY_END_SESSION | |
1255 | */ | |
1256 | ||
1257 | class WXDLLIMPEXP_CORE wxCloseEvent : public wxEvent | |
1258 | { | |
1259 | public: | |
1260 | wxCloseEvent(wxEventType type = wxEVT_NULL, int winid = 0) | |
1261 | : wxEvent(winid, type), | |
1262 | m_loggingOff(TRUE), | |
1263 | m_veto(FALSE), // should be FALSE by default | |
1264 | m_canVeto(TRUE) {} | |
1265 | ||
1266 | wxCloseEvent(const wxCloseEvent & event) | |
1267 | : wxEvent(event), | |
1268 | m_loggingOff(event.m_loggingOff), | |
1269 | m_veto(event.m_veto), | |
1270 | m_canVeto(event.m_canVeto) {} | |
1271 | ||
1272 | void SetLoggingOff(bool logOff) { m_loggingOff = logOff; } | |
1273 | bool GetLoggingOff() const { return m_loggingOff; } | |
1274 | ||
1275 | void Veto(bool veto = TRUE) | |
1276 | { | |
1277 | // GetVeto() will return FALSE anyhow... | |
1278 | wxCHECK_RET( m_canVeto, | |
1279 | wxT("call to Veto() ignored (can't veto this event)") ); | |
1280 | ||
1281 | m_veto = veto; | |
1282 | } | |
1283 | void SetCanVeto(bool canVeto) { m_canVeto = canVeto; } | |
1284 | // No more asserts here please, the one you put here was wrong. | |
1285 | bool CanVeto() const { return m_canVeto; } | |
1286 | bool GetVeto() const { return m_canVeto && m_veto; } | |
1287 | ||
1288 | virtual wxEvent *Clone() const { return new wxCloseEvent(*this); } | |
1289 | ||
1290 | protected: | |
1291 | bool m_loggingOff; | |
1292 | bool m_veto, m_canVeto; | |
1293 | ||
1294 | private: | |
1295 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCloseEvent) | |
1296 | ||
1297 | }; | |
1298 | ||
1299 | /* | |
1300 | wxEVT_SHOW | |
1301 | */ | |
1302 | ||
1303 | class WXDLLIMPEXP_CORE wxShowEvent : public wxEvent | |
1304 | { | |
1305 | public: | |
1306 | wxShowEvent(int winid = 0, bool show = FALSE) | |
1307 | : wxEvent(winid, wxEVT_SHOW) | |
1308 | { m_show = show; } | |
1309 | wxShowEvent(const wxShowEvent & event) | |
1310 | : wxEvent(event) | |
1311 | { m_show = event.m_show; } | |
1312 | ||
1313 | void SetShow(bool show) { m_show = show; } | |
1314 | bool GetShow() const { return m_show; } | |
1315 | ||
1316 | virtual wxEvent *Clone() const { return new wxShowEvent(*this); } | |
1317 | ||
1318 | protected: | |
1319 | bool m_show; | |
1320 | ||
1321 | private: | |
1322 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxShowEvent) | |
1323 | }; | |
1324 | ||
1325 | /* | |
1326 | wxEVT_ICONIZE | |
1327 | */ | |
1328 | ||
1329 | class WXDLLIMPEXP_CORE wxIconizeEvent : public wxEvent | |
1330 | { | |
1331 | public: | |
1332 | wxIconizeEvent(int winid = 0, bool iconized = TRUE) | |
1333 | : wxEvent(winid, wxEVT_ICONIZE) | |
1334 | { m_iconized = iconized; } | |
1335 | wxIconizeEvent(const wxIconizeEvent & event) | |
1336 | : wxEvent(event) | |
1337 | { m_iconized = event.m_iconized; } | |
1338 | ||
1339 | // return true if the frame was iconized, false if restored | |
1340 | bool Iconized() const { return m_iconized; } | |
1341 | ||
1342 | virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); } | |
1343 | ||
1344 | protected: | |
1345 | bool m_iconized; | |
1346 | ||
1347 | private: | |
1348 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIconizeEvent) | |
1349 | }; | |
1350 | /* | |
1351 | wxEVT_MAXIMIZE | |
1352 | */ | |
1353 | ||
1354 | class WXDLLIMPEXP_CORE wxMaximizeEvent : public wxEvent | |
1355 | { | |
1356 | public: | |
1357 | wxMaximizeEvent(int winid = 0) | |
1358 | : wxEvent(winid, wxEVT_MAXIMIZE) | |
1359 | { } | |
1360 | ||
1361 | virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); } | |
1362 | ||
1363 | private: | |
1364 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMaximizeEvent) | |
1365 | }; | |
1366 | ||
1367 | // Joystick event class | |
1368 | /* | |
1369 | wxEVT_JOY_BUTTON_DOWN, | |
1370 | wxEVT_JOY_BUTTON_UP, | |
1371 | wxEVT_JOY_MOVE, | |
1372 | wxEVT_JOY_ZMOVE | |
1373 | */ | |
1374 | ||
1375 | // Which joystick? Same as Windows ids so no conversion necessary. | |
1376 | enum | |
1377 | { | |
1378 | wxJOYSTICK1, | |
1379 | wxJOYSTICK2 | |
1380 | }; | |
1381 | ||
1382 | // Which button is down? | |
1383 | enum | |
1384 | { | |
1385 | wxJOY_BUTTON_ANY = -1, | |
1386 | wxJOY_BUTTON1 = 1, | |
1387 | wxJOY_BUTTON2 = 2, | |
1388 | wxJOY_BUTTON3 = 4, | |
1389 | wxJOY_BUTTON4 = 8 | |
1390 | }; | |
1391 | ||
1392 | class WXDLLIMPEXP_CORE wxJoystickEvent : public wxEvent | |
1393 | { | |
1394 | public: | |
1395 | wxPoint m_pos; | |
1396 | int m_zPosition; | |
1397 | int m_buttonChange; // Which button changed? | |
1398 | int m_buttonState; // Which buttons are down? | |
1399 | int m_joyStick; // Which joystick? | |
1400 | ||
1401 | wxJoystickEvent(wxEventType type = wxEVT_NULL, | |
1402 | int state = 0, | |
1403 | int joystick = wxJOYSTICK1, | |
1404 | int change = 0) | |
1405 | : wxEvent(0, type), | |
1406 | m_pos(0, 0), | |
1407 | m_zPosition(0), | |
1408 | m_buttonChange(change), | |
1409 | m_buttonState(state), | |
1410 | m_joyStick(joystick) | |
1411 | { | |
1412 | } | |
1413 | wxJoystickEvent(const wxJoystickEvent & event) | |
1414 | : wxEvent(event), | |
1415 | m_pos(event.m_pos), | |
1416 | m_zPosition(event.m_zPosition), | |
1417 | m_buttonChange(event.m_buttonChange), | |
1418 | m_buttonState(event.m_buttonState), | |
1419 | m_joyStick(event.m_joyStick) | |
1420 | { } | |
1421 | ||
1422 | wxPoint GetPosition() const { return m_pos; } | |
1423 | int GetZPosition() const { return m_zPosition; } | |
1424 | int GetButtonState() const { return m_buttonState; } | |
1425 | int GetButtonChange() const { return m_buttonChange; } | |
1426 | int GetJoystick() const { return m_joyStick; } | |
1427 | ||
1428 | void SetJoystick(int stick) { m_joyStick = stick; } | |
1429 | void SetButtonState(int state) { m_buttonState = state; } | |
1430 | void SetButtonChange(int change) { m_buttonChange = change; } | |
1431 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1432 | void SetZPosition(int zPos) { m_zPosition = zPos; } | |
1433 | ||
1434 | // Was it a button event? (*doesn't* mean: is any button *down*?) | |
1435 | bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) || | |
1436 | (GetEventType() == wxEVT_JOY_BUTTON_UP)); } | |
1437 | ||
1438 | // Was it a move event? | |
1439 | bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE); } | |
1440 | ||
1441 | // Was it a zmove event? | |
1442 | bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE); } | |
1443 | ||
1444 | // Was it a down event from button 1, 2, 3, 4 or any? | |
1445 | bool ButtonDown(int but = wxJOY_BUTTON_ANY) const | |
1446 | { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) && | |
1447 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } | |
1448 | ||
1449 | // Was it a up event from button 1, 2, 3 or any? | |
1450 | bool ButtonUp(int but = wxJOY_BUTTON_ANY) const | |
1451 | { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) && | |
1452 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } | |
1453 | ||
1454 | // Was the given button 1,2,3,4 or any in Down state? | |
1455 | bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const | |
1456 | { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) || | |
1457 | ((m_buttonState & but) == but)); } | |
1458 | ||
1459 | virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); } | |
1460 | ||
1461 | private: | |
1462 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxJoystickEvent) | |
1463 | }; | |
1464 | ||
1465 | // Drop files event class | |
1466 | /* | |
1467 | wxEVT_DROP_FILES | |
1468 | */ | |
1469 | ||
1470 | class WXDLLIMPEXP_CORE wxDropFilesEvent : public wxEvent | |
1471 | { | |
1472 | public: | |
1473 | int m_noFiles; | |
1474 | wxPoint m_pos; | |
1475 | wxString* m_files; | |
1476 | ||
1477 | wxDropFilesEvent(wxEventType type = wxEVT_NULL, | |
1478 | int noFiles = 0, | |
1479 | wxString *files = (wxString *) NULL) | |
1480 | : wxEvent(0, type), | |
1481 | m_noFiles(noFiles), | |
1482 | m_pos(), | |
1483 | m_files(files) | |
1484 | { } | |
1485 | ||
1486 | // we need a copy ctor to avoid deleting m_files pointer twice | |
1487 | wxDropFilesEvent(const wxDropFilesEvent& other) | |
1488 | : wxEvent(other), | |
1489 | m_noFiles(other.m_noFiles), | |
1490 | m_pos(other.m_pos), | |
1491 | m_files(NULL) | |
1492 | { | |
1493 | m_files = new wxString[m_noFiles]; | |
1494 | for ( int n = 0; n < m_noFiles; n++ ) | |
1495 | { | |
1496 | m_files[n] = other.m_files[n]; | |
1497 | } | |
1498 | } | |
1499 | ||
1500 | virtual ~wxDropFilesEvent() | |
1501 | { | |
1502 | delete [] m_files; | |
1503 | } | |
1504 | ||
1505 | wxPoint GetPosition() const { return m_pos; } | |
1506 | int GetNumberOfFiles() const { return m_noFiles; } | |
1507 | wxString *GetFiles() const { return m_files; } | |
1508 | ||
1509 | virtual wxEvent *Clone() const { return new wxDropFilesEvent(*this); } | |
1510 | ||
1511 | private: | |
1512 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDropFilesEvent) | |
1513 | }; | |
1514 | ||
1515 | // Update UI event | |
1516 | /* | |
1517 | wxEVT_UPDATE_UI | |
1518 | */ | |
1519 | ||
1520 | // Whether to always send update events to windows, or | |
1521 | // to only send update events to those with the | |
1522 | // wxWS_EX_PROCESS_UI_UPDATES style. | |
1523 | ||
1524 | enum wxUpdateUIMode | |
1525 | { | |
1526 | // Send UI update events to all windows | |
1527 | wxUPDATE_UI_PROCESS_ALL, | |
1528 | ||
1529 | // Send UI update events to windows that have | |
1530 | // the wxWS_EX_PROCESS_UI_UPDATES flag specified | |
1531 | wxUPDATE_UI_PROCESS_SPECIFIED | |
1532 | }; | |
1533 | ||
1534 | class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent | |
1535 | { | |
1536 | public: | |
1537 | wxUpdateUIEvent(wxWindowID commandId = 0) | |
1538 | : wxCommandEvent(wxEVT_UPDATE_UI, commandId) | |
1539 | { | |
1540 | m_checked = | |
1541 | m_enabled = | |
1542 | m_setEnabled = | |
1543 | m_setText = | |
1544 | m_setChecked = FALSE; | |
1545 | } | |
1546 | wxUpdateUIEvent(const wxUpdateUIEvent & event) | |
1547 | : wxCommandEvent(event), | |
1548 | m_checked(event.m_checked), | |
1549 | m_enabled(event.m_enabled), | |
1550 | m_setEnabled(event.m_setEnabled), | |
1551 | m_setText(event.m_setText), | |
1552 | m_setChecked(event.m_setChecked), | |
1553 | m_text(event.m_text) | |
1554 | { } | |
1555 | ||
1556 | bool GetChecked() const { return m_checked; } | |
1557 | bool GetEnabled() const { return m_enabled; } | |
1558 | wxString GetText() const { return m_text; } | |
1559 | bool GetSetText() const { return m_setText; } | |
1560 | bool GetSetChecked() const { return m_setChecked; } | |
1561 | bool GetSetEnabled() const { return m_setEnabled; } | |
1562 | ||
1563 | void Check(bool check) { m_checked = check; m_setChecked = TRUE; } | |
1564 | void Enable(bool enable) { m_enabled = enable; m_setEnabled = TRUE; } | |
1565 | void SetText(const wxString& text) { m_text = text; m_setText = TRUE; } | |
1566 | ||
1567 | // Sets the interval between updates in milliseconds. | |
1568 | // Set to -1 to disable updates, or to 0 to update as frequently as possible. | |
1569 | static void SetUpdateInterval(long updateInterval) { sm_updateInterval = updateInterval; } | |
1570 | ||
1571 | // Returns the current interval between updates in milliseconds | |
1572 | static long GetUpdateInterval() { return sm_updateInterval; } | |
1573 | ||
1574 | // Can we update this window? | |
1575 | static bool CanUpdate(wxWindowBase *win); | |
1576 | ||
1577 | // Reset the update time to provide a delay until the next | |
1578 | // time we should update | |
1579 | static void ResetUpdateTime(); | |
1580 | ||
1581 | // Specify how wxWindows will send update events: to | |
1582 | // all windows, or only to those which specify that they | |
1583 | // will process the events. | |
1584 | static void SetMode(wxUpdateUIMode mode) { sm_updateMode = mode; } | |
1585 | ||
1586 | // Returns the UI update mode | |
1587 | static wxUpdateUIMode GetMode() { return sm_updateMode; } | |
1588 | ||
1589 | virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); } | |
1590 | ||
1591 | protected: | |
1592 | bool m_checked; | |
1593 | bool m_enabled; | |
1594 | bool m_setEnabled; | |
1595 | bool m_setText; | |
1596 | bool m_setChecked; | |
1597 | wxString m_text; | |
1598 | #if wxUSE_LONGLONG | |
1599 | static wxLongLong sm_lastUpdate; | |
1600 | #endif | |
1601 | static long sm_updateInterval; | |
1602 | static wxUpdateUIMode sm_updateMode; | |
1603 | ||
1604 | private: | |
1605 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxUpdateUIEvent) | |
1606 | }; | |
1607 | ||
1608 | /* | |
1609 | wxEVT_SYS_COLOUR_CHANGED | |
1610 | */ | |
1611 | ||
1612 | // TODO: shouldn't all events record the window ID? | |
1613 | class WXDLLIMPEXP_CORE wxSysColourChangedEvent : public wxEvent | |
1614 | { | |
1615 | public: | |
1616 | wxSysColourChangedEvent() | |
1617 | : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED) | |
1618 | { } | |
1619 | ||
1620 | virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); } | |
1621 | ||
1622 | private: | |
1623 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSysColourChangedEvent) | |
1624 | }; | |
1625 | ||
1626 | /* | |
1627 | wxEVT_MOUSE_CAPTURE_CHANGED | |
1628 | The window losing the capture receives this message | |
1629 | (even if it released the capture itself). | |
1630 | */ | |
1631 | ||
1632 | class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent : public wxEvent | |
1633 | { | |
1634 | public: | |
1635 | wxMouseCaptureChangedEvent(wxWindowID winid = 0, wxWindow* gainedCapture = NULL) | |
1636 | : wxEvent(winid, wxEVT_MOUSE_CAPTURE_CHANGED), | |
1637 | m_gainedCapture(gainedCapture) | |
1638 | { } | |
1639 | ||
1640 | wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent& event) | |
1641 | : wxEvent(event), | |
1642 | m_gainedCapture(event.m_gainedCapture) | |
1643 | { } | |
1644 | ||
1645 | virtual wxEvent *Clone() const { return new wxMouseCaptureChangedEvent(*this); } | |
1646 | ||
1647 | wxWindow* GetCapturedWindow() const { return m_gainedCapture; }; | |
1648 | ||
1649 | private: | |
1650 | wxWindow* m_gainedCapture; | |
1651 | ||
1652 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureChangedEvent) | |
1653 | }; | |
1654 | ||
1655 | /* | |
1656 | wxEVT_DISPLAY_CHANGED | |
1657 | */ | |
1658 | class WXDLLIMPEXP_CORE wxDisplayChangedEvent : public wxEvent | |
1659 | { | |
1660 | private: | |
1661 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDisplayChangedEvent) | |
1662 | ||
1663 | public: | |
1664 | wxDisplayChangedEvent() | |
1665 | : wxEvent(0, wxEVT_DISPLAY_CHANGED) | |
1666 | { } | |
1667 | ||
1668 | virtual wxEvent *Clone() const { return new wxDisplayChangedEvent(*this); } | |
1669 | }; | |
1670 | ||
1671 | /* | |
1672 | wxEVT_PALETTE_CHANGED | |
1673 | */ | |
1674 | ||
1675 | class WXDLLIMPEXP_CORE wxPaletteChangedEvent : public wxEvent | |
1676 | { | |
1677 | public: | |
1678 | wxPaletteChangedEvent(wxWindowID winid = 0) | |
1679 | : wxEvent(winid, wxEVT_PALETTE_CHANGED), | |
1680 | m_changedWindow((wxWindow *) NULL) | |
1681 | { } | |
1682 | ||
1683 | wxPaletteChangedEvent(const wxPaletteChangedEvent& event) | |
1684 | : wxEvent(event), | |
1685 | m_changedWindow(event.m_changedWindow) | |
1686 | { } | |
1687 | ||
1688 | void SetChangedWindow(wxWindow* win) { m_changedWindow = win; } | |
1689 | wxWindow* GetChangedWindow() const { return m_changedWindow; } | |
1690 | ||
1691 | virtual wxEvent *Clone() const { return new wxPaletteChangedEvent(*this); } | |
1692 | ||
1693 | protected: | |
1694 | wxWindow* m_changedWindow; | |
1695 | ||
1696 | private: | |
1697 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaletteChangedEvent) | |
1698 | }; | |
1699 | ||
1700 | /* | |
1701 | wxEVT_QUERY_NEW_PALETTE | |
1702 | Indicates the window is getting keyboard focus and should re-do its palette. | |
1703 | */ | |
1704 | ||
1705 | class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent : public wxEvent | |
1706 | { | |
1707 | public: | |
1708 | wxQueryNewPaletteEvent(wxWindowID winid = 0) | |
1709 | : wxEvent(winid, wxEVT_QUERY_NEW_PALETTE), | |
1710 | m_paletteRealized(FALSE) | |
1711 | { } | |
1712 | wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent & event) | |
1713 | : wxEvent(event), | |
1714 | m_paletteRealized(event.m_paletteRealized) | |
1715 | { } | |
1716 | ||
1717 | // App sets this if it changes the palette. | |
1718 | void SetPaletteRealized(bool realized) { m_paletteRealized = realized; } | |
1719 | bool GetPaletteRealized() const { return m_paletteRealized; } | |
1720 | ||
1721 | virtual wxEvent *Clone() const { return new wxQueryNewPaletteEvent(*this); } | |
1722 | ||
1723 | protected: | |
1724 | bool m_paletteRealized; | |
1725 | ||
1726 | private: | |
1727 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryNewPaletteEvent) | |
1728 | }; | |
1729 | ||
1730 | /* | |
1731 | Event generated by dialog navigation keys | |
1732 | wxEVT_NAVIGATION_KEY | |
1733 | */ | |
1734 | // NB: don't derive from command event to avoid being propagated to the parent | |
1735 | class WXDLLIMPEXP_CORE wxNavigationKeyEvent : public wxEvent | |
1736 | { | |
1737 | public: | |
1738 | wxNavigationKeyEvent() | |
1739 | : wxEvent(0, wxEVT_NAVIGATION_KEY), | |
1740 | m_flags(IsForward), // defaults are for TAB | |
1741 | m_focus((wxWindow *)NULL) | |
1742 | { | |
1743 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; | |
1744 | } | |
1745 | ||
1746 | wxNavigationKeyEvent(const wxNavigationKeyEvent& event) | |
1747 | : wxEvent(event), | |
1748 | m_flags(event.m_flags), | |
1749 | m_focus(event.m_focus) | |
1750 | { } | |
1751 | ||
1752 | // direction: forward (true) or backward (false) | |
1753 | bool GetDirection() const | |
1754 | { return (m_flags & IsForward) != 0; } | |
1755 | void SetDirection(bool bForward) | |
1756 | { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; } | |
1757 | ||
1758 | // it may be a window change event (MDI, notebook pages...) or a control | |
1759 | // change event | |
1760 | bool IsWindowChange() const | |
1761 | { return (m_flags & WinChange) != 0; } | |
1762 | void SetWindowChange(bool bIs) | |
1763 | { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; } | |
1764 | ||
1765 | // the child which has the focus currently (may be NULL - use | |
1766 | // wxWindow::FindFocus then) | |
1767 | wxWindow* GetCurrentFocus() const { return m_focus; } | |
1768 | void SetCurrentFocus(wxWindow *win) { m_focus = win; } | |
1769 | ||
1770 | virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); } | |
1771 | ||
1772 | private: | |
1773 | enum | |
1774 | { | |
1775 | IsForward = 0x0001, | |
1776 | WinChange = 0x0002 | |
1777 | }; | |
1778 | ||
1779 | long m_flags; | |
1780 | wxWindow *m_focus; | |
1781 | ||
1782 | private: | |
1783 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNavigationKeyEvent) | |
1784 | }; | |
1785 | ||
1786 | // Window creation/destruction events: the first is sent as soon as window is | |
1787 | // created (i.e. the underlying GUI object exists), but when the C++ object is | |
1788 | // fully initialized (so virtual functions may be called). The second, | |
1789 | // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's | |
1790 | // still safe to call virtual functions at this moment | |
1791 | /* | |
1792 | wxEVT_CREATE | |
1793 | wxEVT_DESTROY | |
1794 | */ | |
1795 | ||
1796 | class WXDLLIMPEXP_CORE wxWindowCreateEvent : public wxCommandEvent | |
1797 | { | |
1798 | public: | |
1799 | wxWindowCreateEvent(wxWindow *win = NULL); | |
1800 | ||
1801 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1802 | ||
1803 | virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); } | |
1804 | ||
1805 | private: | |
1806 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowCreateEvent) | |
1807 | }; | |
1808 | ||
1809 | class WXDLLIMPEXP_CORE wxWindowDestroyEvent : public wxCommandEvent | |
1810 | { | |
1811 | public: | |
1812 | wxWindowDestroyEvent(wxWindow *win = NULL); | |
1813 | ||
1814 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1815 | ||
1816 | virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); } | |
1817 | ||
1818 | private: | |
1819 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowDestroyEvent) | |
1820 | }; | |
1821 | ||
1822 | // A help event is sent when the user clicks on a window in context-help mode. | |
1823 | /* | |
1824 | wxEVT_HELP | |
1825 | wxEVT_DETAILED_HELP | |
1826 | */ | |
1827 | ||
1828 | class WXDLLIMPEXP_CORE wxHelpEvent : public wxCommandEvent | |
1829 | { | |
1830 | public: | |
1831 | wxHelpEvent(wxEventType type = wxEVT_NULL, | |
1832 | wxWindowID winid = 0, | |
1833 | const wxPoint& pt = wxDefaultPosition) | |
1834 | : wxCommandEvent(type, winid), | |
1835 | m_pos(pt), m_target(), m_link() | |
1836 | { } | |
1837 | wxHelpEvent(const wxHelpEvent & event) | |
1838 | : wxCommandEvent(event), | |
1839 | m_pos(event.m_pos), | |
1840 | m_target(event.m_target), | |
1841 | m_link(event.m_link) | |
1842 | { } | |
1843 | ||
1844 | // Position of event (in screen coordinates) | |
1845 | const wxPoint& GetPosition() const { return m_pos; } | |
1846 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1847 | ||
1848 | // Optional link to further help | |
1849 | const wxString& GetLink() const { return m_link; } | |
1850 | void SetLink(const wxString& link) { m_link = link; } | |
1851 | ||
1852 | // Optional target to display help in. E.g. a window specification | |
1853 | const wxString& GetTarget() const { return m_target; } | |
1854 | void SetTarget(const wxString& target) { m_target = target; } | |
1855 | ||
1856 | virtual wxEvent *Clone() const { return new wxHelpEvent(*this); } | |
1857 | ||
1858 | protected: | |
1859 | wxPoint m_pos; | |
1860 | wxString m_target; | |
1861 | wxString m_link; | |
1862 | ||
1863 | private: | |
1864 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHelpEvent) | |
1865 | }; | |
1866 | ||
1867 | // A Context event is sent when the user right clicks on a window or | |
1868 | // presses Shift-F10 | |
1869 | // NOTE : Under windows this is a repackaged WM_CONTETXMENU message | |
1870 | // Under other systems it may have to be generated from a right click event | |
1871 | /* | |
1872 | wxEVT_CONTEXT_MENU | |
1873 | */ | |
1874 | ||
1875 | class WXDLLIMPEXP_CORE wxContextMenuEvent : public wxCommandEvent | |
1876 | { | |
1877 | public: | |
1878 | wxContextMenuEvent(wxEventType type = wxEVT_NULL, | |
1879 | wxWindowID winid = 0, | |
1880 | const wxPoint& pt = wxDefaultPosition) | |
1881 | : wxCommandEvent(type, winid), | |
1882 | m_pos(pt) | |
1883 | { } | |
1884 | wxContextMenuEvent(const wxContextMenuEvent & event) | |
1885 | : wxCommandEvent(event), | |
1886 | m_pos(event.m_pos) | |
1887 | { } | |
1888 | ||
1889 | // Position of event (in screen coordinates) | |
1890 | const wxPoint& GetPosition() const { return m_pos; } | |
1891 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1892 | ||
1893 | virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); } | |
1894 | ||
1895 | protected: | |
1896 | wxPoint m_pos; | |
1897 | ||
1898 | private: | |
1899 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxContextMenuEvent) | |
1900 | }; | |
1901 | ||
1902 | // Idle event | |
1903 | /* | |
1904 | wxEVT_IDLE | |
1905 | */ | |
1906 | ||
1907 | // Whether to always send idle events to windows, or | |
1908 | // to only send update events to those with the | |
1909 | // wxWS_EX_PROCESS_IDLE style. | |
1910 | ||
1911 | enum wxIdleMode | |
1912 | { | |
1913 | // Send idle events to all windows | |
1914 | wxIDLE_PROCESS_ALL, | |
1915 | ||
1916 | // Send idle events to windows that have | |
1917 | // the wxWS_EX_PROCESS_IDLE flag specified | |
1918 | wxIDLE_PROCESS_SPECIFIED | |
1919 | }; | |
1920 | ||
1921 | class WXDLLIMPEXP_CORE wxIdleEvent : public wxEvent | |
1922 | { | |
1923 | public: | |
1924 | wxIdleEvent() | |
1925 | : wxEvent(0, wxEVT_IDLE), | |
1926 | m_requestMore(FALSE) | |
1927 | { } | |
1928 | wxIdleEvent(const wxIdleEvent & event) | |
1929 | : wxEvent(event), | |
1930 | m_requestMore(event.m_requestMore) | |
1931 | { } | |
1932 | ||
1933 | void RequestMore(bool needMore = TRUE) { m_requestMore = needMore; } | |
1934 | bool MoreRequested() const { return m_requestMore; } | |
1935 | ||
1936 | virtual wxEvent *Clone() const { return new wxIdleEvent(*this); } | |
1937 | ||
1938 | // Specify how wxWindows will send idle events: to | |
1939 | // all windows, or only to those which specify that they | |
1940 | // will process the events. | |
1941 | static void SetMode(wxIdleMode mode) { sm_idleMode = mode; } | |
1942 | ||
1943 | // Returns the idle event mode | |
1944 | static wxIdleMode GetMode() { return sm_idleMode; } | |
1945 | ||
1946 | // Can we send an idle event? | |
1947 | static bool CanSend(wxWindow* win); | |
1948 | ||
1949 | protected: | |
1950 | bool m_requestMore; | |
1951 | static wxIdleMode sm_idleMode; | |
1952 | ||
1953 | private: | |
1954 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIdleEvent) | |
1955 | }; | |
1956 | ||
1957 | #endif // wxUSE_GUI | |
1958 | ||
1959 | /* TODO | |
1960 | wxEVT_POWER, | |
1961 | wxEVT_MOUSE_CAPTURE_CHANGED, | |
1962 | wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95) | |
1963 | // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate | |
1964 | // wxEVT_FONT_CHANGED to all other windows (maybe). | |
1965 | wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific. | |
1966 | wxEVT_MEASURE_ITEM, | |
1967 | wxEVT_COMPARE_ITEM | |
1968 | */ | |
1969 | ||
1970 | ||
1971 | // ============================================================================ | |
1972 | // event handler and related classes | |
1973 | // ============================================================================ | |
1974 | ||
1975 | typedef void (wxObject::*wxObjectEventFunction)(wxEvent&); | |
1976 | ||
1977 | // we can't have ctors nor base struct in backwards compatibility mode or | |
1978 | // otherwise we won't be able to initialize the objects with an agregate, so | |
1979 | // we have to keep both versions | |
1980 | #if WXWIN_COMPATIBILITY_EVENT_TYPES | |
1981 | ||
1982 | struct WXDLLIMPEXP_BASE wxEventTableEntry | |
1983 | { | |
1984 | // For some reason, this can't be wxEventType, or VC++ complains. | |
1985 | int m_eventType; // main event type | |
1986 | int m_id; // control/menu/toolbar id | |
1987 | int m_lastId; // used for ranges of ids | |
1988 | wxObjectEventFunction m_fn; // function to call: not wxEventFunction, | |
1989 | // because of dependency problems | |
1990 | ||
1991 | wxObject* m_callbackUserData; | |
1992 | }; | |
1993 | ||
1994 | #else // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
1995 | ||
1996 | // struct containing the members common to static and dynamic event tables | |
1997 | // entries | |
1998 | struct WXDLLIMPEXP_BASE wxEventTableEntryBase | |
1999 | { | |
2000 | private: | |
2001 | wxEventTableEntryBase& operator=(const wxEventTableEntryBase& event); | |
2002 | ||
2003 | public: | |
2004 | wxEventTableEntryBase(int winid, int idLast, | |
2005 | wxObjectEventFunction fn, wxObject *data) | |
2006 | : m_id(winid), | |
2007 | m_lastId(idLast), | |
2008 | m_fn(fn), | |
2009 | m_callbackUserData(data) | |
2010 | { } | |
2011 | ||
2012 | wxEventTableEntryBase(const wxEventTableEntryBase& event) | |
2013 | : m_id(event.m_id), | |
2014 | m_lastId(event.m_lastId), | |
2015 | m_fn(event.m_fn), | |
2016 | m_callbackUserData(event.m_callbackUserData) | |
2017 | { } | |
2018 | ||
2019 | // the range of ids for this entry: if m_lastId == wxID_ANY, the range | |
2020 | // consists only of m_id, otherwise it is m_id..m_lastId inclusive | |
2021 | int m_id, | |
2022 | m_lastId; | |
2023 | ||
2024 | // function to call: not wxEventFunction, because of dependency problems | |
2025 | wxObjectEventFunction m_fn; | |
2026 | ||
2027 | // arbitrary user data asosciated with the callback | |
2028 | wxObject* m_callbackUserData; | |
2029 | }; | |
2030 | ||
2031 | // an entry from a static event table | |
2032 | struct WXDLLIMPEXP_BASE wxEventTableEntry : public wxEventTableEntryBase | |
2033 | { | |
2034 | wxEventTableEntry(const int& evType, int winid, int idLast, | |
2035 | wxObjectEventFunction fn, wxObject *data) | |
2036 | : wxEventTableEntryBase(winid, idLast, fn, data), | |
2037 | m_eventType(evType) | |
2038 | { } | |
2039 | ||
2040 | // the reference to event type: this allows us to not care about the | |
2041 | // (undefined) order in which the event table entries and the event types | |
2042 | // are initialized: initially the value of this reference might be | |
2043 | // invalid, but by the time it is used for the first time, all global | |
2044 | // objects will have been initialized (including the event type constants) | |
2045 | // and so it will have the correct value when it is needed | |
2046 | const int& m_eventType; | |
2047 | ||
2048 | private: | |
2049 | wxEventTableEntry& operator=(const wxEventTableEntry&); | |
2050 | }; | |
2051 | ||
2052 | class WXDLLIMPEXP_BASE wxEvtHandler; | |
2053 | ||
2054 | // an entry used in dynamic event table managed by wxEvtHandler::Connect() | |
2055 | struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry : public wxEventTableEntryBase | |
2056 | { | |
2057 | wxDynamicEventTableEntry(int evType, int winid, int idLast, | |
2058 | wxObjectEventFunction fn, wxObject *data, wxEvtHandler* eventSink) | |
2059 | : wxEventTableEntryBase(winid, idLast, fn, data), | |
2060 | m_eventType(evType), | |
2061 | m_eventSink(eventSink) | |
2062 | { } | |
2063 | ||
2064 | // not a reference here as we can't keep a reference to a temporary int | |
2065 | // created to wrap the constant value typically passed to Connect() - nor | |
2066 | // do we need it | |
2067 | int m_eventType; | |
2068 | ||
2069 | // Pointer to object whose function is fn - so we don't assume the | |
2070 | // EventFunction is always a member of the EventHandler receiving the | |
2071 | // message | |
2072 | wxEvtHandler* m_eventSink; | |
2073 | ||
2074 | DECLARE_NO_COPY_CLASS(wxDynamicEventTableEntry) | |
2075 | }; | |
2076 | ||
2077 | #endif // !WXWIN_COMPATIBILITY_EVENT_TYPES | |
2078 | ||
2079 | // ---------------------------------------------------------------------------- | |
2080 | // wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0} | |
2081 | // ---------------------------------------------------------------------------- | |
2082 | ||
2083 | struct WXDLLIMPEXP_BASE wxEventTable | |
2084 | { | |
2085 | const wxEventTable *baseTable; // base event table (next in chain) | |
2086 | const wxEventTableEntry *entries; // bottom of entry array | |
2087 | }; | |
2088 | ||
2089 | // ---------------------------------------------------------------------------- | |
2090 | // wxEventHashTable: a helper of wxEvtHandler to speed up wxEventTable lookups. | |
2091 | // ---------------------------------------------------------------------------- | |
2092 | ||
2093 | WX_DEFINE_ARRAY_PTR(const wxEventTableEntry*, wxEventTableEntryPointerArray); | |
2094 | class WXDLLIMPEXP_BASE wxEvtHandler; | |
2095 | ||
2096 | class WXDLLIMPEXP_BASE wxEventHashTable | |
2097 | { | |
2098 | private: | |
2099 | // Internal data structs | |
2100 | struct EventTypeTable | |
2101 | { | |
2102 | wxEventType eventType; | |
2103 | wxEventTableEntryPointerArray eventEntryTable; | |
2104 | }; | |
2105 | typedef EventTypeTable* EventTypeTablePointer; | |
2106 | ||
2107 | public: | |
2108 | // Constructor, needs the event table it needs to hash later on. | |
2109 | // Note: hashing of the event table is not done in the constructor as it | |
2110 | // can be that the event table is not yet full initialize, the hash | |
2111 | // will gets initialized when handling the first event look-up request. | |
2112 | wxEventHashTable(const wxEventTable &table); | |
2113 | // Destructor. | |
2114 | ~wxEventHashTable(); | |
2115 | ||
2116 | // Handle the given event, in other words search the event table hash | |
2117 | // and call self->ProcessEvent() if a match was found. | |
2118 | bool HandleEvent(wxEvent &event, wxEvtHandler *self); | |
2119 | ||
2120 | // Clear table | |
2121 | void Clear(); | |
2122 | ||
2123 | // Clear all tables | |
2124 | static void ClearAll(); | |
2125 | ||
2126 | protected: | |
2127 | // Init the hash table with the entries of the static event table. | |
2128 | void InitHashTable(); | |
2129 | // Helper funtion of InitHashTable() to insert 1 entry into the hash table. | |
2130 | void AddEntry(const wxEventTableEntry &entry); | |
2131 | // Allocate and init with null pointers the base hash table. | |
2132 | void AllocEventTypeTable(size_t size); | |
2133 | // Grow the hash table in size and transfer all items currently | |
2134 | // in the table to the correct location in the new table. | |
2135 | void GrowEventTypeTable(); | |
2136 | ||
2137 | protected: | |
2138 | const wxEventTable &m_table; | |
2139 | bool m_rebuildHash; | |
2140 | ||
2141 | size_t m_size; | |
2142 | EventTypeTablePointer *m_eventTypeTable; | |
2143 | ||
2144 | static wxEventHashTable* sm_first; | |
2145 | wxEventHashTable* m_previous; | |
2146 | wxEventHashTable* m_next; | |
2147 | ||
2148 | DECLARE_NO_COPY_CLASS(wxEventHashTable) | |
2149 | }; | |
2150 | ||
2151 | // ---------------------------------------------------------------------------- | |
2152 | // wxEvtHandler: the base class for all objects handling wxWindows events | |
2153 | // ---------------------------------------------------------------------------- | |
2154 | ||
2155 | class WXDLLIMPEXP_BASE wxEvtHandler : public wxObject | |
2156 | { | |
2157 | public: | |
2158 | wxEvtHandler(); | |
2159 | virtual ~wxEvtHandler(); | |
2160 | ||
2161 | wxEvtHandler *GetNextHandler() const { return m_nextHandler; } | |
2162 | wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; } | |
2163 | void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; } | |
2164 | void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; } | |
2165 | ||
2166 | void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; } | |
2167 | bool GetEvtHandlerEnabled() const { return m_enabled; } | |
2168 | ||
2169 | // process an event right now | |
2170 | virtual bool ProcessEvent(wxEvent& event); | |
2171 | ||
2172 | // add an event to be processed later | |
2173 | void AddPendingEvent(wxEvent& event); | |
2174 | ||
2175 | // process all pending events | |
2176 | void ProcessPendingEvents(); | |
2177 | ||
2178 | #if wxUSE_THREADS | |
2179 | bool ProcessThreadEvent(wxEvent& event); | |
2180 | #endif | |
2181 | ||
2182 | // Dynamic association of a member function handler with the event handler, | |
2183 | // winid and event type | |
2184 | void Connect( int winid, int lastId, int eventType, | |
2185 | wxObjectEventFunction func, | |
2186 | wxObject *userData = (wxObject *) NULL, | |
2187 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ); | |
2188 | ||
2189 | // Convenience function: take just one id | |
2190 | void Connect( int winid, int eventType, | |
2191 | wxObjectEventFunction func, | |
2192 | wxObject *userData = (wxObject *) NULL, | |
2193 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ) | |
2194 | { Connect(winid, wxID_ANY, eventType, func, userData, eventSink); } | |
2195 | ||
2196 | bool Disconnect( int winid, int lastId, wxEventType eventType, | |
2197 | wxObjectEventFunction func = NULL, | |
2198 | wxObject *userData = (wxObject *) NULL, | |
2199 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ); | |
2200 | ||
2201 | // Convenience function: take just one id | |
2202 | bool Disconnect( int winid, wxEventType eventType = wxEVT_NULL, | |
2203 | wxObjectEventFunction func = NULL, | |
2204 | wxObject *userData = (wxObject *) NULL, | |
2205 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL ) | |
2206 | { return Disconnect(winid, wxID_ANY, eventType, func, userData, eventSink); } | |
2207 | ||
2208 | wxList* GetDynamicEventTable() const { return m_dynamicEvents ; } | |
2209 | ||
2210 | // User data can be associated with each wxEvtHandler | |
2211 | void SetClientObject( wxClientData *data ) { DoSetClientObject(data); } | |
2212 | wxClientData *GetClientObject() const { return DoGetClientObject(); } | |
2213 | ||
2214 | void SetClientData( void *data ) { DoSetClientData(data); } | |
2215 | void *GetClientData() const { return DoGetClientData(); } | |
2216 | ||
2217 | // check if the given event table entry matches this event and call the | |
2218 | // handler if it does | |
2219 | // | |
2220 | // return true if the event was processed, false otherwise (no match or the | |
2221 | // handler decided to skip the event) | |
2222 | static bool ProcessEventIfMatches(const wxEventTableEntryBase& tableEntry, | |
2223 | wxEvtHandler *handler, | |
2224 | wxEvent& event); | |
2225 | ||
2226 | // implementation from now on | |
2227 | virtual bool SearchEventTable(wxEventTable& table, wxEvent& event); | |
2228 | bool SearchDynamicEventTable( wxEvent& event ); | |
2229 | ||
2230 | #if wxUSE_THREADS | |
2231 | void ClearEventLocker(); | |
2232 | #endif // wxUSE_THREADS | |
2233 | ||
2234 | // Avoid problems at exit by cleaning up static hash table gracefully | |
2235 | void ClearEventHashTable() { GetEventHashTable().Clear(); } | |
2236 | ||
2237 | private: | |
2238 | static const wxEventTableEntry sm_eventTableEntries[]; | |
2239 | ||
2240 | protected: | |
2241 | // hooks for wxWindow used by ProcessEvent() | |
2242 | // ----------------------------------------- | |
2243 | ||
2244 | // This one is called before trying our own event table to allow plugging | |
2245 | // in the validators. | |
2246 | // | |
2247 | // NB: This method is intentionally *not* inside wxUSE_VALIDATORS! | |
2248 | // It is part of wxBase which doesn't use validators and the code | |
2249 | // is compiled out when building wxBase w/o GUI classes, which affects | |
2250 | // binary compatiblity and wxBase library can't be used by GUI | |
2251 | // ports. | |
2252 | virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; } | |
2253 | ||
2254 | // this one is called after failing to find the event handle in our own | |
2255 | // table to give a chance to the other windows to process it | |
2256 | // | |
2257 | // base class implementation passes the event to wxTheApp | |
2258 | virtual bool TryParent(wxEvent& event); | |
2259 | ||
2260 | ||
2261 | static const wxEventTable sm_eventTable; | |
2262 | virtual const wxEventTable *GetEventTable() const; | |
2263 | ||
2264 | static wxEventHashTable sm_eventHashTable; | |
2265 | virtual wxEventHashTable& GetEventHashTable() const; | |
2266 | ||
2267 | wxEvtHandler* m_nextHandler; | |
2268 | wxEvtHandler* m_previousHandler; | |
2269 | wxList* m_dynamicEvents; | |
2270 | wxList* m_pendingEvents; | |
2271 | ||
2272 | #if wxUSE_THREADS | |
2273 | #if defined (__VISAGECPP__) | |
2274 | wxCriticalSection m_eventsLocker; | |
2275 | # else | |
2276 | wxCriticalSection* m_eventsLocker; | |
2277 | # endif | |
2278 | #endif | |
2279 | ||
2280 | // Is event handler enabled? | |
2281 | bool m_enabled; | |
2282 | ||
2283 | ||
2284 | // The user data: either an object which will be deleted by the container | |
2285 | // when it's deleted or some raw pointer which we do nothing with - only | |
2286 | // one type of data can be used with the given window (i.e. you cannot set | |
2287 | // the void data and then associate the container with wxClientData or vice | |
2288 | // versa) | |
2289 | union | |
2290 | { | |
2291 | wxClientData *m_clientObject; | |
2292 | void *m_clientData; | |
2293 | }; | |
2294 | ||
2295 | // what kind of data do we have? | |
2296 | wxClientDataType m_clientDataType; | |
2297 | ||
2298 | // client data accessors | |
2299 | virtual void DoSetClientObject( wxClientData *data ); | |
2300 | virtual wxClientData *DoGetClientObject() const; | |
2301 | ||
2302 | virtual void DoSetClientData( void *data ); | |
2303 | virtual void *DoGetClientData() const; | |
2304 | ||
2305 | private: | |
2306 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxEvtHandler) | |
2307 | }; | |
2308 | ||
2309 | // Post a message to the given eventhandler which will be processed during the | |
2310 | // next event loop iteration | |
2311 | inline void wxPostEvent(wxEvtHandler *dest, wxEvent& event) | |
2312 | { | |
2313 | wxCHECK_RET( dest, wxT("need an object to post event to in wxPostEvent") ); | |
2314 | ||
2315 | dest->AddPendingEvent(event); | |
2316 | } | |
2317 | ||
2318 | typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&); | |
2319 | #if wxUSE_GUI | |
2320 | typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&); | |
2321 | typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&); | |
2322 | typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&); | |
2323 | typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&); | |
2324 | typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&); | |
2325 | typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&); | |
2326 | typedef void (wxEvtHandler::*wxNcPaintEventFunction)(wxNcPaintEvent&); | |
2327 | typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&); | |
2328 | typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&); | |
2329 | typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&); | |
2330 | typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&); | |
2331 | typedef void (wxEvtHandler::*wxChildFocusEventFunction)(wxChildFocusEvent&); | |
2332 | typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&); | |
2333 | typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&); | |
2334 | typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&); | |
2335 | typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&); | |
2336 | typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&); | |
2337 | typedef void (wxEvtHandler::*wxSysColourChangedFunction)(wxSysColourChangedEvent&); | |
2338 | typedef void (wxEvtHandler::*wxDisplayChangedFunction)(wxDisplayChangedEvent&); | |
2339 | typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&); | |
2340 | typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&); | |
2341 | typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&); | |
2342 | typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&); | |
2343 | typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&); | |
2344 | typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&); | |
2345 | typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&); | |
2346 | typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&); | |
2347 | typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&); | |
2348 | typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&); | |
2349 | typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&); | |
2350 | typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&); | |
2351 | typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&); | |
2352 | typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&); | |
2353 | typedef void (wxEvtHandler::*wxContextMenuEventFunction)(wxContextMenuEvent&); | |
2354 | typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction)(wxMouseCaptureChangedEvent&); | |
2355 | #endif // wxUSE_GUI | |
2356 | ||
2357 | // N.B. In GNU-WIN32, you *have* to take the address of a member function | |
2358 | // (use &) or the compiler crashes... | |
2359 | ||
2360 | #define DECLARE_EVENT_TABLE() \ | |
2361 | private: \ | |
2362 | static const wxEventTableEntry sm_eventTableEntries[]; \ | |
2363 | protected: \ | |
2364 | static const wxEventTable sm_eventTable; \ | |
2365 | virtual const wxEventTable* GetEventTable() const; \ | |
2366 | static wxEventHashTable sm_eventHashTable; \ | |
2367 | virtual wxEventHashTable& GetEventHashTable() const; | |
2368 | ||
2369 | // N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize | |
2370 | // sm_eventTable before using it in GetEventTable() or the compiler gives | |
2371 | // E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews) | |
2372 | ||
2373 | #define BEGIN_EVENT_TABLE(theClass, baseClass) \ | |
2374 | const wxEventTable theClass::sm_eventTable = \ | |
2375 | { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \ | |
2376 | const wxEventTable *theClass::GetEventTable() const \ | |
2377 | { return &theClass::sm_eventTable; } \ | |
2378 | wxEventHashTable theClass::sm_eventHashTable(theClass::sm_eventTable); \ | |
2379 | wxEventHashTable &theClass::GetEventHashTable() const \ | |
2380 | { return theClass::sm_eventHashTable; } \ | |
2381 | const wxEventTableEntry theClass::sm_eventTableEntries[] = { \ | |
2382 | ||
2383 | #define END_EVENT_TABLE() DECLARE_EVENT_TABLE_ENTRY( wxEVT_NULL, 0, 0, 0, 0 ) }; | |
2384 | ||
2385 | /* | |
2386 | * Event table macros | |
2387 | */ | |
2388 | ||
2389 | // Generic events | |
2390 | #define EVT_CUSTOM(event, winid, func) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) wxStaticCastEvent( wxEventFunction, & func ), (wxObject *) NULL ), | |
2391 | #define EVT_CUSTOM_RANGE(event, id1, id2, func) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) wxStaticCastEvent( wxEventFunction, & func ), (wxObject *) NULL ), | |
2392 | ||
2393 | // Miscellaneous | |
2394 | #define EVT_SIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxSizeEventFunction, & func ), (wxObject *) NULL ), | |
2395 | #define EVT_SIZING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SIZING, -1, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxSizeEventFunction, & func ), (wxObject *) NULL ), | |
2396 | #define EVT_MOVE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMoveEventFunction, & func ), (wxObject *) NULL ), | |
2397 | #define EVT_MOVING(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOVING, -1, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMoveEventFunction, & func ), (wxObject *) NULL ), | |
2398 | #define EVT_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CLOSE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCloseEventFunction, & func ), (wxObject *) NULL ), | |
2399 | #define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCloseEventFunction, & func ), (wxObject *) NULL ), | |
2400 | #define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCloseEventFunction, & func ), (wxObject *) NULL ), | |
2401 | #define EVT_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPaintEventFunction, & func ), (wxObject *) NULL ), | |
2402 | #define EVT_NC_PAINT(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NC_PAINT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxNcPaintEventFunction, & func ), (wxObject *) NULL ), | |
2403 | #define EVT_ERASE_BACKGROUND(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ERASE_BACKGROUND, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxEraseEventFunction, & func ), (wxObject *) NULL ), | |
2404 | #define EVT_CHAR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCharEventFunction, & func ), (wxObject *) NULL ), | |
2405 | #define EVT_KEY_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCharEventFunction, & func ), (wxObject *) NULL ), | |
2406 | #define EVT_KEY_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KEY_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCharEventFunction, & func ), (wxObject *) NULL ), | |
2407 | #if wxUSE_HOTKEY | |
2408 | #define EVT_HOTKEY(id, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_HOTKEY, id, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCharEventFunction, & func ), (wxObject *) NULL ), | |
2409 | #endif | |
2410 | #define EVT_CHAR_HOOK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHAR_HOOK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCharEventFunction, & func ), NULL ), | |
2411 | #define EVT_MENU_OPEN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_OPEN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMenuEventFunction, & func ), (wxObject *) NULL ), | |
2412 | #define EVT_MENU_CLOSE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_CLOSE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMenuEventFunction, & func ), (wxObject *) NULL ), | |
2413 | #define EVT_MENU_HIGHLIGHT(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMenuEventFunction, & func ), (wxObject *) NULL ), | |
2414 | #define EVT_MENU_HIGHLIGHT_ALL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MENU_HIGHLIGHT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMenuEventFunction, & func ), (wxObject *) NULL ), | |
2415 | #define EVT_SET_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxFocusEventFunction, & func ), (wxObject *) NULL ), | |
2416 | #define EVT_KILL_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_KILL_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxFocusEventFunction, & func ), (wxObject *) NULL ), | |
2417 | #define EVT_CHILD_FOCUS(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CHILD_FOCUS, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxChildFocusEventFunction, & func ), (wxObject *) NULL ), | |
2418 | #define EVT_ACTIVATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxActivateEventFunction, & func ), (wxObject *) NULL ), | |
2419 | #define EVT_ACTIVATE_APP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ACTIVATE_APP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxActivateEventFunction, & func ), (wxObject *) NULL ), | |
2420 | #define EVT_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCloseEventFunction, & func ), (wxObject *) NULL ), | |
2421 | #define EVT_QUERY_END_SESSION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_END_SESSION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCloseEventFunction, & func ), (wxObject *) NULL ), | |
2422 | #define EVT_DROP_FILES(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DROP_FILES, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxDropFilesEventFunction, & func ), (wxObject *) NULL ), | |
2423 | #define EVT_INIT_DIALOG(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_INIT_DIALOG, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxInitDialogEventFunction, & func ), (wxObject *) NULL ), | |
2424 | #define EVT_SYS_COLOUR_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SYS_COLOUR_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxSysColourChangedFunction, & func ), (wxObject *) NULL ), | |
2425 | #define EVT_DISPLAY_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DISPLAY_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxDisplayChangedFunction, & func ), (wxObject *) NULL ), | |
2426 | #define EVT_SHOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SHOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxShowEventFunction, & func ), (wxObject *) NULL ), | |
2427 | #define EVT_MAXIMIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MAXIMIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMaximizeEventFunction, & func ), (wxObject *) NULL ), | |
2428 | #define EVT_ICONIZE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ICONIZE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxIconizeEventFunction, & func ), (wxObject *) NULL ), | |
2429 | #define EVT_NAVIGATION_KEY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_NAVIGATION_KEY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxNavigationKeyEventFunction, & func ), (wxObject *) NULL ), | |
2430 | #define EVT_PALETTE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_PALETTE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxPaletteChangedEventFunction, & func ), (wxObject *) NULL ), | |
2431 | #define EVT_QUERY_NEW_PALETTE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_NEW_PALETTE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxQueryNewPaletteEventFunction, & func ), (wxObject *) NULL ), | |
2432 | #define EVT_WINDOW_CREATE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_CREATE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxWindowCreateEventFunction, & func ), (wxObject *) NULL ), | |
2433 | #define EVT_WINDOW_DESTROY(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_DESTROY, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxWindowDestroyEventFunction, & func ), (wxObject *) NULL ), | |
2434 | #define EVT_SET_CURSOR(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SET_CURSOR, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxSetCursorEventFunction, & func ), (wxObject *) NULL ), | |
2435 | #define EVT_MOUSE_CAPTURE_CHANGED(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSE_CAPTURE_CHANGED, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseCaptureChangedEventFunction, & func ), (wxObject *) NULL ), | |
2436 | ||
2437 | // Mouse events | |
2438 | #define EVT_LEFT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2439 | #define EVT_LEFT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2440 | #define EVT_MIDDLE_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2441 | #define EVT_MIDDLE_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2442 | #define EVT_RIGHT_DOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2443 | #define EVT_RIGHT_UP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2444 | #define EVT_MOTION(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2445 | #define EVT_LEFT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2446 | #define EVT_MIDDLE_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2447 | #define EVT_RIGHT_DCLICK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2448 | #define EVT_LEAVE_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2449 | #define EVT_ENTER_WINDOW(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2450 | #define EVT_MOUSEWHEEL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2451 | ||
2452 | // All mouse events | |
2453 | #define EVT_MOUSE_EVENTS(func) \ | |
2454 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2455 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2456 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2457 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2458 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2459 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2460 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOTION, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2461 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEFT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2462 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MIDDLE_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2463 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_RIGHT_DCLICK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2464 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_ENTER_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2465 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_LEAVE_WINDOW, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ),\ | |
2466 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_MOUSEWHEEL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxMouseEventFunction, & func ), (wxObject *) NULL ), | |
2467 | ||
2468 | // EVT_COMMAND | |
2469 | #define EVT_COMMAND(winid, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2470 | #define EVT_COMMAND_RANGE(id1, id2, event, fn) DECLARE_EVENT_TABLE_ENTRY( event, id1, id2, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2471 | ||
2472 | // Scrolling from wxWindow (sent to wxScrolledWindow) | |
2473 | #define EVT_SCROLLWIN(func) \ | |
2474 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2475 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2476 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2477 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2478 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2479 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2480 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ),\ | |
2481 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2482 | ||
2483 | #define EVT_SCROLLWIN_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2484 | #define EVT_SCROLLWIN_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2485 | #define EVT_SCROLLWIN_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2486 | #define EVT_SCROLLWIN_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2487 | #define EVT_SCROLLWIN_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2488 | #define EVT_SCROLLWIN_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2489 | #define EVT_SCROLLWIN_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2490 | #define EVT_SCROLLWIN_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLLWIN_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollWinEventFunction, & func ), (wxObject *) NULL ), | |
2491 | ||
2492 | // Scrolling from wxSlider and wxScrollBar | |
2493 | #define EVT_SCROLL(func) \ | |
2494 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2495 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2496 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2497 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2498 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2499 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2500 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2501 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), \ | |
2502 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2503 | ||
2504 | #define EVT_SCROLL_TOP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2505 | #define EVT_SCROLL_BOTTOM(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2506 | #define EVT_SCROLL_LINEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2507 | #define EVT_SCROLL_LINEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2508 | #define EVT_SCROLL_PAGEUP(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2509 | #define EVT_SCROLL_PAGEDOWN(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2510 | #define EVT_SCROLL_THUMBTRACK(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2511 | #define EVT_SCROLL_THUMBRELEASE(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2512 | #define EVT_SCROLL_ENDSCROLL(func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2513 | ||
2514 | // Scrolling from wxSlider and wxScrollBar, with an id | |
2515 | #define EVT_COMMAND_SCROLL(winid, func) \ | |
2516 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2517 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2518 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2519 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2520 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2521 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2522 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ),\ | |
2523 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), \ | |
2524 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2525 | ||
2526 | #define EVT_COMMAND_SCROLL_TOP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_TOP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2527 | #define EVT_COMMAND_SCROLL_BOTTOM(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_BOTTOM, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2528 | #define EVT_COMMAND_SCROLL_LINEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2529 | #define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_LINEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2530 | #define EVT_COMMAND_SCROLL_PAGEUP(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEUP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2531 | #define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_PAGEDOWN, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2532 | #define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBTRACK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2533 | #define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_THUMBRELEASE, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2534 | #define EVT_COMMAND_SCROLL_ENDSCROLL(winid, func) DECLARE_EVENT_TABLE_ENTRY( wxEVT_SCROLL_ENDSCROLL, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxScrollEventFunction, & func ), (wxObject *) NULL ), | |
2535 | ||
2536 | // Convenience macros for commonly-used commands | |
2537 | #define EVT_BUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_BUTTON_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2538 | #define EVT_CHECKBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKBOX_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2539 | #define EVT_CHOICE(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHOICE_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2540 | #define EVT_LISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2541 | #define EVT_LISTBOX_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2542 | #define EVT_MENU(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2543 | #define EVT_MENU_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_MENU_SELECTED, id1, id2, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2544 | #define EVT_SLIDER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SLIDER_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2545 | #define EVT_RADIOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2546 | #define EVT_RADIOBUTTON(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RADIOBUTTON_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2547 | // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events | |
2548 | #define EVT_SCROLLBAR(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SCROLLBAR_UPDATED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2549 | #define EVT_VLBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_VLBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2550 | #define EVT_COMBOBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_COMBOBOX_SELECTED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2551 | #define EVT_TOOL(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2552 | #define EVT_TOOL_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_CLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2553 | #define EVT_TOOL_RCLICKED(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2554 | #define EVT_TOOL_RCLICKED_RANGE(id1, id2, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2555 | #define EVT_TOOL_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TOOL_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2556 | #define EVT_CHECKLISTBOX(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2557 | ||
2558 | // Generic command events | |
2559 | #define EVT_COMMAND_LEFT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2560 | #define EVT_COMMAND_LEFT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LEFT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2561 | #define EVT_COMMAND_RIGHT_CLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_CLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2562 | #define EVT_COMMAND_RIGHT_DCLICK(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RIGHT_DCLICK, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2563 | #define EVT_COMMAND_SET_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_SET_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2564 | #define EVT_COMMAND_KILL_FOCUS(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_KILL_FOCUS, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2565 | #define EVT_COMMAND_ENTER(winid, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_ENTER, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCommandEventFunction, & fn ), (wxObject *) NULL ), | |
2566 | ||
2567 | // Joystick events | |
2568 | ||
2569 | #define EVT_JOY_BUTTON_DOWN(func) \ | |
2570 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2571 | #define EVT_JOY_BUTTON_UP(func) \ | |
2572 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2573 | #define EVT_JOY_MOVE(func) \ | |
2574 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2575 | #define EVT_JOY_ZMOVE(func) \ | |
2576 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2577 | ||
2578 | // These are obsolete, see _BUTTON_ events | |
2579 | #define EVT_JOY_DOWN(func) \ | |
2580 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2581 | #define EVT_JOY_UP(func) \ | |
2582 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2583 | ||
2584 | // All joystick events | |
2585 | #define EVT_JOYSTICK_EVENTS(func) \ | |
2586 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_DOWN, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ),\ | |
2587 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_BUTTON_UP, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ),\ | |
2588 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_MOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ),\ | |
2589 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_JOY_ZMOVE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxJoystickEventFunction, & func ), (wxObject *) NULL ), | |
2590 | ||
2591 | // Idle event | |
2592 | #define EVT_IDLE(func) \ | |
2593 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_IDLE, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxIdleEventFunction, & func ), (wxObject *) NULL ), | |
2594 | ||
2595 | // Update UI event | |
2596 | #define EVT_UPDATE_UI(winid, func) \ | |
2597 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxUpdateUIEventFunction, & func ), (wxObject *) NULL ), | |
2598 | #define EVT_UPDATE_UI_RANGE(id1, id2, func) \ | |
2599 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_UPDATE_UI, id1, id2, (wxObjectEventFunction)(wxEventFunction) wxStaticCastEvent( wxUpdateUIEventFunction, &func ), (wxObject *) NULL ), | |
2600 | ||
2601 | // Help events | |
2602 | #define EVT_HELP(winid, func) \ | |
2603 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxHelpEventFunction, & func ), (wxObject *) NULL ), | |
2604 | ||
2605 | #define EVT_HELP_RANGE(id1, id2, func) \ | |
2606 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxHelpEventFunction, & func ), (wxObject *) NULL ), | |
2607 | ||
2608 | #define EVT_DETAILED_HELP(winid, func) \ | |
2609 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, winid, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxHelpEventFunction, & func ), (wxObject *) NULL ), | |
2610 | ||
2611 | #define EVT_DETAILED_HELP_RANGE(id1, id2, func) \ | |
2612 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_DETAILED_HELP, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) wxStaticCastEvent( wxHelpEventFunction, & func ), (wxObject *) NULL ), | |
2613 | ||
2614 | // Context Menu Events | |
2615 | #define EVT_CONTEXT_MENU(func) \ | |
2616 | DECLARE_EVENT_TABLE_ENTRY(wxEVT_CONTEXT_MENU, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxContextMenuEventFunction, & func ), (wxObject *) NULL ), | |
2617 | ||
2618 | // ---------------------------------------------------------------------------- | |
2619 | // Global data | |
2620 | // ---------------------------------------------------------------------------- | |
2621 | ||
2622 | // for pending event processing - notice that there is intentionally no | |
2623 | // WXDLLEXPORT here | |
2624 | extern WXDLLIMPEXP_BASE wxList *wxPendingEvents; | |
2625 | #if wxUSE_THREADS | |
2626 | extern WXDLLIMPEXP_BASE wxCriticalSection *wxPendingEventsLocker; | |
2627 | #endif | |
2628 | ||
2629 | // ---------------------------------------------------------------------------- | |
2630 | // Helper functions | |
2631 | // ---------------------------------------------------------------------------- | |
2632 | ||
2633 | #if wxUSE_GUI | |
2634 | ||
2635 | // Find a window with the focus, that is also a descendant of the given window. | |
2636 | // This is used to determine the window to initially send commands to. | |
2637 | wxWindow* wxFindFocusDescendant(wxWindow* ancestor); | |
2638 | ||
2639 | #endif // wxUSE_GUI | |
2640 | ||
2641 | #endif // _WX_EVENT_H__ | |
2642 |