QActionEvent露
- PyQt5.QtGui.QActionEvent
Inherits from QEvent.
Description露
The QActionEvent class provides an event that is generated when a QAction is added, removed, or changed.
Actions can be added to widgets using addAction(). This generates an ActionAdded event, which you can handle to provide custom behavior. For example, QToolBar reimplements actionEvent() to create QToolButtons for the actions.
See also
Methods露
- __init__(QActionEvent)
TODO
- __init__(int, QAction, before: QAction = None)
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.
- action() → QAction
TODO
- before() → QAction
TODO