blob: 93c97ded251b9ce9a33719a8047d324d30e979ba (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
border="true"
height="408"
label="Popups"
layout="topleft"
left="0"
name="popups"
top="500"
width="517">
<text
type="string"
length="1"
follows="top|left"
height="12"
layout="topleft"
left="10"
name="tell_me_label"
top="10"
width="300">
Tell me:
</text>
<check_box
control_name="NotifyMoneySpend"
height="16"
label="When I spend L$"
layout="topleft"
left_delta="50"
name="notify_money_spend_checkbox"
top_pad="4"
width="300" />
<check_box
control_name="ChatOnlineNotification"
height="16"
label="When my friends log in or out"
layout="topleft"
left_delta="150"
name="friends_online_notify_checkbox"
width="300" />
<check_box
control_name="NotifyMoneyReceived"
height="16"
label="When I get L$"
layout="topleft"
left_delta="-150"
top_pad="4"
name="notify_money_received_checkbox"
width="300" />
<text
type="string"
length="1"
follows="top|left"
height="12"
layout="topleft"
left="10"
name="show_label"
top_pad="8"
width="450">
Always show:
</text>
<scroll_list
follows="top|left|right"
height="140"
layout="topleft"
left="10"
multi_select="true"
name="enabled_popups"
sort_column="0"
sort_ascending="true"
width="495" />
<button
enabled_control="FirstSelectedDisabledPopups"
follows="top|left"
height="23"
image_overlay="Arrow_Up"
hover_glow_amount="0.15"
layout="topleft"
left="200"
name="enable_this_popup"
top_pad="5"
width="40">
<button.commit_callback
function="Pref.ClickEnablePopup" />
</button>
<button
enabled_control="FirstSelectedEnabledPopups"
follows="top|left"
height="23"
image_overlay="Arrow_Down"
hover_glow_amount="0.15"
layout="topleft"
left_pad="20"
name="disable_this_popup"
top_delta="0"
width="40">
<button.commit_callback
function="Pref.ClickDisablePopup" />
</button>
<text
type="string"
length="1"
follows="top|left"
height="12"
layout="topleft"
left="10"
name="dont_show_label"
top_pad="-10"
width="450">
Never show:
</text>
<scroll_list
follows="top|left|right"
height="140"
layout="topleft"
left="10"
sort_column="0"
sort_ascending="true"
multi_select="true"
name="disabled_popups"
width="495" />
</panel>
|