Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QContextMenuEvent class contains parameters that describe a context menu event. More...
Public Types | |
enum | Reason { Keyboard = 1, Mouse = 0, Other = 2 } |
More... | |
Protected Member Functions | |
QContextMenuEvent (System.Type dummy) | |
Protected Member Functions inherited from QtGui.QInputEvent | |
QInputEvent (System.Type dummy) | |
Protected Member Functions inherited from QtCore.QEvent | |
QEvent (System.Type dummy) | |
Properties | |
new QPoint | Gp [get, set] |
new QPoint | P [get, set] |
new uint | Reas [get, set] |
Properties inherited from QtGui.QInputEvent | |
new Qt.KeyboardModifier | Modifiers [get, set] |
| |
new Qt.KeyboardModifier | ModState [get, set] |
Properties inherited from QtCore.QEvent | |
virtual System.IntPtr | SmokeObject [get, set] |
new ushort | T [get, set] |
static new QMetaObject | StaticMetaObject [get] |
Additional Inherited Members | |
Static Public Member Functions inherited from QtCore.QEvent | |
static int | RegisterEventType (int hint=-1) |
| |
Protected Attributes inherited from QtCore.QEvent | |
SmokeInvocation | interceptor |
The QContextMenuEvent class contains parameters that describe a context menu event.
Context menu events are sent to widgets when a user performs an action associated with opening a context menu. The actions required to open context menus vary between platforms; for example, on Windows, pressing the menu button or clicking the right mouse button will cause this event to be sent.
When this event occurs it is customary to show a QMenu with a context menu, if this is relevant to the context.
Context menu events contain a special accept flag that indicates whether the receiver accepted the event. If the event handler does not accept the event then, if possible, whatever triggered the event will be handled as a regular input event.
This enum describes the reason why the event was sent.
|
protected |
QtGui.QContextMenuEvent.QContextMenuEvent | ( | QContextMenuEvent | copy | ) |
Constructs a context menu event object with the accept parameter flag set to false.
The reason parameter must be QContextMenuEvent::Mouse or QContextMenuEvent::Keyboard.
The pos parameter specifies the mouse position relative to the receiving widget. globalPos is the mouse position in absolute coordinates. The modifiers holds the keyboard modifiers.
QtGui.QContextMenuEvent.QContextMenuEvent | ( | QContextMenuEvent.Reason | reason, |
QPoint | pos | ||
) |
Constructs a context menu event object with the accept parameter flag set to false.
The reason parameter must be QContextMenuEvent::Mouse or QContextMenuEvent::Keyboard.
The pos parameter specifies the mouse position relative to the receiving widget.
The globalPos() is initialized to QCursor::pos(), which may not be appropriate. Use the other constructor to specify the global position explicitly.
QtGui.QContextMenuEvent.QContextMenuEvent | ( | QContextMenuEvent.Reason | reason, |
QPoint | pos, | ||
QPoint | globalPos | ||
) |
Constructs a context menu event object with the accept parameter flag set to false.
The reason parameter must be QContextMenuEvent::Mouse or QContextMenuEvent::Keyboard.
The pos parameter specifies the mouse position relative to the receiving widget. globalPos is the mouse position in absolute coordinates.
QtGui.QContextMenuEvent.QContextMenuEvent | ( | QContextMenuEvent.Reason | reason, |
QPoint | pos, | ||
QPoint | globalPos, | ||
Qt.KeyboardModifier | modifiers | ||
) |
Constructs a context menu event object with the accept parameter flag set to false.
The reason parameter must be QContextMenuEvent::Mouse or QContextMenuEvent::Keyboard.
The pos parameter specifies the mouse position relative to the receiving widget. globalPos is the mouse position in absolute coordinates. The modifiers holds the keyboard modifiers.
|
virtual |
Reimplemented from QtCore.QEvent.
new void QtGui.QContextMenuEvent.Dispose | ( | ) |
new QPoint QtGui.QContextMenuEvent.GlobalPos | ( | ) |
Returns the global position of the mouse pointer at the time of the event.
See also x(), y(), and pos().
new int QtGui.QContextMenuEvent.GlobalX | ( | ) |
Returns the global x position of the mouse pointer at the time of the event.
See also globalY() and globalPos().
new int QtGui.QContextMenuEvent.GlobalY | ( | ) |
Returns the global y position of the mouse pointer at the time of the event.
See also globalX() and globalPos().
new QPoint QtGui.QContextMenuEvent.Pos | ( | ) |
Returns the position of the mouse pointer relative to the widget that received the event.
See also x(), y(), and globalPos().
new QContextMenuEvent.Reason QtGui.QContextMenuEvent.reason | ( | ) |
Returns the reason for this context event.
new int QtGui.QContextMenuEvent.X | ( | ) |
Returns the x position of the mouse pointer, relative to the widget that received the event.
See also y() and pos().
new int QtGui.QContextMenuEvent.Y | ( | ) |
Returns the y position of the mouse pointer, relative to the widget that received the event.
See also x() and pos().
|
getsetprotected |
|
getsetprotected |
|
getsetprotected |