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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
|
function configure()
{
// Options for this skin
opts.align_right.description = "Align to right"
opts.align_right.type = CHECKBOX
opts.align_right.value = false
opts.show_avatar.description = "Show avatar"
opts.show_avatar.type = CHECKBOX
opts.show_avatar.value = true
opts.avatar_allow_grow.description = "Allow avatar to grow (be bigger than original image)"
opts.avatar_allow_grow.type = CHECKBOX
opts.avatar_allow_grow.value = false
opts.avatar_use_fixed_size.description = "Use fixed size avatar"
opts.avatar_use_fixed_size.type = CHECKBOX
opts.avatar_use_fixed_size.value = false
opts.avatar_fixed_size.description = "Avatar fixed size (pixels)"
opts.avatar_fixed_size.type = NUMBER
opts.avatar_fixed_size.value = 30
opts.avatar_fixed_size.min = 1
opts.avatar_fixed_size.max = 255
opts.show_protocol.description = "Show protocol"
opts.show_protocol.type = CHECKBOX
opts.show_protocol.value = true
opts.show_email.description = "Show unread mail count"
opts.show_email.type = CHECKBOX
opts.show_email.value = true
opts.show_status.description = "Show status"
opts.show_status.type = CHECKBOX
opts.show_status.value = true
opts.show_status_msg.description = "Show status message"
opts.show_status_msg.type = CHECKBOX
opts.show_status_msg.value = true
opts.show_listening.description = "Show listening to"
opts.show_listening.type = CHECKBOX
opts.show_listening.value = true
opts.show_protocol_cycle.description = "Show protocol cycle buttons"
opts.show_protocol_cycle.type = CHECKBOX
opts.show_protocol_cycle.value = false
opts.use_under_avatar.description = "Use free space (under avatar) to other texts"
opts.use_under_avatar.type = CHECKBOX
opts.use_under_avatar.value = true
opts.border_left.description = "Left border"
opts.border_left.type = NUMBER
opts.border_left.value = 8
opts.border_left.min = 0
opts.border_left.max = 100
opts.border_top.description = "Top border"
opts.border_top.type = NUMBER
opts.border_top.value = 8
opts.border_top.min = 0
opts.border_top.max = 100
opts.border_right.description = "Right border"
opts.border_right.type = NUMBER
opts.border_right.value = 8
opts.border_right.min = 0
opts.border_right.max = 100
opts.border_bottom.description = "Bottom border"
opts.border_bottom.type = NUMBER
opts.border_bottom.value = 8
opts.border_bottom.min = 0
opts.border_bottom.max = 100
// Default fonts
nickname.font.face = "Tahoma"
nickname.font.size = 13
nickname.font.bold = true
nickname.font.color = RGB(0,0,0)
protocol.font.face = "Tahoma"
protocol.font.size = 8
protocol.font.color = RGB(0,0,0)
email.font.face = "Tahoma"
email.font.size = 8
email.font.color = RGB(0,0,0)
status_name.font.face = "Tahoma"
status_name.font.size = 8
status_name.font.color = RGB(0,0,0)
status_msg.font.face = "Tahoma"
status_msg.font.size = 8
status_msg.font.italic = true
status_msg.font.color = RGB(150,150,150)
listening.font.face = "Tahoma"
listening.font.size = 8
listening.font.italic = true
listening.font.color = RGB(150,150,150)
}
function valign_center(top)
{
var height = 0
for(var i = 1; i < arguments.length; i++)
height = Math.max(height, arguments[i].height)
for(var i = 1; i < arguments.length; i++)
arguments[i].top = top + (height - arguments[i].height)/2
return top + height
}
// Resize a field, keeping its aspect ratio
function resize(field, maxWidth, maxHeight, allowGrow)
{
if (allowGrow == null)
allowGrow = true
var factor = Math.min(maxWidth / field.width, maxHeight / field.height)
if (!allowGrow && factor >= 1)
return
field.width *= factor
field.height *= factor
}
function draw()
{
// Default texts
if (nickname.enabled && nickname.text == "")
nickname.text = "<no nickname>"
if (status_msg.enabled && status_msg.text == "")
status_msg.text = "<no status message>"
if (listening.enabled && listening.text == "")
listening.text = "<nothing playing>"
if (info.protocol.locked)
status_name.text += " (locked)"
// ToolTips
nickname.toolTip = nickname.text
protocol.toolTip = protocol.text
status_icon.toolTip = status_name.toolTip = status_name.text
status_msg.toolTip = status_msg.text
listening_icon.toolTip = listening.toolTip = listening.text
next_proto.toolTip = "Show next protocol"
prev_proto.toolTip = "Show previous protocol"
email_icon.toolTip = email.toolTip = "Unread Email Count: " + email.text
// Borders
window.borders.left = opts.border_left
window.borders.top = opts.border_top
window.borders.right = opts.border_right
window.borders.bottom = opts.border_bottom
// Visible
nickname.visible = true
prev_proto.visible = next_proto.visible = opts.show_protocol_cycle && !IsEmpty(next_proto, prev_proto)
avatar.visible = opts.show_avatar && avatar.enabled && !IsEmpty(avatar)
protocol.visible = opts.show_protocol && protocol.enabled
status_icon.visible = status_name.visible = opts.show_status && status_name.enabled
status_msg.visible = opts.show_status_msg && !IsEmpty(status_msg)
listening_icon.visible = listening.visible = opts.show_listening && !IsEmpty(listening_icon, listening)
email_icon.visible = email.visible = opts.show_email && email.enabled && !IsEmpty(email_icon, email) && email.text > 0
// Space to draw the frame around
var BORDER_SPACE = 2
nickname.borders = BORDER_SPACE
protocol.borders = BORDER_SPACE
status_icon.borders = BORDER_SPACE
status_name.borders = BORDER_SPACE
status_msg.borders = BORDER_SPACE
listening_icon.borders = BORDER_SPACE
listening.borders = BORDER_SPACE
email_icon.borders = BORDER_SPACE
email.borders = BORDER_SPACE
if (avatar.visible)
{
if (opts.avatar_use_fixed_size)
resize(avatar, opts.avatar_fixed_size, opts.avatar_fixed_size, opts.avatar_allow_grow)
else
resize(avatar, window.width/2.5, window.height - (!info.resize_frame && prev_proto.visible ? prev_proto.height : 0), opts.avatar_allow_grow)
}
if (!info.resize_frame && prev_proto.visible)
{
prev_proto.left = 0
prev_proto.bottom = window.height
next_proto.right = window.width
next_proto.bottom = window.height
}
var avatar_bottom = avatar.bottom
if (opts.show_avatar && opts.avatar_use_fixed_size)
avatar_bottom = opts.avatar_fixed_size
var top = 0
if (opts.align_right)
{
// Align
nickname.hAlign = RIGHT
protocol.hAlign = RIGHT
status_name.hAlign = RIGHT
status_msg.hAlign = RIGHT
listening.hAlign = RIGHT
var right = window.right
function updateTopRight(val)
{
top = val
if (opts.use_under_avatar && top > avatar_bottom)
right = window.right
}
if (avatar.visible)
{
avatar.right = window.right
avatar.top = 0
right = avatar.left - 6
}
if (opts.show_avatar && opts.avatar_use_fixed_size)
right = window.right - opts.avatar_fixed_size - 6
nickname.right = right
nickname.top = top
updateTopRight(nickname.bottom)
if (protocol.visible)
{
protocol.right = right
protocol.top = top
if (email.visible)
{
email_icon.right = protocol.left - 10
email.right = email_icon.left
var bottom = valign_center(top, protocol, email_icon, email)
updateTopRight(bottom)
}
else
updateTopRight(protocol.bottom)
}
else if (email.visible)
{
email_icon.borders.left = 0
email_icon.right = right
email.right = email_icon.left
var bottom = valign_center(top, email_icon, email)
updateTopRight(bottom)
}
if (status_name.visible)
{
status_icon.right = right
status_name.right = status_icon.left
var bottom = valign_center(top, status_icon, status_name)
updateTopRight(bottom)
}
if (status_msg.visible)
{
status_msg.right = right
status_msg.top = top
updateTopRight(status_msg.bottom)
}
if (listening.visible)
{
listening_icon.borders.left = 0
listening_icon.right = right
listening.right = listening_icon.left
var bottom = valign_center(top, listening_icon, listening)
updateTopRight(bottom)
}
}
else
{
var left = 0
function updateTopLeft(val)
{
top = val
if (opts.use_under_avatar && top > avatar_bottom)
left = 0
}
if (avatar.visible)
{
avatar.left = 0
avatar.top = 0
left = avatar.right + 6
}
if (opts.show_avatar && opts.avatar_use_fixed_size)
left = opts.avatar_fixed_size + 6
nickname.left = left
nickname.top = top
updateTopLeft(nickname.bottom)
if (protocol.visible)
{
protocol.left = left
protocol.top = top
if (email.visible)
{
email_icon.left = protocol.right + 10
email.left = email_icon.right
var bottom = valign_center(top, protocol, email_icon, email)
updateTopLeft(bottom)
}
else
updateTopLeft(protocol.bottom)
}
else if (email.visible)
{
email_icon.borders.right = 0
email_icon.left = left
email.left = email_icon.right
var bottom = valign_center(top, email_icon, email)
updateTopLeft(bottom)
}
if (status_name.visible)
{
status_icon.left = left
status_name.left = status_icon.right
var bottom = valign_center(top, status_icon, status_name)
updateTopLeft(bottom)
}
if (status_msg.visible)
{
status_msg.left = left
status_msg.top = top
updateTopLeft(status_msg.bottom)
}
if (listening.visible)
{
listening_icon.borders.right = 0
listening_icon.left = left
listening.borders.left = 0
listening.left = listening_icon.right
var bottom = valign_center(top, listening_icon, listening)
updateTopLeft(bottom)
}
}
if (info.resize_frame)
{
if (prev_proto.visible)
{
top = Math.max(avatar.bottom, top)
prev_proto.left = 0
prev_proto.top = top
next_proto.right = window.width
next_proto.top = top
}
}
}
|