67 lines
2.3 KiB
QML
67 lines
2.3 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.Imagine
|
|
import QtQuick.Controls.Imagine.impl
|
|
|
|
T.GroupBox {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
implicitContentWidth + leftPadding + rightPadding,
|
|
implicitLabelWidth + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
implicitContentHeight + topPadding + bottomPadding)
|
|
|
|
topPadding: ((background as NinePatchImage)?.topPadding ?? 0) + (implicitLabelWidth > 0 ? implicitLabelHeight + spacing : 0)
|
|
leftPadding: ((background as NinePatchImage)?.leftPadding ?? 0)
|
|
rightPadding: ((background as NinePatchImage)?.rightPadding ?? 0)
|
|
bottomPadding: ((background as NinePatchImage)?.bottomPadding ?? 0)
|
|
|
|
label: Label {
|
|
width: control.width
|
|
|
|
topPadding: background.topPadding
|
|
leftPadding: background.leftPadding
|
|
rightPadding: background.rightPadding
|
|
bottomPadding: background.bottomPadding
|
|
|
|
text: control.title
|
|
elide: Text.ElideRight
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
color: control.palette.windowText
|
|
|
|
background: NinePatchImage {
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
source: Imagine.url + "groupbox-title"
|
|
NinePatchImageSelector on source {
|
|
states: [
|
|
{"disabled": !control.enabled},
|
|
{"mirrored": control.mirrored}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|
|
background: NinePatchImage {
|
|
x: -leftInset
|
|
y: control.topPadding - control.bottomPadding - topInset
|
|
width: control.width + leftInset + rightInset
|
|
height: control.height + topInset + bottomInset - control.topPadding + control.bottomPadding
|
|
|
|
source: Imagine.url + "groupbox-background"
|
|
NinePatchImageSelector on source {
|
|
states: [
|
|
{"disabled": !control.enabled},
|
|
{"mirrored": control.mirrored}
|
|
]
|
|
}
|
|
}
|
|
}
|