Eneboo - Documentación para desarrolladores
Métodos públicos | Atributos protegidos
Referencia de la Clase QMouseEvent

The QMouseEvent class contains parameters that describe a mouse event. Más...

#include <qevent.h>

Diagrama de herencias de QMouseEvent
QEvent QEvent Qt Qt Qt Qt

Lista de todos los miembros.

Métodos públicos

 QMouseEvent (Type type, const QPoint &pos, int button, int state)
 QMouseEvent (Type type, const QPoint &pos, const QPoint &globalPos, int button, int state)
const QPointpos () const
const QPointglobalPos () const
int x () const
int y () const
int globalX () const
int globalY () const
ButtonState button () const
ButtonState state () const
ButtonState stateAfter () const
bool isAccepted () const
void accept ()
void ignore ()
 QMouseEvent (Type type, const QPoint &pos, int button, int state)
 QMouseEvent (Type type, const QPoint &pos, const QPoint &globalPos, int button, int state)
const QPointpos () const
const QPointglobalPos () const
int x () const
int y () const
int globalX () const
int globalY () const
ButtonState button () const
ButtonState state () const
ButtonState stateAfter () const
bool isAccepted () const
void accept ()
void ignore ()

Atributos protegidos

QPoint p
QPoint g
ushort b
ushort s
uint accpt:1

Descripción detallada

The QMouseEvent class contains parameters that describe a mouse event.

Mouse events occur when a mouse button is pressed or released inside a widget or when the mouse cursor is moved.

Mouse move events will occur only when a mouse button is pressed down, unless mouse tracking has been enabled with QWidget::setMouseTracking().

Qt automatically grabs the mouse when a mouse button is pressed inside a widget; the widget will continue to receive mouse events until the last mouse button is released.

A mouse event contains a special accept flag that indicates whether the receiver wants the event. You should call QMouseEvent::ignore() if the mouse event is not handled by your widget. A mouse event is propagated up the parent widget chain until a widget accepts it with QMouseEvent::accept() or an event filter consumes it.

The functions pos(), x() and y() give the cursor position relative to the widget that receives the mouse event. If you move the widget as a result of the mouse event, use the global position returned by globalPos() to avoid a shaking motion.

The QWidget::setEnabled() function can be used to enable or disable mouse and keyboard events for a widget.

The event handlers QWidget::mousePressEvent(), QWidget::mouseReleaseEvent(), QWidget::mouseDoubleClickEvent() and QWidget::mouseMoveEvent() receive mouse events.

Ver también:
QWidget::setMouseTracking(), QWidget::grabMouse(), QCursor::pos()

Documentación del constructor y destructor

QMouseEvent::QMouseEvent ( Type  type,
const QPoint pos,
int  button,
int  state 
)

Constructs a mouse event object.

The type parameter must be one of QEvent::MouseButtonPress, QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick or QEvent::MouseMove.

The pos parameter specifies the position relative to the receiving widget. button specifies the button that caused the event, which should be Qt::NoButton (0), if type is MouseMove. state is the ButtonState at the time of the event.

The globalPos() is initialized to QCursor::pos(), which may not be appropriate. Use the other constructor to specify the global position explicitly.

QMouseEvent::QMouseEvent ( Type  type,
const QPoint pos,
const QPoint globalPos,
int  button,
int  state 
) [inline]

Constructs a mouse event object.

The type parameter must be QEvent::MouseButtonPress, QEvent::MouseButtonRelease, QEvent::MouseButtonDblClick or QEvent::MouseMove.

The pos parameter specifies the position relative to the receiving widget. globalPos is the position in absolute coordinates. button specifies the button that caused the event, which should be Qt::NoButton (0), if type is MouseMove. state is the ButtonState at the time of the event.

QMouseEvent::QMouseEvent ( Type  type,
const QPoint pos,
int  button,
int  state 
)
QMouseEvent::QMouseEvent ( Type  type,
const QPoint pos,
const QPoint globalPos,
int  button,
int  state 
) [inline]

Documentación de las funciones miembro

void QMouseEvent::accept ( ) [inline]

