The QActionEvent class provides an event that is generated when a QAction is added, removed, or changed. More...
Header: | #include <QActionEvent> |
CMake: | find_package(Qt6 COMPONENTS Gui REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
Inherits: | QEvent |
QActionEvent(int type, QAction *action, QAction *before = nullptr) | |
QAction * | action() const |
QAction * | before() const |
Actions can be added to controls, for example by 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().
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 nullptr
, the action is appended.
Returns the action that is changed, added, or removed.
See also before().
If type() is ActionAdded, returns the action that should appear before action(). If this function returns nullptr
, the action should be appended to already existing actions on the same widget.
See also action() and QWidget::actions().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qactionevent.html