IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QMenu Class

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QMenu Class

  • Header: QMenu

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Widgets)

    target_link_libraries(mytarget PRIVATE Qt6::Widgets)

  • qmake: QT += widgets

  • Inherits: QWidget

  • Inherited By:

  • Group: QMenu is part of mainwindow-classes, basicwidgets

Detailed Description

Image non disponible

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.

Actions

A menu consists of a list of action items. Actions are added with the addAction(), addActions() and insertAction() functions. 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".

The existing actions held by a menu can be found with actions().

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

When inserting action items you usually specify a receiver and a slot. The receiver will be notified whenever the item is triggered(). In addition, QMenu provides two signals, triggered() and hovered(), 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.

Widgets can be inserted into menus with the QWidgetAction class. Instances of this class are used to hold widgets, and are inserted into menus with the addAction() overload that takes a QAction. If the QWidgetAction fires the triggered() signal, the menu will close.

To make QMenu visible on the screen, exec() or popup() should be used instead of show() or setVisible(). To hide or disable the menu in the menubar, or in another menu to which it was added as a submenu, use the respective properties of menuAction() instead.

QMenu on macOS with Qt Build Against Cocoa

QMenu can be inserted only once in a menu/menubar. Subsequent insertions will have no effect or will result in a disabled menu item.

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

Property Documentation

 

icon : QIcon

This property holds the icon of the menu

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

By default, if no icon is explicitly set, this property contains a null icon.

Access functions:

  • icon() const

  • void setIcon(const &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.

By default, this property is true.

Access functions:

  • bool separatorsCollapsible() const

  • void setSeparatorsCollapsible(bool collapse)

tearOffEnabled : bool

This property holds whether the menu supports being torn off

When true, the menu contains a special tear-off item (often shown as a dashed line at the top of the menu) that creates a copy of the menu when it 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.

By default, this property is false.

Access functions:

  • 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().

By default, this property contains an empty string.

Access functions:

  • title() const

  • void setTitle(const &title)

[since 5.1] toolTipsVisible : bool

This property holds whether tooltips of menu actions should be visible

This property specifies whether action menu entries show their tooltip.

By default, this property is false.

This property was introduced in Qt 5.1.

Access functions:

  • bool toolTipsVisible() const

  • void setToolTipsVisible(bool visible)

Member Function Documentation

 

[explicit] QMenu::QMenu(QWidget *parent = nullptr)

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).

[explicit] QMenu::QMenu(const QString &title, QWidget *parent = nullptr)

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

See also title

[virtual] QMenu::~QMenu()

Destroys the menu.

void QMenu::aboutToHide()

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

See Also

See also aboutToShow(), hide()

void QMenu::aboutToShow()

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

See Also

See also aboutToHide(), show()

QAction *QMenu::actionAt(const QPoint &pt) const

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

[override virtual protected] void QMenu::actionEvent(QActionEvent *e)

QRect QMenu::actionGeometry(QAction *act) const

Returns the geometry of action act.

QAction *QMenu::activeAction() const

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

See Also

See also setActiveAction()

QAction *QMenu::addMenu(QMenu *menu)

This convenience function adds menu as a submenu to this menu. It returns menu's menuAction(). This menu does not take ownership of menu.

See Also

QMenu *QMenu::addMenu(const QString &title)

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

See Also

QMenu *QMenu::addMenu(const QIcon &icon, const QString &title)

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

See Also

[since 5.1] QAction *QMenu::addSection(const QString &text)

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

The rendering of the hint is style and platform dependent. Widget styles can use the text information in the rendering for sections, or can choose to ignore it and render sections like simple separators.

QMenu takes ownership of the returned QAction.

This function was introduced in Qt 5.1.

See Also

See also QWidget::addAction()

[since 5.1] QAction *QMenu::addSection(const QIcon &icon, const QString &text)

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

