MenuBar QML Type | Qt Labs Platform 5.15.18 (original) (raw)

A native menubar. More...

Import Statement: import Qt.labs.platform 1.1
Since: Qt 5.8
Inherits: QtObject

Properties

Methods

Detailed Description

The MenuBar type provides a QML API for native platform menubars.

A menubar consists of a list of drop-down menus.

MenuBar { id: menuBar

Menu {
    id: fileMenu
    title: qsTr("File")
    // ...
}

Menu {
    id: editMenu
    title: qsTr("&Edit")
    // ...
}

Menu {
    id: viewMenu
    title: qsTr("&View")
    // ...
}

Menu {
    id: helpMenu
    title: qsTr("&Help")
    // ...
}

}

MenuBar is currently available on the following platforms:

Note: Types in Qt.labs modules are not guaranteed to remain compatible in future versions.

See also Menu.

Property Documentation

[default] data : list<Object>

This default property holds the list of all objects declared as children of the menubar. The data property includes objects that are not Menu instances, such as Timer and QtObject.

See also menus.

This property holds the list of menus in the menubar.

This property holds the menubar's window.

Unless explicitly set, the window is automatically resolved by iterating the QML parent objects until a Window or an Item that has a window is found.

Method Documentation

Adds a menu to end of the menubar.

Removes all menus from the menubar.

void insertMenu(int index, Menu menu)

Inserts a menu at the specified index in the menubar.

void removeMenu(Menu menu)

Removes a menu from the menubar.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.