-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigFile.qml
57 lines (46 loc) · 1.28 KB
/
ConfigFile.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
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.1
Rectangle {
color: "#9E9E9E"
Card{
id: opCard
anchors.top: parent.top
Component.onCompleted: {
setName("Selected Operation: ");
setText("Save Configuration");
setFontSize(10);
setViewTool("The current Parameters in the Drive will be Saved to File")
}
}
Card{
id: pathCard
anchors.top: opCard.bottom
Component.onCompleted: {
setName("File Path: ");
setText("//");
setFontSize(10);
setViewTool("Path to the selected file");
}
}
Card{
id: countCard
anchors.top: pathCard.bottom
Component.onCompleted: {
setName("Parameter Count: ");
setText("");
setFontSize(10);
setViewTool("Number of Parameters that will be Saved From/Loaded To the Drive")
}
}
Card{
id: reportCard
anchors.top: countCard.bottom
Component.onCompleted: {
setName("Operation Status: ");
setText("Uninitiated");
setFontSize(10);
setViewTool("Status of the current Save or Load operation")
}
}
}