The rendering of the hints is style and platform dependent. Widget styles can use the text and icon information in the rendering for sections, or can choose to ignore them and render sections like simple separators.

QMenu takes ownership of the returned QAction.

This function was introduced in Qt 5.1.

See Also

See also QWidget::addAction()

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.

QMenu takes ownership of the returned QAction.

See Also

See also QWidget::addAction()

[override virtual protected] void QMenu::changeEvent(QEvent *e)

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

See also removeAction()

[protected] int QMenu::columnCount() const

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

See also setDefaultAction()

[override virtual protected] void QMenu::enterEvent(QEnterEvent *)

[override virtual protected] bool QMenu::event(QEvent *e)

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 nullptr 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:

 
Sélectionnez
exec(QCursor::pos());

or aligned to a widget:

 
Sélectionnez
exec(somewidget.mapToGlobal(QPoint(0,0)));

or in reaction to a QMouseEvent *e:

 
Sélectionnez
exec(e->globalPos());

QAction *QMenu::exec(const QPoint &p, QAction *action = nullptr)

This is an overloaded function.

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 nullptr 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:

 
Sélectionnez
exec(QCursor::pos());

or aligned to a widget:

 
Sélectionnez
exec(somewidget.mapToGlobal(QPoint(0, 0)));

or in reaction to a QMouseEvent *e:

 
Sélectionnez
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

See also popup(), QWidget::mapToGlobal()

[static] QAction *QMenu::exec(const QList<QAction *> &actions, const QPoint &pos, QAction *at = nullptr, QWidget *parent = nullptr)

This is an overloaded function.

Executes a 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. parent is the menu's parent widget; specifying the parent will provide context when pos alone is not enough to decide where the menu should go (e.g., with multiple desktops or when the parent is embedded in QGraphicsView).

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

This is equivalent to:

 
Sélectionnez
QMenu menu;
QAction *at = actions[0]; // Assumes actions is not empty
for (QAction *a : std::as_const(actions))
    menu.addAction(a);
menu.exec(pos, at);
See Also

See also popup(), QWidget::mapToGlobal()

[override virtual protected] bool QMenu::focusNextPrevChild(bool next)

[override virtual protected] void QMenu::hideEvent(QHideEvent *)

void QMenu::hideTearOffMenu()

This function will forcibly hide the torn off menu making it disappear from the user's desktop.

See Also

void QMenu::hovered(QAction *action)

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

See also triggered(), QAction::hovered()

[virtual protected] void QMenu::initStyleOption(QStyleOptionMenuItem *option, const QAction *action) const

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

QAction *QMenu::insertMenu(QAction *before, QMenu *menu)

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

See Also

[since 5.1] QAction *QMenu::insertSection(QAction *before, const QString &text)

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

The rendering of the hint is style and platform dependent. Widget styles can use the text information in the rendering for sections, or can choose to ignore it and render sections like simple separators.

QMenu takes ownership of the returned QAction.

This function was introduced in Qt 5.1.

See Also

[since 5.1] QAction *QMenu::insertSection(QAction *before, const QIcon &icon, const QString &text)

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

The rendering of the hints is style and platform dependent. Widget styles can use the text and icon information in the rendering for sections, or can choose to ignore them and render sections like simple separators.

QMenu takes ownership of the returned QAction.

This function was introduced in Qt 5.1.

See Also

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.

QMenu takes ownership of the returned QAction.

See Also

bool QMenu::isEmpty() const

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

See Also

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

[override virtual protected] void QMenu::keyPressEvent(QKeyEvent *e)

[override virtual protected] void QMenu::leaveEvent(QEvent *)

QAction *QMenu::menuAction() const

[static] QMenu *QMenu::menuInAction(const QAction *action)

In widget applications, actions that contain menus can be used to create menu items with submenus, or inserted into toolbars to create buttons with popup menus.

[override virtual protected] void QMenu::mouseMoveEvent(QMouseEvent *e)

