]> git.saurik.com Git - wxWidgets.git/blob - interface/wx/event.h
The rounded corners look really dumb at this size.
[wxWidgets.git] / interface / wx / event.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: event.h
3 // Purpose: interface of wxEvtHandler, wxEventBlocker and many
4 // wxEvent-derived classes
5 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 #if wxUSE_BASE
10
11 /**
12 The predefined constants for the number of times we propagate event
13 upwards window child-parent chain.
14 */
15 enum wxEventPropagation
16 {
17 /// don't propagate it at all
18 wxEVENT_PROPAGATE_NONE = 0,
19
20 /// propagate it until it is processed
21 wxEVENT_PROPAGATE_MAX = INT_MAX
22 };
23
24 /**
25 The different categories for a wxEvent; see wxEvent::GetEventCategory.
26
27 @note They are used as OR-combinable flags by wxEventLoopBase::YieldFor.
28 */
29 enum wxEventCategory
30 {
31 /**
32 This is the category for those events which are generated to update
33 the appearance of the GUI but which (usually) do not comport data
34 processing, i.e. which do not provide input or output data
35 (e.g. size events, scroll events, etc).
36 They are events NOT directly generated by the user's input devices.
37 */
38 wxEVT_CATEGORY_UI = 1,
39
40 /**
41 This category groups those events which are generated directly from the
42 user through input devices like mouse and keyboard and usually result in
43 data to be processed from the application
44 (e.g. mouse clicks, key presses, etc).
45 */
46 wxEVT_CATEGORY_USER_INPUT = 2,
47
48 /// This category is for wxSocketEvent
49 wxEVT_CATEGORY_SOCKET = 4,
50
51 /// This category is for wxTimerEvent
52 wxEVT_CATEGORY_TIMER = 8,
53
54 /**
55 This category is for any event used to send notifications from the
56 secondary threads to the main one or in general for notifications among
57 different threads (which may or may not be user-generated).
58 See e.g. wxThreadEvent.
59 */
60 wxEVT_CATEGORY_THREAD = 16,
61
62 /**
63 This mask is used in wxEventLoopBase::YieldFor to specify that all event
64 categories should be processed.
65 */
66 wxEVT_CATEGORY_ALL =
67 wxEVT_CATEGORY_UI|wxEVT_CATEGORY_USER_INPUT|wxEVT_CATEGORY_SOCKET| \
68 wxEVT_CATEGORY_TIMER|wxEVT_CATEGORY_THREAD
69 };
70
71 /**
72 @class wxEvent
73
74 An event is a structure holding information about an event passed to a
75 callback or member function.
76
77 wxEvent used to be a multipurpose event object, and is an abstract base class
78 for other event classes (see below).
79
80 For more information about events, see the @ref overview_events overview.
81
82 @beginWxPerlOnly
83 In wxPerl custom event classes should be derived from
84 @c Wx::PlEvent and @c Wx::PlCommandEvent.
85 @endWxPerlOnly
86
87 @library{wxbase}
88 @category{events}
89
90 @see wxCommandEvent, wxMouseEvent
91 */
92 class wxEvent : public wxObject
93 {
94 public:
95 /**
96 Constructor.
97
98 Notice that events are usually created by wxWidgets itself and creating
99 e.g. a wxPaintEvent in your code and sending it to e.g. a wxTextCtrl
100 will not usually affect it at all as native controls have no specific
101 knowledge about wxWidgets events. However you may construct objects of
102 specific types and pass them to wxEvtHandler::ProcessEvent() if you
103 want to create your own custom control and want to process its events
104 in the same manner as the standard ones.
105
106 Also please notice that the order of parameters in this constructor is
107 different from almost all the derived classes which specify the event
108 type as the first argument.
109
110 @param id
111 The identifier of the object (window, timer, ...) which generated
112 this event.
113 @param eventType
114 The unique type of event, e.g. @c wxEVT_PAINT, @c wxEVT_SIZE or
115 @c wxEVT_BUTTON.
116 */
117 wxEvent(int id = 0, wxEventType eventType = wxEVT_NULL);
118
119 /**
120 Returns a copy of the event.
121
122 Any event that is posted to the wxWidgets event system for later action
123 (via wxEvtHandler::AddPendingEvent, wxEvtHandler::QueueEvent or wxPostEvent())
124 must implement this method.
125
126 All wxWidgets events fully implement this method, but any derived events
127 implemented by the user should also implement this method just in case they
128 (or some event derived from them) are ever posted.
129
130 All wxWidgets events implement a copy constructor, so the easiest way of
131 implementing the Clone function is to implement a copy constructor for
132 a new event (call it MyEvent) and then define the Clone function like this:
133
134 @code
135 wxEvent *Clone() const { return new MyEvent(*this); }
136 @endcode
137 */
138 virtual wxEvent* Clone() const = 0;
139
140 /**
141 Returns the object (usually a window) associated with the event, if any.
142 */
143 wxObject* GetEventObject() const;
144
145 /**
146 Returns the identifier of the given event type, such as @c wxEVT_BUTTON.
147 */
148 wxEventType GetEventType() const;
149
150 /**
151 Returns a generic category for this event.
152 wxEvent implementation returns @c wxEVT_CATEGORY_UI by default.
153
154 This function is used to selectively process events in wxEventLoopBase::YieldFor.
155 */
156 virtual wxEventCategory GetEventCategory() const;
157
158 /**
159 Returns the identifier associated with this event, such as a button command id.
160 */
161 int GetId() const;
162
163 /**
164 Return the user data associated with a dynamically connected event handler.
165
166 wxEvtHandler::Connect() and wxEvtHandler::Bind() allow associating
167 optional @c userData pointer with the handler and this method returns
168 the value of this pointer.
169
170 The returned pointer is owned by wxWidgets and must not be deleted.
171
172 @since 2.9.5
173 */
174 wxObject *GetEventUserData() const;
175
176 /**
177 Returns @true if the event handler should be skipped, @false otherwise.
178 */
179 bool GetSkipped() const;
180
181 /**
182 Gets the timestamp for the event. The timestamp is the time in milliseconds
183 since some fixed moment (not necessarily the standard Unix Epoch, so only
184 differences between the timestamps and not their absolute values usually make sense).
185
186 @warning
187 wxWidgets returns a non-NULL timestamp only for mouse and key events
188 (see wxMouseEvent and wxKeyEvent).
189 */
190 long GetTimestamp() const;
191
192 /**
193 Returns @true if the event is or is derived from wxCommandEvent else it returns @false.
194
195 @note exists only for optimization purposes.
196 */
197 bool IsCommandEvent() const;
198
199 /**
200 Sets the propagation level to the given value (for example returned from an
201 earlier call to wxEvent::StopPropagation).
202 */
203 void ResumePropagation(int propagationLevel);
204
205 /**
206 Sets the originating object.
207 */
208 void SetEventObject(wxObject* object);
209
210 /**
211 Sets the event type.
212 */
213 void SetEventType(wxEventType type);
214
215 /**
216 Sets the identifier associated with this event, such as a button command id.
217 */
218 void SetId(int id);
219
220 /**
221 Sets the timestamp for the event.
222 */
223 void SetTimestamp(long timeStamp = 0);
224
225 /**
226 Test if this event should be propagated or not, i.e.\ if the propagation level
227 is currently greater than 0.
228 */
229 bool ShouldPropagate() const;
230
231 /**
232 This method can be used inside an event handler to control whether further
233 event handlers bound to this event will be called after the current one returns.
234
235 Without Skip() (or equivalently if Skip(@false) is used), the event will not
236 be processed any more. If Skip(@true) is called, the event processing system
237 continues searching for a further handler function for this event, even though
238 it has been processed already in the current handler.
239
240 In general, it is recommended to skip all non-command events to allow the
241 default handling to take place. The command events are, however, normally not
242 skipped as usually a single command such as a button click or menu item
243 selection must only be processed by one handler.
244 */
245 void Skip(bool skip = true);
246
247 /**
248 Stop the event from propagating to its parent window.
249
250 Returns the old propagation level value which may be later passed to
251 ResumePropagation() to allow propagating the event again.
252 */
253 int StopPropagation();
254
255 protected:
256 /**
257 Indicates how many levels the event can propagate.
258
259 This member is protected and should typically only be set in the constructors
260 of the derived classes. It may be temporarily changed by StopPropagation()
261 and ResumePropagation() and tested with ShouldPropagate().
262
263 The initial value is set to either @c wxEVENT_PROPAGATE_NONE (by default)
264 meaning that the event shouldn't be propagated at all or to
265 @c wxEVENT_PROPAGATE_MAX (for command events) meaning that it should be
266 propagated as much as necessary.
267
268 Any positive number means that the event should be propagated but no more than
269 the given number of times. E.g. the propagation level may be set to 1 to
270 propagate the event to its parent only, but not to its grandparent.
271 */
272 int m_propagationLevel;
273 };
274
275 #endif // wxUSE_BASE
276
277 #if wxUSE_GUI
278
279 /**
280 @class wxEventBlocker
281
282 This class is a special event handler which allows to discard
283 any event (or a set of event types) directed to a specific window.
284
285 Example:
286
287 @code
288 void MyWindow::DoSomething()
289 {
290 {
291 // block all events directed to this window while
292 // we do the 1000 FunctionWhichSendsEvents() calls
293 wxEventBlocker blocker(this);
294
295 for ( int i = 0; i 1000; i++ )
296 FunctionWhichSendsEvents(i);
297
298 } // ~wxEventBlocker called, old event handler is restored
299
300 // the event generated by this call will be processed:
301 FunctionWhichSendsEvents(0)
302 }
303 @endcode
304
305 @library{wxcore}
306 @category{events}
307
308 @see @ref overview_events_processing, wxEvtHandler
309 */
310 class wxEventBlocker : public wxEvtHandler
311 {
312 public:
313 /**
314 Constructs the blocker for the given window and for the given event type.
315
316 If @a type is @c wxEVT_ANY, then all events for that window are blocked.
317 You can call Block() after creation to add other event types to the list
318 of events to block.
319
320 Note that the @a win window @b must remain alive until the
321 wxEventBlocker object destruction.
322 */
323 wxEventBlocker(wxWindow* win, wxEventType type = -1);
324
325 /**
326 Destructor. The blocker will remove itself from the chain of event handlers for
327 the window provided in the constructor, thus restoring normal processing of events.
328 */
329 virtual ~wxEventBlocker();
330
331 /**
332 Adds to the list of event types which should be blocked the given @a eventType.
333 */
334 void Block(wxEventType eventType);
335 };
336
337
338
339 /**
340 Helper class to temporarily change an event to not propagate.
341 */
342 class wxPropagationDisabler
343 {
344 public:
345 wxPropagationDisabler(wxEvent& event);
346 ~wxPropagationDisabler();
347 };
348
349
350 /**
351 Helper class to temporarily lower propagation level.
352 */
353 class wxPropagateOnce
354 {
355 public:
356 wxPropagateOnce(wxEvent& event);
357 ~wxPropagateOnce();
358 };
359
360 #endif // wxUSE_GUI
361
362 #if wxUSE_BASE
363
364 /**
365 @class wxEvtHandler
366
367 A class that can handle events from the windowing system.
368 wxWindow is (and therefore all window classes are) derived from this class.
369
370 When events are received, wxEvtHandler invokes the method listed in the
371 event table using itself as the object. When using multiple inheritance
372 <b>it is imperative that the wxEvtHandler(-derived) class is the first
373 class inherited</b> such that the @c this pointer for the overall object
374 will be identical to the @c this pointer of the wxEvtHandler portion.
375
376 @library{wxbase}
377 @category{events}
378
379 @see @ref overview_events_processing, wxEventBlocker, wxEventLoopBase
380 */
381 class wxEvtHandler : public wxObject, public wxTrackable
382 {
383 public:
384 /**
385 Constructor.
386 */
387 wxEvtHandler();
388
389 /**
390 Destructor.
391
392 If the handler is part of a chain, the destructor will unlink itself
393 (see Unlink()).
394 */
395 virtual ~wxEvtHandler();
396
397
398 /**
399 @name Event queuing and processing
400 */
401 //@{
402
403 /**
404 Queue event for a later processing.
405
406 This method is similar to ProcessEvent() but while the latter is
407 synchronous, i.e. the event is processed immediately, before the
408 function returns, this one is asynchronous and returns immediately
409 while the event will be processed at some later time (usually during
410 the next event loop iteration).
411
412 Another important difference is that this method takes ownership of the
413 @a event parameter, i.e. it will delete it itself. This implies that
414 the event should be allocated on the heap and that the pointer can't be
415 used any more after the function returns (as it can be deleted at any
416 moment).
417
418 QueueEvent() can be used for inter-thread communication from the worker
419 threads to the main thread, it is safe in the sense that it uses
420 locking internally and avoids the problem mentioned in AddPendingEvent()
421 documentation by ensuring that the @a event object is not used by the
422 calling thread any more. Care should still be taken to avoid that some
423 fields of this object are used by it, notably any wxString members of
424 the event object must not be shallow copies of another wxString object
425 as this would result in them still using the same string buffer behind
426 the scenes. For example:
427 @code
428 void FunctionInAWorkerThread(const wxString& str)
429 {
430 wxCommandEvent* evt = new wxCommandEvent;
431
432 // NOT evt->SetString(str) as this would be a shallow copy
433 evt->SetString(str.c_str()); // make a deep copy
434
435 wxTheApp->QueueEvent( evt );
436 }
437 @endcode
438
439 Note that you can use wxThreadEvent instead of wxCommandEvent
440 to avoid this problem:
441 @code
442 void FunctionInAWorkerThread(const wxString& str)
443 {
444 wxThreadEvent evt;
445 evt->SetString(str);
446
447 // wxThreadEvent::Clone() makes sure that the internal wxString
448 // member is not shared by other wxString instances:
449 wxTheApp->QueueEvent( evt.Clone() );
450 }
451 @endcode
452
453 Finally notice that this method automatically wakes up the event loop
454 if it is currently idle by calling ::wxWakeUpIdle() so there is no need
455 to do it manually when using it.
456
457 @since 2.9.0
458
459 @param event
460 A heap-allocated event to be queued, QueueEvent() takes ownership
461 of it. This parameter shouldn't be @c NULL.
462 */
463 virtual void QueueEvent(wxEvent *event);
464
465 /**
466 Post an event to be processed later.
467
468 This function is similar to QueueEvent() but can't be used to post
469 events from worker threads for the event objects with wxString fields
470 (i.e. in practice most of them) because of an unsafe use of the same
471 wxString object which happens because the wxString field in the
472 original @a event object and its copy made internally by this function
473 share the same string buffer internally. Use QueueEvent() to avoid
474 this.
475
476 A copy of @a event is made by the function, so the original can be deleted
477 as soon as function returns (it is common that the original is created
478 on the stack). This requires that the wxEvent::Clone() method be
479 implemented by event so that it can be duplicated and stored until it
480 gets processed.
481
482 @param event
483 Event to add to the pending events queue.
484 */
485 virtual void AddPendingEvent(const wxEvent& event);
486
487 /**
488 Asynchronously call the given method.
489
490 Calling this function on an object schedules an asynchronous call to
491 the method specified as CallAfter() argument at a (slightly) later
492 time. This is useful when processing some events as certain actions
493 typically can't be performed inside their handlers, e.g. you shouldn't
494 show a modal dialog from a mouse click event handler as this would
495 break the mouse capture state -- but you can call a method showing
496 this message dialog after the current event handler completes.
497
498 The method being called must be the method of the object on which
499 CallAfter() itself is called.
500
501 Notice that it is safe to use CallAfter() from other, non-GUI,
502 threads, but that the method will be always called in the main, GUI,
503 thread context.
504
505 Example of use:
506 @code
507 class MyFrame : public wxFrame {
508 void OnClick(wxMouseEvent& event) {
509 CallAfter(&MyFrame::ShowPosition, event.GetPosition());
510 }
511
512 void ShowPosition(const wxPoint& pos) {
513 if ( wxMessageBox(
514 wxString::Format("Perform click at (%d, %d)?",
515 pos.x, pos.y), "", wxYES_NO) == wxYES )
516 {
517 ... do take this click into account ...
518 }
519 }
520 };
521 @endcode
522
523 @param method The method to call.
524 @param x1 The (optional) first parameter to pass to the method.
525 Currently, 0, 1 or 2 parameters can be passed. If you need to pass
526 more than 2 arguments, you can use the CallAfter<T>(const T& fn)
527 overload that can call any functor.
528
529 @note This method is not available with Visual C++ before version 8
530 (Visual Studio 2005) as earlier versions of the compiler don't
531 have the required support for C++ templates to implement it.
532
533 @since 2.9.5
534 */
535 template<typename T, typename T1, ...>
536 void CallAfter(void (T::*method)(T1, ...), T1 x1, ...);
537
538 /**
539 Asynchronously call the given functor.
540
541 Calling this function on an object schedules an asynchronous call to
542 the functor specified as CallAfter() argument at a (slightly) later
543 time. This is useful when processing some events as certain actions
544 typically can't be performed inside their handlers, e.g. you shouldn't
545 show a modal dialog from a mouse click event handler as this would
546 break the mouse capture state -- but you can call a function showing
547 this message dialog after the current event handler completes.
548
549 Notice that it is safe to use CallAfter() from other, non-GUI,
550 threads, but that the method will be always called in the main, GUI,
551 thread context.
552
553 This overload is particularly useful in combination with C++11 lambdas:
554 @code
555 wxGetApp().CallAfter([]{
556 wxBell();
557 });
558 @endcode
559
560 @param functor The functor to call.
561
562 @note This method is not available with Visual C++ before version 8
563 (Visual Studio 2005) as earlier versions of the compiler don't
564 have the required support for C++ templates to implement it.
565
566 @since 3.0
567 */
568 template<typename T>
569 void CallAfter(const T& functor);
570
571 /**
572 Processes an event, searching event tables and calling zero or more suitable
573 event handler function(s).
574
575 Normally, your application would not call this function: it is called in the
576 wxWidgets implementation to dispatch incoming user interface events to the
577 framework (and application).
578
579 However, you might need to call it if implementing new functionality
580 (such as a new control) where you define new event types, as opposed to
581 allowing the user to override virtual functions.
582
583 Notice that you don't usually need to override ProcessEvent() to
584 customize the event handling, overriding the specially provided
585 TryBefore() and TryAfter() functions is usually enough. For example,
586 wxMDIParentFrame may override TryBefore() to ensure that the menu
587 events are processed in the active child frame before being processed
588 in the parent frame itself.
589
590 The normal order of event table searching is as follows:
591 -# wxApp::FilterEvent() is called. If it returns anything but @c -1
592 (default) the processing stops here.
593 -# TryBefore() is called (this is where wxValidator are taken into
594 account for wxWindow objects). If this returns @true, the function exits.
595 -# If the object is disabled (via a call to wxEvtHandler::SetEvtHandlerEnabled)
596 the function skips to step (7).
597 -# Dynamic event table of the handlers bound using Bind<>() is
598 searched. If a handler is found, it is executed and the function
599 returns @true unless the handler used wxEvent::Skip() to indicate
600 that it didn't handle the event in which case the search continues.
601 -# Static events table of the handlers bound using event table
602 macros is searched for this event handler. If this fails, the base
603 class event table is tried, and so on until no more tables
604 exist or an appropriate function was found. If a handler is found,
605 the same logic as in the previous step applies.
606 -# The search is applied down the entire chain of event handlers (usually the
607 chain has a length of one). This chain can be formed using wxEvtHandler::SetNextHandler():
608 @image html overview_events_chain.png
609 (referring to the image, if @c A->ProcessEvent is called and it doesn't handle
610 the event, @c B->ProcessEvent will be called and so on...).
611 Note that in the case of wxWindow you can build a stack of event handlers
612 (see wxWindow::PushEventHandler() for more info).
613 If any of the handlers of the chain return @true, the function exits.
614 -# TryAfter() is called: for the wxWindow object this may propagate the
615 event to the window parent (recursively). If the event is still not
616 processed, ProcessEvent() on wxTheApp object is called as the last
617 step.
618
619 Notice that steps (2)-(6) are performed in ProcessEventLocally()
620 which is called by this function.
621
622 @param event
623 Event to process.
624 @return
625 @true if a suitable event handler function was found and executed,
626 and the function did not call wxEvent::Skip.
627
628 @see SearchEventTable()
629 */
630 virtual bool ProcessEvent(wxEvent& event);
631
632 /**
633 Try to process the event in this handler and all those chained to it.
634
635 As explained in ProcessEvent() documentation, the event handlers may be
636 chained in a doubly-linked list. This function tries to process the
637 event in this handler (including performing any pre-processing done in
638 TryBefore(), e.g. applying validators) and all those following it in
639 the chain until the event is processed or the chain is exhausted.
640
641 This function is called from ProcessEvent() and, in turn, calls
642 TryBefore() and TryAfter(). It is not virtual and so cannot be
643 overridden but can, and should, be called to forward an event to
644 another handler instead of ProcessEvent() which would result in a
645 duplicate call to TryAfter(), e.g. resulting in all unprocessed events
646 being sent to the application object multiple times.
647
648 @since 2.9.1
649
650 @param event
651 Event to process.
652 @return
653 @true if this handler of one of those chained to it processed the
654 event.
655 */
656 bool ProcessEventLocally(wxEvent& event);
657
658 /**
659 Processes an event by calling ProcessEvent() and handles any exceptions
660 that occur in the process.
661 If an exception is thrown in event handler, wxApp::OnExceptionInMainLoop is called.
662
663 @param event
664 Event to process.
665
666 @return @true if the event was processed, @false if no handler was found
667 or an exception was thrown.
668
669 @see wxWindow::HandleWindowEvent
670 */
671 bool SafelyProcessEvent(wxEvent& event);
672
673 /**
674 Processes the pending events previously queued using QueueEvent() or
675 AddPendingEvent(); you must call this function only if you are sure
676 there are pending events for this handler, otherwise a @c wxCHECK
677 will fail.
678
679 The real processing still happens in ProcessEvent() which is called by this
680 function.
681
682 Note that this function needs a valid application object (see
683 wxAppConsole::GetInstance()) because wxApp holds the list of the event
684 handlers with pending events and this function manipulates that list.
685 */
686 void ProcessPendingEvents();
687
688 /**
689 Deletes all events queued on this event handler using QueueEvent() or
690 AddPendingEvent().
691
692 Use with care because the events which are deleted are (obviously) not
693 processed and this may have unwanted consequences (e.g. user actions events
694 will be lost).
695 */
696 void DeletePendingEvents();
697
698 /**
699 Searches the event table, executing an event handler function if an appropriate
700 one is found.
701
702 @param table
703 Event table to be searched.
704 @param event
705 Event to be matched against an event table entry.
706
707 @return @true if a suitable event handler function was found and
708 executed, and the function did not call wxEvent::Skip.
709
710 @remarks This function looks through the object's event table and tries
711 to find an entry that will match the event.
712 An entry will match if:
713 @li The event type matches, and
714 @li the identifier or identifier range matches, or the event table
715 entry's identifier is zero.
716
717 If a suitable function is called but calls wxEvent::Skip, this
718 function will fail, and searching will continue.
719
720 @todo this function in the header is listed as an "implementation only" function;
721 are we sure we want to document it?
722
723 @see ProcessEvent()
724 */
725 virtual bool SearchEventTable(wxEventTable& table,
726 wxEvent& event);
727
728 //@}
729
730
731 /**
732 @name Connecting and disconnecting
733 */
734 //@{
735
736 /**
737 Connects the given function dynamically with the event handler, id and
738 event type.
739
740 Notice that Bind() provides a more flexible and safer way to do the
741 same thing as Connect(), please use it in any new code -- while
742 Connect() is not formally deprecated due to its existing widespread
743 usage, it has no advantages compared to Bind().
744
745 This is an alternative to the use of static event tables. It is more
746 flexible as it allows to connect events generated by some object to an
747 event handler defined in a different object of a different class (which
748 is impossible to do directly with the event tables -- the events can be
749 only handled in another object if they are propagated upwards to it).
750 Do make sure to specify the correct @a eventSink when connecting to an
751 event of a different object.
752
753 See @ref overview_events_bind for more detailed explanation
754 of this function and the @ref page_samples_event sample for usage
755 examples.
756
757 This specific overload allows you to connect an event handler to a @e range
758 of @e source IDs.
759 Do not confuse @e source IDs with event @e types: source IDs identify the
760 event generator objects (typically wxMenuItem or wxWindow objects) while the
761 event @e type identify which type of events should be handled by the
762 given @e function (an event generator object may generate many different
763 types of events!).
764
765 @param id
766 The first ID of the identifier range to be associated with the event
767 handler function.
768 @param lastId
769 The last ID of the identifier range to be associated with the event
770 handler function.
771 @param eventType
772 The event type to be associated with this event handler.
773 @param function
774 The event handler function. Note that this function should
775 be explicitly converted to the correct type which can be done using a macro
776 called @c wxFooEventHandler for the handler for any @c wxFooEvent.
777 @param userData
778 Optional data to be associated with the event table entry.
779 wxWidgets will take ownership of this pointer, i.e. it will be
780 destroyed when the event handler is disconnected or at the program
781 termination. This pointer can be retrieved using
782 wxEvent::GetEventUserData() later.
783 @param eventSink
784 Object whose member function should be called. It must be specified
785 when connecting an event generated by one object to a member
786 function of a different object. If it is omitted, @c this is used.
787
788 @beginWxPerlOnly
789 In wxPerl this function takes 4 arguments: @a id, @a lastid,
790 @a type, @a method; if @a method is undef, the handler is
791 disconnected.}
792 @endWxPerlOnly
793
794 @see Bind<>()
795 */
796 void Connect(int id, int lastId, wxEventType eventType,
797 wxObjectEventFunction function,
798 wxObject* userData = NULL,
799 wxEvtHandler* eventSink = NULL);
800
801 /**
802 See the Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)
803 overload for more info.
804
805 This overload can be used to attach an event handler to a single source ID:
806
807 Example:
808 @code
809 frame->Connect( wxID_EXIT,
810 wxEVT_MENU,
811 wxCommandEventHandler(MyFrame::OnQuit) );
812 @endcode
813
814 @beginWxPerlOnly
815 Not supported by wxPerl.
816 @endWxPerlOnly
817 */
818 void Connect(int id, wxEventType eventType,
819 wxObjectEventFunction function,
820 wxObject* userData = NULL,
821 wxEvtHandler* eventSink = NULL);
822
823 /**
824 See the Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)
825 overload for more info.
826
827 This overload will connect the given event handler so that regardless of the
828 ID of the event source, the handler will be called.
829
830 @beginWxPerlOnly
831 Not supported by wxPerl.
832 @endWxPerlOnly
833 */
834 void Connect(wxEventType eventType,
835 wxObjectEventFunction function,
836 wxObject* userData = NULL,
837 wxEvtHandler* eventSink = NULL);
838
839 /**
840 Disconnects the given function dynamically from the event handler, using the
841 specified parameters as search criteria and returning @true if a matching
842 function has been found and removed.
843
844 This method can only disconnect functions which have been added using the
845 Connect() method. There is no way to disconnect functions connected using
846 the (static) event tables.
847
848 @param eventType
849 The event type associated with this event handler.
850 @param function
851 The event handler function.
852 @param userData
853 Data associated with the event table entry.
854 @param eventSink
855 Object whose member function should be called.
856
857 @beginWxPerlOnly
858 Not supported by wxPerl.
859 @endWxPerlOnly
860 */
861 bool Disconnect(wxEventType eventType,
862 wxObjectEventFunction function,
863 wxObject* userData = NULL,
864 wxEvtHandler* eventSink = NULL);
865
866 /**
867 See the Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)
868 overload for more info.
869
870 This overload takes the additional @a id parameter.
871
872 @beginWxPerlOnly
873 Not supported by wxPerl.
874 @endWxPerlOnly
875 */
876 bool Disconnect(int id = wxID_ANY,
877 wxEventType eventType = wxEVT_NULL,
878 wxObjectEventFunction function = NULL,
879 wxObject* userData = NULL,
880 wxEvtHandler* eventSink = NULL);
881
882 /**
883 See the Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*)
884 overload for more info.
885
886 This overload takes an additional range of source IDs.
887
888 @beginWxPerlOnly
889 In wxPerl this function takes 3 arguments: @a id,
890 @a lastid, @a type.
891 @endWxPerlOnly
892 */
893 bool Disconnect(int id, int lastId,
894 wxEventType eventType,
895 wxObjectEventFunction function = NULL,
896 wxObject* userData = NULL,
897 wxEvtHandler* eventSink = NULL);
898 //@}
899
900
901 /**
902 @name Binding and Unbinding
903 */
904 //@{
905
906 /**
907 Binds the given function, functor or method dynamically with the event.
908
909 This offers basically the same functionality as Connect(), but it is
910 more flexible as it also allows you to use ordinary functions and
911 arbitrary functors as event handlers. It is also less restrictive then
912 Connect() because you can use an arbitrary method as an event handler,
913 whereas Connect() requires a wxEvtHandler derived handler.
914
915 See @ref overview_events_bind for more detailed explanation
916 of this function and the @ref page_samples_event sample for usage
917 examples.
918
919 @param eventType
920 The event type to be associated with this event handler.
921 @param functor
922 The event handler functor. This can be an ordinary function but also
923 an arbitrary functor like boost::function<>.
924 @param id
925 The first ID of the identifier range to be associated with the event
926 handler.
927 @param lastId
928 The last ID of the identifier range to be associated with the event
929 handler.
930 @param userData
931 Optional data to be associated with the event table entry.
932 wxWidgets will take ownership of this pointer, i.e. it will be
933 destroyed when the event handler is disconnected or at the program
934 termination. This pointer can be retrieved using
935 wxEvent::GetEventUserData() later.
936
937 @see @ref overview_cpp_rtti_disabled
938
939 @since 2.9.0
940 */
941 template <typename EventTag, typename Functor>
942 void Bind(const EventTag& eventType,
943 Functor functor,
944 int id = wxID_ANY,
945 int lastId = wxID_ANY,
946 wxObject *userData = NULL);
947
948 /**
949 See the Bind<>(const EventTag&, Functor, int, int, wxObject*) overload for
950 more info.
951
952 This overload will bind the given method as the event handler.
953
954 @param eventType
955 The event type to be associated with this event handler.
956 @param method
957 The event handler method. This can be an arbitrary method (doesn't need
958 to be from a wxEvtHandler derived class).
959 @param handler
960 Object whose method should be called. It must always be specified
961 so it can be checked at compile time whether the given method is an
962 actual member of the given handler.
963 @param id
964 The first ID of the identifier range to be associated with the event
965 handler.
966 @param lastId
967 The last ID of the identifier range to be associated with the event
968 handler.
969 @param userData
970 Optional data to be associated with the event table entry.
971 wxWidgets will take ownership of this pointer, i.e. it will be
972 destroyed when the event handler is disconnected or at the program
973 termination. This pointer can be retrieved using
974 wxEvent::GetEventUserData() later.
975
976 @see @ref overview_cpp_rtti_disabled
977
978 @since 2.9.0
979 */
980 template <typename EventTag, typename Class, typename EventArg, typename EventHandler>
981 void Bind(const EventTag &eventType,
982 void (Class::*method)(EventArg &),
983 EventHandler *handler,
984 int id = wxID_ANY,
985 int lastId = wxID_ANY,
986 wxObject *userData = NULL);
987 /**
988 Unbinds the given function, functor or method dynamically from the
989 event handler, using the specified parameters as search criteria and
990 returning @true if a matching function has been found and removed.
991
992 This method can only unbind functions, functors or methods which have
993 been added using the Bind<>() method. There is no way to unbind
994 functions bound using the (static) event tables.
995
996 @param eventType
997 The event type associated with this event handler.
998 @param functor
999 The event handler functor. This can be an ordinary function but also
1000 an arbitrary functor like boost::function<>.
1001 @param id
1002 The first ID of the identifier range associated with the event
1003 handler.
1004 @param lastId
1005 The last ID of the identifier range associated with the event
1006 handler.
1007 @param userData
1008 Data associated with the event table entry.
1009
1010 @see @ref overview_cpp_rtti_disabled
1011
1012 @since 2.9.0
1013 */
1014 template <typename EventTag, typename Functor>
1015 bool Unbind(const EventTag& eventType,
1016 Functor functor,
1017 int id = wxID_ANY,
1018 int lastId = wxID_ANY,
1019 wxObject *userData = NULL);
1020
1021 /**
1022 See the Unbind<>(const EventTag&, Functor, int, int, wxObject*)
1023 overload for more info.
1024
1025 This overload unbinds the given method from the event..
1026
1027 @param eventType
1028 The event type associated with this event handler.
1029 @param method
1030 The event handler method associated with this event.
1031 @param handler
1032 Object whose method was called.
1033 @param id
1034 The first ID of the identifier range associated with the event
1035 handler.
1036 @param lastId
1037 The last ID of the identifier range associated with the event
1038 handler.
1039 @param userData
1040 Data associated with the event table entry.
1041
1042 @see @ref overview_cpp_rtti_disabled
1043
1044 @since 2.9.0
1045 */
1046 template <typename EventTag, typename Class, typename EventArg, typename EventHandler>
1047 bool Unbind(const EventTag &eventType,
1048 void (Class::*method)(EventArg&),
1049 EventHandler *handler,
1050 int id = wxID_ANY,
1051 int lastId = wxID_ANY,
1052 wxObject *userData = NULL );
1053 //@}
1054 /**
1055 @name User-supplied data
1056 */
1057 //@{
1058
1059 /**
1060 Returns user-supplied client data.
1061
1062 @remarks Normally, any extra data the programmer wishes to associate with
1063 the object should be made available by deriving a new class with
1064 new data members.
1065
1066 @see SetClientData()
1067 */
1068 void* GetClientData() const;
1069
1070 /**
1071 Returns a pointer to the user-supplied client data object.
1072
1073 @see SetClientObject(), wxClientData
1074 */
1075 wxClientData* GetClientObject() const;
1076
1077 /**
1078 Sets user-supplied client data.
1079
1080 @param data
1081 Data to be associated with the event handler.
1082
1083 @remarks Normally, any extra data the programmer wishes to associate
1084 with the object should be made available by deriving a new
1085 class with new data members. You must not call this method
1086 and SetClientObject on the same class - only one of them.
1087
1088 @see GetClientData()
1089 */
1090 void SetClientData(void* data);
1091
1092 /**
1093 Set the client data object. Any previous object will be deleted.
1094
1095 @see GetClientObject(), wxClientData
1096 */
1097 void SetClientObject(wxClientData* data);
1098
1099 //@}
1100
1101
1102 /**
1103 @name Event handler chaining
1104
1105 wxEvtHandler can be arranged in a double-linked list of handlers
1106 which is automatically iterated by ProcessEvent() if needed.
1107 */
1108 //@{
1109
1110 /**
1111 Returns @true if the event handler is enabled, @false otherwise.
1112
1113 @see SetEvtHandlerEnabled()
1114 */
1115 bool GetEvtHandlerEnabled() const;
1116
1117 /**
1118 Returns the pointer to the next handler in the chain.
1119
1120 @see SetNextHandler(), GetPreviousHandler(), SetPreviousHandler(),
1121 wxWindow::PushEventHandler, wxWindow::PopEventHandler
1122 */
1123 wxEvtHandler* GetNextHandler() const;
1124
1125 /**
1126 Returns the pointer to the previous handler in the chain.
1127
1128 @see SetPreviousHandler(), GetNextHandler(), SetNextHandler(),
1129 wxWindow::PushEventHandler, wxWindow::PopEventHandler
1130 */
1131 wxEvtHandler* GetPreviousHandler() const;
1132
1133 /**
1134 Enables or disables the event handler.
1135
1136 @param enabled
1137 @true if the event handler is to be enabled, @false if it is to be disabled.
1138
1139 @remarks You can use this function to avoid having to remove the event
1140 handler from the chain, for example when implementing a
1141 dialog editor and changing from edit to test mode.
1142
1143 @see GetEvtHandlerEnabled()
1144 */
1145 void SetEvtHandlerEnabled(bool enabled);
1146
1147 /**
1148 Sets the pointer to the next handler.
1149
1150 @remarks
1151 See ProcessEvent() for more info about how the chains of event handlers
1152 are internally used.
1153 Also remember that wxEvtHandler uses double-linked lists and thus if you
1154 use this function, you should also call SetPreviousHandler() on the
1155 argument passed to this function:
1156 @code
1157 handlerA->SetNextHandler(handlerB);
1158 handlerB->SetPreviousHandler(handlerA);
1159 @endcode
1160
1161 @param handler
1162 The event handler to be set as the next handler.
1163 Cannot be @NULL.
1164
1165 @see @ref overview_events_processing
1166 */
1167 virtual void SetNextHandler(wxEvtHandler* handler);
1168
1169 /**
1170 Sets the pointer to the previous handler.
1171 All remarks about SetNextHandler() apply to this function as well.
1172
1173 @param handler
1174 The event handler to be set as the previous handler.
1175 Cannot be @NULL.
1176
1177 @see @ref overview_events_processing
1178 */
1179 virtual void SetPreviousHandler(wxEvtHandler* handler);
1180
1181 /**
1182 Unlinks this event handler from the chain it's part of (if any);
1183 then links the "previous" event handler to the "next" one
1184 (so that the chain won't be interrupted).
1185
1186 E.g. if before calling Unlink() you have the following chain:
1187 @image html evthandler_unlink_before.png
1188 then after calling @c B->Unlink() you'll have:
1189 @image html evthandler_unlink_after.png
1190
1191 @since 2.9.0
1192 */
1193 void Unlink();
1194
1195 /**
1196 Returns @true if the next and the previous handler pointers of this
1197 event handler instance are @NULL.
1198
1199 @since 2.9.0
1200
1201 @see SetPreviousHandler(), SetNextHandler()
1202 */
1203 bool IsUnlinked() const;
1204
1205 //@}
1206
1207 /**
1208 @name Global event filters.
1209
1210 Methods for working with the global list of event filters.
1211
1212 Event filters can be defined to pre-process all the events that happen
1213 in an application, see wxEventFilter documentation for more information.
1214 */
1215 //@{
1216
1217 /**
1218 Add an event filter whose FilterEvent() method will be called for each
1219 and every event processed by wxWidgets.
1220
1221 The filters are called in LIFO order and wxApp is registered as an
1222 event filter by default. The pointer must remain valid until it's
1223 removed with RemoveFilter() and is not deleted by wxEvtHandler.
1224
1225 @since 2.9.3
1226 */
1227 static void AddFilter(wxEventFilter* filter);
1228
1229 /**
1230 Remove a filter previously installed with AddFilter().
1231
1232 It's an error to remove a filter that hadn't been previously added or
1233 was already removed.
1234
1235 @since 2.9.3
1236 */
1237 static void RemoveFilter(wxEventFilter* filter);
1238
1239 //@}
1240
1241 protected:
1242 /**
1243 Method called by ProcessEvent() before examining this object event
1244 tables.
1245
1246 This method can be overridden to hook into the event processing logic
1247 as early as possible. You should usually call the base class version
1248 when overriding this method, even if wxEvtHandler itself does nothing
1249 here, some derived classes do use this method, e.g. wxWindow implements
1250 support for wxValidator in it.
1251
1252 Example:
1253 @code
1254 class MyClass : public BaseClass // inheriting from wxEvtHandler
1255 {
1256 ...
1257 protected:
1258 virtual bool TryBefore(wxEvent& event)
1259 {
1260 if ( MyPreProcess(event) )
1261 return true;
1262
1263 return BaseClass::TryBefore(event);
1264 }
1265 };
1266 @endcode
1267
1268 @see ProcessEvent()
1269 */
1270 virtual bool TryBefore(wxEvent& event);
1271
1272 /**
1273 Method called by ProcessEvent() as last resort.
1274
1275 This method can be overridden to implement post-processing for the
1276 events which were not processed anywhere else.
1277
1278 The base class version handles forwarding the unprocessed events to
1279 wxApp at wxEvtHandler level and propagating them upwards the window
1280 child-parent chain at wxWindow level and so should usually be called
1281 when overriding this method:
1282 @code
1283 class MyClass : public BaseClass // inheriting from wxEvtHandler
1284 {
1285 ...
1286 protected:
1287 virtual bool TryAfter(wxEvent& event)
1288 {
1289 if ( BaseClass::TryAfter(event) )
1290 return true;
1291
1292 return MyPostProcess(event);
1293 }
1294 };
1295 @endcode
1296
1297 @see ProcessEvent()
1298 */
1299 virtual bool TryAfter(wxEvent& event);
1300 };
1301
1302 #endif // wxUSE_BASE
1303
1304 #if wxUSE_GUI
1305
1306 /**
1307 Flags for categories of keys.
1308
1309 These values are used by wxKeyEvent::IsKeyInCategory(). They may be
1310 combined via the bitwise operators |, &, and ~.
1311
1312 @since 2.9.1
1313 */
1314 enum wxKeyCategoryFlags
1315 {
1316 /// arrow keys, on and off numeric keypads
1317 WXK_CATEGORY_ARROW,
1318
1319 /// page up and page down keys, on and off numeric keypads
1320 WXK_CATEGORY_PAGING,
1321
1322 /// home and end keys, on and off numeric keypads
1323 WXK_CATEGORY_JUMP,
1324
1325 /// tab key, on and off numeric keypads
1326 WXK_CATEGORY_TAB,
1327
1328 /// backspace and delete keys, on and off numeric keypads
1329 WXK_CATEGORY_CUT,
1330
1331 /// union of WXK_CATEGORY_ARROW, WXK_CATEGORY_PAGING, and WXK_CATEGORY_JUMP categories
1332 WXK_CATEGORY_NAVIGATION
1333 };
1334
1335
1336 /**
1337 @class wxKeyEvent
1338
1339 This event class contains information about key press and release events.
1340
1341 The main information carried by this event is the key being pressed or
1342 released. It can be accessed using either GetKeyCode() function or
1343 GetUnicodeKey(). For the printable characters, the latter should be used as
1344 it works for any keys, including non-Latin-1 characters that can be entered
1345 when using national keyboard layouts. GetKeyCode() should be used to handle
1346 special characters (such as cursor arrows keys or @c HOME or @c INS and so
1347 on) which correspond to ::wxKeyCode enum elements above the @c WXK_START
1348 constant. While GetKeyCode() also returns the character code for Latin-1
1349 keys for compatibility, it doesn't work for Unicode characters in general
1350 and will return @c WXK_NONE for any non-Latin-1 ones. For this reason, it's
1351 recommended to always use GetUnicodeKey() and only fall back to GetKeyCode()
1352 if GetUnicodeKey() returned @c WXK_NONE meaning that the event corresponds
1353 to a non-printable special keys.
1354
1355 While both of these functions can be used with the events of @c
1356 wxEVT_KEY_DOWN, @c wxEVT_KEY_UP and @c wxEVT_CHAR types, the values
1357 returned by them are different for the first two events and the last one.
1358 For the latter, the key returned corresponds to the character that would
1359 appear in e.g. a text zone if the user pressed the key in it. As such, its
1360 value depends on the current state of the Shift key and, for the letters,
1361 on the state of Caps Lock modifier. For example, if @c A key is pressed
1362 without Shift being held down, wxKeyEvent of type @c wxEVT_CHAR generated
1363 for this key press will return (from either GetKeyCode() or GetUnicodeKey()
1364 as their meanings coincide for ASCII characters) key code of 97
1365 corresponding the ASCII value of @c a. And if the same key is pressed but
1366 with Shift being held (or Caps Lock being active), then the key could would
1367 be 65, i.e. ASCII value of capital @c A.
1368
1369 However for the key down and up events the returned key code will instead
1370 be @c A independently of the state of the modifier keys i.e. it depends
1371 only on physical key being pressed and is not translated to its logical
1372 representation using the current keyboard state. Such untranslated key
1373 codes are defined as follows:
1374 - For the letters they correspond to the @e upper case value of the
1375 letter.
1376 - For the other alphanumeric keys (e.g. @c 7 or @c +), the untranslated
1377 key code corresponds to the character produced by the key when it is
1378 pressed without Shift. E.g. in standard US keyboard layout the
1379 untranslated key code for the key @c =/+ in the upper right corner of
1380 the keyboard is 61 which is the ASCII value of @c =.
1381 - For the rest of the keys (i.e. special non-printable keys) it is the
1382 same as the normal key code as no translation is used anyhow.
1383
1384 Notice that the first rule applies to all Unicode letters, not just the
1385 usual Latin-1 ones. However for non-Latin-1 letters only GetUnicodeKey()
1386 can be used to retrieve the key code as GetKeyCode() just returns @c
1387 WXK_NONE in this case.
1388
1389 To summarize: you should handle @c wxEVT_CHAR if you need the translated
1390 key and @c wxEVT_KEY_DOWN if you only need the value of the key itself,
1391 independent of the current keyboard state.
1392
1393 @note Not all key down events may be generated by the user. As an example,
1394 @c wxEVT_KEY_DOWN with @c = key code can be generated using the
1395 standard US keyboard layout but not using the German one because the @c
1396 = key corresponds to Shift-0 key combination in this layout and the key
1397 code for it is @c 0, not @c =. Because of this you should avoid
1398 requiring your users to type key events that might be impossible to
1399 enter on their keyboard.
1400
1401
1402 Another difference between key and char events is that another kind of
1403 translation is done for the latter ones when the Control key is pressed:
1404 char events for ASCII letters in this case carry codes corresponding to the
1405 ASCII value of Ctrl-Latter, i.e. 1 for Ctrl-A, 2 for Ctrl-B and so on until
1406 26 for Ctrl-Z. This is convenient for terminal-like applications and can be
1407 completely ignored by all the other ones (if you need to handle Ctrl-A it
1408 is probably a better idea to use the key event rather than the char one).
1409 Notice that currently no translation is done for the presses of @c [, @c
1410 \\, @c ], @c ^ and @c _ keys which might be mapped to ASCII values from 27
1411 to 31.
1412 Since version 2.9.2, the enum values @c WXK_CONTROL_A - @c WXK_CONTROL_Z
1413 can be used instead of the non-descriptive constant values 1-26.
1414
1415 Finally, modifier keys only generate key events but no char events at all.
1416 The modifiers keys are @c WXK_SHIFT, @c WXK_CONTROL, @c WXK_ALT and various
1417 @c WXK_WINDOWS_XXX from ::wxKeyCode enum.
1418
1419 Modifier keys events are special in one additional aspect: usually the
1420 keyboard state associated with a key press is well defined, e.g.
1421 wxKeyboardState::ShiftDown() returns @c true only if the Shift key was held
1422 pressed when the key that generated this event itself was pressed. There is
1423 an ambiguity for the key press events for Shift key itself however. By
1424 convention, it is considered to be already pressed when it is pressed and
1425 already released when it is released. In other words, @c wxEVT_KEY_DOWN
1426 event for the Shift key itself will have @c wxMOD_SHIFT in GetModifiers()
1427 and ShiftDown() will return true while the @c wxEVT_KEY_UP event for Shift
1428 itself will not have @c wxMOD_SHIFT in its modifiers and ShiftDown() will
1429 return false.
1430
1431
1432 @b Tip: You may discover the key codes and modifiers generated by all the
1433 keys on your system interactively by running the @ref
1434 page_samples_keyboard wxWidgets sample and pressing some keys in it.
1435
1436 @note If a key down (@c EVT_KEY_DOWN) event is caught and the event handler
1437 does not call @c event.Skip() then the corresponding char event
1438 (@c EVT_CHAR) will not happen. This is by design and enables the
1439 programs that handle both types of events to avoid processing the
1440 same key twice. As a consequence, if you do not want to suppress the
1441 @c wxEVT_CHAR events for the keys you handle, always call @c
1442 event.Skip() in your @c wxEVT_KEY_DOWN handler. Not doing may also
1443 prevent accelerators defined using this key from working.
1444
1445 @note If a key is maintained in a pressed state, you will typically get a
1446 lot of (automatically generated) key down events but only one key up
1447 one at the end when the key is released so it is wrong to assume that
1448 there is one up event corresponding to each down one.
1449
1450 @note For Windows programmers: The key and char events in wxWidgets are
1451 similar to but slightly different from Windows @c WM_KEYDOWN and
1452 @c WM_CHAR events. In particular, Alt-x combination will generate a
1453 char event in wxWidgets (unless it is used as an accelerator) and
1454 almost all keys, including ones without ASCII equivalents, generate
1455 char events too.
1456
1457
1458 @beginEventTable{wxKeyEvent}
1459 @event{EVT_KEY_DOWN(func)}
1460 Process a @c wxEVT_KEY_DOWN event (any key has been pressed). If this
1461 event is handled and not skipped, @c wxEVT_CHAR will not be generated
1462 at all for this key press (but @c wxEVT_KEY_UP will be).
1463 @event{EVT_KEY_UP(func)}
1464 Process a @c wxEVT_KEY_UP event (any key has been released).
1465 @event{EVT_CHAR(func)}
1466 Process a @c wxEVT_CHAR event.
1467 @event{EVT_CHAR_HOOK(func)}
1468 Process a @c wxEVT_CHAR_HOOK event. Unlike all the other key events,
1469 this event is propagated upwards the window hierarchy which allows
1470 intercepting it in the parent window of the focused window to which it
1471 is sent initially (if there is no focused window, this event is sent to
1472 the wxApp global object). It is also generated before any other key
1473 events and so gives the parent window an opportunity to modify the
1474 keyboard handling of its children, e.g. it is used internally by
1475 wxWidgets in some ports to intercept pressing Esc key in any child of a
1476 dialog to close the dialog itself when it's pressed. By default, if
1477 this event is handled, i.e. the handler doesn't call wxEvent::Skip(),
1478 neither @c wxEVT_KEY_DOWN nor @c wxEVT_CHAR events will be generated
1479 (although @c wxEVT_KEY_UP still will be), i.e. it replaces the normal
1480 key events. However by calling the special DoAllowNextEvent() method
1481 you can handle @c wxEVT_CHAR_HOOK and still allow normal events
1482 generation. This is something that is rarely useful but can be required
1483 if you need to prevent a parent @c wxEVT_CHAR_HOOK handler from running
1484 without suppressing the normal key events. Finally notice that this
1485 event is not generated when the mouse is captured as it is considered
1486 that the window which has the capture should receive all the keyboard
1487 events too without allowing its parent wxTopLevelWindow to interfere
1488 with their processing.
1489 @endEventTable
1490
1491 @see wxKeyboardState
1492
1493 @library{wxcore}
1494 @category{events}
1495 */
1496 class wxKeyEvent : public wxEvent,
1497 public wxKeyboardState
1498 {
1499 public:
1500 /**
1501 Constructor.
1502 Currently, the only valid event types are @c wxEVT_CHAR and @c wxEVT_CHAR_HOOK.
1503 */
1504 wxKeyEvent(wxEventType keyEventType = wxEVT_NULL);
1505
1506 /**
1507 Returns the key code of the key that generated this event.
1508
1509 ASCII symbols return normal ASCII values, while events from special
1510 keys such as "left cursor arrow" (@c WXK_LEFT) return values outside of
1511 the ASCII range. See ::wxKeyCode for a full list of the virtual key
1512 codes.
1513
1514 Note that this method returns a meaningful value only for special
1515 non-alphanumeric keys or if the user entered a Latin-1 character (this
1516 includes ASCII and the accented letters found in Western European
1517 languages but not letters of other alphabets such as e.g. Cyrillic).
1518 Otherwise it simply method returns @c WXK_NONE and GetUnicodeKey()
1519 should be used to obtain the corresponding Unicode character.
1520
1521 Using GetUnicodeKey() is in general the right thing to do if you are
1522 interested in the characters typed by the user, GetKeyCode() should be
1523 only used for special keys (for which GetUnicodeKey() returns @c
1524 WXK_NONE). To handle both kinds of keys you might write:
1525 @code
1526 void MyHandler::OnChar(wxKeyEvent& event)
1527 {
1528 wxChar uc = event.GetUnicodeKey();
1529 if ( uc != WXK_NONE )
1530 {
1531 // It's a "normal" character. Notice that this includes
1532 // control characters in 1..31 range, e.g. WXK_RETURN or
1533 // WXK_BACK, so check for them explicitly.
1534 if ( uc >= 32 )
1535 {
1536 wxLogMessage("You pressed '%c'", uc);
1537 }
1538 else
1539 {
1540 // It's a control character
1541 ...
1542 }
1543 }
1544 else // No Unicode equivalent.
1545 {
1546 // It's a special key, deal with all the known ones:
1547 switch ( event.GetKeyCode() )
1548 {
1549 case WXK_LEFT:
1550 case WXK_RIGHT:
1551 ... move cursor ...
1552 break;
1553
1554 case WXK_F1:
1555 ... give help ...
1556 break;
1557 }
1558 }
1559 }
1560 @endcode
1561 */
1562 int GetKeyCode() const;
1563
1564 /**
1565 Returns true if the key is in the given key category.
1566
1567 @param category
1568 A bitwise combination of named ::wxKeyCategoryFlags constants.
1569
1570 @since 2.9.1
1571 */
1572 bool IsKeyInCategory(int category) const;
1573
1574 //@{
1575 /**
1576 Obtains the position (in client coordinates) at which the key was pressed.
1577
1578 Notice that under most platforms this position is simply the current
1579 mouse pointer position and has no special relationship to the key event
1580 itself.
1581
1582 @a x and @a y may be @NULL if the corresponding coordinate is not
1583 needed.
1584 */
1585 wxPoint GetPosition() const;
1586 void GetPosition(wxCoord* x, wxCoord* y) const;
1587 //@}
1588
1589 /**
1590 Returns the raw key code for this event.
1591
1592 The flags are platform-dependent and should only be used if the
1593 functionality provided by other wxKeyEvent methods is insufficient.
1594
1595 Under MSW, the raw key code is the value of @c wParam parameter of the
1596 corresponding message.
1597
1598 Under GTK, the raw key code is the @c keyval field of the corresponding
1599 GDK event.
1600
1601 Under OS X, the raw key code is the @c keyCode field of the
1602 corresponding NSEvent.
1603
1604 @note Currently the raw key codes are not supported by all ports, use
1605 @ifdef_ wxHAS_RAW_KEY_CODES to determine if this feature is available.
1606 */
1607 wxUint32 GetRawKeyCode() const;
1608
1609 /**
1610 Returns the low level key flags for this event.
1611
1612 The flags are platform-dependent and should only be used if the
1613 functionality provided by other wxKeyEvent methods is insufficient.
1614
1615 Under MSW, the raw flags are just the value of @c lParam parameter of
1616 the corresponding message.
1617
1618 Under GTK, the raw flags contain the @c hardware_keycode field of the
1619 corresponding GDK event.
1620
1621 Under OS X, the raw flags contain the modifiers state.
1622
1623 @note Currently the raw key flags are not supported by all ports, use
1624 @ifdef_ wxHAS_RAW_KEY_CODES to determine if this feature is available.
1625 */
1626 wxUint32 GetRawKeyFlags() const;
1627
1628 /**
1629 Returns the Unicode character corresponding to this key event.
1630
1631 If the key pressed doesn't have any character value (e.g. a cursor key)
1632 this method will return @c WXK_NONE. In this case you should use
1633 GetKeyCode() to retrieve the value of the key.
1634
1635 This function is only available in Unicode build, i.e. when
1636 @c wxUSE_UNICODE is 1.
1637 */
1638 wxChar GetUnicodeKey() const;
1639
1640 /**
1641 Returns the X position (in client coordinates) of the event.
1642
1643 @see GetPosition()
1644 */
1645 wxCoord GetX() const;
1646
1647 /**
1648 Returns the Y position (in client coordinates) of the event.
1649
1650 @see GetPosition()
1651 */
1652 wxCoord GetY() const;
1653
1654 /**
1655 Allow normal key events generation.
1656
1657 Can be called from @c wxEVT_CHAR_HOOK handler to indicate that the
1658 generation of normal events should @em not be suppressed, as it happens
1659 by default when this event is handled.
1660
1661 The intended use of this method is to allow some window object to
1662 prevent @c wxEVT_CHAR_HOOK handler in its parent window from running by
1663 defining its own handler for this event. Without calling this method,
1664 this would result in not generating @c wxEVT_KEY_DOWN nor @c wxEVT_CHAR
1665 events at all but by calling it you can ensure that these events would
1666 still be generated, even if @c wxEVT_CHAR_HOOK event was handled.
1667
1668 @since 2.9.3
1669 */
1670 void DoAllowNextEvent();
1671
1672 /**
1673 Returns @true if DoAllowNextEvent() had been called, @false by default.
1674
1675 This method is used by wxWidgets itself to determine whether the normal
1676 key events should be generated after @c wxEVT_CHAR_HOOK processing.
1677
1678 @since 2.9.3
1679 */
1680 bool IsNextEventAllowed() const;
1681 };
1682
1683
1684
1685 enum
1686 {
1687 wxJOYSTICK1,
1688 wxJOYSTICK2
1689 };
1690
1691 // Which button is down?
1692 enum
1693 {
1694 wxJOY_BUTTON_ANY = -1,
1695 wxJOY_BUTTON1 = 1,
1696 wxJOY_BUTTON2 = 2,
1697 wxJOY_BUTTON3 = 4,
1698 wxJOY_BUTTON4 = 8
1699 };
1700
1701
1702 /**
1703 @class wxJoystickEvent
1704
1705 This event class contains information about joystick events, particularly
1706 events received by windows.
1707
1708 @beginEventTable{wxJoystickEvent}
1709 @event{EVT_JOY_BUTTON_DOWN(func)}
1710 Process a @c wxEVT_JOY_BUTTON_DOWN event.
1711 @event{EVT_JOY_BUTTON_UP(func)}
1712 Process a @c wxEVT_JOY_BUTTON_UP event.
1713 @event{EVT_JOY_MOVE(func)}
1714 Process a @c wxEVT_JOY_MOVE event.
1715 @event{EVT_JOY_ZMOVE(func)}
1716 Process a @c wxEVT_JOY_ZMOVE event.
1717 @event{EVT_JOYSTICK_EVENTS(func)}
1718 Processes all joystick events.
1719 @endEventTable
1720
1721 @library{wxcore}
1722 @category{events}
1723
1724 @see wxJoystick
1725 */
1726 class wxJoystickEvent : public wxEvent
1727 {
1728 public:
1729 /**
1730 Constructor.
1731 */
1732 wxJoystickEvent(wxEventType eventType = wxEVT_NULL, int state = 0,
1733 int joystick = wxJOYSTICK1,
1734 int change = 0);
1735
1736 /**
1737 Returns @true if the event was a down event from the specified button
1738 (or any button).
1739
1740 @param button
1741 Can be @c wxJOY_BUTTONn where @c n is 1, 2, 3 or 4; or @c wxJOY_BUTTON_ANY to
1742 indicate any button down event.
1743 */
1744 bool ButtonDown(int button = wxJOY_BUTTON_ANY) const;
1745
1746 /**
1747 Returns @true if the specified button (or any button) was in a down state.
1748
1749 @param button
1750 Can be @c wxJOY_BUTTONn where @c n is 1, 2, 3 or 4; or @c wxJOY_BUTTON_ANY to
1751 indicate any button down event.
1752 */
1753 bool ButtonIsDown(int button = wxJOY_BUTTON_ANY) const;
1754
1755 /**
1756 Returns @true if the event was an up event from the specified button
1757 (or any button).
1758
1759 @param button
1760 Can be @c wxJOY_BUTTONn where @c n is 1, 2, 3 or 4; or @c wxJOY_BUTTON_ANY to
1761 indicate any button down event.
1762 */
1763 bool ButtonUp(int button = wxJOY_BUTTON_ANY) const;
1764
1765 /**
1766 Returns the identifier of the button changing state.
1767
1768 This is a @c wxJOY_BUTTONn identifier, where @c n is one of 1, 2, 3, 4.
1769 */
1770 int GetButtonChange() const;
1771
1772 /**
1773 Returns the down state of the buttons.
1774
1775 This is a @c wxJOY_BUTTONn identifier, where @c n is one of 1, 2, 3, 4.
1776 */
1777 int GetButtonState() const;
1778
1779 /**
1780 Returns the identifier of the joystick generating the event - one of
1781 wxJOYSTICK1 and wxJOYSTICK2.
1782 */
1783 int GetJoystick() const;
1784
1785 /**
1786 Returns the x, y position of the joystick event.
1787
1788 These coordinates are valid for all the events except wxEVT_JOY_ZMOVE.
1789 */
1790 wxPoint GetPosition() const;
1791
1792 /**
1793 Returns the z position of the joystick event.
1794
1795 This method can only be used for wxEVT_JOY_ZMOVE events.
1796 */
1797 int GetZPosition() const;
1798
1799 /**
1800 Returns @true if this was a button up or down event
1801 (@e not 'is any button down?').
1802 */
1803 bool IsButton() const;
1804
1805 /**
1806 Returns @true if this was an x, y move event.
1807 */
1808 bool IsMove() const;
1809
1810 /**
1811 Returns @true if this was a z move event.
1812 */
1813 bool IsZMove() const;
1814 };
1815
1816
1817
1818 /**
1819 @class wxScrollWinEvent
1820
1821 A scroll event holds information about events sent from scrolling windows.
1822
1823 Note that you can use the EVT_SCROLLWIN* macros for intercepting scroll window events
1824 from the receiving window.
1825
1826 @beginEventTable{wxScrollWinEvent}
1827 @event{EVT_SCROLLWIN(func)}
1828 Process all scroll events.
1829 @event{EVT_SCROLLWIN_TOP(func)}
1830 Process @c wxEVT_SCROLLWIN_TOP scroll-to-top events.
1831 @event{EVT_SCROLLWIN_BOTTOM(func)}
1832 Process @c wxEVT_SCROLLWIN_BOTTOM scroll-to-bottom events.
1833 @event{EVT_SCROLLWIN_LINEUP(func)}
1834 Process @c wxEVT_SCROLLWIN_LINEUP line up events.
1835 @event{EVT_SCROLLWIN_LINEDOWN(func)}
1836 Process @c wxEVT_SCROLLWIN_LINEDOWN line down events.
1837 @event{EVT_SCROLLWIN_PAGEUP(func)}
1838 Process @c wxEVT_SCROLLWIN_PAGEUP page up events.
1839 @event{EVT_SCROLLWIN_PAGEDOWN(func)}
1840 Process @c wxEVT_SCROLLWIN_PAGEDOWN page down events.
1841 @event{EVT_SCROLLWIN_THUMBTRACK(func)}
1842 Process @c wxEVT_SCROLLWIN_THUMBTRACK thumbtrack events
1843 (frequent events sent as the user drags the thumbtrack).
1844 @event{EVT_SCROLLWIN_THUMBRELEASE(func)}
1845 Process @c wxEVT_SCROLLWIN_THUMBRELEASE thumb release events.
1846 @endEventTable
1847
1848
1849 @library{wxcore}
1850 @category{events}
1851
1852 @see wxScrollEvent, @ref overview_events
1853 */
1854 class wxScrollWinEvent : public wxEvent
1855 {
1856 public:
1857 /**
1858 Constructor.
1859 */
1860 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, int pos = 0,
1861 int orientation = 0);
1862
1863 /**
1864 Returns wxHORIZONTAL or wxVERTICAL, depending on the orientation of the
1865 scrollbar.
1866
1867 @todo wxHORIZONTAL and wxVERTICAL should go in their own enum
1868 */
1869 int GetOrientation() const;
1870
1871 /**
1872 Returns the position of the scrollbar for the thumb track and release events.
1873
1874 Note that this field can't be used for the other events, you need to query
1875 the window itself for the current position in that case.
1876 */
1877 int GetPosition() const;
1878
1879 void SetOrientation(int orient);
1880 void SetPosition(int pos);
1881 };
1882
1883
1884
1885 /**
1886 @class wxSysColourChangedEvent
1887
1888 This class is used for system colour change events, which are generated
1889 when the user changes the colour settings using the control panel.
1890 This is only appropriate under Windows.
1891
1892 @remarks
1893 The default event handler for this event propagates the event to child windows,
1894 since Windows only sends the events to top-level windows.
1895 If intercepting this event for a top-level window, remember to call the base
1896 class handler, or to pass the event on to the window's children explicitly.
1897
1898 @beginEventTable{wxSysColourChangedEvent}
1899 @event{EVT_SYS_COLOUR_CHANGED(func)}
1900 Process a @c wxEVT_SYS_COLOUR_CHANGED event.
1901 @endEventTable
1902
1903 @library{wxcore}
1904 @category{events}
1905
1906 @see @ref overview_events
1907 */
1908 class wxSysColourChangedEvent : public wxEvent
1909 {
1910 public:
1911 /**
1912 Constructor.
1913 */
1914 wxSysColourChangedEvent();
1915 };
1916
1917
1918
1919 /**
1920 @class wxCommandEvent
1921
1922 This event class contains information about command events, which originate
1923 from a variety of simple controls.
1924
1925 Note that wxCommandEvents and wxCommandEvent-derived event classes by default
1926 and unlike other wxEvent-derived classes propagate upward from the source
1927 window (the window which emits the event) up to the first parent which processes
1928 the event. Be sure to read @ref overview_events_propagation.
1929
1930 More complex controls, such as wxTreeCtrl, have separate command event classes.
1931
1932 @beginEventTable{wxCommandEvent}
1933 @event{EVT_COMMAND(id, event, func)}
1934 Process a command, supplying the window identifier, command event identifier,
1935 and member function.
1936 @event{EVT_COMMAND_RANGE(id1, id2, event, func)}
1937 Process a command for a range of window identifiers, supplying the minimum and
1938 maximum window identifiers, command event identifier, and member function.
1939 @event{EVT_BUTTON(id, func)}
1940 Process a @c wxEVT_BUTTON command, which is generated by a wxButton control.
1941 @event{EVT_CHECKBOX(id, func)}
1942 Process a @c wxEVT_CHECKBOX command, which is generated by a wxCheckBox control.
1943 @event{EVT_CHOICE(id, func)}
1944 Process a @c wxEVT_CHOICE command, which is generated by a wxChoice control.
1945 @event{EVT_COMBOBOX(id, func)}
1946 Process a @c wxEVT_COMBOBOX command, which is generated by a wxComboBox control.
1947 @event{EVT_LISTBOX(id, func)}
1948 Process a @c wxEVT_LISTBOX command, which is generated by a wxListBox control.
1949 @event{EVT_LISTBOX_DCLICK(id, func)}
1950 Process a @c wxEVT_LISTBOX_DCLICK command, which is generated by a wxListBox control.
1951 @event{EVT_CHECKLISTBOX(id, func)}
1952 Process a @c wxEVT_CHECKLISTBOX command, which is generated by a wxCheckListBox control.
1953 @event{EVT_MENU(id, func)}
1954 Process a @c wxEVT_MENU command, which is generated by a menu item.
1955 @event{EVT_MENU_RANGE(id1, id2, func)}
1956 Process a @c wxEVT_MENU command, which is generated by a range of menu items.
1957 @event{EVT_CONTEXT_MENU(func)}
1958 Process the event generated when the user has requested a popup menu to appear by
1959 pressing a special keyboard key (under Windows) or by right clicking the mouse.
1960 @event{EVT_RADIOBOX(id, func)}
1961 Process a @c wxEVT_RADIOBOX command, which is generated by a wxRadioBox control.
1962 @event{EVT_RADIOBUTTON(id, func)}
1963 Process a @c wxEVT_RADIOBUTTON command, which is generated by a wxRadioButton control.
1964 @event{EVT_SCROLLBAR(id, func)}
1965 Process a @c wxEVT_SCROLLBAR command, which is generated by a wxScrollBar
1966 control. This is provided for compatibility only; more specific scrollbar event macros
1967 should be used instead (see wxScrollEvent).
1968 @event{EVT_SLIDER(id, func)}
1969 Process a @c wxEVT_SLIDER command, which is generated by a wxSlider control.
1970 @event{EVT_TEXT(id, func)}
1971 Process a @c wxEVT_TEXT command, which is generated by a wxTextCtrl control.
1972 @event{EVT_TEXT_ENTER(id, func)}
1973 Process a @c wxEVT_TEXT_ENTER command, which is generated by a wxTextCtrl control.
1974 Note that you must use wxTE_PROCESS_ENTER flag when creating the control if you want it
1975 to generate such events.
1976 @event{EVT_TEXT_MAXLEN(id, func)}
1977 Process a @c wxEVT_TEXT_MAXLEN command, which is generated by a wxTextCtrl control
1978 when the user tries to enter more characters into it than the limit previously set
1979 with SetMaxLength().
1980 @event{EVT_TOGGLEBUTTON(id, func)}
1981 Process a @c wxEVT_TOGGLEBUTTON event.
1982 @event{EVT_TOOL(id, func)}
1983 Process a @c wxEVT_TOOL event (a synonym for @c wxEVT_MENU).
1984 Pass the id of the tool.
1985 @event{EVT_TOOL_RANGE(id1, id2, func)}
1986 Process a @c wxEVT_TOOL event for a range of identifiers. Pass the ids of the tools.
1987 @event{EVT_TOOL_RCLICKED(id, func)}
1988 Process a @c wxEVT_TOOL_RCLICKED event. Pass the id of the tool. (Not available on wxOSX.)
1989 @event{EVT_TOOL_RCLICKED_RANGE(id1, id2, func)}
1990 Process a @c wxEVT_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. (Not available on wxOSX.)
1991 @event{EVT_TOOL_ENTER(id, func)}
1992 Process a @c wxEVT_TOOL_ENTER event. Pass the id of the toolbar itself.
1993 The value of wxCommandEvent::GetSelection() is the tool id, or -1 if the mouse cursor
1994 has moved off a tool. (Not available on wxOSX.)
1995 @event{EVT_COMMAND_LEFT_CLICK(id, func)}
1996 Process a @c wxEVT_COMMAND_LEFT_CLICK command, which is generated by a control (wxMSW only).
1997 @event{EVT_COMMAND_LEFT_DCLICK(id, func)}
1998 Process a @c wxEVT_COMMAND_LEFT_DCLICK command, which is generated by a control (wxMSW only).
1999 @event{EVT_COMMAND_RIGHT_CLICK(id, func)}
2000 Process a @c wxEVT_COMMAND_RIGHT_CLICK command, which is generated by a control (wxMSW only).
2001 @event{EVT_COMMAND_SET_FOCUS(id, func)}
2002 Process a @c wxEVT_COMMAND_SET_FOCUS command, which is generated by a control (wxMSW only).
2003 @event{EVT_COMMAND_KILL_FOCUS(id, func)}
2004 Process a @c wxEVT_COMMAND_KILL_FOCUS command, which is generated by a control (wxMSW only).
2005 @event{EVT_COMMAND_ENTER(id, func)}
2006 Process a @c wxEVT_COMMAND_ENTER command, which is generated by a control.
2007 @endEventTable
2008
2009 @library{wxcore}
2010 @category{events}
2011 */
2012 class wxCommandEvent : public wxEvent
2013 {
2014 public:
2015 /**
2016 Constructor.
2017 */
2018 wxCommandEvent(wxEventType commandEventType = wxEVT_NULL, int id = 0);
2019
2020 /**
2021 Returns client data pointer for a listbox or choice selection event
2022 (not valid for a deselection).
2023 */
2024 void* GetClientData() const;
2025
2026 /**
2027 Returns client object pointer for a listbox or choice selection event
2028 (not valid for a deselection).
2029 */
2030 wxClientData* GetClientObject() const;
2031
2032 /**
2033 Returns extra information dependent on the event objects type.
2034
2035 If the event comes from a listbox selection, it is a boolean
2036 determining whether the event was a selection (@true) or a
2037 deselection (@false). A listbox deselection only occurs for
2038 multiple-selection boxes, and in this case the index and string values
2039 are indeterminate and the listbox must be examined by the application.
2040 */
2041 long GetExtraLong() const;
2042
2043 /**
2044 Returns the integer identifier corresponding to a listbox, choice or
2045 radiobox selection (only if the event was a selection, not a deselection),
2046 or a boolean value representing the value of a checkbox.
2047
2048 For a menu item, this method returns -1 if the item is not checkable or
2049 a boolean value (true or false) for checkable items indicating the new
2050 state of the item.
2051 */
2052 int GetInt() const;
2053
2054 /**
2055 Returns item index for a listbox or choice selection event (not valid for
2056 a deselection).
2057 */
2058 int GetSelection() const;
2059
2060 /**
2061 Returns item string for a listbox or choice selection event. If one
2062 or several items have been deselected, returns the index of the first
2063 deselected item. If some items have been selected and others deselected
2064 at the same time, it will return the index of the first selected item.
2065 */
2066 wxString GetString() const;
2067
2068 /**
2069 This method can be used with checkbox and menu events: for the checkboxes, the
2070 method returns @true for a selection event and @false for a deselection one.
2071 For the menu events, this method indicates if the menu item just has become
2072 checked or unchecked (and thus only makes sense for checkable menu items).
2073
2074 Notice that this method cannot be used with wxCheckListBox currently.
2075 */
2076 bool IsChecked() const;
2077
2078 /**
2079 For a listbox or similar event, returns @true if it is a selection, @false
2080 if it is a deselection. If some items have been selected and others deselected
2081 at the same time, it will return @true.
2082 */
2083 bool IsSelection() const;
2084
2085 /**
2086 Sets the client data for this event.
2087 */
2088 void SetClientData(void* clientData);
2089
2090 /**
2091 Sets the client object for this event. The client object is not owned by the
2092 event object and the event object will not delete the client object in its destructor.
2093
2094 The client object must be owned and deleted by another object (e.g. a control)
2095 that has longer life time than the event object.
2096 */
2097 void SetClientObject(wxClientData* clientObject);
2098
2099 /**
2100 Sets the @b m_extraLong member.
2101 */
2102 void SetExtraLong(long extraLong);
2103
2104 /**
2105 Sets the @b m_commandInt member.
2106 */
2107 void SetInt(int intCommand);
2108
2109 /**
2110 Sets the @b m_commandString member.
2111 */
2112 void SetString(const wxString& string);
2113 };
2114
2115
2116
2117 /**
2118 @class wxWindowCreateEvent
2119
2120 This event is sent just after the actual window associated with a wxWindow
2121 object has been created.
2122
2123 Since it is derived from wxCommandEvent, the event propagates up
2124 the window hierarchy.
2125
2126 @beginEventTable{wxWindowCreateEvent}
2127 @event{EVT_WINDOW_CREATE(func)}
2128 Process a @c wxEVT_CREATE event.
2129 @endEventTable
2130
2131 @library{wxcore}
2132 @category{events}
2133
2134 @see @ref overview_events, wxWindowDestroyEvent
2135 */
2136 class wxWindowCreateEvent : public wxCommandEvent
2137 {
2138 public:
2139 /**
2140 Constructor.
2141 */
2142 wxWindowCreateEvent(wxWindow* win = NULL);
2143
2144 /// Return the window being created.
2145 wxWindow *GetWindow() const;
2146 };
2147
2148
2149
2150 /**
2151 @class wxPaintEvent
2152
2153 A paint event is sent when a window's contents needs to be repainted.
2154
2155 The handler of this event must create a wxPaintDC object and use it for
2156 painting the window contents. For example:
2157 @code
2158 void MyWindow::OnPaint(wxPaintEvent& event)
2159 {
2160 wxPaintDC dc(this);
2161
2162 DrawMyDocument(dc);
2163 }
2164 @endcode
2165
2166 Notice that you must @e not create other kinds of wxDC (e.g. wxClientDC or
2167 wxWindowDC) in EVT_PAINT handlers and also don't create wxPaintDC outside
2168 of this event handlers.
2169
2170
2171 You can optimize painting by retrieving the rectangles that have been damaged
2172 and only repainting these. The rectangles are in terms of the client area,
2173 and are unscrolled, so you will need to do some calculations using the current
2174 view position to obtain logical, scrolled units.
2175 Here is an example of using the wxRegionIterator class:
2176 @code
2177 // Called when window needs to be repainted.
2178 void MyWindow::OnPaint(wxPaintEvent& event)
2179 {
2180 wxPaintDC dc(this);
2181
2182 // Find Out where the window is scrolled to
2183 int vbX,vbY; // Top left corner of client
2184 GetViewStart(&vbX,&vbY);
2185
2186 int vX,vY,vW,vH; // Dimensions of client area in pixels
2187 wxRegionIterator upd(GetUpdateRegion()); // get the update rect list
2188
2189 while (upd)
2190 {
2191 vX = upd.GetX();
2192 vY = upd.GetY();
2193 vW = upd.GetW();
2194 vH = upd.GetH();
2195
2196 // Alternatively we can do this:
2197 // wxRect rect(upd.GetRect());
2198
2199 // Repaint this rectangle
2200 ...some code...
2201
2202 upd ++ ;
2203 }
2204 }
2205 @endcode
2206
2207 @remarks
2208 Please notice that in general it is impossible to change the drawing of a
2209 standard control (such as wxButton) and so you shouldn't attempt to handle
2210 paint events for them as even if it might work on some platforms, this is
2211 inherently not portable and won't work everywhere.
2212
2213
2214 @beginEventTable{wxPaintEvent}
2215 @event{EVT_PAINT(func)}
2216 Process a @c wxEVT_PAINT event.
2217 @endEventTable
2218
2219 @library{wxcore}
2220 @category{events}
2221
2222 @see @ref overview_events
2223 */
2224 class wxPaintEvent : public wxEvent
2225 {
2226 public:
2227 /**
2228 Constructor.
2229 */
2230 wxPaintEvent(int id = 0);
2231 };
2232
2233
2234
2235 /**
2236 @class wxMaximizeEvent
2237
2238 An event being sent when a top level window is maximized. Notice that it is
2239 not sent when the window is restored to its original size after it had been
2240 maximized, only a normal wxSizeEvent is generated in this case.
2241
2242 Currently this event is only generated in wxMSW, wxGTK, wxOSX/Cocoa and wxOS2
2243 ports so portable programs should only rely on receiving @c wxEVT_SIZE and
2244 not necessarily this event when the window is maximized.
2245
2246 @beginEventTable{wxMaximizeEvent}
2247 @event{EVT_MAXIMIZE(func)}
2248 Process a @c wxEVT_MAXIMIZE event.
2249 @endEventTable
2250
2251 @library{wxcore}
2252 @category{events}
2253
2254 @see @ref overview_events, wxTopLevelWindow::Maximize,
2255 wxTopLevelWindow::IsMaximized
2256 */
2257 class wxMaximizeEvent : public wxEvent
2258 {
2259 public:
2260 /**
2261 Constructor. Only used by wxWidgets internally.
2262 */
2263 wxMaximizeEvent(int id = 0);
2264 };
2265
2266 /**
2267 The possibles modes to pass to wxUpdateUIEvent::SetMode().
2268 */
2269 enum wxUpdateUIMode
2270 {
2271 /** Send UI update events to all windows. */
2272 wxUPDATE_UI_PROCESS_ALL,
2273
2274 /** Send UI update events to windows that have
2275 the wxWS_EX_PROCESS_UI_UPDATES flag specified. */
2276 wxUPDATE_UI_PROCESS_SPECIFIED
2277 };
2278
2279
2280 /**
2281 @class wxUpdateUIEvent
2282
2283 This class is used for pseudo-events which are called by wxWidgets
2284 to give an application the chance to update various user interface elements.
2285
2286 Without update UI events, an application has to work hard to check/uncheck,
2287 enable/disable, show/hide, and set the text for elements such as menu items
2288 and toolbar buttons. The code for doing this has to be mixed up with the code
2289 that is invoked when an action is invoked for a menu item or button.
2290
2291 With update UI events, you define an event handler to look at the state of the
2292 application and change UI elements accordingly. wxWidgets will call your member
2293 functions in idle time, so you don't have to worry where to call this code.
2294
2295 In addition to being a clearer and more declarative method, it also means you don't
2296 have to worry whether you're updating a toolbar or menubar identifier. The same
2297 handler can update a menu item and toolbar button, if the identifier is the same.
2298 Instead of directly manipulating the menu or button, you call functions in the event
2299 object, such as wxUpdateUIEvent::Check. wxWidgets will determine whether such a
2300 call has been made, and which UI element to update.
2301
2302 These events will work for popup menus as well as menubars. Just before a menu is
2303 popped up, wxMenu::UpdateUI is called to process any UI events for the window that
2304 owns the menu.
2305
2306 If you find that the overhead of UI update processing is affecting your application,
2307 you can do one or both of the following:
2308 @li Call wxUpdateUIEvent::SetMode with a value of wxUPDATE_UI_PROCESS_SPECIFIED,
2309 and set the extra style wxWS_EX_PROCESS_UI_UPDATES for every window that should
2310 receive update events. No other windows will receive update events.
2311 @li Call wxUpdateUIEvent::SetUpdateInterval with a millisecond value to set the delay
2312 between updates. You may need to call wxWindow::UpdateWindowUI at critical points,
2313 for example when a dialog is about to be shown, in case the user sees a slight
2314 delay before windows are updated.
2315
2316 Note that although events are sent in idle time, defining a wxIdleEvent handler
2317 for a window does not affect this because the events are sent from wxWindow::OnInternalIdle
2318 which is always called in idle time.
2319
2320 wxWidgets tries to optimize update events on some platforms.
2321 On Windows and GTK+, events for menubar items are only sent when the menu is about
2322 to be shown, and not in idle time.
2323
2324
2325 @beginEventTable{wxUpdateUIEvent}
2326 @event{EVT_UPDATE_UI(id, func)}
2327 Process a @c wxEVT_UPDATE_UI event for the command with the given id.
2328 @event{EVT_UPDATE_UI_RANGE(id1, id2, func)}
2329 Process a @c wxEVT_UPDATE_UI event for any command with id included in the given range.
2330 @endEventTable
2331
2332 @library{wxcore}
2333 @category{events}
2334
2335 @see @ref overview_events
2336 */
2337 class wxUpdateUIEvent : public wxCommandEvent
2338 {
2339 public:
2340 /**
2341 Constructor.
2342 */
2343 wxUpdateUIEvent(wxWindowID commandId = 0);
2344
2345 /**
2346 Returns @true if it is appropriate to update (send UI update events to)
2347 this window.
2348
2349 This function looks at the mode used (see wxUpdateUIEvent::SetMode),
2350 the wxWS_EX_PROCESS_UI_UPDATES flag in @a window, the time update events
2351 were last sent in idle time, and the update interval, to determine whether
2352 events should be sent to this window now. By default this will always
2353 return @true because the update mode is initially wxUPDATE_UI_PROCESS_ALL
2354 and the interval is set to 0; so update events will be sent as often as
2355 possible. You can reduce the frequency that events are sent by changing the
2356 mode and/or setting an update interval.
2357
2358 @see ResetUpdateTime(), SetUpdateInterval(), SetMode()
2359 */
2360 static bool CanUpdate(wxWindow* window);
2361
2362 /**
2363 Check or uncheck the UI element.
2364 */
2365 void Check(bool check);
2366
2367 /**
2368 Enable or disable the UI element.
2369 */
2370 void Enable(bool enable);
2371
2372 /**
2373 Returns @true if the UI element should be checked.
2374 */
2375 bool GetChecked() const;
2376
2377 /**
2378 Returns @true if the UI element should be enabled.
2379 */
2380 bool GetEnabled() const;
2381
2382 /**
2383 Static function returning a value specifying how wxWidgets will send update
2384 events: to all windows, or only to those which specify that they will process
2385 the events.
2386
2387 @see SetMode()
2388 */
2389 static wxUpdateUIMode GetMode();
2390
2391 /**
2392 Returns @true if the application has called Check().
2393 For wxWidgets internal use only.
2394 */
2395 bool GetSetChecked() const;
2396
2397 /**
2398 Returns @true if the application has called Enable().
2399 For wxWidgets internal use only.
2400 */
2401 bool GetSetEnabled() const;
2402
2403 /**
2404 Returns @true if the application has called Show().
2405 For wxWidgets internal use only.
2406 */
2407 bool GetSetShown() const;
2408
2409 /**
2410 Returns @true if the application has called SetText().
2411 For wxWidgets internal use only.
2412 */
2413 bool GetSetText() const;
2414
2415 /**
2416 Returns @true if the UI element should be shown.
2417 */
2418 bool GetShown() const;
2419
2420 /**
2421 Returns the text that should be set for the UI element.
2422 */
2423 wxString GetText() const;
2424
2425 /**
2426 Returns the current interval between updates in milliseconds.
2427 The value -1 disables updates, 0 updates as frequently as possible.
2428
2429 @see SetUpdateInterval().
2430 */
2431 static long GetUpdateInterval();
2432
2433 /**
2434 Used internally to reset the last-updated time to the current time.
2435
2436 It is assumed that update events are normally sent in idle time, so this
2437 is called at the end of idle processing.
2438
2439 @see CanUpdate(), SetUpdateInterval(), SetMode()
2440 */
2441 static void ResetUpdateTime();
2442
2443 /**
2444 Specify how wxWidgets will send update events: to all windows, or only to
2445 those which specify that they will process the events.
2446
2447 @param mode
2448 this parameter may be one of the ::wxUpdateUIMode enumeration values.
2449 The default mode is wxUPDATE_UI_PROCESS_ALL.
2450 */
2451 static void SetMode(wxUpdateUIMode mode);
2452
2453 /**
2454 Sets the text for this UI element.
2455 */
2456 void SetText(const wxString& text);
2457
2458 /**
2459 Sets the interval between updates in milliseconds.
2460
2461 Set to -1 to disable updates, or to 0 to update as frequently as possible.
2462 The default is 0.
2463
2464 Use this to reduce the overhead of UI update events if your application
2465 has a lot of windows. If you set the value to -1 or greater than 0,
2466 you may also need to call wxWindow::UpdateWindowUI at appropriate points
2467 in your application, such as when a dialog is about to be shown.
2468 */
2469 static void SetUpdateInterval(long updateInterval);
2470
2471 /**
2472 Show or hide the UI element.
2473 */
2474 void Show(bool show);
2475 };
2476
2477
2478
2479 /**
2480 @class wxClipboardTextEvent
2481
2482 This class represents the events generated by a control (typically a
2483 wxTextCtrl but other windows can generate these events as well) when its
2484 content gets copied or cut to, or pasted from the clipboard.
2485
2486 There are three types of corresponding events @c wxEVT_TEXT_COPY,
2487 @c wxEVT_TEXT_CUT and @c wxEVT_TEXT_PASTE.
2488
2489 If any of these events is processed (without being skipped) by an event
2490 handler, the corresponding operation doesn't take place which allows to
2491 prevent the text from being copied from or pasted to a control. It is also
2492 possible to examine the clipboard contents in the PASTE event handler and
2493 transform it in some way before inserting in a control -- for example,
2494 changing its case or removing invalid characters.
2495
2496 Finally notice that a CUT event is always preceded by the COPY event which
2497 makes it possible to only process the latter if it doesn't matter if the
2498 text was copied or cut.
2499
2500 @note
2501 These events are currently only generated by wxTextCtrl in wxGTK and wxOSX
2502 but are also generated by wxComboBox without wxCB_READONLY style in wxMSW.
2503
2504 @beginEventTable{wxClipboardTextEvent}
2505 @event{EVT_TEXT_COPY(id, func)}
2506 Some or all of the controls content was copied to the clipboard.
2507 @event{EVT_TEXT_CUT(id, func)}
2508 Some or all of the controls content was cut (i.e. copied and
2509 deleted).
2510 @event{EVT_TEXT_PASTE(id, func)}
2511 Clipboard content was pasted into the control.
2512 @endEventTable
2513
2514
2515 @library{wxcore}
2516 @category{events}
2517
2518 @see wxClipboard
2519 */
2520 class wxClipboardTextEvent : public wxCommandEvent
2521 {
2522 public:
2523 /**
2524 Constructor.
2525 */
2526 wxClipboardTextEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
2527 };
2528
2529 /**
2530 Possible axis values for mouse wheel scroll events.
2531
2532 @since 2.9.4
2533 */
2534 enum wxMouseWheelAxis
2535 {
2536 wxMOUSE_WHEEL_VERTICAL, ///< Vertical scroll event.
2537 wxMOUSE_WHEEL_HORIZONTAL ///< Horizontal scroll event.
2538 };
2539
2540
2541 /**
2542 @class wxMouseEvent
2543
2544 This event class contains information about the events generated by the mouse:
2545 they include mouse buttons press and release events and mouse move events.
2546
2547 All mouse events involving the buttons use @c wxMOUSE_BTN_LEFT for the
2548 left mouse button, @c wxMOUSE_BTN_MIDDLE for the middle one and
2549 @c wxMOUSE_BTN_RIGHT for the right one. And if the system supports more
2550 buttons, the @c wxMOUSE_BTN_AUX1 and @c wxMOUSE_BTN_AUX2 events
2551 can also be generated. Note that not all mice have even a middle button so a
2552 portable application should avoid relying on the events from it (but the right
2553 button click can be emulated using the left mouse button with the control key
2554 under Mac platforms with a single button mouse).
2555
2556 For the @c wxEVT_ENTER_WINDOW and @c wxEVT_LEAVE_WINDOW events
2557 purposes, the mouse is considered to be inside the window if it is in the
2558 window client area and not inside one of its children. In other words, the
2559 parent window receives @c wxEVT_LEAVE_WINDOW event not only when the
2560 mouse leaves the window entirely but also when it enters one of its children.
2561
2562 The position associated with a mouse event is expressed in the window
2563 coordinates of the window which generated the event, you can use
2564 wxWindow::ClientToScreen() to convert it to screen coordinates and possibly
2565 call wxWindow::ScreenToClient() next to convert it to window coordinates of
2566 another window.
2567
2568 @note Note that under Windows CE mouse enter and leave events are not natively
2569 supported by the system but are generated by wxWidgets itself. This has several
2570 drawbacks: the LEAVE_WINDOW event might be received some time after the mouse
2571 left the window and the state variables for it may have changed during this time.
2572
2573 @note Note the difference between methods like wxMouseEvent::LeftDown and
2574 the inherited wxMouseState::LeftIsDown: the former returns @true when
2575 the event corresponds to the left mouse button click while the latter
2576 returns @true if the left mouse button is currently being pressed.
2577 For example, when the user is dragging the mouse you can use
2578 wxMouseEvent::LeftIsDown to test whether the left mouse button is
2579 (still) depressed. Also, by convention, if wxMouseEvent::LeftDown
2580 returns @true, wxMouseEvent::LeftIsDown will also return @true in
2581 wxWidgets whatever the underlying GUI behaviour is (which is
2582 platform-dependent). The same applies, of course, to other mouse
2583 buttons as well.
2584
2585
2586 @beginEventTable{wxMouseEvent}
2587 @event{EVT_LEFT_DOWN(func)}
2588 Process a @c wxEVT_LEFT_DOWN event. The handler of this event should normally
2589 call event.Skip() to allow the default processing to take place as otherwise
2590 the window under mouse wouldn't get the focus.
2591 @event{EVT_LEFT_UP(func)}
2592 Process a @c wxEVT_LEFT_UP event.
2593 @event{EVT_LEFT_DCLICK(func)}
2594 Process a @c wxEVT_LEFT_DCLICK event.
2595 @event{EVT_MIDDLE_DOWN(func)}
2596 Process a @c wxEVT_MIDDLE_DOWN event.
2597 @event{EVT_MIDDLE_UP(func)}
2598 Process a @c wxEVT_MIDDLE_UP event.
2599 @event{EVT_MIDDLE_DCLICK(func)}
2600 Process a @c wxEVT_MIDDLE_DCLICK event.
2601 @event{EVT_RIGHT_DOWN(func)}
2602 Process a @c wxEVT_RIGHT_DOWN event.
2603 @event{EVT_RIGHT_UP(func)}
2604 Process a @c wxEVT_RIGHT_UP event.
2605 @event{EVT_RIGHT_DCLICK(func)}
2606 Process a @c wxEVT_RIGHT_DCLICK event.
2607 @event{EVT_MOUSE_AUX1_DOWN(func)}
2608 Process a @c wxEVT_AUX1_DOWN event.
2609 @event{EVT_MOUSE_AUX1_UP(func)}
2610 Process a @c wxEVT_AUX1_UP event.
2611 @event{EVT_MOUSE_AUX1_DCLICK(func)}
2612 Process a @c wxEVT_AUX1_DCLICK event.
2613 @event{EVT_MOUSE_AUX2_DOWN(func)}
2614 Process a @c wxEVT_AUX2_DOWN event.
2615 @event{EVT_MOUSE_AUX2_UP(func)}
2616 Process a @c wxEVT_AUX2_UP event.
2617 @event{EVT_MOUSE_AUX2_DCLICK(func)}
2618 Process a @c wxEVT_AUX2_DCLICK event.
2619 @event{EVT_MOTION(func)}
2620 Process a @c wxEVT_MOTION event.
2621 @event{EVT_ENTER_WINDOW(func)}
2622 Process a @c wxEVT_ENTER_WINDOW event.
2623 @event{EVT_LEAVE_WINDOW(func)}
2624 Process a @c wxEVT_LEAVE_WINDOW event.
2625 @event{EVT_MOUSEWHEEL(func)}
2626 Process a @c wxEVT_MOUSEWHEEL event.
2627 @event{EVT_MOUSE_EVENTS(func)}
2628 Process all mouse events.
2629 @endEventTable
2630
2631 @library{wxcore}
2632 @category{events}
2633
2634 @see wxKeyEvent
2635 */
2636 class wxMouseEvent : public wxEvent,
2637 public wxMouseState
2638 {
2639 public:
2640 /**
2641 Constructor. Valid event types are:
2642
2643 @li @c wxEVT_ENTER_WINDOW
2644 @li @c wxEVT_LEAVE_WINDOW
2645 @li @c wxEVT_LEFT_DOWN
2646 @li @c wxEVT_LEFT_UP
2647 @li @c wxEVT_LEFT_DCLICK
2648 @li @c wxEVT_MIDDLE_DOWN
2649 @li @c wxEVT_MIDDLE_UP
2650 @li @c wxEVT_MIDDLE_DCLICK
2651 @li @c wxEVT_RIGHT_DOWN
2652 @li @c wxEVT_RIGHT_UP
2653 @li @c wxEVT_RIGHT_DCLICK
2654 @li @c wxEVT_AUX1_DOWN
2655 @li @c wxEVT_AUX1_UP
2656 @li @c wxEVT_AUX1_DCLICK
2657 @li @c wxEVT_AUX2_DOWN
2658 @li @c wxEVT_AUX2_UP
2659 @li @c wxEVT_AUX2_DCLICK
2660 @li @c wxEVT_MOTION
2661 @li @c wxEVT_MOUSEWHEEL
2662 */
2663 wxMouseEvent(wxEventType mouseEventType = wxEVT_NULL);
2664
2665 /**
2666 Returns @true if the event was a first extra button double click.
2667 */
2668 bool Aux1DClick() const;
2669
2670 /**
2671 Returns @true if the first extra button mouse button changed to down.
2672 */
2673 bool Aux1Down() const;
2674
2675 /**
2676 Returns @true if the first extra button mouse button changed to up.
2677 */
2678 bool Aux1Up() const;
2679
2680 /**
2681 Returns @true if the event was a second extra button double click.
2682 */
2683 bool Aux2DClick() const;
2684
2685 /**
2686 Returns @true if the second extra button mouse button changed to down.
2687 */
2688 bool Aux2Down() const;
2689
2690 /**
2691 Returns @true if the second extra button mouse button changed to up.
2692 */
2693 bool Aux2Up() const;
2694
2695 /**
2696 Returns @true if the event was generated by the specified button.
2697
2698 @see wxMouseState::ButtoinIsDown()
2699 */
2700 bool Button(wxMouseButton but) const;
2701
2702 /**
2703 If the argument is omitted, this returns @true if the event was a mouse
2704 double click event. Otherwise the argument specifies which double click event
2705 was generated (see Button() for the possible values).
2706 */
2707 bool ButtonDClick(wxMouseButton but = wxMOUSE_BTN_ANY) const;
2708
2709 /**
2710 If the argument is omitted, this returns @true if the event was a mouse
2711 button down event. Otherwise the argument specifies which button-down event
2712 was generated (see Button() for the possible values).
2713 */
2714 bool ButtonDown(wxMouseButton but = wxMOUSE_BTN_ANY) const;
2715
2716 /**
2717 If the argument is omitted, this returns @true if the event was a mouse
2718 button up event. Otherwise the argument specifies which button-up event
2719 was generated (see Button() for the possible values).
2720 */
2721 bool ButtonUp(wxMouseButton but = wxMOUSE_BTN_ANY) const;
2722
2723 /**
2724 Returns @true if this was a dragging event (motion while a button is depressed).
2725
2726 @see Moving()
2727 */
2728 bool Dragging() const;
2729
2730 /**
2731 Returns @true if the mouse was entering the window.
2732
2733 @see Leaving()
2734 */
2735 bool Entering() const;
2736
2737 /**
2738 Returns the mouse button which generated this event or @c wxMOUSE_BTN_NONE
2739 if no button is involved (for mouse move, enter or leave event, for example).
2740 Otherwise @c wxMOUSE_BTN_LEFT is returned for the left button down, up and
2741 double click events, @c wxMOUSE_BTN_MIDDLE and @c wxMOUSE_BTN_RIGHT
2742 for the same events for the middle and the right buttons respectively.
2743 */
2744 int GetButton() const;
2745
2746 /**
2747 Returns the number of mouse clicks for this event: 1 for a simple click, 2
2748 for a double-click, 3 for a triple-click and so on.
2749
2750 Currently this function is implemented only in wxMac and returns -1 for the
2751 other platforms (you can still distinguish simple clicks from double-clicks as
2752 they generate different kinds of events however).
2753
2754 @since 2.9.0
2755 */
2756 int GetClickCount() const;
2757
2758 /**
2759 Returns the configured number of lines (or whatever) to be scrolled per
2760 wheel action.
2761
2762 Default value under most platforms is three.
2763
2764 @see GetColumnsPerAction()
2765 */
2766 int GetLinesPerAction() const;
2767
2768 /**
2769 Returns the configured number of columns (or whatever) to be scrolled per
2770 wheel action.
2771
2772 Default value under most platforms is three.
2773
2774 @see GetLinesPerAction()
2775
2776 @since 2.9.5
2777 */
2778 int GetColumnsPerAction() const;
2779
2780 /**
2781 Returns the logical mouse position in pixels (i.e.\ translated according to the
2782 translation set for the DC, which usually indicates that the window has been
2783 scrolled).
2784 */
2785 wxPoint GetLogicalPosition(const wxDC& dc) const;
2786
2787 /**
2788 Get wheel delta, normally 120.
2789
2790 This is the threshold for action to be taken, and one such action
2791 (for example, scrolling one increment) should occur for each delta.
2792 */
2793 int GetWheelDelta() const;
2794
2795 /**
2796 Get wheel rotation, positive or negative indicates direction of rotation.
2797
2798 Current devices all send an event when rotation is at least +/-WheelDelta, but
2799 finer resolution devices can be created in the future.
2800
2801 Because of this you shouldn't assume that one event is equal to 1 line, but you
2802 should be able to either do partial line scrolling or wait until several
2803 events accumulate before scrolling.
2804 */
2805 int GetWheelRotation() const;
2806
2807 /**
2808 Gets the axis the wheel operation concerns.
2809
2810 Usually the mouse wheel is used to scroll vertically so @c
2811 wxMOUSE_WHEEL_VERTICAL is returned but some mice (and most trackpads)
2812 also allow to use the wheel to scroll horizontally in which case
2813 @c wxMOUSE_WHEEL_HORIZONTAL is returned.
2814
2815 Notice that before wxWidgets 2.9.4 this method returned @c int.
2816 */
2817 wxMouseWheelAxis GetWheelAxis() const;
2818
2819 /**
2820 Returns @true if the event was a mouse button event (not necessarily a button
2821 down event - that may be tested using ButtonDown()).
2822 */
2823 bool IsButton() const;
2824
2825 /**
2826 Returns @true if the system has been setup to do page scrolling with
2827 the mouse wheel instead of line scrolling.
2828 */
2829 bool IsPageScroll() const;
2830
2831 /**
2832 Returns @true if the mouse was leaving the window.
2833
2834 @see Entering().
2835 */
2836 bool Leaving() const;
2837
2838 /**
2839 Returns @true if the event was a left double click.
2840 */
2841 bool LeftDClick() const;
2842
2843 /**
2844 Returns @true if the left mouse button changed to down.
2845 */
2846 bool LeftDown() const;
2847
2848 /**
2849 Returns @true if the left mouse button changed to up.
2850 */
2851 bool LeftUp() const;
2852
2853 /**
2854 Returns @true if the Meta key was down at the time of the event.
2855 */
2856 bool MetaDown() const;
2857
2858 /**
2859 Returns @true if the event was a middle double click.
2860 */
2861 bool MiddleDClick() const;
2862
2863 /**
2864 Returns @true if the middle mouse button changed to down.
2865 */
2866 bool MiddleDown() const;
2867
2868 /**
2869 Returns @true if the middle mouse button changed to up.
2870 */
2871 bool MiddleUp() const;
2872
2873 /**
2874 Returns @true if this was a motion event and no mouse buttons were pressed.
2875 If any mouse button is held pressed, then this method returns @false and
2876 Dragging() returns @true.
2877 */
2878 bool Moving() const;
2879
2880 /**
2881 Returns @true if the event was a right double click.
2882 */
2883 bool RightDClick() const;
2884
2885 /**
2886 Returns @true if the right mouse button changed to down.
2887 */
2888 bool RightDown() const;
2889
2890 /**
2891 Returns @true if the right mouse button changed to up.
2892 */
2893 bool RightUp() const;
2894 };
2895
2896
2897
2898 /**
2899 @class wxDropFilesEvent
2900
2901 This class is used for drop files events, that is, when files have been dropped
2902 onto the window. This functionality is currently only available under Windows.
2903
2904 The window must have previously been enabled for dropping by calling
2905 wxWindow::DragAcceptFiles().
2906
2907 Important note: this is a separate implementation to the more general drag and drop
2908 implementation documented in the @ref overview_dnd. It uses the older, Windows
2909 message-based approach of dropping files.
2910
2911 @beginEventTable{wxDropFilesEvent}
2912 @event{EVT_DROP_FILES(func)}
2913 Process a @c wxEVT_DROP_FILES event.
2914 @endEventTable
2915
2916 @onlyfor{wxmsw}
2917
2918 @library{wxcore}
2919 @category{events}
2920
2921 @see @ref overview_events
2922 */
2923 class wxDropFilesEvent : public wxEvent
2924 {
2925 public:
2926 /**
2927 Constructor.
2928 */
2929 wxDropFilesEvent(wxEventType id = 0, int noFiles = 0,
2930 wxString* files = NULL);
2931
2932 /**
2933 Returns an array of filenames.
2934 */
2935 wxString* GetFiles() const;
2936
2937 /**
2938 Returns the number of files dropped.
2939 */
2940 int GetNumberOfFiles() const;
2941
2942 /**
2943 Returns the position at which the files were dropped.
2944 Returns an array of filenames.
2945 */
2946 wxPoint GetPosition() const;
2947 };
2948
2949
2950
2951 /**
2952 @class wxActivateEvent
2953
2954 An activate event is sent when a window or application is being activated
2955 or deactivated.
2956
2957 @beginEventTable{wxActivateEvent}
2958 @event{EVT_ACTIVATE(func)}
2959 Process a @c wxEVT_ACTIVATE event.
2960 @event{EVT_ACTIVATE_APP(func)}
2961 Process a @c wxEVT_ACTIVATE_APP event.
2962 This event is received by the wxApp-derived instance only.
2963 @event{EVT_HIBERNATE(func)}
2964 Process a hibernate event, supplying the member function. This event applies
2965 to wxApp only, and only on Windows SmartPhone and PocketPC.
2966 It is generated when the system is low on memory; the application should free
2967 up as much memory as possible, and restore full working state when it receives
2968 a @c wxEVT_ACTIVATE or @c wxEVT_ACTIVATE_APP event.
2969 @endEventTable
2970
2971 @library{wxcore}
2972 @category{events}
2973
2974 @see @ref overview_events, wxApp::IsActive
2975 */
2976 class wxActivateEvent : public wxEvent
2977 {
2978 public:
2979 /**
2980 Specifies the reason for the generation of this event.
2981
2982 See GetActivationReason().
2983
2984 @since 3.0
2985 */
2986 enum Reason
2987 {
2988 /// Window activated by mouse click.
2989 Reason_Mouse,
2990 /// Window was activated with some other method than mouse click.
2991 Reason_Unknown
2992 };
2993
2994 /**
2995 Constructor.
2996 */
2997 wxActivateEvent(wxEventType eventType = wxEVT_NULL, bool active = true,
2998 int id = 0, Reason ActivationReason = Reason_Unknown);
2999
3000 /**
3001 Returns @true if the application or window is being activated, @false otherwise.
3002 */
3003 bool GetActive() const;
3004
3005 /**
3006 Allows to check if the window was activated by clicking it with the
3007 mouse or in some other way.
3008
3009 This method is currently only implemented in wxMSW and returns @c
3010 Reason_Mouse there if the window was activated by a mouse click and @c
3011 Reason_Unknown if it was activated in any other way (e.g. from
3012 keyboard or programmatically).
3013
3014 Under all the other platforms, @c Reason_Unknown is always returned.
3015
3016 @since 3.0
3017 */
3018 Reason GetActivationReason() const;
3019 };
3020
3021
3022
3023 /**
3024 @class wxContextMenuEvent
3025
3026 This class is used for context menu events, sent to give
3027 the application a chance to show a context (popup) menu for a wxWindow.
3028
3029 Note that if wxContextMenuEvent::GetPosition returns wxDefaultPosition, this
3030 means that the event originated from a keyboard context button event, and you
3031 should compute a suitable position yourself, for example by calling wxGetMousePosition().
3032
3033 Notice that the exact sequence of mouse events is different across the
3034 platforms. For example, under MSW the context menu event is generated after
3035 @c EVT_RIGHT_UP event and only if it was not handled but under GTK the
3036 context menu event is generated after @c EVT_RIGHT_DOWN event. This is
3037 correct in the sense that it ensures that the context menu is shown
3038 according to the current platform UI conventions and also means that you
3039 must not handle (or call wxEvent::Skip() in your handler if you do have
3040 one) neither right mouse down nor right mouse up event if you plan on
3041 handling @c EVT_CONTEXT_MENU event.
3042
3043 @beginEventTable{wxContextMenuEvent}
3044 @event{EVT_CONTEXT_MENU(func)}
3045 A right click (or other context menu command depending on platform) has been detected.
3046 @endEventTable
3047
3048
3049 @library{wxcore}
3050 @category{events}
3051
3052 @see wxCommandEvent, @ref overview_events
3053 */
3054 class wxContextMenuEvent : public wxCommandEvent
3055 {
3056 public:
3057 /**
3058 Constructor.
3059 */
3060 wxContextMenuEvent(wxEventType type = wxEVT_NULL, int id = 0,
3061 const wxPoint& pos = wxDefaultPosition);
3062
3063 /**
3064 Returns the position in screen coordinates at which the menu should be shown.
3065 Use wxWindow::ScreenToClient to convert to client coordinates.
3066
3067 You can also omit a position from wxWindow::PopupMenu in order to use
3068 the current mouse pointer position.
3069
3070 If the event originated from a keyboard event, the value returned from this
3071 function will be wxDefaultPosition.
3072 */
3073 const wxPoint& GetPosition() const;
3074
3075 /**
3076 Sets the position at which the menu should be shown.
3077 */
3078 void SetPosition(const wxPoint& point);
3079 };
3080
3081
3082
3083 /**
3084 @class wxEraseEvent
3085
3086 An erase event is sent when a window's background needs to be repainted.
3087
3088 On some platforms, such as GTK+, this event is simulated (simply generated just
3089 before the paint event) and may cause flicker. It is therefore recommended that
3090 you set the text background colour explicitly in order to prevent flicker.
3091 The default background colour under GTK+ is grey.
3092
3093 To intercept this event, use the EVT_ERASE_BACKGROUND macro in an event table
3094 definition.
3095
3096 You must use the device context returned by GetDC() to draw on, don't create
3097 a wxPaintDC in the event handler.
3098
3099 @beginEventTable{wxEraseEvent}
3100 @event{EVT_ERASE_BACKGROUND(func)}
3101 Process a @c wxEVT_ERASE_BACKGROUND event.
3102 @endEventTable
3103
3104 @library{wxcore}
3105 @category{events}
3106
3107 @see @ref overview_events
3108 */
3109 class wxEraseEvent : public wxEvent
3110 {
3111 public:
3112 /**
3113 Constructor.
3114 */
3115 wxEraseEvent(int id = 0, wxDC* dc = NULL);
3116
3117 /**
3118 Returns the device context associated with the erase event to draw on.
3119
3120 The returned pointer is never @NULL.
3121 */
3122 wxDC* GetDC() const;
3123 };
3124
3125
3126
3127 /**
3128 @class wxFocusEvent
3129
3130 A focus event is sent when a window's focus changes. The window losing focus
3131 receives a "kill focus" event while the window gaining it gets a "set focus" one.
3132
3133 Notice that the set focus event happens both when the user gives focus to the
3134 window (whether using the mouse or keyboard) and when it is done from the
3135 program itself using wxWindow::SetFocus.
3136
3137 The focus event handlers should almost invariably call wxEvent::Skip() on
3138 their event argument to allow the default handling to take place. Failure
3139 to do this may result in incorrect behaviour of the native controls. Also
3140 note that wxEVT_KILL_FOCUS handler must not call wxWindow::SetFocus() as
3141 this, again, is not supported by all native controls. If you need to do
3142 this, consider using the @ref sec_delayed_action described in wxIdleEvent
3143 documentation.
3144
3145 @beginEventTable{wxFocusEvent}
3146 @event{EVT_SET_FOCUS(func)}
3147 Process a @c wxEVT_SET_FOCUS event.
3148 @event{EVT_KILL_FOCUS(func)}
3149 Process a @c wxEVT_KILL_FOCUS event.
3150 @endEventTable
3151
3152 @library{wxcore}
3153 @category{events}
3154
3155 @see @ref overview_events
3156 */
3157 class wxFocusEvent : public wxEvent
3158 {
3159 public:
3160 /**
3161 Constructor.
3162 */
3163 wxFocusEvent(wxEventType eventType = wxEVT_NULL, int id = 0);
3164
3165 /**
3166 Returns the window associated with this event, that is the window which had the
3167 focus before for the @c wxEVT_SET_FOCUS event and the window which is
3168 going to receive focus for the @c wxEVT_KILL_FOCUS one.
3169
3170 Warning: the window pointer may be @NULL!
3171 */
3172 wxWindow *GetWindow() const;
3173
3174 void SetWindow(wxWindow *win);
3175 };
3176
3177
3178
3179 /**
3180 @class wxChildFocusEvent
3181
3182 A child focus event is sent to a (parent-)window when one of its child windows
3183 gains focus, so that the window could restore the focus back to its corresponding
3184 child if it loses it now and regains later.
3185
3186 Notice that child window is the direct child of the window receiving event.
3187 Use wxWindow::FindFocus() to retrieve the window which is actually getting focus.
3188
3189 @beginEventTable{wxChildFocusEvent}
3190 @event{EVT_CHILD_FOCUS(func)}
3191 Process a @c wxEVT_CHILD_FOCUS event.
3192 @endEventTable
3193
3194 @library{wxcore}
3195 @category{events}
3196
3197 @see @ref overview_events
3198 */
3199 class wxChildFocusEvent : public wxCommandEvent
3200 {
3201 public:
3202 /**
3203 Constructor.
3204
3205 @param win
3206 The direct child which is (or which contains the window which is) receiving
3207 the focus.
3208 */
3209 wxChildFocusEvent(wxWindow* win = NULL);
3210
3211 /**
3212 Returns the direct child which receives the focus, or a (grand-)parent of the
3213 control receiving the focus.
3214
3215 To get the actually focused control use wxWindow::FindFocus.
3216 */
3217 wxWindow *GetWindow() const;
3218 };
3219
3220
3221
3222 /**
3223 @class wxMouseCaptureLostEvent
3224
3225 A mouse capture lost event is sent to a window that had obtained mouse capture,
3226 which was subsequently lost due to an "external" event (for example, when a dialog
3227 box is shown or if another application captures the mouse).
3228
3229 If this happens, this event is sent to all windows that are on the capture stack
3230 (i.e. called CaptureMouse, but didn't call ReleaseMouse yet). The event is
3231 not sent if the capture changes because of a call to CaptureMouse or
3232 ReleaseMouse.
3233
3234 This event is currently emitted under Windows only.
3235
3236 @beginEventTable{wxMouseCaptureLostEvent}
3237 @event{EVT_MOUSE_CAPTURE_LOST(func)}
3238 Process a @c wxEVT_MOUSE_CAPTURE_LOST event.
3239 @endEventTable
3240
3241 @onlyfor{wxmsw}
3242
3243 @library{wxcore}
3244 @category{events}
3245
3246 @see wxMouseCaptureChangedEvent, @ref overview_events,
3247 wxWindow::CaptureMouse, wxWindow::ReleaseMouse, wxWindow::GetCapture
3248 */
3249 class wxMouseCaptureLostEvent : public wxEvent
3250 {
3251 public:
3252 /**
3253 Constructor.
3254 */
3255 wxMouseCaptureLostEvent(wxWindowID windowId = 0);
3256 };
3257
3258
3259
3260 class wxDisplayChangedEvent : public wxEvent
3261 {
3262 public:
3263 wxDisplayChangedEvent();
3264 };
3265
3266
3267 class wxPaletteChangedEvent : public wxEvent
3268 {
3269 public:
3270 wxPaletteChangedEvent(wxWindowID winid = 0);
3271
3272 void SetChangedWindow(wxWindow* win);
3273 wxWindow* GetChangedWindow() const;
3274 };
3275
3276
3277 class wxQueryNewPaletteEvent : public wxEvent
3278 {
3279 public:
3280 wxQueryNewPaletteEvent(wxWindowID winid = 0);
3281
3282 void SetPaletteRealized(bool realized);
3283 bool GetPaletteRealized();
3284 };
3285
3286
3287
3288
3289 /**
3290 @class wxNotifyEvent
3291
3292 This class is not used by the event handlers by itself, but is a base class
3293 for other event classes (such as wxBookCtrlEvent).
3294
3295 It (or an object of a derived class) is sent when the controls state is being
3296 changed and allows the program to wxNotifyEvent::Veto() this change if it wants
3297 to prevent it from happening.
3298
3299 @library{wxcore}
3300 @category{events}
3301
3302 @see wxBookCtrlEvent
3303 */
3304 class wxNotifyEvent : public wxCommandEvent
3305 {
3306 public:
3307 /**
3308 Constructor (used internally by wxWidgets only).
3309 */
3310 wxNotifyEvent(wxEventType eventType = wxEVT_NULL, int id = 0);
3311
3312 /**
3313 This is the opposite of Veto(): it explicitly allows the event to be processed.
3314 For most events it is not necessary to call this method as the events are allowed
3315 anyhow but some are forbidden by default (this will be mentioned in the corresponding
3316 event description).
3317 */
3318 void Allow();
3319
3320 /**
3321 Returns @true if the change is allowed (Veto() hasn't been called) or @false
3322 otherwise (if it was).
3323 */
3324 bool IsAllowed() const;
3325
3326 /**
3327 Prevents the change announced by this event from happening.
3328
3329 It is in general a good idea to notify the user about the reasons for vetoing
3330 the change because otherwise the applications behaviour (which just refuses to
3331 do what the user wants) might be quite surprising.
3332 */
3333 void Veto();
3334 };
3335
3336
3337 /**
3338 @class wxThreadEvent
3339
3340 This class adds some simple functionality to wxEvent to facilitate
3341 inter-thread communication.
3342
3343 This event is not natively emitted by any control/class: it is just
3344 a helper class for the user.
3345 Its most important feature is the GetEventCategory() implementation which
3346 allows thread events @b NOT to be processed by wxEventLoopBase::YieldFor calls
3347 (unless the @c wxEVT_CATEGORY_THREAD is specified - which is never in wx code).
3348
3349 @library{wxcore}
3350 @category{events,threading}
3351
3352 @see @ref overview_thread, wxEventLoopBase::YieldFor
3353
3354 @since 2.9.0
3355 */
3356 class wxThreadEvent : public wxEvent
3357 {
3358 public:
3359 /**
3360 Constructor.
3361 */
3362 wxThreadEvent(wxEventType eventType = wxEVT_THREAD, int id = wxID_ANY);
3363
3364 /**
3365 Clones this event making sure that all internal members which use
3366 COW (only @c m_commandString for now; see @ref overview_refcount)
3367 are unshared (see wxObject::UnShare).
3368 */
3369 virtual wxEvent *Clone() const;
3370
3371 /**
3372 Returns @c wxEVT_CATEGORY_THREAD.
3373
3374 This is important to avoid unwanted processing of thread events
3375 when calling wxEventLoopBase::YieldFor().
3376 */
3377 virtual wxEventCategory GetEventCategory() const;
3378
3379 /**
3380 Sets custom data payload.
3381
3382 The @a payload argument may be of any type that wxAny can handle
3383 (i.e. pretty much anything). Note that T's copy constructor must be
3384 thread-safe, i.e. create a copy that doesn't share anything with
3385 the original (see Clone()).
3386
3387 @note This method is not available with Visual C++ 6.
3388
3389 @since 2.9.1
3390
3391 @see GetPayload(), wxAny
3392 */
3393 template<typename T>
3394 void SetPayload(const T& payload);
3395
3396 /**
3397 Get custom data payload.
3398
3399 Correct type is checked in debug builds.
3400
3401 @note This method is not available with Visual C++ 6.
3402
3403 @since 2.9.1
3404
3405 @see SetPayload(), wxAny
3406 */
3407 template<typename T>
3408 T GetPayload() const;
3409
3410 /**
3411 Returns extra information integer value.
3412 */
3413 long GetExtraLong() const;
3414
3415 /**
3416 Returns stored integer value.
3417 */
3418 int GetInt() const;
3419
3420 /**
3421 Returns stored string value.
3422 */
3423 wxString GetString() const;
3424
3425
3426 /**
3427 Sets the extra information value.
3428 */
3429 void SetExtraLong(long extraLong);
3430
3431 /**
3432 Sets the integer value.
3433 */
3434 void SetInt(int intCommand);
3435
3436 /**
3437 Sets the string value.
3438 */
3439 void SetString(const wxString& string);
3440 };
3441
3442
3443 /**
3444 @class wxHelpEvent
3445
3446 A help event is sent when the user has requested context-sensitive help.
3447 This can either be caused by the application requesting context-sensitive help mode
3448 via wxContextHelp, or (on MS Windows) by the system generating a WM_HELP message when
3449 the user pressed F1 or clicked on the query button in a dialog caption.
3450
3451 A help event is sent to the window that the user clicked on, and is propagated
3452 up the window hierarchy until the event is processed or there are no more event
3453 handlers.
3454
3455 The application should call wxEvent::GetId to check the identity of the
3456 clicked-on window, and then either show some suitable help or call wxEvent::Skip()
3457 if the identifier is unrecognised.
3458
3459 Calling Skip is important because it allows wxWidgets to generate further
3460 events for ancestors of the clicked-on window. Otherwise it would be impossible to
3461 show help for container windows, since processing would stop after the first window
3462 found.
3463
3464 @beginEventTable{wxHelpEvent}
3465 @event{EVT_HELP(id, func)}
3466 Process a @c wxEVT_HELP event.
3467 @event{EVT_HELP_RANGE(id1, id2, func)}
3468 Process a @c wxEVT_HELP event for a range of ids.
3469 @endEventTable
3470
3471 @library{wxcore}
3472 @category{events}
3473
3474 @see wxContextHelp, wxDialog, @ref overview_events
3475 */
3476 class wxHelpEvent : public wxCommandEvent
3477 {
3478 public:
3479 /**
3480 Indicates how a wxHelpEvent was generated.
3481 */
3482 enum Origin
3483 {
3484 Origin_Unknown, /**< unrecognized event source. */
3485 Origin_Keyboard, /**< event generated from F1 key press. */
3486
3487 /** event generated by wxContextHelp or from the [?] button on
3488 the title bar (Windows). */
3489 Origin_HelpButton
3490 };
3491
3492 /**
3493 Constructor.
3494 */
3495 wxHelpEvent(wxEventType type = wxEVT_NULL,
3496 wxWindowID winid = 0,
3497 const wxPoint& pt = wxDefaultPosition,
3498 wxHelpEvent::Origin origin = Origin_Unknown);
3499
3500 /**
3501 Returns the origin of the help event which is one of the wxHelpEvent::Origin
3502 values.
3503
3504 The application may handle events generated using the keyboard or mouse
3505 differently, e.g. by using wxGetMousePosition() for the mouse events.
3506
3507 @see SetOrigin()
3508 */
3509 wxHelpEvent::Origin GetOrigin() const;
3510
3511 /**
3512 Returns the left-click position of the mouse, in screen coordinates.
3513 This allows the application to position the help appropriately.
3514 */
3515 const wxPoint& GetPosition() const;
3516
3517 /**
3518 Set the help event origin, only used internally by wxWidgets normally.
3519
3520 @see GetOrigin()
3521 */
3522 void SetOrigin(wxHelpEvent::Origin origin);
3523
3524 /**
3525 Sets the left-click position of the mouse, in screen coordinates.
3526 */
3527 void SetPosition(const wxPoint& pt);
3528 };
3529
3530
3531
3532 /**
3533 @class wxScrollEvent
3534
3535 A scroll event holds information about events sent from stand-alone
3536 scrollbars (see wxScrollBar) and sliders (see wxSlider).
3537
3538 Note that scrolled windows send the wxScrollWinEvent which does not derive from
3539 wxCommandEvent, but from wxEvent directly - don't confuse these two kinds of
3540 events and use the event table macros mentioned below only for the scrollbar-like
3541 controls.
3542
3543 @section scrollevent_diff The difference between EVT_SCROLL_THUMBRELEASE and EVT_SCROLL_CHANGED
3544
3545 The EVT_SCROLL_THUMBRELEASE event is only emitted when actually dragging the thumb
3546 using the mouse and releasing it (This EVT_SCROLL_THUMBRELEASE event is also followed
3547 by an EVT_SCROLL_CHANGED event).
3548
3549 The EVT_SCROLL_CHANGED event also occurs when using the keyboard to change the thumb
3550 position, and when clicking next to the thumb (In all these cases the EVT_SCROLL_THUMBRELEASE
3551 event does not happen).
3552
3553 In short, the EVT_SCROLL_CHANGED event is triggered when scrolling/ moving has finished
3554 independently of the way it had started. Please see the widgets sample ("Slider" page)
3555 to see the difference between EVT_SCROLL_THUMBRELEASE and EVT_SCROLL_CHANGED in action.
3556
3557 @remarks
3558 Note that unless specifying a scroll control identifier, you will need to test for scrollbar
3559 orientation with wxScrollEvent::GetOrientation, since horizontal and vertical scroll events
3560 are processed using the same event handler.
3561
3562 @beginEventTable{wxScrollEvent}
3563 You can use EVT_COMMAND_SCROLL... macros with window IDs for when intercepting
3564 scroll events from controls, or EVT_SCROLL... macros without window IDs for
3565 intercepting scroll events from the receiving window -- except for this, the
3566 macros behave exactly the same.
3567 @event{EVT_SCROLL(func)}
3568 Process all scroll events.
3569 @event{EVT_SCROLL_TOP(func)}
3570 Process @c wxEVT_SCROLL_TOP scroll-to-top events (minimum position).
3571 @event{EVT_SCROLL_BOTTOM(func)}
3572 Process @c wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position).
3573 @event{EVT_SCROLL_LINEUP(func)}
3574 Process @c wxEVT_SCROLL_LINEUP line up events.
3575 @event{EVT_SCROLL_LINEDOWN(func)}
3576 Process @c wxEVT_SCROLL_LINEDOWN line down events.
3577 @event{EVT_SCROLL_PAGEUP(func)}
3578 Process @c wxEVT_SCROLL_PAGEUP page up events.
3579 @event{EVT_SCROLL_PAGEDOWN(func)}
3580 Process @c wxEVT_SCROLL_PAGEDOWN page down events.
3581 @event{EVT_SCROLL_THUMBTRACK(func)}
3582 Process @c wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the
3583 user drags the thumbtrack).
3584 @event{EVT_SCROLL_THUMBRELEASE(func)}
3585 Process @c wxEVT_SCROLL_THUMBRELEASE thumb release events.
3586 @event{EVT_SCROLL_CHANGED(func)}
3587 Process @c wxEVT_SCROLL_CHANGED end of scrolling events (MSW only).
3588 @event{EVT_COMMAND_SCROLL(id, func)}
3589 Process all scroll events.
3590 @event{EVT_COMMAND_SCROLL_TOP(id, func)}
3591 Process @c wxEVT_SCROLL_TOP scroll-to-top events (minimum position).
3592 @event{EVT_COMMAND_SCROLL_BOTTOM(id, func)}
3593 Process @c wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position).
3594 @event{EVT_COMMAND_SCROLL_LINEUP(id, func)}
3595 Process @c wxEVT_SCROLL_LINEUP line up events.
3596 @event{EVT_COMMAND_SCROLL_LINEDOWN(id, func)}
3597 Process @c wxEVT_SCROLL_LINEDOWN line down events.
3598 @event{EVT_COMMAND_SCROLL_PAGEUP(id, func)}
3599 Process @c wxEVT_SCROLL_PAGEUP page up events.
3600 @event{EVT_COMMAND_SCROLL_PAGEDOWN(id, func)}
3601 Process @c wxEVT_SCROLL_PAGEDOWN page down events.
3602 @event{EVT_COMMAND_SCROLL_THUMBTRACK(id, func)}
3603 Process @c wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent
3604 as the user drags the thumbtrack).
3605 @event{EVT_COMMAND_SCROLL_THUMBRELEASE(func)}
3606 Process @c wxEVT_SCROLL_THUMBRELEASE thumb release events.
3607 @event{EVT_COMMAND_SCROLL_CHANGED(func)}
3608 Process @c wxEVT_SCROLL_CHANGED end of scrolling events (MSW only).
3609 @endEventTable
3610
3611 @library{wxcore}
3612 @category{events}
3613
3614 @see wxScrollBar, wxSlider, wxSpinButton, wxScrollWinEvent, @ref overview_events
3615 */
3616 class wxScrollEvent : public wxCommandEvent
3617 {
3618 public:
3619 /**
3620 Constructor.
3621 */
3622 wxScrollEvent(wxEventType commandType = wxEVT_NULL, int id = 0, int pos = 0,
3623 int orientation = 0);
3624
3625 /**
3626 Returns wxHORIZONTAL or wxVERTICAL, depending on the orientation of the
3627 scrollbar.
3628 */
3629 int GetOrientation() const;
3630
3631 /**
3632 Returns the position of the scrollbar.
3633 */
3634 int GetPosition() const;
3635
3636
3637 void SetOrientation(int orient);
3638 void SetPosition(int pos);
3639 };
3640
3641 #endif // wxUSE_GUI
3642
3643 #if wxUSE_BASE
3644
3645 /**
3646 See wxIdleEvent::SetMode() for more info.
3647 */
3648 enum wxIdleMode
3649 {
3650 /** Send idle events to all windows */
3651 wxIDLE_PROCESS_ALL,
3652
3653 /** Send idle events to windows that have the wxWS_EX_PROCESS_IDLE flag specified */
3654 wxIDLE_PROCESS_SPECIFIED
3655 };
3656
3657
3658 /**
3659 @class wxIdleEvent
3660
3661 This class is used for idle events, which are generated when the system becomes
3662 idle. Note that, unless you do something specifically, the idle events are not
3663 sent if the system remains idle once it has become it, e.g. only a single idle
3664 event will be generated until something else resulting in more normal events
3665 happens and only then is the next idle event sent again.
3666
3667 If you need to ensure a continuous stream of idle events, you can either use
3668 wxIdleEvent::RequestMore method in your handler or call wxWakeUpIdle() periodically
3669 (for example from a timer event handler), but note that both of these approaches
3670 (and especially the first one) increase the system load and so should be avoided
3671 if possible.
3672
3673 By default, idle events are sent to all windows, including even the hidden
3674 ones because they may be shown if some condition is met from their @c
3675 wxEVT_IDLE (or related @c wxEVT_UPDATE_UI) handler. The children of hidden
3676 windows do not receive idle events however as they can't change their state
3677 in any way noticeable by the user. Finally, the global wxApp object also
3678 receives these events, as usual, so it can be used for any global idle time
3679 processing.
3680
3681 If sending idle events to all windows is causing a significant overhead in
3682 your application, you can call wxIdleEvent::SetMode with the value
3683 wxIDLE_PROCESS_SPECIFIED, and set the wxWS_EX_PROCESS_IDLE extra window
3684 style for every window which should receive idle events, all the other ones
3685 will not receive them in this case.
3686
3687 @beginEventTable{wxIdleEvent}
3688 @event{EVT_IDLE(func)}
3689 Process a @c wxEVT_IDLE event.
3690 @endEventTable
3691
3692 @library{wxbase}
3693 @category{events}
3694
3695 @section sec_delayed_action Delayed Action Mechanism
3696
3697 wxIdleEvent can be used to perform some action "at slightly later time".
3698 This can be necessary in several circumstances when, for whatever reason,
3699 something can't be done in the current event handler. For example, if a
3700 mouse event handler is called with the mouse button pressed, the mouse can
3701 be currently captured and some operations with it -- notably capturing it
3702 again -- might be impossible or lead to undesirable results. If you still
3703 want to capture it, you can do it from @c wxEVT_IDLE handler when it is
3704 called the next time instead of doing it immediately.
3705
3706 This can be achieved in two different ways: when using static event tables,
3707 you will need a flag indicating to the (always connected) idle event
3708 handler whether the desired action should be performed. The originally
3709 called handler would then set it to indicate that it should indeed be done
3710 and the idle handler itself would reset it to prevent it from doing the
3711 same action again.
3712
3713 Using dynamically connected event handlers things are even simpler as the
3714 original event handler can simply wxEvtHandler::Connect() or
3715 wxEvtHandler::Bind() the idle event handler which would only be executed
3716 then and could wxEvtHandler::Disconnect() or wxEvtHandler::Unbind() itself.
3717
3718
3719 @see @ref overview_events, wxUpdateUIEvent, wxWindow::OnInternalIdle
3720 */
3721 class wxIdleEvent : public wxEvent
3722 {
3723 public:
3724 /**
3725 Constructor.
3726 */
3727 wxIdleEvent();
3728
3729 /**
3730 Static function returning a value specifying how wxWidgets will send idle
3731 events: to all windows, or only to those which specify that they
3732 will process the events.
3733
3734 @see SetMode().
3735 */
3736 static wxIdleMode GetMode();
3737
3738 /**
3739 Returns @true if the OnIdle function processing this event requested more
3740 processing time.
3741
3742 @see RequestMore()
3743 */
3744 bool MoreRequested() const;
3745
3746 /**
3747 Tells wxWidgets that more processing is required.
3748
3749 This function can be called by an OnIdle handler for a window or window event
3750 handler to indicate that wxApp::OnIdle should forward the OnIdle event once
3751 more to the application windows.
3752
3753 If no window calls this function during OnIdle, then the application will
3754 remain in a passive event loop (not calling OnIdle) until a new event is
3755 posted to the application by the windowing system.
3756
3757 @see MoreRequested()
3758 */
3759 void RequestMore(bool needMore = true);
3760
3761 /**
3762 Static function for specifying how wxWidgets will send idle events: to
3763 all windows, or only to those which specify that they will process the events.
3764
3765 @param mode
3766 Can be one of the ::wxIdleMode values.
3767 The default is wxIDLE_PROCESS_ALL.
3768 */
3769 static void SetMode(wxIdleMode mode);
3770 };
3771
3772 #endif // wxUSE_BASE
3773
3774 #if wxUSE_GUI
3775
3776 /**
3777 @class wxInitDialogEvent
3778
3779 A wxInitDialogEvent is sent as a dialog or panel is being initialised.
3780 Handlers for this event can transfer data to the window.
3781
3782 The default handler calls wxWindow::TransferDataToWindow.
3783
3784 @beginEventTable{wxInitDialogEvent}
3785 @event{EVT_INIT_DIALOG(func)}
3786 Process a @c wxEVT_INIT_DIALOG event.
3787 @endEventTable
3788
3789 @library{wxcore}
3790 @category{events}
3791
3792 @see @ref overview_events
3793 */
3794 class wxInitDialogEvent : public wxEvent
3795 {
3796 public:
3797 /**
3798 Constructor.
3799 */
3800 wxInitDialogEvent(int id = 0);
3801 };
3802
3803
3804
3805 /**
3806 @class wxWindowDestroyEvent
3807
3808 This event is sent as early as possible during the window destruction
3809 process.
3810
3811 For the top level windows, as early as possible means that this is done by
3812 wxFrame or wxDialog destructor, i.e. after the destructor of the derived
3813 class was executed and so any methods specific to the derived class can't
3814 be called any more from this event handler. If you need to do this, you
3815 must call wxWindow::SendDestroyEvent() from your derived class destructor.
3816
3817 For the child windows, this event is generated just before deleting the
3818 window from wxWindow::Destroy() (which is also called when the parent
3819 window is deleted) or from the window destructor if operator @c delete was
3820 used directly (which is not recommended for this very reason).
3821
3822 It is usually pointless to handle this event in the window itself but it ca
3823 be very useful to receive notifications about the window destruction in the
3824 parent window or in any other object interested in this window.
3825
3826 @library{wxcore}
3827 @category{events}
3828
3829 @see @ref overview_events, wxWindowCreateEvent
3830 */
3831 class wxWindowDestroyEvent : public wxCommandEvent
3832 {
3833 public:
3834 /**
3835 Constructor.
3836 */
3837 wxWindowDestroyEvent(wxWindow* win = NULL);
3838
3839 /// Return the window being destroyed.
3840 wxWindow *GetWindow() const;
3841 };
3842
3843
3844 /**
3845 @class wxNavigationKeyEvent
3846
3847 This event class contains information about navigation events,
3848 generated by navigation keys such as tab and page down.
3849
3850 This event is mainly used by wxWidgets implementations.
3851 A wxNavigationKeyEvent handler is automatically provided by wxWidgets
3852 when you enable keyboard navigation inside a window by inheriting it from
3853 wxNavigationEnabled<>.
3854
3855 @beginEventTable{wxNavigationKeyEvent}
3856 @event{EVT_NAVIGATION_KEY(func)}
3857 Process a navigation key event.
3858 @endEventTable
3859
3860 @library{wxcore}
3861 @category{events}
3862
3863 @see wxWindow::Navigate, wxWindow::NavigateIn
3864 */
3865 class wxNavigationKeyEvent : public wxEvent
3866 {
3867 public:
3868 /**
3869 Flags which can be used with wxNavigationKeyEvent.
3870 */
3871 enum wxNavigationKeyEventFlags
3872 {
3873 IsBackward = 0x0000,
3874 IsForward = 0x0001,
3875 WinChange = 0x0002,
3876 FromTab = 0x0004
3877 };
3878
3879 wxNavigationKeyEvent();
3880 wxNavigationKeyEvent(const wxNavigationKeyEvent& event);
3881
3882 /**
3883 Returns the child that has the focus, or @NULL.
3884 */
3885 wxWindow* GetCurrentFocus() const;
3886
3887 /**
3888 Returns @true if the navigation was in the forward direction.
3889 */
3890 bool GetDirection() const;
3891
3892 /**
3893 Returns @true if the navigation event was from a tab key.
3894 This is required for proper navigation over radio buttons.
3895 */
3896 bool IsFromTab() const;
3897
3898 /**
3899 Returns @true if the navigation event represents a window change
3900 (for example, from Ctrl-Page Down in a notebook).
3901 */
3902 bool IsWindowChange() const;
3903
3904 /**
3905 Sets the current focus window member.
3906 */
3907 void SetCurrentFocus(wxWindow* currentFocus);
3908
3909 /**
3910 Sets the direction to forward if @a direction is @true, or backward
3911 if @false.
3912 */
3913 void SetDirection(bool direction);
3914
3915 /**
3916 Sets the flags for this event.
3917 The @a flags can be a combination of the
3918 wxNavigationKeyEvent::wxNavigationKeyEventFlags values.
3919 */
3920 void SetFlags(long flags);
3921
3922 /**
3923 Marks the navigation event as from a tab key.
3924 */
3925 void SetFromTab(bool fromTab);
3926
3927 /**
3928 Marks the event as a window change event.
3929 */
3930 void SetWindowChange(bool windowChange);
3931 };
3932
3933
3934
3935 /**
3936 @class wxMouseCaptureChangedEvent
3937
3938 An mouse capture changed event is sent to a window that loses its
3939 mouse capture. This is called even if wxWindow::ReleaseMouse
3940 was called by the application code. Handling this event allows
3941 an application to cater for unexpected capture releases which
3942 might otherwise confuse mouse handling code.
3943
3944 @onlyfor{wxmsw}
3945
3946 @beginEventTable{wxMouseCaptureChangedEvent}
3947 @event{EVT_MOUSE_CAPTURE_CHANGED(func)}
3948 Process a @c wxEVT_MOUSE_CAPTURE_CHANGED event.
3949 @endEventTable
3950
3951 @library{wxcore}
3952 @category{events}
3953
3954 @see wxMouseCaptureLostEvent, @ref overview_events,
3955 wxWindow::CaptureMouse, wxWindow::ReleaseMouse, wxWindow::GetCapture
3956 */
3957 class wxMouseCaptureChangedEvent : public wxEvent
3958 {
3959 public:
3960 /**
3961 Constructor.
3962 */
3963 wxMouseCaptureChangedEvent(wxWindowID windowId = 0,
3964 wxWindow* gainedCapture = NULL);
3965
3966 /**
3967 Returns the window that gained the capture, or @NULL if it was a
3968 non-wxWidgets window.
3969 */
3970 wxWindow* GetCapturedWindow() const;
3971 };
3972
3973
3974
3975 /**
3976 @class wxCloseEvent
3977
3978 This event class contains information about window and session close events.
3979
3980 The handler function for EVT_CLOSE is called when the user has tried to close a
3981 a frame or dialog box using the window manager (X) or system menu (Windows).
3982 It can also be invoked by the application itself programmatically, for example by
3983 calling the wxWindow::Close function.
3984
3985 You should check whether the application is forcing the deletion of the window
3986 using wxCloseEvent::CanVeto. If this is @false, you @e must destroy the window
3987 using wxWindow::Destroy.
3988
3989 If the return value is @true, it is up to you whether you respond by destroying
3990 the window.
3991
3992 If you don't destroy the window, you should call wxCloseEvent::Veto to
3993 let the calling code know that you did not destroy the window.
3994 This allows the wxWindow::Close function to return @true or @false depending
3995 on whether the close instruction was honoured or not.
3996
3997 Example of a wxCloseEvent handler:
3998
3999 @code
4000 void MyFrame::OnClose(wxCloseEvent& event)
4001 {
4002 if ( event.CanVeto() && m_bFileNotSaved )
4003 {
4004 if ( wxMessageBox("The file has not been saved... continue closing?",
4005 "Please confirm",
4006 wxICON_QUESTION | wxYES_NO) != wxYES )
4007 {
4008 event.Veto();
4009 return;
4010 }
4011 }
4012
4013 Destroy(); // you may also do: event.Skip();
4014 // since the default event handler does call Destroy(), too
4015 }
4016 @endcode
4017
4018 The EVT_END_SESSION event is slightly different as it is sent by the system
4019 when the user session is ending (e.g. because of log out or shutdown) and
4020 so all windows are being forcefully closed. At least under MSW, after the
4021 handler for this event is executed the program is simply killed by the
4022 system. Because of this, the default handler for this event provided by
4023 wxWidgets calls all the usual cleanup code (including wxApp::OnExit()) so
4024 that it could still be executed and exit()s the process itself, without
4025 waiting for being killed. If this behaviour is for some reason undesirable,
4026 make sure that you define a handler for this event in your wxApp-derived
4027 class and do not call @c event.Skip() in it (but be aware that the system
4028 will still kill your application).
4029
4030 @beginEventTable{wxCloseEvent}
4031 @event{EVT_CLOSE(func)}
4032 Process a @c wxEVT_CLOSE_WINDOW command event, supplying the member function.
4033 This event applies to wxFrame and wxDialog classes.
4034 @event{EVT_QUERY_END_SESSION(func)}
4035 Process a @c wxEVT_QUERY_END_SESSION session event, supplying the member function.
4036 This event can be handled in wxApp-derived class only.
4037 @event{EVT_END_SESSION(func)}
4038 Process a @c wxEVT_END_SESSION session event, supplying the member function.
4039 This event can be handled in wxApp-derived class only.
4040 @endEventTable
4041
4042 @library{wxcore}
4043 @category{events}
4044
4045 @see wxWindow::Close, @ref overview_windowdeletion
4046 */
4047 class wxCloseEvent : public wxEvent
4048 {
4049 public:
4050 /**
4051 Constructor.
4052 */
4053 wxCloseEvent(wxEventType commandEventType = wxEVT_NULL, int id = 0);
4054
4055 /**
4056 Returns @true if you can veto a system shutdown or a window close event.
4057 Vetoing a window close event is not possible if the calling code wishes to
4058 force the application to exit, and so this function must be called to check this.
4059 */
4060 bool CanVeto() const;
4061
4062 /**
4063 Returns @true if the user is just logging off or @false if the system is
4064 shutting down. This method can only be called for end session and query end
4065 session events, it doesn't make sense for close window event.
4066 */
4067 bool GetLoggingOff() const;
4068
4069 /**
4070 Sets the 'can veto' flag.
4071 */
4072 void SetCanVeto(bool canVeto);
4073
4074 /**
4075 Sets the 'logging off' flag.
4076 */
4077 void SetLoggingOff(bool loggingOff);
4078
4079 /**
4080 Call this from your event handler to veto a system shutdown or to signal
4081 to the calling application that a window close did not happen.
4082
4083 You can only veto a shutdown if CanVeto() returns @true.
4084 */
4085 void Veto(bool veto = true);
4086 };
4087
4088
4089
4090 /**
4091 @class wxMenuEvent
4092
4093 This class is used for a variety of menu-related events. Note that
4094 these do not include menu command events, which are
4095 handled using wxCommandEvent objects.
4096
4097 The default handler for @c wxEVT_MENU_HIGHLIGHT displays help
4098 text in the first field of the status bar.
4099
4100 @beginEventTable{wxMenuEvent}
4101 @event{EVT_MENU_OPEN(func)}
4102 A menu is about to be opened. On Windows, this is only sent once for each
4103 navigation of the menubar (up until all menus have closed).
4104 @event{EVT_MENU_CLOSE(func)}
4105 A menu has been just closed.
4106 @event{EVT_MENU_HIGHLIGHT(id, func)}
4107 The menu item with the specified id has been highlighted: used to show
4108 help prompts in the status bar by wxFrame
4109 @event{EVT_MENU_HIGHLIGHT_ALL(func)}
4110 A menu item has been highlighted, i.e. the currently selected menu item has changed.
4111 @endEventTable
4112
4113 @library{wxcore}
4114 @category{events}
4115
4116 @see wxCommandEvent, @ref overview_events
4117 */
4118 class wxMenuEvent : public wxEvent
4119 {
4120 public:
4121 /**
4122 Constructor.
4123 */
4124 wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0, wxMenu* menu = NULL);
4125
4126 /**
4127 Returns the menu which is being opened or closed.
4128
4129 This method can only be used with the @c OPEN and @c CLOSE events.
4130
4131 The returned value is never @NULL in the ports implementing this
4132 function, which currently includes all the major ones.
4133 */
4134 wxMenu* GetMenu() const;
4135
4136 /**
4137 Returns the menu identifier associated with the event.
4138 This method should be only used with the @c HIGHLIGHT events.
4139 */
4140 int GetMenuId() const;
4141
4142 /**
4143 Returns @true if the menu which is being opened or closed is a popup menu,
4144 @false if it is a normal one.
4145
4146 This method should only be used with the @c OPEN and @c CLOSE events.
4147 */
4148 bool IsPopup() const;
4149 };
4150
4151 /**
4152 @class wxShowEvent
4153
4154 An event being sent when the window is shown or hidden.
4155 The event is triggered by calls to wxWindow::Show(), and any user
4156 action showing a previously hidden window or vice versa (if allowed by
4157 the current platform and/or window manager).
4158 Notice that the event is not triggered when the application is iconized
4159 (minimized) or restored under wxMSW.
4160
4161 @onlyfor{wxmsw,wxgtk,wxos2}
4162
4163 @beginEventTable{wxShowEvent}
4164 @event{EVT_SHOW(func)}
4165 Process a @c wxEVT_SHOW event.
4166 @endEventTable
4167
4168 @library{wxcore}
4169 @category{events}
4170
4171 @see @ref overview_events, wxWindow::Show,
4172 wxWindow::IsShown
4173 */
4174
4175 class wxShowEvent : public wxEvent
4176 {
4177 public:
4178 /**
4179 Constructor.
4180 */
4181 wxShowEvent(int winid = 0, bool show = false);
4182
4183 /**
4184 Set whether the windows was shown or hidden.
4185 */
4186 void SetShow(bool show);
4187
4188 /**
4189 Return @true if the window has been shown, @false if it has been
4190 hidden.
4191 */
4192 bool IsShown() const;
4193
4194 /**
4195 @deprecated This function is deprecated in favour of IsShown().
4196 */
4197 bool GetShow() const;
4198 };
4199
4200
4201
4202 /**
4203 @class wxIconizeEvent
4204
4205 An event being sent when the frame is iconized (minimized) or restored.
4206
4207 Currently only wxMSW and wxGTK generate such events.
4208
4209 @onlyfor{wxmsw,wxgtk}
4210
4211 @beginEventTable{wxIconizeEvent}
4212 @event{EVT_ICONIZE(func)}
4213 Process a @c wxEVT_ICONIZE event.
4214 @endEventTable
4215
4216 @library{wxcore}
4217 @category{events}
4218
4219 @see @ref overview_events, wxTopLevelWindow::Iconize,
4220 wxTopLevelWindow::IsIconized
4221 */
4222 class wxIconizeEvent : public wxEvent
4223 {
4224 public:
4225 /**
4226 Constructor.
4227 */
4228 wxIconizeEvent(int id = 0, bool iconized = true);
4229
4230 /**
4231 Returns @true if the frame has been iconized, @false if it has been
4232 restored.
4233 */
4234 bool IsIconized() const;
4235
4236 /**
4237 @deprecated This function is deprecated in favour of IsIconized().
4238 */
4239 bool Iconized() const;
4240 };
4241
4242
4243
4244 /**
4245 @class wxMoveEvent
4246
4247 A move event holds information about wxTopLevelWindow move change events.
4248
4249 These events are currently only generated by wxMSW port.
4250
4251 @beginEventTable{wxMoveEvent}
4252 @event{EVT_MOVE(func)}
4253 Process a @c wxEVT_MOVE event, which is generated when a window is moved.
4254 @event{EVT_MOVE_START(func)}
4255 Process a @c wxEVT_MOVE_START event, which is generated when the user starts
4256 to move or size a window. wxMSW only.
4257 @event{EVT_MOVING(func)}
4258 Process a @c wxEVT_MOVING event, which is generated while the user is
4259 moving the window. wxMSW only.
4260 @event{EVT_MOVE_END(func)}
4261 Process a @c wxEVT_MOVE_END event, which is generated when the user stops
4262 moving or sizing a window. wxMSW only.
4263 @endEventTable
4264
4265 @library{wxcore}
4266 @category{events}
4267
4268 @see wxPoint, @ref overview_events
4269 */
4270 class wxMoveEvent : public wxEvent
4271 {
4272 public:
4273 /**
4274 Constructor.
4275 */
4276 wxMoveEvent(const wxPoint& pt, int id = 0);
4277
4278 /**
4279 Returns the position of the window generating the move change event.
4280 */
4281 wxPoint GetPosition() const;
4282
4283 wxRect GetRect() const;
4284 void SetRect(const wxRect& rect);
4285 void SetPosition(const wxPoint& pos);
4286 };
4287
4288
4289 /**
4290 @class wxSizeEvent
4291
4292 A size event holds information about size change events of wxWindow.
4293
4294 The EVT_SIZE handler function will be called when the window has been resized.
4295
4296 You may wish to use this for frames to resize their child windows as appropriate.
4297
4298 Note that the size passed is of the whole window: call wxWindow::GetClientSize()
4299 for the area which may be used by the application.
4300
4301 When a window is resized, usually only a small part of the window is damaged
4302 and you may only need to repaint that area. However, if your drawing depends on the
4303 size of the window, you may need to clear the DC explicitly and repaint the whole window.
4304 In which case, you may need to call wxWindow::Refresh to invalidate the entire window.
4305
4306 @b Important : Sizers ( see @ref overview_sizer ) rely on size events to function
4307 correctly. Therefore, in a sizer-based layout, do not forget to call Skip on all
4308 size events you catch (and don't catch size events at all when you don't need to).
4309
4310 @beginEventTable{wxSizeEvent}
4311 @event{EVT_SIZE(func)}
4312 Process a @c wxEVT_SIZE event.
4313 @endEventTable
4314
4315 @library{wxcore}
4316 @category{events}
4317
4318 @see wxSize, @ref overview_events
4319 */
4320 class wxSizeEvent : public wxEvent
4321 {
4322 public:
4323 /**
4324 Constructor.
4325 */
4326 wxSizeEvent(const wxSize& sz, int id = 0);
4327
4328 /**
4329 Returns the entire size of the window generating the size change event.
4330
4331 This is the new total size of the window, i.e. the same size as would
4332 be returned by wxWindow::GetSize() if it were called now. Use
4333 wxWindow::GetClientSize() if you catch this event in a top level window
4334 such as wxFrame to find the size available for the window contents.
4335 */
4336 wxSize GetSize() const;
4337 void SetSize(wxSize size);
4338
4339 wxRect GetRect() const;
4340 void SetRect(wxRect rect);
4341 };
4342
4343
4344
4345 /**
4346 @class wxSetCursorEvent
4347
4348 A wxSetCursorEvent is generated from wxWindow when the mouse cursor is about
4349 to be set as a result of mouse motion.
4350
4351 This event gives the application the chance to perform specific mouse cursor
4352 processing based on the current position of the mouse within the window.
4353 Use wxSetCursorEvent::SetCursor to specify the cursor you want to be displayed.
4354
4355 @beginEventTable{wxSetCursorEvent}
4356 @event{EVT_SET_CURSOR(func)}
4357 Process a @c wxEVT_SET_CURSOR event.
4358 @endEventTable
4359
4360 @library{wxcore}
4361 @category{events}
4362
4363 @see ::wxSetCursor, wxWindow::SetCursor
4364 */
4365 class wxSetCursorEvent : public wxEvent
4366 {
4367 public:
4368 /**
4369 Constructor, used by the library itself internally to initialize the event
4370 object.
4371 */
4372 wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0);
4373
4374 /**
4375 Returns a reference to the cursor specified by this event.
4376 */
4377 const wxCursor& GetCursor() const;
4378
4379 /**
4380 Returns the X coordinate of the mouse in client coordinates.
4381 */
4382 wxCoord GetX() const;
4383
4384 /**
4385 Returns the Y coordinate of the mouse in client coordinates.
4386 */
4387 wxCoord GetY() const;
4388
4389 /**
4390 Returns @true if the cursor specified by this event is a valid cursor.
4391
4392 @remarks You cannot specify wxNullCursor with this event, as it is not
4393 considered a valid cursor.
4394 */
4395 bool HasCursor() const;
4396
4397 /**
4398 Sets the cursor associated with this event.
4399 */
4400 void SetCursor(const wxCursor& cursor);
4401 };
4402
4403 #endif // wxUSE_GUI
4404
4405 // ============================================================================
4406 // Global functions/macros
4407 // ============================================================================
4408
4409 /** @addtogroup group_funcmacro_events */
4410 //@{
4411
4412 #if wxUSE_BASE
4413
4414 /**
4415 A value uniquely identifying the type of the event.
4416
4417 The values of this type should only be created using wxNewEventType().
4418
4419 See the macro DEFINE_EVENT_TYPE() for more info.
4420
4421 @see @ref overview_events
4422 */
4423 typedef int wxEventType;
4424
4425 /**
4426 A special event type usually used to indicate that some wxEvent has yet
4427 no type assigned.
4428 */
4429 wxEventType wxEVT_NULL;
4430
4431 wxEventType wxEVT_ANY;
4432
4433 /**
4434 Generates a new unique event type.
4435
4436 Usually this function is only used by wxDEFINE_EVENT() and not called
4437 directly.
4438 */
4439 wxEventType wxNewEventType();
4440
4441 /**
4442 Define a new event type associated with the specified event class.
4443
4444 This macro defines a new unique event type @a name associated with the
4445 event class @a cls.
4446
4447 For example:
4448 @code
4449 wxDEFINE_EVENT(MY_COMMAND_EVENT, wxCommandEvent);
4450
4451 class MyCustomEvent : public wxEvent { ... };
4452 wxDEFINE_EVENT(MY_CUSTOM_EVENT, MyCustomEvent);
4453 @endcode
4454
4455 @see wxDECLARE_EVENT(), @ref overview_events_custom
4456 */
4457 #define wxDEFINE_EVENT(name, cls) \
4458 const wxEventTypeTag< cls > name(wxNewEventType())
4459
4460 /**
4461 Declares a custom event type.
4462
4463 This macro declares a variable called @a name which must be defined
4464 elsewhere using wxDEFINE_EVENT().
4465
4466 The class @a cls must be the wxEvent-derived class associated with the
4467 events of this type and its full declaration must be visible from the point
4468 of use of this macro.
4469
4470 For example:
4471 @code
4472 wxDECLARE_EVENT(MY_COMMAND_EVENT, wxCommandEvent);
4473
4474 class MyCustomEvent : public wxEvent { ... };
4475 wxDECLARE_EVENT(MY_CUSTOM_EVENT, MyCustomEvent);
4476 @endcode
4477 */
4478 #define wxDECLARE_EVENT(name, cls) \
4479 wxDECLARE_EXPORTED_EVENT(wxEMPTY_PARAMETER_VALUE, name, cls)
4480
4481 /**
4482 Variant of wxDECLARE_EVENT() used for event types defined inside a shared
4483 library.
4484
4485 This is mostly used by wxWidgets internally, e.g.
4486 @code
4487 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_BUTTON, wxCommandEvent)
4488 @endcode
4489 */
4490 #define wxDECLARE_EXPORTED_EVENT( expdecl, name, cls ) \
4491 extern const expdecl wxEventTypeTag< cls > name;
4492
4493 /**
4494 Helper macro for definition of custom event table macros.
4495
4496 This macro must only be used if wxEVENTS_COMPATIBILITY_2_8 is 1, otherwise
4497 it is better and more clear to just use the address of the function
4498 directly as this is all this macro does in this case. However it needs to
4499 explicitly cast @a func to @a functype, which is the type of wxEvtHandler
4500 member function taking the custom event argument when
4501 wxEVENTS_COMPATIBILITY_2_8 is 0.
4502
4503 See wx__DECLARE_EVT0 for an example of use.
4504
4505 @see @ref overview_events_custom_ownclass
4506 */
4507 #define wxEVENT_HANDLER_CAST(functype, func) (&func)
4508
4509 /**
4510 This macro is used to define event table macros for handling custom
4511 events.
4512
4513 Example of use:
4514 @code
4515 class MyEvent : public wxEvent { ... };
4516
4517 // note that this is not necessary unless using old compilers: for the
4518 // reasonably new ones just use &func instead of MyEventHandler(func)
4519 typedef void (wxEvtHandler::*MyEventFunction)(MyEvent&);
4520 #define MyEventHandler(func) wxEVENT_HANDLER_CAST(MyEventFunction, func)
4521
4522 wxDEFINE_EVENT(MY_EVENT_TYPE, MyEvent);
4523
4524 #define EVT_MY(id, func) \
4525 wx__DECLARE_EVT1(MY_EVENT_TYPE, id, MyEventHandler(func))
4526
4527 ...
4528
4529 wxBEGIN_EVENT_TABLE(MyFrame, wxFrame)
4530 EVT_MY(wxID_ANY, MyFrame::OnMyEvent)
4531 wxEND_EVENT_TABLE()
4532 @endcode
4533
4534 @param evt
4535 The event type to handle.
4536 @param id
4537 The identifier of events to handle.
4538 @param fn
4539 The event handler method.
4540 */
4541 #define wx__DECLARE_EVT1(evt, id, fn) \
4542 wx__DECLARE_EVT2(evt, id, wxID_ANY, fn)
4543
4544 /**
4545 Generalized version of the wx__DECLARE_EVT1() macro taking a range of
4546 IDs instead of a single one.
4547 Argument @a id1 is the first identifier of the range, @a id2 is the
4548 second identifier of the range.
4549 */
4550 #define wx__DECLARE_EVT2(evt, id1, id2, fn) \
4551 DECLARE_EVENT_TABLE_ENTRY(evt, id1, id2, fn, NULL),
4552
4553 /**
4554 Simplified version of the wx__DECLARE_EVT1() macro, to be used when the
4555 event type must be handled regardless of the ID associated with the
4556 specific event instances.
4557 */
4558 #define wx__DECLARE_EVT0(evt, fn) \
4559 wx__DECLARE_EVT1(evt, wxID_ANY, fn)
4560
4561 /**
4562 Use this macro inside a class declaration to declare a @e static event table
4563 for that class.
4564
4565 In the implementation file you'll need to use the wxBEGIN_EVENT_TABLE()
4566 and the wxEND_EVENT_TABLE() macros, plus some additional @c EVT_xxx macro
4567 to capture events.
4568
4569 Note that this macro requires a final semicolon.
4570
4571 @see @ref overview_events_eventtables
4572 */
4573 #define wxDECLARE_EVENT_TABLE()
4574
4575 /**
4576 Use this macro in a source file to start listing @e static event handlers
4577 for a specific class.
4578
4579 Use wxEND_EVENT_TABLE() to terminate the event-declaration block.
4580
4581 @see @ref overview_events_eventtables
4582 */
4583 #define wxBEGIN_EVENT_TABLE(theClass, baseClass)
4584
4585 /**
4586 Use this macro in a source file to end listing @e static event handlers
4587 for a specific class.
4588
4589 Use wxBEGIN_EVENT_TABLE() to start the event-declaration block.
4590
4591 @see @ref overview_events_eventtables
4592 */
4593 #define wxEND_EVENT_TABLE()
4594
4595 /**
4596 In a GUI application, this function posts @a event to the specified @e dest
4597 object using wxEvtHandler::AddPendingEvent().
4598
4599 Otherwise, it dispatches @a event immediately using
4600 wxEvtHandler::ProcessEvent(). See the respective documentation for details
4601 (and caveats). Because of limitation of wxEvtHandler::AddPendingEvent()
4602 this function is not thread-safe for event objects having wxString fields,
4603 use wxQueueEvent() instead.
4604
4605 @header{wx/event.h}
4606 */
4607 void wxPostEvent(wxEvtHandler* dest, const wxEvent& event);
4608
4609 /**
4610 Queue an event for processing on the given object.
4611
4612 This is a wrapper around wxEvtHandler::QueueEvent(), see its documentation
4613 for more details.
4614
4615 @header{wx/event.h}
4616
4617 @param dest
4618 The object to queue the event on, can't be @c NULL.
4619 @param event
4620 The heap-allocated and non-@c NULL event to queue, the function takes
4621 ownership of it.
4622 */
4623 void wxQueueEvent(wxEvtHandler* dest, wxEvent *event);
4624
4625 #endif // wxUSE_BASE
4626
4627 #if wxUSE_GUI
4628
4629 wxEventType wxEVT_BUTTON;
4630 wxEventType wxEVT_CHECKBOX;
4631 wxEventType wxEVT_CHOICE;
4632 wxEventType wxEVT_LISTBOX;
4633 wxEventType wxEVT_LISTBOX_DCLICK;
4634 wxEventType wxEVT_CHECKLISTBOX;
4635 wxEventType wxEVT_MENU;
4636 wxEventType wxEVT_SLIDER;
4637 wxEventType wxEVT_RADIOBOX;
4638 wxEventType wxEVT_RADIOBUTTON;
4639 wxEventType wxEVT_SCROLLBAR;
4640 wxEventType wxEVT_VLBOX;
4641 wxEventType wxEVT_COMBOBOX;
4642 wxEventType wxEVT_TOOL_RCLICKED;
4643 wxEventType wxEVT_TOOL_DROPDOWN;
4644 wxEventType wxEVT_TOOL_ENTER;
4645 wxEventType wxEVT_COMBOBOX_DROPDOWN;
4646 wxEventType wxEVT_COMBOBOX_CLOSEUP;
4647 wxEventType wxEVT_THREAD;
4648 wxEventType wxEVT_LEFT_DOWN;
4649 wxEventType wxEVT_LEFT_UP;
4650 wxEventType wxEVT_MIDDLE_DOWN;
4651 wxEventType wxEVT_MIDDLE_UP;
4652 wxEventType wxEVT_RIGHT_DOWN;
4653 wxEventType wxEVT_RIGHT_UP;
4654 wxEventType wxEVT_MOTION;
4655 wxEventType wxEVT_ENTER_WINDOW;
4656 wxEventType wxEVT_LEAVE_WINDOW;
4657 wxEventType wxEVT_LEFT_DCLICK;
4658 wxEventType wxEVT_MIDDLE_DCLICK;
4659 wxEventType wxEVT_RIGHT_DCLICK;
4660 wxEventType wxEVT_SET_FOCUS;
4661 wxEventType wxEVT_KILL_FOCUS;
4662 wxEventType wxEVT_CHILD_FOCUS;
4663 wxEventType wxEVT_MOUSEWHEEL;
4664 wxEventType wxEVT_AUX1_DOWN;
4665 wxEventType wxEVT_AUX1_UP;
4666 wxEventType wxEVT_AUX1_DCLICK;
4667 wxEventType wxEVT_AUX2_DOWN;
4668 wxEventType wxEVT_AUX2_UP;
4669 wxEventType wxEVT_AUX2_DCLICK;
4670 wxEventType wxEVT_CHAR;
4671 wxEventType wxEVT_CHAR_HOOK;
4672 wxEventType wxEVT_NAVIGATION_KEY;
4673 wxEventType wxEVT_KEY_DOWN;
4674 wxEventType wxEVT_KEY_UP;
4675 wxEventType wxEVT_HOTKEY;
4676 wxEventType wxEVT_SET_CURSOR;
4677 wxEventType wxEVT_SCROLL_TOP;
4678 wxEventType wxEVT_SCROLL_BOTTOM;
4679 wxEventType wxEVT_SCROLL_LINEUP;
4680 wxEventType wxEVT_SCROLL_LINEDOWN;
4681 wxEventType wxEVT_SCROLL_PAGEUP;
4682 wxEventType wxEVT_SCROLL_PAGEDOWN;
4683 wxEventType wxEVT_SCROLL_THUMBTRACK;
4684 wxEventType wxEVT_SCROLL_THUMBRELEASE;
4685 wxEventType wxEVT_SCROLL_CHANGED;
4686 wxEventType wxEVT_SPIN_UP;
4687 wxEventType wxEVT_SPIN_DOWN;
4688 wxEventType wxEVT_SPIN;
4689 wxEventType wxEVT_SCROLLWIN_TOP;
4690 wxEventType wxEVT_SCROLLWIN_BOTTOM;
4691 wxEventType wxEVT_SCROLLWIN_LINEUP;
4692 wxEventType wxEVT_SCROLLWIN_LINEDOWN;
4693 wxEventType wxEVT_SCROLLWIN_PAGEUP;
4694 wxEventType wxEVT_SCROLLWIN_PAGEDOWN;
4695 wxEventType wxEVT_SCROLLWIN_THUMBTRACK;
4696 wxEventType wxEVT_SCROLLWIN_THUMBRELEASE;
4697 wxEventType wxEVT_SIZE;
4698 wxEventType wxEVT_MOVE;
4699 wxEventType wxEVT_CLOSE_WINDOW;
4700 wxEventType wxEVT_END_SESSION;
4701 wxEventType wxEVT_QUERY_END_SESSION;
4702 wxEventType wxEVT_ACTIVATE_APP;
4703 wxEventType wxEVT_ACTIVATE;
4704 wxEventType wxEVT_CREATE;
4705 wxEventType wxEVT_DESTROY;
4706 wxEventType wxEVT_SHOW;
4707 wxEventType wxEVT_ICONIZE;
4708 wxEventType wxEVT_MAXIMIZE;
4709 wxEventType wxEVT_MOUSE_CAPTURE_CHANGED;
4710 wxEventType wxEVT_MOUSE_CAPTURE_LOST;
4711 wxEventType wxEVT_PAINT;
4712 wxEventType wxEVT_ERASE_BACKGROUND;
4713 wxEventType wxEVT_NC_PAINT;
4714 wxEventType wxEVT_MENU_OPEN;
4715 wxEventType wxEVT_MENU_CLOSE;
4716 wxEventType wxEVT_MENU_HIGHLIGHT;
4717 wxEventType wxEVT_CONTEXT_MENU;
4718 wxEventType wxEVT_SYS_COLOUR_CHANGED;
4719 wxEventType wxEVT_DISPLAY_CHANGED;
4720 wxEventType wxEVT_QUERY_NEW_PALETTE;
4721 wxEventType wxEVT_PALETTE_CHANGED;
4722 wxEventType wxEVT_JOY_BUTTON_DOWN;
4723 wxEventType wxEVT_JOY_BUTTON_UP;
4724 wxEventType wxEVT_JOY_MOVE;
4725 wxEventType wxEVT_JOY_ZMOVE;
4726 wxEventType wxEVT_DROP_FILES;
4727 wxEventType wxEVT_INIT_DIALOG;
4728 wxEventType wxEVT_IDLE;
4729 wxEventType wxEVT_UPDATE_UI;
4730 wxEventType wxEVT_SIZING;
4731 wxEventType wxEVT_MOVING;
4732 wxEventType wxEVT_MOVE_START;
4733 wxEventType wxEVT_MOVE_END;
4734 wxEventType wxEVT_HIBERNATE;
4735 wxEventType wxEVT_TEXT_COPY;
4736 wxEventType wxEVT_TEXT_CUT;
4737 wxEventType wxEVT_TEXT_PASTE;
4738 wxEventType wxEVT_COMMAND_LEFT_CLICK;
4739 wxEventType wxEVT_COMMAND_LEFT_DCLICK;
4740 wxEventType wxEVT_COMMAND_RIGHT_CLICK;
4741 wxEventType wxEVT_COMMAND_RIGHT_DCLICK;
4742 wxEventType wxEVT_COMMAND_SET_FOCUS;
4743 wxEventType wxEVT_COMMAND_KILL_FOCUS;
4744 wxEventType wxEVT_COMMAND_ENTER;
4745 wxEventType wxEVT_HELP;
4746 wxEventType wxEVT_DETAILED_HELP;
4747 wxEventType wxEVT_TOOL;
4748 wxEventType wxEVT_WINDOW_MODAL_DIALOG_CLOSED;
4749
4750 #endif // wxUSE_GUI
4751
4752 //@}
4753