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