summaryrefslogtreecommitdiff
path: root/ToolBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ToolBar.qml')
-rw-r--r--ToolBar.qml17
1 files changed, 17 insertions, 0 deletions
diff --git a/ToolBar.qml b/ToolBar.qml
new file mode 100644
index 0000000..4834c70
--- /dev/null
+++ b/ToolBar.qml
@@ -0,0 +1,17 @@
+import QtQuick 2.15
+import QtQuick.Templates 2.15
+import Bootstrap 5.3
+
+ToolBar {
+ id: control
+ implicitWidth: Math.max(implicitBackgroundWidth
+ + leftInset + rightInset,
+ contentWidth + leftPadding + rightPadding)
+ implicitHeight: Math.max(implicitBackgroundHeight
+ + topInset + bottomInset,
+ contentHeight + topPadding + bottomPadding)
+ background: Rectangle {
+ implicitHeight: 40
+ color: control.Bootstrap.bodyBg
+ }
+}