Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import QtQuick 2.0
import QtQuick.Layouts 1.0
import QtQuick.Controls 1.0
ColumnLayout {
id: dialog
anchors.fill: parent
anchors.margins: 12
spacing: 8
visible: false
property alias icon: icon.source
property alias primaryText: primaryText.text
property alias informativeText: informativeText.text
property alias content: content.children
property alias acceptButton: acceptButton
property alias rejectButton: rejectButton
function open() {
dialog.visible = true;
}
function close() {
dialog.visible = false;
}
RowLayout {
Layout.fillWidth: true
Layout.fillHeight: true
spacing: parent.spacing
Image {
id: icon
source: ""
width: 32
height: width
visible: source ? true : false
}
ColumnLayout {
Layout.fillWidth: true
spacing: parent.spacing
Label {
id: primaryText
text: ""
font.bold: true
visible: text ? true : false
}
Label {
id: informativeText
text: ""
visible: text ? true : false
}
Item {
id: content
Layout.fillWidth: true
Layout.fillHeight: true
}
}
}
RowLayout {
Layout.fillWidth: true
spacing: parent.spacing
Item {
Layout.fillWidth: true
}
Button {
id: acceptButton
text: ""
visible: text ? true : false
}
Button {
id: rejectButton
text: ""
visible: text ? true : false
}
}
}