forked from 3C-SCSU/Avatar
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCloudComputing.qml
More file actions
236 lines (207 loc) · 6.98 KB
/
Copy pathCloudComputing.qml
File metadata and controls
236 lines (207 loc) · 6.98 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
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
233
234
235
236
import QtQuick.Dialogs
import Qt.labs.platform
import QtQuick 6.5
import QtQuick.Controls 6.4
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
import QtQuick3D 6.7
// Transfer Data is renamed to Cloud Computing
Rectangle {
color: "#718399"
signal saveConfig(string host, string username, string privateKeyDir, string targetDir, bool ignoreHostKey, string sourceDir, string configPath)
signal loadConfig(string configPath)
signal clearConfig()
signal upload(string host, string username, string privateKeyDir, string password, bool ignoreHostKey, string sourceDir, string targetDir)
ScrollView {
anchors.centerIn: parent
width: Math.min(parent.width * 0.9, 600)
height: Math.min(parent.height * 0.9, contentHeight)
clip: true
ColumnLayout {
id: contentLayout
width: parent.width
spacing: 10
Label {
text: "Target IP"
color: "white"
font.bold: true
}
TextField {
id: hostInput
objectName: "hostInput"
Layout.fillWidth: true
text: ""
}
Label {
text: "Target Username"
color: "white"
font.bold: true
}
TextField {
id: usernameInput
objectName:"usernameInput"
Layout.fillWidth: true
text: ""
}
Label {
text: "Target Password"
color: "white"
font.bold: true
}
TextField {
id: passwordInput
objectName:"passwordInput"
Layout.fillWidth: true
echoMode: TextInput.Password
text: ""
}
Label {
text: "Private Key Directory:"
color: "white"
font.bold: true
}
RowLayout {
Layout.fillWidth: true
TextField {
id: privateKeyDirInput
objectName: "privateKeyDirInput"
Layout.fillWidth: true
text: ""
}
Button {
id:privateKeyDirButton
objectName: "privateKeyDirButton"
text: "Browse"
font.bold: true
onClicked: console.log("Browse for Private Key Directory")
}
}
FileDialog {
id: privateKeyFileDialog
title: "Select Private Key Directory"
onAccepted: {
privateKeyDirInput.text = fileUrl.toLocalFile();
}
}
CheckBox {
id: ignoreHostKeyCheckbox
objectName: "ignoreHostKeyCheckbox"
text: "Ignore Host Key"
font.bold: true
checked: true
contentItem: Text {
text: parent.text
font.bold: true
color: "white"
leftPadding: parent.indicator.width + parent.spacing
}
}
Label {
text: "Source Directory:"
color: "white"
font.bold: true
}
RowLayout {
Layout.fillWidth: true
TextField {
id: sourceDirInput
objectName: "sourceDirInput"
text: ""
Layout.fillWidth: true
}
Button {
id: sourceDirButton
objectName: "sourceDirButton"
text: "Browse"
font.bold: true
onClicked: console.log("Browse for Source Directory")
}
}
FileDialog {
id: sourceDirFileDialog
title: "Select Source Directory"
onAccepted: {
sourceDirInput.text = fileUrl.toLocalFile();
}
}
Label {
text: "Target Directory:"
color: "white"
font.bold: true
}
RowLayout {
Layout.fillWidth: true
TextField {
id: targetDirInput
objectName: "targetDirInput"
Layout.fillWidth: true
text: "/home/"
placeholderText: "/home/"
}
Button {
id: targetDirButton
objectName: "targetDirButton"
text: "Browse"
font.bold: true
}
}
FileDialog {
id: targetDirFileDialog
title: "Select Target Directory"
onAccepted: {
targetDirInput.text = fileUrl.toLocalFile();
}
}
RowLayout {
Layout.fillWidth: true
Button {
id: saveConfigButton
objectName: "saveConfigButton"
text: "Save Config"
font.bold: true
onClicked: console.log("Save Config clicked")
}
Button {
id: loadConfigButton
objectName: "loadConfigButton"
text: "Load Config"
font.bold: true
onClicked: console.log("Load Config clicked")
}
Button {
id: clearConfigButton
objectName: "clearConfigButton"
text: "Clear Config"
font.bold: true
onClicked: console.log("Clear Config clicked")
}
Button {
id: uploadButton
objectName: "uploadButton"
text: "Upload"
font.bold: true
onClicked: console.log("Upload clicked")
}
}
FileDialog {
id: configFileDialog
title: "Select Configuration File"
onAccepted: {
if (saveConfigButton.down) {
saveConfig(
hostInput.text,
usernameInput.text,
privateKeyDirInput.text,
targetDirInput.text,
ignoreHostKeyCheckbox.checked,
sourceDirInput.text,
fileUrl.toLocalFile()
);
} else {
loadConfig(fileUrl.toLocalFile());
}
}
}
}
}
}