]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/event.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / interface / wx / event.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: event.h
03e8dc0e
VZ
3// Purpose: interface of wxEvtHandler, wxEventBlocker and many
4// wxEvent-derived classes
23324ae1 5// Author: wxWidgets team
526954c5 6// Licence: wxWindows licence
23324ae1
FM
7/////////////////////////////////////////////////////////////////////////////
8
551048c2
VZ
9#if wxUSE_BASE
10
03e8dc0e
VZ
11/**
12 The predefined constants for the number of times we propagate event
13 upwards window child-parent chain.
14*/
15enum 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*/
29enum 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*/
92class wxEvent : public wxObject
93{
94public:
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
ce7fe42e 115 @c wxEVT_BUTTON.
03e8dc0e
VZ
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 /**
ce7fe42e 146 Returns the identifier of the given event type, such as @c wxEVT_BUTTON.
03e8dc0e
VZ
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 /**
0824e369 226 Test if this event should be propagated or not, i.e.\ if the propagation level
03e8dc0e
VZ
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
255protected:
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
551048c2
VZ
275#endif // wxUSE_BASE
276
277#if wxUSE_GUI
278
03e8dc0e
VZ
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*/
310class wxEventBlocker : public wxEvtHandler
311{
312public:
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*/
342class wxPropagationDisabler
343{
344public:
345 wxPropagationDisabler(wxEvent& event);
346 ~wxPropagationDisabler();
347};
348
349
350/**
351 Helper class to temporarily lower propagation level.
352*/
353class wxPropagateOnce
354{
355public:
356 wxPropagateOnce(wxEvent& event);
357 ~wxPropagateOnce();
358};
359
551048c2 360#endif // wxUSE_GUI
03e8dc0e 361
551048c2 362#if wxUSE_BASE
03e8dc0e
VZ
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*/
381class wxEvtHandler : public wxObject, public wxTrackable
382{
383public:
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.
8516f4fc
VZ
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.
03e8dc0e 528
f0facad0
VZ
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
03e8dc0e
VZ
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
cbc8576a
VS
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
ac3bf369 566 @since 3.0
cbc8576a
VS
567 */
568 template<typename T>
569 void CallAfter(const T& functor);
570
03e8dc0e
VZ
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,
ce7fe42e 810 wxEVT_MENU,
03e8dc0e
VZ
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 //@{
42013f4c 1109
03e8dc0e
VZ
1110 /**
1111 Returns @true if the event handler is enabled, @false otherwise.
42013f4c 1112
03e8dc0e
VZ
1113 @see SetEvtHandlerEnabled()
1114 */
1115 bool GetEvtHandlerEnabled() const;
42013f4c 1116
03e8dc0e
VZ
1117 /**
1118 Returns the pointer to the next handler in the chain.
42013f4c 1119
03e8dc0e
VZ
1120 @see SetNextHandler(), GetPreviousHandler(), SetPreviousHandler(),
1121 wxWindow::PushEventHandler, wxWindow::PopEventHandler
1122 */
1123 wxEvtHandler* GetNextHandler() const;
23324ae1 1124
03e8dc0e
VZ
1125 /**
1126 Returns the pointer to the previous handler in the chain.
42013f4c 1127
03e8dc0e
VZ
1128 @see SetPreviousHandler(), GetNextHandler(), SetNextHandler(),
1129 wxWindow::PushEventHandler, wxWindow::PopEventHandler
1130 */
1131 wxEvtHandler* GetPreviousHandler() const;
7f853dd0 1132
03e8dc0e
VZ
1133 /**
1134 Enables or disables the event handler.
42013f4c 1135
03e8dc0e
VZ
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);
42013f4c
FM
1146
1147 /**
03e8dc0e 1148 Sets the pointer to the next handler.
42013f4c 1149
03e8dc0e
VZ
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
7f853dd0 1160
03e8dc0e
VZ
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
7f853dd0 1166 */
03e8dc0e 1167 virtual void SetNextHandler(wxEvtHandler* handler);
7f853dd0
FM
1168
1169 /**
03e8dc0e
VZ
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
7f853dd0 1178 */
03e8dc0e 1179 virtual void SetPreviousHandler(wxEvtHandler* handler);
7f853dd0
FM
1180
1181 /**
03e8dc0e
VZ
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
42013f4c 1192 */
03e8dc0e 1193 void Unlink();
8cc208e3 1194
03e8dc0e
VZ
1195 /**
1196 Returns @true if the next and the previous handler pointers of this
1197 event handler instance are @NULL.
8cc208e3 1198
03e8dc0e 1199 @since 2.9.0
8cc208e3 1200
03e8dc0e
VZ
1201 @see SetPreviousHandler(), SetNextHandler()
1202 */
1203 bool IsUnlinked() const;
8cc208e3 1204
03e8dc0e 1205 //@}
8cc208e3 1206
03e8dc0e
VZ
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
1241protected:
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
23324ae1 1296
03e8dc0e
VZ
1297 @see ProcessEvent()
1298 */
1299 virtual bool TryAfter(wxEvent& event);
1300};
e54c96f1 1301
551048c2
VZ
1302#endif // wxUSE_BASE
1303
1304#if wxUSE_GUI
71abf17e 1305
7a34307e
VZ
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*/
1314enum 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
4f742042 1325 /// tab key, on and off numeric keypads
7a34307e
VZ
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
23324ae1 1336/**
42013f4c 1337 @class wxKeyEvent
7c913512 1338
0d2f3b9d 1339 This event class contains information about key press and release events.
7c913512 1340
7333c0ef
VZ
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.
09bdb1cb
VZ
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.
7333c0ef
VZ
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.
0d2f3b9d 1418
d0fb62a6
VZ
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.
1f1d2182 1435
42013f4c
FM
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
d0fb62a6
VZ
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.
1f1d2182 1444
5effc1cf
VZ
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
42013f4c
FM
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
0d2f3b9d
VZ
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.
1f1d2182
FM
1456
1457
42013f4c 1458 @beginEventTable{wxKeyEvent}
8c6791e4 1459 @event{EVT_KEY_DOWN(func)}
f47a3591
VZ
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).
8c6791e4 1463 @event{EVT_KEY_UP(func)}
3051a44a 1464 Process a @c wxEVT_KEY_UP event (any key has been released).
8c6791e4 1465 @event{EVT_CHAR(func)}
3051a44a 1466 Process a @c wxEVT_CHAR event.
ff450486 1467 @event{EVT_CHAR_HOOK(func)}
3a95f73c
VZ
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
4cf1a9bf
VZ
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.
1f1d2182 1489 @endEventTable
7c913512 1490
0e097789
VZ
1491 @see wxKeyboardState
1492
23324ae1
FM
1493 @library{wxcore}
1494 @category{events}
23324ae1 1495*/
0e097789
VZ
1496class wxKeyEvent : public wxEvent,
1497 public wxKeyboardState
23324ae1
FM
1498{
1499public:
1500 /**
1501 Constructor.
42013f4c 1502 Currently, the only valid event types are @c wxEVT_CHAR and @c wxEVT_CHAR_HOOK.
23324ae1 1503 */
42013f4c 1504 wxKeyEvent(wxEventType keyEventType = wxEVT_NULL);
23324ae1 1505
42013f4c 1506 /**
b6885972
VZ
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
ecad2757
VZ
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.
b6885972
VZ
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 {
9a1b36af
VZ
1528 wxChar uc = event.GetUnicodeKey();
1529 if ( uc != WXK_NONE )
b6885972 1530 {
9a1b36af
VZ
1531 // It's a "normal" character. Notice that this includes
1532 // control characters in 1..31 range, e.g. WXK_RETURN or
6b7bcbf1
VZ
1533 // WXK_BACK, so check for them explicitly.
1534 if ( uc >= 32 )
9a1b36af
VZ
1535 {
1536 wxLogMessage("You pressed '%c'", uc);
1537 }
1538 else
1539 {
1540 // It's a control character
1541 ...
1542 }
b6885972 1543 }
9a1b36af 1544 else // No Unicode equivalent.
b6885972
VZ
1545 {
1546 // It's a special key, deal with all the known ones:
6884a3b6 1547 switch ( event.GetKeyCode() )
b6885972
VZ
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
42013f4c
FM
1561 */
1562 int GetKeyCode() const;
1563
7a34307e
VZ
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
42013f4c
FM
1574 //@{
1575 /**
1576 Obtains the position (in client coordinates) at which the key was pressed.
2f7baaec 1577
e0e6f3dc
VZ
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.
42013f4c
FM
1584 */
1585 wxPoint GetPosition() const;
e0e6f3dc 1586 void GetPosition(wxCoord* x, wxCoord* y) const;
42013f4c
FM
1587 //@}
1588
1589 /**
5995a84f
VZ
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.
42013f4c
FM
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 /**
5995a84f
VZ
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.
42013f4c
FM
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
0d2f3b9d 1631 If the key pressed doesn't have any character value (e.g. a cursor key)
86408a03
VZ
1632 this method will return @c WXK_NONE. In this case you should use
1633 GetKeyCode() to retrieve the value of the key.
0d2f3b9d 1634
42013f4c
FM
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.
2f7baaec
VZ
1642
1643 @see GetPosition()
42013f4c
FM
1644 */
1645 wxCoord GetX() const;
1646
1647 /**
1648 Returns the Y position (in client coordinates) of the event.
2f7baaec
VZ
1649
1650 @see GetPosition()
42013f4c
FM
1651 */
1652 wxCoord GetY() const;
4cf1a9bf
VZ
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;
23324ae1
FM
1681};
1682
1683
e54c96f1 1684
50e55c13
RD
1685enum
1686{
1687 wxJOYSTICK1,
1688 wxJOYSTICK2
1689};
1690
1691// Which button is down?
1692enum
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
23324ae1 1702/**
42013f4c 1703 @class wxJoystickEvent
7c913512 1704
42013f4c
FM
1705 This event class contains information about joystick events, particularly
1706 events received by windows.
1f1d2182 1707
42013f4c 1708 @beginEventTable{wxJoystickEvent}
3051a44a
FM
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)}
42013f4c 1718 Processes all joystick events.
1f1d2182
FM
1719 @endEventTable
1720
23324ae1
FM
1721 @library{wxcore}
1722 @category{events}
7c913512 1723
42013f4c 1724 @see wxJoystick
23324ae1 1725*/
42013f4c 1726class wxJoystickEvent : public wxEvent
23324ae1
FM
1727{
1728public:
1729 /**
1730 Constructor.
1731 */
42013f4c
FM
1732 wxJoystickEvent(wxEventType eventType = wxEVT_NULL, int state = 0,
1733 int joystick = wxJOYSTICK1,
1734 int change = 0);
23324ae1
FM
1735
1736 /**
42013f4c
FM
1737 Returns @true if the event was a down event from the specified button
1738 (or any button).
23324ae1 1739
42013f4c
FM
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.
23324ae1 1743 */
42013f4c 1744 bool ButtonDown(int button = wxJOY_BUTTON_ANY) const;
23324ae1
FM
1745
1746 /**
42013f4c 1747 Returns @true if the specified button (or any button) was in a down state.
23324ae1 1748
42013f4c
FM
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.
23324ae1 1752 */
42013f4c 1753 bool ButtonIsDown(int button = wxJOY_BUTTON_ANY) const;
23324ae1
FM
1754
1755 /**
42013f4c
FM
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.
23324ae1 1762 */
42013f4c 1763 bool ButtonUp(int button = wxJOY_BUTTON_ANY) const;
23324ae1
FM
1764
1765 /**
42013f4c
FM
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.
23324ae1 1769 */
42013f4c 1770 int GetButtonChange() const;
23324ae1
FM
1771
1772 /**
42013f4c
FM
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.
23324ae1 1776 */
42013f4c 1777 int GetButtonState() const;
23324ae1
FM
1778
1779 /**
42013f4c
FM
1780 Returns the identifier of the joystick generating the event - one of
1781 wxJOYSTICK1 and wxJOYSTICK2.
23324ae1 1782 */
42013f4c 1783 int GetJoystick() const;
23324ae1
FM
1784
1785 /**
42013f4c 1786 Returns the x, y position of the joystick event.
3b2f80c2
VZ
1787
1788 These coordinates are valid for all the events except wxEVT_JOY_ZMOVE.
23324ae1 1789 */
42013f4c 1790 wxPoint GetPosition() const;
23324ae1
FM
1791
1792 /**
42013f4c 1793 Returns the z position of the joystick event.
3b2f80c2
VZ
1794
1795 This method can only be used for wxEVT_JOY_ZMOVE events.
23324ae1 1796 */
42013f4c 1797 int GetZPosition() const;
23324ae1
FM
1798
1799 /**
42013f4c
FM
1800 Returns @true if this was a button up or down event
1801 (@e not 'is any button down?').
23324ae1 1802 */
42013f4c 1803 bool IsButton() const;
23324ae1
FM
1804
1805 /**
42013f4c 1806 Returns @true if this was an x, y move event.
23324ae1 1807 */
42013f4c 1808 bool IsMove() const;
23324ae1
FM
1809
1810 /**
42013f4c 1811 Returns @true if this was a z move event.
23324ae1 1812 */
42013f4c
FM
1813 bool IsZMove() const;
1814};
23324ae1 1815
3c4f71cc 1816
23324ae1 1817
42013f4c
FM
1818/**
1819 @class wxScrollWinEvent
42013f4c
FM
1820
1821 A scroll event holds information about events sent from scrolling windows.
1822
3051a44a
FM
1823 Note that you can use the EVT_SCROLLWIN* macros for intercepting scroll window events
1824 from the receiving window.
23324ae1 1825
42013f4c 1826 @beginEventTable{wxScrollWinEvent}
8c6791e4 1827 @event{EVT_SCROLLWIN(func)}
42013f4c 1828 Process all scroll events.
8c6791e4 1829 @event{EVT_SCROLLWIN_TOP(func)}
3a194bda 1830 Process @c wxEVT_SCROLLWIN_TOP scroll-to-top events.
8c6791e4 1831 @event{EVT_SCROLLWIN_BOTTOM(func)}
3a194bda 1832 Process @c wxEVT_SCROLLWIN_BOTTOM scroll-to-bottom events.
8c6791e4 1833 @event{EVT_SCROLLWIN_LINEUP(func)}
3a194bda 1834 Process @c wxEVT_SCROLLWIN_LINEUP line up events.
8c6791e4 1835 @event{EVT_SCROLLWIN_LINEDOWN(func)}
3a194bda 1836 Process @c wxEVT_SCROLLWIN_LINEDOWN line down events.
8c6791e4 1837 @event{EVT_SCROLLWIN_PAGEUP(func)}
3a194bda 1838 Process @c wxEVT_SCROLLWIN_PAGEUP page up events.
8c6791e4 1839 @event{EVT_SCROLLWIN_PAGEDOWN(func)}
3a194bda 1840 Process @c wxEVT_SCROLLWIN_PAGEDOWN page down events.
8c6791e4 1841 @event{EVT_SCROLLWIN_THUMBTRACK(func)}
3a194bda 1842 Process @c wxEVT_SCROLLWIN_THUMBTRACK thumbtrack events
42013f4c 1843 (frequent events sent as the user drags the thumbtrack).
8c6791e4 1844 @event{EVT_SCROLLWIN_THUMBRELEASE(func)}
3a194bda 1845 Process @c wxEVT_SCROLLWIN_THUMBRELEASE thumb release events.
42013f4c
FM
1846 @endEventTable
1847
1848
1849 @library{wxcore}
1850 @category{events}
1851
3e083d65 1852 @see wxScrollEvent, @ref overview_events
42013f4c
FM
1853*/
1854class wxScrollWinEvent : public wxEvent
1855{
1856public:
23324ae1 1857 /**
42013f4c 1858 Constructor.
23324ae1 1859 */
42013f4c
FM
1860 wxScrollWinEvent(wxEventType commandType = wxEVT_NULL, int pos = 0,
1861 int orientation = 0);
23324ae1
FM
1862
1863 /**
42013f4c
FM
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
23324ae1 1868 */
42013f4c 1869 int GetOrientation() const;
23324ae1
FM
1870
1871 /**
42013f4c
FM
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.
23324ae1 1876 */
42013f4c 1877 int GetPosition() const;
a90e69f7
RD
1878
1879 void SetOrientation(int orient);
1880 void SetPosition(int pos);
23324ae1
FM
1881};
1882
1883
e54c96f1 1884
23324ae1 1885/**
42013f4c 1886 @class wxSysColourChangedEvent
7c913512 1887
42013f4c
FM
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.
7c913512 1891
42013f4c
FM
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.
3d6c68c1 1897
42013f4c 1898 @beginEventTable{wxSysColourChangedEvent}
8c6791e4 1899 @event{EVT_SYS_COLOUR_CHANGED(func)}
3051a44a 1900 Process a @c wxEVT_SYS_COLOUR_CHANGED event.
3d6c68c1
VS
1901 @endEventTable
1902
23324ae1
FM
1903 @library{wxcore}
1904 @category{events}
7c913512 1905
3e083d65 1906 @see @ref overview_events
23324ae1 1907*/
42013f4c 1908class wxSysColourChangedEvent : public wxEvent
23324ae1
FM
1909{
1910public:
1911 /**
3d6c68c1 1912 Constructor.
23324ae1 1913 */
42013f4c 1914 wxSysColourChangedEvent();
23324ae1
FM
1915};
1916
1917
e54c96f1 1918
551048c2
VZ
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)}
ce7fe42e 1940 Process a @c wxEVT_BUTTON command, which is generated by a wxButton control.
551048c2 1941 @event{EVT_CHECKBOX(id, func)}
ce7fe42e 1942 Process a @c wxEVT_CHECKBOX command, which is generated by a wxCheckBox control.
551048c2 1943 @event{EVT_CHOICE(id, func)}
ce7fe42e 1944 Process a @c wxEVT_CHOICE command, which is generated by a wxChoice control.
551048c2 1945 @event{EVT_COMBOBOX(id, func)}
ce7fe42e 1946 Process a @c wxEVT_COMBOBOX command, which is generated by a wxComboBox control.
551048c2 1947 @event{EVT_LISTBOX(id, func)}
ce7fe42e 1948 Process a @c wxEVT_LISTBOX command, which is generated by a wxListBox control.
551048c2 1949 @event{EVT_LISTBOX_DCLICK(id, func)}
ce7fe42e 1950 Process a @c wxEVT_LISTBOX_DCLICK command, which is generated by a wxListBox control.
551048c2 1951 @event{EVT_CHECKLISTBOX(id, func)}
ce7fe42e 1952 Process a @c wxEVT_CHECKLISTBOX command, which is generated by a wxCheckListBox control.
551048c2 1953 @event{EVT_MENU(id, func)}
ce7fe42e 1954 Process a @c wxEVT_MENU command, which is generated by a menu item.
551048c2 1955 @event{EVT_MENU_RANGE(id1, id2, func)}
ce7fe42e 1956 Process a @c wxEVT_MENU command, which is generated by a range of menu items.
551048c2
VZ
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)}
ce7fe42e 1961 Process a @c wxEVT_RADIOBOX command, which is generated by a wxRadioBox control.
551048c2 1962 @event{EVT_RADIOBUTTON(id, func)}
ce7fe42e 1963 Process a @c wxEVT_RADIOBUTTON command, which is generated by a wxRadioButton control.
551048c2 1964 @event{EVT_SCROLLBAR(id, func)}
ce7fe42e 1965 Process a @c wxEVT_SCROLLBAR command, which is generated by a wxScrollBar
551048c2
VZ
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)}
ce7fe42e 1969 Process a @c wxEVT_SLIDER command, which is generated by a wxSlider control.
551048c2 1970 @event{EVT_TEXT(id, func)}
ce7fe42e 1971 Process a @c wxEVT_TEXT command, which is generated by a wxTextCtrl control.
551048c2 1972 @event{EVT_TEXT_ENTER(id, func)}
ce7fe42e 1973 Process a @c wxEVT_TEXT_ENTER command, which is generated by a wxTextCtrl control.
551048c2
VZ
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)}
ce7fe42e 1977 Process a @c wxEVT_TEXT_MAXLEN command, which is generated by a wxTextCtrl control
551048c2
VZ
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)}
ce7fe42e 1981 Process a @c wxEVT_TOGGLEBUTTON event.
551048c2 1982 @event{EVT_TOOL(id, func)}
ce7fe42e 1983 Process a @c wxEVT_TOOL event (a synonym for @c wxEVT_MENU).
551048c2
VZ
1984 Pass the id of the tool.
1985 @event{EVT_TOOL_RANGE(id1, id2, func)}
ce7fe42e 1986 Process a @c wxEVT_TOOL event for a range of identifiers. Pass the ids of the tools.
551048c2 1987 @event{EVT_TOOL_RCLICKED(id, func)}
ce7fe42e 1988 Process a @c wxEVT_TOOL_RCLICKED event. Pass the id of the tool. (Not available on wxOSX.)
551048c2 1989 @event{EVT_TOOL_RCLICKED_RANGE(id1, id2, func)}
ce7fe42e 1990 Process a @c wxEVT_TOOL_RCLICKED event for a range of ids. Pass the ids of the tools. (Not available on wxOSX.)
551048c2 1991 @event{EVT_TOOL_ENTER(id, func)}
ce7fe42e 1992 Process a @c wxEVT_TOOL_ENTER event. Pass the id of the toolbar itself.
551048c2
VZ
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*/
2012class wxCommandEvent : public wxEvent
2013{
2014public:
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
23324ae1 2117/**
42013f4c 2118 @class wxWindowCreateEvent
7c913512 2119
42013f4c
FM
2120 This event is sent just after the actual window associated with a wxWindow
2121 object has been created.
7c913512 2122
42013f4c
FM
2123 Since it is derived from wxCommandEvent, the event propagates up
2124 the window hierarchy.
7c913512 2125
42013f4c 2126 @beginEventTable{wxWindowCreateEvent}
8c6791e4 2127 @event{EVT_WINDOW_CREATE(func)}
3051a44a 2128 Process a @c wxEVT_CREATE event.
42013f4c 2129 @endEventTable
7c913512 2130
23324ae1
FM
2131 @library{wxcore}
2132 @category{events}
7c913512 2133
3e083d65 2134 @see @ref overview_events, wxWindowDestroyEvent
23324ae1 2135*/
42013f4c 2136class wxWindowCreateEvent : public wxCommandEvent
23324ae1
FM
2137{
2138public:
2139 /**
42013f4c
FM
2140 Constructor.
2141 */
2142 wxWindowCreateEvent(wxWindow* win = NULL);
a79a6671 2143
57ab6f23 2144 /// Return the window being created.
a79a6671 2145 wxWindow *GetWindow() const;
42013f4c 2146};
3c4f71cc 2147
23324ae1 2148
23324ae1 2149
42013f4c
FM
2150/**
2151 @class wxPaintEvent
23324ae1 2152
42013f4c 2153 A paint event is sent when a window's contents needs to be repainted.
23324ae1 2154
7ca106e8
VZ
2155 The handler of this event must create a wxPaintDC object and use it for
2156 painting the window contents. For example:
42013f4c
FM
2157 @code
2158 void MyWindow::OnPaint(wxPaintEvent& event)
2159 {
2160 wxPaintDC dc(this);
23324ae1 2161
42013f4c
FM
2162 DrawMyDocument(dc);
2163 }
2164 @endcode
7ca106e8
VZ
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
42013f4c
FM
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);
23324ae1 2181
42013f4c
FM
2182 // Find Out where the window is scrolled to
2183 int vbX,vbY; // Top left corner of client
2184 GetViewStart(&vbX,&vbY);
23324ae1 2185
42013f4c
FM
2186 int vX,vY,vW,vH; // Dimensions of client area in pixels
2187 wxRegionIterator upd(GetUpdateRegion()); // get the update rect list
23324ae1 2188
42013f4c
FM
2189 while (upd)
2190 {
2191 vX = upd.GetX();
2192 vY = upd.GetY();
2193 vW = upd.GetW();
2194 vH = upd.GetH();
23324ae1 2195
42013f4c
FM
2196 // Alternatively we can do this:
2197 // wxRect rect(upd.GetRect());
3c4f71cc 2198
42013f4c
FM
2199 // Repaint this rectangle
2200 ...some code...
3c4f71cc 2201
42013f4c
FM
2202 upd ++ ;
2203 }
2204 }
2205 @endcode
3c4f71cc 2206
7ca106e8
VZ
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
3c4f71cc 2213
42013f4c 2214 @beginEventTable{wxPaintEvent}
8c6791e4 2215 @event{EVT_PAINT(func)}
3051a44a 2216 Process a @c wxEVT_PAINT event.
42013f4c 2217 @endEventTable
3c4f71cc 2218
42013f4c
FM
2219 @library{wxcore}
2220 @category{events}
3c4f71cc 2221
3e083d65 2222 @see @ref overview_events
42013f4c
FM
2223*/
2224class wxPaintEvent : public wxEvent
2225{
2226public:
2227 /**
2228 Constructor.
2229 */
2230 wxPaintEvent(int id = 0);
2231};
3c4f71cc 2232
3c4f71cc 2233
3c4f71cc 2234
42013f4c
FM
2235/**
2236 @class wxMaximizeEvent
3c4f71cc 2237
42013f4c
FM
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.
3c4f71cc 2241
89c6e024 2242 Currently this event is only generated in wxMSW, wxGTK, wxOSX/Cocoa and wxOS2
e22e5ee4
VZ
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
42013f4c 2246 @beginEventTable{wxMaximizeEvent}
8c6791e4 2247 @event{EVT_MAXIMIZE(func)}
3051a44a 2248 Process a @c wxEVT_MAXIMIZE event.
42013f4c 2249 @endEventTable
3c4f71cc 2250
42013f4c
FM
2251 @library{wxcore}
2252 @category{events}
23324ae1 2253
3e083d65 2254 @see @ref overview_events, wxTopLevelWindow::Maximize,
42013f4c
FM
2255 wxTopLevelWindow::IsMaximized
2256*/
2257class wxMaximizeEvent : public wxEvent
2258{
2259public:
23324ae1 2260 /**
42013f4c 2261 Constructor. Only used by wxWidgets internally.
23324ae1 2262 */
42013f4c
FM
2263 wxMaximizeEvent(int id = 0);
2264};
23324ae1 2265
42013f4c
FM
2266/**
2267 The possibles modes to pass to wxUpdateUIEvent::SetMode().
2268*/
2269enum wxUpdateUIMode
2270{
2271 /** Send UI update events to all windows. */
2272 wxUPDATE_UI_PROCESS_ALL,
23324ae1 2273
42013f4c
FM
2274 /** Send UI update events to windows that have
2275 the wxWS_EX_PROCESS_UI_UPDATES flag specified. */
2276 wxUPDATE_UI_PROCESS_SPECIFIED
2277};
23324ae1 2278
3c4f71cc 2279
42013f4c
FM
2280/**
2281 @class wxUpdateUIEvent
23324ae1 2282
42013f4c
FM
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.
23324ae1 2285
42013f4c
FM
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.
3c4f71cc 2290
42013f4c
FM
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.
23324ae1 2294
42013f4c
FM
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.
23324ae1 2301
42013f4c
FM
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.
23324ae1 2305
42013f4c
FM
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.
3c4f71cc 2315
42013f4c
FM
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.
23324ae1 2319
42013f4c
FM
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.
23324ae1 2323
23324ae1 2324
42013f4c 2325 @beginEventTable{wxUpdateUIEvent}
8c6791e4 2326 @event{EVT_UPDATE_UI(id, func)}
3051a44a 2327 Process a @c wxEVT_UPDATE_UI event for the command with the given id.
8c6791e4 2328 @event{EVT_UPDATE_UI_RANGE(id1, id2, func)}
3051a44a 2329 Process a @c wxEVT_UPDATE_UI event for any command with id included in the given range.
42013f4c 2330 @endEventTable
23324ae1 2331
42013f4c
FM
2332 @library{wxcore}
2333 @category{events}
23324ae1 2334
3e083d65 2335 @see @ref overview_events
42013f4c
FM
2336*/
2337class wxUpdateUIEvent : public wxCommandEvent
2338{
2339public:
23324ae1 2340 /**
42013f4c 2341 Constructor.
23324ae1 2342 */
42013f4c 2343 wxUpdateUIEvent(wxWindowID commandId = 0);
23324ae1
FM
2344
2345 /**
42013f4c
FM
2346 Returns @true if it is appropriate to update (send UI update events to)
2347 this window.
23324ae1 2348
42013f4c
FM
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.
23324ae1 2357
42013f4c 2358 @see ResetUpdateTime(), SetUpdateInterval(), SetMode()
23324ae1 2359 */
42013f4c 2360 static bool CanUpdate(wxWindow* window);
23324ae1
FM
2361
2362 /**
42013f4c 2363 Check or uncheck the UI element.
23324ae1 2364 */
42013f4c 2365 void Check(bool check);
23324ae1
FM
2366
2367 /**
42013f4c 2368 Enable or disable the UI element.
23324ae1 2369 */
42013f4c 2370 void Enable(bool enable);
23324ae1
FM
2371
2372 /**
42013f4c 2373 Returns @true if the UI element should be checked.
23324ae1 2374 */
42013f4c 2375 bool GetChecked() const;
23324ae1
FM
2376
2377 /**
42013f4c 2378 Returns @true if the UI element should be enabled.
23324ae1 2379 */
42013f4c 2380 bool GetEnabled() const;
23324ae1
FM
2381
2382 /**
42013f4c
FM
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.
23324ae1 2386
42013f4c 2387 @see SetMode()
23324ae1 2388 */
42013f4c 2389 static wxUpdateUIMode GetMode();
23324ae1
FM
2390
2391 /**
42013f4c
FM
2392 Returns @true if the application has called Check().
2393 For wxWidgets internal use only.
23324ae1 2394 */
42013f4c 2395 bool GetSetChecked() const;
23324ae1
FM
2396
2397 /**
42013f4c
FM
2398 Returns @true if the application has called Enable().
2399 For wxWidgets internal use only.
23324ae1 2400 */
42013f4c 2401 bool GetSetEnabled() const;
23324ae1
FM
2402
2403 /**
42013f4c
FM
2404 Returns @true if the application has called Show().
2405 For wxWidgets internal use only.
23324ae1 2406 */
42013f4c 2407 bool GetSetShown() const;
23324ae1
FM
2408
2409 /**
42013f4c
FM
2410 Returns @true if the application has called SetText().
2411 For wxWidgets internal use only.
23324ae1 2412 */
42013f4c 2413 bool GetSetText() const;
23324ae1
FM
2414
2415 /**
42013f4c 2416 Returns @true if the UI element should be shown.
23324ae1 2417 */
42013f4c 2418 bool GetShown() const;
23324ae1
FM
2419
2420 /**
42013f4c 2421 Returns the text that should be set for the UI element.
23324ae1 2422 */
42013f4c 2423 wxString GetText() const;
23324ae1
FM
2424
2425 /**
42013f4c
FM
2426 Returns the current interval between updates in milliseconds.
2427 The value -1 disables updates, 0 updates as frequently as possible.
23324ae1 2428
42013f4c 2429 @see SetUpdateInterval().
23324ae1 2430 */
42013f4c 2431 static long GetUpdateInterval();
23324ae1
FM
2432
2433 /**
42013f4c 2434 Used internally to reset the last-updated time to the current time.
23324ae1 2435
42013f4c
FM
2436 It is assumed that update events are normally sent in idle time, so this
2437 is called at the end of idle processing.
23324ae1 2438
42013f4c 2439 @see CanUpdate(), SetUpdateInterval(), SetMode()
23324ae1 2440 */
42013f4c 2441 static void ResetUpdateTime();
23324ae1
FM
2442
2443 /**
42013f4c
FM
2444 Specify how wxWidgets will send update events: to all windows, or only to
2445 those which specify that they will process the events.
23324ae1 2446
42013f4c
FM
2447 @param mode
2448 this parameter may be one of the ::wxUpdateUIMode enumeration values.
2449 The default mode is wxUPDATE_UI_PROCESS_ALL.
23324ae1 2450 */
42013f4c 2451 static void SetMode(wxUpdateUIMode mode);
23324ae1
FM
2452
2453 /**
42013f4c 2454 Sets the text for this UI element.
23324ae1 2455 */
42013f4c 2456 void SetText(const wxString& text);
23324ae1
FM
2457
2458 /**
42013f4c 2459 Sets the interval between updates in milliseconds.
23324ae1 2460
42013f4c
FM
2461 Set to -1 to disable updates, or to 0 to update as frequently as possible.
2462 The default is 0.
23324ae1 2463
42013f4c
FM
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.
23324ae1 2468 */
42013f4c 2469 static void SetUpdateInterval(long updateInterval);
23324ae1
FM
2470
2471 /**
42013f4c 2472 Show or hide the UI element.
23324ae1 2473 */
42013f4c
FM
2474 void Show(bool show);
2475};
23324ae1
FM
2476
2477
23324ae1 2478
42013f4c
FM
2479/**
2480 @class wxClipboardTextEvent
23324ae1 2481
42013f4c
FM
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.
23324ae1 2485
ce7fe42e
VZ
2486 There are three types of corresponding events @c wxEVT_TEXT_COPY,
2487 @c wxEVT_TEXT_CUT and @c wxEVT_TEXT_PASTE.
23324ae1 2488
42013f4c
FM
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.
23324ae1 2495
42013f4c
FM
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.
23324ae1 2499
42013f4c 2500 @note
75aaa4c5
VZ
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.
23324ae1 2503
42013f4c 2504 @beginEventTable{wxClipboardTextEvent}
8c6791e4 2505 @event{EVT_TEXT_COPY(id, func)}
42013f4c 2506 Some or all of the controls content was copied to the clipboard.
8c6791e4 2507 @event{EVT_TEXT_CUT(id, func)}
42013f4c
FM
2508 Some or all of the controls content was cut (i.e. copied and
2509 deleted).
8c6791e4 2510 @event{EVT_TEXT_PASTE(id, func)}
42013f4c
FM
2511 Clipboard content was pasted into the control.
2512 @endEventTable
23324ae1 2513
23324ae1 2514
42013f4c
FM
2515 @library{wxcore}
2516 @category{events}
23324ae1 2517
42013f4c
FM
2518 @see wxClipboard
2519*/
2520class wxClipboardTextEvent : public wxCommandEvent
2521{
2522public:
23324ae1 2523 /**
42013f4c 2524 Constructor.
23324ae1 2525 */
42013f4c 2526 wxClipboardTextEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
23324ae1
FM
2527};
2528
41469c9e
VZ
2529/**
2530 Possible axis values for mouse wheel scroll events.
2531
2532 @since 2.9.4
2533 */
2534enum wxMouseWheelAxis
2535{
2536 wxMOUSE_WHEEL_VERTICAL, ///< Vertical scroll event.
2537 wxMOUSE_WHEEL_HORIZONTAL ///< Horizontal scroll event.
2538};
23324ae1 2539
e54c96f1 2540
23324ae1 2541/**
42013f4c 2542 @class wxMouseEvent
7c913512 2543
42013f4c
FM
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.
7c913512 2546
42013f4c
FM
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
92dbce73
VZ
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
42013f4c
FM
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
ab826fd8
VZ
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.
42013f4c
FM
2584
2585
2586 @beginEventTable{wxMouseEvent}
8c6791e4 2587 @event{EVT_LEFT_DOWN(func)}
3051a44a 2588 Process a @c wxEVT_LEFT_DOWN event. The handler of this event should normally
42013f4c
FM
2589 call event.Skip() to allow the default processing to take place as otherwise
2590 the window under mouse wouldn't get the focus.
8c6791e4 2591 @event{EVT_LEFT_UP(func)}
3051a44a 2592 Process a @c wxEVT_LEFT_UP event.
8c6791e4 2593 @event{EVT_LEFT_DCLICK(func)}
3051a44a 2594 Process a @c wxEVT_LEFT_DCLICK event.
8c6791e4 2595 @event{EVT_MIDDLE_DOWN(func)}
3051a44a 2596 Process a @c wxEVT_MIDDLE_DOWN event.
8c6791e4 2597 @event{EVT_MIDDLE_UP(func)}
3051a44a 2598 Process a @c wxEVT_MIDDLE_UP event.
8c6791e4 2599 @event{EVT_MIDDLE_DCLICK(func)}
3051a44a 2600 Process a @c wxEVT_MIDDLE_DCLICK event.
8c6791e4 2601 @event{EVT_RIGHT_DOWN(func)}
3051a44a 2602 Process a @c wxEVT_RIGHT_DOWN event.
8c6791e4 2603 @event{EVT_RIGHT_UP(func)}
3051a44a 2604 Process a @c wxEVT_RIGHT_UP event.
8c6791e4 2605 @event{EVT_RIGHT_DCLICK(func)}
3051a44a 2606 Process a @c wxEVT_RIGHT_DCLICK event.
8c6791e4 2607 @event{EVT_MOUSE_AUX1_DOWN(func)}
7f4f5e8c 2608 Process a @c wxEVT_AUX1_DOWN event.
8c6791e4 2609 @event{EVT_MOUSE_AUX1_UP(func)}
7f4f5e8c 2610 Process a @c wxEVT_AUX1_UP event.
8c6791e4 2611 @event{EVT_MOUSE_AUX1_DCLICK(func)}
7f4f5e8c 2612 Process a @c wxEVT_AUX1_DCLICK event.
8c6791e4 2613 @event{EVT_MOUSE_AUX2_DOWN(func)}
7f4f5e8c 2614 Process a @c wxEVT_AUX2_DOWN event.
8c6791e4 2615 @event{EVT_MOUSE_AUX2_UP(func)}
7f4f5e8c 2616 Process a @c wxEVT_AUX2_UP event.
8c6791e4 2617 @event{EVT_MOUSE_AUX2_DCLICK(func)}
7f4f5e8c 2618 Process a @c wxEVT_AUX2_DCLICK event.
8c6791e4 2619 @event{EVT_MOTION(func)}
3051a44a 2620 Process a @c wxEVT_MOTION event.
8c6791e4 2621 @event{EVT_ENTER_WINDOW(func)}
3051a44a 2622 Process a @c wxEVT_ENTER_WINDOW event.
8c6791e4 2623 @event{EVT_LEAVE_WINDOW(func)}
3051a44a 2624 Process a @c wxEVT_LEAVE_WINDOW event.
8c6791e4 2625 @event{EVT_MOUSEWHEEL(func)}
3051a44a 2626 Process a @c wxEVT_MOUSEWHEEL event.
8c6791e4 2627 @event{EVT_MOUSE_EVENTS(func)}
42013f4c
FM
2628 Process all mouse events.
2629 @endEventTable
7c913512 2630
23324ae1
FM
2631 @library{wxcore}
2632 @category{events}
7c913512 2633
0e097789 2634 @see wxKeyEvent
23324ae1 2635*/
0e097789
VZ
2636class wxMouseEvent : public wxEvent,
2637 public wxMouseState
23324ae1
FM
2638{
2639public:
2640 /**
42013f4c 2641 Constructor. Valid event types are:
23324ae1 2642
3a194bda
SL
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
31a9fc93
VZ
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
3a194bda
SL
2660 @li @c wxEVT_MOTION
2661 @li @c wxEVT_MOUSEWHEEL
42013f4c
FM
2662 */
2663 wxMouseEvent(wxEventType mouseEventType = wxEVT_NULL);
23324ae1 2664
23324ae1 2665 /**
42013f4c 2666 Returns @true if the event was a first extra button double click.
23324ae1 2667 */
42013f4c 2668 bool Aux1DClick() const;
23324ae1
FM
2669
2670 /**
42013f4c 2671 Returns @true if the first extra button mouse button changed to down.
23324ae1 2672 */
42013f4c 2673 bool Aux1Down() const;
7c913512 2674
23324ae1 2675 /**
42013f4c 2676 Returns @true if the first extra button mouse button changed to up.
23324ae1 2677 */
42013f4c 2678 bool Aux1Up() const;
23324ae1
FM
2679
2680 /**
42013f4c 2681 Returns @true if the event was a second extra button double click.
23324ae1 2682 */
42013f4c 2683 bool Aux2DClick() const;
23324ae1
FM
2684
2685 /**
42013f4c 2686 Returns @true if the second extra button mouse button changed to down.
23324ae1 2687 */
42013f4c 2688 bool Aux2Down() const;
23324ae1 2689
23324ae1 2690 /**
42013f4c 2691 Returns @true if the second extra button mouse button changed to up.
23324ae1 2692 */
42013f4c 2693 bool Aux2Up() const;
23324ae1
FM
2694
2695 /**
ab826fd8 2696 Returns @true if the event was generated by the specified button.
42013f4c 2697
ab826fd8 2698 @see wxMouseState::ButtoinIsDown()
23324ae1 2699 */
ab826fd8 2700 bool Button(wxMouseButton but) const;
23324ae1
FM
2701
2702 /**
42013f4c
FM
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).
23324ae1 2706 */
ab826fd8 2707 bool ButtonDClick(wxMouseButton but = wxMOUSE_BTN_ANY) const;
23324ae1
FM
2708
2709 /**
42013f4c
FM
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).
23324ae1 2713 */
ab826fd8 2714 bool ButtonDown(wxMouseButton but = wxMOUSE_BTN_ANY) const;
23324ae1
FM
2715
2716 /**
42013f4c
FM
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).
23324ae1 2720 */
ab826fd8 2721 bool ButtonUp(wxMouseButton but = wxMOUSE_BTN_ANY) const;
23324ae1 2722
23324ae1 2723 /**
42013f4c
FM
2724 Returns @true if this was a dragging event (motion while a button is depressed).
2725
2726 @see Moving()
23324ae1 2727 */
42013f4c 2728 bool Dragging() const;
23324ae1
FM
2729
2730 /**
42013f4c
FM
2731 Returns @true if the mouse was entering the window.
2732
2733 @see Leaving()
23324ae1 2734 */
42013f4c 2735 bool Entering() const;
23324ae1
FM
2736
2737 /**
42013f4c
FM
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.
23324ae1 2743 */
42013f4c 2744 int GetButton() const;
e54c96f1 2745
42013f4c
FM
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.
7c913512 2749
42013f4c
FM
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).
7c913512 2753
1e24c2af 2754 @since 2.9.0
42013f4c
FM
2755 */
2756 int GetClickCount() const;
7c913512 2757
23324ae1 2758 /**
42013f4c 2759 Returns the configured number of lines (or whatever) to be scrolled per
5833988c
VZ
2760 wheel action.
2761
2762 Default value under most platforms is three.
2763
2764 @see GetColumnsPerAction()
23324ae1 2765 */
42013f4c 2766 int GetLinesPerAction() const;
23324ae1 2767
5833988c
VZ
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
23324ae1 2780 /**
0824e369 2781 Returns the logical mouse position in pixels (i.e.\ translated according to the
42013f4c
FM
2782 translation set for the DC, which usually indicates that the window has been
2783 scrolled).
23324ae1 2784 */
42013f4c 2785 wxPoint GetLogicalPosition(const wxDC& dc) const;
23324ae1 2786
42013f4c
FM
2787 /**
2788 Get wheel delta, normally 120.
7c913512 2789
42013f4c
FM
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;
7c913512 2794
42013f4c
FM
2795 /**
2796 Get wheel rotation, positive or negative indicates direction of rotation.
7c913512 2797
42013f4c
FM
2798 Current devices all send an event when rotation is at least +/-WheelDelta, but
2799 finer resolution devices can be created in the future.
7c913512 2800
42013f4c
FM
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.
23324ae1 2804 */
42013f4c 2805 int GetWheelRotation() const;
23324ae1 2806
ec6278a1 2807 /**
41469c9e
VZ
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.
ec6278a1 2814
41469c9e 2815 Notice that before wxWidgets 2.9.4 this method returned @c int.
ec6278a1 2816 */
41469c9e 2817 wxMouseWheelAxis GetWheelAxis() const;
ec6278a1 2818
23324ae1 2819 /**
42013f4c
FM
2820 Returns @true if the event was a mouse button event (not necessarily a button
2821 down event - that may be tested using ButtonDown()).
23324ae1 2822 */
42013f4c 2823 bool IsButton() const;
23324ae1
FM
2824
2825 /**
42013f4c
FM
2826 Returns @true if the system has been setup to do page scrolling with
2827 the mouse wheel instead of line scrolling.
23324ae1 2828 */
42013f4c 2829 bool IsPageScroll() const;
7c913512 2830
42013f4c
FM
2831 /**
2832 Returns @true if the mouse was leaving the window.
7c913512 2833
42013f4c
FM
2834 @see Entering().
2835 */
2836 bool Leaving() const;
7c913512 2837
23324ae1 2838 /**
42013f4c 2839 Returns @true if the event was a left double click.
23324ae1 2840 */
42013f4c 2841 bool LeftDClick() const;
23324ae1
FM
2842
2843 /**
42013f4c 2844 Returns @true if the left mouse button changed to down.
23324ae1 2845 */
42013f4c 2846 bool LeftDown() const;
7c913512 2847
42013f4c
FM
2848 /**
2849 Returns @true if the left mouse button changed to up.
2850 */
2851 bool LeftUp() const;
7c913512 2852
23324ae1 2853 /**
42013f4c
FM
2854 Returns @true if the Meta key was down at the time of the event.
2855 */
2856 bool MetaDown() const;
3c4f71cc 2857
42013f4c
FM
2858 /**
2859 Returns @true if the event was a middle double click.
23324ae1 2860 */
42013f4c 2861 bool MiddleDClick() const;
23324ae1
FM
2862
2863 /**
42013f4c 2864 Returns @true if the middle mouse button changed to down.
23324ae1 2865 */
42013f4c 2866 bool MiddleDown() const;
23324ae1 2867
42013f4c
FM
2868 /**
2869 Returns @true if the middle mouse button changed to up.
2870 */
2871 bool MiddleUp() const;
e54c96f1 2872
42013f4c
FM
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;
7c913512 2879
42013f4c
FM
2880 /**
2881 Returns @true if the event was a right double click.
2882 */
2883 bool RightDClick() const;
7c913512 2884
42013f4c
FM
2885 /**
2886 Returns @true if the right mouse button changed to down.
2887 */
2888 bool RightDown() const;
7c913512 2889
42013f4c
FM
2890 /**
2891 Returns @true if the right mouse button changed to up.
2892 */
2893 bool RightUp() const;
23324ae1
FM
2894};
2895
2896
e54c96f1 2897
23324ae1 2898/**
42013f4c 2899 @class wxDropFilesEvent
7c913512 2900
42013f4c
FM
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.
7c913512 2903
42013f4c
FM
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}
8c6791e4 2912 @event{EVT_DROP_FILES(func)}
3051a44a 2913 Process a @c wxEVT_DROP_FILES event.
42013f4c
FM
2914 @endEventTable
2915
2916 @onlyfor{wxmsw}
7c913512 2917
23324ae1
FM
2918 @library{wxcore}
2919 @category{events}
7c913512 2920
3e083d65 2921 @see @ref overview_events
23324ae1 2922*/
42013f4c 2923class wxDropFilesEvent : public wxEvent
23324ae1
FM
2924{
2925public:
2926 /**
42013f4c 2927 Constructor.
23324ae1 2928 */
42013f4c
FM
2929 wxDropFilesEvent(wxEventType id = 0, int noFiles = 0,
2930 wxString* files = NULL);
23324ae1
FM
2931
2932 /**
42013f4c 2933 Returns an array of filenames.
23324ae1 2934 */
42013f4c 2935 wxString* GetFiles() const;
23324ae1
FM
2936
2937 /**
42013f4c 2938 Returns the number of files dropped.
23324ae1 2939 */
42013f4c 2940 int GetNumberOfFiles() const;
23324ae1
FM
2941
2942 /**
42013f4c
FM
2943 Returns the position at which the files were dropped.
2944 Returns an array of filenames.
23324ae1 2945 */
42013f4c 2946 wxPoint GetPosition() const;
23324ae1
FM
2947};
2948
2949
e54c96f1 2950
23324ae1 2951/**
42013f4c 2952 @class wxActivateEvent
7c913512 2953
42013f4c
FM
2954 An activate event is sent when a window or application is being activated
2955 or deactivated.
7c913512 2956
42013f4c 2957 @beginEventTable{wxActivateEvent}
8c6791e4 2958 @event{EVT_ACTIVATE(func)}
3051a44a 2959 Process a @c wxEVT_ACTIVATE event.
8c6791e4 2960 @event{EVT_ACTIVATE_APP(func)}
3051a44a
FM
2961 Process a @c wxEVT_ACTIVATE_APP event.
2962 This event is received by the wxApp-derived instance only.
8c6791e4 2963 @event{EVT_HIBERNATE(func)}
42013f4c
FM
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
3a194bda 2968 a @c wxEVT_ACTIVATE or @c wxEVT_ACTIVATE_APP event.
42013f4c
FM
2969 @endEventTable
2970
42013f4c 2971 @library{wxcore}
23324ae1 2972 @category{events}
7c913512 2973
3e083d65 2974 @see @ref overview_events, wxApp::IsActive
23324ae1 2975*/
42013f4c 2976class wxActivateEvent : public wxEvent
23324ae1
FM
2977{
2978public:
2979 /**
2980 Constructor.
2981 */
42013f4c
FM
2982 wxActivateEvent(wxEventType eventType = wxEVT_NULL, bool active = true,
2983 int id = 0);
23324ae1
FM
2984
2985 /**
42013f4c 2986 Returns @true if the application or window is being activated, @false otherwise.
23324ae1 2987 */
42013f4c 2988 bool GetActive() const;
23324ae1
FM
2989};
2990
2991
e54c96f1 2992
23324ae1 2993/**
42013f4c 2994 @class wxContextMenuEvent
7c913512 2995
42013f4c 2996 This class is used for context menu events, sent to give
3051a44a 2997 the application a chance to show a context (popup) menu for a wxWindow.
42013f4c
FM
2998
2999 Note that if wxContextMenuEvent::GetPosition returns wxDefaultPosition, this
3000 means that the event originated from a keyboard context button event, and you
3001 should compute a suitable position yourself, for example by calling wxGetMousePosition().
3002
2abce4af
VZ
3003 Notice that the exact sequence of mouse events is different across the
3004 platforms. For example, under MSW the context menu event is generated after
3005 @c EVT_RIGHT_UP event and only if it was not handled but under GTK the
3006 context menu event is generated after @c EVT_RIGHT_DOWN event. This is
3007 correct in the sense that it ensures that the context menu is shown
3008 according to the current platform UI conventions and also means that you
3009 must not handle (or call wxEvent::Skip() in your handler if you do have
3010 one) neither right mouse down nor right mouse up event if you plan on
3011 handling @c EVT_CONTEXT_MENU event.
42013f4c
FM
3012
3013 @beginEventTable{wxContextMenuEvent}
8c6791e4 3014 @event{EVT_CONTEXT_MENU(func)}
42013f4c
FM
3015 A right click (or other context menu command depending on platform) has been detected.
3016 @endEventTable
3017
7c913512 3018
23324ae1
FM
3019 @library{wxcore}
3020 @category{events}
7c913512 3021
3e083d65 3022 @see wxCommandEvent, @ref overview_events
23324ae1 3023*/
42013f4c 3024class wxContextMenuEvent : public wxCommandEvent
23324ae1
FM
3025{
3026public:
3027 /**
3028 Constructor.
3029 */
a90e69f7 3030 wxContextMenuEvent(wxEventType type = wxEVT_NULL, int id = 0,
42013f4c
FM
3031 const wxPoint& pos = wxDefaultPosition);
3032
3033 /**
3034 Returns the position in screen coordinates at which the menu should be shown.
3035 Use wxWindow::ScreenToClient to convert to client coordinates.
3036
3037 You can also omit a position from wxWindow::PopupMenu in order to use
3038 the current mouse pointer position.
3039
3040 If the event originated from a keyboard event, the value returned from this
3041 function will be wxDefaultPosition.
3042 */
3043 const wxPoint& GetPosition() const;
3044
3045 /**
3046 Sets the position at which the menu should be shown.
3047 */
3048 void SetPosition(const wxPoint& point);
23324ae1
FM
3049};
3050
3051
e54c96f1 3052
23324ae1 3053/**
42013f4c 3054 @class wxEraseEvent
7c913512 3055
42013f4c 3056 An erase event is sent when a window's background needs to be repainted.
7c913512 3057
42013f4c
FM
3058 On some platforms, such as GTK+, this event is simulated (simply generated just
3059 before the paint event) and may cause flicker. It is therefore recommended that
3060 you set the text background colour explicitly in order to prevent flicker.
3061 The default background colour under GTK+ is grey.
3062
3063 To intercept this event, use the EVT_ERASE_BACKGROUND macro in an event table
3064 definition.
3065
5fafec4d
VZ
3066 You must use the device context returned by GetDC() to draw on, don't create
3067 a wxPaintDC in the event handler.
7c913512 3068
42013f4c 3069 @beginEventTable{wxEraseEvent}
8c6791e4 3070 @event{EVT_ERASE_BACKGROUND(func)}
3051a44a 3071 Process a @c wxEVT_ERASE_BACKGROUND event.
42013f4c 3072 @endEventTable
7c913512 3073
23324ae1
FM
3074 @library{wxcore}
3075 @category{events}
7c913512 3076
3e083d65 3077 @see @ref overview_events
23324ae1 3078*/
42013f4c 3079class wxEraseEvent : public wxEvent
23324ae1
FM
3080{
3081public:
3082 /**
3083 Constructor.
3084 */
42013f4c
FM
3085 wxEraseEvent(int id = 0, wxDC* dc = NULL);
3086
3087 /**
3088 Returns the device context associated with the erase event to draw on.
5fafec4d
VZ
3089
3090 The returned pointer is never @NULL.
42013f4c
FM
3091 */
3092 wxDC* GetDC() const;
23324ae1
FM
3093};
3094
3095
e54c96f1 3096
23324ae1 3097/**
42013f4c 3098 @class wxFocusEvent
7c913512 3099
42013f4c
FM
3100 A focus event is sent when a window's focus changes. The window losing focus
3101 receives a "kill focus" event while the window gaining it gets a "set focus" one.
7c913512 3102
42013f4c
FM
3103 Notice that the set focus event happens both when the user gives focus to the
3104 window (whether using the mouse or keyboard) and when it is done from the
3105 program itself using wxWindow::SetFocus.
3106
9a25f336
VZ
3107 The focus event handlers should almost invariably call wxEvent::Skip() on
3108 their event argument to allow the default handling to take place. Failure
3109 to do this may result in incorrect behaviour of the native controls. Also
3110 note that wxEVT_KILL_FOCUS handler must not call wxWindow::SetFocus() as
3111 this, again, is not supported by all native controls. If you need to do
3112 this, consider using the @ref sec_delayed_action described in wxIdleEvent
3113 documentation.
3114
42013f4c 3115 @beginEventTable{wxFocusEvent}
8c6791e4 3116 @event{EVT_SET_FOCUS(func)}
3051a44a 3117 Process a @c wxEVT_SET_FOCUS event.
8c6791e4 3118 @event{EVT_KILL_FOCUS(func)}
3051a44a 3119 Process a @c wxEVT_KILL_FOCUS event.
42013f4c 3120 @endEventTable
7c913512 3121
23324ae1
FM
3122 @library{wxcore}
3123 @category{events}
7c913512 3124
3e083d65 3125 @see @ref overview_events
23324ae1 3126*/
42013f4c 3127class wxFocusEvent : public wxEvent
23324ae1
FM
3128{
3129public:
23324ae1
FM
3130 /**
3131 Constructor.
3132 */
42013f4c 3133 wxFocusEvent(wxEventType eventType = wxEVT_NULL, int id = 0);
23324ae1
FM
3134
3135 /**
42013f4c
FM
3136 Returns the window associated with this event, that is the window which had the
3137 focus before for the @c wxEVT_SET_FOCUS event and the window which is
3138 going to receive focus for the @c wxEVT_KILL_FOCUS one.
23324ae1 3139
42013f4c 3140 Warning: the window pointer may be @NULL!
23324ae1 3141 */
42013f4c 3142 wxWindow *GetWindow() const;
a90e69f7
RD
3143
3144 void SetWindow(wxWindow *win);
42013f4c 3145};
23324ae1 3146
23324ae1 3147
23324ae1 3148
42013f4c
FM
3149/**
3150 @class wxChildFocusEvent
23324ae1 3151
42013f4c
FM
3152 A child focus event is sent to a (parent-)window when one of its child windows
3153 gains focus, so that the window could restore the focus back to its corresponding
3154 child if it loses it now and regains later.
23324ae1 3155
42013f4c 3156 Notice that child window is the direct child of the window receiving event.
57ab6f23 3157 Use wxWindow::FindFocus() to retrieve the window which is actually getting focus.
42013f4c
FM
3158
3159 @beginEventTable{wxChildFocusEvent}
8c6791e4 3160 @event{EVT_CHILD_FOCUS(func)}
3051a44a 3161 Process a @c wxEVT_CHILD_FOCUS event.
42013f4c
FM
3162 @endEventTable
3163
3164 @library{wxcore}
3165 @category{events}
23324ae1 3166
3e083d65 3167 @see @ref overview_events
42013f4c
FM
3168*/
3169class wxChildFocusEvent : public wxCommandEvent
3170{
3171public:
23324ae1 3172 /**
42013f4c
FM
3173 Constructor.
3174
3175 @param win
3176 The direct child which is (or which contains the window which is) receiving
3177 the focus.
23324ae1 3178 */
42013f4c 3179 wxChildFocusEvent(wxWindow* win = NULL);
23324ae1
FM
3180
3181 /**
42013f4c
FM
3182 Returns the direct child which receives the focus, or a (grand-)parent of the
3183 control receiving the focus.
3184
3185 To get the actually focused control use wxWindow::FindFocus.
23324ae1 3186 */
42013f4c 3187 wxWindow *GetWindow() const;
23324ae1
FM
3188};
3189
3190
e54c96f1 3191
23324ae1 3192/**
42013f4c 3193 @class wxMouseCaptureLostEvent
7c913512 3194
0af4bd16
VZ
3195 A mouse capture lost event is sent to a window that had obtained mouse capture,
3196 which was subsequently lost due to an "external" event (for example, when a dialog
3197 box is shown or if another application captures the mouse).
42013f4c 3198
0af4bd16 3199 If this happens, this event is sent to all windows that are on the capture stack
42013f4c
FM
3200 (i.e. called CaptureMouse, but didn't call ReleaseMouse yet). The event is
3201 not sent if the capture changes because of a call to CaptureMouse or
3202 ReleaseMouse.
3203
3204 This event is currently emitted under Windows only.
3205
3206 @beginEventTable{wxMouseCaptureLostEvent}
8c6791e4 3207 @event{EVT_MOUSE_CAPTURE_LOST(func)}
3051a44a 3208 Process a @c wxEVT_MOUSE_CAPTURE_LOST event.
42013f4c 3209 @endEventTable
7c913512 3210
42013f4c 3211 @onlyfor{wxmsw}
7c913512 3212
23324ae1
FM
3213 @library{wxcore}
3214 @category{events}
7c913512 3215
3e083d65 3216 @see wxMouseCaptureChangedEvent, @ref overview_events,
3051a44a 3217 wxWindow::CaptureMouse, wxWindow::ReleaseMouse, wxWindow::GetCapture
23324ae1 3218*/
42013f4c 3219class wxMouseCaptureLostEvent : public wxEvent
23324ae1
FM
3220{
3221public:
3222 /**
3223 Constructor.
3224 */
42013f4c 3225 wxMouseCaptureLostEvent(wxWindowID windowId = 0);
23324ae1
FM
3226};
3227
3228
e54c96f1 3229
a90e69f7
RD
3230class wxDisplayChangedEvent : public wxEvent
3231{
3232public:
3233 wxDisplayChangedEvent();
3234};
3235
3236
3237class wxPaletteChangedEvent : public wxEvent
3238{
3239public:
3240 wxPaletteChangedEvent(wxWindowID winid = 0);
3241
3242 void SetChangedWindow(wxWindow* win);
3243 wxWindow* GetChangedWindow() const;
3244};
3245
3246
3247class wxQueryNewPaletteEvent : public wxEvent
3248{
3249public:
3250 wxQueryNewPaletteEvent(wxWindowID winid = 0);
3251
3252 void SetPaletteRealized(bool realized);
3253 bool GetPaletteRealized();
3254};
3255
3256
3257
3258
23324ae1 3259/**
42013f4c 3260 @class wxNotifyEvent
7c913512 3261
42013f4c 3262 This class is not used by the event handlers by itself, but is a base class
3e97a905 3263 for other event classes (such as wxBookCtrlEvent).
7c913512 3264
42013f4c
FM
3265 It (or an object of a derived class) is sent when the controls state is being
3266 changed and allows the program to wxNotifyEvent::Veto() this change if it wants
3267 to prevent it from happening.
7c913512 3268
23324ae1
FM
3269 @library{wxcore}
3270 @category{events}
7c913512 3271
3e97a905 3272 @see wxBookCtrlEvent
23324ae1 3273*/
42013f4c 3274class wxNotifyEvent : public wxCommandEvent
23324ae1
FM
3275{
3276public:
3277 /**
42013f4c 3278 Constructor (used internally by wxWidgets only).
23324ae1 3279 */
42013f4c 3280 wxNotifyEvent(wxEventType eventType = wxEVT_NULL, int id = 0);
23324ae1
FM
3281
3282 /**
42013f4c
FM
3283 This is the opposite of Veto(): it explicitly allows the event to be processed.
3284 For most events it is not necessary to call this method as the events are allowed
3285 anyhow but some are forbidden by default (this will be mentioned in the corresponding
3286 event description).
23324ae1 3287 */
42013f4c 3288 void Allow();
23324ae1
FM
3289
3290 /**
42013f4c
FM
3291 Returns @true if the change is allowed (Veto() hasn't been called) or @false
3292 otherwise (if it was).
23324ae1 3293 */
42013f4c 3294 bool IsAllowed() const;
23324ae1
FM
3295
3296 /**
42013f4c 3297 Prevents the change announced by this event from happening.
23324ae1 3298
42013f4c
FM
3299 It is in general a good idea to notify the user about the reasons for vetoing
3300 the change because otherwise the applications behaviour (which just refuses to
3301 do what the user wants) might be quite surprising.
23324ae1 3302 */
42013f4c
FM
3303 void Veto();
3304};
3305
23324ae1 3306
d48b06bd
FM
3307/**
3308 @class wxThreadEvent
23324ae1 3309
5d4a0504
VZ
3310 This class adds some simple functionality to wxEvent to facilitate
3311 inter-thread communication.
23324ae1 3312
5d4a0504
VZ
3313 This event is not natively emitted by any control/class: it is just
3314 a helper class for the user.
3a567740 3315 Its most important feature is the GetEventCategory() implementation which
5d4a0504 3316 allows thread events @b NOT to be processed by wxEventLoopBase::YieldFor calls
3a567740
FM
3317 (unless the @c wxEVT_CATEGORY_THREAD is specified - which is never in wx code).
3318
d48b06bd 3319 @library{wxcore}
3c99e2fd 3320 @category{events,threading}
d48b06bd 3321
dde19c21 3322 @see @ref overview_thread, wxEventLoopBase::YieldFor
c1b293bb
VS
3323
3324 @since 2.9.0
d48b06bd 3325*/
c1b293bb 3326class wxThreadEvent : public wxEvent
42013f4c 3327{
d48b06bd
FM
3328public:
3329 /**
3330 Constructor.
d48b06bd 3331 */
c1b293bb 3332 wxThreadEvent(wxEventType eventType = wxEVT_THREAD, int id = wxID_ANY);
23324ae1 3333
d48b06bd
FM
3334 /**
3335 Clones this event making sure that all internal members which use
3336 COW (only @c m_commandString for now; see @ref overview_refcount)
3337 are unshared (see wxObject::UnShare).
3338 */
3339 virtual wxEvent *Clone() const;
3340
3341 /**
3342 Returns @c wxEVT_CATEGORY_THREAD.
3343
74d60f66 3344 This is important to avoid unwanted processing of thread events
dde19c21 3345 when calling wxEventLoopBase::YieldFor().
d48b06bd
FM
3346 */
3347 virtual wxEventCategory GetEventCategory() const;
dae60aee
VS
3348
3349 /**
3350 Sets custom data payload.
3351
3352 The @a payload argument may be of any type that wxAny can handle
3353 (i.e. pretty much anything). Note that T's copy constructor must be
3354 thread-safe, i.e. create a copy that doesn't share anything with
3355 the original (see Clone()).
3356
3357 @note This method is not available with Visual C++ 6.
3358
3359 @since 2.9.1
3360
3361 @see GetPayload(), wxAny
3362 */
3363 template<typename T>
3364 void SetPayload(const T& payload);
3365
3366 /**
3367 Get custom data payload.
3368
3369 Correct type is checked in debug builds.
3370
3371 @note This method is not available with Visual C++ 6.
3372
3373 @since 2.9.1
3374
3375 @see SetPayload(), wxAny
3376 */
3377 template<typename T>
3378 T GetPayload() const;
c1b293bb
VS
3379
3380 /**
3381 Returns extra information integer value.
3382 */
3383 long GetExtraLong() const;
3384
3385 /**
3386 Returns stored integer value.
3387 */
3388 int GetInt() const;
3389
3390 /**
3391 Returns stored string value.
3392 */
3393 wxString GetString() const;
3394
3395
3396 /**
3397 Sets the extra information value.
3398 */
3399 void SetExtraLong(long extraLong);
3400
3401 /**
3402 Sets the integer value.
3403 */
3404 void SetInt(int intCommand);
3405
3406 /**
3407 Sets the string value.
3408 */
3409 void SetString(const wxString& string);
42013f4c 3410};
e54c96f1 3411
d48b06bd 3412
23324ae1 3413/**
42013f4c 3414 @class wxHelpEvent
7c913512 3415
42013f4c
FM
3416 A help event is sent when the user has requested context-sensitive help.
3417 This can either be caused by the application requesting context-sensitive help mode
3418 via wxContextHelp, or (on MS Windows) by the system generating a WM_HELP message when
3419 the user pressed F1 or clicked on the query button in a dialog caption.
7c913512 3420
42013f4c
FM
3421 A help event is sent to the window that the user clicked on, and is propagated
3422 up the window hierarchy until the event is processed or there are no more event
3423 handlers.
3424
3425 The application should call wxEvent::GetId to check the identity of the
3426 clicked-on window, and then either show some suitable help or call wxEvent::Skip()
3427 if the identifier is unrecognised.
3428
3429 Calling Skip is important because it allows wxWidgets to generate further
3430 events for ancestors of the clicked-on window. Otherwise it would be impossible to
3431 show help for container windows, since processing would stop after the first window
3432 found.
3433
3434 @beginEventTable{wxHelpEvent}
8c6791e4 3435 @event{EVT_HELP(id, func)}
3051a44a 3436 Process a @c wxEVT_HELP event.
8c6791e4 3437 @event{EVT_HELP_RANGE(id1, id2, func)}
3051a44a 3438 Process a @c wxEVT_HELP event for a range of ids.
42013f4c 3439 @endEventTable
7c913512 3440
23324ae1
FM
3441 @library{wxcore}
3442 @category{events}
7c913512 3443
3e083d65 3444 @see wxContextHelp, wxDialog, @ref overview_events
23324ae1 3445*/
42013f4c 3446class wxHelpEvent : public wxCommandEvent
23324ae1
FM
3447{
3448public:
a44f3b5a
FM
3449 /**
3450 Indicates how a wxHelpEvent was generated.
3451 */
3452 enum Origin
3453 {
3454 Origin_Unknown, /**< unrecognized event source. */
3455 Origin_Keyboard, /**< event generated from F1 key press. */
3456
3457 /** event generated by wxContextHelp or from the [?] button on
3458 the title bar (Windows). */
3459 Origin_HelpButton
3460 };
3461
23324ae1
FM
3462 /**
3463 Constructor.
3464 */
42013f4c
FM
3465 wxHelpEvent(wxEventType type = wxEVT_NULL,
3466 wxWindowID winid = 0,
3467 const wxPoint& pt = wxDefaultPosition,
a44f3b5a 3468 wxHelpEvent::Origin origin = Origin_Unknown);
42013f4c
FM
3469
3470 /**
8c6471af 3471 Returns the origin of the help event which is one of the wxHelpEvent::Origin
42013f4c
FM
3472 values.
3473
3474 The application may handle events generated using the keyboard or mouse
3475 differently, e.g. by using wxGetMousePosition() for the mouse events.
3476
3477 @see SetOrigin()
3478 */
43c48e1e 3479 wxHelpEvent::Origin GetOrigin() const;
23324ae1
FM
3480
3481 /**
42013f4c
FM
3482 Returns the left-click position of the mouse, in screen coordinates.
3483 This allows the application to position the help appropriately.
23324ae1 3484 */
42013f4c 3485 const wxPoint& GetPosition() const;
23324ae1
FM
3486
3487 /**
42013f4c
FM
3488 Set the help event origin, only used internally by wxWidgets normally.
3489
3490 @see GetOrigin()
23324ae1 3491 */
43c48e1e 3492 void SetOrigin(wxHelpEvent::Origin origin);
23324ae1
FM
3493
3494 /**
42013f4c 3495 Sets the left-click position of the mouse, in screen coordinates.
23324ae1 3496 */
42013f4c 3497 void SetPosition(const wxPoint& pt);
23324ae1
FM
3498};
3499
3500
e54c96f1 3501
23324ae1 3502/**
42013f4c 3503 @class wxScrollEvent
7c913512 3504
42013f4c
FM
3505 A scroll event holds information about events sent from stand-alone
3506 scrollbars (see wxScrollBar) and sliders (see wxSlider).
7c913512 3507
42013f4c
FM
3508 Note that scrolled windows send the wxScrollWinEvent which does not derive from
3509 wxCommandEvent, but from wxEvent directly - don't confuse these two kinds of
3510 events and use the event table macros mentioned below only for the scrollbar-like
3511 controls.
7c913512 3512
3a74a290 3513 @section scrollevent_diff The difference between EVT_SCROLL_THUMBRELEASE and EVT_SCROLL_CHANGED
7c913512 3514
42013f4c
FM
3515 The EVT_SCROLL_THUMBRELEASE event is only emitted when actually dragging the thumb
3516 using the mouse and releasing it (This EVT_SCROLL_THUMBRELEASE event is also followed
3517 by an EVT_SCROLL_CHANGED event).
7c913512 3518
42013f4c
FM
3519 The EVT_SCROLL_CHANGED event also occurs when using the keyboard to change the thumb
3520 position, and when clicking next to the thumb (In all these cases the EVT_SCROLL_THUMBRELEASE
3521 event does not happen).
7c913512 3522
42013f4c
FM
3523 In short, the EVT_SCROLL_CHANGED event is triggered when scrolling/ moving has finished
3524 independently of the way it had started. Please see the widgets sample ("Slider" page)
3525 to see the difference between EVT_SCROLL_THUMBRELEASE and EVT_SCROLL_CHANGED in action.
3526
3527 @remarks
3528 Note that unless specifying a scroll control identifier, you will need to test for scrollbar
3529 orientation with wxScrollEvent::GetOrientation, since horizontal and vertical scroll events
3530 are processed using the same event handler.
3531
3532 @beginEventTable{wxScrollEvent}
3533 You can use EVT_COMMAND_SCROLL... macros with window IDs for when intercepting
3534 scroll events from controls, or EVT_SCROLL... macros without window IDs for
3535 intercepting scroll events from the receiving window -- except for this, the
3536 macros behave exactly the same.
8c6791e4 3537 @event{EVT_SCROLL(func)}
42013f4c 3538 Process all scroll events.
8c6791e4 3539 @event{EVT_SCROLL_TOP(func)}
3a194bda 3540 Process @c wxEVT_SCROLL_TOP scroll-to-top events (minimum position).
8c6791e4 3541 @event{EVT_SCROLL_BOTTOM(func)}
3a194bda 3542 Process @c wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position).
8c6791e4 3543 @event{EVT_SCROLL_LINEUP(func)}
3a194bda 3544 Process @c wxEVT_SCROLL_LINEUP line up events.
8c6791e4 3545 @event{EVT_SCROLL_LINEDOWN(func)}
3a194bda 3546 Process @c wxEVT_SCROLL_LINEDOWN line down events.
8c6791e4 3547 @event{EVT_SCROLL_PAGEUP(func)}
3a194bda 3548 Process @c wxEVT_SCROLL_PAGEUP page up events.
8c6791e4 3549 @event{EVT_SCROLL_PAGEDOWN(func)}
3a194bda 3550 Process @c wxEVT_SCROLL_PAGEDOWN page down events.
8c6791e4 3551 @event{EVT_SCROLL_THUMBTRACK(func)}
3a194bda 3552 Process @c wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent as the
42013f4c 3553 user drags the thumbtrack).
8c6791e4 3554 @event{EVT_SCROLL_THUMBRELEASE(func)}
3a194bda 3555 Process @c wxEVT_SCROLL_THUMBRELEASE thumb release events.
8c6791e4 3556 @event{EVT_SCROLL_CHANGED(func)}
3a194bda 3557 Process @c wxEVT_SCROLL_CHANGED end of scrolling events (MSW only).
8c6791e4 3558 @event{EVT_COMMAND_SCROLL(id, func)}
42013f4c 3559 Process all scroll events.
8c6791e4 3560 @event{EVT_COMMAND_SCROLL_TOP(id, func)}
3a194bda 3561 Process @c wxEVT_SCROLL_TOP scroll-to-top events (minimum position).
8c6791e4 3562 @event{EVT_COMMAND_SCROLL_BOTTOM(id, func)}
3a194bda 3563 Process @c wxEVT_SCROLL_BOTTOM scroll-to-bottom events (maximum position).
8c6791e4 3564 @event{EVT_COMMAND_SCROLL_LINEUP(id, func)}
3a194bda 3565 Process @c wxEVT_SCROLL_LINEUP line up events.
8c6791e4 3566 @event{EVT_COMMAND_SCROLL_LINEDOWN(id, func)}
3a194bda 3567 Process @c wxEVT_SCROLL_LINEDOWN line down events.
8c6791e4 3568 @event{EVT_COMMAND_SCROLL_PAGEUP(id, func)}
3a194bda 3569 Process @c wxEVT_SCROLL_PAGEUP page up events.
8c6791e4 3570 @event{EVT_COMMAND_SCROLL_PAGEDOWN(id, func)}
3a194bda 3571 Process @c wxEVT_SCROLL_PAGEDOWN page down events.
8c6791e4 3572 @event{EVT_COMMAND_SCROLL_THUMBTRACK(id, func)}
3a194bda 3573 Process @c wxEVT_SCROLL_THUMBTRACK thumbtrack events (frequent events sent
42013f4c 3574 as the user drags the thumbtrack).
8c6791e4 3575 @event{EVT_COMMAND_SCROLL_THUMBRELEASE(func)}
3a194bda 3576 Process @c wxEVT_SCROLL_THUMBRELEASE thumb release events.
8c6791e4 3577 @event{EVT_COMMAND_SCROLL_CHANGED(func)}
3a194bda 3578 Process @c wxEVT_SCROLL_CHANGED end of scrolling events (MSW only).
42013f4c 3579 @endEventTable
7c913512 3580
23324ae1 3581 @library{wxcore}
1f1d2182 3582 @category{events}
7c913512 3583
3e083d65 3584 @see wxScrollBar, wxSlider, wxSpinButton, wxScrollWinEvent, @ref overview_events
23324ae1 3585*/
42013f4c 3586class wxScrollEvent : public wxCommandEvent
23324ae1
FM
3587{
3588public:
3589 /**
42013f4c 3590 Constructor.
23324ae1 3591 */
42013f4c
FM
3592 wxScrollEvent(wxEventType commandType = wxEVT_NULL, int id = 0, int pos = 0,
3593 int orientation = 0);
23324ae1
FM
3594
3595 /**
42013f4c
FM
3596 Returns wxHORIZONTAL or wxVERTICAL, depending on the orientation of the
3597 scrollbar.
23324ae1 3598 */
42013f4c 3599 int GetOrientation() const;
23324ae1
FM
3600
3601 /**
42013f4c 3602 Returns the position of the scrollbar.
23324ae1 3603 */
42013f4c 3604 int GetPosition() const;
a90e69f7
RD
3605
3606
3607 void SetOrientation(int orient);
3608 void SetPosition(int pos);
23324ae1
FM
3609};
3610
551048c2
VZ
3611#endif // wxUSE_GUI
3612
3613#if wxUSE_BASE
3614
03e8dc0e
VZ
3615/**
3616 See wxIdleEvent::SetMode() for more info.
3617*/
3618enum wxIdleMode
3619{
3620 /** Send idle events to all windows */
3621 wxIDLE_PROCESS_ALL,
3622
3623 /** Send idle events to windows that have the wxWS_EX_PROCESS_IDLE flag specified */
3624 wxIDLE_PROCESS_SPECIFIED
3625};
3626
3627
3628/**
3629 @class wxIdleEvent
3630
3631 This class is used for idle events, which are generated when the system becomes
3632 idle. Note that, unless you do something specifically, the idle events are not
3633 sent if the system remains idle once it has become it, e.g. only a single idle
3634 event will be generated until something else resulting in more normal events
3635 happens and only then is the next idle event sent again.
3636
3637 If you need to ensure a continuous stream of idle events, you can either use
3638 wxIdleEvent::RequestMore method in your handler or call wxWakeUpIdle() periodically
3639 (for example from a timer event handler), but note that both of these approaches
3640 (and especially the first one) increase the system load and so should be avoided
3641 if possible.
3642
3643 By default, idle events are sent to all windows, including even the hidden
3644 ones because they may be shown if some condition is met from their @c
3645 wxEVT_IDLE (or related @c wxEVT_UPDATE_UI) handler. The children of hidden
3646 windows do not receive idle events however as they can't change their state
3647 in any way noticeable by the user. Finally, the global wxApp object also
3648 receives these events, as usual, so it can be used for any global idle time
3649 processing.
3650
3651 If sending idle events to all windows is causing a significant overhead in
3652 your application, you can call wxIdleEvent::SetMode with the value
3653 wxIDLE_PROCESS_SPECIFIED, and set the wxWS_EX_PROCESS_IDLE extra window
3654 style for every window which should receive idle events, all the other ones
3655 will not receive them in this case.
3656
3657 @beginEventTable{wxIdleEvent}
3658 @event{EVT_IDLE(func)}
3659 Process a @c wxEVT_IDLE event.
3660 @endEventTable
3661
3662 @library{wxbase}
3663 @category{events}
3664
3665 @section sec_delayed_action Delayed Action Mechanism
3666
3667 wxIdleEvent can be used to perform some action "at slightly later time".
3668 This can be necessary in several circumstances when, for whatever reason,
3669 something can't be done in the current event handler. For example, if a
3670 mouse event handler is called with the mouse button pressed, the mouse can
3671 be currently captured and some operations with it -- notably capturing it
3672 again -- might be impossible or lead to undesirable results. If you still
3673 want to capture it, you can do it from @c wxEVT_IDLE handler when it is
3674 called the next time instead of doing it immediately.
3675
3676 This can be achieved in two different ways: when using static event tables,
3677 you will need a flag indicating to the (always connected) idle event
3678 handler whether the desired action should be performed. The originally
3679 called handler would then set it to indicate that it should indeed be done
3680 and the idle handler itself would reset it to prevent it from doing the
3681 same action again.
3682
3683 Using dynamically connected event handlers things are even simpler as the
3684 original event handler can simply wxEvtHandler::Connect() or
3685 wxEvtHandler::Bind() the idle event handler which would only be executed
3686 then and could wxEvtHandler::Disconnect() or wxEvtHandler::Unbind() itself.
3687
3688
3689 @see @ref overview_events, wxUpdateUIEvent, wxWindow::OnInternalIdle
3690*/
3691class wxIdleEvent : public wxEvent
3692{
3693public:
3694 /**
3695 Constructor.
3696 */
3697 wxIdleEvent();
3698
3699 /**
3700 Static function returning a value specifying how wxWidgets will send idle
3701 events: to all windows, or only to those which specify that they
3702 will process the events.
3703
3704 @see SetMode().
3705 */
3706 static wxIdleMode GetMode();
3707
3708 /**
3709 Returns @true if the OnIdle function processing this event requested more
3710 processing time.
3711
3712 @see RequestMore()
3713 */
3714 bool MoreRequested() const;
3715
3716 /**
3717 Tells wxWidgets that more processing is required.
3718
3719 This function can be called by an OnIdle handler for a window or window event
3720 handler to indicate that wxApp::OnIdle should forward the OnIdle event once
3721 more to the application windows.
3722
3723 If no window calls this function during OnIdle, then the application will
3724 remain in a passive event loop (not calling OnIdle) until a new event is
3725 posted to the application by the windowing system.
3726
3727 @see MoreRequested()
3728 */
3729 void RequestMore(bool needMore = true);
3730
3731 /**
3732 Static function for specifying how wxWidgets will send idle events: to
3733 all windows, or only to those which specify that they will process the events.
3734
3735 @param mode
3736 Can be one of the ::wxIdleMode values.
3737 The default is wxIDLE_PROCESS_ALL.
3738 */
3739 static void SetMode(wxIdleMode mode);
3740};
23324ae1 3741
551048c2 3742#endif // wxUSE_BASE
3c4f71cc 3743
551048c2 3744#if wxUSE_GUI
23324ae1 3745
42013f4c
FM
3746/**
3747 @class wxInitDialogEvent
3c4f71cc 3748
42013f4c
FM
3749 A wxInitDialogEvent is sent as a dialog or panel is being initialised.
3750 Handlers for this event can transfer data to the window.
23324ae1 3751
42013f4c 3752 The default handler calls wxWindow::TransferDataToWindow.
3c4f71cc 3753
42013f4c 3754 @beginEventTable{wxInitDialogEvent}
8c6791e4 3755 @event{EVT_INIT_DIALOG(func)}
3051a44a 3756 Process a @c wxEVT_INIT_DIALOG event.
42013f4c
FM
3757 @endEventTable
3758
3759 @library{wxcore}
3760 @category{events}
23324ae1 3761
3e083d65 3762 @see @ref overview_events
42013f4c
FM
3763*/
3764class wxInitDialogEvent : public wxEvent
3765{
3766public:
23324ae1 3767 /**
42013f4c
FM
3768 Constructor.
3769 */
3770 wxInitDialogEvent(int id = 0);
3771};
3c4f71cc 3772
3c4f71cc 3773
3c4f71cc 3774
42013f4c
FM
3775/**
3776 @class wxWindowDestroyEvent
3c4f71cc 3777
a79a6671
VZ
3778 This event is sent as early as possible during the window destruction
3779 process.
3780
3781 For the top level windows, as early as possible means that this is done by
3782 wxFrame or wxDialog destructor, i.e. after the destructor of the derived
3783 class was executed and so any methods specific to the derived class can't
3784 be called any more from this event handler. If you need to do this, you
3785 must call wxWindow::SendDestroyEvent() from your derived class destructor.
23324ae1 3786
a79a6671
VZ
3787 For the child windows, this event is generated just before deleting the
3788 window from wxWindow::Destroy() (which is also called when the parent
3789 window is deleted) or from the window destructor if operator @c delete was
3790 used directly (which is not recommended for this very reason).
3c4f71cc 3791
a79a6671
VZ
3792 It is usually pointless to handle this event in the window itself but it ca
3793 be very useful to receive notifications about the window destruction in the
3794 parent window or in any other object interested in this window.
3c4f71cc 3795
42013f4c
FM
3796 @library{wxcore}
3797 @category{events}
3c4f71cc 3798
3e083d65 3799 @see @ref overview_events, wxWindowCreateEvent
42013f4c
FM
3800*/
3801class wxWindowDestroyEvent : public wxCommandEvent
3802{
3803public:
3804 /**
3805 Constructor.
23324ae1 3806 */
42013f4c 3807 wxWindowDestroyEvent(wxWindow* win = NULL);
a79a6671 3808
57ab6f23 3809 /// Return the window being destroyed.
a79a6671 3810 wxWindow *GetWindow() const;
42013f4c 3811};
23324ae1 3812
3c4f71cc 3813
42013f4c
FM
3814/**
3815 @class wxNavigationKeyEvent
3c4f71cc 3816
42013f4c
FM
3817 This event class contains information about navigation events,
3818 generated by navigation keys such as tab and page down.
23324ae1 3819
42013f4c
FM
3820 This event is mainly used by wxWidgets implementations.
3821 A wxNavigationKeyEvent handler is automatically provided by wxWidgets
90230407
VZ
3822 when you enable keyboard navigation inside a window by inheriting it from
3823 wxNavigationEnabled<>.
3c4f71cc 3824
42013f4c 3825 @beginEventTable{wxNavigationKeyEvent}
8c6791e4 3826 @event{EVT_NAVIGATION_KEY(func)}
42013f4c
FM
3827 Process a navigation key event.
3828 @endEventTable
3c4f71cc 3829
42013f4c
FM
3830 @library{wxcore}
3831 @category{events}
3c4f71cc 3832
42013f4c
FM
3833 @see wxWindow::Navigate, wxWindow::NavigateIn
3834*/
3835class wxNavigationKeyEvent : public wxEvent
3836{
3837public:
3051a44a
FM
3838 /**
3839 Flags which can be used with wxNavigationKeyEvent.
3840 */
3841 enum wxNavigationKeyEventFlags
3842 {
3843 IsBackward = 0x0000,
3844 IsForward = 0x0001,
3845 WinChange = 0x0002,
3846 FromTab = 0x0004
3847 };
3848
42013f4c
FM
3849 wxNavigationKeyEvent();
3850 wxNavigationKeyEvent(const wxNavigationKeyEvent& event);
23324ae1
FM
3851
3852 /**
42013f4c 3853 Returns the child that has the focus, or @NULL.
23324ae1 3854 */
42013f4c 3855 wxWindow* GetCurrentFocus() const;
23324ae1
FM
3856
3857 /**
42013f4c
FM
3858 Returns @true if the navigation was in the forward direction.
3859 */
3860 bool GetDirection() const;
3c4f71cc 3861
42013f4c
FM
3862 /**
3863 Returns @true if the navigation event was from a tab key.
3864 This is required for proper navigation over radio buttons.
3865 */
3866 bool IsFromTab() const;
3c4f71cc 3867
42013f4c
FM
3868 /**
3869 Returns @true if the navigation event represents a window change
3870 (for example, from Ctrl-Page Down in a notebook).
23324ae1 3871 */
42013f4c 3872 bool IsWindowChange() const;
23324ae1
FM
3873
3874 /**
42013f4c
FM
3875 Sets the current focus window member.
3876 */
3877 void SetCurrentFocus(wxWindow* currentFocus);
3c4f71cc 3878
42013f4c
FM
3879 /**
3880 Sets the direction to forward if @a direction is @true, or backward
3881 if @false.
3882 */
3883 void SetDirection(bool direction);
3c4f71cc 3884
42013f4c
FM
3885 /**
3886 Sets the flags for this event.
8c6471af
SL
3887 The @a flags can be a combination of the
3888 wxNavigationKeyEvent::wxNavigationKeyEventFlags values.
23324ae1 3889 */
42013f4c 3890 void SetFlags(long flags);
23324ae1
FM
3891
3892 /**
42013f4c
FM
3893 Marks the navigation event as from a tab key.
3894 */
3895 void SetFromTab(bool fromTab);
3c4f71cc 3896
42013f4c
FM
3897 /**
3898 Marks the event as a window change event.
23324ae1 3899 */
42013f4c 3900 void SetWindowChange(bool windowChange);
23324ae1
FM
3901};
3902
3903
e54c96f1 3904
23324ae1 3905/**
42013f4c 3906 @class wxMouseCaptureChangedEvent
7c913512 3907
42013f4c 3908 An mouse capture changed event is sent to a window that loses its
3051a44a 3909 mouse capture. This is called even if wxWindow::ReleaseMouse
42013f4c
FM
3910 was called by the application code. Handling this event allows
3911 an application to cater for unexpected capture releases which
3912 might otherwise confuse mouse handling code.
7c913512 3913
42013f4c
FM
3914 @onlyfor{wxmsw}
3915
3916 @beginEventTable{wxMouseCaptureChangedEvent}
8c6791e4 3917 @event{EVT_MOUSE_CAPTURE_CHANGED(func)}
3051a44a 3918 Process a @c wxEVT_MOUSE_CAPTURE_CHANGED event.
42013f4c 3919 @endEventTable
7c913512 3920
23324ae1
FM
3921 @library{wxcore}
3922 @category{events}
7c913512 3923
3e083d65 3924 @see wxMouseCaptureLostEvent, @ref overview_events,
3051a44a 3925 wxWindow::CaptureMouse, wxWindow::ReleaseMouse, wxWindow::GetCapture
23324ae1 3926*/
42013f4c 3927class wxMouseCaptureChangedEvent : public wxEvent
23324ae1
FM
3928{
3929public:
3930 /**
3931 Constructor.
3932 */
42013f4c
FM
3933 wxMouseCaptureChangedEvent(wxWindowID windowId = 0,
3934 wxWindow* gainedCapture = NULL);
23324ae1
FM
3935
3936 /**
42013f4c
FM
3937 Returns the window that gained the capture, or @NULL if it was a
3938 non-wxWidgets window.
23324ae1 3939 */
42013f4c 3940 wxWindow* GetCapturedWindow() const;
23324ae1
FM
3941};
3942
3943
e54c96f1 3944
23324ae1 3945/**
42013f4c 3946 @class wxCloseEvent
7c913512 3947
42013f4c
FM
3948 This event class contains information about window and session close events.
3949
3950 The handler function for EVT_CLOSE is called when the user has tried to close a
3951 a frame or dialog box using the window manager (X) or system menu (Windows).
3952 It can also be invoked by the application itself programmatically, for example by
3953 calling the wxWindow::Close function.
3954
3955 You should check whether the application is forcing the deletion of the window
3956 using wxCloseEvent::CanVeto. If this is @false, you @e must destroy the window
3957 using wxWindow::Destroy.
3958
3959 If the return value is @true, it is up to you whether you respond by destroying
3960 the window.
3961
3962 If you don't destroy the window, you should call wxCloseEvent::Veto to
3963 let the calling code know that you did not destroy the window.
3964 This allows the wxWindow::Close function to return @true or @false depending
3965 on whether the close instruction was honoured or not.
3966
195be56d
FM
3967 Example of a wxCloseEvent handler:
3968
3969 @code
3970 void MyFrame::OnClose(wxCloseEvent& event)
3971 {
3972 if ( event.CanVeto() && m_bFileNotSaved )
3973 {
3974 if ( wxMessageBox("The file has not been saved... continue closing?",
3975 "Please confirm",
3976 wxICON_QUESTION | wxYES_NO) != wxYES )
3977 {
3978 event.Veto();
3979 return;
3980 }
3981 }
3982
3983 Destroy(); // you may also do: event.Skip();
3984 // since the default event handler does call Destroy(), too
3985 }
3986 @endcode
3987
9fb99466
VZ
3988 The EVT_END_SESSION event is slightly different as it is sent by the system
3989 when the user session is ending (e.g. because of log out or shutdown) and
3990 so all windows are being forcefully closed. At least under MSW, after the
3991 handler for this event is executed the program is simply killed by the
3992 system. Because of this, the default handler for this event provided by
3993 wxWidgets calls all the usual cleanup code (including wxApp::OnExit()) so
3994 that it could still be executed and exit()s the process itself, without
3995 waiting for being killed. If this behaviour is for some reason undesirable,
3996 make sure that you define a handler for this event in your wxApp-derived
3997 class and do not call @c event.Skip() in it (but be aware that the system
3998 will still kill your application).
3999
42013f4c 4000 @beginEventTable{wxCloseEvent}
8c6791e4 4001 @event{EVT_CLOSE(func)}
869aa92d 4002 Process a @c wxEVT_CLOSE_WINDOW command event, supplying the member function.
42013f4c 4003 This event applies to wxFrame and wxDialog classes.
8c6791e4 4004 @event{EVT_QUERY_END_SESSION(func)}
869aa92d 4005 Process a @c wxEVT_QUERY_END_SESSION session event, supplying the member function.
9fb99466 4006 This event can be handled in wxApp-derived class only.
8c6791e4 4007 @event{EVT_END_SESSION(func)}
869aa92d 4008 Process a @c wxEVT_END_SESSION session event, supplying the member function.
9fb99466 4009 This event can be handled in wxApp-derived class only.
42013f4c 4010 @endEventTable
7c913512 4011
23324ae1
FM
4012 @library{wxcore}
4013 @category{events}
7c913512 4014
42013f4c 4015 @see wxWindow::Close, @ref overview_windowdeletion
23324ae1 4016*/
42013f4c 4017class wxCloseEvent : public wxEvent
23324ae1
FM
4018{
4019public:
4020 /**
4021 Constructor.
4022 */
42013f4c 4023 wxCloseEvent(wxEventType commandEventType = wxEVT_NULL, int id = 0);
23324ae1
FM
4024
4025 /**
42013f4c
FM
4026 Returns @true if you can veto a system shutdown or a window close event.
4027 Vetoing a window close event is not possible if the calling code wishes to
4028 force the application to exit, and so this function must be called to check this.
23324ae1 4029 */
42013f4c
FM
4030 bool CanVeto() const;
4031
4032 /**
4033 Returns @true if the user is just logging off or @false if the system is
4034 shutting down. This method can only be called for end session and query end
4035 session events, it doesn't make sense for close window event.
4036 */
4037 bool GetLoggingOff() const;
4038
4039 /**
4040 Sets the 'can veto' flag.
4041 */
4042 void SetCanVeto(bool canVeto);
4043
42013f4c
FM
4044 /**
4045 Sets the 'logging off' flag.
4046 */
4047 void SetLoggingOff(bool loggingOff);
4048
4049 /**
4050 Call this from your event handler to veto a system shutdown or to signal
4051 to the calling application that a window close did not happen.
4052
4053 You can only veto a shutdown if CanVeto() returns @true.
4054 */
4055 void Veto(bool veto = true);
23324ae1
FM
4056};
4057
4058
e54c96f1 4059
23324ae1 4060/**
42013f4c 4061 @class wxMenuEvent
7c913512 4062
42013f4c
FM
4063 This class is used for a variety of menu-related events. Note that
4064 these do not include menu command events, which are
4065 handled using wxCommandEvent objects.
7c913512 4066
b476cde6 4067 The default handler for @c wxEVT_MENU_HIGHLIGHT displays help
42013f4c 4068 text in the first field of the status bar.
7c913512 4069
42013f4c 4070 @beginEventTable{wxMenuEvent}
8c6791e4 4071 @event{EVT_MENU_OPEN(func)}
42013f4c
FM
4072 A menu is about to be opened. On Windows, this is only sent once for each
4073 navigation of the menubar (up until all menus have closed).
8c6791e4 4074 @event{EVT_MENU_CLOSE(func)}
42013f4c 4075 A menu has been just closed.
8c6791e4 4076 @event{EVT_MENU_HIGHLIGHT(id, func)}
42013f4c
FM
4077 The menu item with the specified id has been highlighted: used to show
4078 help prompts in the status bar by wxFrame
8c6791e4 4079 @event{EVT_MENU_HIGHLIGHT_ALL(func)}
42013f4c
FM
4080 A menu item has been highlighted, i.e. the currently selected menu item has changed.
4081 @endEventTable
7c913512 4082
42013f4c 4083 @library{wxcore}
23324ae1 4084 @category{events}
7c913512 4085
3e083d65 4086 @see wxCommandEvent, @ref overview_events
23324ae1 4087*/
42013f4c 4088class wxMenuEvent : public wxEvent
23324ae1
FM
4089{
4090public:
4091 /**
42013f4c 4092 Constructor.
23324ae1 4093 */
a90e69f7 4094 wxMenuEvent(wxEventType type = wxEVT_NULL, int id = 0, wxMenu* menu = NULL);
23324ae1
FM
4095
4096 /**
7f3f059a
VZ
4097 Returns the menu which is being opened or closed.
4098
4099 This method can only be used with the @c OPEN and @c CLOSE events.
4100
4101 The returned value is never @NULL in the ports implementing this
4102 function, which currently includes all the major ones.
23324ae1 4103 */
42013f4c 4104 wxMenu* GetMenu() const;
23324ae1
FM
4105
4106 /**
42013f4c
FM
4107 Returns the menu identifier associated with the event.
4108 This method should be only used with the @c HIGHLIGHT events.
23324ae1 4109 */
42013f4c 4110 int GetMenuId() const;
23324ae1
FM
4111
4112 /**
42013f4c
FM
4113 Returns @true if the menu which is being opened or closed is a popup menu,
4114 @false if it is a normal one.
23324ae1 4115
42013f4c 4116 This method should only be used with the @c OPEN and @c CLOSE events.
23324ae1 4117 */
42013f4c
FM
4118 bool IsPopup() const;
4119};
23324ae1 4120
d317fdeb
VZ
4121/**
4122 @class wxShowEvent
d317fdeb
VZ
4123
4124 An event being sent when the window is shown or hidden.
a183ec70
VZ
4125 The event is triggered by calls to wxWindow::Show(), and any user
4126 action showing a previously hidden window or vice versa (if allowed by
4127 the current platform and/or window manager).
4128 Notice that the event is not triggered when the application is iconized
4129 (minimized) or restored under wxMSW.
d317fdeb 4130
d317fdeb
VZ
4131 @onlyfor{wxmsw,wxgtk,wxos2}
4132
4133 @beginEventTable{wxShowEvent}
4134 @event{EVT_SHOW(func)}
3051a44a 4135 Process a @c wxEVT_SHOW event.
d317fdeb
VZ
4136 @endEventTable
4137
4138 @library{wxcore}
4139 @category{events}
4140
3e083d65 4141 @see @ref overview_events, wxWindow::Show,
d317fdeb
VZ
4142 wxWindow::IsShown
4143*/
4144
4145class wxShowEvent : public wxEvent
4146{
4147public:
4148 /**
4149 Constructor.
4150 */
4151 wxShowEvent(int winid = 0, bool show = false);
4152
4153 /**
4154 Set whether the windows was shown or hidden.
4155 */
4156 void SetShow(bool show);
4157
4158 /**
4159 Return @true if the window has been shown, @false if it has been
4160 hidden.
4161 */
4162 bool IsShown() const;
4163
4164 /**
4165 @deprecated This function is deprecated in favour of IsShown().
4166 */
4167 bool GetShow() const;
4168};
4169
4170
23324ae1 4171
42013f4c
FM
4172/**
4173 @class wxIconizeEvent
23324ae1 4174
42013f4c 4175 An event being sent when the frame is iconized (minimized) or restored.
23324ae1 4176
42013f4c 4177 Currently only wxMSW and wxGTK generate such events.
23324ae1 4178
42013f4c 4179 @onlyfor{wxmsw,wxgtk}
23324ae1 4180
42013f4c 4181 @beginEventTable{wxIconizeEvent}
8c6791e4 4182 @event{EVT_ICONIZE(func)}
3051a44a 4183 Process a @c wxEVT_ICONIZE event.
42013f4c 4184 @endEventTable
23324ae1 4185
42013f4c
FM
4186 @library{wxcore}
4187 @category{events}
23324ae1 4188
3e083d65 4189 @see @ref overview_events, wxTopLevelWindow::Iconize,
42013f4c
FM
4190 wxTopLevelWindow::IsIconized
4191*/
4192class wxIconizeEvent : public wxEvent
4193{
4194public:
23324ae1 4195 /**
42013f4c 4196 Constructor.
23324ae1 4197 */
42013f4c 4198 wxIconizeEvent(int id = 0, bool iconized = true);
23324ae1
FM
4199
4200 /**
42013f4c
FM
4201 Returns @true if the frame has been iconized, @false if it has been
4202 restored.
23324ae1 4203 */
d317fdeb
VZ
4204 bool IsIconized() const;
4205
4206 /**
4207 @deprecated This function is deprecated in favour of IsIconized().
4208 */
42013f4c
FM
4209 bool Iconized() const;
4210};
23324ae1 4211
23324ae1 4212
42013f4c
FM
4213
4214/**
4215 @class wxMoveEvent
42013f4c 4216
3051a44a 4217 A move event holds information about wxTopLevelWindow move change events.
42013f4c 4218
77211166
VZ
4219 These events are currently only generated by wxMSW port.
4220
42013f4c 4221 @beginEventTable{wxMoveEvent}
8c6791e4 4222 @event{EVT_MOVE(func)}
3051a44a 4223 Process a @c wxEVT_MOVE event, which is generated when a window is moved.
8c6791e4 4224 @event{EVT_MOVE_START(func)}
3051a44a 4225 Process a @c wxEVT_MOVE_START event, which is generated when the user starts
42013f4c 4226 to move or size a window. wxMSW only.
37fff49c
VZ
4227 @event{EVT_MOVING(func)}
4228 Process a @c wxEVT_MOVING event, which is generated while the user is
4229 moving the window. wxMSW only.
8c6791e4 4230 @event{EVT_MOVE_END(func)}
3051a44a 4231 Process a @c wxEVT_MOVE_END event, which is generated when the user stops
42013f4c
FM
4232 moving or sizing a window. wxMSW only.
4233 @endEventTable
4234
4235 @library{wxcore}
4236 @category{events}
4237
3e083d65 4238 @see wxPoint, @ref overview_events
42013f4c
FM
4239*/
4240class wxMoveEvent : public wxEvent
4241{
4242public:
23324ae1 4243 /**
42013f4c 4244 Constructor.
23324ae1 4245 */
42013f4c 4246 wxMoveEvent(const wxPoint& pt, int id = 0);
23324ae1
FM
4247
4248 /**
42013f4c 4249 Returns the position of the window generating the move change event.
23324ae1 4250 */
42013f4c 4251 wxPoint GetPosition() const;
a90e69f7
RD
4252
4253 wxRect GetRect() const;
4254 void SetRect(const wxRect& rect);
4255 void SetPosition(const wxPoint& pos);
23324ae1
FM
4256};
4257
4258
4259/**
4260 @class wxSizeEvent
7c913512 4261
3051a44a 4262 A size event holds information about size change events of wxWindow.
7c913512 4263
23324ae1 4264 The EVT_SIZE handler function will be called when the window has been resized.
7c913512 4265
42013f4c 4266 You may wish to use this for frames to resize their child windows as appropriate.
7c913512 4267
0ddf0ac6 4268 Note that the size passed is of the whole window: call wxWindow::GetClientSize()
42013f4c 4269 for the area which may be used by the application.
7c913512 4270
23324ae1 4271 When a window is resized, usually only a small part of the window is damaged
42013f4c
FM
4272 and you may only need to repaint that area. However, if your drawing depends on the
4273 size of the window, you may need to clear the DC explicitly and repaint the whole window.
4274 In which case, you may need to call wxWindow::Refresh to invalidate the entire window.
4275
b0162e32
SC
4276 @b Important : Sizers ( see @ref overview_sizer ) rely on size events to function
4277 correctly. Therefore, in a sizer-based layout, do not forget to call Skip on all
4278 size events you catch (and don't catch size events at all when you don't need to).
4279
42013f4c 4280 @beginEventTable{wxSizeEvent}
8c6791e4 4281 @event{EVT_SIZE(func)}
3051a44a 4282 Process a @c wxEVT_SIZE event.
42013f4c 4283 @endEventTable
7c913512 4284
23324ae1
FM
4285 @library{wxcore}
4286 @category{events}
7c913512 4287
3e083d65 4288 @see wxSize, @ref overview_events
23324ae1
FM
4289*/
4290class wxSizeEvent : public wxEvent
4291{
4292public:
4293 /**
4294 Constructor.
4295 */
4296 wxSizeEvent(const wxSize& sz, int id = 0);
4297
4298 /**
4299 Returns the entire size of the window generating the size change event.
0ddf0ac6
VZ
4300
4301 This is the new total size of the window, i.e. the same size as would
4302 be returned by wxWindow::GetSize() if it were called now. Use
4303 wxWindow::GetClientSize() if you catch this event in a top level window
4304 such as wxFrame to find the size available for the window contents.
23324ae1 4305 */
328f5751 4306 wxSize GetSize() const;
a90e69f7
RD
4307 void SetSize(wxSize size);
4308
4309 wxRect GetRect() const;
4310 void SetRect(wxRect rect);
23324ae1
FM
4311};
4312
4313
e54c96f1 4314
23324ae1
FM
4315/**
4316 @class wxSetCursorEvent
7c913512 4317
3051a44a
FM
4318 A wxSetCursorEvent is generated from wxWindow when the mouse cursor is about
4319 to be set as a result of mouse motion.
42013f4c
FM
4320
4321 This event gives the application the chance to perform specific mouse cursor
4322 processing based on the current position of the mouse within the window.
4323 Use wxSetCursorEvent::SetCursor to specify the cursor you want to be displayed.
4324
4325 @beginEventTable{wxSetCursorEvent}
8c6791e4 4326 @event{EVT_SET_CURSOR(func)}
3051a44a 4327 Process a @c wxEVT_SET_CURSOR event.
42013f4c 4328 @endEventTable
7c913512 4329
23324ae1 4330 @library{wxcore}
1f1d2182 4331 @category{events}
7c913512 4332
3497ab0e 4333 @see ::wxSetCursor, wxWindow::SetCursor
23324ae1
FM
4334*/
4335class wxSetCursorEvent : public wxEvent
4336{
4337public:
4338 /**
4339 Constructor, used by the library itself internally to initialize the event
4340 object.
4341 */
4342 wxSetCursorEvent(wxCoord x = 0, wxCoord y = 0);
4343
4344 /**
4345 Returns a reference to the cursor specified by this event.
4346 */
a6052817 4347 const wxCursor& GetCursor() const;
23324ae1
FM
4348
4349 /**
4350 Returns the X coordinate of the mouse in client coordinates.
4351 */
328f5751 4352 wxCoord GetX() const;
23324ae1
FM
4353
4354 /**
4355 Returns the Y coordinate of the mouse in client coordinates.
4356 */
328f5751 4357 wxCoord GetY() const;
23324ae1
FM
4358
4359 /**
4360 Returns @true if the cursor specified by this event is a valid cursor.
3c4f71cc 4361
23324ae1 4362 @remarks You cannot specify wxNullCursor with this event, as it is not
4cc4bfaf 4363 considered a valid cursor.
23324ae1 4364 */
328f5751 4365 bool HasCursor() const;
23324ae1
FM
4366
4367 /**
4368 Sets the cursor associated with this event.
4369 */
4370 void SetCursor(const wxCursor& cursor);
4371};
e54c96f1 4372
551048c2 4373#endif // wxUSE_GUI
39fb8056 4374
7fa7088e
BP
4375// ============================================================================
4376// Global functions/macros
4377// ============================================================================
4378
b21126db 4379/** @addtogroup group_funcmacro_events */
7fa7088e
BP
4380//@{
4381
551048c2
VZ
4382#if wxUSE_BASE
4383
03e8dc0e
VZ
4384/**
4385 A value uniquely identifying the type of the event.
4386
4387 The values of this type should only be created using wxNewEventType().
4388
4389 See the macro DEFINE_EVENT_TYPE() for more info.
4390
831e1028 4391 @see @ref overview_events
03e8dc0e
VZ
4392*/
4393typedef int wxEventType;
4394
4395/**
4396 A special event type usually used to indicate that some wxEvent has yet
4397 no type assigned.
4398*/
4399wxEventType wxEVT_NULL;
4400
4401wxEventType wxEVT_ANY;
4402
4403/**
4404 Generates a new unique event type.
4405
4406 Usually this function is only used by wxDEFINE_EVENT() and not called
4407 directly.
4408*/
4409wxEventType wxNewEventType();
4410
4411/**
4412 Define a new event type associated with the specified event class.
4413
4414 This macro defines a new unique event type @a name associated with the
4415 event class @a cls.
4416
4417 For example:
4418 @code
4419 wxDEFINE_EVENT(MY_COMMAND_EVENT, wxCommandEvent);
4420
4421 class MyCustomEvent : public wxEvent { ... };
4422 wxDEFINE_EVENT(MY_CUSTOM_EVENT, MyCustomEvent);
4423 @endcode
4424
4425 @see wxDECLARE_EVENT(), @ref overview_events_custom
4426 */
4427#define wxDEFINE_EVENT(name, cls) \
4428 const wxEventTypeTag< cls > name(wxNewEventType())
4429
4430/**
4431 Declares a custom event type.
4432
4433 This macro declares a variable called @a name which must be defined
4434 elsewhere using wxDEFINE_EVENT().
4435
4436 The class @a cls must be the wxEvent-derived class associated with the
4437 events of this type and its full declaration must be visible from the point
4438 of use of this macro.
4439
4440 For example:
4441 @code
4442 wxDECLARE_EVENT(MY_COMMAND_EVENT, wxCommandEvent);
4443
4444 class MyCustomEvent : public wxEvent { ... };
4445 wxDECLARE_EVENT(MY_CUSTOM_EVENT, MyCustomEvent);
4446 @endcode
4447 */
4448#define wxDECLARE_EVENT(name, cls) \
4449 wxDECLARE_EXPORTED_EVENT(wxEMPTY_PARAMETER_VALUE, name, cls)
4450
4451/**
4452 Variant of wxDECLARE_EVENT() used for event types defined inside a shared
4453 library.
4454
4455 This is mostly used by wxWidgets internally, e.g.
4456 @code
ce7fe42e 4457 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE, wxEVT_BUTTON, wxCommandEvent)
03e8dc0e
VZ
4458 @endcode
4459 */
4460#define wxDECLARE_EXPORTED_EVENT( expdecl, name, cls ) \
4461 extern const expdecl wxEventTypeTag< cls > name;
4462
4463/**
4464 Helper macro for definition of custom event table macros.
4465
4466 This macro must only be used if wxEVENTS_COMPATIBILITY_2_8 is 1, otherwise
4467 it is better and more clear to just use the address of the function
4468 directly as this is all this macro does in this case. However it needs to
4469 explicitly cast @a func to @a functype, which is the type of wxEvtHandler
4470 member function taking the custom event argument when
4471 wxEVENTS_COMPATIBILITY_2_8 is 0.
4472
4473 See wx__DECLARE_EVT0 for an example of use.
4474
4475 @see @ref overview_events_custom_ownclass
4476 */
4477#define wxEVENT_HANDLER_CAST(functype, func) (&func)
4478
4479/**
4480 This macro is used to define event table macros for handling custom
4481 events.
4482
4483 Example of use:
4484 @code
4485 class MyEvent : public wxEvent { ... };
4486
4487 // note that this is not necessary unless using old compilers: for the
4488 // reasonably new ones just use &func instead of MyEventHandler(func)
4489 typedef void (wxEvtHandler::*MyEventFunction)(MyEvent&);
4490 #define MyEventHandler(func) wxEVENT_HANDLER_CAST(MyEventFunction, func)
4491
4492 wxDEFINE_EVENT(MY_EVENT_TYPE, MyEvent);
4493
4494 #define EVT_MY(id, func) \
4495 wx__DECLARE_EVT1(MY_EVENT_TYPE, id, MyEventHandler(func))
4496
4497 ...
4498
4499 wxBEGIN_EVENT_TABLE(MyFrame, wxFrame)
4500 EVT_MY(wxID_ANY, MyFrame::OnMyEvent)
4501 wxEND_EVENT_TABLE()
4502 @endcode
4503
4504 @param evt
4505 The event type to handle.
4506 @param id
4507 The identifier of events to handle.
4508 @param fn
4509 The event handler method.
4510 */
4511#define wx__DECLARE_EVT1(evt, id, fn) \
4512 wx__DECLARE_EVT2(evt, id, wxID_ANY, fn)
4513
4514/**
4515 Generalized version of the wx__DECLARE_EVT1() macro taking a range of
4516 IDs instead of a single one.
4517 Argument @a id1 is the first identifier of the range, @a id2 is the
4518 second identifier of the range.
4519*/
4520#define wx__DECLARE_EVT2(evt, id1, id2, fn) \
4521 DECLARE_EVENT_TABLE_ENTRY(evt, id1, id2, fn, NULL),
4522
4523/**
4524 Simplified version of the wx__DECLARE_EVT1() macro, to be used when the
4525 event type must be handled regardless of the ID associated with the
4526 specific event instances.
4527*/
4528#define wx__DECLARE_EVT0(evt, fn) \
4529 wx__DECLARE_EVT1(evt, wxID_ANY, fn)
4530
4531/**
4532 Use this macro inside a class declaration to declare a @e static event table
4533 for that class.
4534
4535 In the implementation file you'll need to use the wxBEGIN_EVENT_TABLE()
4536 and the wxEND_EVENT_TABLE() macros, plus some additional @c EVT_xxx macro
4537 to capture events.
4538
4539 Note that this macro requires a final semicolon.
4540
4541 @see @ref overview_events_eventtables
4542*/
4543#define wxDECLARE_EVENT_TABLE()
4544
4545/**
4546 Use this macro in a source file to start listing @e static event handlers
4547 for a specific class.
4548
4549 Use wxEND_EVENT_TABLE() to terminate the event-declaration block.
4550
4551 @see @ref overview_events_eventtables
4552*/
4553#define wxBEGIN_EVENT_TABLE(theClass, baseClass)
4554
4555/**
4556 Use this macro in a source file to end listing @e static event handlers
4557 for a specific class.
4558
4559 Use wxBEGIN_EVENT_TABLE() to start the event-declaration block.
4560
4561 @see @ref overview_events_eventtables
4562*/
4563#define wxEND_EVENT_TABLE()
4564
4565/**
4566 In a GUI application, this function posts @a event to the specified @e dest
4567 object using wxEvtHandler::AddPendingEvent().
4568
4569 Otherwise, it dispatches @a event immediately using
4570 wxEvtHandler::ProcessEvent(). See the respective documentation for details
4571 (and caveats). Because of limitation of wxEvtHandler::AddPendingEvent()
4572 this function is not thread-safe for event objects having wxString fields,
4573 use wxQueueEvent() instead.
4574
4575 @header{wx/event.h}
4576*/
4577void wxPostEvent(wxEvtHandler* dest, const wxEvent& event);
4578
4579/**
4580 Queue an event for processing on the given object.
4581
4582 This is a wrapper around wxEvtHandler::QueueEvent(), see its documentation
4583 for more details.
4584
4585 @header{wx/event.h}
4586
4587 @param dest
4588 The object to queue the event on, can't be @c NULL.
4589 @param event
4590 The heap-allocated and non-@c NULL event to queue, the function takes
4591 ownership of it.
4592 */
4593void wxQueueEvent(wxEvtHandler* dest, wxEvent *event);
4594
551048c2 4595#endif // wxUSE_BASE
03e8dc0e 4596
551048c2 4597#if wxUSE_GUI
a90e69f7 4598
ce7fe42e
VZ
4599wxEventType wxEVT_BUTTON;
4600wxEventType wxEVT_CHECKBOX;
4601wxEventType wxEVT_CHOICE;
4602wxEventType wxEVT_LISTBOX;
4603wxEventType wxEVT_LISTBOX_DCLICK;
4604wxEventType wxEVT_CHECKLISTBOX;
4605wxEventType wxEVT_MENU;
4606wxEventType wxEVT_SLIDER;
4607wxEventType wxEVT_RADIOBOX;
4608wxEventType wxEVT_RADIOBUTTON;
4609wxEventType wxEVT_SCROLLBAR;
4610wxEventType wxEVT_VLBOX;
4611wxEventType wxEVT_COMBOBOX;
4612wxEventType wxEVT_TOOL_RCLICKED;
4613wxEventType wxEVT_TOOL_DROPDOWN;
4614wxEventType wxEVT_TOOL_ENTER;
4615wxEventType wxEVT_COMBOBOX_DROPDOWN;
4616wxEventType wxEVT_COMBOBOX_CLOSEUP;
c1b293bb 4617wxEventType wxEVT_THREAD;
a90e69f7
RD
4618wxEventType wxEVT_LEFT_DOWN;
4619wxEventType wxEVT_LEFT_UP;
4620wxEventType wxEVT_MIDDLE_DOWN;
4621wxEventType wxEVT_MIDDLE_UP;
4622wxEventType wxEVT_RIGHT_DOWN;
4623wxEventType wxEVT_RIGHT_UP;
4624wxEventType wxEVT_MOTION;
4625wxEventType wxEVT_ENTER_WINDOW;
4626wxEventType wxEVT_LEAVE_WINDOW;
4627wxEventType wxEVT_LEFT_DCLICK;
4628wxEventType wxEVT_MIDDLE_DCLICK;
4629wxEventType wxEVT_RIGHT_DCLICK;
4630wxEventType wxEVT_SET_FOCUS;
4631wxEventType wxEVT_KILL_FOCUS;
4632wxEventType wxEVT_CHILD_FOCUS;
4633wxEventType wxEVT_MOUSEWHEEL;
4634wxEventType wxEVT_AUX1_DOWN;
4635wxEventType wxEVT_AUX1_UP;
4636wxEventType wxEVT_AUX1_DCLICK;
4637wxEventType wxEVT_AUX2_DOWN;
4638wxEventType wxEVT_AUX2_UP;
4639wxEventType wxEVT_AUX2_DCLICK;
4640wxEventType wxEVT_CHAR;
4641wxEventType wxEVT_CHAR_HOOK;
4642wxEventType wxEVT_NAVIGATION_KEY;
4643wxEventType wxEVT_KEY_DOWN;
4644wxEventType wxEVT_KEY_UP;
4645wxEventType wxEVT_HOTKEY;
4646wxEventType wxEVT_SET_CURSOR;
4647wxEventType wxEVT_SCROLL_TOP;
4648wxEventType wxEVT_SCROLL_BOTTOM;
4649wxEventType wxEVT_SCROLL_LINEUP;
4650wxEventType wxEVT_SCROLL_LINEDOWN;
4651wxEventType wxEVT_SCROLL_PAGEUP;
4652wxEventType wxEVT_SCROLL_PAGEDOWN;
4653wxEventType wxEVT_SCROLL_THUMBTRACK;
4654wxEventType wxEVT_SCROLL_THUMBRELEASE;
4655wxEventType wxEVT_SCROLL_CHANGED;
4656wxEventType wxEVT_SPIN_UP;
4657wxEventType wxEVT_SPIN_DOWN;
4658wxEventType wxEVT_SPIN;
4659wxEventType wxEVT_SCROLLWIN_TOP;
4660wxEventType wxEVT_SCROLLWIN_BOTTOM;
4661wxEventType wxEVT_SCROLLWIN_LINEUP;
4662wxEventType wxEVT_SCROLLWIN_LINEDOWN;
4663wxEventType wxEVT_SCROLLWIN_PAGEUP;
4664wxEventType wxEVT_SCROLLWIN_PAGEDOWN;
4665wxEventType wxEVT_SCROLLWIN_THUMBTRACK;
4666wxEventType wxEVT_SCROLLWIN_THUMBRELEASE;
4667wxEventType wxEVT_SIZE;
4668wxEventType wxEVT_MOVE;
4669wxEventType wxEVT_CLOSE_WINDOW;
4670wxEventType wxEVT_END_SESSION;
4671wxEventType wxEVT_QUERY_END_SESSION;
4672wxEventType wxEVT_ACTIVATE_APP;
4673wxEventType wxEVT_ACTIVATE;
4674wxEventType wxEVT_CREATE;
4675wxEventType wxEVT_DESTROY;
4676wxEventType wxEVT_SHOW;
4677wxEventType wxEVT_ICONIZE;
4678wxEventType wxEVT_MAXIMIZE;
4679wxEventType wxEVT_MOUSE_CAPTURE_CHANGED;
4680wxEventType wxEVT_MOUSE_CAPTURE_LOST;
4681wxEventType wxEVT_PAINT;
4682wxEventType wxEVT_ERASE_BACKGROUND;
4683wxEventType wxEVT_NC_PAINT;
4684wxEventType wxEVT_MENU_OPEN;
4685wxEventType wxEVT_MENU_CLOSE;
4686wxEventType wxEVT_MENU_HIGHLIGHT;
4687wxEventType wxEVT_CONTEXT_MENU;
4688wxEventType wxEVT_SYS_COLOUR_CHANGED;
4689wxEventType wxEVT_DISPLAY_CHANGED;
4690wxEventType wxEVT_QUERY_NEW_PALETTE;
4691wxEventType wxEVT_PALETTE_CHANGED;
4692wxEventType wxEVT_JOY_BUTTON_DOWN;
4693wxEventType wxEVT_JOY_BUTTON_UP;
4694wxEventType wxEVT_JOY_MOVE;
4695wxEventType wxEVT_JOY_ZMOVE;
4696wxEventType wxEVT_DROP_FILES;
4697wxEventType wxEVT_INIT_DIALOG;
4698wxEventType wxEVT_IDLE;
4699wxEventType wxEVT_UPDATE_UI;
4700wxEventType wxEVT_SIZING;
4701wxEventType wxEVT_MOVING;
4702wxEventType wxEVT_MOVE_START;
4703wxEventType wxEVT_MOVE_END;
4704wxEventType wxEVT_HIBERNATE;
ce7fe42e
VZ
4705wxEventType wxEVT_TEXT_COPY;
4706wxEventType wxEVT_TEXT_CUT;
4707wxEventType wxEVT_TEXT_PASTE;
a90e69f7
RD
4708wxEventType wxEVT_COMMAND_LEFT_CLICK;
4709wxEventType wxEVT_COMMAND_LEFT_DCLICK;
4710wxEventType wxEVT_COMMAND_RIGHT_CLICK;
4711wxEventType wxEVT_COMMAND_RIGHT_DCLICK;
4712wxEventType wxEVT_COMMAND_SET_FOCUS;
4713wxEventType wxEVT_COMMAND_KILL_FOCUS;
4714wxEventType wxEVT_COMMAND_ENTER;
4715wxEventType wxEVT_HELP;
4716wxEventType wxEVT_DETAILED_HELP;
ce7fe42e 4717wxEventType wxEVT_TOOL;
ea8fa3c4 4718wxEventType wxEVT_WINDOW_MODAL_DIALOG_CLOSED;
a90e69f7 4719
551048c2 4720#endif // wxUSE_GUI
a90e69f7 4721
7fa7088e
BP
4722//@}
4723