forked from machinekit/Machineface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInit.qml
More file actions
35 lines (31 loc) · 947 Bytes
/
Init.qml
File metadata and controls
35 lines (31 loc) · 947 Bytes
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
import QtQuick 2.0
import QtQuick.Controls 1.1
import Machinekit.Application 1.0
import Machinekit.Application.Controls 1.0
import Machinekit.Service 1.0
Item {
property string title: connectionWindow.title
property Item toolBar: connectionWindow.toolBar
property Item statusBar: connectionWindow.statusBar
property MenuBar menuBar: connectionWindow.menuBar
id: applicationWindow
width: 1280
height: 800
ConnectionWindow {
id: connectionWindow
anchors.fill: parent
color: "white"
defaultTitle: "Machineface"
autoSelectInstance: true
autoSelectApplication: true
localVisible: true
remoteVisible: false
lookupMode: ServiceDiscovery.MulticastDNS
applications: [
ApplicationDescription {
sourceDir: "./Machineface/"
}
]
instanceFilter: ServiceDiscoveryFilter{ name: "" }
}
}