1 \section{\class{wxMouseEvent
}}\label{wxmouseevent
}
3 This event class contains information about the events generated by the mouse:
4 they include mouse buttons press and release events and mouse move events.
6 All mouse events involving the buttons use
{\tt wxMOUSE
\_BTN\_LEFT} for the
7 left 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
9 middle button so a portable application should avoid relying on the events from
12 {\bf NB:
} Note that under Windows mouse enter and leave events are not natively supported
13 by the system but are generated by wxWindows itself. This has several
14 drawbacks: the LEAVE
\_WINDOW event might be received some time after the mouse
15 left the window and the state variables for it may have changed during this
18 {\bf NB:
} Note the difference between methods like
19 \helpref{LeftDown
}{wxmouseeventleftdown
} and
20 \helpref{LeftIsDown
}{wxmouseeventleftisdown
}: the former returns
{\tt true
}
21 when the event corresponds to the left mouse button click while the latter
22 returns
{\tt true
} if the left mouse button is currently being pressed. For
23 example, when the user is dragging the mouse you can use
24 \helpref{LeftIsDown
}{wxmouseeventleftisdown
} to test
25 whether 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
28 wxWindows whatever the underlying GUI behaviour is (which is
29 platform-dependent). The same applies, of course, to other mouse buttons as
32 \wxheading{Derived from
}
34 \helpref{wxEvent
}{wxevent
}
36 \wxheading{Include files
}
40 \wxheading{Event table macros
}
42 To process a mouse event, use these event handler macros to direct input to member
43 functions that take a wxMouseEvent argument.
46 \begin{twocollist
}\itemsep=
0pt
47 \twocolitem{{\bf EVT
\_LEFT\_DOWN(func)
}}{Process a wxEVT
\_LEFT\_DOWN event.
}
48 \twocolitem{{\bf EVT
\_LEFT\_UP(func)
}}{Process a wxEVT
\_LEFT\_UP event.
}
49 \twocolitem{{\bf EVT
\_LEFT\_DCLICK(func)
}}{Process a wxEVT
\_LEFT\_DCLICK event.
}
50 \twocolitem{{\bf EVT
\_MIDDLE\_DOWN(func)
}}{Process a wxEVT
\_MIDDLE\_DOWN event.
}
51 \twocolitem{{\bf EVT
\_MIDDLE\_UP(func)
}}{Process a wxEVT
\_MIDDLE\_UP event.
}
52 \twocolitem{{\bf EVT
\_MIDDLE\_DCLICK(func)
}}{Process a wxEVT
\_MIDDLE\_DCLICK event.
}
53 \twocolitem{{\bf EVT
\_RIGHT\_DOWN(func)
}}{Process a wxEVT
\_RIGHT\_DOWN event.
}
54 \twocolitem{{\bf EVT
\_RIGHT\_UP(func)
}}{Process a wxEVT
\_RIGHT\_UP event.
}
55 \twocolitem{{\bf EVT
\_RIGHT\_DCLICK(func)
}}{Process a wxEVT
\_RIGHT\_DCLICK event.
}
56 \twocolitem{{\bf EVT
\_MOTION(func)
}}{Process a wxEVT
\_MOTION event.
}
57 \twocolitem{{\bf EVT
\_ENTER\_WINDOW(func)
}}{Process a wxEVT
\_ENTER\_WINDOW event.
}
58 \twocolitem{{\bf EVT
\_LEAVE\_WINDOW(func)
}}{Process a wxEVT
\_LEAVE\_WINDOW event.
}
59 \twocolitem{{\bf EVT
\_MOUSEWHEEL(func)
}}{Process a wxEVT
\_MOUSEWHEEL event.
}
60 \twocolitem{{\bf EVT
\_MOUSE\_EVENTS(func)
}}{Process all mouse events.
}
63 \latexignore{\rtfignore{\wxheading{Members
}}}
66 \membersection{wxMouseEvent::m
\_altDown}
68 \member{bool
}{m
\_altDown}
70 true if the Alt key is pressed down.
73 \membersection{wxMouseEvent::m
\_controlDown}
75 \member{bool
}{m
\_controlDown}
77 true if control key is pressed down.
80 \membersection{wxMouseEvent::m
\_leftDown}
82 \member{bool
}{m
\_leftDown}
84 true if the left mouse button is currently pressed down.
87 \membersection{wxMouseEvent::m
\_middleDown}
89 \member{bool
}{m
\_middleDown}
91 true if the middle mouse button is currently pressed down.
94 \membersection{wxMouseEvent::m
\_rightDown}
96 \member{bool
}{m
\_rightDown}
98 true if the right mouse button is currently pressed down.
101 \membersection{wxMouseEvent::m
\_metaDown}
103 \member{bool
}{m
\_metaDown}
105 true if the Meta key is pressed down.
108 \membersection{wxMouseEvent::m
\_shiftDown}
110 \member{bool
}{m
\_shiftDown}
112 true if shift is pressed down.
115 \membersection{wxMouseEvent::m
\_x}
119 X-coordinate of the event.
122 \membersection{wxMouseEvent::m
\_y}
126 Y-coordinate of the event.
129 \membersection{wxMouseEvent::m
\_wheelRotation}
131 \member{int
}{m
\_wheelRotation}
133 The distance the mouse wheel is rotated.
136 \membersection{wxMouseEvent::m
\_wheelDelta}
138 \member{int
}{m
\_wheelDelta}
140 The wheel delta, normally $
120$.
143 \membersection{wxMouseEvent::m
\_linesPerAction}
145 \member{int
}{m
\_linesPerAction}
147 The configured number of lines (or whatever) to be scrolled per wheel
152 \membersection{wxMouseEvent::wxMouseEvent
}
154 \func{}{wxMouseEvent
}{\param{WXTYPE
}{ mouseEventType =
0},
\param{int
}{ id =
0}}
156 Constructor. Valid event types are:
160 \item {\bf wxEVT
\_ENTER\_WINDOW}
161 \item {\bf wxEVT
\_LEAVE\_WINDOW}
162 \item {\bf wxEVT
\_LEFT\_DOWN}
163 \item {\bf wxEVT
\_LEFT\_UP}
164 \item {\bf wxEVT
\_LEFT\_DCLICK}
165 \item {\bf wxEVT
\_MIDDLE\_DOWN}
166 \item {\bf wxEVT
\_MIDDLE\_UP}
167 \item {\bf wxEVT
\_MIDDLE\_DCLICK}
168 \item {\bf wxEVT
\_RIGHT\_DOWN}
169 \item {\bf wxEVT
\_RIGHT\_UP}
170 \item {\bf wxEVT
\_RIGHT\_DCLICK}
171 \item {\bf wxEVT
\_MOTION}
172 \item {\bf wxEVT
\_MOUSEWHEEL}
176 \membersection{wxMouseEvent::AltDown
}
178 \func{bool
}{AltDown
}{\void}
180 Returns true if the Alt key was down at the time of the event.
183 \membersection{wxMouseEvent::Button
}\label{wxmouseeventbutton
}
185 \func{bool
}{Button
}{\param{int
}{ button
}}
187 Returns true if the identified mouse button is changing state. Valid
188 values of
{\it button
} are:
190 \begin{twocollist
}\itemsep=
0pt
191 \twocolitem{{\tt wxMOUSE
\_BTN\_LEFT}}{check if left button was pressed
}
192 \twocolitem{{\tt wxMOUSE
\_BTN\_MIDDLE}}{check if left button was pressed
}
193 \twocolitem{{\tt wxMOUSE
\_BTN\_RIGHT}}{check if left button was pressed
}
194 \twocolitem{{\tt wxMOUSE
\_BTN\_ANY}}{check if any button was pressed
}
198 \membersection{wxMouseEvent::ButtonDClick
}
200 \func{bool
}{ButtonDClick
}{\param{int
}{ but = wxMOUSE
\_BTN\_ANY}}
202 If the argument is omitted, this returns true if the event was a mouse
203 double click event. Otherwise the argument specifies which double click event
204 was generated (see
\helpref{Button
}{wxmouseeventbutton
} for the possible
208 \membersection{wxMouseEvent::ButtonDown
}
210 \func{bool
}{ButtonDown
}{\param{int
}{ but = -
1}}
212 If the argument is omitted, this returns true if the event was a mouse
213 button down event. Otherwise the argument specifies which button-down event
214 was generated (see
\helpref{Button
}{wxmouseeventbutton
} for the possible
219 \membersection{wxMouseEvent::ButtonUp
}
221 \func{bool
}{ButtonUp
}{\param{int
}{ but = -
1}}
223 If the argument is omitted, this returns true if the event was a mouse
224 button up event. Otherwise the argument specifies which button-up event
225 was generated (see
\helpref{Button
}{wxmouseeventbutton
} for the possible
230 \membersection{wxMouseEvent::ControlDown
}
232 \func{bool
}{ControlDown
}{\void}
234 Returns true if the control key was down at the time of the event.
237 \membersection{wxMouseEvent::Dragging
}\label{wxmouseeventdragging
}
239 \func{bool
}{Dragging
}{\void}
241 Returns true if this was a dragging event (motion while a button is depressed).
245 \helpref{Moving
}{wxmouseeventmoving
}
248 \membersection{wxMouseEvent::Entering
}\label{wxmouseevententering
}
250 \func{bool
}{Entering
}{\void}
252 Returns true if the mouse was entering the window.
254 See also
\helpref{wxMouseEvent::Leaving
}{wxmouseeventleaving
}.
257 \membersection{wxMouseEvent::GetButton
}\label{wxmouseeventgetbutton
}
259 \constfunc{int
}{GetButton
}{\void}
261 Returns the mouse button which generated this event or
{\tt wxMOUSE
\_BTN\_NONE}
262 if no button is involved (for mouse move, enter or leave event, for example).
263 Otherwise
{\tt wxMOUSE
\_BTN\_LEFT} is returned for the left button down, up and
264 double click events,
{\tt wxMOUSE
\_BTN\_MIDDLE} and
{\tt wxMOUSE
\_BTN\_RIGHT}
265 for the same events for the middle and the right buttons respectively.
268 \membersection{wxMouseEvent::GetPosition
}\label{wxmouseeventgetposition
}
270 \constfunc{wxPoint
}{GetPosition
}{\void}
272 \constfunc{void
}{GetPosition
}{\param{wxCoord*
}{ x
},
\param{wxCoord*
}{ y
}}
274 \constfunc{void
}{GetPosition
}{\param{long*
}{ x
},
\param{long*
}{ y
}}
276 Sets *x and *y to the position at which the event occurred.
278 Returns the physical mouse position in pixels.
281 \membersection{wxMouseEvent::GetLogicalPosition
}\label{wxmouseeventgetlogicalposition
}
283 \constfunc{wxPoint
}{GetLogicalPosition
}{\param{const wxDC\&
}{ dc
}}
285 Returns the logical mouse position in pixels (i.e. translated according to the
286 translation set for the DC, which usually indicates that the window has been scrolled).
290 \membersection{wxMouseEvent::GetLinesPerAction
}\label{wxmouseeventgetlinesperaction
}
292 \constfunc{int
}{GetLinesPerAction
}{\void}
294 Returns the configured number of lines (or whatever) to be scrolled per
295 wheel action. Defaults to three.
298 \membersection{wxMouseEvent::GetWheelRotation
}\label{wxmouseeventgetwheelrotation
}
300 \constfunc{int
}{GetWheelRotation
}{\void}
302 Get wheel rotation, positive or negative indicates direction of
303 rotation. Current devices all send an event when rotation is equal to
304 +/-WheelDelta, but this allows for finer resolution devices to be
305 created in the future. Because of this you shouldn't assume that one
306 event is equal to
1 line or whatever, but you should be able to either
307 do partial line scrolling or wait until +/-WheelDelta rotation values
308 have been accumulated before scrolling.
311 \membersection{wxMouseEvent::GetWheelDelta
}\label{wxmouseeventgetwheeldelta
}
313 \constfunc{int
}{GetWheelDelta
}{\void}
315 Get wheel delta, normally $
120$. This is the threshold for action to be
316 taken, and one such action (for example, scrolling one increment)
317 should occur for each delta.
320 \membersection{wxMouseEvent::GetX
}\label{wxmouseeventgetx
}
322 \constfunc{long
}{GetX
}{\void}
324 Returns X coordinate of the physical mouse event position.
327 \membersection{wxMouseEvent::GetY
}\label{wxmouseeventgety
}
329 \func{long
}{GetY
}{\void}
331 Returns Y coordinate of the physical mouse event position.
334 \membersection{wxMouseEvent::IsButton
}
336 \constfunc{bool
}{IsButton
}{\void}
338 Returns true if the event was a mouse button event (not necessarily a button down event -
339 that may be tested using
{\it ButtonDown
}).
342 \membersection{wxMouseEvent::IsPageScroll
}
344 \constfunc{bool
}{IsPageScroll
}{\void}
346 Returns true if the system has been setup to do page scrolling with
347 the mouse wheel instead of line scrolling.
350 \membersection{wxMouseEvent::Leaving
}\label{wxmouseeventleaving
}
352 \constfunc{bool
}{Leaving
}{\void}
354 Returns true if the mouse was leaving the window.
356 See also
\helpref{wxMouseEvent::Entering
}{wxmouseevententering
}.
359 \membersection{wxMouseEvent::LeftDClick
}
361 \constfunc{bool
}{LeftDClick
}{\void}
363 Returns true if the event was a left double click.
366 \membersection{wxMouseEvent::LeftDown
}\label{wxmouseeventleftdown
}
368 \constfunc{bool
}{LeftDown
}{\void}
370 Returns true if the left mouse button changed to down.
373 \membersection{wxMouseEvent::LeftIsDown
}\label{wxmouseeventleftisdown
}
375 \constfunc{bool
}{LeftIsDown
}{\void}
377 Returns true if the left mouse button is currently down, independent
378 of the current event type.
380 Please notice that it is
{\bf not
} the same as
381 \helpref{LeftDown
}{wxmouseeventleftdown
} which returns true if the left mouse
382 button was just pressed. Rather, it describes the state of the mouse button
383 before the event happened.
385 This event is usually used in the mouse event handlers which process "move
386 mouse" messages to determine whether the user is (still) dragging the mouse.
389 \membersection{wxMouseEvent::LeftUp
}
391 \constfunc{bool
}{LeftUp
}{\void}
393 Returns true if the left mouse button changed to up.
396 \membersection{wxMouseEvent::MetaDown
}
398 \constfunc{bool
}{MetaDown
}{\void}
400 Returns true if the Meta key was down at the time of the event.
403 \membersection{wxMouseEvent::MiddleDClick
}
405 \constfunc{bool
}{MiddleDClick
}{\void}
407 Returns true if the event was a middle double click.
410 \membersection{wxMouseEvent::MiddleDown
}
412 \constfunc{bool
}{MiddleDown
}{\void}
414 Returns true if the middle mouse button changed to down.
417 \membersection{wxMouseEvent::MiddleIsDown
}\label{wxmouseeventmiddleisdown
}
419 \constfunc{bool
}{MiddleIsDown
}{\void}
421 Returns true if the middle mouse button is currently down, independent
422 of the current event type.
425 \membersection{wxMouseEvent::MiddleUp
}
427 \constfunc{bool
}{MiddleUp
}{\void}
429 Returns true if the middle mouse button changed to up.
432 \membersection{wxMouseEvent::Moving
}\label{wxmouseeventmoving
}
434 \constfunc{bool
}{Moving
}{\void}
436 Returns true if this was a motion event and no mouse buttons were pressed.
437 If any mouse button is held pressed, then this method returns
\false and
438 \helpref{Dragging
}{wxmouseeventdragging
} returns
\true.
441 \membersection{wxMouseEvent::RightDClick
}
443 \constfunc{bool
}{RightDClick
}{\void}
445 Returns true if the event was a right double click.
448 \membersection{wxMouseEvent::RightDown
}
450 \constfunc{bool
}{RightDown
}{\void}
452 Returns true if the right mouse button changed to down.
455 \membersection{wxMouseEvent::RightIsDown
}\label{wxmouseeventrightisdown
}
457 \constfunc{bool
}{RightIsDown
}{\void}
459 Returns true if the right mouse button is currently down, independent
460 of the current event type.
463 \membersection{wxMouseEvent::RightUp
}
465 \constfunc{bool
}{RightUp
}{\void}
467 Returns true if the right mouse button changed to up.
470 \membersection{wxMouseEvent::ShiftDown
}
472 \constfunc{bool
}{ShiftDown
}{\void}
474 Returns true if the shift key was down at the time of the event.