blob: 4da85d98b2b392315a4cdc432e656e11ae3f20e4 (
plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/*
* Copyright (C) 2020 Konsulko Group
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import QtQuick 2.2
import QtQuick.Layouts 1.1
import QtQuick.Controls 2.0
Rectangle {
id: body_main
width: 1000
height: 1000
radius: 2
color: "black"
ColumnLayout {
id: body_col
anchors.fill: parent.fill
Label {
id: body_title
Layout.fillWidth: true
Layout.fillHeight: false
Layout.topMargin: 20
Layout.leftMargin: 20
Layout.rightMargin: 20
text: bodyTemplate.title
color: "white"
font.pixelSize: 32
font.bold: true
maximumLineCount: 1
wrapMode: Text.Wrap
elide: Text.ElideRight
horizontalAlignment: Label.AlignLeft
verticalAlignment: Label.AlignVCenter
}
Label {
id: body_subtitle
Layout.fillWidth: true
Layout.fillHeight: false
Layout.topMargin: 0
Layout.leftMargin: 20
Layout.rightMargin: 20
text: bodyTemplate.subtitle
visible: bodyTemplate.subtitle != ""
color: "white"
font.pixelSize: 22
font.bold: false
maximumLineCount: 1
wrapMode: Text.Wrap
elide: Text.ElideRight
horizontalAlignment: Label.AlignLeft
verticalAlignment: Label.AlignVCenter
}
RowLayout {
id: body_row
Layout.fillWidth: true
Layout.fillHeight: true
Layout.topMargin: 20
Layout.leftMargin: 20
Layout.rightMargin: 20
spacing: 20
Text {
id: body_textContent
Layout.fillWidth: true
Layout.fillHeight: true
text: bodyTemplate.textContent
color: "white"
font.pixelSize: 32
font.bold: false
wrapMode: Text.Wrap
verticalAlignment: Text.AlignTop
maximumLineCount: 21
states: [
State {
name: "BodyTemplate2"
when: bodyTemplate.imageContentSource != ""
PropertyChanges {
target: body_textContent
Layout.maximumWidth: (body_main.width - 3 * parent.spacing) / 2
Layout.preferredWidth: (body_main.width - 3 * parent.spacing) / 2
}
},
State {
name: "BodyTemplate1"
when: bodyTemplate.imageContentSource == ""
PropertyChanges {
target: body_textContent
Layout.maximumWidth: body_main.width - 2 * parent.spacing
Layout.preferredWidth: body_main.width - 2 * parent.spacing
}
}
]
}
Image {
id: body_imageContent
Layout.fillWidth: true
Layout.fillHeight: false
Layout.maximumWidth: (body_main.width - 3 * parent.spacing) / 2
Layout.preferredWidth: (body_main.width - 3 * parent.spacing) / 2
Layout.alignment: Qt.AlignTop
source: bodyTemplate.imageContentSource
visible: bodyTemplate.imageContentSource != ""
fillMode: Image.PreserveAspectFit
horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignTop
}
}
}
Button {
id: body_close
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottomMargin: 20
text: "Close"
onReleased: {
body_close.highlighted = false
clear()
hide()
}
onPressed: {
body_close.highlighted = true
}
onCanceled: {
body_close.highlighted = false
}
}
// Functions
function clear() {
bodyTemplate.visible = false
bodyTemplate.title = ""
bodyTemplate.subtitle = ""
bodyTemplate.textContent = ""
bodyTemplate.imageContentSource = ""
}
}
|