blob: 6869a135d8d22a2995f9caf28e10e62f774ce427 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
layout="topleft"
top="3"
left="3"
width="500"
height="300"
label="EVENTS"
bg_opaque_color="0 0.5 0 0.3"
follows="all">
<string
name="no_events"
value="No events."/>
<string
name="loading"
value="loading..."/>
<layout_stack
layout="topleft"
top="0"
left="4"
right="-1"
bottom="-4"
orientation="vertical"
follows="all">
<layout_panel
layout="topleft"
top="0"
left="1"
right="-1"
height="250"
follows="all">
<scroll_list
draw_heading="true"
left="1"
right="-86"
height="250"
follows="all"
name="experience_log_list">
<columns
width="100"
user_resize="true"
name="time"
label="Time"/>
<columns
width="100"
user_resize="true"
name="event"
label="Event"/>
<columns
width="100"
user_resize="true"
name="experience_name"
label="Experience"/>
<columns
width="100"
user_resize="true"
name="object_name"
label="Object"/>
</scroll_list>
<button
layout="topleft"
follows="top|right"
name="btn_notify"
label="Notify"
top_pad="-225"
left_pad="5"
right="-1"
enabled="false"/>
<button
layout="topleft"
follows="top|right"
name="btn_profile_xp"
label="Profile"
top_pad="5"
right="-1"
enabled="false"/>
<button
layout="topleft"
follows="top|right"
name="btn_report_xp"
label="Report"
top_pad="5"
right="-1"
enabled="false"/>
</layout_panel>
<layout_panel
layout="topleft"
top="0"
left="1"
right="-1"
height="30"
min_height="30"
follows="all"
name="button_panel"
visible="true">
<check_box
top="0"
follows="top|left"
height="26"
label="Notify All Events Days"
width="140"
name="notify_all" />
<spinner
top="5"
control_name="LogDays"
decimal_digits="0"
follows="left|top"
height="23"
increment="1"
initial_value="7"
label_width="30"
layout="topleft"
left_pad="5"
max_val="14"
min_val="0"
name="logsizespinner"
width="40" />
<button
top="5"
left="280"
layout="topleft"
follows="top|left"
name="btn_clear"
label="Clear"
width="80"
enabled="false"/>
<button
top="5"
layout="topleft"
left_pad="5"
width="20"
follows="top|left"
name="btn_prev"
label="<"
enabled="false"/>
<button
top="5"
layout="topleft"
follows="top|left"
name="btn_next"
label=">"
left_pad="5"
width="20"
enabled="false"/>
</layout_panel>
</layout_stack>
</panel>
|