Files
LAIC/venv/Lib/site-packages/PySide6/qml/QtQuick/Controls/Fusion/ToolBar.qml
T
2026-04-29 07:19:21 +03:00

55 lines
1.7 KiB
QML

// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
import QtQuick
import QtQuick.Templates as T
import QtQuick.Controls.impl
import QtQuick.Controls.Fusion
import QtQuick.Controls.Fusion.impl
T.ToolBar {
id: control
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
implicitContentWidth + leftPadding + rightPadding)
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
implicitContentHeight + topPadding + bottomPadding)
leftPadding: SafeArea.margins.left + 6
rightPadding: SafeArea.margins.right + 6
topPadding: SafeArea.margins.top
+ (control.position === T.ToolBar.Footer ? 1 : 0)
bottomPadding: SafeArea.margins.bottom
+ (control.position === T.ToolBar.Header ? 1 : 0)
background: Rectangle {
implicitHeight: 26
gradient: Gradient {
GradientStop {
position: 0
color: Qt.lighter(control.palette.window, 1.04)
}
GradientStop {
position: 1
color: control.palette.window
}
}
Rectangle {
width: parent.width
height: 1
color: control.position === T.ToolBar.Header ? Fusion.lightShade : Fusion.darkShade
}
Rectangle {
y: parent.height - height
width: parent.width
height: 1
color: control.position === T.ToolBar.Header ? Fusion.darkShade : Fusion.lightShade
}
}
}