ToolBar QML Type▲
-
Import Statement: import QtQuick.Controls 1.4
-
Since: Qt 5.1
-
Inherits: FocusScope
-
Group: ToolBar is part of Application Window, Buttons and Controls
Detailed Description▲
The common way of using ToolBar is in relation to ApplicationWindow. It provides styling and is generally designed to work well with ToolButton as well as other controls.
Note that the ToolBar does not provide a layout of its own, but requires you to position its contents, for instance by creating a RowLayout.
If only a single item is used within the ToolBar, it will resize to fit the implicitHeight of its contained item. This makes it particularly suitable for use together with layouts. Otherwise the height is platform dependent.
ApplicationWindow {
...
toolBar
:
ToolBar {
RowLayout {
anchors.fill: parent
ToolButton {
iconSource
:
"new.png"
}
ToolButton {
iconSource
:
"open.png"
}
ToolButton {
iconSource
:
"save-as.png"
}
Item {
Layout.fillWidth: true
}
CheckBox {
text
:
"Enabled"
checked
:
true
Layout.alignment: Qt.AlignRight
}
}
}
}