2020-06-17 19:31:01 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-07-13 18:45:54 +00:00
|
|
|
import QtGraphicalEffects 1.13
|
2020-05-29 16:27:50 +00:00
|
|
|
import "../imports"
|
|
|
|
|
2020-05-29 18:38:11 +00:00
|
|
|
Popup {
|
2020-06-11 21:23:27 +00:00
|
|
|
property string title
|
2021-01-12 20:51:00 +00:00
|
|
|
property bool noTopMargin: false
|
2020-06-11 21:23:27 +00:00
|
|
|
default property alias content: popupContent.children
|
2020-06-29 22:02:19 +00:00
|
|
|
property alias contentWrapper: popupContent
|
2020-06-11 21:23:27 +00:00
|
|
|
property alias header: headerContent.children
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
id: popup
|
|
|
|
modal: true
|
|
|
|
property alias footer: footerContent.children
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
Overlay.modal: Rectangle {
|
|
|
|
color: "#60000000"
|
|
|
|
}
|
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
|
|
|
parent: Overlay.overlay
|
2020-09-23 18:01:33 +00:00
|
|
|
x: Math.round(((parent ? parent.width : 0) - width) / 2)
|
|
|
|
y: Math.round(((parent ? parent.height : 0) - height) / 2)
|
2020-06-11 21:23:27 +00:00
|
|
|
width: 480
|
|
|
|
height: 510 // TODO find a way to make this dynamic
|
|
|
|
background: Rectangle {
|
2020-07-13 18:45:54 +00:00
|
|
|
color: Style.current.background
|
2020-06-11 21:23:27 +00:00
|
|
|
radius: 8
|
|
|
|
}
|
|
|
|
padding: 0
|
|
|
|
contentItem: Item {
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: headerContent
|
|
|
|
height: {
|
2021-01-12 20:51:00 +00:00
|
|
|
const count = children.length
|
|
|
|
let h = 0
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
h += children[i] ? children[i].height : 0
|
|
|
|
}
|
|
|
|
return h
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2020-09-30 12:33:26 +00:00
|
|
|
|
2021-01-12 20:51:00 +00:00
|
|
|
anchors.topMargin: popup.noTopMargin ? 0 : Style.current.padding
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.bottomMargin: Style.current.padding
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
anchors.leftMargin: Style.current.padding
|
2020-06-09 10:01:19 +00:00
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-06-11 21:23:27 +00:00
|
|
|
text: title
|
2020-09-30 12:33:26 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: 17
|
2021-01-12 20:51:00 +00:00
|
|
|
height: visible ? 24 : 0
|
2020-06-11 21:23:27 +00:00
|
|
|
visible: !!title
|
2020-09-30 12:33:26 +00:00
|
|
|
verticalAlignment: Text.AlignVCenter
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-06-09 10:01:19 +00:00
|
|
|
}
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
Rectangle {
|
|
|
|
id: closeButton
|
2020-09-30 12:33:26 +00:00
|
|
|
property bool hovered: false
|
2020-06-11 21:23:27 +00:00
|
|
|
height: 32
|
|
|
|
width: 32
|
2021-01-12 20:51:00 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 12
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 12
|
2020-06-11 21:23:27 +00:00
|
|
|
radius: 8
|
2020-09-30 12:33:26 +00:00
|
|
|
color: hovered ? Style.current.backgroundHover : Style.current.transparent
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-25 13:23:17 +00:00
|
|
|
SVGImage {
|
2020-06-11 21:23:27 +00:00
|
|
|
id: closeModalImg
|
|
|
|
source: "./img/close.svg"
|
2020-09-30 12:33:26 +00:00
|
|
|
width: 11
|
|
|
|
height: 11
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2020-07-13 18:45:54 +00:00
|
|
|
ColorOverlay {
|
|
|
|
anchors.fill: closeModalImg
|
|
|
|
source: closeModalImg
|
|
|
|
color: Style.current.textColor
|
|
|
|
}
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
MouseArea {
|
|
|
|
id: closeModalMouseArea
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
onExited: {
|
2020-09-30 12:33:26 +00:00
|
|
|
closeButton.hovered = false
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
|
|
|
onEntered: {
|
2020-09-30 12:33:26 +00:00
|
|
|
closeButton.hovered = true
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
|
|
|
onClicked: {
|
|
|
|
popup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
Separator {
|
|
|
|
id: separator
|
|
|
|
anchors.top: headerContent.bottom
|
2021-01-12 20:51:00 +00:00
|
|
|
anchors.topMargin: visible ? Style.current.padding : 0
|
2020-12-04 16:01:38 +00:00
|
|
|
visible: title.length > 0
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-05-29 16:27:50 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
Item {
|
|
|
|
id: popupContent
|
|
|
|
anchors.top: separator.bottom
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.topMargin: Style.current.padding
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.bottom: separator2.top
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.bottomMargin: Style.current.padding
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.left: parent.left
|
2021-01-20 16:21:10 +00:00
|
|
|
anchors.leftMargin: Style.current.xlPadding
|
2020-06-11 21:23:27 +00:00
|
|
|
anchors.right: parent.right
|
2021-01-20 16:21:10 +00:00
|
|
|
anchors.rightMargin: Style.current.xlPadding
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-05-29 18:38:11 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
Separator {
|
|
|
|
id: separator2
|
2021-01-13 19:15:52 +00:00
|
|
|
visible: footerContent.visible
|
|
|
|
anchors.bottom: footerContent.top
|
|
|
|
anchors.bottomMargin: visible ? Style.current.padding : 0
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-05-29 18:38:11 +00:00
|
|
|
|
2020-06-11 21:23:27 +00:00
|
|
|
Item {
|
2020-07-15 19:38:03 +00:00
|
|
|
id: footerContent
|
2021-01-13 19:15:52 +00:00
|
|
|
visible: children.length > 0
|
|
|
|
height: visible ? children[0] && children[0].height : 0
|
2020-07-15 19:38:03 +00:00
|
|
|
width: parent.width
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
2021-01-13 19:15:52 +00:00
|
|
|
anchors.bottomMargin: visible ? Style.current.padding : 0
|
|
|
|
anchors.rightMargin: visible ? Style.current.padding : 0
|
|
|
|
anchors.leftMargin: visible ? Style.current.padding : 0
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|
2020-06-11 08:22:20 +00:00
|
|
|
}
|
2020-06-11 21:23:27 +00:00
|
|
|
}
|