-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.qml
148 lines (135 loc) · 3.28 KB
/
main.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
import QtQuick 2.3
import QtQuick.Window 2.2
import QtQuick.Dialogs 1.2
import readfile 1.0
import XmlToJsonConvertor 1.0
Window {
id: mainWin
title: qsTr("音频调度")
width: 800
height: 600
color: "grey"
visible: true
//visibility: Window.FullScreen
visibility: Window.Maximized
function showWorkGround(value)
{
if (value)
{
console.log("show mainwin");
mainWin.show();
//loginPage.hide();
//loginPage.close();
loginPage.visible=true;
//work.visible = true
work.start();
work.load();
}
else
{
//work.visible = false
mainWin.hide();
loginPage.show();
work.stop()
}
}
function dataRequestError(string){
requestErrorDialog.text = string;
requestErrorDialog.open();
}
function readjson()
{
var config=myFile.read();
var json = JSON.parse(config);
var count = json.titles.length;
for (var i in json.titles) {
var config1 = json.titles[i];
var userconfig={
mainTitle:config1.maintitle
}
//TODO: populate other configs.
}
return userconfig;
}
Timer {
id: timer;
interval: 1000;
repeat: true;
running: true;
onTriggered: {
//gc();
}
}
Image {
id: backimage
anchors.fill: parent
source: "../images/mainback.png"
Image {
id: leftimage
x:-20
y:0
source: "../images/leftback.png"
}
Image {
id: rightimage
anchors.right: parent.right
sourceSize.width: parent.width*0.3
anchors.top:parent.top
anchors.topMargin: parent.height*0.4
source: "../images/rightback.png"
}
Image {
id: bottomimage
anchors.left: parent.left
anchors.right: parent.right
source: "../images/bottomback.png"
}
FileIo {
id: myFile
source: "userCustomConfig.json"
onError: console.log(msg)
}
XmlToJsonConvertor {
id: xjconvertor
}
LoginDialog {
id: loginPage
visible: true
width: 406
height: 350
onLoginSuccess: {
work.visible = true;
work.setTarget(tgt)
showWorkGround(true);
mainWin.visibility = Window.FullScreen
mainWin.visibility = Window.Maximized
}
}
MessageDialog {
id: requestErrorDialog;
modality: Qt.ApplicationModal;
title: "Data Request Error!";
//text: "请求数据失败!";
standardButtons: StandardButton.Ok;
onAccepted: {
requestErrorDialog.close();
}
}
WorkGround {
id: work
anchors.fill: parent
visible: true
onLogout: {
showWorkGround(false)
}
onVisibleChanged: {
console.log("work is visible " + visible);
}
}
Component.onCompleted: {
work.visible = false;
loginPage.visible=true;
readjson();
}
}
}