blob: a523f40bb821b1af80cf0dbc665f8ae00833c59e (
plain)
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
auto_tile="true"
height="800"
layout="topleft"
name="gesture_preview"
help_topic="gesture_preview"
width="280">
<floater.string
name="step_anim">
Animation to play:
</floater.string>
<floater.string
name="step_sound">
Sound to play:
</floater.string>
<floater.string
name="step_chat">
Chat to say:
</floater.string>
<floater.string
name="step_wait">
Wait:
</floater.string>
<floater.string
name="stop_txt">
Stop
</floater.string>
<floater.string
name="preview_txt">
Preview
</floater.string>
<floater.string
name="none_text">
-- None --
</floater.string>
<floater.string
name="Title">
Gesture: [NAME]
</floater.string>
<text
type="string"
length="1"
follows="top|left"
font="SansSerifSmall"
height="10"
layout="topleft"
left="10"
name="Name"
top="25"
width="100">
Name (not working yet):
</text>
<line_editor
follows="left|top"
height="20"
layout="topleft"
left_delta="84"
name="desc"
top_delta="-4"
width="180" />
<text
type="string"
length="1"
follows="top|left"
font="SansSerifSmall"
height="10"
layout="topleft"
left="10"
name="desc_label"
top_pad="10"
width="100">
Description:
</text>
<line_editor
follows="left|top"
height="40"
layout="topleft"
left_delta="84"
name="desc2"
top_delta="-4"
width="180" />
<accordion
layout="topleft"
left="2"
width="276"
top="95"
height="580"
follows="all"
name="group_accordion">
<accordion_tab
min_height="90"
title="Shortcuts"
name="snapshot_destination_tab"
an_resize="false">
<panel
class="floater_preview_shortcut"
filename="floater_preview_gesture_shortcut.xml"
name="floater_preview_shortcut"/>
</accordion_tab>
<accordion_tab
min_height="400"
title="Steps"
name="snapshot_file_settings_tab"
can_resize="false">
<panel
class="floater_preview_steps"
filename="floater_preview_gesture_steps.xml"
name="floater_preview_steps"/>
</accordion_tab>
<accordion_tab
min_height="155"
title="Info"
name="snapshot_capture_tab"
can_resize="false">
<panel
class="floater_preview_info"
filename="floater_preview_gesture_info.xml"
name="floater_preview_info"/>
</accordion_tab>
<!--accordion_tab
min_height="100"
title="Permissions"
name="snapshot_capture_tab2"
can_resize="false">
<panel
class="floater_snapshot_capture"
filename="floater_snapshot_Permissions.xml"
name="snapshot_capture_panel2"/>
</accordion_tab-->
</accordion>
<!--check_box
follows="top|left"
height="20"
label="Active"
layout="topleft"
left="20"
name="active_check"
tool_tip="Active gestures can be triggered by chatting their trigger phrases or pressing their hot keys. Gestures usually become inactive when there is a key binding conflict."
top="365"
width="100" /-->
<button
follows="bottom|left"
height="20"
label="Preview"
layout="topleft"
left="20"
name="preview_btn"
top_pad="30"
width="80" />
<button
follows="top|left"
height="20"
label="Save"
layout="topleft"
left_pad="5"
name="save_btn"
top_delta="0"
width="80" />
<button
follows="top|left"
height="20"
label="Cancel (not working)"
layout="topleft"
left_pad="5"
name="cancel_btn"
top_delta="0"
width="80" />
</floater>
|