ToolButton QML Type

Provides a button type that is typically used within a ToolBar. More...

Import Statement: import QtQuick.Controls 1.4
Since: Qt 5.1
Inherits:

Button

Detailed Description

ToolButton is functionally similar to Button, but can provide a look that is more suitable within a ToolBar.

ApplicationWindow {
    ...
    toolBar: ToolBar {
        RowLayout {
            ToolButton {
                iconSource: "new.png"
            }
            ToolButton {
                iconSource: "open.png"
            }
            ToolButton {
                iconSource: "save-as.png"
            }
            Item { Layout.fillWidth: true }
            CheckBox {
                text: "Enabled"
                checked: true
            }
        }
    }
}

You can create a custom appearance for a ToolButton by assigning a ButtonStyle.

© 2023 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.