]>
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$ | |
77ffb593 | 8 | // Copyright: (c) wxWidgets team |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
204abcd4 PC |
12 | #ifndef _WX_EVENT_H_ |
13 | #define _WX_EVENT_H_ | |
c801d85f | 14 | |
c801d85f | 15 | #include "wx/defs.h" |
bde626ce | 16 | #include "wx/cpp.h" |
c801d85f | 17 | #include "wx/object.h" |
341050e2 | 18 | #include "wx/clntdata.h" |
e90c1d2a VZ |
19 | |
20 | #if wxUSE_GUI | |
21 | #include "wx/gdicmn.h" | |
43b5058d | 22 | #include "wx/cursor.h" |
e90c1d2a | 23 | #endif |
42e69d6b | 24 | |
b5a98acd | 25 | #include "wx/dynarray.h" |
8ebec7dc | 26 | #include "wx/thread.h" |
2ef989c9 | 27 | #include "wx/tracker.h" |
b5a98acd | 28 | |
e90c1d2a VZ |
29 | // ---------------------------------------------------------------------------- |
30 | // forward declarations | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
b5dbe15d | 33 | class WXDLLIMPEXP_FWD_BASE wxList; |
e90c1d2a | 34 | #if wxUSE_GUI |
b5dbe15d VS |
35 | class WXDLLIMPEXP_FWD_CORE wxDC; |
36 | class WXDLLIMPEXP_FWD_CORE wxMenu; | |
37 | class WXDLLIMPEXP_FWD_CORE wxWindow; | |
38 | class WXDLLIMPEXP_FWD_CORE wxWindowBase; | |
e90c1d2a VZ |
39 | #endif // wxUSE_GUI |
40 | ||
d1a64f69 VZ |
41 | // We operate with pointer to members of wxEvtHandler (such functions are used |
42 | // as event handlers in the event tables or as arguments to Connect()) but by | |
43 | // default MSVC uses a restricted (but more efficient) representation of | |
44 | // pointers to members which can't deal with multiple base classes. To avoid | |
45 | // mysterious (as the compiler is not good enough to detect this and give a | |
46 | // sensible error message) errors in the user code as soon as it defines | |
47 | // classes inheriting from both wxEvtHandler (possibly indirectly, e.g. via | |
48 | // wxWindow) and something else (including our own wxTrackable but not limited | |
49 | // to it), we use the special MSVC keyword telling the compiler to use a more | |
50 | // general pointer to member representation for the classes inheriting from | |
51 | // wxEvtHandler. | |
52 | #ifdef __VISUALC__ | |
53 | #define wxMSVC_FWD_MULTIPLE_BASES __multiple_inheritance | |
54 | #else | |
55 | #define wxMSVC_FWD_MULTIPLE_BASES | |
56 | #endif | |
57 | ||
58 | class WXDLLIMPEXP_FWD_BASE wxMSVC_FWD_MULTIPLE_BASES wxEvtHandler; | |
cc6ceca7 | 59 | class wxEventConnectionRef; |
432968bf | 60 | |
e90c1d2a VZ |
61 | // ---------------------------------------------------------------------------- |
62 | // Event types | |
63 | // ---------------------------------------------------------------------------- | |
64693098 | 64 | |
cbee8f8d VZ |
65 | typedef int wxEventType; |
66 | ||
c4fa5aa7 VZ |
67 | #define wxEVT_ANY ((wxEventType)-1) |
68 | ||
3a818b15 VZ |
69 | // this is used to make the event table entry type safe, so that for an event |
70 | // handler only a function with proper parameter list can be given. | |
f29fe169 | 71 | #define wxStaticCastEvent(type, val) wx_static_cast(type, val) |
3a818b15 | 72 | |
d9e2e4c2 DE |
73 | #define DECLARE_EVENT_TABLE_ENTRY(type, winid, idLast, fn, obj) \ |
74 | wxEventTableEntry(type, winid, idLast, fn, obj) | |
cbee8f8d | 75 | |
c058cafa VZ |
76 | // obsolete event declaration/definition macros, we don't need them any longer |
77 | // but we keep them for compatibility as it doesn't cost us anything anyhow | |
2e4df4bf VZ |
78 | #define BEGIN_DECLARE_EVENT_TYPES() |
79 | #define END_DECLARE_EVENT_TYPES() | |
886dd7d2 VZ |
80 | #define DECLARE_EXPORTED_EVENT_TYPE(expdecl, name, value) \ |
81 | extern expdecl const wxEventType name; | |
85664da6 | 82 | #define DECLARE_EVENT_TYPE(name, value) \ |
bddd7a8d | 83 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_CORE, name, value) |
886dd7d2 | 84 | #define DECLARE_LOCAL_EVENT_TYPE(name, value) \ |
bde626ce | 85 | DECLARE_EXPORTED_EVENT_TYPE(wxEMPTY_PARAMETER_VALUE, name, value) |
71499aaf | 86 | #define DEFINE_EVENT_TYPE(name) const wxEventType name = wxNewEventType(); |
886dd7d2 | 87 | #define DEFINE_LOCAL_EVENT_TYPE(name) DEFINE_EVENT_TYPE(name) |
cbee8f8d VZ |
88 | |
89 | // generate a new unique event type | |
bddd7a8d | 90 | extern WXDLLIMPEXP_BASE wxEventType wxNewEventType(); |
cbee8f8d | 91 | |
c058cafa VZ |
92 | // many, but not all, standard event types |
93 | ||
94 | // some generic events | |
95 | extern WXDLLIMPEXP_BASE const wxEventType wxEVT_NULL; | |
96 | extern WXDLLIMPEXP_BASE const wxEventType wxEVT_FIRST; | |
97 | extern WXDLLIMPEXP_BASE const wxEventType wxEVT_USER_FIRST; | |
98 | ||
99 | // Command events | |
100 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_BUTTON_CLICKED; | |
101 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_CHECKBOX_CLICKED; | |
102 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_CHOICE_SELECTED; | |
103 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOX_SELECTED; | |
104 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOX_DOUBLECLICKED; | |
105 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_CHECKLISTBOX_TOGGLED; | |
106 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_MENU_SELECTED; | |
107 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SLIDER_UPDATED; | |
108 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_RADIOBOX_SELECTED; | |
109 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_RADIOBUTTON_SELECTED; | |
110 | ||
111 | // wxEVT_COMMAND_SCROLLBAR_UPDATED is deprecated, use wxEVT_SCROLL... events | |
112 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SCROLLBAR_UPDATED; | |
113 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_VLBOX_SELECTED; | |
114 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_COMBOBOX_SELECTED; | |
115 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOL_RCLICKED; | |
116 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED; | |
117 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOL_ENTER; | |
118 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SPINCTRL_UPDATED; | |
8cd6a9ad | 119 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED; |
c058cafa VZ |
120 | |
121 | // Sockets and timers send events, too | |
122 | extern WXDLLIMPEXP_BASE const wxEventType wxEVT_SOCKET; | |
123 | extern WXDLLIMPEXP_BASE const wxEventType wxEVT_TIMER; | |
124 | ||
125 | // Mouse event types | |
126 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_LEFT_DOWN; | |
127 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_LEFT_UP; | |
128 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MIDDLE_DOWN; | |
129 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MIDDLE_UP; | |
130 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_RIGHT_DOWN; | |
131 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_RIGHT_UP; | |
132 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOTION; | |
133 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_ENTER_WINDOW; | |
134 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_LEAVE_WINDOW; | |
135 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_LEFT_DCLICK; | |
136 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MIDDLE_DCLICK; | |
137 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_RIGHT_DCLICK; | |
138 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SET_FOCUS; | |
139 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_KILL_FOCUS; | |
140 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CHILD_FOCUS; | |
141 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOUSEWHEEL; | |
142 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_AUX1_DOWN; | |
143 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_AUX1_UP; | |
144 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_AUX1_DCLICK; | |
145 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_AUX2_DOWN; | |
146 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_AUX2_UP; | |
147 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_AUX2_DCLICK; | |
148 | ||
149 | // Non-client mouse events | |
150 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_LEFT_DOWN; | |
151 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_LEFT_UP; | |
152 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_MIDDLE_DOWN; | |
153 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_MIDDLE_UP; | |
154 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_RIGHT_DOWN; | |
155 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_RIGHT_UP; | |
156 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_MOTION; | |
157 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_ENTER_WINDOW; | |
158 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_LEAVE_WINDOW; | |
159 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_LEFT_DCLICK; | |
160 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_MIDDLE_DCLICK; | |
161 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_RIGHT_DCLICK; | |
162 | ||
163 | // Character input event type | |
164 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CHAR; | |
165 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CHAR_HOOK; | |
166 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NAVIGATION_KEY; | |
167 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_KEY_DOWN; | |
168 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_KEY_UP; | |
5048c832 | 169 | #if wxUSE_HOTKEY |
c058cafa | 170 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_HOTKEY; |
5048c832 | 171 | #endif |
c058cafa VZ |
172 | // Set cursor event |
173 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SET_CURSOR; | |
174 | ||
175 | // wxScrollBar and wxSlider event identifiers | |
176 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_TOP; | |
177 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_BOTTOM; | |
178 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_LINEUP; | |
179 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_LINEDOWN; | |
180 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_PAGEUP; | |
181 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_PAGEDOWN; | |
182 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_THUMBTRACK; | |
183 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_THUMBRELEASE; | |
184 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLL_CHANGED; | |
185 | ||
186 | // Scroll events from wxWindow | |
187 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_TOP; | |
188 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_BOTTOM; | |
189 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_LINEUP; | |
190 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_LINEDOWN; | |
191 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_PAGEUP; | |
192 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_PAGEDOWN; | |
193 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_THUMBTRACK; | |
194 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SCROLLWIN_THUMBRELEASE; | |
195 | ||
196 | // System events | |
197 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SIZE; | |
198 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOVE; | |
199 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CLOSE_WINDOW; | |
200 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_END_SESSION; | |
201 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_QUERY_END_SESSION; | |
202 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_ACTIVATE_APP; | |
203 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_ACTIVATE; | |
204 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CREATE; | |
205 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_DESTROY; | |
206 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SHOW; | |
207 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_ICONIZE; | |
208 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MAXIMIZE; | |
209 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOUSE_CAPTURE_CHANGED; | |
210 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOUSE_CAPTURE_LOST; | |
211 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_PAINT; | |
212 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_ERASE_BACKGROUND; | |
213 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_NC_PAINT; | |
214 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_PAINT_ICON; | |
215 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MENU_OPEN; | |
216 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MENU_CLOSE; | |
217 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MENU_HIGHLIGHT; | |
218 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CONTEXT_MENU; | |
219 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SYS_COLOUR_CHANGED; | |
220 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_DISPLAY_CHANGED; | |
221 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SETTING_CHANGED; | |
222 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_QUERY_NEW_PALETTE; | |
223 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_PALETTE_CHANGED; | |
224 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_JOY_BUTTON_DOWN; | |
225 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_JOY_BUTTON_UP; | |
226 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_JOY_MOVE; | |
227 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_JOY_ZMOVE; | |
228 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_DROP_FILES; | |
229 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_DRAW_ITEM; | |
230 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MEASURE_ITEM; | |
231 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMPARE_ITEM; | |
232 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_INIT_DIALOG; | |
233 | extern WXDLLIMPEXP_BASE const wxEventType wxEVT_IDLE; | |
234 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_UPDATE_UI; | |
235 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_SIZING; | |
236 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOVING; | |
237 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOVE_START; | |
238 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_MOVE_END; | |
239 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_HIBERNATE; | |
240 | ||
241 | // Clipboard events | |
242 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TEXT_COPY; | |
243 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TEXT_CUT; | |
244 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TEXT_PASTE; | |
245 | ||
246 | // Generic command events | |
247 | // Note: a click is a higher-level event than button down/up | |
248 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LEFT_CLICK; | |
249 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LEFT_DCLICK; | |
250 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_RIGHT_CLICK; | |
251 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_RIGHT_DCLICK; | |
252 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_SET_FOCUS; | |
253 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_KILL_FOCUS; | |
254 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_ENTER; | |
255 | ||
256 | // Help events | |
257 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_HELP; | |
258 | extern WXDLLIMPEXP_CORE const wxEventType wxEVT_DETAILED_HELP; | |
96f6c703 | 259 | |
cbee8f8d VZ |
260 | // these 2 events are the same |
261 | #define wxEVT_COMMAND_TOOL_CLICKED wxEVT_COMMAND_MENU_SELECTED | |
96f6c703 | 262 | |
ad0bae85 | 263 | // ---------------------------------------------------------------------------- |
77d4384e | 264 | // Compatibility |
ad0bae85 VZ |
265 | // ---------------------------------------------------------------------------- |
266 | ||
267 | // this event is also used by wxComboBox and wxSpinCtrl which don't include | |
268 | // wx/textctrl.h in all ports [yet], so declare it here as well | |
269 | // | |
270 | // still, any new code using it should include wx/textctrl.h explicitly | |
ad684023 | 271 | extern const wxEventType WXDLLIMPEXP_CORE wxEVT_COMMAND_TEXT_UPDATED; |
c801d85f | 272 | |
1648d51b VZ |
273 | // the predefined constants for the number of times we propagate event |
274 | // upwards window child-parent chain | |
275 | enum Propagation_state | |
276 | { | |
277 | // don't propagate it at all | |
278 | wxEVENT_PROPAGATE_NONE = 0, | |
279 | ||
280 | // propagate it until it is processed | |
281 | wxEVENT_PROPAGATE_MAX = INT_MAX | |
282 | }; | |
283 | ||
c801d85f | 284 | /* |
77ffb593 | 285 | * wxWidgets events, covering all interesting things that might happen |
c801d85f KB |
286 | * (button clicking, resizing, setting text in widgets, etc.). |
287 | * | |
288 | * For each completely new event type, derive a new event class. | |
289 | * An event CLASS represents a C++ class defining a range of similar event TYPES; | |
290 | * examples are canvas events, panel item command events. | |
291 | * An event TYPE is a unique identifier for a particular system event, | |
292 | * such as a button press or a listbox deselection. | |
293 | * | |
294 | */ | |
295 | ||
bddd7a8d | 296 | class WXDLLIMPEXP_BASE wxEvent : public wxObject |
c801d85f | 297 | { |
e6a6feba GD |
298 | private: |
299 | wxEvent& operator=(const wxEvent&); | |
abcbaea7 | 300 | |
8e72b8b5 RR |
301 | protected: |
302 | wxEvent(const wxEvent&); // for implementing Clone() | |
c801d85f KB |
303 | |
304 | public: | |
d9e2e4c2 | 305 | wxEvent(int winid = 0, wxEventType commandType = wxEVT_NULL ); |
2b854a32 VZ |
306 | |
307 | void SetEventType(wxEventType typ) { m_eventType = typ; } | |
308 | wxEventType GetEventType() const { return m_eventType; } | |
309 | wxObject *GetEventObject() const { return m_eventObject; } | |
310 | void SetEventObject(wxObject *obj) { m_eventObject = obj; } | |
311 | long GetTimestamp() const { return m_timeStamp; } | |
312 | void SetTimestamp(long ts = 0) { m_timeStamp = ts; } | |
313 | int GetId() const { return m_id; } | |
314 | void SetId(int Id) { m_id = Id; } | |
315 | ||
316 | // Can instruct event processor that we wish to ignore this event | |
317 | // (treat as if the event table entry had not been found): this must be done | |
318 | // to allow the event processing by the base classes (calling event.Skip() | |
a0d9c6cb WS |
319 | // is the analog of calling the base class version of a virtual function) |
320 | void Skip(bool skip = true) { m_skipped = skip; } | |
47b378bd | 321 | bool GetSkipped() const { return m_skipped; } |
c801d85f | 322 | |
acd15a3f VZ |
323 | // this function is used to create a copy of the event polymorphically and |
324 | // all derived classes must implement it because otherwise wxPostEvent() | |
325 | // for them wouldn't work (it needs to do a copy of the event) | |
326 | virtual wxEvent *Clone() const = 0; | |
a737331d | 327 | |
87b6002d | 328 | // Implementation only: this test is explicitly anti OO and this function |
1648d51b VZ |
329 | // exists only for optimization purposes. |
330 | bool IsCommandEvent() const { return m_isCommandEvent; } | |
331 | ||
332 | // Determine if this event should be propagating to the parent window. | |
333 | bool ShouldPropagate() const | |
334 | { return m_propagationLevel != wxEVENT_PROPAGATE_NONE; } | |
335 | ||
336 | // Stop an event from propagating to its parent window, returns the old | |
337 | // propagation level value | |
338 | int StopPropagation() | |
339 | { | |
340 | int propagationLevel = m_propagationLevel; | |
341 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; | |
342 | return propagationLevel; | |
343 | } | |
344 | ||
345 | // Resume the event propagation by restoring the propagation level | |
346 | // (returned by StopPropagation()) | |
347 | void ResumePropagation(int propagationLevel) | |
348 | { | |
349 | m_propagationLevel = propagationLevel; | |
350 | } | |
351 | ||
b4b76d61 | 352 | protected: |
2b854a32 | 353 | wxObject* m_eventObject; |
2b854a32 VZ |
354 | wxEventType m_eventType; |
355 | long m_timeStamp; | |
356 | int m_id; | |
b4b76d61 KH |
357 | |
358 | public: | |
359 | // m_callbackUserData is for internal usage only | |
2b854a32 | 360 | wxObject* m_callbackUserData; |
1648d51b VZ |
361 | |
362 | protected: | |
363 | // the propagation level: while it is positive, we propagate the event to | |
364 | // the parent window (if any) | |
365 | // | |
366 | // this one doesn't have to be public, we don't have to worry about | |
367 | // backwards compatibility as it is new | |
368 | int m_propagationLevel; | |
369 | ||
b4b76d61 | 370 | protected: |
42e69d6b | 371 | bool m_skipped; |
193bf013 | 372 | bool m_isCommandEvent; |
1c624631 | 373 | |
8e72b8b5 | 374 | private: |
1648d51b | 375 | // it needs to access our m_propagationLevel |
b5dbe15d | 376 | friend class WXDLLIMPEXP_FWD_BASE wxPropagateOnce; |
1648d51b | 377 | |
8e72b8b5 | 378 | DECLARE_ABSTRACT_CLASS(wxEvent) |
c801d85f KB |
379 | }; |
380 | ||
1648d51b VZ |
381 | /* |
382 | * Helper class to temporarily change an event not to propagate. | |
383 | */ | |
384 | class WXDLLIMPEXP_BASE wxPropagationDisabler | |
385 | { | |
386 | public: | |
387 | wxPropagationDisabler(wxEvent& event) : m_event(event) | |
388 | { | |
389 | m_propagationLevelOld = m_event.StopPropagation(); | |
390 | } | |
391 | ||
392 | ~wxPropagationDisabler() | |
393 | { | |
394 | m_event.ResumePropagation(m_propagationLevelOld); | |
395 | } | |
396 | ||
397 | private: | |
398 | wxEvent& m_event; | |
399 | int m_propagationLevelOld; | |
fc7a2a60 VZ |
400 | |
401 | DECLARE_NO_COPY_CLASS(wxPropagationDisabler) | |
1648d51b VZ |
402 | }; |
403 | ||
404 | /* | |
405 | * Another one to temporarily lower propagation level. | |
406 | */ | |
407 | class WXDLLIMPEXP_BASE wxPropagateOnce | |
408 | { | |
409 | public: | |
410 | wxPropagateOnce(wxEvent& event) : m_event(event) | |
411 | { | |
412 | wxASSERT_MSG( m_event.m_propagationLevel > 0, | |
413 | _T("shouldn't be used unless ShouldPropagate()!") ); | |
414 | ||
415 | m_event.m_propagationLevel--; | |
416 | } | |
417 | ||
418 | ~wxPropagateOnce() | |
419 | { | |
420 | m_event.m_propagationLevel++; | |
421 | } | |
422 | ||
423 | private: | |
424 | wxEvent& m_event; | |
fc7a2a60 VZ |
425 | |
426 | DECLARE_NO_COPY_CLASS(wxPropagateOnce) | |
1648d51b VZ |
427 | }; |
428 | ||
c4fa5aa7 | 429 | |
e90c1d2a VZ |
430 | #if wxUSE_GUI |
431 | ||
1648d51b | 432 | |
c801d85f KB |
433 | // Item or menu event class |
434 | /* | |
435 | wxEVT_COMMAND_BUTTON_CLICKED | |
436 | wxEVT_COMMAND_CHECKBOX_CLICKED | |
437 | wxEVT_COMMAND_CHOICE_SELECTED | |
438 | wxEVT_COMMAND_LISTBOX_SELECTED | |
439 | wxEVT_COMMAND_LISTBOX_DOUBLECLICKED | |
440 | wxEVT_COMMAND_TEXT_UPDATED | |
441 | wxEVT_COMMAND_TEXT_ENTER | |
442 | wxEVT_COMMAND_MENU_SELECTED | |
443 | wxEVT_COMMAND_SLIDER_UPDATED | |
444 | wxEVT_COMMAND_RADIOBOX_SELECTED | |
445 | wxEVT_COMMAND_RADIOBUTTON_SELECTED | |
446 | wxEVT_COMMAND_SCROLLBAR_UPDATED | |
447 | wxEVT_COMMAND_VLBOX_SELECTED | |
448 | wxEVT_COMMAND_COMBOBOX_SELECTED | |
1db8dc4a | 449 | wxEVT_COMMAND_TOGGLEBUTTON_CLICKED |
c801d85f KB |
450 | */ |
451 | ||
bddd7a8d | 452 | class WXDLLIMPEXP_CORE wxCommandEvent : public wxEvent |
c801d85f | 453 | { |
2b854a32 | 454 | public: |
d9e2e4c2 | 455 | wxCommandEvent(wxEventType commandType = wxEVT_NULL, int winid = 0); |
c801d85f | 456 | |
e6a6feba | 457 | wxCommandEvent(const wxCommandEvent& event) |
497dbbd3 | 458 | : wxEvent(event), |
c3f94162 | 459 | m_cmdString(event.m_cmdString), |
497dbbd3 VZ |
460 | m_commandInt(event.m_commandInt), |
461 | m_extraLong(event.m_extraLong), | |
462 | m_clientData(event.m_clientData), | |
463 | m_clientObject(event.m_clientObject) | |
e6a6feba GD |
464 | { } |
465 | ||
2b854a32 VZ |
466 | // Set/Get client data from controls |
467 | void SetClientData(void* clientData) { m_clientData = clientData; } | |
468 | void *GetClientData() const { return m_clientData; } | |
c801d85f | 469 | |
2b854a32 VZ |
470 | // Set/Get client object from controls |
471 | void SetClientObject(wxClientData* clientObject) { m_clientObject = clientObject; } | |
88eadcf2 | 472 | wxClientData *GetClientObject() const { return m_clientObject; } |
f5e27805 | 473 | |
2b854a32 VZ |
474 | // Get listbox selection if single-choice |
475 | int GetSelection() const { return m_commandInt; } | |
c801d85f | 476 | |
2b854a32 | 477 | // Set/Get listbox/choice selection string |
b4b76d61 KH |
478 | void SetString(const wxString& s) { m_cmdString = s; } |
479 | wxString GetString() const; | |
c801d85f | 480 | |
2b854a32 | 481 | // Get checkbox value |
3ca6a5f0 | 482 | bool IsChecked() const { return m_commandInt != 0; } |
c801d85f | 483 | |
a0d9c6cb | 484 | // true if the listbox event was a selection. |
2b854a32 | 485 | bool IsSelection() const { return (m_extraLong != 0); } |
c801d85f | 486 | |
2b854a32 | 487 | void SetExtraLong(long extraLong) { m_extraLong = extraLong; } |
a7bc03c9 | 488 | long GetExtraLong() const { return m_extraLong; } |
c801d85f | 489 | |
2b854a32 | 490 | void SetInt(int i) { m_commandInt = i; } |
fd587c7a | 491 | int GetInt() const { return m_commandInt; } |
c801d85f | 492 | |
8e72b8b5 | 493 | virtual wxEvent *Clone() const { return new wxCommandEvent(*this); } |
aadbdf11 | 494 | |
b4b76d61 | 495 | protected: |
b4b76d61 | 496 | wxString m_cmdString; // String event argument |
2b854a32 VZ |
497 | int m_commandInt; |
498 | long m_extraLong; // Additional information (e.g. select/deselect) | |
499 | void* m_clientData; // Arbitrary client data | |
500 | wxClientData* m_clientObject; // Arbitrary client object | |
f97500b8 | 501 | |
8e72b8b5 | 502 | private: |
fc7a2a60 | 503 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCommandEvent) |
c801d85f KB |
504 | }; |
505 | ||
fd3f686c VZ |
506 | // this class adds a possibility to react (from the user) code to a control |
507 | // notification: allow or veto the operation being reported. | |
bddd7a8d | 508 | class WXDLLIMPEXP_CORE wxNotifyEvent : public wxCommandEvent |
fd3f686c VZ |
509 | { |
510 | public: | |
d9e2e4c2 DE |
511 | wxNotifyEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) |
512 | : wxCommandEvent(commandType, winid) | |
a0d9c6cb | 513 | { m_bAllow = true; } |
e6a6feba GD |
514 | |
515 | wxNotifyEvent(const wxNotifyEvent& event) | |
516 | : wxCommandEvent(event) | |
497dbbd3 | 517 | { m_bAllow = event.m_bAllow; } |
fd3f686c | 518 | |
23f681ec | 519 | // veto the operation (usually it's allowed by default) |
a0d9c6cb | 520 | void Veto() { m_bAllow = false; } |
fd3f686c | 521 | |
23f681ec | 522 | // allow the operation if it was disabled by default |
a0d9c6cb | 523 | void Allow() { m_bAllow = true; } |
23f681ec | 524 | |
fd3f686c VZ |
525 | // for implementation code only: is the operation allowed? |
526 | bool IsAllowed() const { return m_bAllow; } | |
527 | ||
8e72b8b5 | 528 | virtual wxEvent *Clone() const { return new wxNotifyEvent(*this); } |
924ef850 | 529 | |
fd3f686c VZ |
530 | private: |
531 | bool m_bAllow; | |
532 | ||
8e72b8b5 | 533 | private: |
fc7a2a60 | 534 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNotifyEvent) |
fd3f686c VZ |
535 | }; |
536 | ||
d1367c3d | 537 | // Scroll event class, derived form wxCommandEvent. wxScrollEvents are |
e8b669d3 | 538 | // sent by wxSlider and wxScrollBar. |
c801d85f KB |
539 | /* |
540 | wxEVT_SCROLL_TOP | |
541 | wxEVT_SCROLL_BOTTOM | |
542 | wxEVT_SCROLL_LINEUP | |
543 | wxEVT_SCROLL_LINEDOWN | |
544 | wxEVT_SCROLL_PAGEUP | |
545 | wxEVT_SCROLL_PAGEDOWN | |
546 | wxEVT_SCROLL_THUMBTRACK | |
7d56fb8f | 547 | wxEVT_SCROLL_THUMBRELEASE |
cbc85508 | 548 | wxEVT_SCROLL_CHANGED |
c801d85f KB |
549 | */ |
550 | ||
bddd7a8d | 551 | class WXDLLIMPEXP_CORE wxScrollEvent : public wxCommandEvent |
c801d85f | 552 | { |
2b854a32 VZ |
553 | public: |
554 | wxScrollEvent(wxEventType commandType = wxEVT_NULL, | |
d9e2e4c2 | 555 | int winid = 0, int pos = 0, int orient = 0); |
2b854a32 | 556 | |
a7bc03c9 VZ |
557 | int GetOrientation() const { return (int) m_extraLong; } |
558 | int GetPosition() const { return m_commandInt; } | |
2b854a32 VZ |
559 | void SetOrientation(int orient) { m_extraLong = (long) orient; } |
560 | void SetPosition(int pos) { m_commandInt = pos; } | |
f97500b8 | 561 | |
8e72b8b5 | 562 | virtual wxEvent *Clone() const { return new wxScrollEvent(*this); } |
f97500b8 | 563 | |
8e72b8b5 | 564 | private: |
fc7a2a60 | 565 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollEvent) |
c801d85f KB |
566 | }; |
567 | ||
d1367c3d RR |
568 | // ScrollWin event class, derived fom wxEvent. wxScrollWinEvents |
569 | // are sent by wxWindow. | |
570 | /* | |
571 | wxEVT_SCROLLWIN_TOP | |
572 | wxEVT_SCROLLWIN_BOTTOM | |
573 | wxEVT_SCROLLWIN_LINEUP | |
574 | wxEVT_SCROLLWIN_LINEDOWN | |
575 | wxEVT_SCROLLWIN_PAGEUP | |
576 | wxEVT_SCROLLWIN_PAGEDOWN | |
577 | wxEVT_SCROLLWIN_THUMBTRACK | |
7d56fb8f | 578 | wxEVT_SCROLLWIN_THUMBRELEASE |
d1367c3d RR |
579 | */ |
580 | ||
bddd7a8d | 581 | class WXDLLIMPEXP_CORE wxScrollWinEvent : public wxEvent |
d1367c3d | 582 | { |
d1367c3d RR |
583 | public: |
584 | wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, | |
585 | int pos = 0, int orient = 0); | |
b2697d42 VZ |
586 | wxScrollWinEvent(const wxScrollWinEvent & event) : wxEvent(event) |
587 | { m_commandInt = event.m_commandInt; | |
588 | m_extraLong = event.m_extraLong; } | |
d1367c3d | 589 | |
a7bc03c9 VZ |
590 | int GetOrientation() const { return (int) m_extraLong; } |
591 | int GetPosition() const { return m_commandInt; } | |
d1367c3d RR |
592 | void SetOrientation(int orient) { m_extraLong = (long) orient; } |
593 | void SetPosition(int pos) { m_commandInt = pos; } | |
594 | ||
8e72b8b5 | 595 | virtual wxEvent *Clone() const { return new wxScrollWinEvent(*this); } |
1e6feb95 | 596 | |
b4b76d61 | 597 | protected: |
8e72b8b5 | 598 | int m_commandInt; |
20947e08 | 599 | long m_extraLong; |
1e6feb95 | 600 | |
8e72b8b5 | 601 | private: |
fc7a2a60 | 602 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxScrollWinEvent) |
d1367c3d RR |
603 | }; |
604 | ||
c801d85f KB |
605 | // Mouse event class |
606 | ||
607 | /* | |
608 | wxEVT_LEFT_DOWN | |
609 | wxEVT_LEFT_UP | |
610 | wxEVT_MIDDLE_DOWN | |
611 | wxEVT_MIDDLE_UP | |
612 | wxEVT_RIGHT_DOWN | |
613 | wxEVT_RIGHT_UP | |
614 | wxEVT_MOTION | |
615 | wxEVT_ENTER_WINDOW | |
616 | wxEVT_LEAVE_WINDOW | |
617 | wxEVT_LEFT_DCLICK | |
618 | wxEVT_MIDDLE_DCLICK | |
619 | wxEVT_RIGHT_DCLICK | |
620 | wxEVT_NC_LEFT_DOWN | |
621 | wxEVT_NC_LEFT_UP, | |
622 | wxEVT_NC_MIDDLE_DOWN, | |
623 | wxEVT_NC_MIDDLE_UP, | |
624 | wxEVT_NC_RIGHT_DOWN, | |
625 | wxEVT_NC_RIGHT_UP, | |
626 | wxEVT_NC_MOTION, | |
627 | wxEVT_NC_ENTER_WINDOW, | |
628 | wxEVT_NC_LEAVE_WINDOW, | |
629 | wxEVT_NC_LEFT_DCLICK, | |
630 | wxEVT_NC_MIDDLE_DCLICK, | |
631 | wxEVT_NC_RIGHT_DCLICK, | |
632 | */ | |
633 | ||
497dbbd3 VZ |
634 | // the symbolic names for the mouse buttons |
635 | enum | |
636 | { | |
637 | wxMOUSE_BTN_ANY = -1, | |
3e89999c VZ |
638 | wxMOUSE_BTN_NONE = 0, |
639 | wxMOUSE_BTN_LEFT = 1, | |
640 | wxMOUSE_BTN_MIDDLE = 2, | |
01101e2d VZ |
641 | wxMOUSE_BTN_RIGHT = 3, |
642 | wxMOUSE_BTN_AUX1 = 4, | |
643 | wxMOUSE_BTN_AUX2 = 5, | |
644 | wxMOUSE_BTN_MAX | |
497dbbd3 VZ |
645 | }; |
646 | ||
bddd7a8d | 647 | class WXDLLIMPEXP_CORE wxMouseEvent : public wxEvent |
c801d85f | 648 | { |
2b854a32 VZ |
649 | public: |
650 | wxMouseEvent(wxEventType mouseType = wxEVT_NULL); | |
8866abbb | 651 | wxMouseEvent(const wxMouseEvent& event) : wxEvent(event) |
b2697d42 | 652 | { Assign(event); } |
c801d85f | 653 | |
2b854a32 | 654 | // Was it a button event? (*doesn't* mean: is any button *down*?) |
497dbbd3 | 655 | bool IsButton() const { return Button(wxMOUSE_BTN_ANY); } |
c801d85f | 656 | |
3e89999c | 657 | // Was it a down event from this (or any) button? |
497dbbd3 | 658 | bool ButtonDown(int but = wxMOUSE_BTN_ANY) const; |
c801d85f | 659 | |
3e89999c | 660 | // Was it a dclick event from this (or any) button? |
497dbbd3 | 661 | bool ButtonDClick(int but = wxMOUSE_BTN_ANY) const; |
c801d85f | 662 | |
3e89999c | 663 | // Was it a up event from this (or any) button? |
497dbbd3 | 664 | bool ButtonUp(int but = wxMOUSE_BTN_ANY) const; |
c801d85f | 665 | |
3e89999c | 666 | // Was the given button? |
2b854a32 | 667 | bool Button(int but) const; |
c801d85f | 668 | |
3e89999c | 669 | // Was the given button in Down state? |
2b854a32 | 670 | bool ButtonIsDown(int but) const; |
c801d85f | 671 | |
497dbbd3 | 672 | // Get the button which is changing state (wxMOUSE_BTN_NONE if none) |
1e6feb95 VZ |
673 | int GetButton() const; |
674 | ||
2b854a32 VZ |
675 | // Find state of shift/control keys |
676 | bool ControlDown() const { return m_controlDown; } | |
677 | bool MetaDown() const { return m_metaDown; } | |
678 | bool AltDown() const { return m_altDown; } | |
679 | bool ShiftDown() const { return m_shiftDown; } | |
a2bd1520 VZ |
680 | bool CmdDown() const |
681 | { | |
682 | #if defined(__WXMAC__) || defined(__WXCOCOA__) | |
683 | return MetaDown(); | |
684 | #else | |
685 | return ControlDown(); | |
686 | #endif | |
687 | } | |
c801d85f | 688 | |
2b854a32 VZ |
689 | // Find which event was just generated |
690 | bool LeftDown() const { return (m_eventType == wxEVT_LEFT_DOWN); } | |
691 | bool MiddleDown() const { return (m_eventType == wxEVT_MIDDLE_DOWN); } | |
692 | bool RightDown() const { return (m_eventType == wxEVT_RIGHT_DOWN); } | |
01101e2d VZ |
693 | bool Aux1Down() const { return (m_eventType == wxEVT_AUX1_DOWN); } |
694 | bool Aux2Down() const { return (m_eventType == wxEVT_AUX2_DOWN); } | |
c801d85f | 695 | |
2b854a32 VZ |
696 | bool LeftUp() const { return (m_eventType == wxEVT_LEFT_UP); } |
697 | bool MiddleUp() const { return (m_eventType == wxEVT_MIDDLE_UP); } | |
698 | bool RightUp() const { return (m_eventType == wxEVT_RIGHT_UP); } | |
01101e2d VZ |
699 | bool Aux1Up() const { return (m_eventType == wxEVT_AUX1_UP); } |
700 | bool Aux2Up() const { return (m_eventType == wxEVT_AUX2_UP); } | |
c801d85f | 701 | |
2b854a32 VZ |
702 | bool LeftDClick() const { return (m_eventType == wxEVT_LEFT_DCLICK); } |
703 | bool MiddleDClick() const { return (m_eventType == wxEVT_MIDDLE_DCLICK); } | |
704 | bool RightDClick() const { return (m_eventType == wxEVT_RIGHT_DCLICK); } | |
01101e2d VZ |
705 | bool Aux1DClick() const { return (m_eventType == wxEVT_AUX1_UP); } |
706 | bool Aux2DClick() const { return (m_eventType == wxEVT_AUX2_UP); } | |
c801d85f | 707 | |
2b854a32 VZ |
708 | // Find the current state of the mouse buttons (regardless |
709 | // of current event type) | |
710 | bool LeftIsDown() const { return m_leftDown; } | |
711 | bool MiddleIsDown() const { return m_middleDown; } | |
712 | bool RightIsDown() const { return m_rightDown; } | |
01101e2d VZ |
713 | bool Aux1IsDown() const { return m_aux1Down; } |
714 | bool Aux2IsDown() const { return m_aux2Down; } | |
c801d85f | 715 | |
2b854a32 VZ |
716 | // True if a button is down and the mouse is moving |
717 | bool Dragging() const | |
718 | { | |
5b66d31a | 719 | return (m_eventType == wxEVT_MOTION) && ButtonIsDown(wxMOUSE_BTN_ANY); |
2b854a32 | 720 | } |
c801d85f | 721 | |
2b854a32 | 722 | // True if the mouse is moving, and no button is down |
6f63704f VZ |
723 | bool Moving() const |
724 | { | |
5b66d31a | 725 | return (m_eventType == wxEVT_MOTION) && !ButtonIsDown(wxMOUSE_BTN_ANY); |
6f63704f | 726 | } |
c801d85f | 727 | |
2b854a32 VZ |
728 | // True if the mouse is just entering the window |
729 | bool Entering() const { return (m_eventType == wxEVT_ENTER_WINDOW); } | |
c801d85f | 730 | |
2b854a32 VZ |
731 | // True if the mouse is just leaving the window |
732 | bool Leaving() const { return (m_eventType == wxEVT_LEAVE_WINDOW); } | |
c801d85f | 733 | |
8866abbb VZ |
734 | // Returns the number of mouse clicks associated with this event. |
735 | int GetClickCount() const { return m_clickCount; } | |
736 | ||
737 | ||
2b854a32 | 738 | // Find the position of the event |
20947e08 | 739 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const |
b02da6b1 VZ |
740 | { |
741 | if (xpos) | |
20947e08 | 742 | *xpos = m_x; |
b02da6b1 VZ |
743 | if (ypos) |
744 | *ypos = m_y; | |
745 | } | |
746 | ||
bf57d1ad | 747 | void GetPosition(long *xpos, long *ypos) const |
b02da6b1 VZ |
748 | { |
749 | if (xpos) | |
20947e08 | 750 | *xpos = (long)m_x; |
b02da6b1 | 751 | if (ypos) |
bf57d1ad | 752 | *ypos = (long)m_y; |
b02da6b1 | 753 | } |
c801d85f | 754 | |
2b854a32 VZ |
755 | // Find the position of the event |
756 | wxPoint GetPosition() const { return wxPoint(m_x, m_y); } | |
c801d85f | 757 | |
2b854a32 | 758 | // Find the logical position of the event given the DC |
a7bc03c9 | 759 | wxPoint GetLogicalPosition(const wxDC& dc) const; |
c801d85f | 760 | |
2b854a32 | 761 | // Get X position |
6cedba09 | 762 | wxCoord GetX() const { return m_x; } |
c801d85f | 763 | |
2b854a32 | 764 | // Get Y position |
6cedba09 | 765 | wxCoord GetY() const { return m_y; } |
c801d85f | 766 | |
d2c52078 RD |
767 | // Get wheel rotation, positive or negative indicates direction of |
768 | // rotation. Current devices all send an event when rotation is equal to | |
769 | // +/-WheelDelta, but this allows for finer resolution devices to be | |
770 | // created in the future. Because of this you shouldn't assume that one | |
771 | // event is equal to 1 line or whatever, but you should be able to either | |
772 | // do partial line scrolling or wait until +/-WheelDelta rotation values | |
773 | // have been accumulated before scrolling. | |
774 | int GetWheelRotation() const { return m_wheelRotation; } | |
775 | ||
776 | // Get wheel delta, normally 120. This is the threshold for action to be | |
777 | // taken, and one such action (for example, scrolling one increment) | |
778 | // should occur for each delta. | |
779 | int GetWheelDelta() const { return m_wheelDelta; } | |
780 | ||
aea37008 SC |
781 | // Gets the axis the wheel operation concerns, 0 being the y axis as on |
782 | // most mouse wheels, 1 is the x axis for things like MightyMouse scrolls | |
783 | // or horizontal trackpad scrolling | |
784 | int GetWheelAxis() const { return m_wheelAxis; } | |
785 | ||
d2c52078 RD |
786 | // Returns the configured number of lines (or whatever) to be scrolled per |
787 | // wheel action. Defaults to one. | |
788 | int GetLinesPerAction() const { return m_linesPerAction; } | |
aa767a45 | 789 | |
9b9337da | 790 | // Is the system set to do page scrolling? |
c2bbeff0 | 791 | bool IsPageScroll() const { return ((unsigned int)m_linesPerAction == UINT_MAX); } |
9b9337da | 792 | |
8e72b8b5 | 793 | virtual wxEvent *Clone() const { return new wxMouseEvent(*this); } |
aadbdf11 | 794 | |
162e998c | 795 | wxMouseEvent& operator=(const wxMouseEvent& event) { if (&event != this) Assign(event); return *this; } |
c7d176e2 | 796 | |
c801d85f | 797 | public: |
b02da6b1 VZ |
798 | wxCoord m_x, m_y; |
799 | ||
2b854a32 VZ |
800 | bool m_leftDown; |
801 | bool m_middleDown; | |
802 | bool m_rightDown; | |
01101e2d VZ |
803 | bool m_aux1Down; |
804 | bool m_aux2Down; | |
2b854a32 VZ |
805 | |
806 | bool m_controlDown; | |
807 | bool m_shiftDown; | |
808 | bool m_altDown; | |
809 | bool m_metaDown; | |
aa767a45 | 810 | |
8866abbb VZ |
811 | int m_clickCount; |
812 | ||
aea37008 | 813 | int m_wheelAxis; |
d2c52078 RD |
814 | int m_wheelRotation; |
815 | int m_wheelDelta; | |
816 | int m_linesPerAction; | |
1e6feb95 | 817 | |
abcbaea7 VZ |
818 | protected: |
819 | void Assign(const wxMouseEvent& evt); | |
820 | ||
1e6feb95 VZ |
821 | private: |
822 | DECLARE_DYNAMIC_CLASS(wxMouseEvent) | |
c801d85f KB |
823 | }; |
824 | ||
43b5058d VZ |
825 | // Cursor set event |
826 | ||
827 | /* | |
828 | wxEVT_SET_CURSOR | |
829 | */ | |
830 | ||
bddd7a8d | 831 | class WXDLLIMPEXP_CORE wxSetCursorEvent : public wxEvent |
43b5058d VZ |
832 | { |
833 | public: | |
8e72b8b5 | 834 | wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0) |
497dbbd3 VZ |
835 | : wxEvent(0, wxEVT_SET_CURSOR), |
836 | m_x(x), m_y(y), m_cursor() | |
e6a6feba | 837 | { } |
43b5058d | 838 | |
b2697d42 VZ |
839 | wxSetCursorEvent(const wxSetCursorEvent & event) |
840 | : wxEvent(event), | |
841 | m_x(event.m_x), | |
842 | m_y(event.m_y), | |
843 | m_cursor(event.m_cursor) | |
844 | { } | |
1d2eddff | 845 | |
43b5058d VZ |
846 | wxCoord GetX() const { return m_x; } |
847 | wxCoord GetY() const { return m_y; } | |
848 | ||
849 | void SetCursor(const wxCursor& cursor) { m_cursor = cursor; } | |
850 | const wxCursor& GetCursor() const { return m_cursor; } | |
851 | bool HasCursor() const { return m_cursor.Ok(); } | |
852 | ||
8e72b8b5 | 853 | virtual wxEvent *Clone() const { return new wxSetCursorEvent(*this); } |
f97500b8 | 854 | |
43b5058d VZ |
855 | private: |
856 | wxCoord m_x, m_y; | |
857 | wxCursor m_cursor; | |
f97500b8 | 858 | |
8e72b8b5 | 859 | private: |
fc7a2a60 | 860 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSetCursorEvent) |
43b5058d VZ |
861 | }; |
862 | ||
c801d85f KB |
863 | // Keyboard input event class |
864 | ||
865 | /* | |
866 | wxEVT_CHAR | |
867 | wxEVT_CHAR_HOOK | |
4ce81a75 | 868 | wxEVT_KEY_DOWN |
c801d85f | 869 | wxEVT_KEY_UP |
5048c832 | 870 | wxEVT_HOTKEY |
c801d85f KB |
871 | */ |
872 | ||
bddd7a8d | 873 | class WXDLLIMPEXP_CORE wxKeyEvent : public wxEvent |
c801d85f | 874 | { |
c801d85f | 875 | public: |
2b854a32 | 876 | wxKeyEvent(wxEventType keyType = wxEVT_NULL); |
b2697d42 | 877 | wxKeyEvent(const wxKeyEvent& evt); |
c801d85f | 878 | |
e7102772 VZ |
879 | // can be used check if the key event has exactly the given modifiers: |
880 | // "GetModifiers() = wxMOD_CONTROL" is easier to write than "ControlDown() | |
881 | // && !MetaDown() && !AltDown() && !ShiftDown()" | |
882 | int GetModifiers() const | |
883 | { | |
884 | return (m_controlDown ? wxMOD_CONTROL : 0) | | |
885 | (m_shiftDown ? wxMOD_SHIFT : 0) | | |
886 | (m_metaDown ? wxMOD_META : 0) | | |
887 | (m_altDown ? wxMOD_ALT : 0); | |
888 | } | |
889 | ||
2b854a32 VZ |
890 | // Find state of shift/control keys |
891 | bool ControlDown() const { return m_controlDown; } | |
e7102772 | 892 | bool ShiftDown() const { return m_shiftDown; } |
2b854a32 VZ |
893 | bool MetaDown() const { return m_metaDown; } |
894 | bool AltDown() const { return m_altDown; } | |
f6bcfd97 | 895 | |
a2bd1520 VZ |
896 | // "Cmd" is a pseudo key which is Control for PC and Unix platforms but |
897 | // Apple ("Command") key under Macs: it makes often sense to use it instead | |
898 | // of, say, ControlDown() because Cmd key is used for the same thing under | |
899 | // Mac as Ctrl elsewhere (but Ctrl still exists, just not used for this | |
900 | // purpose under Mac) | |
901 | bool CmdDown() const | |
902 | { | |
903 | #if defined(__WXMAC__) || defined(__WXCOCOA__) | |
904 | return MetaDown(); | |
905 | #else | |
906 | return ControlDown(); | |
907 | #endif | |
908 | } | |
909 | ||
d11710cb VZ |
910 | // exclude MetaDown() from HasModifiers() because NumLock under X is often |
911 | // configured as mod2 modifier, yet the key events even when it is pressed | |
912 | // should be processed normally, not like Ctrl- or Alt-key | |
913 | bool HasModifiers() const { return ControlDown() || AltDown(); } | |
f6bcfd97 BP |
914 | |
915 | // get the key code: an ASCII7 char or an element of wxKeyCode enum | |
916 | int GetKeyCode() const { return (int)m_keyCode; } | |
c801d85f | 917 | |
a3db5254 VZ |
918 | #if wxUSE_UNICODE |
919 | // get the Unicode character corresponding to this key | |
920 | wxChar GetUnicodeKey() const { return m_uniChar; } | |
921 | #endif // wxUSE_UNICODE | |
922 | ||
9c7df356 VZ |
923 | // get the raw key code (platform-dependent) |
924 | wxUint32 GetRawKeyCode() const { return m_rawCode; } | |
925 | ||
926 | // get the raw key flags (platform-dependent) | |
927 | wxUint32 GetRawKeyFlags() const { return m_rawFlags; } | |
928 | ||
2b854a32 | 929 | // Find the position of the event |
b02da6b1 VZ |
930 | void GetPosition(wxCoord *xpos, wxCoord *ypos) const |
931 | { | |
20947e08 | 932 | if (xpos) *xpos = m_x; |
b02da6b1 VZ |
933 | if (ypos) *ypos = m_y; |
934 | } | |
935 | ||
bf57d1ad | 936 | void GetPosition(long *xpos, long *ypos) const |
b02da6b1 | 937 | { |
20947e08 | 938 | if (xpos) *xpos = (long)m_x; |
bf57d1ad | 939 | if (ypos) *ypos = (long)m_y; |
b02da6b1 | 940 | } |
803ef874 JS |
941 | |
942 | wxPoint GetPosition() const | |
943 | { return wxPoint(m_x, m_y); } | |
c801d85f | 944 | |
2b854a32 | 945 | // Get X position |
b02da6b1 | 946 | wxCoord GetX() const { return m_x; } |
c801d85f | 947 | |
2b854a32 | 948 | // Get Y position |
b02da6b1 | 949 | wxCoord GetY() const { return m_y; } |
c801d85f | 950 | |
8e72b8b5 | 951 | virtual wxEvent *Clone() const { return new wxKeyEvent(*this); } |
f97500b8 VZ |
952 | |
953 | // we do need to copy wxKeyEvent sometimes (in wxTreeCtrl code, for | |
954 | // example) | |
955 | wxKeyEvent& operator=(const wxKeyEvent& evt) | |
956 | { | |
162e998c PC |
957 | if (&evt != this) |
958 | { | |
959 | m_x = evt.m_x; | |
960 | m_y = evt.m_y; | |
961 | ||
962 | m_keyCode = evt.m_keyCode; | |
963 | ||
964 | m_controlDown = evt.m_controlDown; | |
965 | m_shiftDown = evt.m_shiftDown; | |
966 | m_altDown = evt.m_altDown; | |
967 | m_metaDown = evt.m_metaDown; | |
968 | m_scanCode = evt.m_scanCode; | |
969 | m_rawCode = evt.m_rawCode; | |
970 | m_rawFlags = evt.m_rawFlags; | |
cedea72f | 971 | #if wxUSE_UNICODE |
162e998c | 972 | m_uniChar = evt.m_uniChar; |
cedea72f | 973 | #endif |
162e998c | 974 | } |
f97500b8 VZ |
975 | return *this; |
976 | } | |
977 | ||
2b854a32 | 978 | public: |
b02da6b1 VZ |
979 | wxCoord m_x, m_y; |
980 | ||
2b854a32 | 981 | long m_keyCode; |
b02da6b1 | 982 | |
e7102772 | 983 | // TODO: replace those with a single m_modifiers bitmask of wxMOD_XXX? |
2b854a32 VZ |
984 | bool m_controlDown; |
985 | bool m_shiftDown; | |
986 | bool m_altDown; | |
987 | bool m_metaDown; | |
e7102772 VZ |
988 | |
989 | // FIXME: what is this for? relation to m_rawXXX? | |
b0e813a0 | 990 | bool m_scanCode; |
f97500b8 | 991 | |
2b5f62a0 VZ |
992 | #if wxUSE_UNICODE |
993 | // This contains the full Unicode character | |
994 | // in a character events in Unicode mode | |
995 | wxChar m_uniChar; | |
996 | #endif | |
997 | ||
998 | // these fields contain the platform-specific information about | |
999 | // key that was pressed | |
9c7df356 VZ |
1000 | wxUint32 m_rawCode; |
1001 | wxUint32 m_rawFlags; | |
1002 | ||
8e72b8b5 RR |
1003 | private: |
1004 | DECLARE_DYNAMIC_CLASS(wxKeyEvent) | |
c801d85f KB |
1005 | }; |
1006 | ||
1007 | // Size event class | |
1008 | /* | |
1009 | wxEVT_SIZE | |
1010 | */ | |
1011 | ||
bddd7a8d | 1012 | class WXDLLIMPEXP_CORE wxSizeEvent : public wxEvent |
c801d85f | 1013 | { |
2b854a32 | 1014 | public: |
497dbbd3 | 1015 | wxSizeEvent() : wxEvent(0, wxEVT_SIZE) |
e6a6feba | 1016 | { } |
d9e2e4c2 DE |
1017 | wxSizeEvent(const wxSize& sz, int winid = 0) |
1018 | : wxEvent(winid, wxEVT_SIZE), | |
497dbbd3 | 1019 | m_size(sz) |
e6a6feba | 1020 | { } |
1d2eddff | 1021 | wxSizeEvent(const wxSizeEvent & event) |
b2697d42 | 1022 | : wxEvent(event), |
5706de1c | 1023 | m_size(event.m_size), m_rect(event.m_rect) |
b2697d42 | 1024 | { } |
5706de1c | 1025 | wxSizeEvent(const wxRect& rect, int id = 0) |
e00865fa | 1026 | : m_size(rect.GetSize()), m_rect(rect) |
5706de1c | 1027 | { m_eventType = wxEVT_SIZING; m_id = id; } |
c2bbeff0 | 1028 | |
2b854a32 | 1029 | wxSize GetSize() const { return m_size; } |
5706de1c | 1030 | wxRect GetRect() const { return m_rect; } |
fbfb8bcc | 1031 | void SetRect(const wxRect& rect) { m_rect = rect; } |
aadbdf11 | 1032 | |
8e72b8b5 RR |
1033 | virtual wxEvent *Clone() const { return new wxSizeEvent(*this); } |
1034 | ||
1035 | public: | |
b4b76d61 | 1036 | // For internal usage only. Will be converted to protected members. |
8e72b8b5 | 1037 | wxSize m_size; |
5706de1c | 1038 | wxRect m_rect; // Used for wxEVT_SIZING |
8e72b8b5 | 1039 | |
f97500b8 | 1040 | private: |
fc7a2a60 | 1041 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSizeEvent) |
c801d85f KB |
1042 | }; |
1043 | ||
1044 | // Move event class | |
1045 | ||
1046 | /* | |
1047 | wxEVT_MOVE | |
1048 | */ | |
1049 | ||
bddd7a8d | 1050 | class WXDLLIMPEXP_CORE wxMoveEvent : public wxEvent |
c801d85f | 1051 | { |
2b854a32 | 1052 | public: |
e6a6feba GD |
1053 | wxMoveEvent() |
1054 | : wxEvent(0, wxEVT_MOVE) | |
e6a6feba | 1055 | { } |
d9e2e4c2 DE |
1056 | wxMoveEvent(const wxPoint& pos, int winid = 0) |
1057 | : wxEvent(winid, wxEVT_MOVE), | |
497dbbd3 | 1058 | m_pos(pos) |
e6a6feba | 1059 | { } |
1d2eddff JS |
1060 | wxMoveEvent(const wxMoveEvent& event) |
1061 | : wxEvent(event), | |
b2697d42 VZ |
1062 | m_pos(event.m_pos) |
1063 | { } | |
5706de1c JS |
1064 | wxMoveEvent(const wxRect& rect, int id = 0) |
1065 | : m_pos(rect.GetPosition()), m_rect(rect) | |
1066 | { m_eventType = wxEVT_MOVING; m_id = id; } | |
c2bbeff0 | 1067 | |
2b854a32 | 1068 | wxPoint GetPosition() const { return m_pos; } |
d7f03cae | 1069 | void SetPosition(const wxPoint& pos) { m_pos = pos; } |
5706de1c | 1070 | wxRect GetRect() const { return m_rect; } |
fbfb8bcc | 1071 | void SetRect(const wxRect& rect) { m_rect = rect; } |
aadbdf11 | 1072 | |
8e72b8b5 | 1073 | virtual wxEvent *Clone() const { return new wxMoveEvent(*this); } |
f97500b8 | 1074 | |
b4b76d61 | 1075 | protected: |
8e72b8b5 | 1076 | wxPoint m_pos; |
5706de1c | 1077 | wxRect m_rect; |
f97500b8 | 1078 | |
8e72b8b5 | 1079 | private: |
fc7a2a60 | 1080 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMoveEvent) |
c801d85f KB |
1081 | }; |
1082 | ||
1083 | // Paint event class | |
1084 | /* | |
1085 | wxEVT_PAINT | |
1086 | wxEVT_NC_PAINT | |
1087 | wxEVT_PAINT_ICON | |
1088 | */ | |
1089 | ||
b078fa02 JS |
1090 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
1091 | // see comments in src/msw|os2/dcclient.cpp where g_isPainting is defined | |
bddd7a8d | 1092 | extern WXDLLIMPEXP_CORE int g_isPainting; |
edccf428 VZ |
1093 | #endif // debug |
1094 | ||
bddd7a8d | 1095 | class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent |
c801d85f | 1096 | { |
2b854a32 | 1097 | public: |
edccf428 | 1098 | wxPaintEvent(int Id = 0) |
e6a6feba | 1099 | : wxEvent(Id, wxEVT_PAINT) |
edccf428 | 1100 | { |
b078fa02 | 1101 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
edccf428 VZ |
1102 | // set the internal flag for the duration of processing of WM_PAINT |
1103 | g_isPainting++; | |
1104 | #endif // debug | |
1105 | } | |
1106 | ||
4e689ecd VZ |
1107 | // default copy ctor and dtor are normally fine, we only need them to keep |
1108 | // g_isPainting updated in debug build | |
b078fa02 | 1109 | #if defined(__WXDEBUG__) && (defined(__WXMSW__) || defined(__WXPM__)) |
4e689ecd VZ |
1110 | wxPaintEvent(const wxPaintEvent& event) |
1111 | : wxEvent(event) | |
1112 | { | |
1113 | g_isPainting++; | |
1114 | } | |
1115 | ||
d3c7fc99 | 1116 | virtual ~wxPaintEvent() |
edccf428 VZ |
1117 | { |
1118 | g_isPainting--; | |
1119 | } | |
1120 | #endif // debug | |
8e72b8b5 RR |
1121 | |
1122 | virtual wxEvent *Clone() const { return new wxPaintEvent(*this); } | |
f97500b8 | 1123 | |
8e72b8b5 | 1124 | private: |
fc7a2a60 | 1125 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaintEvent) |
c801d85f KB |
1126 | }; |
1127 | ||
bddd7a8d | 1128 | class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent |
1e6feb95 VZ |
1129 | { |
1130 | public: | |
d9e2e4c2 DE |
1131 | wxNcPaintEvent(int winid = 0) |
1132 | : wxEvent(winid, wxEVT_NC_PAINT) | |
e6a6feba | 1133 | { } |
f97500b8 | 1134 | |
8e72b8b5 | 1135 | virtual wxEvent *Clone() const { return new wxNcPaintEvent(*this); } |
1e6feb95 VZ |
1136 | |
1137 | private: | |
fc7a2a60 | 1138 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNcPaintEvent) |
1e6feb95 VZ |
1139 | }; |
1140 | ||
c801d85f KB |
1141 | // Erase background event class |
1142 | /* | |
1143 | wxEVT_ERASE_BACKGROUND | |
1144 | */ | |
1145 | ||
bddd7a8d | 1146 | class WXDLLIMPEXP_CORE wxEraseEvent : public wxEvent |
c801d85f | 1147 | { |
2b854a32 | 1148 | public: |
2b854a32 | 1149 | wxEraseEvent(int Id = 0, wxDC *dc = (wxDC *) NULL) |
497dbbd3 VZ |
1150 | : wxEvent(Id, wxEVT_ERASE_BACKGROUND), |
1151 | m_dc(dc) | |
e6a6feba GD |
1152 | { } |
1153 | ||
1154 | wxEraseEvent(const wxEraseEvent& event) | |
497dbbd3 VZ |
1155 | : wxEvent(event), |
1156 | m_dc(event.m_dc) | |
e6a6feba | 1157 | { } |
f97500b8 | 1158 | |
2b854a32 | 1159 | wxDC *GetDC() const { return m_dc; } |
aadbdf11 | 1160 | |
8e72b8b5 | 1161 | virtual wxEvent *Clone() const { return new wxEraseEvent(*this); } |
f97500b8 | 1162 | |
b4b76d61 | 1163 | protected: |
8e72b8b5 RR |
1164 | wxDC *m_dc; |
1165 | ||
1166 | private: | |
fc7a2a60 | 1167 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxEraseEvent) |
c801d85f KB |
1168 | }; |
1169 | ||
1170 | // Focus event class | |
1171 | /* | |
1172 | wxEVT_SET_FOCUS | |
1173 | wxEVT_KILL_FOCUS | |
1174 | */ | |
1175 | ||
bddd7a8d | 1176 | class WXDLLIMPEXP_CORE wxFocusEvent : public wxEvent |
c801d85f | 1177 | { |
2b854a32 | 1178 | public: |
d9e2e4c2 DE |
1179 | wxFocusEvent(wxEventType type = wxEVT_NULL, int winid = 0) |
1180 | : wxEvent(winid, type) | |
497dbbd3 | 1181 | { m_win = NULL; } |
e6a6feba GD |
1182 | |
1183 | wxFocusEvent(const wxFocusEvent& event) | |
1184 | : wxEvent(event) | |
497dbbd3 | 1185 | { m_win = event.m_win; } |
1e6feb95 | 1186 | |
8e72b8b5 | 1187 | // The window associated with this event is the window which had focus |
1e6feb95 | 1188 | // before for SET event and the window which will have focus for the KILL |
8e72b8b5 | 1189 | // one. NB: it may be NULL in both cases! |
1e6feb95 VZ |
1190 | wxWindow *GetWindow() const { return m_win; } |
1191 | void SetWindow(wxWindow *win) { m_win = win; } | |
1192 | ||
8e72b8b5 | 1193 | virtual wxEvent *Clone() const { return new wxFocusEvent(*this); } |
f97500b8 | 1194 | |
1e6feb95 VZ |
1195 | private: |
1196 | wxWindow *m_win; | |
1197 | ||
8e72b8b5 | 1198 | private: |
fc7a2a60 | 1199 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFocusEvent) |
c801d85f KB |
1200 | }; |
1201 | ||
456bc6d9 | 1202 | // wxChildFocusEvent notifies the parent that a child has got the focus: unlike |
1648d51b | 1203 | // wxFocusEvent it is propagated upwards the window chain |
bddd7a8d | 1204 | class WXDLLIMPEXP_CORE wxChildFocusEvent : public wxCommandEvent |
456bc6d9 VZ |
1205 | { |
1206 | public: | |
1207 | wxChildFocusEvent(wxWindow *win = NULL); | |
1208 | ||
1209 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
1210 | ||
8e72b8b5 | 1211 | virtual wxEvent *Clone() const { return new wxChildFocusEvent(*this); } |
f97500b8 | 1212 | |
8e72b8b5 | 1213 | private: |
fc7a2a60 | 1214 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxChildFocusEvent) |
456bc6d9 VZ |
1215 | }; |
1216 | ||
c801d85f KB |
1217 | // Activate event class |
1218 | /* | |
1219 | wxEVT_ACTIVATE | |
1220 | wxEVT_ACTIVATE_APP | |
afafd942 | 1221 | wxEVT_HIBERNATE |
c801d85f KB |
1222 | */ |
1223 | ||
bddd7a8d | 1224 | class WXDLLIMPEXP_CORE wxActivateEvent : public wxEvent |
c801d85f | 1225 | { |
2b854a32 | 1226 | public: |
a0d9c6cb | 1227 | wxActivateEvent(wxEventType type = wxEVT_NULL, bool active = true, int Id = 0) |
e6a6feba | 1228 | : wxEvent(Id, type) |
497dbbd3 | 1229 | { m_active = active; } |
1d2eddff JS |
1230 | wxActivateEvent(const wxActivateEvent& event) |
1231 | : wxEvent(event) | |
b2697d42 | 1232 | { m_active = event.m_active; } |
c2bbeff0 | 1233 | |
2b854a32 | 1234 | bool GetActive() const { return m_active; } |
c801d85f | 1235 | |
8e72b8b5 | 1236 | virtual wxEvent *Clone() const { return new wxActivateEvent(*this); } |
aadbdf11 | 1237 | |
2b854a32 VZ |
1238 | private: |
1239 | bool m_active; | |
8e72b8b5 RR |
1240 | |
1241 | private: | |
fc7a2a60 | 1242 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxActivateEvent) |
c801d85f KB |
1243 | }; |
1244 | ||
1245 | // InitDialog event class | |
1246 | /* | |
1247 | wxEVT_INIT_DIALOG | |
1248 | */ | |
1249 | ||
bddd7a8d | 1250 | class WXDLLIMPEXP_CORE wxInitDialogEvent : public wxEvent |
c801d85f | 1251 | { |
2b854a32 VZ |
1252 | public: |
1253 | wxInitDialogEvent(int Id = 0) | |
e6a6feba GD |
1254 | : wxEvent(Id, wxEVT_INIT_DIALOG) |
1255 | { } | |
8e72b8b5 RR |
1256 | |
1257 | virtual wxEvent *Clone() const { return new wxInitDialogEvent(*this); } | |
f97500b8 VZ |
1258 | |
1259 | private: | |
fc7a2a60 | 1260 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxInitDialogEvent) |
c801d85f KB |
1261 | }; |
1262 | ||
1263 | // Miscellaneous menu event class | |
1264 | /* | |
ccef86c7 VZ |
1265 | wxEVT_MENU_OPEN, |
1266 | wxEVT_MENU_CLOSE, | |
c801d85f | 1267 | wxEVT_MENU_HIGHLIGHT, |
c801d85f KB |
1268 | */ |
1269 | ||
bddd7a8d | 1270 | class WXDLLIMPEXP_CORE wxMenuEvent : public wxEvent |
c801d85f | 1271 | { |
c801d85f | 1272 | public: |
92f1a59c | 1273 | wxMenuEvent(wxEventType type = wxEVT_NULL, int winid = 0, wxMenu* menu = NULL) |
d9e2e4c2 | 1274 | : wxEvent(winid, type) |
fc7a2a60 | 1275 | { m_menuId = winid; m_menu = menu; } |
1d2eddff JS |
1276 | wxMenuEvent(const wxMenuEvent & event) |
1277 | : wxEvent(event) | |
92f1a59c | 1278 | { m_menuId = event.m_menuId; m_menu = event.m_menu; } |
c2bbeff0 | 1279 | |
ccef86c7 | 1280 | // only for wxEVT_MENU_HIGHLIGHT |
aadbdf11 | 1281 | int GetMenuId() const { return m_menuId; } |
c801d85f | 1282 | |
ccef86c7 | 1283 | // only for wxEVT_MENU_OPEN/CLOSE |
1a18887b | 1284 | bool IsPopup() const { return m_menuId == wxID_ANY; } |
ccef86c7 | 1285 | |
92f1a59c JS |
1286 | // only for wxEVT_MENU_OPEN/CLOSE |
1287 | wxMenu* GetMenu() const { return m_menu; } | |
1288 | ||
8e72b8b5 | 1289 | virtual wxEvent *Clone() const { return new wxMenuEvent(*this); } |
f97500b8 | 1290 | |
2b854a32 | 1291 | private: |
92f1a59c JS |
1292 | int m_menuId; |
1293 | wxMenu* m_menu; | |
f97500b8 | 1294 | |
fc7a2a60 | 1295 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMenuEvent) |
c801d85f KB |
1296 | }; |
1297 | ||
1298 | // Window close or session close event class | |
1299 | /* | |
1300 | wxEVT_CLOSE_WINDOW, | |
1301 | wxEVT_END_SESSION, | |
1302 | wxEVT_QUERY_END_SESSION | |
1303 | */ | |
1304 | ||
bddd7a8d | 1305 | class WXDLLIMPEXP_CORE wxCloseEvent : public wxEvent |
c801d85f | 1306 | { |
c801d85f | 1307 | public: |
d9e2e4c2 DE |
1308 | wxCloseEvent(wxEventType type = wxEVT_NULL, int winid = 0) |
1309 | : wxEvent(winid, type), | |
a0d9c6cb WS |
1310 | m_loggingOff(true), |
1311 | m_veto(false), // should be false by default | |
1312 | m_canVeto(true) {} | |
a3bf7524 | 1313 | |
1d2eddff JS |
1314 | wxCloseEvent(const wxCloseEvent & event) |
1315 | : wxEvent(event), | |
b2697d42 VZ |
1316 | m_loggingOff(event.m_loggingOff), |
1317 | m_veto(event.m_veto), | |
a3bf7524 | 1318 | m_canVeto(event.m_canVeto) {} |
c2bbeff0 | 1319 | |
2b854a32 | 1320 | void SetLoggingOff(bool logOff) { m_loggingOff = logOff; } |
4bcfcdef VZ |
1321 | bool GetLoggingOff() const |
1322 | { | |
1323 | // m_loggingOff flag is only used by wxEVT_[QUERY_]END_SESSION, it | |
1324 | // doesn't make sense for wxEVT_CLOSE_WINDOW | |
1325 | wxASSERT_MSG( m_eventType != wxEVT_CLOSE_WINDOW, | |
1326 | _T("this flag is for end session events only") ); | |
1327 | ||
1328 | return m_loggingOff; | |
1329 | } | |
2b854a32 | 1330 | |
a0d9c6cb | 1331 | void Veto(bool veto = true) |
fe4e9e6c | 1332 | { |
a0d9c6cb | 1333 | // GetVeto() will return false anyhow... |
fe4e9e6c | 1334 | wxCHECK_RET( m_canVeto, |
223d09f6 | 1335 | wxT("call to Veto() ignored (can't veto this event)") ); |
fe4e9e6c VZ |
1336 | |
1337 | m_veto = veto; | |
1338 | } | |
2b854a32 VZ |
1339 | void SetCanVeto(bool canVeto) { m_canVeto = canVeto; } |
1340 | bool CanVeto() const { return m_canVeto; } | |
fe4e9e6c | 1341 | bool GetVeto() const { return m_canVeto && m_veto; } |
c801d85f | 1342 | |
8e72b8b5 | 1343 | virtual wxEvent *Clone() const { return new wxCloseEvent(*this); } |
aadbdf11 | 1344 | |
2b854a32 | 1345 | protected: |
4bcfcdef VZ |
1346 | bool m_loggingOff, |
1347 | m_veto, | |
1348 | m_canVeto; | |
2b854a32 | 1349 | |
8e72b8b5 | 1350 | private: |
fc7a2a60 | 1351 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCloseEvent) |
c801d85f KB |
1352 | }; |
1353 | ||
1354 | /* | |
1355 | wxEVT_SHOW | |
1356 | */ | |
1357 | ||
bddd7a8d | 1358 | class WXDLLIMPEXP_CORE wxShowEvent : public wxEvent |
c801d85f | 1359 | { |
c801d85f | 1360 | public: |
a0d9c6cb | 1361 | wxShowEvent(int winid = 0, bool show = false) |
d9e2e4c2 | 1362 | : wxEvent(winid, wxEVT_SHOW) |
497dbbd3 | 1363 | { m_show = show; } |
1d2eddff JS |
1364 | wxShowEvent(const wxShowEvent & event) |
1365 | : wxEvent(event) | |
b2697d42 | 1366 | { m_show = event.m_show; } |
c2bbeff0 | 1367 | |
2b854a32 VZ |
1368 | void SetShow(bool show) { m_show = show; } |
1369 | bool GetShow() const { return m_show; } | |
c801d85f | 1370 | |
8e72b8b5 | 1371 | virtual wxEvent *Clone() const { return new wxShowEvent(*this); } |
aadbdf11 | 1372 | |
c801d85f | 1373 | protected: |
2b854a32 | 1374 | bool m_show; |
3dd9b88a | 1375 | |
8e72b8b5 | 1376 | private: |
fc7a2a60 | 1377 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxShowEvent) |
c801d85f KB |
1378 | }; |
1379 | ||
1380 | /* | |
1381 | wxEVT_ICONIZE | |
1382 | */ | |
1383 | ||
bddd7a8d | 1384 | class WXDLLIMPEXP_CORE wxIconizeEvent : public wxEvent |
c801d85f | 1385 | { |
2b854a32 | 1386 | public: |
a0d9c6cb | 1387 | wxIconizeEvent(int winid = 0, bool iconized = true) |
d9e2e4c2 | 1388 | : wxEvent(winid, wxEVT_ICONIZE) |
497dbbd3 | 1389 | { m_iconized = iconized; } |
1d2eddff JS |
1390 | wxIconizeEvent(const wxIconizeEvent & event) |
1391 | : wxEvent(event) | |
b2697d42 | 1392 | { m_iconized = event.m_iconized; } |
c2bbeff0 | 1393 | |
3dd9b88a VZ |
1394 | // return true if the frame was iconized, false if restored |
1395 | bool Iconized() const { return m_iconized; } | |
1396 | ||
8e72b8b5 | 1397 | virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); } |
f97500b8 | 1398 | |
3dd9b88a VZ |
1399 | protected: |
1400 | bool m_iconized; | |
1401 | ||
8e72b8b5 | 1402 | private: |
fc7a2a60 | 1403 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIconizeEvent) |
c801d85f | 1404 | }; |
c801d85f KB |
1405 | /* |
1406 | wxEVT_MAXIMIZE | |
1407 | */ | |
1408 | ||
bddd7a8d | 1409 | class WXDLLIMPEXP_CORE wxMaximizeEvent : public wxEvent |
c801d85f | 1410 | { |
2b854a32 | 1411 | public: |
d9e2e4c2 DE |
1412 | wxMaximizeEvent(int winid = 0) |
1413 | : wxEvent(winid, wxEVT_MAXIMIZE) | |
e6a6feba | 1414 | { } |
3dd9b88a | 1415 | |
8e72b8b5 | 1416 | virtual wxEvent *Clone() const { return new wxMaximizeEvent(*this); } |
f97500b8 | 1417 | |
8e72b8b5 | 1418 | private: |
fc7a2a60 | 1419 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMaximizeEvent) |
c801d85f KB |
1420 | }; |
1421 | ||
1422 | // Joystick event class | |
1423 | /* | |
1424 | wxEVT_JOY_BUTTON_DOWN, | |
1425 | wxEVT_JOY_BUTTON_UP, | |
1426 | wxEVT_JOY_MOVE, | |
1427 | wxEVT_JOY_ZMOVE | |
1428 | */ | |
1429 | ||
1430 | // Which joystick? Same as Windows ids so no conversion necessary. | |
497dbbd3 VZ |
1431 | enum |
1432 | { | |
1433 | wxJOYSTICK1, | |
1434 | wxJOYSTICK2 | |
1435 | }; | |
c801d85f KB |
1436 | |
1437 | // Which button is down? | |
497dbbd3 VZ |
1438 | enum |
1439 | { | |
1440 | wxJOY_BUTTON_ANY = -1, | |
1441 | wxJOY_BUTTON1 = 1, | |
1442 | wxJOY_BUTTON2 = 2, | |
1443 | wxJOY_BUTTON3 = 4, | |
1444 | wxJOY_BUTTON4 = 8 | |
1445 | }; | |
c801d85f | 1446 | |
bddd7a8d | 1447 | class WXDLLIMPEXP_CORE wxJoystickEvent : public wxEvent |
c801d85f | 1448 | { |
b4b76d61 | 1449 | protected: |
2b854a32 VZ |
1450 | wxPoint m_pos; |
1451 | int m_zPosition; | |
497dbbd3 VZ |
1452 | int m_buttonChange; // Which button changed? |
1453 | int m_buttonState; // Which buttons are down? | |
1454 | int m_joyStick; // Which joystick? | |
2b854a32 | 1455 | |
b4b76d61 | 1456 | public: |
2b854a32 VZ |
1457 | wxJoystickEvent(wxEventType type = wxEVT_NULL, |
1458 | int state = 0, | |
1459 | int joystick = wxJOYSTICK1, | |
1460 | int change = 0) | |
497dbbd3 | 1461 | : wxEvent(0, type), |
8b5d5223 | 1462 | m_pos(), |
497dbbd3 VZ |
1463 | m_zPosition(0), |
1464 | m_buttonChange(change), | |
1465 | m_buttonState(state), | |
1466 | m_joyStick(joystick) | |
2b854a32 | 1467 | { |
2b854a32 | 1468 | } |
1d2eddff | 1469 | wxJoystickEvent(const wxJoystickEvent & event) |
b2697d42 VZ |
1470 | : wxEvent(event), |
1471 | m_pos(event.m_pos), | |
1472 | m_zPosition(event.m_zPosition), | |
1473 | m_buttonChange(event.m_buttonChange), | |
1474 | m_buttonState(event.m_buttonState), | |
1475 | m_joyStick(event.m_joyStick) | |
1d2eddff | 1476 | { } |
c2bbeff0 | 1477 | |
2b854a32 VZ |
1478 | wxPoint GetPosition() const { return m_pos; } |
1479 | int GetZPosition() const { return m_zPosition; } | |
1480 | int GetButtonState() const { return m_buttonState; } | |
1481 | int GetButtonChange() const { return m_buttonChange; } | |
1482 | int GetJoystick() const { return m_joyStick; } | |
1483 | ||
1484 | void SetJoystick(int stick) { m_joyStick = stick; } | |
1485 | void SetButtonState(int state) { m_buttonState = state; } | |
1486 | void SetButtonChange(int change) { m_buttonChange = change; } | |
1487 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
1488 | void SetZPosition(int zPos) { m_zPosition = zPos; } | |
1489 | ||
1490 | // Was it a button event? (*doesn't* mean: is any button *down*?) | |
1491 | bool IsButton() const { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) || | |
b70ababc | 1492 | (GetEventType() == wxEVT_JOY_BUTTON_UP)); } |
2b854a32 VZ |
1493 | |
1494 | // Was it a move event? | |
a7bc03c9 | 1495 | bool IsMove() const { return (GetEventType() == wxEVT_JOY_MOVE); } |
2b854a32 VZ |
1496 | |
1497 | // Was it a zmove event? | |
a7bc03c9 | 1498 | bool IsZMove() const { return (GetEventType() == wxEVT_JOY_ZMOVE); } |
2b854a32 VZ |
1499 | |
1500 | // Was it a down event from button 1, 2, 3, 4 or any? | |
1501 | bool ButtonDown(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1502 | { return ((GetEventType() == wxEVT_JOY_BUTTON_DOWN) && |
2b854a32 | 1503 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } |
c801d85f | 1504 | |
2b854a32 VZ |
1505 | // Was it a up event from button 1, 2, 3 or any? |
1506 | bool ButtonUp(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1507 | { return ((GetEventType() == wxEVT_JOY_BUTTON_UP) && |
2b854a32 | 1508 | ((but == wxJOY_BUTTON_ANY) || (but == m_buttonChange))); } |
c801d85f | 1509 | |
2b854a32 VZ |
1510 | // Was the given button 1,2,3,4 or any in Down state? |
1511 | bool ButtonIsDown(int but = wxJOY_BUTTON_ANY) const | |
c801d85f | 1512 | { return (((but == wxJOY_BUTTON_ANY) && (m_buttonState != 0)) || |
2b854a32 | 1513 | ((m_buttonState & but) == but)); } |
f305c661 | 1514 | |
8e72b8b5 | 1515 | virtual wxEvent *Clone() const { return new wxJoystickEvent(*this); } |
f97500b8 | 1516 | |
8e72b8b5 | 1517 | private: |
fc7a2a60 | 1518 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxJoystickEvent) |
c801d85f KB |
1519 | }; |
1520 | ||
1521 | // Drop files event class | |
1522 | /* | |
1523 | wxEVT_DROP_FILES | |
1524 | */ | |
1525 | ||
bddd7a8d | 1526 | class WXDLLIMPEXP_CORE wxDropFilesEvent : public wxEvent |
c801d85f | 1527 | { |
2b854a32 VZ |
1528 | public: |
1529 | int m_noFiles; | |
1530 | wxPoint m_pos; | |
c3c39620 | 1531 | wxString* m_files; |
2b854a32 VZ |
1532 | |
1533 | wxDropFilesEvent(wxEventType type = wxEVT_NULL, | |
1534 | int noFiles = 0, | |
1535 | wxString *files = (wxString *) NULL) | |
497dbbd3 VZ |
1536 | : wxEvent(0, type), |
1537 | m_noFiles(noFiles), | |
1538 | m_pos(), | |
1539 | m_files(files) | |
e6a6feba | 1540 | { } |
2b854a32 | 1541 | |
c3c39620 VZ |
1542 | // we need a copy ctor to avoid deleting m_files pointer twice |
1543 | wxDropFilesEvent(const wxDropFilesEvent& other) | |
497dbbd3 VZ |
1544 | : wxEvent(other), |
1545 | m_noFiles(other.m_noFiles), | |
1546 | m_pos(other.m_pos), | |
1547 | m_files(NULL) | |
c3c39620 | 1548 | { |
c3c39620 VZ |
1549 | m_files = new wxString[m_noFiles]; |
1550 | for ( int n = 0; n < m_noFiles; n++ ) | |
1551 | { | |
1552 | m_files[n] = other.m_files[n]; | |
1553 | } | |
1554 | } | |
1555 | ||
1556 | virtual ~wxDropFilesEvent() | |
1557 | { | |
1558 | delete [] m_files; | |
1559 | } | |
1560 | ||
2b854a32 VZ |
1561 | wxPoint GetPosition() const { return m_pos; } |
1562 | int GetNumberOfFiles() const { return m_noFiles; } | |
1563 | wxString *GetFiles() const { return m_files; } | |
f305c661 | 1564 | |
c3c39620 | 1565 | virtual wxEvent *Clone() const { return new wxDropFilesEvent(*this); } |
f97500b8 | 1566 | |
8e72b8b5 | 1567 | private: |
fc7a2a60 | 1568 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDropFilesEvent) |
c801d85f KB |
1569 | }; |
1570 | ||
c801d85f KB |
1571 | // Update UI event |
1572 | /* | |
1573 | wxEVT_UPDATE_UI | |
1574 | */ | |
1575 | ||
e39af974 JS |
1576 | // Whether to always send update events to windows, or |
1577 | // to only send update events to those with the | |
1578 | // wxWS_EX_PROCESS_UI_UPDATES style. | |
1579 | ||
1580 | enum wxUpdateUIMode | |
1581 | { | |
1582 | // Send UI update events to all windows | |
1583 | wxUPDATE_UI_PROCESS_ALL, | |
1584 | ||
1585 | // Send UI update events to windows that have | |
1586 | // the wxWS_EX_PROCESS_UI_UPDATES flag specified | |
1587 | wxUPDATE_UI_PROCESS_SPECIFIED | |
1588 | }; | |
1589 | ||
bddd7a8d | 1590 | class WXDLLIMPEXP_CORE wxUpdateUIEvent : public wxCommandEvent |
c801d85f | 1591 | { |
2b854a32 VZ |
1592 | public: |
1593 | wxUpdateUIEvent(wxWindowID commandId = 0) | |
e6a6feba | 1594 | : wxCommandEvent(wxEVT_UPDATE_UI, commandId) |
497dbbd3 VZ |
1595 | { |
1596 | m_checked = | |
1597 | m_enabled = | |
a3a4105d | 1598 | m_shown = |
497dbbd3 | 1599 | m_setEnabled = |
a3a4105d | 1600 | m_setShown = |
9b9337da | 1601 | m_setText = |
a0d9c6cb | 1602 | m_setChecked = false; |
497dbbd3 | 1603 | } |
1d2eddff JS |
1604 | wxUpdateUIEvent(const wxUpdateUIEvent & event) |
1605 | : wxCommandEvent(event), | |
b2697d42 VZ |
1606 | m_checked(event.m_checked), |
1607 | m_enabled(event.m_enabled), | |
a3a4105d | 1608 | m_shown(event.m_shown), |
b2697d42 | 1609 | m_setEnabled(event.m_setEnabled), |
a3a4105d | 1610 | m_setShown(event.m_setShown), |
b2697d42 VZ |
1611 | m_setText(event.m_setText), |
1612 | m_setChecked(event.m_setChecked), | |
1613 | m_text(event.m_text) | |
1614 | { } | |
c2bbeff0 | 1615 | |
2b854a32 VZ |
1616 | bool GetChecked() const { return m_checked; } |
1617 | bool GetEnabled() const { return m_enabled; } | |
a3a4105d | 1618 | bool GetShown() const { return m_shown; } |
2b854a32 VZ |
1619 | wxString GetText() const { return m_text; } |
1620 | bool GetSetText() const { return m_setText; } | |
1621 | bool GetSetChecked() const { return m_setChecked; } | |
1622 | bool GetSetEnabled() const { return m_setEnabled; } | |
a3a4105d | 1623 | bool GetSetShown() const { return m_setShown; } |
2b854a32 | 1624 | |
a0d9c6cb WS |
1625 | void Check(bool check) { m_checked = check; m_setChecked = true; } |
1626 | void Enable(bool enable) { m_enabled = enable; m_setEnabled = true; } | |
a3a4105d | 1627 | void Show(bool show) { m_shown = show; m_setShown = true; } |
a0d9c6cb | 1628 | void SetText(const wxString& text) { m_text = text; m_setText = true; } |
c801d85f | 1629 | |
0b30bb0b JS |
1630 | // Sets the interval between updates in milliseconds. |
1631 | // Set to -1 to disable updates, or to 0 to update as frequently as possible. | |
e39af974 | 1632 | static void SetUpdateInterval(long updateInterval) { sm_updateInterval = updateInterval; } |
0b30bb0b JS |
1633 | |
1634 | // Returns the current interval between updates in milliseconds | |
a7bc03c9 | 1635 | static long GetUpdateInterval() { return sm_updateInterval; } |
0b30bb0b | 1636 | |
e39af974 | 1637 | // Can we update this window? |
a7bc03c9 | 1638 | static bool CanUpdate(wxWindowBase *win); |
0b30bb0b JS |
1639 | |
1640 | // Reset the update time to provide a delay until the next | |
1641 | // time we should update | |
a7bc03c9 | 1642 | static void ResetUpdateTime(); |
0b30bb0b | 1643 | |
77ffb593 | 1644 | // Specify how wxWidgets will send update events: to |
e39af974 JS |
1645 | // all windows, or only to those which specify that they |
1646 | // will process the events. | |
1647 | static void SetMode(wxUpdateUIMode mode) { sm_updateMode = mode; } | |
1648 | ||
1649 | // Returns the UI update mode | |
a7bc03c9 | 1650 | static wxUpdateUIMode GetMode() { return sm_updateMode; } |
e39af974 | 1651 | |
8e72b8b5 | 1652 | virtual wxEvent *Clone() const { return new wxUpdateUIEvent(*this); } |
f305c661 | 1653 | |
2b854a32 VZ |
1654 | protected: |
1655 | bool m_checked; | |
1656 | bool m_enabled; | |
a3a4105d | 1657 | bool m_shown; |
2b854a32 | 1658 | bool m_setEnabled; |
a3a4105d | 1659 | bool m_setShown; |
2b854a32 VZ |
1660 | bool m_setText; |
1661 | bool m_setChecked; | |
1662 | wxString m_text; | |
0b30bb0b | 1663 | #if wxUSE_LONGLONG |
e39af974 | 1664 | static wxLongLong sm_lastUpdate; |
0b30bb0b | 1665 | #endif |
e39af974 JS |
1666 | static long sm_updateInterval; |
1667 | static wxUpdateUIMode sm_updateMode; | |
f97500b8 | 1668 | |
8e72b8b5 | 1669 | private: |
fc7a2a60 | 1670 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxUpdateUIEvent) |
c801d85f KB |
1671 | }; |
1672 | ||
1673 | /* | |
1674 | wxEVT_SYS_COLOUR_CHANGED | |
1675 | */ | |
1676 | ||
1677 | // TODO: shouldn't all events record the window ID? | |
bddd7a8d | 1678 | class WXDLLIMPEXP_CORE wxSysColourChangedEvent : public wxEvent |
c801d85f | 1679 | { |
2b854a32 VZ |
1680 | public: |
1681 | wxSysColourChangedEvent() | |
e6a6feba GD |
1682 | : wxEvent(0, wxEVT_SYS_COLOUR_CHANGED) |
1683 | { } | |
f97500b8 | 1684 | |
8e72b8b5 | 1685 | virtual wxEvent *Clone() const { return new wxSysColourChangedEvent(*this); } |
f97500b8 | 1686 | |
8e72b8b5 | 1687 | private: |
fc7a2a60 | 1688 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSysColourChangedEvent) |
c801d85f KB |
1689 | }; |
1690 | ||
a5e84126 JS |
1691 | /* |
1692 | wxEVT_MOUSE_CAPTURE_CHANGED | |
1693 | The window losing the capture receives this message | |
1694 | (even if it released the capture itself). | |
1695 | */ | |
1696 | ||
bddd7a8d | 1697 | class WXDLLIMPEXP_CORE wxMouseCaptureChangedEvent : public wxEvent |
a5e84126 JS |
1698 | { |
1699 | public: | |
d9e2e4c2 DE |
1700 | wxMouseCaptureChangedEvent(wxWindowID winid = 0, wxWindow* gainedCapture = NULL) |
1701 | : wxEvent(winid, wxEVT_MOUSE_CAPTURE_CHANGED), | |
497dbbd3 | 1702 | m_gainedCapture(gainedCapture) |
e6a6feba GD |
1703 | { } |
1704 | ||
1705 | wxMouseCaptureChangedEvent(const wxMouseCaptureChangedEvent& event) | |
497dbbd3 VZ |
1706 | : wxEvent(event), |
1707 | m_gainedCapture(event.m_gainedCapture) | |
e6a6feba | 1708 | { } |
a5e84126 JS |
1709 | |
1710 | virtual wxEvent *Clone() const { return new wxMouseCaptureChangedEvent(*this); } | |
1711 | ||
47b378bd | 1712 | wxWindow* GetCapturedWindow() const { return m_gainedCapture; } |
a5e84126 JS |
1713 | |
1714 | private: | |
1715 | wxWindow* m_gainedCapture; | |
fc7a2a60 VZ |
1716 | |
1717 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureChangedEvent) | |
a5e84126 JS |
1718 | }; |
1719 | ||
63e819f2 VS |
1720 | /* |
1721 | wxEVT_MOUSE_CAPTURE_LOST | |
1722 | The window losing the capture receives this message, unless it released it | |
1723 | it itself or unless wxWindow::CaptureMouse was called on another window | |
1724 | (and so capture will be restored when the new capturer releases it). | |
1725 | */ | |
1726 | ||
1727 | class WXDLLIMPEXP_CORE wxMouseCaptureLostEvent : public wxEvent | |
1728 | { | |
1729 | public: | |
1730 | wxMouseCaptureLostEvent(wxWindowID winid = 0) | |
1731 | : wxEvent(winid, wxEVT_MOUSE_CAPTURE_LOST) | |
1732 | {} | |
1733 | ||
1734 | wxMouseCaptureLostEvent(const wxMouseCaptureLostEvent& event) | |
1735 | : wxEvent(event) | |
1736 | {} | |
1737 | ||
1738 | virtual wxEvent *Clone() const { return new wxMouseCaptureLostEvent(*this); } | |
1739 | ||
1740 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxMouseCaptureLostEvent) | |
1741 | }; | |
1742 | ||
574c939e KB |
1743 | /* |
1744 | wxEVT_DISPLAY_CHANGED | |
1745 | */ | |
bddd7a8d | 1746 | class WXDLLIMPEXP_CORE wxDisplayChangedEvent : public wxEvent |
574c939e KB |
1747 | { |
1748 | private: | |
fc7a2a60 | 1749 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDisplayChangedEvent) |
574c939e KB |
1750 | |
1751 | public: | |
1752 | wxDisplayChangedEvent() | |
e6a6feba GD |
1753 | : wxEvent(0, wxEVT_DISPLAY_CHANGED) |
1754 | { } | |
574c939e KB |
1755 | |
1756 | virtual wxEvent *Clone() const { return new wxDisplayChangedEvent(*this); } | |
1757 | }; | |
1758 | ||
f7bd2698 JS |
1759 | /* |
1760 | wxEVT_PALETTE_CHANGED | |
1761 | */ | |
1762 | ||
bddd7a8d | 1763 | class WXDLLIMPEXP_CORE wxPaletteChangedEvent : public wxEvent |
f7bd2698 | 1764 | { |
f7bd2698 | 1765 | public: |
d9e2e4c2 DE |
1766 | wxPaletteChangedEvent(wxWindowID winid = 0) |
1767 | : wxEvent(winid, wxEVT_PALETTE_CHANGED), | |
497dbbd3 VZ |
1768 | m_changedWindow((wxWindow *) NULL) |
1769 | { } | |
e6a6feba GD |
1770 | |
1771 | wxPaletteChangedEvent(const wxPaletteChangedEvent& event) | |
497dbbd3 VZ |
1772 | : wxEvent(event), |
1773 | m_changedWindow(event.m_changedWindow) | |
e6a6feba | 1774 | { } |
f7bd2698 | 1775 | |
2b854a32 VZ |
1776 | void SetChangedWindow(wxWindow* win) { m_changedWindow = win; } |
1777 | wxWindow* GetChangedWindow() const { return m_changedWindow; } | |
f7bd2698 | 1778 | |
8e72b8b5 | 1779 | virtual wxEvent *Clone() const { return new wxPaletteChangedEvent(*this); } |
f305c661 | 1780 | |
f7bd2698 | 1781 | protected: |
2b854a32 | 1782 | wxWindow* m_changedWindow; |
8e72b8b5 RR |
1783 | |
1784 | private: | |
fc7a2a60 | 1785 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxPaletteChangedEvent) |
f7bd2698 JS |
1786 | }; |
1787 | ||
1788 | /* | |
1789 | wxEVT_QUERY_NEW_PALETTE | |
1790 | Indicates the window is getting keyboard focus and should re-do its palette. | |
1791 | */ | |
1792 | ||
bddd7a8d | 1793 | class WXDLLIMPEXP_CORE wxQueryNewPaletteEvent : public wxEvent |
f7bd2698 | 1794 | { |
f7bd2698 | 1795 | public: |
d9e2e4c2 DE |
1796 | wxQueryNewPaletteEvent(wxWindowID winid = 0) |
1797 | : wxEvent(winid, wxEVT_QUERY_NEW_PALETTE), | |
a0d9c6cb | 1798 | m_paletteRealized(false) |
e6a6feba | 1799 | { } |
1d2eddff JS |
1800 | wxQueryNewPaletteEvent(const wxQueryNewPaletteEvent & event) |
1801 | : wxEvent(event), | |
b2697d42 VZ |
1802 | m_paletteRealized(event.m_paletteRealized) |
1803 | { } | |
c2bbeff0 | 1804 | |
2b854a32 VZ |
1805 | // App sets this if it changes the palette. |
1806 | void SetPaletteRealized(bool realized) { m_paletteRealized = realized; } | |
1807 | bool GetPaletteRealized() const { return m_paletteRealized; } | |
f7bd2698 | 1808 | |
8e72b8b5 | 1809 | virtual wxEvent *Clone() const { return new wxQueryNewPaletteEvent(*this); } |
f305c661 | 1810 | |
f7bd2698 | 1811 | protected: |
2b854a32 | 1812 | bool m_paletteRealized; |
f97500b8 | 1813 | |
8e72b8b5 | 1814 | private: |
fc7a2a60 | 1815 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryNewPaletteEvent) |
f7bd2698 JS |
1816 | }; |
1817 | ||
7fdefd57 VZ |
1818 | /* |
1819 | Event generated by dialog navigation keys | |
1820 | wxEVT_NAVIGATION_KEY | |
1821 | */ | |
d9506e77 | 1822 | // NB: don't derive from command event to avoid being propagated to the parent |
bddd7a8d | 1823 | class WXDLLIMPEXP_CORE wxNavigationKeyEvent : public wxEvent |
7fdefd57 | 1824 | { |
7fdefd57 | 1825 | public: |
d9506e77 | 1826 | wxNavigationKeyEvent() |
497dbbd3 | 1827 | : wxEvent(0, wxEVT_NAVIGATION_KEY), |
298ca00c | 1828 | m_flags(IsForward | FromTab), // defaults are for TAB |
497dbbd3 | 1829 | m_focus((wxWindow *)NULL) |
aef35d0e VZ |
1830 | { |
1831 | m_propagationLevel = wxEVENT_PROPAGATE_NONE; | |
1832 | } | |
d9506e77 | 1833 | |
e6a6feba | 1834 | wxNavigationKeyEvent(const wxNavigationKeyEvent& event) |
497dbbd3 VZ |
1835 | : wxEvent(event), |
1836 | m_flags(event.m_flags), | |
1837 | m_focus(event.m_focus) | |
e6a6feba | 1838 | { } |
7fdefd57 | 1839 | |
2b854a32 | 1840 | // direction: forward (true) or backward (false) |
d9506e77 VZ |
1841 | bool GetDirection() const |
1842 | { return (m_flags & IsForward) != 0; } | |
1843 | void SetDirection(bool bForward) | |
1844 | { if ( bForward ) m_flags |= IsForward; else m_flags &= ~IsForward; } | |
7fdefd57 | 1845 | |
2b854a32 VZ |
1846 | // it may be a window change event (MDI, notebook pages...) or a control |
1847 | // change event | |
d9506e77 VZ |
1848 | bool IsWindowChange() const |
1849 | { return (m_flags & WinChange) != 0; } | |
1850 | void SetWindowChange(bool bIs) | |
1851 | { if ( bIs ) m_flags |= WinChange; else m_flags &= ~WinChange; } | |
1852 | ||
298ca00c VZ |
1853 | // Set to true under MSW if the event was generated using the tab key. |
1854 | // This is required for proper navogation over radio buttons | |
1855 | bool IsFromTab() const | |
1856 | { return (m_flags & FromTab) != 0; } | |
1857 | void SetFromTab(bool bIs) | |
1858 | { if ( bIs ) m_flags |= FromTab; else m_flags &= ~FromTab; } | |
1859 | ||
2b854a32 VZ |
1860 | // the child which has the focus currently (may be NULL - use |
1861 | // wxWindow::FindFocus then) | |
d9506e77 VZ |
1862 | wxWindow* GetCurrentFocus() const { return m_focus; } |
1863 | void SetCurrentFocus(wxWindow *win) { m_focus = win; } | |
1864 | ||
54a69edf JS |
1865 | // Set flags |
1866 | void SetFlags(long flags) { m_flags = flags; } | |
1867 | ||
8e72b8b5 RR |
1868 | virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); } |
1869 | ||
d9506e77 VZ |
1870 | enum |
1871 | { | |
f2de9fee | 1872 | IsBackward = 0x0000, |
d9506e77 | 1873 | IsForward = 0x0001, |
298ca00c VZ |
1874 | WinChange = 0x0002, |
1875 | FromTab = 0x0004 | |
d9506e77 VZ |
1876 | }; |
1877 | ||
1878 | long m_flags; | |
1879 | wxWindow *m_focus; | |
1880 | ||
8e72b8b5 | 1881 | private: |
fc7a2a60 | 1882 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxNavigationKeyEvent) |
7fdefd57 VZ |
1883 | }; |
1884 | ||
42e69d6b VZ |
1885 | // Window creation/destruction events: the first is sent as soon as window is |
1886 | // created (i.e. the underlying GUI object exists), but when the C++ object is | |
1887 | // fully initialized (so virtual functions may be called). The second, | |
1888 | // wxEVT_DESTROY, is sent right before the window is destroyed - again, it's | |
1889 | // still safe to call virtual functions at this moment | |
1890 | /* | |
1891 | wxEVT_CREATE | |
1892 | wxEVT_DESTROY | |
1893 | */ | |
1894 | ||
bddd7a8d | 1895 | class WXDLLIMPEXP_CORE wxWindowCreateEvent : public wxCommandEvent |
42e69d6b | 1896 | { |
42e69d6b VZ |
1897 | public: |
1898 | wxWindowCreateEvent(wxWindow *win = NULL); | |
1899 | ||
1900 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
f97500b8 | 1901 | |
8e72b8b5 | 1902 | virtual wxEvent *Clone() const { return new wxWindowCreateEvent(*this); } |
f97500b8 | 1903 | |
8e72b8b5 | 1904 | private: |
fc7a2a60 | 1905 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowCreateEvent) |
42e69d6b VZ |
1906 | }; |
1907 | ||
bddd7a8d | 1908 | class WXDLLIMPEXP_CORE wxWindowDestroyEvent : public wxCommandEvent |
42e69d6b | 1909 | { |
42e69d6b VZ |
1910 | public: |
1911 | wxWindowDestroyEvent(wxWindow *win = NULL); | |
1912 | ||
1913 | wxWindow *GetWindow() const { return (wxWindow *)GetEventObject(); } | |
f97500b8 | 1914 | |
8e72b8b5 RR |
1915 | virtual wxEvent *Clone() const { return new wxWindowDestroyEvent(*this); } |
1916 | ||
1917 | private: | |
fc7a2a60 | 1918 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowDestroyEvent) |
42e69d6b VZ |
1919 | }; |
1920 | ||
bd83cb56 | 1921 | // A help event is sent when the user clicks on a window in context-help mode. |
b96340e6 | 1922 | /* |
bd83cb56 VZ |
1923 | wxEVT_HELP |
1924 | wxEVT_DETAILED_HELP | |
1925 | */ | |
b96340e6 | 1926 | |
bddd7a8d | 1927 | class WXDLLIMPEXP_CORE wxHelpEvent : public wxCommandEvent |
b96340e6 | 1928 | { |
b96340e6 | 1929 | public: |
b107e8d5 VZ |
1930 | // how was this help event generated? |
1931 | enum Origin | |
1932 | { | |
1933 | Origin_Unknown, // unrecognized event source | |
1934 | Origin_Keyboard, // event generated from F1 key press | |
1935 | Origin_HelpButton // event from [?] button on the title bar (Windows) | |
1936 | }; | |
1937 | ||
bd83cb56 | 1938 | wxHelpEvent(wxEventType type = wxEVT_NULL, |
d9e2e4c2 | 1939 | wxWindowID winid = 0, |
b107e8d5 VZ |
1940 | const wxPoint& pt = wxDefaultPosition, |
1941 | Origin origin = Origin_Unknown) | |
d9e2e4c2 | 1942 | : wxCommandEvent(type, winid), |
b107e8d5 VZ |
1943 | m_pos(pt), |
1944 | m_origin(GuessOrigin(origin)) | |
e6a6feba | 1945 | { } |
1d2eddff JS |
1946 | wxHelpEvent(const wxHelpEvent & event) |
1947 | : wxCommandEvent(event), | |
b2697d42 VZ |
1948 | m_pos(event.m_pos), |
1949 | m_target(event.m_target), | |
b107e8d5 VZ |
1950 | m_link(event.m_link), |
1951 | m_origin(event.m_origin) | |
1d2eddff | 1952 | { } |
c2bbeff0 | 1953 | |
bd83cb56 VZ |
1954 | // Position of event (in screen coordinates) |
1955 | const wxPoint& GetPosition() const { return m_pos; } | |
1956 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
b96340e6 | 1957 | |
bd83cb56 VZ |
1958 | // Optional link to further help |
1959 | const wxString& GetLink() const { return m_link; } | |
1960 | void SetLink(const wxString& link) { m_link = link; } | |
fb6261e9 | 1961 | |
bd83cb56 VZ |
1962 | // Optional target to display help in. E.g. a window specification |
1963 | const wxString& GetTarget() const { return m_target; } | |
1964 | void SetTarget(const wxString& target) { m_target = target; } | |
fb6261e9 | 1965 | |
8e72b8b5 | 1966 | virtual wxEvent *Clone() const { return new wxHelpEvent(*this); } |
f97500b8 | 1967 | |
b107e8d5 VZ |
1968 | // optional indication of the event source |
1969 | Origin GetOrigin() const { return m_origin; } | |
1970 | void SetOrigin(Origin origin) { m_origin = origin; } | |
1971 | ||
bd83cb56 VZ |
1972 | protected: |
1973 | wxPoint m_pos; | |
1974 | wxString m_target; | |
1975 | wxString m_link; | |
b107e8d5 VZ |
1976 | Origin m_origin; |
1977 | ||
1978 | // we can try to guess the event origin ourselves, even if none is | |
1979 | // specified in the ctor | |
1980 | static Origin GuessOrigin(Origin origin); | |
bd83cb56 VZ |
1981 | |
1982 | private: | |
fc7a2a60 | 1983 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxHelpEvent) |
b96340e6 JS |
1984 | }; |
1985 | ||
78c91815 VZ |
1986 | // A Clipboard Text event is sent when a window intercepts text copy/cut/paste |
1987 | // message, i.e. the user has cut/copied/pasted data from/into a text control | |
1988 | // via ctrl-C/X/V, ctrl/shift-del/insert, a popup menu command, etc. | |
1989 | // NOTE : under windows these events are *NOT* generated automatically | |
1990 | // for a Rich Edit text control. | |
1991 | /* | |
1992 | wxEVT_COMMAND_TEXT_COPY | |
1993 | wxEVT_COMMAND_TEXT_CUT | |
1994 | wxEVT_COMMAND_TEXT_PASTE | |
1995 | */ | |
1996 | ||
1997 | class WXDLLIMPEXP_CORE wxClipboardTextEvent : public wxCommandEvent | |
1998 | { | |
1999 | public: | |
2000 | wxClipboardTextEvent(wxEventType type = wxEVT_NULL, | |
2001 | wxWindowID winid = 0) | |
2002 | : wxCommandEvent(type, winid) | |
2003 | { } | |
2004 | wxClipboardTextEvent(const wxClipboardTextEvent & event) | |
2005 | : wxCommandEvent(event) | |
2006 | { } | |
2007 | ||
2008 | virtual wxEvent *Clone() const { return new wxClipboardTextEvent(*this); } | |
2009 | ||
2010 | private: | |
2011 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxClipboardTextEvent) | |
2012 | }; | |
2013 | ||
69231000 JS |
2014 | // A Context event is sent when the user right clicks on a window or |
2015 | // presses Shift-F10 | |
2016 | // NOTE : Under windows this is a repackaged WM_CONTETXMENU message | |
2017 | // Under other systems it may have to be generated from a right click event | |
2018 | /* | |
2019 | wxEVT_CONTEXT_MENU | |
2020 | */ | |
2021 | ||
bddd7a8d | 2022 | class WXDLLIMPEXP_CORE wxContextMenuEvent : public wxCommandEvent |
69231000 JS |
2023 | { |
2024 | public: | |
2025 | wxContextMenuEvent(wxEventType type = wxEVT_NULL, | |
d9e2e4c2 | 2026 | wxWindowID winid = 0, |
e6a6feba | 2027 | const wxPoint& pt = wxDefaultPosition) |
d9e2e4c2 | 2028 | : wxCommandEvent(type, winid), |
497dbbd3 | 2029 | m_pos(pt) |
e6a6feba | 2030 | { } |
1d2eddff JS |
2031 | wxContextMenuEvent(const wxContextMenuEvent & event) |
2032 | : wxCommandEvent(event), | |
b2697d42 | 2033 | m_pos(event.m_pos) |
1d2eddff | 2034 | { } |
c2bbeff0 | 2035 | |
69231000 JS |
2036 | // Position of event (in screen coordinates) |
2037 | const wxPoint& GetPosition() const { return m_pos; } | |
2038 | void SetPosition(const wxPoint& pos) { m_pos = pos; } | |
2039 | ||
8e72b8b5 | 2040 | virtual wxEvent *Clone() const { return new wxContextMenuEvent(*this); } |
f97500b8 | 2041 | |
69231000 JS |
2042 | protected: |
2043 | wxPoint m_pos; | |
2044 | ||
2045 | private: | |
fc7a2a60 | 2046 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxContextMenuEvent) |
69231000 JS |
2047 | }; |
2048 | ||
b46b1d59 VZ |
2049 | #endif // wxUSE_GUI |
2050 | ||
e90c1d2a VZ |
2051 | // Idle event |
2052 | /* | |
2053 | wxEVT_IDLE | |
2054 | */ | |
2055 | ||
e39af974 JS |
2056 | // Whether to always send idle events to windows, or |
2057 | // to only send update events to those with the | |
2058 | // wxWS_EX_PROCESS_IDLE style. | |
2059 | ||
2060 | enum wxIdleMode | |
2061 | { | |
2062 | // Send idle events to all windows | |
2063 | wxIDLE_PROCESS_ALL, | |
2064 | ||
2065 | // Send idle events to windows that have | |
2066 | // the wxWS_EX_PROCESS_IDLE flag specified | |
2067 | wxIDLE_PROCESS_SPECIFIED | |
2068 | }; | |
2069 | ||
b46b1d59 | 2070 | class WXDLLIMPEXP_BASE wxIdleEvent : public wxEvent |
e90c1d2a | 2071 | { |
e90c1d2a VZ |
2072 | public: |
2073 | wxIdleEvent() | |
497dbbd3 | 2074 | : wxEvent(0, wxEVT_IDLE), |
a0d9c6cb | 2075 | m_requestMore(false) |
e6a6feba | 2076 | { } |
1d2eddff JS |
2077 | wxIdleEvent(const wxIdleEvent & event) |
2078 | : wxEvent(event), | |
b2697d42 VZ |
2079 | m_requestMore(event.m_requestMore) |
2080 | { } | |
c2bbeff0 | 2081 | |
a0d9c6cb | 2082 | void RequestMore(bool needMore = true) { m_requestMore = needMore; } |
e90c1d2a VZ |
2083 | bool MoreRequested() const { return m_requestMore; } |
2084 | ||
8e72b8b5 | 2085 | virtual wxEvent *Clone() const { return new wxIdleEvent(*this); } |
e90c1d2a | 2086 | |
77ffb593 | 2087 | // Specify how wxWidgets will send idle events: to |
e39af974 JS |
2088 | // all windows, or only to those which specify that they |
2089 | // will process the events. | |
2090 | static void SetMode(wxIdleMode mode) { sm_idleMode = mode; } | |
2091 | ||
2092 | // Returns the idle event mode | |
a7bc03c9 | 2093 | static wxIdleMode GetMode() { return sm_idleMode; } |
e39af974 | 2094 | |
e90c1d2a VZ |
2095 | protected: |
2096 | bool m_requestMore; | |
e39af974 | 2097 | static wxIdleMode sm_idleMode; |
f97500b8 | 2098 | |
8e72b8b5 | 2099 | private: |
fc7a2a60 | 2100 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxIdleEvent) |
e90c1d2a VZ |
2101 | }; |
2102 | ||
e5fb7191 | 2103 | /* TODO |
c801d85f KB |
2104 | wxEVT_MOUSE_CAPTURE_CHANGED, |
2105 | wxEVT_SETTING_CHANGED, // WM_WININICHANGE (NT) / WM_SETTINGCHANGE (Win95) | |
c801d85f KB |
2106 | // wxEVT_FONT_CHANGED, // WM_FONTCHANGE: roll into wxEVT_SETTING_CHANGED, but remember to propagate |
2107 | // wxEVT_FONT_CHANGED to all other windows (maybe). | |
2108 | wxEVT_DRAW_ITEM, // Leave these three as virtual functions in wxControl?? Platform-specific. | |
2109 | wxEVT_MEASURE_ITEM, | |
2110 | wxEVT_COMPARE_ITEM | |
2111 | */ | |
2112 | ||
88a9f974 | 2113 | |
8e193f38 VZ |
2114 | // ============================================================================ |
2115 | // event handler and related classes | |
2116 | // ============================================================================ | |
2117 | ||
d1a64f69 VZ |
2118 | typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&); |
2119 | ||
2120 | // We had some trouble (specifically with eVC for ARM WinCE build) with using | |
2121 | // wxEventFunction in the past so we had introduced wxObjectEventFunction which | |
2122 | // used to be a typedef for a member of wxObject and not wxEvtHandler to work | |
2123 | // around this but as eVC is not really supported any longer we now only keep | |
2124 | // this for backwards compatibility and, despite its name, this is a typedef | |
2125 | // for wxEvtHandler member now -- but if we have the same problem with another | |
2126 | // compiler we can restore its old definition for it. | |
2127 | typedef wxEventFunction wxObjectEventFunction; | |
c801d85f | 2128 | |
6164f93c VZ |
2129 | // struct containing the members common to static and dynamic event tables |
2130 | // entries | |
bddd7a8d | 2131 | struct WXDLLIMPEXP_BASE wxEventTableEntryBase |
77d4384e | 2132 | { |
e6a6feba GD |
2133 | private: |
2134 | wxEventTableEntryBase& operator=(const wxEventTableEntryBase& event); | |
abcbaea7 | 2135 | |
e6a6feba | 2136 | public: |
d9e2e4c2 | 2137 | wxEventTableEntryBase(int winid, int idLast, |
6164f93c | 2138 | wxObjectEventFunction fn, wxObject *data) |
d9e2e4c2 | 2139 | : m_id(winid), |
497dbbd3 VZ |
2140 | m_lastId(idLast), |
2141 | m_fn(fn), | |
2142 | m_callbackUserData(data) | |
e6a6feba GD |
2143 | { } |
2144 | ||
2145 | wxEventTableEntryBase(const wxEventTableEntryBase& event) | |
497dbbd3 VZ |
2146 | : m_id(event.m_id), |
2147 | m_lastId(event.m_lastId), | |
2148 | m_fn(event.m_fn), | |
2149 | m_callbackUserData(event.m_callbackUserData) | |
abcbaea7 | 2150 | { } |
6164f93c | 2151 | |
497dbbd3 VZ |
2152 | // the range of ids for this entry: if m_lastId == wxID_ANY, the range |
2153 | // consists only of m_id, otherwise it is m_id..m_lastId inclusive | |
2154 | int m_id, | |
2155 | m_lastId; | |
82a5f02c | 2156 | |
6164f93c VZ |
2157 | // function to call: not wxEventFunction, because of dependency problems |
2158 | wxObjectEventFunction m_fn; | |
77d4384e | 2159 | |
6164f93c | 2160 | // arbitrary user data asosciated with the callback |
77d4384e RR |
2161 | wxObject* m_callbackUserData; |
2162 | }; | |
2163 | ||
6164f93c | 2164 | // an entry from a static event table |
bddd7a8d | 2165 | struct WXDLLIMPEXP_BASE wxEventTableEntry : public wxEventTableEntryBase |
c801d85f | 2166 | { |
d9e2e4c2 | 2167 | wxEventTableEntry(const int& evType, int winid, int idLast, |
6164f93c | 2168 | wxObjectEventFunction fn, wxObject *data) |
d9e2e4c2 | 2169 | : wxEventTableEntryBase(winid, idLast, fn, data), |
e6a6feba GD |
2170 | m_eventType(evType) |
2171 | { } | |
6164f93c VZ |
2172 | |
2173 | // the reference to event type: this allows us to not care about the | |
2174 | // (undefined) order in which the event table entries and the event types | |
2175 | // are initialized: initially the value of this reference might be | |
2176 | // invalid, but by the time it is used for the first time, all global | |
2177 | // objects will have been initialized (including the event type constants) | |
2178 | // and so it will have the correct value when it is needed | |
2179 | const int& m_eventType; | |
fc7a2a60 VZ |
2180 | |
2181 | private: | |
2182 | wxEventTableEntry& operator=(const wxEventTableEntry&); | |
6164f93c VZ |
2183 | }; |
2184 | ||
2185 | // an entry used in dynamic event table managed by wxEvtHandler::Connect() | |
bddd7a8d | 2186 | struct WXDLLIMPEXP_BASE wxDynamicEventTableEntry : public wxEventTableEntryBase |
6164f93c | 2187 | { |
d9e2e4c2 | 2188 | wxDynamicEventTableEntry(int evType, int winid, int idLast, |
65b17727 | 2189 | wxObjectEventFunction fn, wxObject *data, wxEvtHandler* eventSink) |
d9e2e4c2 | 2190 | : wxEventTableEntryBase(winid, idLast, fn, data), |
65b17727 JS |
2191 | m_eventType(evType), |
2192 | m_eventSink(eventSink) | |
e6a6feba | 2193 | { } |
6164f93c VZ |
2194 | |
2195 | // not a reference here as we can't keep a reference to a temporary int | |
2196 | // created to wrap the constant value typically passed to Connect() - nor | |
2197 | // do we need it | |
2198 | int m_eventType; | |
65b17727 JS |
2199 | |
2200 | // Pointer to object whose function is fn - so we don't assume the | |
1c624631 | 2201 | // EventFunction is always a member of the EventHandler receiving the |
65b17727 JS |
2202 | // message |
2203 | wxEvtHandler* m_eventSink; | |
fc7a2a60 VZ |
2204 | |
2205 | DECLARE_NO_COPY_CLASS(wxDynamicEventTableEntry) | |
c801d85f KB |
2206 | }; |
2207 | ||
2e4df4bf VZ |
2208 | // ---------------------------------------------------------------------------- |
2209 | // wxEventTable: an array of event entries terminated with {0, 0, 0, 0, 0} | |
2210 | // ---------------------------------------------------------------------------- | |
886dd7d2 | 2211 | |
bddd7a8d | 2212 | struct WXDLLIMPEXP_BASE wxEventTable |
c801d85f | 2213 | { |
0b5eceb6 VZ |
2214 | const wxEventTable *baseTable; // base event table (next in chain) |
2215 | const wxEventTableEntry *entries; // bottom of entry array | |
c801d85f KB |
2216 | }; |
2217 | ||
b5a98acd VZ |
2218 | // ---------------------------------------------------------------------------- |
2219 | // wxEventHashTable: a helper of wxEvtHandler to speed up wxEventTable lookups. | |
2220 | // ---------------------------------------------------------------------------- | |
2221 | ||
d5d29b8a | 2222 | WX_DEFINE_ARRAY_PTR(const wxEventTableEntry*, wxEventTableEntryPointerArray); |
b5a98acd VZ |
2223 | |
2224 | class WXDLLIMPEXP_BASE wxEventHashTable | |
2225 | { | |
2226 | private: | |
2227 | // Internal data structs | |
2228 | struct EventTypeTable | |
2229 | { | |
2230 | wxEventType eventType; | |
2231 | wxEventTableEntryPointerArray eventEntryTable; | |
2232 | }; | |
2233 | typedef EventTypeTable* EventTypeTablePointer; | |
2234 | ||
2235 | public: | |
2236 | // Constructor, needs the event table it needs to hash later on. | |
1c624631 VZ |
2237 | // Note: hashing of the event table is not done in the constructor as it |
2238 | // can be that the event table is not yet full initialize, the hash | |
b5a98acd VZ |
2239 | // will gets initialized when handling the first event look-up request. |
2240 | wxEventHashTable(const wxEventTable &table); | |
2241 | // Destructor. | |
2242 | ~wxEventHashTable(); | |
2243 | ||
1c624631 | 2244 | // Handle the given event, in other words search the event table hash |
b5a98acd VZ |
2245 | // and call self->ProcessEvent() if a match was found. |
2246 | bool HandleEvent(wxEvent &event, wxEvtHandler *self); | |
2247 | ||
afa039f9 JS |
2248 | // Clear table |
2249 | void Clear(); | |
2250 | ||
aa767a45 | 2251 | #if defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING |
afa039f9 JS |
2252 | // Clear all tables |
2253 | static void ClearAll(); | |
a0826b11 | 2254 | #endif // __WXDEBUG__ && wxUSE_MEMORY_TRACING |
afa039f9 | 2255 | |
b5a98acd VZ |
2256 | protected: |
2257 | // Init the hash table with the entries of the static event table. | |
2258 | void InitHashTable(); | |
2259 | // Helper funtion of InitHashTable() to insert 1 entry into the hash table. | |
2260 | void AddEntry(const wxEventTableEntry &entry); | |
2261 | // Allocate and init with null pointers the base hash table. | |
2262 | void AllocEventTypeTable(size_t size); | |
1c624631 | 2263 | // Grow the hash table in size and transfer all items currently |
b5a98acd VZ |
2264 | // in the table to the correct location in the new table. |
2265 | void GrowEventTypeTable(); | |
2266 | ||
2267 | protected: | |
2268 | const wxEventTable &m_table; | |
2269 | bool m_rebuildHash; | |
2270 | ||
2271 | size_t m_size; | |
2272 | EventTypeTablePointer *m_eventTypeTable; | |
fc7a2a60 | 2273 | |
afa039f9 JS |
2274 | static wxEventHashTable* sm_first; |
2275 | wxEventHashTable* m_previous; | |
2276 | wxEventHashTable* m_next; | |
2277 | ||
fc7a2a60 | 2278 | DECLARE_NO_COPY_CLASS(wxEventHashTable) |
b5a98acd VZ |
2279 | }; |
2280 | ||
6164f93c | 2281 | // ---------------------------------------------------------------------------- |
77ffb593 | 2282 | // wxEvtHandler: the base class for all objects handling wxWidgets events |
6164f93c VZ |
2283 | // ---------------------------------------------------------------------------- |
2284 | ||
4732e2dc | 2285 | class WXDLLIMPEXP_BASE wxEvtHandler : public wxObject |
4732e2dc | 2286 | , public wxTrackable |
c801d85f | 2287 | { |
2b854a32 VZ |
2288 | public: |
2289 | wxEvtHandler(); | |
6164f93c | 2290 | virtual ~wxEvtHandler(); |
2b854a32 VZ |
2291 | |
2292 | wxEvtHandler *GetNextHandler() const { return m_nextHandler; } | |
2293 | wxEvtHandler *GetPreviousHandler() const { return m_previousHandler; } | |
2294 | void SetNextHandler(wxEvtHandler *handler) { m_nextHandler = handler; } | |
2295 | void SetPreviousHandler(wxEvtHandler *handler) { m_previousHandler = handler; } | |
2296 | ||
8e193f38 | 2297 | void SetEvtHandlerEnabled(bool enabled) { m_enabled = enabled; } |
2b854a32 VZ |
2298 | bool GetEvtHandlerEnabled() const { return m_enabled; } |
2299 | ||
c3f94162 VZ |
2300 | // Process an event right now: this can only be called from the main |
2301 | // thread, use QueueEvent() for scheduling the events for | |
2302 | // processing from other threads. | |
8e193f38 | 2303 | virtual bool ProcessEvent(wxEvent& event); |
2b854a32 | 2304 | |
937013e0 VS |
2305 | // Process an event by calling ProcessEvent and handling any exceptions |
2306 | // thrown by event handlers. It's mostly useful when processing wx events | |
2307 | // when called from C code (e.g. in GTK+ callback) when the exception | |
2308 | // wouldn't correctly propagate to wxEventLoop. | |
2309 | bool SafelyProcessEvent(wxEvent& event); | |
2310 | ||
c3f94162 VZ |
2311 | // Schedule the given event to be processed later. It takes ownership of |
2312 | // the event pointer, i.e. it will be deleted later. This is safe to call | |
2313 | // from multiple threads although you still need to ensure that wxString | |
2314 | // fields of the event object are deep copies and not use the same string | |
2315 | // buffer as other wxString objects in this thread. | |
2316 | virtual void QueueEvent(wxEvent *event); | |
2317 | ||
2318 | // Add an event to be processed later: notice that this function is not | |
2319 | // safe to call from threads other than main, use QueueEvent() | |
2320 | virtual void AddPendingEvent(const wxEvent& event) | |
2321 | { | |
2322 | // notice that the thread-safety problem comes from the fact that | |
2323 | // Clone() doesn't make deep copies of wxString fields of wxEvent | |
2324 | // object and so the same wxString could be used from both threads when | |
2325 | // the event object is destroyed in this one -- QueueEvent() avoids | |
2326 | // this problem as the event pointer is not used any more in this | |
2327 | // thread at all after it is called. | |
2328 | QueueEvent(event.Clone()); | |
2329 | } | |
2b854a32 | 2330 | |
8e193f38 | 2331 | void ProcessPendingEvents(); |
2b854a32 | 2332 | |
7214297d | 2333 | #if wxUSE_THREADS |
76bfdc9a | 2334 | bool ProcessThreadEvent(const wxEvent& event); |
7214297d | 2335 | #endif |
2b854a32 VZ |
2336 | |
2337 | // Dynamic association of a member function handler with the event handler, | |
d9e2e4c2 | 2338 | // winid and event type |
7fa03f04 VZ |
2339 | void Connect(int winid, |
2340 | int lastId, | |
2341 | int eventType, | |
2342 | wxObjectEventFunction func, | |
2343 | wxObject *userData = (wxObject *) NULL, | |
2344 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL); | |
2b854a32 VZ |
2345 | |
2346 | // Convenience function: take just one id | |
7fa03f04 VZ |
2347 | void Connect(int winid, |
2348 | int eventType, | |
2349 | wxObjectEventFunction func, | |
2350 | wxObject *userData = (wxObject *) NULL, | |
2351 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL) | |
65b17727 | 2352 | { Connect(winid, wxID_ANY, eventType, func, userData, eventSink); } |
2b854a32 | 2353 | |
7fa03f04 VZ |
2354 | // Even more convenient: without id (same as using id of wxID_ANY) |
2355 | void Connect(int eventType, | |
2356 | wxObjectEventFunction func, | |
2357 | wxObject *userData = (wxObject *) NULL, | |
2358 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL) | |
2359 | { Connect(wxID_ANY, wxID_ANY, eventType, func, userData, eventSink); } | |
2360 | ||
2361 | bool Disconnect(int winid, | |
2362 | int lastId, | |
2363 | wxEventType eventType, | |
2364 | wxObjectEventFunction func = NULL, | |
2365 | wxObject *userData = (wxObject *) NULL, | |
2366 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL); | |
2367 | ||
e554d626 | 2368 | bool Disconnect(int winid = wxID_ANY, |
7fa03f04 VZ |
2369 | wxEventType eventType = wxEVT_NULL, |
2370 | wxObjectEventFunction func = NULL, | |
2371 | wxObject *userData = (wxObject *) NULL, | |
2372 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL) | |
65b17727 | 2373 | { return Disconnect(winid, wxID_ANY, eventType, func, userData, eventSink); } |
98243fed | 2374 | |
bdbe28fa | 2375 | bool Disconnect(wxEventType eventType, |
e0685bb0 | 2376 | wxObjectEventFunction func, |
bdbe28fa VZ |
2377 | wxObject *userData = (wxObject *) NULL, |
2378 | wxEvtHandler *eventSink = (wxEvtHandler *) NULL) | |
2379 | { return Disconnect(wxID_ANY, eventType, func, userData, eventSink); } | |
7fa03f04 | 2380 | |
10da6a8f | 2381 | wxList* GetDynamicEventTable() const { return m_dynamicEvents ; } |
b88c44e7 RD |
2382 | |
2383 | // User data can be associated with each wxEvtHandler | |
2384 | void SetClientObject( wxClientData *data ) { DoSetClientObject(data); } | |
2385 | wxClientData *GetClientObject() const { return DoGetClientObject(); } | |
2386 | ||
2387 | void SetClientData( void *data ) { DoSetClientData(data); } | |
2388 | void *GetClientData() const { return DoGetClientData(); } | |
2389 | ||
1c624631 VZ |
2390 | // check if the given event table entry matches this event and call the |
2391 | // handler if it does | |
2392 | // | |
2393 | // return true if the event was processed, false otherwise (no match or the | |
2394 | // handler decided to skip the event) | |
2395 | static bool ProcessEventIfMatches(const wxEventTableEntryBase& tableEntry, | |
2396 | wxEvtHandler *handler, | |
2397 | wxEvent& event); | |
b88c44e7 | 2398 | |
8e193f38 VZ |
2399 | // implementation from now on |
2400 | virtual bool SearchEventTable(wxEventTable& table, wxEvent& event); | |
2b854a32 | 2401 | bool SearchDynamicEventTable( wxEvent& event ); |
c801d85f | 2402 | |
afa039f9 JS |
2403 | // Avoid problems at exit by cleaning up static hash table gracefully |
2404 | void ClearEventHashTable() { GetEventHashTable().Clear(); } | |
2ef989c9 | 2405 | void OnSinkDestroyed( wxEvtHandler *sink ); |
afa039f9 | 2406 | |
c801d85f | 2407 | private: |
8e193f38 | 2408 | static const wxEventTableEntry sm_eventTableEntries[]; |
2b854a32 | 2409 | |
c801d85f | 2410 | protected: |
4caf847c VZ |
2411 | // hooks for wxWindow used by ProcessEvent() |
2412 | // ----------------------------------------- | |
2413 | ||
6eabf58c VS |
2414 | // This one is called before trying our own event table to allow plugging |
2415 | // in the validators. | |
1c624631 | 2416 | // |
6eabf58c VS |
2417 | // NB: This method is intentionally *not* inside wxUSE_VALIDATORS! |
2418 | // It is part of wxBase which doesn't use validators and the code | |
2419 | // is compiled out when building wxBase w/o GUI classes, which affects | |
3103e8a9 | 2420 | // binary compatibility and wxBase library can't be used by GUI |
6eabf58c | 2421 | // ports. |
4caf847c | 2422 | virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; } |
4caf847c VZ |
2423 | |
2424 | // this one is called after failing to find the event handle in our own | |
2425 | // table to give a chance to the other windows to process it | |
2426 | // | |
2427 | // base class implementation passes the event to wxTheApp | |
2428 | virtual bool TryParent(wxEvent& event); | |
2429 | ||
2430 | ||
1c624631 | 2431 | static const wxEventTable sm_eventTable; |
193bf013 VZ |
2432 | virtual const wxEventTable *GetEventTable() const; |
2433 | ||
b5a98acd VZ |
2434 | static wxEventHashTable sm_eventHashTable; |
2435 | virtual wxEventHashTable& GetEventHashTable() const; | |
2436 | ||
63863e09 JS |
2437 | wxEvtHandler* m_nextHandler; |
2438 | wxEvtHandler* m_previousHandler; | |
63863e09 | 2439 | wxList* m_dynamicEvents; |
42e69d6b | 2440 | wxList* m_pendingEvents; |
6164f93c | 2441 | |
7214297d | 2442 | #if wxUSE_THREADS |
8ebec7dc VZ |
2443 | // critical section protecting m_pendingEvents |
2444 | wxCriticalSection m_pendingEventsLock; | |
2445 | #endif // wxUSE_THREADS | |
193bf013 | 2446 | |
8e193f38 VZ |
2447 | // Is event handler enabled? |
2448 | bool m_enabled; | |
6164f93c | 2449 | |
b88c44e7 RD |
2450 | |
2451 | // The user data: either an object which will be deleted by the container | |
2452 | // when it's deleted or some raw pointer which we do nothing with - only | |
2453 | // one type of data can be used with the given window (i.e. you cannot set | |
2454 | // the void data and then associate the container with wxClientData or vice | |
2455 | // versa) | |
2456 | union | |
2457 | { | |
2458 | wxClientData *m_clientObject; | |
2459 | void *m_clientData; | |
2460 | }; | |
2461 | ||
2462 | // what kind of data do we have? | |
2463 | wxClientDataType m_clientDataType; | |
2464 | ||
2465 | // client data accessors | |
2466 | virtual void DoSetClientObject( wxClientData *data ); | |
2467 | virtual wxClientData *DoGetClientObject() const; | |
2468 | ||
2469 | virtual void DoSetClientData( void *data ); | |
2470 | virtual void *DoGetClientData() const; | |
2471 | ||
2ef989c9 | 2472 | // Search tracker objects for event connection with this sink |
cc6ceca7 | 2473 | wxEventConnectionRef *FindRefInTrackerList(wxEvtHandler *eventSink); |
2ef989c9 | 2474 | |
6164f93c | 2475 | private: |
fc7a2a60 | 2476 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxEvtHandler) |
c801d85f KB |
2477 | }; |
2478 | ||
cc6ceca7 VZ |
2479 | // ---------------------------------------------------------------------------- |
2480 | // wxEventConnectionRef represents all connections between two event handlers | |
2481 | // and enables automatic disconnect when an event handler sink goes out of | |
2482 | // scope. Each connection/disconnect increases/decreases ref count, and | |
2483 | // when it reaches zero the node goes out of scope. | |
2484 | // ---------------------------------------------------------------------------- | |
2485 | ||
2486 | class wxEventConnectionRef : public wxTrackerNode | |
2487 | { | |
2488 | public: | |
2489 | wxEventConnectionRef() : m_src(NULL), m_sink(NULL), m_refCount(0) { } | |
2490 | wxEventConnectionRef(wxEvtHandler *src, wxEvtHandler *sink) | |
2491 | : m_src(src), m_sink(sink), m_refCount(1) | |
2492 | { | |
2493 | m_sink->AddNode(this); | |
2494 | } | |
2495 | ||
2496 | // The sink is being destroyed | |
2497 | virtual void OnObjectDestroy( ) | |
2498 | { | |
2499 | if ( m_src ) | |
2500 | m_src->OnSinkDestroyed( m_sink ); | |
2501 | delete this; | |
2502 | } | |
2503 | ||
2504 | virtual wxEventConnectionRef *ToEventConnection() { return this; } | |
2505 | ||
2506 | void IncRef() { m_refCount++; } | |
2507 | void DecRef() | |
2508 | { | |
2509 | if ( !--m_refCount ) | |
2510 | { | |
2511 | // The sink holds the only external pointer to this object | |
2512 | if ( m_sink ) | |
2513 | m_sink->RemoveNode(this); | |
2514 | delete this; | |
2515 | } | |
2516 | } | |
2517 | ||
2518 | private: | |
2519 | wxEvtHandler *m_src, | |
2520 | *m_sink; | |
2521 | int m_refCount; | |
2522 | ||
2523 | friend class wxEvtHandler; | |
2524 | ||
2525 | DECLARE_NO_ASSIGN_CLASS(wxEventConnectionRef) | |
2526 | }; | |
2527 | ||
c3f94162 VZ |
2528 | // Post a message to the given event handler which will be processed during the |
2529 | // next event loop iteration. | |
2530 | // | |
2531 | // Notice that this one is not thread-safe, use wxQueueEvent() | |
76bfdc9a | 2532 | inline void wxPostEvent(wxEvtHandler *dest, const wxEvent& event) |
e2478fde | 2533 | { |
c3f94162 | 2534 | wxCHECK_RET( dest, "need an object to post event to" ); |
e2478fde VZ |
2535 | |
2536 | dest->AddPendingEvent(event); | |
2537 | } | |
2538 | ||
c3f94162 VZ |
2539 | // Wrapper around wxEvtHandler::QueueEvent(): adds an event for later |
2540 | // processing, unlike wxPostEvent it is safe to use from different thread even | |
2541 | // for events with wxString members | |
2542 | inline void wxQueueEvent(wxEvtHandler *dest, wxEvent *event) | |
2543 | { | |
2544 | wxCHECK_RET( dest, "need an object to queue event for" ); | |
2545 | ||
2546 | dest->QueueEvent(event); | |
2547 | } | |
2548 | ||
96d38c7e | 2549 | typedef void (wxEvtHandler::*wxEventFunction)(wxEvent&); |
85ee6241 | 2550 | typedef void (wxEvtHandler::*wxIdleEventFunction)(wxIdleEvent&); |
96d38c7e | 2551 | |
7fa03f04 VZ |
2552 | #define wxEventHandler(func) \ |
2553 | (wxObjectEventFunction)wxStaticCastEvent(wxEventFunction, &func) | |
85ee6241 VZ |
2554 | #define wxIdleEventHandler(func) \ |
2555 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxIdleEventFunction, &func) | |
7fa03f04 | 2556 | |
e90c1d2a | 2557 | #if wxUSE_GUI |
7fa03f04 | 2558 | |
c4fa5aa7 VZ |
2559 | // ---------------------------------------------------------------------------- |
2560 | // wxEventBlocker: helper class to temporarily disable event handling for a window | |
2561 | // ---------------------------------------------------------------------------- | |
2562 | ||
b483f5fe | 2563 | class WXDLLIMPEXP_CORE wxEventBlocker : public wxEvtHandler |
c4fa5aa7 VZ |
2564 | { |
2565 | public: | |
2566 | wxEventBlocker(wxWindow *win, wxEventType type = wxEVT_ANY); | |
2567 | virtual ~wxEventBlocker(); | |
2568 | ||
2569 | void Block(wxEventType type) | |
2570 | { | |
2571 | m_eventsToBlock.push_back(type); | |
2572 | } | |
2573 | ||
2574 | virtual bool ProcessEvent(wxEvent& event); | |
2575 | ||
2576 | protected: | |
2577 | wxArrayInt m_eventsToBlock; | |
2578 | wxWindow *m_window; | |
2579 | ||
2580 | DECLARE_NO_COPY_CLASS(wxEventBlocker) | |
2581 | }; | |
2582 | ||
c801d85f KB |
2583 | typedef void (wxEvtHandler::*wxCommandEventFunction)(wxCommandEvent&); |
2584 | typedef void (wxEvtHandler::*wxScrollEventFunction)(wxScrollEvent&); | |
c5b42c87 | 2585 | typedef void (wxEvtHandler::*wxScrollWinEventFunction)(wxScrollWinEvent&); |
c801d85f KB |
2586 | typedef void (wxEvtHandler::*wxSizeEventFunction)(wxSizeEvent&); |
2587 | typedef void (wxEvtHandler::*wxMoveEventFunction)(wxMoveEvent&); | |
2588 | typedef void (wxEvtHandler::*wxPaintEventFunction)(wxPaintEvent&); | |
7309deea | 2589 | typedef void (wxEvtHandler::*wxNcPaintEventFunction)(wxNcPaintEvent&); |
c801d85f KB |
2590 | typedef void (wxEvtHandler::*wxEraseEventFunction)(wxEraseEvent&); |
2591 | typedef void (wxEvtHandler::*wxMouseEventFunction)(wxMouseEvent&); | |
2592 | typedef void (wxEvtHandler::*wxCharEventFunction)(wxKeyEvent&); | |
2593 | typedef void (wxEvtHandler::*wxFocusEventFunction)(wxFocusEvent&); | |
456bc6d9 | 2594 | typedef void (wxEvtHandler::*wxChildFocusEventFunction)(wxChildFocusEvent&); |
c801d85f KB |
2595 | typedef void (wxEvtHandler::*wxActivateEventFunction)(wxActivateEvent&); |
2596 | typedef void (wxEvtHandler::*wxMenuEventFunction)(wxMenuEvent&); | |
2597 | typedef void (wxEvtHandler::*wxJoystickEventFunction)(wxJoystickEvent&); | |
2598 | typedef void (wxEvtHandler::*wxDropFilesEventFunction)(wxDropFilesEvent&); | |
2599 | typedef void (wxEvtHandler::*wxInitDialogEventFunction)(wxInitDialogEvent&); | |
7fa03f04 VZ |
2600 | typedef void (wxEvtHandler::*wxSysColourChangedEventFunction)(wxSysColourChangedEvent&); |
2601 | typedef void (wxEvtHandler::*wxDisplayChangedEventFunction)(wxDisplayChangedEvent&); | |
c801d85f | 2602 | typedef void (wxEvtHandler::*wxUpdateUIEventFunction)(wxUpdateUIEvent&); |
c801d85f KB |
2603 | typedef void (wxEvtHandler::*wxCloseEventFunction)(wxCloseEvent&); |
2604 | typedef void (wxEvtHandler::*wxShowEventFunction)(wxShowEvent&); | |
9bc13858 | 2605 | typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&); |
98e78a5e | 2606 | typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&); |
81d66cf3 | 2607 | typedef void (wxEvtHandler::*wxNavigationKeyEventFunction)(wxNavigationKeyEvent&); |
f7bd2698 JS |
2608 | typedef void (wxEvtHandler::*wxPaletteChangedEventFunction)(wxPaletteChangedEvent&); |
2609 | typedef void (wxEvtHandler::*wxQueryNewPaletteEventFunction)(wxQueryNewPaletteEvent&); | |
43b5058d VZ |
2610 | typedef void (wxEvtHandler::*wxWindowCreateEventFunction)(wxWindowCreateEvent&); |
2611 | typedef void (wxEvtHandler::*wxWindowDestroyEventFunction)(wxWindowDestroyEvent&); | |
2612 | typedef void (wxEvtHandler::*wxSetCursorEventFunction)(wxSetCursorEvent&); | |
669f7a11 | 2613 | typedef void (wxEvtHandler::*wxNotifyEventFunction)(wxNotifyEvent&); |
b96340e6 | 2614 | typedef void (wxEvtHandler::*wxHelpEventFunction)(wxHelpEvent&); |
69231000 | 2615 | typedef void (wxEvtHandler::*wxContextMenuEventFunction)(wxContextMenuEvent&); |
a5e84126 | 2616 | typedef void (wxEvtHandler::*wxMouseCaptureChangedEventFunction)(wxMouseCaptureChangedEvent&); |
63e819f2 | 2617 | typedef void (wxEvtHandler::*wxMouseCaptureLostEventFunction)(wxMouseCaptureLostEvent&); |
78c91815 | 2618 | typedef void (wxEvtHandler::*wxClipboardTextEventFunction)(wxClipboardTextEvent&); |
7fa03f04 | 2619 | |
7fa03f04 VZ |
2620 | |
2621 | #define wxCommandEventHandler(func) \ | |
8bc3ec1f | 2622 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxCommandEventFunction, &func) |
7fa03f04 | 2623 | #define wxScrollEventHandler(func) \ |
8bc3ec1f | 2624 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxScrollEventFunction, &func) |
7fa03f04 | 2625 | #define wxScrollWinEventHandler(func) \ |
8bc3ec1f | 2626 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxScrollWinEventFunction, &func) |
7fa03f04 | 2627 | #define wxSizeEventHandler(func) \ |
8bc3ec1f | 2628 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSizeEventFunction, &func) |
7fa03f04 | 2629 | #define wxMoveEventHandler(func) \ |
8bc3ec1f | 2630 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxMoveEventFunction, &func) |
7fa03f04 | 2631 | #define wxPaintEventHandler(func) \ |
8bc3ec1f | 2632 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxPaintEventFunction, &func) |
7fa03f04 | 2633 | #define wxNcPaintEventHandler(func) \ |
8bc3ec1f | 2634 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNcPaintEventFunction, &func) |
7fa03f04 | 2635 | #define wxEraseEventHandler(func) \ |
8bc3ec1f | 2636 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxEraseEventFunction, &func) |
7fa03f04 | 2637 | #define wxMouseEventHandler(func) \ |
8bc3ec1f | 2638 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxMouseEventFunction, &func) |
7fa03f04 | 2639 | #define wxCharEventHandler(func) \ |
8bc3ec1f | 2640 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxCharEventFunction, &func) |
7fa03f04 VZ |
2641 | #define wxKeyEventHandler(func) wxCharEventHandler(func) |
2642 | #define wxFocusEventHandler(func) \ | |
8bc3ec1f | 2643 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxFocusEventFunction, &func) |
7fa03f04 | 2644 | #define wxChildFocusEventHandler(func) \ |
8bc3ec1f | 2645 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxChildFocusEventFunction, &func) |
7fa03f04 | 2646 | #define wxActivateEventHandler(func) \ |
8bc3ec1f | 2647 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxActivateEventFunction, &func) |
7fa03f04 | 2648 | #define wxMenuEventHandler(func) \ |
8bc3ec1f | 2649 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxMenuEventFunction, &func) |
7fa03f04 | 2650 | #define wxJoystickEventHandler(func) \ |
8bc3ec1f | 2651 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxJoystickEventFunction, &func) |
7fa03f04 | 2652 | #define wxDropFilesEventHandler(func) \ |
8bc3ec1f | 2653 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDropFilesEventFunction, &func) |
7fa03f04 | 2654 | #define wxInitDialogEventHandler(func) \ |
8bc3ec1f | 2655 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxInitDialogEventFunction, &func) |
7fa03f04 | 2656 | #define wxSysColourChangedEventHandler(func) \ |
8bc3ec1f | 2657 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSysColourChangedEventFunction, &func) |
7fa03f04 | 2658 | #define wxDisplayChangedEventHandler(func) \ |
8bc3ec1f | 2659 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDisplayChangedEventFunction, &func) |
7fa03f04 | 2660 | #define wxUpdateUIEventHandler(func) \ |
8bc3ec1f | 2661 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxUpdateUIEventFunction, &func) |
7fa03f04 | 2662 | #define wxCloseEventHandler(func) \ |
8bc3ec1f | 2663 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxCloseEventFunction, &func) |
7fa03f04 | 2664 | #define wxShowEventHandler(func) \ |
8bc3ec1f | 2665 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxShowEventFunction, &func) |
7fa03f04 | 2666 | #define wxIconizeEventHandler(func) \ |
8bc3ec1f | 2667 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxIconizeEventFunction, &func) |
7fa03f04 | 2668 | #define wxMaximizeEventHandler(func) \ |
8bc3ec1f | 2669 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxMaximizeEventFunction, &func) |
7fa03f04 | 2670 | #define wxNavigationKeyEventHandler(func) \ |
8bc3ec1f | 2671 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNavigationKeyEventFunction, &func) |
7fa03f04 | 2672 | #define wxPaletteChangedEventHandler(func) \ |
8bc3ec1f | 2673 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxPaletteChangedEventFunction, &func) |
7fa03f04 | 2674 | #define wxQueryNewPaletteEventHandler(func) \ |
8bc3ec1f | 2675 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxQueryNewPaletteEventFunction, &func) |
7fa03f04 | 2676 | #define wxWindowCreateEventHandler(func) \ |
8bc3ec1f | 2677 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWindowCreateEventFunction, &func) |
7fa03f04 | 2678 | #define wxWindowDestroyEventHandler(func) \ |
8bc3ec1f | 2679 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWindowDestroyEventFunction, &func) |
7fa03f04 | 2680 | #define wxSetCursorEventHandler(func) \ |
8bc3ec1f | 2681 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSetCursorEventFunction, &func) |
7fa03f04 | 2682 | #define wxNotifyEventHandler(func) \ |
8bc3ec1f | 2683 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxNotifyEventFunction, &func) |
7fa03f04 | 2684 | #define wxHelpEventHandler(func) \ |
8bc3ec1f | 2685 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxHelpEventFunction, &func) |
7fa03f04 | 2686 | #define wxContextMenuEventHandler(func) \ |
8bc3ec1f | 2687 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxContextMenuEventFunction, &func) |
7fa03f04 | 2688 | #define wxMouseCaptureChangedEventHandler(func) \ |
8bc3ec1f | 2689 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxMouseCaptureChangedEventFunction, &func) |
63e819f2 VS |
2690 | #define wxMouseCaptureLostEventHandler(func) \ |
2691 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxMouseCaptureLostEventFunction, &func) | |
78c91815 VZ |
2692 | #define wxClipboardTextEventHandler(func) \ |
2693 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxClipboardTextEventFunction, &func) | |
7fa03f04 | 2694 | |
e90c1d2a | 2695 | #endif // wxUSE_GUI |
c801d85f KB |
2696 | |
2697 | // N.B. In GNU-WIN32, you *have* to take the address of a member function | |
2698 | // (use &) or the compiler crashes... | |
2699 | ||
2700 | #define DECLARE_EVENT_TABLE() \ | |
2e4df4bf VZ |
2701 | private: \ |
2702 | static const wxEventTableEntry sm_eventTableEntries[]; \ | |
2703 | protected: \ | |
2704 | static const wxEventTable sm_eventTable; \ | |
b5a98acd VZ |
2705 | virtual const wxEventTable* GetEventTable() const; \ |
2706 | static wxEventHashTable sm_eventHashTable; \ | |
2707 | virtual wxEventHashTable& GetEventHashTable() const; | |
c801d85f | 2708 | |
48276300 VZ |
2709 | // N.B.: when building DLL with Borland C++ 5.5 compiler, you must initialize |
2710 | // sm_eventTable before using it in GetEventTable() or the compiler gives | |
2711 | // E2233 (see http://groups.google.com/groups?selm=397dcc8a%241_2%40dnews) | |
b5a98acd | 2712 | |
c801d85f | 2713 | #define BEGIN_EVENT_TABLE(theClass, baseClass) \ |
2e4df4bf VZ |
2714 | const wxEventTable theClass::sm_eventTable = \ |
2715 | { &baseClass::sm_eventTable, &theClass::sm_eventTableEntries[0] }; \ | |
48276300 VZ |
2716 | const wxEventTable *theClass::GetEventTable() const \ |
2717 | { return &theClass::sm_eventTable; } \ | |
b5a98acd VZ |
2718 | wxEventHashTable theClass::sm_eventHashTable(theClass::sm_eventTable); \ |
2719 | wxEventHashTable &theClass::GetEventHashTable() const \ | |
2720 | { return theClass::sm_eventHashTable; } \ | |
2e4df4bf | 2721 | const wxEventTableEntry theClass::sm_eventTableEntries[] = { \ |
c801d85f | 2722 | |
f96a9d34 JS |
2723 | #define BEGIN_EVENT_TABLE_TEMPLATE1(theClass, baseClass, T1) \ |
2724 | template<typename T1> \ | |
2725 | const wxEventTable theClass<T1>::sm_eventTable = \ | |
2726 | { &baseClass::sm_eventTable, &theClass<T1>::sm_eventTableEntries[0] }; \ | |
2727 | template<typename T1> \ | |
2728 | const wxEventTable *theClass<T1>::GetEventTable() const \ | |
2729 | { return &theClass<T1>::sm_eventTable; } \ | |
2730 | template<typename T1> \ | |
2731 | wxEventHashTable theClass<T1>::sm_eventHashTable(theClass<T1>::sm_eventTable); \ | |
2732 | template<typename T1> \ | |
2733 | wxEventHashTable &theClass<T1>::GetEventHashTable() const \ | |
2734 | { return theClass<T1>::sm_eventHashTable; } \ | |
2735 | template<typename T1> \ | |
2736 | const wxEventTableEntry theClass<T1>::sm_eventTableEntries[] = { \ | |
2737 | ||
2738 | #define BEGIN_EVENT_TABLE_TEMPLATE2(theClass, baseClass, T1, T2) \ | |
2739 | template<typename T1, typename T2> \ | |
2740 | const wxEventTable theClass<T1, T2>::sm_eventTable = \ | |
2741 | { &baseClass::sm_eventTable, &theClass<T1, T2>::sm_eventTableEntries[0] }; \ | |
2742 | template<typename T1, typename T2> \ | |
2743 | const wxEventTable *theClass<T1, T2>::GetEventTable() const \ | |
2744 | { return &theClass<T1, T2>::sm_eventTable; } \ | |
2745 | template<typename T1, typename T2> \ | |
2746 | wxEventHashTable theClass<T1, T2>::sm_eventHashTable(theClass<T1, T2>::sm_eventTable); \ | |
2747 | template<typename T1, typename T2> \ | |
2748 | wxEventHashTable &theClass<T1, T2>::GetEventHashTable() const \ | |
2749 | { return theClass<T1, T2>::sm_eventHashTable; } \ | |
2750 | template<typename T1, typename T2> \ | |
2751 | const wxEventTableEntry theClass<T1, T2>::sm_eventTableEntries[] = { \ | |
2752 | ||
2753 | #define BEGIN_EVENT_TABLE_TEMPLATE3(theClass, baseClass, T1, T2, T3) \ | |
2754 | template<typename T1, typename T2, typename T3> \ | |
2755 | const wxEventTable theClass<T1, T2, T3>::sm_eventTable = \ | |
2756 | { &baseClass::sm_eventTable, &theClass<T1, T2, T3>::sm_eventTableEntries[0] }; \ | |
2757 | template<typename T1, typename T2, typename T3> \ | |
2758 | const wxEventTable *theClass<T1, T2, T3>::GetEventTable() const \ | |
2759 | { return &theClass<T1, T2, T3>::sm_eventTable; } \ | |
2760 | template<typename T1, typename T2, typename T3> \ | |
2761 | wxEventHashTable theClass<T1, T2, T3>::sm_eventHashTable(theClass<T1, T2, T3>::sm_eventTable); \ | |
2762 | template<typename T1, typename T2, typename T3> \ | |
2763 | wxEventHashTable &theClass<T1, T2, T3>::GetEventHashTable() const \ | |
2764 | { return theClass<T1, T2, T3>::sm_eventHashTable; } \ | |
2765 | template<typename T1, typename T2, typename T3> \ | |
2766 | const wxEventTableEntry theClass<T1, T2, T3>::sm_eventTableEntries[] = { \ | |
2767 | ||
2768 | #define BEGIN_EVENT_TABLE_TEMPLATE4(theClass, baseClass, T1, T2, T3, T4) \ | |
2769 | template<typename T1, typename T2, typename T3, typename T4> \ | |
2770 | const wxEventTable theClass<T1, T2, T3, T4>::sm_eventTable = \ | |
2771 | { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4>::sm_eventTableEntries[0] }; \ | |
2772 | template<typename T1, typename T2, typename T3, typename T4> \ | |
2773 | const wxEventTable *theClass<T1, T2, T3, T4>::GetEventTable() const \ | |
2774 | { return &theClass<T1, T2, T3, T4>::sm_eventTable; } \ | |
2775 | template<typename T1, typename T2, typename T3, typename T4> \ | |
2776 | wxEventHashTable theClass<T1, T2, T3, T4>::sm_eventHashTable(theClass<T1, T2, T3, T4>::sm_eventTable); \ | |
2777 | template<typename T1, typename T2, typename T3, typename T4> \ | |
2778 | wxEventHashTable &theClass<T1, T2, T3, T4>::GetEventHashTable() const \ | |
2779 | { return theClass<T1, T2, T3, T4>::sm_eventHashTable; } \ | |
2780 | template<typename T1, typename T2, typename T3, typename T4> \ | |
2781 | const wxEventTableEntry theClass<T1, T2, T3, T4>::sm_eventTableEntries[] = { \ | |
2782 | ||
2783 | #define BEGIN_EVENT_TABLE_TEMPLATE5(theClass, baseClass, T1, T2, T3, T4, T5) \ | |
2784 | template<typename T1, typename T2, typename T3, typename T4, typename T5> \ | |
2785 | const wxEventTable theClass<T1, T2, T3, T4, T5>::sm_eventTable = \ | |
2786 | { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5>::sm_eventTableEntries[0] }; \ | |
2787 | template<typename T1, typename T2, typename T3, typename T4, typename T5> \ | |
2788 | const wxEventTable *theClass<T1, T2, T3, T4, T5>::GetEventTable() const \ | |
2789 | { return &theClass<T1, T2, T3, T4, T5>::sm_eventTable; } \ | |
2790 | template<typename T1, typename T2, typename T3, typename T4, typename T5> \ | |
2791 | wxEventHashTable theClass<T1, T2, T3, T4, T5>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5>::sm_eventTable); \ | |
2792 | template<typename T1, typename T2, typename T3, typename T4, typename T5> \ | |
2793 | wxEventHashTable &theClass<T1, T2, T3, T4, T5>::GetEventHashTable() const \ | |
2794 | { return theClass<T1, T2, T3, T4, T5>::sm_eventHashTable; } \ | |
2795 | template<typename T1, typename T2, typename T3, typename T4, typename T5> \ | |
2796 | const wxEventTableEntry theClass<T1, T2, T3, T4, T5>::sm_eventTableEntries[] = { \ | |
2797 | ||
2798 | #define BEGIN_EVENT_TABLE_TEMPLATE7(theClass, baseClass, T1, T2, T3, T4, T5, T6, T7) \ | |
2799 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \ | |
2800 | const wxEventTable theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable = \ | |
2801 | { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTableEntries[0] }; \ | |
2802 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \ | |
2803 | const wxEventTable *theClass<T1, T2, T3, T4, T5, T6, T7>::GetEventTable() const \ | |
2804 | { return &theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable; } \ | |
2805 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \ | |
2806 | wxEventHashTable theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTable); \ | |
2807 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \ | |
2808 | wxEventHashTable &theClass<T1, T2, T3, T4, T5, T6, T7>::GetEventHashTable() const \ | |
2809 | { return theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventHashTable; } \ | |
2810 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> \ | |
2811 | const wxEventTableEntry theClass<T1, T2, T3, T4, T5, T6, T7>::sm_eventTableEntries[] = { \ | |
2812 | ||
2813 | #define BEGIN_EVENT_TABLE_TEMPLATE8(theClass, baseClass, T1, T2, T3, T4, T5, T6, T7, T8) \ | |
2814 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \ | |
2815 | const wxEventTable theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable = \ | |
2816 | { &baseClass::sm_eventTable, &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTableEntries[0] }; \ | |
2817 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \ | |
2818 | const wxEventTable *theClass<T1, T2, T3, T4, T5, T6, T7, T8>::GetEventTable() const \ | |
2819 | { return &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable; } \ | |
2820 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \ | |
2821 | wxEventHashTable theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventHashTable(theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTable); \ | |
2822 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \ | |
2823 | wxEventHashTable &theClass<T1, T2, T3, T4, T5, T6, T7, T8>::GetEventHashTable() const \ | |
2824 | { return theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventHashTable; } \ | |
2825 | template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> \ | |
2826 | const wxEventTableEntry theClass<T1, T2, T3, T4, T5, T6, T7, T8>::sm_eventTableEntries[] = { \ | |
2827 | ||
33e29419 | 2828 | #define END_EVENT_TABLE() DECLARE_EVENT_TABLE_ENTRY( wxEVT_NULL, 0, 0, 0, 0 ) }; |
2b854a32 | 2829 | |
c801d85f KB |
2830 | /* |
2831 | * Event table macros | |
2832 | */ | |
2833 | ||
7fa03f04 VZ |
2834 | // helpers for writing shorter code below: declare an event macro taking 2, 1 |
2835 | // or none ids (the missing ids default to wxID_ANY) | |
2836 | // | |
2837 | // macro arguments: | |
2838 | // - evt one of wxEVT_XXX constants | |
2839 | // - id1, id2 ids of the first/last id | |
2840 | // - fn the function (should be cast to the right type) | |
2841 | #define wx__DECLARE_EVT2(evt, id1, id2, fn) \ | |
2842 | DECLARE_EVENT_TABLE_ENTRY(evt, id1, id2, fn, NULL), | |
2843 | #define wx__DECLARE_EVT1(evt, id, fn) \ | |
2844 | wx__DECLARE_EVT2(evt, id, wxID_ANY, fn) | |
2845 | #define wx__DECLARE_EVT0(evt, fn) \ | |
2846 | wx__DECLARE_EVT1(evt, wxID_ANY, fn) | |
2847 | ||
2848 | ||
c801d85f | 2849 | // Generic events |
7fa03f04 VZ |
2850 | #define EVT_CUSTOM(event, winid, func) \ |
2851 | wx__DECLARE_EVT1(event, winid, wxEventHandler(func)) | |
2852 | #define EVT_CUSTOM_RANGE(event, id1, id2, func) \ | |
2853 | wx__DECLARE_EVT2(event, id1, id2, wxEventHandler(func)) | |
c801d85f | 2854 | |
265accbe | 2855 | // EVT_COMMAND |
96eb51bb | 2856 | #define EVT_COMMAND(winid, event, func) \ |
7fa03f04 | 2857 | wx__DECLARE_EVT1(event, winid, wxCommandEventHandler(func)) |
96eb51bb | 2858 | #define EVT_COMMAND_RANGE(id1, id2, event, func) \ |
7fa03f04 | 2859 | wx__DECLARE_EVT2(event, id1, id2, wxCommandEventHandler(func)) |
265accbe | 2860 | |
7fa03f04 VZ |
2861 | #define EVT_NOTIFY(event, winid, func) \ |
2862 | wx__DECLARE_EVT1(event, winid, wxNotifyEventHandler(func)) | |
2863 | #define EVT_NOTIFY_RANGE(event, id1, id2, func) \ | |
2864 | wx__DECLARE_EVT2(event, id1, id2, wxNotifyEventHandler(func)) | |
265accbe | 2865 | |
c801d85f | 2866 | // Miscellaneous |
7fa03f04 VZ |
2867 | #define EVT_SIZE(func) wx__DECLARE_EVT0(wxEVT_SIZE, wxSizeEventHandler(func)) |
2868 | #define EVT_SIZING(func) wx__DECLARE_EVT0(wxEVT_SIZING, wxSizeEventHandler(func)) | |
2869 | #define EVT_MOVE(func) wx__DECLARE_EVT0(wxEVT_MOVE, wxMoveEventHandler(func)) | |
2870 | #define EVT_MOVING(func) wx__DECLARE_EVT0(wxEVT_MOVING, wxMoveEventHandler(func)) | |
aa767a45 JS |
2871 | #define EVT_MOVE_START(func) wx__DECLARE_EVT0(wxEVT_MOVE_START, wxMoveEventHandler(func)) |
2872 | #define EVT_MOVE_END(func) wx__DECLARE_EVT0(wxEVT_MOVE_END, wxMoveEventHandler(func)) | |
7fa03f04 VZ |
2873 | #define EVT_CLOSE(func) wx__DECLARE_EVT0(wxEVT_CLOSE_WINDOW, wxCloseEventHandler(func)) |
2874 | #define EVT_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_END_SESSION, wxCloseEventHandler(func)) | |
2875 | #define EVT_QUERY_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_QUERY_END_SESSION, wxCloseEventHandler(func)) | |
2876 | #define EVT_PAINT(func) wx__DECLARE_EVT0(wxEVT_PAINT, wxPaintEventHandler(func)) | |
2877 | #define EVT_NC_PAINT(func) wx__DECLARE_EVT0(wxEVT_NC_PAINT, wxNcPaintEventHandler(func)) | |
2878 | #define EVT_ERASE_BACKGROUND(func) wx__DECLARE_EVT0(wxEVT_ERASE_BACKGROUND, wxEraseEventHandler(func)) | |
2879 | #define EVT_CHAR(func) wx__DECLARE_EVT0(wxEVT_CHAR, wxCharEventHandler(func)) | |
2880 | #define EVT_KEY_DOWN(func) wx__DECLARE_EVT0(wxEVT_KEY_DOWN, wxKeyEventHandler(func)) | |
2881 | #define EVT_KEY_UP(func) wx__DECLARE_EVT0(wxEVT_KEY_UP, wxKeyEventHandler(func)) | |
5048c832 | 2882 | #if wxUSE_HOTKEY |
7fa03f04 | 2883 | #define EVT_HOTKEY(winid, func) wx__DECLARE_EVT1(wxEVT_HOTKEY, winid, wxCharEventHandler(func)) |
5048c832 | 2884 | #endif |
7fa03f04 VZ |
2885 | #define EVT_CHAR_HOOK(func) wx__DECLARE_EVT0(wxEVT_CHAR_HOOK, wxCharEventHandler(func)) |
2886 | #define EVT_MENU_OPEN(func) wx__DECLARE_EVT0(wxEVT_MENU_OPEN, wxMenuEventHandler(func)) | |
2887 | #define EVT_MENU_CLOSE(func) wx__DECLARE_EVT0(wxEVT_MENU_CLOSE, wxMenuEventHandler(func)) | |
2888 | #define EVT_MENU_HIGHLIGHT(winid, func) wx__DECLARE_EVT1(wxEVT_MENU_HIGHLIGHT, winid, wxMenuEventHandler(func)) | |
2889 | #define EVT_MENU_HIGHLIGHT_ALL(func) wx__DECLARE_EVT0(wxEVT_MENU_HIGHLIGHT, wxMenuEventHandler(func)) | |
2890 | #define EVT_SET_FOCUS(func) wx__DECLARE_EVT0(wxEVT_SET_FOCUS, wxFocusEventHandler(func)) | |
2891 | #define EVT_KILL_FOCUS(func) wx__DECLARE_EVT0(wxEVT_KILL_FOCUS, wxFocusEventHandler(func)) | |
2892 | #define EVT_CHILD_FOCUS(func) wx__DECLARE_EVT0(wxEVT_CHILD_FOCUS, wxChildFocusEventHandler(func)) | |
2893 | #define EVT_ACTIVATE(func) wx__DECLARE_EVT0(wxEVT_ACTIVATE, wxActivateEventHandler(func)) | |
2894 | #define EVT_ACTIVATE_APP(func) wx__DECLARE_EVT0(wxEVT_ACTIVATE_APP, wxActivateEventHandler(func)) | |
afafd942 | 2895 | #define EVT_HIBERNATE(func) wx__DECLARE_EVT0(wxEVT_HIBERNATE, wxActivateEventHandler(func)) |
7fa03f04 VZ |
2896 | #define EVT_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_END_SESSION, wxCloseEventHandler(func)) |
2897 | #define EVT_QUERY_END_SESSION(func) wx__DECLARE_EVT0(wxEVT_QUERY_END_SESSION, wxCloseEventHandler(func)) | |
2898 | #define EVT_DROP_FILES(func) wx__DECLARE_EVT0(wxEVT_DROP_FILES, wxDropFilesEventHandler(func)) | |
2899 | #define EVT_INIT_DIALOG(func) wx__DECLARE_EVT0(wxEVT_INIT_DIALOG, wxInitDialogEventHandler(func)) | |
2900 | #define EVT_SYS_COLOUR_CHANGED(func) wx__DECLARE_EVT0(wxEVT_SYS_COLOUR_CHANGED, wxSysColourChangedEventHandler(func)) | |
2901 | #define EVT_DISPLAY_CHANGED(func) wx__DECLARE_EVT0(wxEVT_DISPLAY_CHANGED, wxDisplayChangedEventHandler(func)) | |
2902 | #define EVT_SHOW(func) wx__DECLARE_EVT0(wxEVT_SHOW, wxShowEventHandler(func)) | |
2903 | #define EVT_MAXIMIZE(func) wx__DECLARE_EVT0(wxEVT_MAXIMIZE, wxMaximizeEventHandler(func)) | |
2904 | #define EVT_ICONIZE(func) wx__DECLARE_EVT0(wxEVT_ICONIZE, wxIconizeEventHandler(func)) | |
2905 | #define EVT_NAVIGATION_KEY(func) wx__DECLARE_EVT0(wxEVT_NAVIGATION_KEY, wxNavigationKeyEventHandler(func)) | |
2906 | #define EVT_PALETTE_CHANGED(func) wx__DECLARE_EVT0(wxEVT_PALETTE_CHANGED, wxPaletteChangedEventHandler(func)) | |
2907 | #define EVT_QUERY_NEW_PALETTE(func) wx__DECLARE_EVT0(wxEVT_QUERY_NEW_PALETTE, wxQueryNewPaletteEventHandler(func)) | |
2908 | #define EVT_WINDOW_CREATE(func) wx__DECLARE_EVT0(wxEVT_CREATE, wxWindowCreateEventHandler(func)) | |
2909 | #define EVT_WINDOW_DESTROY(func) wx__DECLARE_EVT0(wxEVT_DESTROY, wxWindowDestroyEventHandler(func)) | |
2910 | #define EVT_SET_CURSOR(func) wx__DECLARE_EVT0(wxEVT_SET_CURSOR, wxSetCursorEventHandler(func)) | |
2911 | #define EVT_MOUSE_CAPTURE_CHANGED(func) wx__DECLARE_EVT0(wxEVT_MOUSE_CAPTURE_CHANGED, wxMouseCaptureChangedEventHandler(func)) | |
63e819f2 | 2912 | #define EVT_MOUSE_CAPTURE_LOST(func) wx__DECLARE_EVT0(wxEVT_MOUSE_CAPTURE_LOST, wxMouseCaptureLostEventHandler(func)) |
c801d85f KB |
2913 | |
2914 | // Mouse events | |
7fa03f04 VZ |
2915 | #define EVT_LEFT_DOWN(func) wx__DECLARE_EVT0(wxEVT_LEFT_DOWN, wxMouseEventHandler(func)) |
2916 | #define EVT_LEFT_UP(func) wx__DECLARE_EVT0(wxEVT_LEFT_UP, wxMouseEventHandler(func)) | |
2917 | #define EVT_MIDDLE_DOWN(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_DOWN, wxMouseEventHandler(func)) | |
2918 | #define EVT_MIDDLE_UP(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_UP, wxMouseEventHandler(func)) | |
2919 | #define EVT_RIGHT_DOWN(func) wx__DECLARE_EVT0(wxEVT_RIGHT_DOWN, wxMouseEventHandler(func)) | |
2920 | #define EVT_RIGHT_UP(func) wx__DECLARE_EVT0(wxEVT_RIGHT_UP, wxMouseEventHandler(func)) | |
2921 | #define EVT_MOTION(func) wx__DECLARE_EVT0(wxEVT_MOTION, wxMouseEventHandler(func)) | |
2922 | #define EVT_LEFT_DCLICK(func) wx__DECLARE_EVT0(wxEVT_LEFT_DCLICK, wxMouseEventHandler(func)) | |
2923 | #define EVT_MIDDLE_DCLICK(func) wx__DECLARE_EVT0(wxEVT_MIDDLE_DCLICK, wxMouseEventHandler(func)) | |
2924 | #define EVT_RIGHT_DCLICK(func) wx__DECLARE_EVT0(wxEVT_RIGHT_DCLICK, wxMouseEventHandler(func)) | |
2925 | #define EVT_LEAVE_WINDOW(func) wx__DECLARE_EVT0(wxEVT_LEAVE_WINDOW, wxMouseEventHandler(func)) | |
2926 | #define EVT_ENTER_WINDOW(func) wx__DECLARE_EVT0(wxEVT_ENTER_WINDOW, wxMouseEventHandler(func)) | |
2927 | #define EVT_MOUSEWHEEL(func) wx__DECLARE_EVT0(wxEVT_MOUSEWHEEL, wxMouseEventHandler(func)) | |
01101e2d VZ |
2928 | #define EVT_MOUSE_AUX1_DOWN(func) wx__DECLARE_EVT0(wxEVT_AUX1_DOWN, wxMouseEventHandler(func)) |
2929 | #define EVT_MOUSE_AUX1_UP(func) wx__DECLARE_EVT0(wxEVT_AUX1_UP, wxMouseEventHandler(func)) | |
2930 | #define EVT_MOUSE_AUX1_DCLICK(func) wx__DECLARE_EVT0(wxEVT_AUX1_DCLICK, wxMouseEventHandler(func)) | |
2931 | #define EVT_MOUSE_AUX2_DOWN(func) wx__DECLARE_EVT0(wxEVT_AUX2_DOWN, wxMouseEventHandler(func)) | |
2932 | #define EVT_MOUSE_AUX2_UP(func) wx__DECLARE_EVT0(wxEVT_AUX2_UP, wxMouseEventHandler(func)) | |
2933 | #define EVT_MOUSE_AUX2_DCLICK(func) wx__DECLARE_EVT0(wxEVT_AUX2_DCLICK, wxMouseEventHandler(func)) | |
c801d85f KB |
2934 | |
2935 | // All mouse events | |
2936 | #define EVT_MOUSE_EVENTS(func) \ | |
7fa03f04 VZ |
2937 | EVT_LEFT_DOWN(func) \ |
2938 | EVT_LEFT_UP(func) \ | |
01101e2d | 2939 | EVT_LEFT_DCLICK(func) \ |
7fa03f04 VZ |
2940 | EVT_MIDDLE_DOWN(func) \ |
2941 | EVT_MIDDLE_UP(func) \ | |
01101e2d | 2942 | EVT_MIDDLE_DCLICK(func) \ |
7fa03f04 VZ |
2943 | EVT_RIGHT_DOWN(func) \ |
2944 | EVT_RIGHT_UP(func) \ | |
7fa03f04 | 2945 | EVT_RIGHT_DCLICK(func) \ |
01101e2d VZ |
2946 | EVT_MOUSE_AUX1_DOWN(func) \ |
2947 | EVT_MOUSE_AUX1_UP(func) \ | |
2948 | EVT_MOUSE_AUX1_DCLICK(func) \ | |
2949 | EVT_MOUSE_AUX2_DOWN(func) \ | |
2950 | EVT_MOUSE_AUX2_UP(func) \ | |
2951 | EVT_MOUSE_AUX2_DCLICK(func) \ | |
2952 | EVT_MOTION(func) \ | |
7fa03f04 VZ |
2953 | EVT_LEAVE_WINDOW(func) \ |
2954 | EVT_ENTER_WINDOW(func) \ | |
2955 | EVT_MOUSEWHEEL(func) | |
c801d85f | 2956 | |
c5b42c87 | 2957 | // Scrolling from wxWindow (sent to wxScrolledWindow) |
7fa03f04 VZ |
2958 | #define EVT_SCROLLWIN_TOP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_TOP, wxScrollWinEventHandler(func)) |
2959 | #define EVT_SCROLLWIN_BOTTOM(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEventHandler(func)) | |
2960 | #define EVT_SCROLLWIN_LINEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(func)) | |
2961 | #define EVT_SCROLLWIN_LINEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(func)) | |
2962 | #define EVT_SCROLLWIN_PAGEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEventHandler(func)) | |
2963 | #define EVT_SCROLLWIN_PAGEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEventHandler(func)) | |
2964 | #define EVT_SCROLLWIN_THUMBTRACK(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(func)) | |
2965 | #define EVT_SCROLLWIN_THUMBRELEASE(func) wx__DECLARE_EVT0(wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEventHandler(func)) | |
2966 | ||
c5b42c87 | 2967 | #define EVT_SCROLLWIN(func) \ |
7fa03f04 VZ |
2968 | EVT_SCROLLWIN_TOP(func) \ |
2969 | EVT_SCROLLWIN_BOTTOM(func) \ | |
2970 | EVT_SCROLLWIN_LINEUP(func) \ | |
2971 | EVT_SCROLLWIN_LINEDOWN(func) \ | |
2972 | EVT_SCROLLWIN_PAGEUP(func) \ | |
2973 | EVT_SCROLLWIN_PAGEDOWN(func) \ | |
2974 | EVT_SCROLLWIN_THUMBTRACK(func) \ | |
2975 | EVT_SCROLLWIN_THUMBRELEASE(func) | |
c5b42c87 RR |
2976 | |
2977 | // Scrolling from wxSlider and wxScrollBar | |
7fa03f04 VZ |
2978 | #define EVT_SCROLL_TOP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_TOP, wxScrollEventHandler(func)) |
2979 | #define EVT_SCROLL_BOTTOM(func) wx__DECLARE_EVT0(wxEVT_SCROLL_BOTTOM, wxScrollEventHandler(func)) | |
2980 | #define EVT_SCROLL_LINEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_LINEUP, wxScrollEventHandler(func)) | |
2981 | #define EVT_SCROLL_LINEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLL_LINEDOWN, wxScrollEventHandler(func)) | |
2982 | #define EVT_SCROLL_PAGEUP(func) wx__DECLARE_EVT0(wxEVT_SCROLL_PAGEUP, wxScrollEventHandler(func)) | |
2983 | #define EVT_SCROLL_PAGEDOWN(func) wx__DECLARE_EVT0(wxEVT_SCROLL_PAGEDOWN, wxScrollEventHandler(func)) | |
2984 | #define EVT_SCROLL_THUMBTRACK(func) wx__DECLARE_EVT0(wxEVT_SCROLL_THUMBTRACK, wxScrollEventHandler(func)) | |
2985 | #define EVT_SCROLL_THUMBRELEASE(func) wx__DECLARE_EVT0(wxEVT_SCROLL_THUMBRELEASE, wxScrollEventHandler(func)) | |
cbc85508 | 2986 | #define EVT_SCROLL_CHANGED(func) wx__DECLARE_EVT0(wxEVT_SCROLL_CHANGED, wxScrollEventHandler(func)) |
7fa03f04 | 2987 | |
c801d85f | 2988 | #define EVT_SCROLL(func) \ |
7fa03f04 VZ |
2989 | EVT_SCROLL_TOP(func) \ |
2990 | EVT_SCROLL_BOTTOM(func) \ | |
2991 | EVT_SCROLL_LINEUP(func) \ | |
2992 | EVT_SCROLL_LINEDOWN(func) \ | |
2993 | EVT_SCROLL_PAGEUP(func) \ | |
2994 | EVT_SCROLL_PAGEDOWN(func) \ | |
2995 | EVT_SCROLL_THUMBTRACK(func) \ | |
e8739575 | 2996 | EVT_SCROLL_THUMBRELEASE(func) \ |
84006e65 | 2997 | EVT_SCROLL_CHANGED(func) |
c801d85f | 2998 | |
c5b42c87 | 2999 | // Scrolling from wxSlider and wxScrollBar, with an id |
7fa03f04 VZ |
3000 | #define EVT_COMMAND_SCROLL_TOP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_TOP, winid, wxScrollEventHandler(func)) |
3001 | #define EVT_COMMAND_SCROLL_BOTTOM(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_BOTTOM, winid, wxScrollEventHandler(func)) | |
3002 | #define EVT_COMMAND_SCROLL_LINEUP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_LINEUP, winid, wxScrollEventHandler(func)) | |
3003 | #define EVT_COMMAND_SCROLL_LINEDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_LINEDOWN, winid, wxScrollEventHandler(func)) | |
3004 | #define EVT_COMMAND_SCROLL_PAGEUP(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_PAGEUP, winid, wxScrollEventHandler(func)) | |
3005 | #define EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_PAGEDOWN, winid, wxScrollEventHandler(func)) | |
3006 | #define EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_THUMBTRACK, winid, wxScrollEventHandler(func)) | |
3007 | #define EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_THUMBRELEASE, winid, wxScrollEventHandler(func)) | |
cbc85508 | 3008 | #define EVT_COMMAND_SCROLL_CHANGED(winid, func) wx__DECLARE_EVT1(wxEVT_SCROLL_CHANGED, winid, wxScrollEventHandler(func)) |
7fa03f04 | 3009 | |
d9e2e4c2 | 3010 | #define EVT_COMMAND_SCROLL(winid, func) \ |
7fa03f04 VZ |
3011 | EVT_COMMAND_SCROLL_TOP(winid, func) \ |
3012 | EVT_COMMAND_SCROLL_BOTTOM(winid, func) \ | |
3013 | EVT_COMMAND_SCROLL_LINEUP(winid, func) \ | |
3014 | EVT_COMMAND_SCROLL_LINEDOWN(winid, func) \ | |
3015 | EVT_COMMAND_SCROLL_PAGEUP(winid, func) \ | |
3016 | EVT_COMMAND_SCROLL_PAGEDOWN(winid, func) \ | |
3017 | EVT_COMMAND_SCROLL_THUMBTRACK(winid, func) \ | |
e8739575 | 3018 | EVT_COMMAND_SCROLL_THUMBRELEASE(winid, func) \ |
84006e65 | 3019 | EVT_COMMAND_SCROLL_CHANGED(winid, func) |
cbc85508 | 3020 | |
ca3e85cf WS |
3021 | #if WXWIN_COMPATIBILITY_2_6 |
3022 | // compatibility macros for the old name, deprecated in 2.8 | |
3023 | #define wxEVT_SCROLL_ENDSCROLL wxEVT_SCROLL_CHANGED | |
3024 | #define EVT_COMMAND_SCROLL_ENDSCROLL EVT_COMMAND_SCROLL_CHANGED | |
3025 | #define EVT_SCROLL_ENDSCROLL EVT_SCROLL_CHANGED | |
3026 | #endif // WXWIN_COMPATIBILITY_2_6 | |
c801d85f KB |
3027 | |
3028 | // Convenience macros for commonly-used commands | |
7fa03f04 VZ |
3029 | #define EVT_CHECKBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_CHECKBOX_CLICKED, winid, wxCommandEventHandler(func)) |
3030 | #define EVT_CHOICE(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_CHOICE_SELECTED, winid, wxCommandEventHandler(func)) | |
3031 | #define EVT_LISTBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOX_SELECTED, winid, wxCommandEventHandler(func)) | |
3032 | #define EVT_LISTBOX_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, winid, wxCommandEventHandler(func)) | |
3033 | #define EVT_MENU(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_MENU_SELECTED, winid, wxCommandEventHandler(func)) | |
3034 | #define EVT_MENU_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_COMMAND_MENU_SELECTED, id1, id2, wxCommandEventHandler(func)) | |
119727ad | 3035 | #if defined(__SMARTPHONE__) |
7fa03f04 | 3036 | # define EVT_BUTTON(winid, func) EVT_MENU(winid, func) |
119727ad | 3037 | #else |
7fa03f04 | 3038 | # define EVT_BUTTON(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_BUTTON_CLICKED, winid, wxCommandEventHandler(func)) |
119727ad | 3039 | #endif |
7fa03f04 VZ |
3040 | #define EVT_SLIDER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SLIDER_UPDATED, winid, wxCommandEventHandler(func)) |
3041 | #define EVT_RADIOBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RADIOBOX_SELECTED, winid, wxCommandEventHandler(func)) | |
3042 | #define EVT_RADIOBUTTON(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RADIOBUTTON_SELECTED, winid, wxCommandEventHandler(func)) | |
c801d85f | 3043 | // EVT_SCROLLBAR is now obsolete since we use EVT_COMMAND_SCROLL... events |
7fa03f04 VZ |
3044 | #define EVT_SCROLLBAR(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SCROLLBAR_UPDATED, winid, wxCommandEventHandler(func)) |
3045 | #define EVT_VLBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_VLBOX_SELECTED, winid, wxCommandEventHandler(func)) | |
3046 | #define EVT_COMBOBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_COMBOBOX_SELECTED, winid, wxCommandEventHandler(func)) | |
3047 | #define EVT_TOOL(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_CLICKED, winid, wxCommandEventHandler(func)) | |
a9a0ceca | 3048 | #define EVT_TOOL_DROPDOWN(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED, winid, wxCommandEventHandler(func)) |
7fa03f04 VZ |
3049 | #define EVT_TOOL_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_COMMAND_TOOL_CLICKED, id1, id2, wxCommandEventHandler(func)) |
3050 | #define EVT_TOOL_RCLICKED(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_RCLICKED, winid, wxCommandEventHandler(func)) | |
3051 | #define EVT_TOOL_RCLICKED_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_COMMAND_TOOL_RCLICKED, id1, id2, wxCommandEventHandler(func)) | |
3052 | #define EVT_TOOL_ENTER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TOOL_ENTER, winid, wxCommandEventHandler(func)) | |
3053 | #define EVT_CHECKLISTBOX(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, winid, wxCommandEventHandler(func)) | |
c801d85f KB |
3054 | |
3055 | // Generic command events | |
7fa03f04 VZ |
3056 | #define EVT_COMMAND_LEFT_CLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LEFT_CLICK, winid, wxCommandEventHandler(func)) |
3057 | #define EVT_COMMAND_LEFT_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_LEFT_DCLICK, winid, wxCommandEventHandler(func)) | |
3058 | #define EVT_COMMAND_RIGHT_CLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RIGHT_CLICK, winid, wxCommandEventHandler(func)) | |
3059 | #define EVT_COMMAND_RIGHT_DCLICK(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_RIGHT_DCLICK, winid, wxCommandEventHandler(func)) | |
3060 | #define EVT_COMMAND_SET_FOCUS(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_SET_FOCUS, winid, wxCommandEventHandler(func)) | |
3061 | #define EVT_COMMAND_KILL_FOCUS(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_KILL_FOCUS, winid, wxCommandEventHandler(func)) | |
3062 | #define EVT_COMMAND_ENTER(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_ENTER, winid, wxCommandEventHandler(func)) | |
c801d85f KB |
3063 | |
3064 | // Joystick events | |
1241ab8b | 3065 | |
7fa03f04 VZ |
3066 | #define EVT_JOY_BUTTON_DOWN(func) wx__DECLARE_EVT0(wxEVT_JOY_BUTTON_DOWN, wxJoystickEventHandler(func)) |
3067 | #define EVT_JOY_BUTTON_UP(func) wx__DECLARE_EVT0(wxEVT_JOY_BUTTON_UP, wxJoystickEventHandler(func)) | |
3068 | #define EVT_JOY_MOVE(func) wx__DECLARE_EVT0(wxEVT_JOY_MOVE, wxJoystickEventHandler(func)) | |
3069 | #define EVT_JOY_ZMOVE(func) wx__DECLARE_EVT0(wxEVT_JOY_ZMOVE, wxJoystickEventHandler(func)) | |
c801d85f KB |
3070 | |
3071 | // All joystick events | |
3072 | #define EVT_JOYSTICK_EVENTS(func) \ | |
7fa03f04 VZ |
3073 | EVT_JOY_BUTTON_DOWN(func) \ |
3074 | EVT_JOY_BUTTON_UP(func) \ | |
3075 | EVT_JOY_MOVE(func) \ | |
3076 | EVT_JOY_ZMOVE(func) | |
c801d85f KB |
3077 | |
3078 | // Idle event | |
7fa03f04 | 3079 | #define EVT_IDLE(func) wx__DECLARE_EVT0(wxEVT_IDLE, wxIdleEventHandler(func)) |
c801d85f KB |
3080 | |
3081 | // Update UI event | |
7fa03f04 VZ |
3082 | #define EVT_UPDATE_UI(winid, func) wx__DECLARE_EVT1(wxEVT_UPDATE_UI, winid, wxUpdateUIEventHandler(func)) |
3083 | #define EVT_UPDATE_UI_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_UPDATE_UI, id1, id2, wxUpdateUIEventHandler(func)) | |
c801d85f | 3084 | |
b96340e6 | 3085 | // Help events |
7fa03f04 VZ |
3086 | #define EVT_HELP(winid, func) wx__DECLARE_EVT1(wxEVT_HELP, winid, wxHelpEventHandler(func)) |
3087 | #define EVT_HELP_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_HELP, id1, id2, wxHelpEventHandler(func)) | |
3088 | #define EVT_DETAILED_HELP(winid, func) wx__DECLARE_EVT1(wxEVT_DETAILED_HELP, winid, wxHelpEventHandler(func)) | |
3089 | #define EVT_DETAILED_HELP_RANGE(id1, id2, func) wx__DECLARE_EVT2(wxEVT_DETAILED_HELP, id1, id2, wxHelpEventHandler(func)) | |
fb6261e9 | 3090 | |
69231000 | 3091 | // Context Menu Events |
7fa03f04 | 3092 | #define EVT_CONTEXT_MENU(func) wx__DECLARE_EVT0(wxEVT_CONTEXT_MENU, wxContextMenuEventHandler(func)) |
5cd2a6ae | 3093 | #define EVT_COMMAND_CONTEXT_MENU(winid, func) wx__DECLARE_EVT1(wxEVT_CONTEXT_MENU, winid, wxContextMenuEventHandler(func)) |
69231000 | 3094 | |
78c91815 VZ |
3095 | // Clipboard text Events |
3096 | #define EVT_TEXT_CUT(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TEXT_CUT, winid, wxClipboardTextEventHandler(func)) | |
3097 | #define EVT_TEXT_COPY(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TEXT_COPY, winid, wxClipboardTextEventHandler(func)) | |
3098 | #define EVT_TEXT_PASTE(winid, func) wx__DECLARE_EVT1(wxEVT_COMMAND_TEXT_PASTE, winid, wxClipboardTextEventHandler(func)) | |
3099 | ||
8e193f38 VZ |
3100 | // ---------------------------------------------------------------------------- |
3101 | // Global data | |
3102 | // ---------------------------------------------------------------------------- | |
3103 | ||
19c4d916 VZ |
3104 | // list containing event handlers with pending events for them |
3105 | // | |
3106 | // notice that each event handler should occur at most once in this list | |
bddd7a8d | 3107 | extern WXDLLIMPEXP_BASE wxList *wxPendingEvents; |
8e193f38 | 3108 | #if wxUSE_THREADS |
bddd7a8d | 3109 | extern WXDLLIMPEXP_BASE wxCriticalSection *wxPendingEventsLocker; |
8e193f38 VZ |
3110 | #endif |
3111 | ||
e90c1d2a VZ |
3112 | // ---------------------------------------------------------------------------- |
3113 | // Helper functions | |
3114 | // ---------------------------------------------------------------------------- | |
3115 | ||
3116 | #if wxUSE_GUI | |
e702ff0f JS |
3117 | |
3118 | // Find a window with the focus, that is also a descendant of the given window. | |
3119 | // This is used to determine the window to initially send commands to. | |
9f8b9d9c | 3120 | WXDLLIMPEXP_CORE wxWindow* wxFindFocusDescendant(wxWindow* ancestor); |
e702ff0f | 3121 | |
e90c1d2a VZ |
3122 | #endif // wxUSE_GUI |
3123 | ||
204abcd4 | 3124 | #endif // _WX_EVENT_H_ |