Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtGui.QContextMenuEvent Class Reference

The QContextMenuEvent class contains parameters that describe a context menu event. More...

Inheritance diagram for QtGui.QContextMenuEvent:
Collaboration diagram for QtGui.QContextMenuEvent:

Public Types

enum  Reason { Keyboard = 1, Mouse = 0, Other = 2 }
  More...
 

Public Member Functions

 QContextMenuEvent (QContextMenuEvent copy)
 
 
 QContextMenuEvent (QContextMenuEvent.Reason reason, QPoint pos)
 
 
 QContextMenuEvent (QContextMenuEvent.Reason reason, QPoint pos, QPoint globalPos)
 
 
 QContextMenuEvent (QContextMenuEvent.Reason reason, QPoint pos, QPoint globalPos, Qt.KeyboardModifier modifiers)
 
 
override void CreateProxy ()
 
new QPoint GlobalPos ()
 
 
new int GlobalX ()
 
 
new int GlobalY ()
 
 
new QPoint Pos ()
 
 
new QContextMenuEvent.Reason reason ()
 
 
new int X ()
 
 
new int Y ()
 
 
new void Dispose ()
 
- Public Member Functions inherited from QtGui.QInputEvent
 QInputEvent (QInputEvent copy)
 
 QInputEvent (QEvent.Type type, Qt.KeyboardModifier modifiers=Qt.KeyboardModifier.NoModifier)
 
override void CreateProxy ()
 
new void Dispose ()
 
- Public Member Functions inherited from QtCore.QEvent
 QEvent (QEvent copy)
 
 
 QEvent (QEvent.Type type)
 
 
new void Accept ()
 
 
new void Ignore ()
 
 
new bool IsAccepted ()
 
new void SetAccepted (bool accepted)
 
new bool Spontaneous ()
 
 
new QEvent.Type type ()
 
 
new void Dispose ()
 

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
 

Detailed Description

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.

Member Enumeration Documentation

This enum describes the reason why the event was sent.

Enumerator:
Keyboard 

The keyboard caused this event to be sent. On Windows, this means the menu button was pressed.

Mouse 

The mouse caused the event to be sent. Normally this means the right mouse button was clicked, but this is platform dependent.

Other 

The event was sent by some other means (i.e. not by the mouse or keyboard).

Constructor & Destructor Documentation

QtGui.QContextMenuEvent.QContextMenuEvent ( System.Type  dummy)
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.

Member Function Documentation

override void QtGui.QContextMenuEvent.CreateProxy ( )
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().

Property Documentation

new QPoint QtGui.QContextMenuEvent.Gp
getsetprotected
new QPoint QtGui.QContextMenuEvent.P
getsetprotected
new uint QtGui.QContextMenuEvent.Reas
getsetprotected