-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAboutDialogForm.ui.qml
More file actions
77 lines (67 loc) · 2.56 KB
/
AboutDialogForm.ui.qml
File metadata and controls
77 lines (67 loc) · 2.56 KB
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
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.0
Item {
id: item1
width: 400
height: 400
property alias appVersionText: appVersionText
property alias privacyPolicyTextAreaId: privacyPolicyTextAreaId
property alias okButton: okButton
property real policyOffset: 0.9
ColumnLayout {
id: column
anchors.horizontalCenterOffset: 0
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width * policyOffset
Text {
id: appTitleText
text: qsTr("Best To-Do List")
font.bold: true
font.family: "Times New Roman"
font.pixelSize: 20
Layout.topMargin: 15
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
id: appVersionText
text: qsTr("Application version: ")
font.pixelSize: 12
Layout.topMargin: 15
anchors.horizontalCenter: parent.horizontalCenter
}
TextArea {
id: privacyPolicyTextAreaId
Layout.topMargin: 10
Layout.fillHeight: true
readOnly: true
font.pixelSize: 12
textFormat: Text.RichText
Layout.maximumWidth: parent.width
wrapMode: TextEdit.WordWrap
text: qsTr("<p><center><b>Privacy Policy</b></center><br>
Application collects and store only information entered directly by user: lists of tasks, their statuses and related additional data.
Application doesn't share collected information with any 3rd party.<br>
When you delete task record, it's completely erazed from the memory of device.</p> <br>
<a href=\"https://twitter.com/_max_go_\" >Twitter</a> <a href=\"https://ua.linkedin.com/in/maximrisukhin\" >LinkedIn</a>
<a href=\"http://stackoverflow.com/users/story/2266412\" >StackOverflow</a>")
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
id: appCopyrightsText
text: qsTr("IProApps, Copyright 2017")
font.pixelSize: 12
Layout.topMargin: 10
font.bold: true
anchors.horizontalCenter: parent.horizontalCenter
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
id: okButton
width: 50
height: 20
text: qsTr("OK")
Layout.topMargin: 10
}
}
}