forked from daudrain/TestQtAndroidWithClariusCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.qml
230 lines (185 loc) · 5.88 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
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
import QtQuick
import QtQuick.Window
import QtQuick.Controls
import QtQuick.Controls.Material
ApplicationWindow {
id: root
Material.accent: Material.Purple
Material.theme: Material.Dark
height: Qt.platform.os === "windows" ? 1140 : Screen.height
visible: true
width: Qt.platform.os === "windows" ? 540 : Screen.widht
Component.onCompleted: {
console.log(Screen.width, Screen.height);
}
Rectangle {
anchors.fill: parent
color: "#FFA500"
visible: false
}
Item {
anchors.fill: parent
anchors.margins: 10
Column {
spacing: 10
TextField {
id: ip
placeholderText: "IP address"
text: "192.168.1.42"
}
TextField {
id: port
placeholderText: "TCP port"
text: "5825"
}
TextField {
id: networkId
placeholderText: "Network ID"
text: "578931314701"
}
Grid {
columns: 1
spacing: 10
Button {
text: "CONNECT"
onClicked: {
console.log("connect");
cast_.connect(ip.text, parseInt(port.text), Number(networkId.text), "research");
}
}
Button {
text: "TOGGLE RUN"
onClicked: console.log("run")
}
Button {
text: "GET RAW DATA"
onClicked: console.log("get raw data")
}
Button {
text: "DISCONNECT"
onClicked: console.log("disconnect")
}
Button {
text: "CAPTURE IMAGE"
onClicked: console.log("capture image")
}
}
Text {
id: rez
color: Material.accent
text: cast_.result
}
}
}
}
/*
import QtQuick
import QtQuick.Controls
import QtQuick.Window
import QtQuick.Layouts
ApplicationWindow {
id: root
function getColor(txt) {
if (txt === "--")
return "gray";
if (txt === "OK")
return "green";
if (txt === "KO")
return "red";
}
height: Screen.height// !== 681 ? width * 681 / 1205 : Screen.height
visible: true
width: Screen.width// > 1205 ? 1205 : Screen.width
Rectangle {
id: container
anchors.fill: parent
color: "gray"
onColorChanged: console.log("color changed")
ColumnLayout {
id: colLifeCycle
//anchors.centerIn: parent
property alias fromAnotherThread: chkAnotherThread.checked
function onCreateEnabled(enabled) {
if (!enabled) {
rowRelease.enabled = true;
}
}
function onReleaseEnabled(enabled) {
if (!enabled) {
rowCreate.enabled = true;
}
}
ColumnLayout {
id: rowCreate
function create(anotherThread) {
if (cast_.create(anotherThread)) {
rowCreate.enabled = false;
createStatus.text = "OK";
} else {
createStatus.text = "KO";
}
}
onEnabledChanged: {
colLifeCycle.onCreateEnabled(enabled);
if (enabled)
createStatus.text = "--";
}
Button {
id: btnCreate
text: colLifeCycle.fromAnotherThread ? "Construct Cast from another thread" : "Construct Cast from UI thread"
onClicked: rowCreate.create(chkAnotherThread.checked)
}
CheckBox {
id: chkAnotherThread
checked: false
text: "Invoked from another thread"
}
Rectangle {
color: root.getColor(createStatus.text)
height: btnCreate.height
width: btnCreate.width
Text {
id: createStatus
anchors.centerIn: parent
color: "black"
text: "--"
}
}
}
ColumnLayout {
id: rowRelease
function release() {
if (cast_.release()) {
rowRelease.enabled = false;
releaseStatus.text = "OK";
} else {
releaseStatus.text = "KO";
}
}
enabled: false
onEnabledChanged: {
colLifeCycle.onReleaseEnabled(enabled);
if (enabled)
releaseStatus.text = "--";
}
Button {
id: btnRelease
text: colLifeCycle.fromAnotherThread ? "Release Cast from another thread" : "Release Cast from UI thread"
onClicked: rowRelease.release()
}
Rectangle {
color: root.getColor(releaseStatus.text)
height: btnRelease.height
width: btnRelease.width
Text {
id: releaseStatus
anchors.centerIn: parent
color: "black"
text: "--"
}
}
}
}
}
}
*/