blob: c76a3cfaaf8e1a1232d6f4525fa827c687959dc5 (
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
173
174
175
176
177
178
179
180
181
182
183
184
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
border="true"
follows="left|top|right|bottom"
height="408"
label="Text Chat"
layout="topleft"
left="102"
name="chat"
top="1"
width="517">
<text
follows="left|top"
layout="topleft"
left="30"
height="12"
name="font_size"
width="120"
top="10">
Font size:
</text>
<radio_group
height="30"
layout="topleft"
left="40"
control_name="ChatFontSize"
name="chat_font_size"
top_pad="0"
width="440">
<radio_item
height="16"
label="Small"
layout="topleft"
left="0"
name="radio"
value="0"
top="10"
width="125" />
<radio_item
height="16"
label="Medium"
layout="topleft"
left_delta="145"
name="radio2"
value="1"
top_delta="0"
width="125" />
<radio_item
height="16"
label="Large"
layout="topleft"
left_delta="170"
name="radio3"
value="2"
top_delta="0"
width="125" />
</radio_group>
<check_box
control_name="PlayTypingAnim"
height="16"
initial_value="true"
label="Play typing animation when chatting"
layout="topleft"
left="30"
name="play_typing_animation"
top_pad="10"
width="400" />
<check_box
enabled="false"
height="16"
label="Email me IMs when I'm offline"
layout="topleft"
left_delta="0"
name="send_im_to_email"
top_pad="5"
width="400" />
<check_box
control_name="UseChatBubbles"
follows="left|top"
height="16"
label="Bubble Chat"
layout="topleft"
left_delta="0"
top_pad="5"
name="bubble_text_chat"
width="150" />
<text
name="disable_toast_label"
follows="left|top"
layout="topleft"
top_pad="20"
left="30"
height="10"
width="400">
Enable incoming chat popups:
</text>
<check_box
control_name="EnableGroupChatPopups"
name="EnableGroupChatPopups"
label="Group Chats"
layout="topleft"
top_pad="5"
left_delta="10"
height="20"
tool_tip="Check to see popups when a Group Chat message arrives"
width="400" />
<check_box
control_name="EnableIMChatPopups"
name="EnableIMChatPopups"
label="IM Chats"
layout="topleft"
top_pad="5"
height="16"
tool_tip="Check to see popups when an instant message arrives"
width="400" />
<spinner
control_name="NearbyToastLifeTime"
decimal_digits="0"
follows="left|top"
height="23"
increment="1"
initial_value="23"
label="Nearby chat toasts life time:"
label_width="285"
layout="topleft"
left="45"
max_val="60"
min_val="1"
name="nearby_toasts_lifetime"
top_pad="10"
width="325" />
<spinner
control_name="NearbyToastFadingTime"
decimal_digits="0"
follows="left|top"
height="23"
increment="1"
initial_value="3"
label="Nearby chat toasts fading time:"
label_width="285"
layout="topleft"
left_delta="0"
max_val="60"
min_val="0"
name="nearby_toasts_fadingtime"
top_pad="3"
width="325" />
<button
follows="left|top"
height="23"
label="Translation..."
layout="topleft"
left="30"
name="ok_btn"
top="-50"
width="170">
<button.commit_callback
function="Pref.TranslationSettings" />
</button>
<button
follows="top|left"
height="23"
layout="topleft"
top_pad="-23"
left_pad="5"
name="autoreplace_showgui"
commit_callback.function="Pref.AutoReplace"
label="Auto-Replace..."
width="150">
</button>
<button
follows="top|left"
height="23"
layout="topleft"
top_pad="-23"
left_pad="5"
name="spellcheck_showgui"
commit_callback.function="Pref.SpellChecker"
label="Spell Checking..."
width="150">
</button>
</panel>
|