-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModificaParametri.qml
233 lines (193 loc) · 6.91 KB
/
ModificaParametri.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import QtQuick 2.4
import QtQuick.Controls 1.4
import QtQuick.Controls.Styles 1.4
import QtQuick.Layouts 1.1
import "storage.js" as Storage
import "componenti"
Item {
id: root
property string nomeFinestra: qsTr("Aggiungi comando")
signal salva
property int indiceCorrente
function modifica(indice) {
indiceCorrente = indice;
form.modifica(indice);
}
Item {
id: form
anchors.fill: parent
anchors.margins: 10
property alias nome : txNomeComando.text
property alias indirizzoServer: txIndirizzoServer.text
property alias username : txUsername.text
property alias password : txPassword.text
property alias comandoDaEseguire : txComandoDaEseguire.text
property alias pty : ckPTY.checked
function formToSessione() {
function ritornaErrore(nomeCampo) {
return {errore: qsTr("Compila il campo ") + nomeCampo};
}
var sessione = {};
if (nome == "")
{
return ritornaErrore(qsTr("Nome Comando"));
}
if (indirizzoServer == "")
{
return ritornaErrore(qsTr("Indirizzo Server"));
}
if (username == "")
{
return ritornaErrore(qsTr("Username"));
}
if (password == "")
{
return ritornaErrore(qsTr("Password"));
}
if (comandoDaEseguire == "")
{
return ritornaErrore(qsTr("Comando da eseguire"));
}
sessione.nome = nome;
sessione.indirizzoServer = indirizzoServer;
sessione.username = username;
sessione.password = password;
sessione.comandoDaEseguire = comandoDaEseguire;
sessione.pty = pty;
return sessione;
}
function modifica(indice) {
if (indice === -1)
{
nome = "";
indirizzoServer = "";
username = "";
password = "";
comandoDaEseguire = "";
pty = false;
} else {
var sessione = Storage.getSessioni()[indice];
nome = sessione.nome;
indirizzoServer = sessione.indirizzoServer;
username = sessione.username;
password = sessione.password;
comandoDaEseguire = sessione.comandoDaEseguire;
pty = sessione.pty;
nomeFinestra = qsTr("Modifica ") + sessione.nome;
stackView.aggiornaTitolo();
}
}
Row {
id: row1
y: 362
height: btOk.height
spacing: 8
anchors.bottom: parent.bottom
anchors.bottomMargin: 8
anchors.right: parent.right
anchors.rightMargin: 8
anchors.left: parent.left
anchors.leftMargin: 8
CustomButton {
id: btTest
width: (parent.width - parent.spacing) / 2
text: qsTr("Test")
onClicked: {
var sessione = form.formToSessione();
if (sessione.errore === undefined) {
stackView.push({item: componentefinestraSSH});
stackView.currentItem.eseguiSSH(sessione);
} else {
messageDialog.show(qsTr("Errore"), sessione.errore);
}
}
}
CustomButton {
width: (parent.width - parent.spacing) / 2
id: btOk
text: qsTr("OK")
onClicked: {
var listaSessioni = Storage.getSessioni();
var sessione = form.formToSessione();
if (sessione.errore === undefined) {
if (root.indiceCorrente === -1)
{
listaSessioni.push(sessione);
} else {
listaSessioni[root.indiceCorrente] = sessione;
}
Storage.setSessioni(listaSessioni);
root.salva();
stackView.pop();
} else {
messageDialog.show(qsTr("Errore"), sessione.errore);
}
}
}
}
Flickable {
id: fkContenitoreGriglia
// contentHeight: parent.height > 400?parent.height:400
contentHeight: layoutContenitore.height + layoutContenitore.spacing
interactive: true
flickableDirection: Flickable.VerticalFlick
anchors.bottom: row1.top
anchors.bottomMargin: 0
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
anchors.top: parent.top
anchors.topMargin: 0
clip: true
ColumnLayout {
id: layoutContenitore
anchors.rightMargin: 8
anchors.leftMargin: 8
anchors.bottomMargin: 8
anchors.topMargin: txNomeComando.height / 4
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
spacing: txNomeComando.height / 2
// anchors.fill: parent
CustomTextInput {
id: txNomeComando
placeholderText: qsTr("Nome Comando")
Layout.fillWidth: true
}
CustomTextInput {
id: txIndirizzoServer
placeholderText: qsTr("Indirizzo Server")
Layout.fillWidth: true
}
CustomTextInput {
id: txUsername
placeholderText: qsTr("Username")
Layout.fillWidth: true
}
CustomTextInput {
id: txPassword
z: 2
echoMode: 2
placeholderText: qsTr("Password")
Layout.fillWidth: true
}
CustomSwitch {
id:ckPTY
anchors.left: parent.left
anchors.leftMargin: 0
anchors.right: parent.right
anchors.rightMargin: 0
text: qsTr("PTY (A volte richiesto)")
}
CustomTextInput {
id: txComandoDaEseguire
transformOrigin: Item.Left
placeholderText: qsTr("Comando da eseguire")
Layout.fillWidth: true
}
}
}
}
}