-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrivePage.qml
59 lines (46 loc) · 1.23 KB
/
DrivePage.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
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.1
Rectangle {
color: "#9E9E9E"
Card{
id: connCard
anchors.top: parent.top
Component.onCompleted: {
setName("Connection Status: ");
setText("Not Connected");
setFontSize(10);
setViewTool("State of Connection with a JEDL Drive");
}
}
Card{
id: addCard
anchors.top: connCard.bottom
Component.onCompleted: {
setName("Drive Address: ");
setText("00");
setFontSize(10);
setViewTool("Destination Address of Transmissions")
}
}
Card{
id: pathCard
anchors.top: addCard.bottom
Component.onCompleted: {
setName("File Path: ");
setText("//");
setFontSize(10);
setViewTool("Path to the selected file");
}
}
Card{
id: reportCard
anchors.top: pathCard.bottom
Component.onCompleted: {
setName("Operation Status: ");
setText("Uninitiated");
setFontSize(10);
setViewTool("Status of the current Save or Load operation")
}
}
}