Qt:Документация 4.3.2/qactionevent
Материал из Wiki.crossplatform.ru
![]() | Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
Содержание |
QActionEvent Class Reference
[модуль QtGui ]
The QActionEvent class provides an event that is generated when a QAction is added, removed, or changed. More...
#include <QActionEvent>
Inherits QEvent.
Открытые функции
- QActionEvent ( int type, QAction * action, QAction * before = 0 )
- QAction * action () const
- QAction * before () const
- 6 открытых функций унаследованных от QEvent
Дополнительные унаследованные члены
- 1 свойство унаследованное от QEvent
Подробное описание
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().
Описание функций-членов
QActionEvent::QActionEvent ( int type, QAction * action, QAction * before = 0 )
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.
QAction * QActionEvent::action () const
Returns the action that is changed, added, or removed.
See also before().
QAction * QActionEvent::before () const
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().
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|