Qt:Документация 4.3.2/qaction

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QAction Class Reference
[модуль QtGui ]

The QAction class provides an abstract user interface action that can be inserted into widgets. More...

 #include <QAction>

Inherits QObject.

Inherited by QMenuItem and QWidgetAction.

[править] Открытые типы

  • enum ActionEvent { Trigger, Hover }
  • enum MenuRole { NoRole, TextHeuristicRole, ApplicationSpecificRole, AboutQtRole, ..., QuitRole }

[править] Свойства

  • 1 свойство унаследованное от QObject

[править] Открытые функции

  • 29 открытых функций унаследованных от QObject

[править] Открытые слоты

  • 1 открытый слот унаследованный от QObject

[править] Сигналы

  • 1 сигнал унаследованный от QObject

[править] Дополнительные унаследованные члены

  • 5 статических открытых члена унаследованных от QObject
  • 7 защищенных функций унаследованных от QObject

[править] Подробное описание

The QAction class provides an abstract user interface action that can be inserted into widgets.

In applications many common commands can be invoked via menus, toolbar buttons, and keyboard shortcuts. Since the user expects each command to be performed in the same way, regardless of the user interface used, it is useful to represent each command as an action.

Actions can be added to menus and toolbars, and will automatically keep them in sync. For example, in a word processor, if the user presses a Bold toolbar button, the Bold menu item will automatically be checked.

Actions can be created as independent objects, but they may also be created during the construction of menus; the QMenu class contains convenience functions for creating actions suitable for use as menu items.

A QAction may contain an icon, menu text, a shortcut, status text, "What's This?" text, and a tooltip. Most of these can be set in the constructor. They can also be set independently with setIcon(), setText(), setIconText(), setShortcut(), setStatusTip(), setWhatsThis(), and setToolTip(). For menu items, it is possible to set an individual font with setFont().

Actions are added to widgets using QWidget::addAction(). Note that an action must be added to a widget before it can be used; this is also true when the shortcut should be global (i.e., Qt::ApplicationShortcut as Qt::ShortcutContext).

Once a QAction has been created it should be added to the relevant menu and toolbar, then connected to the slot which will perform the action. For example:

     openAct = new QAction(QIcon(":/images/open.png"), tr("&amp;Open..."), this);
     openAct->setShortcut(tr("Ctrl+O"));
     openAct->setStatusTip(tr("Open an existing file"));
     connect(openAct, SIGNAL(triggered()), this, SLOT(open()));
 
     fileMenu->addAction(openAct);
     fileToolBar->addAction(openAct);

We recommend that actions are created as children of the window they are used in. In most cases actions will be children of the application's main window.

See also QMenu, QToolBar, and Application Example.


[править] Описание типов членов

[править]
enum QAction::ActionEvent

This enum type is used when calling QAction::activate()


Constant Value Description
QAction::Trigger 0 this will cause the QAction::triggered() signal to be emitted.
QAction::Hover 1 this will cause the QAction::hovered() signal to be emitted.

[править] enum QAction::MenuRole

This enum describes how an action should be moved into the application menu on Mac OS X.


Constant Value Description
QAction::NoRole 0 This action should not be put into the application menu
QAction::TextHeuristicRole 1 This action should be put in the application menu based on the action's text as described in the QMenuBar documentation.
QAction::ApplicationSpecificRole 2 This action should be put in the application menu with an application specific role
QAction::AboutQtRole 3 This action matches handles the "About Qt" menu item.
QAction::AboutRole 4 This action should be placed where the "About" menu item is in the application menu.
QAction::PreferencesRole 5 This action should be placed where the "Preferences..." menu item is in the application menu.
QAction::QuitRole 6 This action should be placed where the Quit menu item is in the application menu.

[править] Описание свойств

[править]
autoRepeat : bool

This property holds whether the action can auto repeat.

If true, the action will auto repeat when the keyboard shortcut combination is held down, provided that keyboard auto repeat is enabled on the system. The default value is true.

This property was introduced in Qt 4.2.

Функции доступа:

  • bool autoRepeat () const
  • void setAutoRepeat ( bool )

[править]
checkable : bool

This property holds whether the action is a checkable action.

A checkable action is one which has an on/off state. For example, in a word processor, a Bold toolbar button may be either on or off. An action which is not a toggle action is a command action; a command action is simply executed, e.g. file save. By default, this property is false.

In some situations, the state of one toggle action should depend on the state of others. For example, "Left Align", "Center" and "Right Align" toggle actions are mutually exclusive. To achieve exclusive toggling, add the relevant toggle actions to a QActionGroup with the QActionGroup::exclusive property set to true.

Функции доступа:

  • bool isCheckable () const
  • void setCheckable ( bool )

See also QAction::setChecked().

[править]
checked : bool

This property holds whether the action is checked.

Only checkable actions can be checked. By default, this is false (the action is unchecked).

Функции доступа:

  • bool isChecked () const
  • void setChecked ( bool )

See also checkable.

[править]
enabled : bool

