-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathscriptsManager.otui
More file actions
90 lines (79 loc) · 2.05 KB
/
scriptsManager.otui
File metadata and controls
90 lines (79 loc) · 2.05 KB
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
ScriptBox < Panel
height: 30
margin-top: 2
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
CheckBox
id: statusCheck
margin-left: 10
checked: false
anchors.top: parent.top
anchors.left: parent.left
@onCheckChange: ScriptsManager.scriptBoxSet(self, self:isChecked())
Label
id: numberId
text: #UKN
margin-left: 5
width: 30
anchors.top: parent.top
anchors.left: statusCheck.right
TextEdit
id: listasText
margin-left: 10
anchors.top: statusCheck.top
anchors.left: prev.right
width: 100
TextEdit
id: scriptText
margin-left: 15
anchors.top: statusCheck.top
anchors.left: prev.right
anchors.right: parent.right
MainWindow
id: scriptsManagerWindow
text: Scripts Manager v0.2
size: 800 550
@onClose: ScriptsManager.close()
Label
id: activateLabel
text: Activate
text-auto-resize: true
margin-top: 10
anchors.top: parent.top
anchors.left: parent.left
Label
id: listasLabel
text: List As
text-auto-resize: true
margin-left: 20
anchors.top: prev.top
anchors.left: prev.right
Label
id: scriptLabel
text: Script (supported: cycleEvent, g_keyboard.bindKeyPress, onTalkContains, onScriptCallback)
text-auto-resize: true
margin-left: 70
anchors.top: prev.top
anchors.left: prev.right
VerticalScrollBar
id: scriptsScrollBar
anchors.top: prev.bottom
anchors.bottom: parent.bottom
anchors.right: parent.right
margin-bottom: 50
step: 30
pixels-scroll: true
ScrollablePanel
id: scriptsPanel
anchors.top: scriptsScrollBar.top
anchors.bottom: scriptsScrollBar.bottom
anchors.left: parent.left
anchors.right: scriptsScrollBar.left
vertical-scrollbar: scriptsScrollBar
border: 1 black
Button
text: Close
anchors.bottom: parent.bottom
anchors.right: parent.right
@onClick: ScriptsManager.close()