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