-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialog.qml
176 lines (133 loc) · 3.94 KB
/
Dialog.qml
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
165
166
167
168
169
170
171
172
173
174
175
import QtQuick 2.0
import QtQuick.Controls 1.4
Rectangle {
anchors.fill: parent
color: "transparent"
visible: false
opacity: 0
signal hidded
Behavior on opacity {
PropertyAnimation {
duration: 200
}
}
Rectangle {
color: "black"
opacity: 0.7
anchors.fill: parent
MouseArea {
anchors.fill: parent
onClicked: hide();
}
}
Rectangle {
anchors.centerIn: parent
width: parent.width*(0.7)
height: parent.height*(0.5)
Text {
id:titleLabel
text:"Title:"
color:"#444"
font {
bold: true
pixelSize: parent.height/10
}
anchors.left: parent.left
anchors.leftMargin: parent.width*(0.05)
anchors.top: parent.top
anchors.topMargin: parent.height*(0.01)
}
TextField {
id:titleTextField
font {
pixelSize: parent.height/15
}
anchors.left: parent.left
anchors.leftMargin: parent.width*(0.05)
anchors.right: parent.right
anchors.rightMargin: parent.width*(0.05)
anchors.top: titleLabel.bottom
anchors.topMargin: parent.height*(0.01)
}
Text {
id:descriptionLabel
text:"Description:"
color:"#444"
font {
bold: true
pixelSize: parent.height/10
}
anchors.left: parent.left
anchors.leftMargin: parent.width*(0.05)
anchors.top: titleTextField.bottom
anchors.topMargin: parent.height*(0.01)
}
TextArea{
id: descriptionTextArea
font {
pixelSize: parent.height/15
}
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
anchors.left: parent.left
anchors.leftMargin: parent.width*(0.05)
anchors.right: parent.right
anchors.rightMargin: parent.width*(0.05)
anchors.top: descriptionLabel.bottom
anchors.topMargin: parent.height*(0.01)
anchors.bottom: parent.bottom
anchors.bottomMargin: parent.height*(0.2)
}
Rectangle {
anchors {
right:descriptionTextArea.right
left: parent.left
leftMargin: parent.width*(0.7)
top:descriptionTextArea.bottom
topMargin: parent.height*(0.03)
bottom: parent.bottom
bottomMargin: parent.height*(0.03)
}
color:"#607D8B"
Text {
id: btnLabel
text: "Register"
anchors.centerIn: parent
color:"white"
font {
bold:true
pixelSize: parent.height/2
}
}
MouseArea {
anchors.fill: parent
onClicked: {
if(titleTextField.text.length == 0)
titleLabel.color = "red";
if(descriptionTextArea.text.length == 0)
descriptionLabel.color = "red"
if(titleTextField.text.length > 0 && descriptionTextArea.text.length > 0) {
addCard(titleTextField.text, descriptionTextArea.text);
hide();
}
}
}
}
}
//JS Functions
function show() {
visible = true
opacity = 1
}
function hide() {
opacity = 0
visible = false
clear();
hidded();
}
function clear() {
titleLabel.color = "#444"
descriptionLabel.color = "#444"
titleTextField.text = ""
descriptionTextArea.text = ""
}
}