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

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

Версия от 14:37, 6 ноября 2008; Root (Обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

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

The QMenu class provides a menu widget for use in menu bars, context menus, and other popup menus. More...

 #include <QMenu>

Inherits QWidget.

Inherited by Q3PopupMenu.

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

  • 56 свойства унаследованных от QWidget
  • 1 свойство унаследованное от QObject

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

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

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

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

[править] Статические открытые члены

  • QAction * exec ( QList<QAction *> actions, const QPoint & pos, QAction * at = 0 )
  • 4 статических открытых члена унаследованных от QWidget
  • 5 статических открытых члена унаследованных от QObject

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

  • 38 защищенных функций унаследованных от QWidget
  • 7 защищенных функций унаследованных от QObject
  • 1 защищенная функция унаследованна от QPaintDevice

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

  • 19 открытых слотов унаследованных от QWidget
  • 1 открытый слот унаследованный от QObject
  • 1 защищенный слот унаследованный от QWidget

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

The QMenu class provides a menu widget for use in menu bars, context menus, and other popup menus.

A menu widget is a selection menu. It can be either a pull-down menu in a menu bar or a standalone context menu. Pull-down menus are shown by the menu bar when the user clicks on the respective item or presses the specified shortcut key. Use QMenuBar::addMenu() to insert a menu into a menu bar. Context menus are usually invoked by some special keyboard key or by right-clicking. They can be executed either asynchronously with popup() or synchronously with exec(). Menus can also be invoked in response to button presses; these are just like context menus except for how they are invoked.

Файл:Plastique-menu.png

center

center

A menu shown in Plastique widget style, Windows XP widget style, and Macintosh widget style.

A menu consists of a list of action items. Actions are added with addAction(). An action is represented vertically and rendered by QStyle. In addition, actions can have a text label, an optional icon drawn on the very left side, and shortcut key sequence such as "Ctrl+X".

There are three kinds of action items: separators, actions that show a submenu, and actions that perform an action. Separators are inserted with addSeparator(). For submenus use addMenu(). All other items are considered action items.

When inserting action items you usually specify a receiver and a slot. The receiver will be notifed whenever the item is triggered(). In addition, QMenu provides two signals, activated() and highlighted(), which signal the QAction that was triggered from the menu.

You clear a menu with clear() and remove individual action items with removeAction().

A QMenu can also provide a tear-off menu. A tear-off menu is a top-level window that contains a copy of the menu. This makes it possible for the user to "tear off" frequently used menus and position them in a convenient place on the screen. If you want this functionality for a particular menu, insert a tear-off handle with setTearOffEnabled(). When using tear-off menus, bear in mind that the concept isn't typically used on Microsoft Windows so some users may not be familiar with it. Consider using a QToolBar instead.

See the Menus example for an example of how to use QMenuBar and QMenu in your application.

Important inherited functions: addAction(), removeAction(), clear(), addSeparator(), and addMenu().

See also QMenuBar, GUI Design Handbook: Menu, Drop-Down and Pop-Up, Application Example, Menus Example, and Recent Files Example.


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

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

This property holds the icon of the menu.

This is equivalent to the QAction::icon property of the menuAction().

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

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

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

This property holds whether consecutive separators should be collapsed.

This property specifies whether consecutive separators in the menu should be visually collapsed to a single one. Separators at the beginning or the end of the menu are also hidden.

This property was introduced in Qt 4.2.

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

  • bool separatorsCollapsible () const
  • void setSeparatorsCollapsible ( bool collapse )

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

This property holds whether the menu supports being torn off.

When true, QMenu has a special menu item (often shown as a dashed line at the top of the menu) that creates a copy of the menu when the tear-off menu item is triggered. This "torn-off" copy lives in a separate window. It contains the same menu items as the original menu, with the exception of the tear-off handle.

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

  • bool isTearOffEnabled () const
  • void setTearOffEnabled ( bool )

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

This property holds the title of the menu.

This is equivalent to the QAction::text property of the menuAction().

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

  • QString title () const
  • void setTitle ( const QString & title )

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

[править]
QMenu::QMenu ( QWidget * parent = 0 )

Constructs a menu with parent parent.

Although a popup menu is always a top-level widget, if a parent is passed the popup menu will be deleted when that parent is destroyed (as with any other QObject).

[править]
QMenu::QMenu ( const QString & title, QWidget * parent = 0 )

Constructs a menu with a title and a parent.

Although a popup menu is always a top-level widget, if a parent is passed the popup menu will be deleted when that parent is destroyed (as with any other QObject).

See also title.

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

Destroys the menu.

[править]
void QMenu::aboutToHide () [signal]

This signal is emitted just before the menu is hidden from the user.

This function was introduced in Qt 4.2.

See also aboutToShow() and hide().

[править]
void QMenu::aboutToShow () [signal]

This signal is emitted just before the menu is shown to the user.

See also aboutToHide() and show().

[править]
QAction * QMenu::actionAt ( const QPoint & pt ) const

Returns the item at pt; returns 0 if there is no item there.

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

Returns the geometry of action act.

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

Returns the currently highlighted action, or 0 if no action is currently highlighted.

See also setActiveAction().

[править]
QAction * QMenu::addAction ( const QString & text )

This convenience function creates a new action with text. The function adds the newly created action to the menu's list of actions, and returns it.

See also QWidget::addAction().

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

This is an overloaded member function, provided for convenience.

This convenience function creates a new action with an icon and some text. The function adds the newly created action to the menu's list of actions, and returns it.

See also QWidget::addAction().

[править]
QAction * QMenu::addAction ( const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0 )

This is an overloaded member function, provided for convenience.

This convenience function creates a new action with the text text and an optional shortcut shortcut. The action's triggered() signal is connected to the receiver's member slot. The function adds the newly created action to the menu's list of actions and returns it.

See also QWidget::addAction().

[править]
QAction * QMenu::addAction ( const QIcon & icon, const QString & text, const QObject * receiver, const char * member, const QKeySequence & shortcut = 0 )

This is an overloaded member function, provided for convenience.

This convenience function creates a new action with an icon and some text and an optional shortcut shortcut. The action's triggered() signal is connected to the member slot of the receiver object. The function adds the newly created action to the menu's list of actions, and returns it.

See also QWidget::addAction().

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

This is an overloaded member function, provided for convenience.

Appends the action action to the menu's list of actions.

See also QMenuBar::addAction() and QWidget::addAction().

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

This convenience function adds menu as a submenu to this menu. It returns the menus menuAction().

See also QWidget::addAction() and QMenu::menuAction().

[править]
QMenu * QMenu::addMenu ( const QString & title )

This is an overloaded member function, provided for convenience.

Appends a new QMenu with title to the menu. The menu takes ownership of the menu. Returns the new menu.

See also QWidget::addAction() and QMenu::menuAction().

[править]
QMenu * QMenu::addMenu ( const QIcon & icon, const QString & title )

This is an overloaded member function, provided for convenience.

Appends a new QMenu with icon and title to the menu. The menu takes ownership of the menu. Returns the new menu.

See also QWidget::addAction() and QMenu::menuAction().

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

This convenience function creates a new separator action, i.e. an action with QAction::isSeparator() returning true, and adds the new action to this menu's list of actions. It returns the newly created action.

See also QWidget::addAction().

[править]
void QMenu::clear ()

Removes all the menu's actions. Actions owned by the menu and not shown in any other widget are deleted.

See also removeAction().

[править]
int QMenu::columnCount () const [protected]

If a menu does not fit on the screen it lays itself out so that it does fit. It is style dependent what layout means (for example, on Windows it will use multiple columns).

This functions returns the number of columns necessary.

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

Returns the current default action.

See also setDefaultAction().

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

Executes this menu synchronously.

This is equivalent to exec(pos()).

This returns the triggered QAction in either the popup menu or one of its submenus, or 0 if no item was triggered (normally because the user pressed Esc).

In most situations you'll want to specify the position yourself, for example, the current mouse position:

 exec(QCursor::pos());

or aligned to a widget:

 exec(somewidget.mapToGlobal(QPoint(0,0)));

or in reaction to a QMouseEvent *e:

 exec(e->globalPos());

[править]
QAction * QMenu::exec ( const QPoint & p, QAction * action = 0 )

This is an overloaded member function, provided for convenience.

Executes this menu synchronously.

Pops up the menu so that the action action will be at the specified global position p. To translate a widget's local coordinates into global coordinates, use QWidget::mapToGlobal().

This returns the triggered QAction in either the popup menu or one of its submenus, or 0 if no item was triggered (normally because the user pressed Esc).

Note that all signals are emitted as usual. If you connect a QAction to a slot and call the menu's exec(), you get the result both via the signal-slot connection and in the return value of exec().

Common usage is to position the menu at the current mouse position:

 exec(QCursor::pos());

or aligned to a widget:

 exec(somewidget.mapToGlobal(QPoint(0, 0)));

or in reaction to a QMouseEvent *e:

 exec(e->globalPos());

When positioning a menu with exec() or popup(), bear in mind that you cannot rely on the menu's current size(). For performance reasons, the menu adapts its size only when necessary. So in many cases, the size before and after the show is different. Instead, use sizeHint() which calculates the proper size depending on the menu's current contents.

See also popup() and QWidget::mapToGlobal().

[править]
QAction * QMenu::exec ( QList< QAction *> actions, const QPoint & pos, QAction * at = 0 ) [static]

This is an overloaded member function, provided for convenience.

Executes this menu synchronously.

The menu's actions are specified by the list of actions. The menu will pop up so that the specified action, at, appears at global position pos. If at is not specified then the menu appears at position pos.

The function returns the triggered QAction in either the popup menu or one of its submenus, or 0 if no item was triggered (normally because the user pressed Esc).

This is equivalent to:

 QMenu menu;
 QAction *at = actions[0]; // Assumes actions is not empty
 foreach (QAction *a, actions)
    menu.addAction(a);
 menu.exec(pos, at);

See also popup() and QWidget::mapToGlobal().

[править]
void QMenu::hideTearOffMenu ()

This function will forcibly hide the torn off menu making it disappear from the users desktop.

See also isTearOffMenuVisible() and isTearOffEnabled().

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

This signal is emitted when a menu action is highlighted; action is the action that caused the signal to be emitted.

Often this is used to update status information.

See also triggered() and QAction::hovered().

[править]
void QMenu::initStyleOption ( QStyleOptionMenuItem * option, const QAction * action ) const [protected]

Initialize option with the values from this menu and information from action. This method is useful for subclasses when they need a QStyleOptionMenuItem, but don't want to fill in all the information themselves.

See also QStyleOption::initFrom() and QMenuBar::initStyleOption().

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

This convenience function inserts menu before action before and returns the menus menuAction().

See also QWidget::insertAction() and addMenu().

[править]
QAction * QMenu::insertSeparator ( QAction * before )

This convenience function creates a new separator action, i.e. an action with QAction::isSeparator() returning true. The function inserts the newly created action into this menu's list of actions before action before and returns it.

See also QWidget::insertAction() and addSeparator().

[править]
bool QMenu::isEmpty () const

Returns true if there are no actions inserted into the menu, false otherwise.

This function was introduced in Qt 4.2.

See also QWidget::actions().

[править]
bool QMenu::isTearOffMenuVisible () const

When a menu is torn off a second menu is shown to display the menu contents in a new window. When the menu is in this mode and the menu is visible returns true; otherwise false.

See also hideTearOffMenu() and isTearOffEnabled().

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

Returns the action associated with this menu.

[править] void QMenu::popup ( const QPoint & p, QAction * atAction = 0 )

Displays the menu so that the action atAction will be at the specified global position p. To translate a widget's local coordinates into global coordinates, use QWidget::mapToGlobal().

When positioning a menu with exec() or popup(), bear in mind that you cannot rely on the menu's current size(). For performance reasons, the menu adapts its size only when necessary, so in many cases, the size before and after the show is different. Instead, use sizeHint() which calculates the proper size depending on the menu's current contents.

See also QWidget::mapToGlobal() and exec().

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

Sets the currently highlighted action to act.

See also activeAction().

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

This will set the default action to act. The default action may have a visual queue depending on the current QStyle. A default action is usually meant to indicate what will defaultly happen on a drop, as shown in a context menu.

See also defaultAction().

[править]
void QMenu::triggered ( QAction * action ) [signal]

This signal is emitted when an action in this menu is triggered; action is the action that caused the signal to be emitted.

Normally, you connect each menu action's triggered() signal to its own custom slot, but sometimes you will want to connect several actions to a single slot, for example, when you have a group of closely related actions, such as "left justify", "center", "right justify".

See also hovered() and QAction::triggered().


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2