-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.qml
68 lines (54 loc) · 1.22 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
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QmlApp
Item {
id: mainLayout
QmlAppComponent {
id: qmlAppComponent
anchors.leftMargin: 10
anchors.rightMargin: 20
anchors.fill: parent
visible: !QmlAppSt.isShowLog
}
ExceptionAndLog {
id: exceptionAndLog
}
Binding {
target: QmlAppSt
property: "filePanSize"
value: mainqmltype.filePanSize
}
Binding {
target: QmlAppSt
property: "mainqmltype"
value: mainqmltype
}
Binding {
target: QmlAppSt
property: "filePath"
value: mainqmltype.filePath
}
Binding {
target: QmlAppSt
property: "menubarCommStr"
value: mainqmltype.menubarCommStr
}
Binding {
target: QmlAppSt
property: "noneWaitItems"
value: mainqmltype.noneWaitItems
}
Binding {
target: QmlAppSt
property: "exceptionCounter"
value: mainqmltype.exceptionCounter
}
Binding {
target: QmlAppSt
property: "exceptionStr"
value: mainqmltype.exceptionStr
}
signal toggleFilepan
onToggleFilepan: mainqmltype.toggleFilepan()
}