[override virtual protected] void QMenu::mousePressEvent(QMouseEvent *e)

[override virtual protected] void QMenu::mouseReleaseEvent(QMouseEvent *e)

[override virtual protected] void QMenu::paintEvent(QPaintEvent *e)

void QMenu::popup(const QPoint &p, QAction *atAction = nullptr)

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

See also QWidget::mapToGlobal(), exec()

void QMenu::setActiveAction(QAction *act)

Sets the currently highlighted action to act.

See Also

See also activeAction()

[since 5.2] void QMenu::setAsDockMenu()

Set this menu to be the dock menu available by option-clicking on the application dock icon. Available on macOS only.

This function was introduced in Qt 5.2.

void QMenu::setDefaultAction(QAction *act)

This sets the default action to act. The default action may have a visual cue, depending on the current QStyle. A default action usually indicates what will happen by default when a drop occurs.

See Also

See also defaultAction()

[since 5.7] void QMenu::showTearOffMenu(const QPoint &pos)

This function will forcibly show the torn off menu making it appear on the user's desktop at the specified global position pos.

This function was introduced in Qt 5.7.

See Also

[since 5.7] void QMenu::showTearOffMenu()

This is an overloaded function.

This function will forcibly show the torn off menu making it appear on the user's desktop under the mouse currsor.

This function was introduced in Qt 5.7.

See Also

[override virtual] QSize QMenu::sizeHint() const

Reimplements an access function for property: QWidget::sizeHint.

[override virtual protected] void QMenu::timerEvent(QTimerEvent *e)

[since 5.2] NSMenu *QMenu::toNSMenu()

Returns the native NSMenu for this menu. Available on macOS only.

Qt sets the delegate on the native menu. If you need to set your own delegate, make sure you save the original one and forward any calls to it.

This function was introduced in Qt 5.2.

void QMenu::triggered(QAction *action)

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".

This signal is emitted for the main parent menu in a hierarchy. Hence, only the parent menu needs to be connected to a slot; sub-menus need not be connected.

See Also

See also hovered(), QAction::triggered()

[override virtual protected] void QMenu::wheelEvent(QWheelEvent *e)

Obsolete Members for QMenu

The following members of class QMenu are deprecated. We strongly advise against using them in new code.

Obsolete Member Function Documentation

 
QAction *QMenu::addAction(const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut)

This function is deprecated. We strongly advise against using it in new code.

Use QWidget::addAction(text, shortcut, receiver, member) instead.

QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *receiver, const char *member, const QKeySequence &shortcut)

This function is deprecated. We strongly advise against using it in new code.

Use QWidget::addAction(icon, text, shortcut, receiver, member) instead.

[since 5.6] QAction *QMenu::addAction(const QString &text, Functor functor, const QKeySequence &shortcut)

This function is deprecated. We strongly advise against using it in new code.

Use QWidget::addAction(text, shortcut, functor) instead.

This function was introduced in Qt 5.6.

[since 5.6] QAction *QMenu::addAction(const QString &text, const QObject *context, Functor functor, const QKeySequence &shortcut)

This function is deprecated. We strongly advise against using it in new code.

Use QWidget::addAction(text, shortcut, context, functor) instead.

This function was introduced in Qt 5.6.

[since 5.6] QAction *QMenu::addAction(const QIcon &icon, const QString &text, Functor functor, const QKeySequence &shortcut)

This function is deprecated. We strongly advise against using it in new code.

Use QWidget::addAction(icon, text, shortcut, functor) instead.

This function was introduced in Qt 5.6.

[since 5.6] QAction *QMenu::addAction(const QIcon &icon, const QString &text, const QObject *context, Functor functor, const QKeySequence &shortcut)

This function is deprecated. We strongly advise against using it in new code.

Use QWidget::addAction(icon, text, shortcut, context, functor) instead.

This function was introduced in Qt 5.6.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+