Sets the accept flag of the mouse event object.

Setting the accept parameter indicates that the receiver of the event wants the mouse event. Unwanted mouse events are sent to the parent widget.

The accept flag is set by default.

Ver también:
ignore()
void QMouseEvent::accept ( ) [inline]
ButtonState QMouseEvent::button ( ) const [inline]
ButtonState QMouseEvent::button ( ) const [inline]

Returns the button that caused the event.

Possible return values are LeftButton, RightButton, MidButton and NoButton.

Note that the returned value is always NoButton for mouse move events.

Ver también:
state() Qt::ButtonState
const QPoint & QMouseEvent::globalPos ( ) const [inline]

Returns the global position of the mouse pointer {at the time of the event}. This is important on asynchronous window systems like X11. Whenever you move your widgets around in response to mouse events, globalPos() may differ a lot from the current pointer position QCursor::pos(), and from QWidget::mapToGlobal( pos() ).

Ver también:
globalX(), globalY()
const QPoint& QMouseEvent::globalPos ( ) const [inline]
int QMouseEvent::globalX ( ) const [inline]
int QMouseEvent::globalX ( ) const [inline]

Returns the global x-position of the mouse pointer at the time of the event.

Ver también:
globalY(), globalPos()
int QMouseEvent::globalY ( ) const [inline]
int QMouseEvent::globalY ( ) const [inline]

Returns the global y-position of the mouse pointer at the time of the event.

Ver también:
globalX(), globalPos()
void QMouseEvent::ignore ( ) [inline]

Clears the accept flag parameter of the mouse event object.

Clearing the accept parameter indicates that the event receiver does not want the mouse event. Unwanted mouse events are sent to the parent widget.

The accept flag is set by default.

Ver también:
accept()
void QMouseEvent::ignore ( ) [inline]
bool QMouseEvent::isAccepted ( ) const [inline]
bool QMouseEvent::isAccepted ( ) const [inline]

Returns TRUE if the receiver of the event wants to keep the key; otherwise returns FALSE.

const QPoint & QMouseEvent::pos ( ) const [inline]

Returns the position of the mouse pointer relative to the widget that received the event.

If you move the widget as a result of the mouse event, use the global position returned by globalPos() to avoid a shaking motion.

Ver también:
x(), y(), globalPos()
const QPoint& QMouseEvent::pos ( ) const [inline]
ButtonState QMouseEvent::state ( ) const [inline]

Returns the button state (a combination of mouse buttons and keyboard modifiers), i.e. what buttons and keys were being pressed immediately before the event was generated.

This means that if you have a QEvent::MouseButtonPress or a QEvent::MouseButtonDblClick state() will not include the mouse button that's pressed. But once the mouse button has been released, the QEvent::MouseButtonRelease event will have the button() that was pressed.

This value is mainly interesting for QEvent::MouseMove; for the other cases, button() is more useful.

The returned value is LeftButton, RightButton, MidButton, ShiftButton, ControlButton and AltButton OR'ed together.

Ver también:
button() stateAfter() Qt::ButtonState
ButtonState QMouseEvent::state ( ) const [inline]
Qt::ButtonState QMouseEvent::stateAfter ( ) const

Returns the state of buttons after the event.

Ver también:
state() Qt::ButtonState
ButtonState QMouseEvent::stateAfter ( ) const
int QMouseEvent::x ( ) const [inline]
int QMouseEvent::x ( ) const [inline]

Returns the x-position of the mouse pointer, relative to the widget that received the event.

Ver también:
y(), pos()
int QMouseEvent::y ( ) const [inline]

Returns the y-position of the mouse pointer, relative to the widget that received the event.

Ver también:
x(), pos()
int QMouseEvent::y ( ) const [inline]

Documentación de los datos miembro

uint QMouseEvent::accpt [protected]
ushort QMouseEvent::b [protected]
QPoint QMouseEvent::g [protected]
QPoint QMouseEvent::p [protected]
ushort QMouseEvent::s [protected]

La documentación para esta clase fue generada a partir de los siguientes ficheros:
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'