-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSettings.qml
208 lines (176 loc) · 5.39 KB
/
Settings.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import QtQuick 2.5
import QtQuick.Controls 2.0
Pane {
id: pane
// Main Layout
Column {
id: colTitles
anchors {
fill: parent
topMargin: 10
leftMargin: 10
rightMargin: 10
}
spacing: 20
// Title label
Label {
text: qsTr("Settings")
anchors.horizontalCenter: parent.horizontalCenter
}
// Server IP field
Row {
width: parent.width
// Description text
Text{
text:qsTr("Chocal Server IP address:")
width: parent.width / 2
wrapMode: Text.WordWrap
}
// Input field
TextField {
id: txtIp
width: parent.width / 2
placeholderText: qsTr("i.e. 192.168.1.2")
text: settings.getString("ip")
}
}
// End server IP field
// Port number field
Row {
width: parent.width
// Description text
Text{
text:qsTr("Port number:")
width: parent.width / 2
wrapMode: Text.WordWrap
}
// Input field
TextField{
id: txtPort
width: parent.width / 2
validator: IntValidator {
top: 65534
bottom: 1
}
placeholderText: qsTr("i.e. 36911")
text: settings.getInt("port", "36911")
}
}
// End port number field
// New message notification field
Row {
width: parent.width
// Description text
Text{
text:qsTr("Play new message sounds:")
width: parent.width / 2
wrapMode: Text.WordWrap
}
// Input switch
Switch {
id: switchMessageNotification
checked: settings.getBool("newMessageSound", true)
}
}
// End message notification field
// Info notification field
Row {
width: parent.width
// Description text
Text{
text:qsTr("Play info sounds:")
width: parent.width / 2
wrapMode: Text.WordWrap
}
// Input switch
Switch {
id: switchInfoNotification
checked: settings.getBool("infoSound", true)
}
}
// End info notification field
// Language field
Row {
width: parent.width
// Description text
Text{
text:qsTr("Language:")
width: parent.width / 2
wrapMode: Text.WordWrap
}
// Input combo
ComboBox {
id: comboLanguage
currentIndex: settings.getInt("localeIndex")
textRole: "text"
model: ListModel {
id: languageItems
ListElement { text: "English (United States)"; locale: "en_US" }
ListElement { text: "پارسی"; locale: "fa_IR" }
}
width: parent.width / 2
}
}
// End info notification field
// Bottom buttons
Row {
spacing: 10
// Save button
Button {
text: qsTr("Save")
onClicked: {
if(!txtPort.acceptableInput) {
appendInfoMessage(qsTr("Please enter a port number between 1 and 65534"))
return
}
settings.setValue("ip", txtIp.text)
settings.setValue("port", txtPort.text)
settings.setValue("newMessageSound", switchMessageNotification.checked)
settings.setValue("infoSound", switchInfoNotification.checked)
settings.setValue("locale", languageItems.get(comboLanguage.currentIndex).locale)
settings.setValue("localeIndex", comboLanguage.currentIndex)
appendInfoMessage(qsTr("Settings are successfuly saved. You must restart Chocal Server for settings to take effect"))
pane.state = "hide"
}
}
// Cancel button
Button {
text: qsTr("Cancel")
onClicked: {
pane.state = "hide"
}
}
}
// End bottom buttons
}
// End main layout
// Transitions
transitions: Transition {
// smoothly reanchor settings panel and move into new position
AnchorAnimation {
easing.type: Easing.OutExpo
duration: 600
}
}
// States
states: [
// For showing panel
State {
name: "show"
AnchorChanges {
target: pane
anchors.right: pane.parent.right
anchors.left: undefined
}
},
// For hiding panel
State {
name: "hide"
AnchorChanges {
target: pane
anchors.right: undefined
anchors.left: pane.parent.right
}
}
]
}