blob: 052398bcd32bdd3d1029d95b59f3b7423fc32194 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
can_resize="true"
height="465"
layout="topleft"
min_height="200"
min_width="280"
name="gestures"
help_topic="gestures"
title="Active Gestures"
width="280">
<floater.string
name="loading">
Loading...
</floater.string>
<floater.string
name="playing">
(Playing)
</floater.string>
<text
type="string"
length="1"
bottom="30"
follows="top|left"
layout="topleft"
left="15"
name="help_label">
Double-click a gesture to play.
</text>
<scroll_list
bottom_delta="390"
draw_heading="true"
follows="top|left|bottom|right"
height="380"
layout="topleft"
left="15"
name="gesture_list"
right="-15">
<scroll_list.columns
label="Name"
name="name"
width="90" />
<scroll_list.columns
label="Trigger"
name="trigger"
width="80" />
<scroll_list.columns
label=""
name="key"
width="-1" />
<scroll_list.columns
label="Key"
name="shortcut"
width="50" />
</scroll_list>
<button
follows="bottom|right"
height="20"
label="New"
layout="topleft"
left_delta="0"
name="new_gesture_btn"
top_pad="10"
width="83" />
<button
follows="bottom|right"
height="20"
label="Edit"
layout="topleft"
left_pad="6"
name="edit_btn"
top_delta="0"
width="83" />
<button
follows="bottom|right"
height="20"
label="Play"
layout="topleft"
left_pad="6"
name="play_btn"
top_delta="0"
width="83" />
<button
follows="bottom|right"
height="20"
label="Stop"
layout="topleft"
left_delta="0"
name="stop_btn"
top_delta="0"
width="83" />
</floater>
|