You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
3.4 KiB
126 lines
3.4 KiB
/* |
|
* SPDX-FileCopyrightText: 2021 Devin Lin <espidev@gmail.com> |
|
* SPDX-FileCopyrightText: 2022 Harald Sitter <sitter@kde.org> |
|
* |
|
* SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
import QtQuick 2.15 |
|
import QtQuick.Controls 2.15 |
|
import QtQuick.Layouts 1.15 |
|
import QtQuick.Window 2.15 |
|
import QtGraphicalEffects 1.12 |
|
import org.kde.kirigami 2.18 as Kirigami |
|
|
|
/** |
|
* Dialog used on desktop. Uses SSDs (as opposed to CSDs). |
|
*/ |
|
Item { |
|
id: root |
|
|
|
property alias mainItem: contentsControl.contentItem |
|
property alias mainText: titleHeading.text |
|
property alias subtitle: subtitleLabel.text |
|
property alias iconName: icon.source |
|
property list<Kirigami.Action> actions |
|
readonly property alias dialogButtonBox: footerButtonBox |
|
|
|
property Window window |
|
implicitHeight: column.implicitHeight |
|
implicitWidth: column.implicitWidth |
|
readonly property real minimumHeight: column.Layout.minimumHeight + mainItem.implicitHeight + footerButtonBox.implicitHeight |
|
readonly property real minimumWidth: Math.min(Math.round(Screen.width / 3), column.Layout.minimumWidth + mainItem.implicitWidth + footerButtonBox.implicitWidth) |
|
readonly property int flags: Qt.Dialog |
|
property alias standardButtons: footerButtonBox.standardButtons |
|
readonly property int spacing: Kirigami.Units.largeSpacing // standard KDE dialog margins |
|
|
|
function present() { |
|
window.show() |
|
} |
|
|
|
Kirigami.Separator { |
|
anchors { |
|
top: parent.top |
|
left: parent.left |
|
right: parent.right |
|
} |
|
} |
|
|
|
ColumnLayout { |
|
id: column |
|
anchors.fill: parent |
|
anchors.margins: root.spacing |
|
|
|
spacing: root.spacing |
|
|
|
// Header area |
|
RowLayout { |
|
spacing: root.spacing |
|
|
|
Kirigami.Icon { |
|
id: icon |
|
visible: source |
|
implicitWidth: Kirigami.Units.iconSizes.large |
|
implicitHeight: Kirigami.Units.iconSizes.large |
|
} |
|
|
|
ColumnLayout { |
|
Layout.fillWidth: true |
|
|
|
spacing: Kirigami.Units.smallSpacing |
|
|
|
Kirigami.Heading { |
|
id: titleHeading |
|
text: root.title |
|
Layout.fillWidth: true |
|
level: 2 |
|
wrapMode: Text.Wrap |
|
elide: Text.ElideRight |
|
} |
|
|
|
Label { |
|
id: subtitleLabel |
|
Layout.fillWidth: true |
|
wrapMode: Text.Wrap |
|
elide: Text.ElideRight |
|
visible: text.length > 0 |
|
} |
|
} |
|
} |
|
|
|
// Main content area, to be provided by the implementation |
|
Control { |
|
id: contentsControl |
|
|
|
Layout.fillWidth: true |
|
Layout.fillHeight: true |
|
leftPadding: 0 |
|
rightPadding: 0 |
|
bottomPadding: 0 |
|
topPadding: 0 |
|
} |
|
|
|
// Footer area with buttons |
|
DialogButtonBox { |
|
id: footerButtonBox |
|
|
|
Layout.fillWidth: true |
|
leftPadding: 0 |
|
rightPadding: 0 |
|
bottomPadding: 0 |
|
topPadding: 0 |
|
|
|
onAccepted: root.window.accept() |
|
onRejected: root.window.reject() |
|
|
|
Repeater { |
|
model: root.actions |
|
|
|
delegate: Button { |
|
action: modelData |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
|