mirror of
https://github.com/hyprwm/hyprland-qtutils.git
synced 2024-12-26 21:09:49 +01:00
91 lines
2.2 KiB
QML
91 lines
2.2 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
|
|
FontMetrics { id: fontMetrics }
|
|
|
|
property var windowPadding: 10
|
|
|
|
minimumWidth: Math.max(fontMetrics.height * 10, mainLayout.Layout.minimumWidth) + mainLayout.anchors.margins * 2 + windowPadding * 2
|
|
minimumHeight: Math.max(fontMetrics.height * 10, mainLayout.Layout.minimumHeight) + mainLayout.anchors.margins * 2 + windowPadding * 2
|
|
maximumWidth: minimumWidth
|
|
maximumHeight: minimumHeight
|
|
visible: true
|
|
|
|
component Separator: Rectangle {
|
|
color: Qt.darker(system.windowText, 1.5)
|
|
}
|
|
|
|
component VSeparator: Separator {
|
|
implicitWidth: 1
|
|
Layout.fillHeight: true
|
|
Layout.topMargin: fontMetrics.height
|
|
Layout.bottomMargin: fontMetrics.height
|
|
}
|
|
|
|
component HSeparator: Separator {
|
|
implicitHeight: 1
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: fontMetrics.height * 8
|
|
Layout.rightMargin: fontMetrics.height * 8
|
|
}
|
|
|
|
SystemPalette {
|
|
id: system
|
|
colorGroup: SystemPalette.Active
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: mainLayout
|
|
spacing: fontMetrics.height
|
|
|
|
anchors {
|
|
fill: parent
|
|
margins: 4
|
|
}
|
|
|
|
Text {
|
|
font.pointSize: fontMetrics.height
|
|
color: system.windowText
|
|
text: dialog.dialogTitle
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
|
|
HSeparator {}
|
|
|
|
Text {
|
|
color: system.windowText
|
|
text: dialog.dialogText
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
|
|
Rectangle {
|
|
color: "transparent"
|
|
Layout.minimumHeight: 10
|
|
Layout.fillHeight: true
|
|
}
|
|
|
|
RowLayout {
|
|
spacing: 6
|
|
Layout.leftMargin: 20
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
Repeater {
|
|
model: dialog.dialogButtons
|
|
|
|
Button {
|
|
required property int index;
|
|
text: dialog.dialogButtons[index]
|
|
onClicked: (e) => {
|
|
dialog.onButtonPress(dialog.dialogButtons[index])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|