Abstract class for objects that grab mouse focus in a QGLViewer. More...
Public Member Functions | |
MouseGrabber () | |
Default constructor. | |
virtual | ~MouseGrabber () |
Virtual destructor. | |
Friends | |
class | ::QGLViewer |
Mouse grabbing detection | |
virtual void | checkIfGrabsMouse (int x, int y, const Camera *const camera)=0 |
Pure virtual method, called by the QGLViewers before they test if the MouseGrabber grabsMouse(). | |
bool | grabsMouse () const |
Returns true when the MouseGrabber grabs the QGLViewer's mouse events. | |
void | setGrabsMouse (bool grabs) |
Sets the grabsMouse() flag. | |
MouseGrabber pool | |
bool | isInMouseGrabberPool () const |
Returns true if the MouseGrabber is currently in the MouseGrabberPool() list. | |
void | addInMouseGrabberPool () |
Adds the MouseGrabber in the MouseGrabberPool(). | |
void | removeFromMouseGrabberPool () |
Removes the MouseGrabber from the MouseGrabberPool(). | |
void | clearMouseGrabberPool (bool autoDelete=false) |
Clears the MouseGrabberPool(). | |
static const QList < MouseGrabber > & | MouseGrabberPool () |
Returns a list containing pointers to all the active MouseGrabbers. | |
Mouse event handlers | |
virtual void | mousePressEvent (QMouseEvent *const event, Camera *const camera) |
Callback method called when the MouseGrabber grabsMouse() and a mouse button is pressed. | |
virtual void | mouseDoubleClickEvent (QMouseEvent *const event, Camera *const camera) |
Callback method called when the MouseGrabber grabsMouse() and a mouse button is double clicked. | |
virtual void | mouseReleaseEvent (QMouseEvent *const event, Camera *const camera) |
Mouse release event callback method. | |
virtual void | mouseMoveEvent (QMouseEvent *const event, Camera *const camera) |
Callback method called when the MouseGrabber grabsMouse() and the mouse is moved while a button is pressed. | |
virtual void | wheelEvent (QWheelEvent *const event, Camera *const camera) |
Callback method called when the MouseGrabber grabsMouse() and the mouse wheel is used. | |
Detailed Description
Abstract class for objects that grab mouse focus in a QGLViewer.
MouseGrabber are objects which react to the mouse cursor, usually when it hovers over them. This abstract class only provides an interface for all these objects: their actual behavior has to be defined in a derived class.
How does it work ?
All the created MouseGrabber are grouped in a MouseGrabberPool(). The QGLViewers parse this pool, calling all the MouseGrabbers' checkIfGrabsMouse() methods that setGrabsMouse() if desired.
When a MouseGrabber grabsMouse(), it becomes the QGLViewer::mouseGrabber(). All the mouse events (mousePressEvent(), mouseReleaseEvent(), mouseMoveEvent(), mouseDoubleClickEvent() and wheelEvent()) are then transmitted to the QGLViewer::mouseGrabber() instead of being normally processed. This continues while grabsMouse() (updated using checkIfGrabsMouse()) returns true
.
If you want to (temporarily) disable a specific MouseGrabbers, you can remove it from this pool using removeFromMouseGrabberPool(). You can also disable a MouseGrabber in a specific QGLViewer using QGLViewer::setMouseGrabberIsEnabled().
Implementation details
In order to make MouseGrabber react to mouse events, mouse tracking has to be activated in the QGLViewer which wants to use MouseGrabbers:
Call QGLWidget::hasMouseTracking()
to get the current state of this flag.
The camera
parameter of the different mouse event methods is a pointer to the QGLViewer::camera() of the QGLViewer that uses the MouseGrabber. It can be used to compute 2D to 3D coordinates conversion using Camera::projectedCoordinatesOf() and Camera::unprojectedCoordinatesOf().
Very complex behaviors can be implemented using this framework: auto-selected objects (no need to press a key to use them), automatic drop-down menus, 3D GUI, spinners using the wheelEvent(), and whatever your imagination creates. See the mouseGrabber example for an illustration.
Note that ManipulatedFrame are MouseGrabber: see the keyFrame example for an illustration. Every created ManipulatedFrame is hence present in the MouseGrabberPool() (note however that ManipulatedCameraFrame are not inserted).
Example
Here is for instance a draft version of a MovableObject class. Instances of these class can freely be moved on screen using the mouse, as movable post-it-like notes:
Note that the different event callback methods are called only once the MouseGrabber grabsMouse().
Definition at line 134 of file mouseGrabber.h.
Constructor & Destructor Documentation
MouseGrabber | ( | ) |
Default constructor.
Adds the created MouseGrabber in the MouseGrabberPool(). grabsMouse() is set to false
.
Definition at line 37 of file mouseGrabber.cpp.
References MouseGrabber::addInMouseGrabberPool().
|
inlinevirtual |
Virtual destructor.
Removes the MouseGrabber from the MouseGrabberPool().
Definition at line 146 of file mouseGrabber.h.
Member Function Documentation
void addInMouseGrabberPool | ( | ) |
Adds the MouseGrabber in the MouseGrabberPool().
All created MouseGrabber are automatically added in the MouseGrabberPool() by the constructor. Trying to add a MouseGrabber that already isInMouseGrabberPool() has no effect.
Use removeFromMouseGrabberPool() to remove the MouseGrabber from the list, so that it is no longer tested with checkIfGrabsMouse() by the QGLViewer, and hence can no longer grab mouse focus. Use isInMouseGrabberPool() to know the current state of the MouseGrabber.
Definition at line 51 of file mouseGrabber.cpp.
References MouseGrabber::isInMouseGrabberPool().
Referenced by MouseGrabber::MouseGrabber().
|
pure virtual |
Pure virtual method, called by the QGLViewers before they test if the MouseGrabber grabsMouse().
Should setGrabsMouse() according to the mouse position.
This is the core method of the MouseGrabber. It has to be overloaded in your derived class. Its goal is to update the grabsMouse() flag according to the mouse and MouseGrabber current positions, using setGrabsMouse().
grabsMouse() is usually set to true
when the mouse cursor is close enough to the MouseGrabber position. It should also be set to false
when the mouse cursor leaves this region in order to release the mouse focus.
x
and y
are the mouse cursor coordinates (Qt coordinate system: (0,0) corresponds to the upper left corner).
A typical implementation will look like:
If the MouseGrabber position is defined in 3D, use the camera
parameter, corresponding to the calling QGLViewer Camera. Project on screen and then compare the projected coordinates:
See examples in the detailed description section and in the mouseGrabber example.
Implemented in ManipulatedFrame.
Referenced by QGLViewer::mouseMoveEvent().
void clearMouseGrabberPool | ( | bool | autoDelete = false | ) |
Clears the MouseGrabberPool().
Use this method only if it is faster to clear the MouseGrabberPool() and then to add back a few MouseGrabbers than to remove each one independently. Use QGLViewer::setMouseTracking(false) instead if you want to disable mouse grabbing.
When autoDelete
is true
, the MouseGrabbers of the MouseGrabberPool() are actually deleted (use this only if you're sure of what you do).
Definition at line 79 of file mouseGrabber.cpp.
|
inline |
Returns true
when the MouseGrabber grabs the QGLViewer's mouse events.
This flag is set with setGrabsMouse() by the checkIfGrabsMouse() method.
Definition at line 187 of file mouseGrabber.h.
Referenced by QGLViewer::mouseMoveEvent(), and ManipulatedFrame::mousePressEvent().
|
inline |
Returns true
if the MouseGrabber is currently in the MouseGrabberPool() list.
Default value is true
. When set to false
using removeFromMouseGrabberPool(), the QGLViewers no longer checkIfGrabsMouse() on this MouseGrabber. Use addInMouseGrabberPool() to insert it back.
Definition at line 225 of file mouseGrabber.h.
Referenced by MouseGrabber::addInMouseGrabberPool(), and MouseGrabber::removeFromMouseGrabberPool().
|
inlineprotectedvirtual |
Callback method called when the MouseGrabber grabsMouse() and a mouse button is double clicked.
See the QGLWidget::mouseDoubleClickEvent()
and the QMouseEvent
documentations for details.
Reimplemented in ManipulatedFrame.
Definition at line 255 of file mouseGrabber.h.
|
inlinestatic |
Returns a list containing pointers to all the active MouseGrabbers.
Used by the QGLViewer to parse all the MouseGrabbers and to check if any of them grabsMouse() using checkIfGrabsMouse().
You should not have to directly use this list. Use removeFromMouseGrabberPool() and addInMouseGrabberPool() to modify this list.
- Attention
- This method returns a
QPtrList<MouseGrabber>
with Qt 3 and aQList<MouseGrabber>
with Qt 2.
Definition at line 213 of file mouseGrabber.h.
Referenced by QGLViewer::mouseMoveEvent().
|
inlineprotectedvirtual |
Callback method called when the MouseGrabber grabsMouse() and the mouse is moved while a button is pressed.
This method will typically update the state of the MouseGrabber from the mouse displacement. See the mousePressEvent() documentation for details.
Reimplemented in ManipulatedFrame, and ManipulatedCameraFrame.
Definition at line 263 of file mouseGrabber.h.
|
inlineprotectedvirtual |
Callback method called when the MouseGrabber grabsMouse() and a mouse button is pressed.
The MouseGrabber will typically start an action or change its state when a mouse button is pressed. mouseMoveEvent() (called at each mouse displacement) will then update the MouseGrabber accordingly and mouseReleaseEvent() (called when the mouse button is released) will terminate this action.
Use the event
QMouseEvent::state() and QMouseEvent::button() to test the keyboard and button state and possibly change the MouseGrabber behavior accordingly.
See the detailed description section and the mouseGrabber example for examples.
See the QGLWidget::mousePressEvent()
and the QMouseEvent
documentations for details.
Reimplemented in ManipulatedFrame.
Definition at line 251 of file mouseGrabber.h.
|
inlineprotectedvirtual |
Mouse release event callback method.
See mousePressEvent().
Reimplemented in ManipulatedFrame, and ManipulatedCameraFrame.
Definition at line 257 of file mouseGrabber.h.
void removeFromMouseGrabberPool | ( | ) |
Removes the MouseGrabber from the MouseGrabberPool().
See addInMouseGrabberPool() for details. Removing a MouseGrabber that is not in MouseGrabberPool() has no effect.
Definition at line 61 of file mouseGrabber.cpp.
References MouseGrabber::isInMouseGrabberPool().
Referenced by ManipulatedCameraFrame::ManipulatedCameraFrame().
|
inlineprotected |
Sets the grabsMouse() flag.
Normally used by checkIfGrabsMouse().
Definition at line 191 of file mouseGrabber.h.
Referenced by ManipulatedFrame::checkIfGrabsMouse().
|
inlineprotectedvirtual |
Callback method called when the MouseGrabber grabsMouse() and the mouse wheel is used.
See the QGLWidget::wheelEvent()
and the QWheelEvent
documentations for details.
Reimplemented in ManipulatedFrame, and ManipulatedCameraFrame.
Definition at line 267 of file mouseGrabber.h.
The documentation for this class was generated from the following files:
- worldsim/3rdParts/qglviewer/mouseGrabber.h
- worldsim/3rdParts/qglviewer/mouseGrabber.cpp