]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/mouseevt.tex
[ 1580776 ] wxAnimationCtrl::SetInactiveBitmap
[wxWidgets.git] / docs / latex / wx / mouseevt.tex
... / ...
CommitLineData
1\section{\class{wxMouseEvent}}\label{wxmouseevent}
2
3This event class contains information about the events generated by the mouse:
4they include mouse buttons press and release events and mouse move events.
5
6All mouse events involving the buttons use {\tt wxMOUSE\_BTN\_LEFT} for the
7left mouse button, {\tt wxMOUSE\_BTN\_MIDDLE} for the middle one and
8{\tt wxMOUSE\_BTN\_RIGHT} for the right one. Note that not all mice have a
9middle button so a portable application should avoid relying on the events from
10it.
11
12{\bf NB:} Note that under Windows CE mouse enter and leave events are not natively supported
13by the system but are generated by wxWidgets itself. This has several
14drawbacks: the LEAVE\_WINDOW event might be received some time after the mouse
15left the window and the state variables for it may have changed during this
16time.
17
18{\bf NB:} Note the difference between methods like
19\helpref{LeftDown}{wxmouseeventleftdown} and
20\helpref{LeftIsDown}{wxmouseeventleftisdown}: the former returns {\tt true}
21when the event corresponds to the left mouse button click while the latter
22returns {\tt true} if the left mouse button is currently being pressed. For
23example, when the user is dragging the mouse you can use
24\helpref{LeftIsDown}{wxmouseeventleftisdown} to test
25whether the left mouse button is (still) depressed. Also, by convention, if
26\helpref{LeftDown}{wxmouseeventleftdown} returns {\tt true},
27\helpref{LeftIsDown}{wxmouseeventleftisdown} will also return {\tt true} in
28wxWidgets whatever the underlying GUI behaviour is (which is
29platform-dependent). The same applies, of course, to other mouse buttons as
30well.
31
32\wxheading{Derived from}
33
34\helpref{wxEvent}{wxevent}
35
36\wxheading{Include files}
37
38<wx/event.h>
39
40\wxheading{Event table macros}
41
42To process a mouse event, use these event handler macros to direct input to member
43functions that take a wxMouseEvent argument.
44
45\twocolwidtha{7cm}
46\begin{twocollist}\itemsep=0pt
47\twocolitem{{\bf EVT\_LEFT\_DOWN(func)}}{Process a wxEVT\_LEFT\_DOWN event. The
48handler of this event should normally call \helpref{event.Skip()}{wxeventskip} to
49allow the default processing to take place as otherwise the window under mouse
50wouldn't get the focus.}
51\twocolitem{{\bf EVT\_LEFT\_UP(func)}}{Process a wxEVT\_LEFT\_UP event.}
52\twocolitem{{\bf EVT\_LEFT\_DCLICK(func)}}{Process a wxEVT\_LEFT\_DCLICK event.}
53\twocolitem{{\bf EVT\_MIDDLE\_DOWN(func)}}{Process a wxEVT\_MIDDLE\_DOWN event.}
54\twocolitem{{\bf EVT\_MIDDLE\_UP(func)}}{Process a wxEVT\_MIDDLE\_UP event.}
55\twocolitem{{\bf EVT\_MIDDLE\_DCLICK(func)}}{Process a wxEVT\_MIDDLE\_DCLICK event.}
56\twocolitem{{\bf EVT\_RIGHT\_DOWN(func)}}{Process a wxEVT\_RIGHT\_DOWN event.}
57\twocolitem{{\bf EVT\_RIGHT\_UP(func)}}{Process a wxEVT\_RIGHT\_UP event.}
58\twocolitem{{\bf EVT\_RIGHT\_DCLICK(func)}}{Process a wxEVT\_RIGHT\_DCLICK event.}
59\twocolitem{{\bf EVT\_MOTION(func)}}{Process a wxEVT\_MOTION event.}
60\twocolitem{{\bf EVT\_ENTER\_WINDOW(func)}}{Process a wxEVT\_ENTER\_WINDOW event.}
61\twocolitem{{\bf EVT\_LEAVE\_WINDOW(func)}}{Process a wxEVT\_LEAVE\_WINDOW event.}
62\twocolitem{{\bf EVT\_MOUSEWHEEL(func)}}{Process a wxEVT\_MOUSEWHEEL event.}
63\twocolitem{{\bf EVT\_MOUSE\_EVENTS(func)}}{Process all mouse events.}
64\end{twocollist}%
65
66\latexignore{\rtfignore{\wxheading{Members}}}
67
68
69\membersection{wxMouseEvent::m\_altDown}\label{wxmouseeventmaltdown}
70
71\member{bool}{m\_altDown}
72
73true if the Alt key is pressed down.
74
75
76\membersection{wxMouseEvent::m\_controlDown}\label{wxmouseeventmcontroldown}
77
78\member{bool}{m\_controlDown}
79
80true if control key is pressed down.
81
82
83\membersection{wxMouseEvent::m\_leftDown}\label{wxmouseeventmleftdown}
84
85\member{bool}{m\_leftDown}
86
87true if the left mouse button is currently pressed down.
88
89
90\membersection{wxMouseEvent::m\_middleDown}\label{wxmouseeventmmiddledown}
91
92\member{bool}{m\_middleDown}
93
94true if the middle mouse button is currently pressed down.
95
96
97\membersection{wxMouseEvent::m\_rightDown}\label{wxmouseeventmrightdown}
98
99\member{bool}{m\_rightDown}
100
101true if the right mouse button is currently pressed down.
102
103
104\membersection{wxMouseEvent::m\_metaDown}\label{wxmouseeventmmetadown}
105
106\member{bool}{m\_metaDown}
107
108true if the Meta key is pressed down.
109
110
111\membersection{wxMouseEvent::m\_shiftDown}\label{wxmouseeventmshiftdown}
112
113\member{bool}{m\_shiftDown}
114
115true if shift is pressed down.
116
117
118\membersection{wxMouseEvent::m\_x}\label{wxmouseeventmx}
119
120\member{long}{m\_x}
121
122X-coordinate of the event.
123
124
125\membersection{wxMouseEvent::m\_y}\label{wxmouseeventmy}
126
127\member{long}{m\_y}
128
129Y-coordinate of the event.
130
131
132\membersection{wxMouseEvent::m\_wheelRotation}\label{wxmouseeventmwheelrotation}
133
134\member{int}{m\_wheelRotation}
135
136The distance the mouse wheel is rotated.
137
138
139\membersection{wxMouseEvent::m\_wheelDelta}\label{wxmouseeventmwheeldelta}
140
141\member{int}{m\_wheelDelta}
142
143The wheel delta, normally $120$.
144
145
146\membersection{wxMouseEvent::m\_linesPerAction}\label{wxmouseeventmlinesperaction}
147
148\member{int}{m\_linesPerAction}
149
150The configured number of lines (or whatever) to be scrolled per wheel
151action.
152
153
154
155\membersection{wxMouseEvent::wxMouseEvent}\label{wxmouseeventctor}
156
157\func{}{wxMouseEvent}{\param{WXTYPE}{ mouseEventType = 0}}
158
159Constructor. Valid event types are:
160
161\begin{itemize}
162\itemsep=0pt
163\item {\bf wxEVT\_ENTER\_WINDOW}
164\item {\bf wxEVT\_LEAVE\_WINDOW}
165\item {\bf wxEVT\_LEFT\_DOWN}
166\item {\bf wxEVT\_LEFT\_UP}
167\item {\bf wxEVT\_LEFT\_DCLICK}
168\item {\bf wxEVT\_MIDDLE\_DOWN}
169\item {\bf wxEVT\_MIDDLE\_UP}
170\item {\bf wxEVT\_MIDDLE\_DCLICK}
171\item {\bf wxEVT\_RIGHT\_DOWN}
172\item {\bf wxEVT\_RIGHT\_UP}
173\item {\bf wxEVT\_RIGHT\_DCLICK}
174\item {\bf wxEVT\_MOTION}
175\item {\bf wxEVT\_MOUSEWHEEL}
176\end{itemize}
177
178
179\membersection{wxMouseEvent::AltDown}\label{wxmouseeventaltdown}
180
181\func{bool}{AltDown}{\void}
182
183Returns true if the Alt key was down at the time of the event.
184
185
186\membersection{wxMouseEvent::Button}\label{wxmouseeventbutton}
187
188\func{bool}{Button}{\param{int}{ button}}
189
190Returns true if the identified mouse button is changing state. Valid
191values of {\it button} are:
192
193\begin{twocollist}\itemsep=0pt
194\twocolitem{{\tt wxMOUSE\_BTN\_LEFT}}{check if left button was pressed}
195\twocolitem{{\tt wxMOUSE\_BTN\_MIDDLE}}{check if middle button was pressed}
196\twocolitem{{\tt wxMOUSE\_BTN\_RIGHT}}{check if right button was pressed}
197\twocolitem{{\tt wxMOUSE\_BTN\_ANY}}{check if any button was pressed}
198\end{twocollist}
199
200
201\membersection{wxMouseEvent::ButtonDClick}\label{wxmouseeventbuttondclick}
202
203\func{bool}{ButtonDClick}{\param{int}{ but = wxMOUSE\_BTN\_ANY}}
204
205If the argument is omitted, this returns true if the event was a mouse
206double click event. Otherwise the argument specifies which double click event
207was generated (see \helpref{Button}{wxmouseeventbutton} for the possible
208values).
209
210
211\membersection{wxMouseEvent::ButtonDown}\label{wxmouseeventbuttondown}
212
213\func{bool}{ButtonDown}{\param{int}{ but = -1}}
214
215If the argument is omitted, this returns true if the event was a mouse
216button down event. Otherwise the argument specifies which button-down event
217was generated (see \helpref{Button}{wxmouseeventbutton} for the possible
218values).
219
220
221
222\membersection{wxMouseEvent::ButtonUp}\label{wxmouseeventbuttonup}
223
224\func{bool}{ButtonUp}{\param{int}{ but = -1}}
225
226If the argument is omitted, this returns true if the event was a mouse
227button up event. Otherwise the argument specifies which button-up event
228was generated (see \helpref{Button}{wxmouseeventbutton} for the possible
229values).
230
231
232
233\membersection{wxMouseEvent::CmdDown}\label{wxmouseeventcmddown}
234
235\constfunc{bool}{CmdDown}{\void}
236
237Same as \helpref{MetaDown}{wxmouseeventmetadown} under Mac, same as
238\helpref{ControlDown}{wxmouseeventcontroldown} elsewhere.
239
240\wxheading{See also}
241
242\helpref{wxKeyEvent::CmdDown}{wxkeyeventcmddown}
243
244
245\membersection{wxMouseEvent::ControlDown}\label{wxmouseeventcontroldown}
246
247\func{bool}{ControlDown}{\void}
248
249Returns true if the control key was down at the time of the event.
250
251
252\membersection{wxMouseEvent::Dragging}\label{wxmouseeventdragging}
253
254\func{bool}{Dragging}{\void}
255
256Returns true if this was a dragging event (motion while a button is depressed).
257
258\wxheading{See also}
259
260\helpref{Moving}{wxmouseeventmoving}
261
262
263\membersection{wxMouseEvent::Entering}\label{wxmouseevententering}
264
265\func{bool}{Entering}{\void}
266
267Returns true if the mouse was entering the window.
268
269See also \helpref{wxMouseEvent::Leaving}{wxmouseeventleaving}.
270
271
272\membersection{wxMouseEvent::GetButton}\label{wxmouseeventgetbutton}
273
274\constfunc{int}{GetButton}{\void}
275
276Returns the mouse button which generated this event or {\tt wxMOUSE\_BTN\_NONE}
277if no button is involved (for mouse move, enter or leave event, for example).
278Otherwise {\tt wxMOUSE\_BTN\_LEFT} is returned for the left button down, up and
279double click events, {\tt wxMOUSE\_BTN\_MIDDLE} and {\tt wxMOUSE\_BTN\_RIGHT}
280for the same events for the middle and the right buttons respectively.
281
282
283\membersection{wxMouseEvent::GetPosition}\label{wxmouseeventgetposition}
284
285\constfunc{wxPoint}{GetPosition}{\void}
286
287\constfunc{void}{GetPosition}{\param{wxCoord*}{ x}, \param{wxCoord*}{ y}}
288
289\constfunc{void}{GetPosition}{\param{long*}{ x}, \param{long*}{ y}}
290
291Sets *x and *y to the position at which the event occurred.
292
293Returns the physical mouse position in pixels.
294
295Note that if the mouse event has been artificially generated from a special
296keyboard combination (e.g. under Windows when the ``menu'' key is pressed), the
297returned position is \texttt{wxDefaultPosition}.
298
299
300\membersection{wxMouseEvent::GetLogicalPosition}\label{wxmouseeventgetlogicalposition}
301
302\constfunc{wxPoint}{GetLogicalPosition}{\param{const wxDC\&}{ dc}}
303
304Returns the logical mouse position in pixels (i.e. translated according to the
305translation set for the DC, which usually indicates that the window has been scrolled).
306
307
308
309\membersection{wxMouseEvent::GetLinesPerAction}\label{wxmouseeventgetlinesperaction}
310
311\constfunc{int}{GetLinesPerAction}{\void}
312
313Returns the configured number of lines (or whatever) to be scrolled per
314wheel action. Defaults to three.
315
316
317\membersection{wxMouseEvent::GetWheelRotation}\label{wxmouseeventgetwheelrotation}
318
319\constfunc{int}{GetWheelRotation}{\void}
320
321Get wheel rotation, positive or negative indicates direction of
322rotation. Current devices all send an event when rotation is equal to
323+/-WheelDelta, but this allows for finer resolution devices to be
324created in the future. Because of this you shouldn't assume that one
325event is equal to 1 line or whatever, but you should be able to either
326do partial line scrolling or wait until +/-WheelDelta rotation values
327have been accumulated before scrolling.
328
329
330\membersection{wxMouseEvent::GetWheelDelta}\label{wxmouseeventgetwheeldelta}
331
332\constfunc{int}{GetWheelDelta}{\void}
333
334Get wheel delta, normally $120$. This is the threshold for action to be
335taken, and one such action (for example, scrolling one increment)
336should occur for each delta.
337
338
339\membersection{wxMouseEvent::GetX}\label{wxmouseeventgetx}
340
341\constfunc{long}{GetX}{\void}
342
343Returns X coordinate of the physical mouse event position.
344
345
346\membersection{wxMouseEvent::GetY}\label{wxmouseeventgety}
347
348\func{long}{GetY}{\void}
349
350Returns Y coordinate of the physical mouse event position.
351
352
353\membersection{wxMouseEvent::IsButton}\label{wxmouseeventisbutton}
354
355\constfunc{bool}{IsButton}{\void}
356
357Returns true if the event was a mouse button event (not necessarily a button down event -
358that may be tested using {\it ButtonDown}).
359
360
361\membersection{wxMouseEvent::IsPageScroll}\label{wxmouseeventispagescroll}
362
363\constfunc{bool}{IsPageScroll}{\void}
364
365Returns true if the system has been setup to do page scrolling with
366the mouse wheel instead of line scrolling.
367
368
369\membersection{wxMouseEvent::Leaving}\label{wxmouseeventleaving}
370
371\constfunc{bool}{Leaving}{\void}
372
373Returns true if the mouse was leaving the window.
374
375See also \helpref{wxMouseEvent::Entering}{wxmouseevententering}.
376
377
378\membersection{wxMouseEvent::LeftDClick}\label{wxmouseeventleftdclick}
379
380\constfunc{bool}{LeftDClick}{\void}
381
382Returns true if the event was a left double click.
383
384
385\membersection{wxMouseEvent::LeftDown}\label{wxmouseeventleftdown}
386
387\constfunc{bool}{LeftDown}{\void}
388
389Returns true if the left mouse button changed to down.
390
391
392\membersection{wxMouseEvent::LeftIsDown}\label{wxmouseeventleftisdown}
393
394\constfunc{bool}{LeftIsDown}{\void}
395
396Returns true if the left mouse button is currently down, independent
397of the current event type.
398
399Please notice that it is \emph{not} the same as
400\helpref{LeftDown}{wxmouseeventleftdown} which returns \true if the event was
401generated by the left mouse button being pressed. Rather, it simply describes
402the state of the left mouse button at the time when the event was generated
403(so while it will be true for a left click event, it can also be true for
404a right click if it happened while the left mouse button was pressed).
405
406This event is usually used in the mouse event handlers which process "move
407mouse" messages to determine whether the user is (still) dragging the mouse.
408
409
410\membersection{wxMouseEvent::LeftUp}\label{wxmouseeventleftup}
411
412\constfunc{bool}{LeftUp}{\void}
413
414Returns true if the left mouse button changed to up.
415
416
417\membersection{wxMouseEvent::MetaDown}\label{wxmouseeventmetadown}
418
419\constfunc{bool}{MetaDown}{\void}
420
421Returns true if the Meta key was down at the time of the event.
422
423
424\membersection{wxMouseEvent::MiddleDClick}\label{wxmouseeventmiddledclick}
425
426\constfunc{bool}{MiddleDClick}{\void}
427
428Returns true if the event was a middle double click.
429
430
431\membersection{wxMouseEvent::MiddleDown}\label{wxmouseeventmiddledown}
432
433\constfunc{bool}{MiddleDown}{\void}
434
435Returns true if the middle mouse button changed to down.
436
437
438\membersection{wxMouseEvent::MiddleIsDown}\label{wxmouseeventmiddleisdown}
439
440\constfunc{bool}{MiddleIsDown}{\void}
441
442Returns true if the middle mouse button is currently down, independent
443of the current event type.
444
445
446\membersection{wxMouseEvent::MiddleUp}\label{wxmouseeventmiddleup}
447
448\constfunc{bool}{MiddleUp}{\void}
449
450Returns true if the middle mouse button changed to up.
451
452
453\membersection{wxMouseEvent::Moving}\label{wxmouseeventmoving}
454
455\constfunc{bool}{Moving}{\void}
456
457Returns true if this was a motion event and no mouse buttons were pressed.
458If any mouse button is held pressed, then this method returns \false and
459\helpref{Dragging}{wxmouseeventdragging} returns \true.
460
461
462\membersection{wxMouseEvent::RightDClick}\label{wxmouseeventrightdclick}
463
464\constfunc{bool}{RightDClick}{\void}
465
466Returns true if the event was a right double click.
467
468
469\membersection{wxMouseEvent::RightDown}\label{wxmouseeventrightdown}
470
471\constfunc{bool}{RightDown}{\void}
472
473Returns true if the right mouse button changed to down.
474
475
476\membersection{wxMouseEvent::RightIsDown}\label{wxmouseeventrightisdown}
477
478\constfunc{bool}{RightIsDown}{\void}
479
480Returns true if the right mouse button is currently down, independent
481of the current event type.
482
483
484\membersection{wxMouseEvent::RightUp}\label{wxmouseeventrightup}
485
486\constfunc{bool}{RightUp}{\void}
487
488Returns true if the right mouse button changed to up.
489
490
491\membersection{wxMouseEvent::ShiftDown}\label{wxmouseeventshiftdown}
492
493\constfunc{bool}{ShiftDown}{\void}
494
495Returns true if the shift key was down at the time of the event.
496