blob: ace8281b4e3cb5935c1ac0df4ff7bee23182f6d3 (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
border="true"
height="500"
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="30"
name="tell_me_label"
top="10"
width="300">
Tell me:
</text>
<check_box
control_name="NotifyMoneyChange"
height="16"
label="When I spend or get L$"
layout="topleft"
left_delta="50"
name="notify_money_change_checkbox"
top_pad="4"
width="300" />
<check_box
control_name="ChatOnlineNotification"
height="16"
label="When my friends log out or in"
layout="topleft"
left_delta="0"
name="friends_online_notify_checkbox"
top_pad="4"
width="300" />
<text
type="string"
length="1"
follows="top|left"
font="SansSerifBold"
height="12"
layout="topleft"
left="30"
name="show_label"
top_pad="14"
width="450">
Always show these notifications:
</text>
<scroll_list
follows="top|left"
height="92"
layout="topleft"
left="10"
multi_select="true"
name="enabled_popups"
width="475" />
<button
enabled_control="FirstSelectedDisabledPopups"
follows="top|left"
height="23"
image_disabled="PushButton_Disabled"
image_disabled_selected="PushButton_Disabled"
image_overlay="Arrow_Up"
image_selected="PushButton_Selected"
image_unselected="PushButton_Off"
hover_glow_amount="0.15"
layout="topleft"
left_delta="137"
name="enable_this_popup"
top_pad="10"
width="43">
<button.commit_callback
function="Pref.ClickEnablePopup" />
</button>
<button
enabled_control="FirstSelectedEnabledPopups"
follows="top|left"
height="23"
image_disabled="PushButton_Disabled"
image_disabled_selected="PushButton_Disabled"
image_overlay="Arrow_Down"
image_selected="PushButton_Selected"
image_unselected="PushButton_Off"
hover_glow_amount="0.15"
layout="topleft"
left_pad="50"
name="disable_this_popup"
top_delta="0"
width="43">
<button.commit_callback
function="Pref.ClickDisablePopup" />
</button>
<text
type="string"
length="1"
follows="top|left"
font="SansSerifBold"
height="12"
layout="topleft"
left="30"
name="dont_show_label"
top_pad="10"
width="450">
Never show these notifications:
</text>
<scroll_list
follows="top|left"
height="92"
layout="topleft"
left="10"
multi_select="true"
name="disabled_popups"
width="475" />
</panel>
|