Q3ActionGroup Class Reference
|
Q3ActionGroup ( QObject * parent, const char * name = 0 ) | |
Q3ActionGroup ( QObject * parent, const char * name, bool exclusive ) | |
~Q3ActionGroup () | |
void | add ( Q3Action * action ) |
void | addSeparator () |
void | insert ( Q3Action * action ) |
bool | isExclusive () const |
void | setExclusive ( bool ) |
void | setUsesDropDown ( bool enable ) |
bool | usesDropDown () const |
virtual bool | addTo ( QWidget * w ) |
virtual bool | removeFrom ( QWidget * w ) |
virtual void | setEnabled ( bool enable ) |
virtual void | setIconSet ( const QIcon & icon ) |
virtual void | setMenuText ( const QString & text ) |
virtual void | setOn ( bool on ) |
virtual void | setText ( const QString & txt ) |
virtual void | setToggleAction ( bool toggle ) |
virtual void | setToolTip ( const QString & text ) |
virtual void | setVisible ( bool visible ) |
virtual void | setWhatsThis ( const QString & text ) |
void | activated ( Q3Action * action ) |
void | selected ( Q3Action * action ) |
virtual void | addedTo ( QWidget * actionWidget, QWidget * container, Q3Action * a ) |
virtual void | addedTo ( int index, Q3PopupMenu * menu, Q3Action * a ) |
virtual void | addedTo ( QWidget * actionWidget, QWidget * container ) |
virtual void | addedTo ( int index, Q3PopupMenu * menu ) |
virtual void | childEvent ( QChildEvent * e ) |
The Q3ActionGroup class groups actions together.
В некоторых ситуациях это полезно для группирования действий вместе. For example, if you have a left justify action, a right justify action and a center action, only one of these actions should be active at any one time, and one simple way of achieving this is to group the actions together in an action group.
An action group can also be added to a menu or a toolbar as a single unit, with all the actions within the action group appearing as separate menu options and toolbar buttons.
The actions in an action group emit their activated() (and for toggle actions, toggled()) signals as usual.
The setExclusive() function is used to ensure that only one action is active at any one time: it should be used with actions which have their toggleAction set to true.
Action group actions appear as individual menu options and toolbar buttons. For exclusive action groups use setUsesDropDown() to display the actions in a subwidget of any widget the action group is added to. For example, the actions would appear in a combobox in a toolbar or as a submenu in a menu.
Actions can be added to an action group using add(), but normally they are added by creating the action with the action group as parent. Actions can have separators dividing them using addSeparator(). Action groups are added to widgets with addTo().
This property holds whether the action group does exclusive toggling.
If exclusive is true only one toggle action in the action group can ever be active at any one time. If the user chooses another toggle action in the group the one they chose becomes active and the one that was active becomes inactive.
Функции доступа:
bool | isExclusive () const |
void | setExclusive ( bool ) |
Смотрите также Q3Action::toggleAction.
This property holds whether the group's actions are displayed in a subwidget of the widgets the action group is added to.
Exclusive action groups added to a toolbar display their actions in a combobox with the action's Q3Action::text and Q3Action::iconSet properties shown. Non-exclusive groups are represented by a tool button showing their Q3Action::iconSet and text() property.
In a popup menu the member actions are displayed in a submenu.
Changing usesDropDown only affects subsequent calls to addTo().
This property's default is false.
Функции доступа:
bool | usesDropDown () const |
void | setUsesDropDown ( bool enable ) |
Constructs an action group called name, with parent parent.
Группа действий является монопольной по умолчанию. Вызовите setExclusive(false), чтобы сделать группу действий не монопольной.
Constructs an action group called name, with parent parent.
If exclusive is true only one toggle action in the group will ever be active.
Смотрите также exclusive.
Удаляет объект и освобождает выделенные ему ресурсы.
This signal is emitted from groups when one of its actions gets activated.
The argument is the action which was activated.
Смотрите также setExclusive(), isOn() и Q3Action::toggled().
Adds action action to this group.
Обычно действие добавляется в группу при его создании с группой в качестве родителя, так что эта функция обычно не используется.
Смотрите также addTo().
Adds a separator to the group.
Reimplemented from Q3Action::addTo().
Adds this action group to the widget w.
If isExclusive() is false or usesDropDown() is false, the actions within the group are added to the widget individually. For example, if the widget is a menu, the actions will appear as individual menu options, and if the widget is a toolbar, the actions will appear as toolbar buttons.
If both isExclusive() and usesDropDown() are true, the actions are presented either in a combobox (if w is a toolbar) or in a submenu (if w is a menu).
All actions should be added to the action group before the action group is added to the widget. If actions are added to the action group after the action group has been added to the widget these later actions will not appear.
See also setExclusive(), setUsesDropDown(), and removeFrom().
This function is called from the addTo() function when it has created a widget (actionWidget) for the child action a in the container.
Это перегруженная функция.
This function is called from the addTo() function when it has created a menu item for the child action at the index position index in the popup menu menu.
Reimplemented from Q3Action::addedTo().
Это перегруженная функция.
This function is called from the addTo() function when it has created a widget (actionWidget) in the container.
Reimplemented from Q3Action::addedTo().
Это перегруженная функция.
This function is called from the addTo() function when it has created a menu item at the index position index in the popup menu menu.
Переопределено из QObject::childEvent().
Use add(action) instead.
Reimplemented from Q3Action::removeFrom().
This signal is emitted from exclusive groups when toggle actions change state.
The argument is the action whose state changed to "on".
Смотрите также setExclusive(), isOn() и Q3Action::toggled().
Reimplemented from Q3Action::setEnabled().
Reimplemented from Q3Action::setIconSet().
Reimplemented from Q3Action::setMenuText().
Reimplemented from Q3Action::setOn().
Reimplemented from Q3Action::setText().
Reimplemented from Q3Action::setToggleAction().
Reimplemented from Q3Action::setToolTip().
Reimplemented from Q3Action::setVisible().
Reimplemented from Q3Action::setWhatsThis().
Авторские права © 2010 Nokia Corporation и/или её дочерние компании | Торговые марки | Qt 4.6.4 |
Попытка перевода Qt документации. Если есть желание присоединиться, или если есть замечания или пожелания, то заходите на форум: Перевод Qt документации на русский язык... Люди внесшие вклад в перевод: Команда переводчиков |