Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QActionEvent class provides an event that is generated when a QAction is added, removed, or changed. More...
Public Member Functions | |
QActionEvent (QActionEvent copy) | |
| |
QActionEvent (int type, QAction action, QAction before=null) | |
| |
override void | CreateProxy () |
new QAction | Action () |
| |
new QAction | Before () |
| |
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 | |
QActionEvent (System.Type dummy) | |
Protected Member Functions inherited from QtCore.QEvent | |
QEvent (System.Type dummy) | |
The QActionEvent class provides an event that is generated when a QAction is added, removed, or changed.
Actions can be added to widgets using QWidget::addAction(). This generates an ActionAdded event, which you can handle to provide custom behavior. For example, QToolBar reimplements QWidget::actionEvent() to create QToolButtons for the actions.
See also QAction, QWidget::addAction(), QWidget::removeAction(), and QWidget::actions().
|
protected |
QtGui.QActionEvent.QActionEvent | ( | QActionEvent | copy | ) |
Constructs an action event. The type can be ActionChanged, ActionAdded, or ActionRemoved.
action is the action that is changed, added, or removed. If type is ActionAdded, the action is to be inserted before the action before. If before is 0, the action is appended.
Constructs an action event. The type can be ActionChanged, ActionAdded, or ActionRemoved.
action is the action that is changed, added, or removed. If type is ActionAdded, the action is to be inserted before the action before. If before is 0, the action is appended.
new QAction QtGui.QActionEvent.Action | ( | ) |
Returns the action that is changed, added, or removed.
See also before().
new QAction QtGui.QActionEvent.Before | ( | ) |
If type() is ActionAdded, returns the action that should appear before action(). If this function returns 0, the action should be appended to already existing actions on the same widget.
See also action() and QWidget::actions().
|
virtual |
Reimplemented from QtCore.QEvent.
new void QtGui.QActionEvent.Dispose | ( | ) |