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