This property holds whether the action is enabled.

Disabled actions cannot be chosen by the user. They do not disappear from menus or toolbars, but they are displayed in a way which indicates that they are unavailable. For example, they might be displayed using only shades of gray.

What's this? help on disabled actions is still available, provided that the QAction::whatsThis property is set.

Функции доступа:

  • bool isEnabled () const
  • void setEnabled ( bool )

[править]
font : QFont

This property holds the action's font.

The font property is used to render the text set on the QAction. The font will can be considered a hint as it will not be consulted in all cases based upon application and style.

Функции доступа:

  • QFont font () const
  • void setFont ( const QFont & font )

See also QAction::setText() and QStyle.

[править]
icon : QIcon

This property holds the action's icon.

In toolbars, the icon is used as the tool button icon; in menus, it is displayed to the left of the menu text. There is no default icon.

If a null icon ( QIcon::isNull() is passed into this function, the icon of the action is cleared.

Функции доступа:

  • QIcon icon () const
  • void setIcon ( const QIcon & icon )

[править]
iconText : QString

This property holds the action's descriptive icon text.

If QToolBar::toolButtonStyle is set to a value that permits text to be displayed, the text defined held in this property appears as a label in the relevant tool button.

It also serves as the default text in menus and tooltips if the action has not been defined with setText() or setToolTip(), and will also be used in toolbar buttons if no icon has been defined using setIcon().

If the icon text is not explicitly set, the action's normal text will be used for the icon text.

There is no default icon text.

Функции доступа:

  • QString iconText () const
  • void setIconText ( const QString & text )

See also setToolTip() and setStatusTip().

[править] menuRole : MenuRole

This property holds the action's menu role.

This indicates what role the action serves in the application menu on Mac OS X. By default all action have the TextHeuristicRole, which means that the action is added based on its text (see QMenuBar for more information).

The menu role can only be changed before the actions are put into the menu bar in Mac OS X (usually just before the first application window is shown).

This property was introduced in Qt 4.2.

Функции доступа:

  • MenuRole menuRole () const
  • void setMenuRole ( MenuRole menuRole )

[править]
shortcut : QKeySequence

This property holds the action's primary shortcut key.

Valid keycodes for this property can be found in Qt::Key and Qt::Modifier. There is no default shortcut key.

Функции доступа:

  • QKeySequence shortcut () const
  • void setShortcut ( const QKeySequence & shortcut )

[править]
shortcutContext : Qt::ShortcutContext

This property holds the context for the action's shortcut.

Valid values for this property can be found in Qt::ShortcutContext. The default value is Qt::WindowShortcut.

Функции доступа:

  • Qt::ShortcutContext shortcutContext () const
  • void setShortcutContext ( Qt::ShortcutContext context )

[править]
statusTip : QString

This property holds the action's status tip.

The status tip is displayed on all status bars provided by the action's top-level parent widget.

Функции доступа:

  • QString statusTip () const
  • void setStatusTip ( const QString & statusTip )

See also setToolTip() and showStatusText().

[править]
text : QString

This property holds the action's descriptive text.

If the action is added to a menu, the menu option will consist of the icon (if there is one), the text, and the shortcut (if there is one). If the text is not explicitly set in the constructor, or by using setText(), the action's description icon text will be used as text. There is no default text.

Функции доступа:

  • QString text () const
  • void setText ( const QString & text )

See also iconText.

[править]
toolTip : QString

This property holds the action's tooltip.

This text is used for the tooltip. If no tooltip is specified, the action's text is used.

Функции доступа:

  • QString toolTip () const
  • void setToolTip ( const QString & tip )

See also setStatusTip() and setShortcut().

[править]
visible : bool

This property holds whether the action can be seen (e.g. in menus and toolbars).

If visible is true the action can be seen (e.g. in menus and toolbars) and chosen by the user; if visible is false the action cannot be seen or chosen by the user.

Actions which are not visible are not grayed out; they do not appear at all.

Функции доступа:

  • bool isVisible () const
  • void setVisible ( bool )

[править]
whatsThis : QString

This property holds the action's "What's This?" help text.

The "What's This?" text is used to provide a brief description of the action. The text may contain rich text. There is no default "What's This?" text.

Функции доступа:

  • QString whatsThis () const
  • void setWhatsThis ( const QString & what )

See also QWhatsThis and Q3StyleSheet.


[править] Описание функций-членов

[править]
QAction::QAction ( QObject * parent )

Constructs an action with parent. If parent is an action group the action will be automatically inserted into the group.

[править]
QAction::QAction ( const QString & text, QObject * parent )

Constructs an action with some text and parent. If parent is an action group the action will be automatically inserted into the group.

The action uses a stripped version of text (e.g. "&Menu Option..." becomes "Menu Option") as descriptive text for tool buttons. You can override this by setting a specific description with setText(). The same text will be used for tooltips unless you specify a different text using setToolTip().

[править]
QAction::QAction ( const QIcon & icon, const QString & text, QObject * parent )

Constructs an action with an icon and some text and parent. If parent is an action group the action will be automatically inserted into the group.

The action uses a stripped version of text (e.g. "&Menu Option..." becomes "Menu Option") as descriptive text for tool buttons. You can override this by setting a specific description with setText(). The same text will be used for tooltips unless you specify a different text using setToolTip().

[править]
QAction::~QAction ()

Destroys the object and frees allocated resources.

[править]
QActionGroup * QAction::actionGroup () const

Returns the action group for this action. If no action group manages this action then 0 will be returned.

See also QActionGroup and QAction::setActionGroup().

[править]
void QAction::activate ( ActionEvent event )

Sends the relevant signals for ActionEvent event.

Action based widgets use this API to cause the QAction to emit signals as well as emitting their own.

[править]
QList< QWidget *> QAction::associatedWidgets () const

Returns a list of widgets this action has been added to.

This function was introduced in Qt 4.2.

See also QWidget::addAction().

[править]
void QAction::changed () [signal]

This signal is emitted when an action has changed. If you are only interested in actions in a given widget, you can watch for QWidget::actionEvent() sent with an QEvent::ActionChanged.

See also QWidget::actionEvent().

[править]
QVariant QAction::data () const

Returns the user data as set in QAction::setData.

See also setData().

[править]
void QAction::hover () [slot]

This is a convenience slot that calls activate(Hover).

[править]
void QAction::hovered () [signal]

This signal is emitted when an action is highlighted by the user; for example, when the user pauses with the cursor over a menu option, toolbar button, or presses an action's shortcut key combination.

See also QAction::activate().

[править]
bool QAction::isSeparator () const

Returns true if this action is a separator action; otherwise it returns false.

See also QAction::setSeparator().

[править] QMenu * QAction::menu () const

Returns the menu contained by this action. Actions that contain menus can be used to create menu items with submenus, or inserted into toolbars to create buttons with popup menus.

See also setMenu() and QMenu::addAction().

[править]
QWidget * QAction::parentWidget () const

Returns the parent widget.

[править]
void QAction::setActionGroup ( QActionGroup * group )

Sets this action group to group. The action will be automatically added to the group's list of actions.

Actions within the group will be mutually exclusive.

See also QActionGroup and QAction::actionGroup().

[править]
void QAction::setData ( const QVariant & userData )

Sets the action's internal data to the given userData.

See also data().

[править]
void QAction::setDisabled ( bool b ) [slot]

This is a convenience function for the enabled property, that is useful for signals--slots connections. If b is true the action is disabled; otherwise it is enabled.

[править]
void QAction::setMenu ( QMenu * menu )

Sets the menu contained by this action to the specified menu.

See also menu().

[править]
void QAction::setSeparator ( bool b )

If b is true then this action will be considered a separator.

How a separator is represented depends on the widget it is inserted into. Under most circumstances the text, submenu, and icon will be ignored for separator actions.

See also QAction::isSeparator().

[править]
void QAction::setShortcuts ( const QList< QKeySequence> & shortcuts )

Sets shortcuts as the list of shortcuts that trigger the action. The first element of the list is the primary shortcut.

This function was introduced in Qt 4.2.

See also shortcuts() and shortcut.

[править]
void QAction::setShortcuts ( QKeySequence::StandardKey key )

This is an overloaded member function, provided for convenience.

Sets a platform dependent list of shortcuts based on the key. The result of calling this function will depend on the currently running platform. Note that more than one shortcut can assigned by this action. If only the primary shortcut is required, use setShortcut instead.

This function was introduced in Qt 4.2.

See also QKeySequence::keyBindings().

[править]
QList< QKeySequence> QAction::shortcuts () const

Returns the list of shortcuts, with the primary shortcut as the first element of the list.

This function was introduced in Qt 4.2.

See also setShortcuts().

[править]
bool QAction::showStatusText ( QWidget * widget = 0 )

Updates the relevant status bar for the widget specified by sending a QStatusTipEvent to its parent widget. Returns true if an event was sent; otherwise returns false.

If a null widget is specified, the event is sent to the action's parent.

See also statusTip.

[править]
void QAction::toggle () [slot]

This is a convenience function for the checked property. Connect to it to change the checked state to its opposite state.

[править]
void QAction::toggled ( bool checked ) [signal]

This signal is emitted whenever a checkable action changes its isChecked() status. This can be the result of a user interaction, or because setChecked() was called.

checked is true if the action is checked, or false if the action is unchecked.

See also QAction::activate(), QAction::triggered(), and checked.

[править]
void QAction::trigger () [slot]

This is a convenience slot that calls activate(Trigger).

[править]
void QAction::triggered ( bool checked = false ) [signal]

This signal is emitted when an action is activated by the user; for example, when the user clicks a menu option, toolbar button, or presses an action's shortcut key combination, or when trigger() was called. Notably, it is not emitted when setChecked() or toggle() is called.

If the action is checkable, checked is true if the action is checked, or false if the action is unchecked.

See also QAction::activate(), QAction::toggled(), and checked.


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2