Mercurial > audlegacy
annotate src/audacious/skin.c @ 3695:cad078740bef
remove old comment from BMP which is no longer relevant as we never pass NULL there anyway.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sat, 06 Oct 2007 16:36:47 -0500 |
parents | 05648eaa2e1f |
children | acb362a67c01 |
rev | line source |
---|---|
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3076
diff
changeset
|
1 /* Audacious |
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3076
diff
changeset
|
2 * Copyright (C) 2005-2007 Audacious development team. |
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3076
diff
changeset
|
3 * |
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3076
diff
changeset
|
4 * BMP - Cross-platform multimedia player |
2313 | 5 * Copyright (C) 2003-2004 BMP development team. |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3076
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
2313 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3076
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
2313 | 24 */ |
25 | |
26 #ifdef HAVE_CONFIG_H | |
27 # include "config.h" | |
28 #endif | |
29 | |
30 /* TODO: enforce default sizes! */ | |
31 | |
32 #include <glib.h> | |
33 #include <stdio.h> | |
34 #include <stdlib.h> | |
35 #include <string.h> | |
36 #include <ctype.h> | |
37 | |
3251 | 38 #include "skin.h" |
2313 | 39 #include "ui_equalizer.h" |
40 #include "main.h" | |
41 #include "ui_playlist.h" | |
42 #include "ui_skinselector.h" | |
43 #include "util.h" | |
44 | |
45 #include "debug.h" | |
46 | |
47 #include "platform/smartinclude.h" | |
48 #include "vfs.h" | |
49 | |
2525 | 50 #include "ui_skinned_window.h" |
51 | |
2313 | 52 #define EXTENSION_TARGETS 7 |
53 | |
2529 | 54 static gchar *ext_targets[EXTENSION_TARGETS] = |
55 { "bmp", "xpm", "png", "svg", "gif", "jpg", "jpeg" }; | |
2313 | 56 |
57 struct _SkinPixmapIdMapping { | |
58 SkinPixmapId id; | |
59 const gchar *name; | |
60 const gchar *alt_name; | |
61 gint width, height; | |
62 }; | |
63 | |
64 struct _SkinMaskInfo { | |
65 gint width, height; | |
66 gchar *inistr; | |
67 }; | |
68 | |
69 typedef struct _SkinPixmapIdMapping SkinPixmapIdMapping; | |
70 typedef struct _SkinMaskInfo SkinMaskInfo; | |
71 | |
72 | |
73 Skin *bmp_active_skin = NULL; | |
74 | |
75 static gint skin_current_num; | |
76 | |
77 static SkinMaskInfo skin_mask_info[] = { | |
78 {275, 116, "Normal"}, | |
79 {275, 16, "WindowShade"}, | |
80 {275, 116, "Equalizer"}, | |
81 {275, 16, "EqualizerWS"} | |
82 }; | |
83 | |
84 static SkinPixmapIdMapping skin_pixmap_id_map[] = { | |
85 {SKIN_MAIN, "main", NULL, 0, 0}, | |
86 {SKIN_CBUTTONS, "cbuttons", NULL, 0, 0}, | |
87 {SKIN_SHUFREP, "shufrep", NULL, 0, 0}, | |
88 {SKIN_TEXT, "text", NULL, 0, 0}, | |
89 {SKIN_TITLEBAR, "titlebar", NULL, 0, 0}, | |
90 {SKIN_VOLUME, "volume", NULL, 0, 0}, | |
91 {SKIN_BALANCE, "balance", "volume", 0, 0}, | |
92 {SKIN_MONOSTEREO, "monoster", NULL, 0, 0}, | |
93 {SKIN_PLAYPAUSE, "playpaus", NULL, 0, 0}, | |
94 {SKIN_NUMBERS, "nums_ex", "numbers", 0, 0}, | |
95 {SKIN_POSBAR, "posbar", NULL, 0, 0}, | |
96 {SKIN_EQMAIN, "eqmain", NULL, 0, 0}, | |
97 {SKIN_PLEDIT, "pledit", NULL, 0, 0}, | |
98 {SKIN_EQ_EX, "eq_ex", NULL, 0, 0} | |
99 }; | |
100 | |
101 static guint skin_pixmap_id_map_size = G_N_ELEMENTS(skin_pixmap_id_map); | |
102 | |
103 static const guchar skin_default_viscolor[24][3] = { | |
104 {9, 34, 53}, | |
105 {10, 18, 26}, | |
106 {0, 54, 108}, | |
107 {0, 58, 116}, | |
108 {0, 62, 124}, | |
109 {0, 66, 132}, | |
110 {0, 70, 140}, | |
111 {0, 74, 148}, | |
112 {0, 78, 156}, | |
113 {0, 82, 164}, | |
114 {0, 86, 172}, | |
115 {0, 92, 184}, | |
116 {0, 98, 196}, | |
117 {0, 104, 208}, | |
118 {0, 110, 220}, | |
119 {0, 116, 232}, | |
120 {0, 122, 244}, | |
121 {0, 128, 255}, | |
122 {0, 128, 255}, | |
123 {0, 104, 208}, | |
124 {0, 80, 160}, | |
125 {0, 56, 112}, | |
126 {0, 32, 64}, | |
127 {200, 200, 200} | |
128 }; | |
129 | |
130 static GdkBitmap *skin_create_transparent_mask(const gchar *, | |
131 const gchar *, | |
132 const gchar *, | |
133 GdkWindow *, | |
134 gint, gint, gboolean); | |
135 | |
136 static void skin_setup_masks(Skin * skin); | |
137 | |
138 static void skin_set_default_vis_color(Skin * skin); | |
139 | |
140 void | |
141 skin_lock(Skin * skin) | |
142 { | |
143 g_mutex_lock(skin->lock); | |
144 } | |
145 | |
146 void | |
147 skin_unlock(Skin * skin) | |
148 { | |
149 g_mutex_unlock(skin->lock); | |
150 } | |
151 | |
152 gboolean | |
153 bmp_active_skin_reload(void) | |
154 { | |
2529 | 155 return bmp_active_skin_load(bmp_active_skin->path); |
2313 | 156 } |
157 | |
158 gboolean | |
159 bmp_active_skin_load(const gchar * path) | |
160 { | |
161 g_return_val_if_fail(bmp_active_skin != NULL, FALSE); | |
162 | |
163 memset(&bmp_active_skin->properties, 0, sizeof(SkinProperties)); | |
164 | |
165 if (!skin_load(bmp_active_skin, path)) | |
166 return FALSE; | |
167 | |
168 skin_setup_masks(bmp_active_skin); | |
169 | |
3221
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3186
diff
changeset
|
170 ui_skinned_window_draw_all(mainwin); |
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3186
diff
changeset
|
171 ui_skinned_window_draw_all(equalizerwin); |
9583cd62231f
implement ui_skinned_window_expose
Tomasz Mon <desowin@gmail.com>
parents:
3186
diff
changeset
|
172 ui_skinned_window_draw_all(playlistwin); |
2313 | 173 |
174 playlistwin_update_list(playlist_get_active()); | |
175 | |
3305
6cadc2ddf4cd
revise 19ad8ea66a03: fix skins with non-standard size posbar
Tomasz Mon <desowin@gmail.com>
parents:
3300
diff
changeset
|
176 SkinPixmap *pixmap; |
6cadc2ddf4cd
revise 19ad8ea66a03: fix skins with non-standard size posbar
Tomasz Mon <desowin@gmail.com>
parents:
3300
diff
changeset
|
177 pixmap = &bmp_active_skin->pixmaps[SKIN_POSBAR]; |
6cadc2ddf4cd
revise 19ad8ea66a03: fix skins with non-standard size posbar
Tomasz Mon <desowin@gmail.com>
parents:
3300
diff
changeset
|
178 /* last 59 pixels of SKIN_POSBAR are knobs (normal and selected) */ |
6cadc2ddf4cd
revise 19ad8ea66a03: fix skins with non-standard size posbar
Tomasz Mon <desowin@gmail.com>
parents:
3300
diff
changeset
|
179 gtk_widget_set_size_request(mainwin_position, pixmap->width - 59, pixmap->height); |
6cadc2ddf4cd
revise 19ad8ea66a03: fix skins with non-standard size posbar
Tomasz Mon <desowin@gmail.com>
parents:
3300
diff
changeset
|
180 |
2313 | 181 return TRUE; |
182 } | |
183 | |
184 void | |
185 skin_pixmap_free(SkinPixmap * p) | |
186 { | |
187 g_return_if_fail(p != NULL); | |
188 g_return_if_fail(p->pixmap != NULL); | |
189 | |
190 g_object_unref(p->pixmap); | |
191 p->pixmap = NULL; | |
192 } | |
193 | |
194 Skin * | |
195 skin_new(void) | |
196 { | |
197 Skin *skin; | |
198 skin = g_new0(Skin, 1); | |
199 skin->lock = g_mutex_new(); | |
200 return skin; | |
201 } | |
202 | |
203 void | |
204 skin_free(Skin * skin) | |
205 { | |
206 gint i; | |
207 | |
208 g_return_if_fail(skin != NULL); | |
209 | |
210 skin_lock(skin); | |
211 | |
212 for (i = 0; i < SKIN_PIXMAP_COUNT; i++) | |
213 skin_pixmap_free(&skin->pixmaps[i]); | |
214 | |
215 for (i = 0; i < SKIN_PIXMAP_COUNT; i++) { | |
216 if (skin->masks[i]) | |
217 g_object_unref(skin->masks[i]); | |
218 if (skin->ds_masks[i]) | |
219 g_object_unref(skin->ds_masks[i]); | |
220 | |
221 skin->masks[i] = NULL; | |
222 skin->ds_masks[i] = NULL; | |
223 } | |
224 | |
225 skin_set_default_vis_color(skin); | |
226 skin_unlock(skin); | |
227 } | |
228 | |
229 void | |
230 skin_destroy(Skin * skin) | |
231 { | |
232 g_return_if_fail(skin != NULL); | |
233 skin_free(skin); | |
234 g_mutex_free(skin->lock); | |
235 g_free(skin); | |
236 } | |
237 | |
238 const SkinPixmapIdMapping * | |
239 skin_pixmap_id_lookup(guint id) | |
240 { | |
241 guint i; | |
242 | |
243 for (i = 0; i < skin_pixmap_id_map_size; i++) { | |
244 if (id == skin_pixmap_id_map[i].id) { | |
245 return &skin_pixmap_id_map[i]; | |
246 } | |
247 } | |
248 | |
249 return NULL; | |
250 } | |
251 | |
252 const gchar * | |
253 skin_pixmap_id_to_name(SkinPixmapId id) | |
254 { | |
255 guint i; | |
256 | |
257 for (i = 0; i < skin_pixmap_id_map_size; i++) { | |
258 if (id == skin_pixmap_id_map[i].id) | |
259 return skin_pixmap_id_map[i].name; | |
260 } | |
261 return NULL; | |
262 } | |
263 | |
264 static void | |
265 skin_set_default_vis_color(Skin * skin) | |
266 { | |
267 memcpy(skin->vis_color, skin_default_viscolor, | |
268 sizeof(skin_default_viscolor)); | |
269 } | |
270 | |
271 /* | |
272 * I have rewritten this to take an array of possible targets, | |
273 * once we find a matching target we now return, instead of loop | |
274 * recursively. This allows for us to support many possible format | |
275 * targets for our skinning engine than just the original winamp | |
276 * formats. | |
277 * | |
278 * -- nenolod, 16 January 2006 | |
279 */ | |
280 gchar * | |
281 skin_pixmap_locate(const gchar * dirname, gchar ** basenames) | |
282 { | |
283 gchar *filename; | |
284 gint i; | |
285 | |
286 for (i = 0; basenames[i]; i++) | |
2989
15f6c9949cde
Add and use find_path_recursively() which search the FS without using VFS (for GTK).
William Pitcock <nenolod@atheme-project.org>
parents:
2654
diff
changeset
|
287 if (!(filename = find_path_recursively(dirname, basenames[i]))) |
2529 | 288 g_free(filename); |
289 else | |
290 return filename; | |
2313 | 291 |
292 /* can't find any targets -- sorry */ | |
293 return NULL; | |
294 } | |
295 | |
296 /* FIXME: this function is temporary. It will be removed when the skinning system | |
297 uses GdkPixbuf in place of GdkPixmap */ | |
298 | |
299 static GdkPixmap * | |
300 pixmap_new_from_file(const gchar * filename) | |
301 { | |
302 GdkPixbuf *pixbuf, *pixbuf2; | |
303 GdkPixmap *pixmap; | |
304 gint width, height; | |
305 | |
306 if (!(pixbuf = gdk_pixbuf_new_from_file(filename, NULL))) | |
307 return NULL; | |
308 | |
309 width = gdk_pixbuf_get_width(pixbuf); | |
310 height = gdk_pixbuf_get_height(pixbuf); | |
311 | |
312 if (!(pixmap = gdk_pixmap_new(mainwin->window, width, height, | |
313 gdk_rgb_get_visual()->depth))) { | |
314 g_object_unref(pixbuf); | |
315 return NULL; | |
316 } | |
317 | |
318 pixbuf2 = audacious_create_colorized_pixbuf(pixbuf, cfg.colorize_r, cfg.colorize_g, cfg.colorize_b); | |
319 g_object_unref(pixbuf); | |
320 | |
3223 | 321 GdkGC *gc; |
322 gc = gdk_gc_new(pixmap); | |
323 gdk_draw_pixbuf(pixmap, gc, pixbuf2, 0, 0, 0, 0, width, height, GDK_RGB_DITHER_MAX, 0, 0); | |
324 g_object_unref(gc); | |
2313 | 325 g_object_unref(pixbuf2); |
326 | |
327 return pixmap; | |
328 } | |
329 | |
330 static gboolean | |
331 skin_load_pixmap_id(Skin * skin, SkinPixmapId id, const gchar * path_p) | |
332 { | |
333 const gchar *path; | |
334 gchar *filename; | |
335 gint width, height; | |
336 const SkinPixmapIdMapping *pixmap_id_mapping; | |
337 GdkPixmap *gpm; | |
338 SkinPixmap *pm = NULL; | |
339 gchar *basenames[EXTENSION_TARGETS * 2 + 1]; /* alternate basenames */ | |
340 gint i, y; | |
341 | |
342 g_return_val_if_fail(skin != NULL, FALSE); | |
343 g_return_val_if_fail(id < SKIN_PIXMAP_COUNT, FALSE); | |
344 | |
345 pixmap_id_mapping = skin_pixmap_id_lookup(id); | |
346 g_return_val_if_fail(pixmap_id_mapping != NULL, FALSE); | |
347 | |
348 memset(&basenames, 0, sizeof(basenames)); | |
349 | |
350 for (i = 0, y = 0; i < EXTENSION_TARGETS; i++, y++) | |
351 { | |
2529 | 352 basenames[y] = |
353 g_strdup_printf("%s.%s", pixmap_id_mapping->name, ext_targets[i]); | |
2313 | 354 |
355 if (pixmap_id_mapping->alt_name) | |
2529 | 356 basenames[++y] = |
357 g_strdup_printf("%s.%s", pixmap_id_mapping->alt_name, | |
358 ext_targets[i]); | |
2313 | 359 } |
360 | |
361 path = path_p ? path_p : skin->path; | |
362 filename = skin_pixmap_locate(path, basenames); | |
363 | |
364 for (i = 0; basenames[i] != NULL; i++) | |
365 { | |
366 g_free(basenames[i]); | |
367 basenames[i] = NULL; | |
368 } | |
369 | |
3603
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
370 if (filename == NULL) |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
371 return FALSE; |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
372 |
2313 | 373 if (!(gpm = pixmap_new_from_file(filename))) { |
374 g_warning("loading of %s failed", filename); | |
375 g_free(filename); | |
376 return FALSE; | |
377 } | |
378 | |
379 g_free(filename); | |
380 | |
381 gdk_drawable_get_size(GDK_DRAWABLE(gpm), &width, &height); | |
382 pm = &skin->pixmaps[id]; | |
383 pm->pixmap = gpm; | |
384 pm->width = width; | |
385 pm->height = height; | |
386 pm->current_width = width; | |
387 pm->current_height = height; | |
388 | |
389 return TRUE; | |
390 } | |
391 | |
392 void | |
393 skin_mask_create(Skin * skin, | |
394 const gchar * path, | |
395 gint id, | |
396 GdkWindow * window) | |
397 { | |
398 skin->masks[id] = | |
399 skin_create_transparent_mask(path, "region.txt", | |
400 skin_mask_info[id].inistr, window, | |
401 skin_mask_info[id].width, | |
402 skin_mask_info[id].height, FALSE); | |
403 | |
404 skin->ds_masks[id] = | |
405 skin_create_transparent_mask(path, "region.txt", | |
406 skin_mask_info[id].inistr, window, | |
407 skin_mask_info[id].width * 2, | |
408 skin_mask_info[id].height * 2, TRUE); | |
409 } | |
410 | |
411 static void | |
412 skin_setup_masks(Skin * skin) | |
413 { | |
414 GdkBitmap *mask; | |
415 | |
416 if (cfg.show_wm_decorations) | |
417 return; | |
418 | |
419 if (cfg.player_visible) { | |
420 mask = skin_get_mask(skin, SKIN_MASK_MAIN + cfg.player_shaded); | |
421 gtk_widget_shape_combine_mask(mainwin, mask, 0, 0); | |
422 } | |
423 | |
424 mask = skin_get_mask(skin, SKIN_MASK_EQ + cfg.equalizer_shaded); | |
425 gtk_widget_shape_combine_mask(equalizerwin, mask, 0, 0); | |
426 } | |
427 | |
428 static GdkBitmap * | |
429 create_default_mask(GdkWindow * parent, gint w, gint h) | |
430 { | |
431 GdkBitmap *ret; | |
432 GdkGC *gc; | |
433 GdkColor pattern; | |
434 | |
435 ret = gdk_pixmap_new(parent, w, h, 1); | |
436 gc = gdk_gc_new(ret); | |
437 pattern.pixel = 1; | |
438 gdk_gc_set_foreground(gc, &pattern); | |
439 gdk_draw_rectangle(ret, gc, TRUE, 0, 0, w, h); | |
440 g_object_unref(gc); | |
441 | |
442 return ret; | |
443 } | |
444 | |
445 static void | |
446 skin_query_color(GdkColormap * cm, GdkColor * c) | |
447 { | |
448 #ifdef GDK_WINDOWING_X11 | |
449 XColor xc = { 0,0,0,0,0,0 }; | |
450 | |
451 xc.pixel = c->pixel; | |
452 XQueryColor(GDK_COLORMAP_XDISPLAY(cm), GDK_COLORMAP_XCOLORMAP(cm), &xc); | |
453 c->red = xc.red; | |
454 c->green = xc.green; | |
455 c->blue = xc.blue; | |
456 #else | |
457 /* do nothing. see what breaks? */ | |
458 #endif | |
459 } | |
460 | |
461 static glong | |
462 skin_calc_luminance(GdkColor * c) | |
463 { | |
464 return (0.212671 * c->red + 0.715160 * c->green + 0.072169 * c->blue); | |
465 } | |
466 | |
467 static void | |
468 skin_get_textcolors(GdkPixmap * text, GdkColor * bgc, GdkColor * fgc) | |
469 { | |
470 /* | |
471 * Try to extract reasonable background and foreground colors | |
472 * from the font pixmap | |
473 */ | |
474 | |
475 GdkImage *gi; | |
476 GdkColormap *cm; | |
477 gint i; | |
478 | |
479 g_return_if_fail(text != NULL); | |
480 g_return_if_fail(GDK_IS_WINDOW(playlistwin->window)); | |
481 | |
482 /* Get the first line of text */ | |
483 gi = gdk_drawable_get_image(text, 0, 0, 152, 6); | |
484 cm = gdk_drawable_get_colormap(playlistwin->window); | |
485 | |
486 for (i = 0; i < 6; i++) { | |
487 GdkColor c; | |
488 gint x; | |
489 glong d, max_d; | |
490 | |
491 /* Get a pixel from the middle of the space character */ | |
492 bgc[i].pixel = gdk_image_get_pixel(gi, 151, i); | |
493 skin_query_color(cm, &bgc[i]); | |
494 | |
495 max_d = 0; | |
496 for (x = 1; x < 150; x++) { | |
497 c.pixel = gdk_image_get_pixel(gi, x, i); | |
498 skin_query_color(cm, &c); | |
499 | |
500 d = labs(skin_calc_luminance(&c) - skin_calc_luminance(&bgc[i])); | |
501 if (d > max_d) { | |
502 memcpy(&fgc[i], &c, sizeof(GdkColor)); | |
503 max_d = d; | |
504 } | |
505 } | |
506 } | |
507 g_object_unref(gi); | |
508 } | |
509 | |
510 gboolean | |
511 init_skins(const gchar * path) | |
512 { | |
513 bmp_active_skin = skin_new(); | |
514 | |
3605
4d157e02380f
Populate bmp_active_skin with default hints when it is created.
William Pitcock <nenolod@atheme.org>
parents:
3604
diff
changeset
|
515 skin_parse_hints(bmp_active_skin, NULL); |
4d157e02380f
Populate bmp_active_skin with default hints when it is created.
William Pitcock <nenolod@atheme.org>
parents:
3604
diff
changeset
|
516 |
3602
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
517 /* create the windows if they haven't been created yet, needed for bootstrapping */ |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
518 if (mainwin == NULL) |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
519 { |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
520 mainwin_create(); |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
521 equalizerwin_create(); |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
522 playlistwin_create(); |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
523 } |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
524 |
2313 | 525 if (!bmp_active_skin_load(path)) { |
3695
cad078740bef
remove old comment from BMP which is no longer relevant as we never pass NULL there anyway.
William Pitcock <nenolod@atheme.org>
parents:
3628
diff
changeset
|
526 if (path != NULL) |
2313 | 527 g_message("Unable to load skin (%s), trying default...", path); |
3695
cad078740bef
remove old comment from BMP which is no longer relevant as we never pass NULL there anyway.
William Pitcock <nenolod@atheme.org>
parents:
3628
diff
changeset
|
528 else |
cad078740bef
remove old comment from BMP which is no longer relevant as we never pass NULL there anyway.
William Pitcock <nenolod@atheme.org>
parents:
3628
diff
changeset
|
529 g_message("Skin not defined: trying default..."); |
2313 | 530 |
531 /* can't load configured skin, retry with default */ | |
532 if (!bmp_active_skin_load(BMP_DEFAULT_SKIN_PATH)) { | |
533 g_message("Unable to load default skin (%s)! Giving up.", | |
534 BMP_DEFAULT_SKIN_PATH); | |
535 return FALSE; | |
536 } | |
537 } | |
538 | |
539 if (cfg.random_skin_on_play) | |
540 skinlist_update(); | |
541 | |
542 return TRUE; | |
543 } | |
544 | |
545 /* | |
546 * Opens and parses a skin's hints file. | |
547 * Hints files are somewhat like "scripts" in Winamp3/5. | |
548 * We'll probably add scripts to it next. | |
549 */ | |
550 void | |
551 skin_parse_hints(Skin * skin, gchar *path_p) | |
552 { | |
553 gchar *filename, *tmp; | |
2529 | 554 INIFile *inifile; |
2313 | 555 |
556 path_p = path_p ? path_p : skin->path; | |
557 | |
2578
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
558 skin->properties.mainwin_othertext = FALSE; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
559 skin->properties.mainwin_vis_x = 24; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
560 skin->properties.mainwin_vis_y = 43; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
561 skin->properties.mainwin_vis_width = 76; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
562 skin->properties.mainwin_text_x = 112; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
563 skin->properties.mainwin_text_y = 27; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
564 skin->properties.mainwin_text_width = 153; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
565 skin->properties.mainwin_infobar_x = 112; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
566 skin->properties.mainwin_infobar_y = 43; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
567 skin->properties.mainwin_number_0_x = 36; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
568 skin->properties.mainwin_number_0_y = 26; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
569 skin->properties.mainwin_number_1_x = 48; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
570 skin->properties.mainwin_number_1_y = 26; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
571 skin->properties.mainwin_number_2_x = 60; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
572 skin->properties.mainwin_number_2_y = 26; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
573 skin->properties.mainwin_number_3_x = 78; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
574 skin->properties.mainwin_number_3_y = 26; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
575 skin->properties.mainwin_number_4_x = 90; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
576 skin->properties.mainwin_number_4_y = 26; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
577 skin->properties.mainwin_playstatus_x = 24; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
578 skin->properties.mainwin_playstatus_y = 28; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
579 skin->properties.mainwin_menurow_visible = TRUE; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
580 skin->properties.mainwin_volume_x = 107; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
581 skin->properties.mainwin_volume_y = 57; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
582 skin->properties.mainwin_balance_x = 177; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
583 skin->properties.mainwin_balance_y = 57; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
584 skin->properties.mainwin_position_x = 16; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
585 skin->properties.mainwin_position_y = 72; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
586 skin->properties.mainwin_othertext_is_status = FALSE; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
587 skin->properties.mainwin_othertext_visible = skin->properties.mainwin_othertext; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
588 skin->properties.mainwin_text_visible = TRUE; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
589 skin->properties.mainwin_vis_visible = TRUE; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
590 skin->properties.mainwin_previous_x = 16; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
591 skin->properties.mainwin_previous_y = 88; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
592 skin->properties.mainwin_play_x = 39; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
593 skin->properties.mainwin_play_y = 88; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
594 skin->properties.mainwin_pause_x = 62; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
595 skin->properties.mainwin_pause_y = 88; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
596 skin->properties.mainwin_stop_x = 85; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
597 skin->properties.mainwin_stop_y = 88; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
598 skin->properties.mainwin_next_x = 108; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
599 skin->properties.mainwin_next_y = 88; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
600 skin->properties.mainwin_eject_x = 136; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
601 skin->properties.mainwin_eject_y = 89; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
602 skin->properties.mainwin_width = 275; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
603 skin_mask_info[0].width = skin->properties.mainwin_width; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
604 skin->properties.mainwin_height = 116; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
605 skin_mask_info[0].height = skin->properties.mainwin_height; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
606 skin->properties.mainwin_about_x = 247; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
607 skin->properties.mainwin_about_y = 83; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
608 skin->properties.mainwin_shuffle_x = 164; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
609 skin->properties.mainwin_shuffle_y = 89; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
610 skin->properties.mainwin_repeat_x = 210; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
611 skin->properties.mainwin_repeat_y = 89; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
612 skin->properties.mainwin_eqbutton_x = 219; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
613 skin->properties.mainwin_eqbutton_y = 58; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
614 skin->properties.mainwin_plbutton_x = 242; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
615 skin->properties.mainwin_plbutton_y = 58; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
616 skin->properties.textbox_bitmap_font_width = 5; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
617 skin->properties.textbox_bitmap_font_height = 6; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
618 skin->properties.mainwin_minimize_x = 244; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
619 skin->properties.mainwin_minimize_y = 3; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
620 skin->properties.mainwin_shade_x = 254; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
621 skin->properties.mainwin_shade_y = 3; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
622 skin->properties.mainwin_close_x = 264; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
623 skin->properties.mainwin_close_y = 3; |
33911de063cb
[svn] - change the order that hints are processed in.
nenolod
parents:
2577
diff
changeset
|
624 |
3604
285c6afe0c41
Allow passing NULL path_p to skin_parse_hints() to populate the skin with default settings.
William Pitcock <nenolod@atheme.org>
parents:
3603
diff
changeset
|
625 if (path_p == NULL) |
285c6afe0c41
Allow passing NULL path_p to skin_parse_hints() to populate the skin with default settings.
William Pitcock <nenolod@atheme.org>
parents:
3603
diff
changeset
|
626 return; |
285c6afe0c41
Allow passing NULL path_p to skin_parse_hints() to populate the skin with default settings.
William Pitcock <nenolod@atheme.org>
parents:
3603
diff
changeset
|
627 |
2313 | 628 filename = find_file_recursively(path_p, "skin.hints"); |
2577 | 629 |
630 if (filename == NULL) | |
631 return; | |
632 | |
2529 | 633 inifile = open_ini_file(filename); |
2313 | 634 |
2529 | 635 tmp = read_ini_string(inifile, "skin", "mainwinOthertext"); |
2313 | 636 |
637 if (tmp != NULL) | |
638 { | |
639 skin->properties.mainwin_othertext = atoi(tmp); | |
640 g_free(tmp); | |
641 } | |
642 | |
2529 | 643 tmp = read_ini_string(inifile, "skin", "mainwinVisX"); |
2313 | 644 |
645 if (tmp != NULL) | |
646 { | |
647 skin->properties.mainwin_vis_x = atoi(tmp); | |
648 g_free(tmp); | |
649 } | |
650 | |
2529 | 651 tmp = read_ini_string(inifile, "skin", "mainwinVisY"); |
2313 | 652 |
653 if (tmp != NULL) | |
654 { | |
655 skin->properties.mainwin_vis_y = atoi(tmp); | |
656 g_free(tmp); | |
657 } | |
658 | |
2529 | 659 tmp = read_ini_string(inifile, "skin", "mainwinVisWidth"); |
2313 | 660 |
661 if (tmp != NULL) | |
662 { | |
663 skin->properties.mainwin_vis_width = atoi(tmp); | |
664 g_free(tmp); | |
665 } | |
666 | |
2529 | 667 tmp = read_ini_string(inifile, "skin", "mainwinTextX"); |
2313 | 668 |
669 if (tmp != NULL) | |
670 { | |
671 skin->properties.mainwin_text_x = atoi(tmp); | |
672 g_free(tmp); | |
673 } | |
674 | |
2529 | 675 tmp = read_ini_string(inifile, "skin", "mainwinTextY"); |
2313 | 676 |
677 if (tmp != NULL) | |
678 { | |
679 skin->properties.mainwin_text_y = atoi(tmp); | |
680 g_free(tmp); | |
681 } | |
682 | |
2529 | 683 tmp = read_ini_string(inifile, "skin", "mainwinTextWidth"); |
2313 | 684 |
685 if (tmp != NULL) | |
686 { | |
687 skin->properties.mainwin_text_width = atoi(tmp); | |
688 g_free(tmp); | |
689 } | |
690 | |
2529 | 691 tmp = read_ini_string(inifile, "skin", "mainwinInfoBarX"); |
2313 | 692 |
693 if (tmp != NULL) | |
694 { | |
695 skin->properties.mainwin_infobar_x = atoi(tmp); | |
696 g_free(tmp); | |
697 } | |
698 | |
2529 | 699 tmp = read_ini_string(inifile, "skin", "mainwinInfoBarY"); |
2313 | 700 |
701 if (tmp != NULL) | |
702 { | |
703 skin->properties.mainwin_infobar_y = atoi(tmp); | |
704 g_free(tmp); | |
705 } | |
706 | |
2529 | 707 tmp = read_ini_string(inifile, "skin", "mainwinNumber0X"); |
2313 | 708 |
709 if (tmp != NULL) | |
710 { | |
711 skin->properties.mainwin_number_0_x = atoi(tmp); | |
712 g_free(tmp); | |
713 } | |
714 | |
2529 | 715 tmp = read_ini_string(inifile, "skin", "mainwinNumber0Y"); |
2313 | 716 |
717 if (tmp != NULL) | |
718 { | |
719 skin->properties.mainwin_number_0_y = atoi(tmp); | |
720 g_free(tmp); | |
721 } | |
722 | |
2529 | 723 tmp = read_ini_string(inifile, "skin", "mainwinNumber1X"); |
2313 | 724 |
725 if (tmp != NULL) | |
726 { | |
727 skin->properties.mainwin_number_1_x = atoi(tmp); | |
728 g_free(tmp); | |
729 } | |
730 | |
2529 | 731 tmp = read_ini_string(inifile, "skin", "mainwinNumber1Y"); |
2313 | 732 |
733 if (tmp != NULL) | |
734 { | |
735 skin->properties.mainwin_number_1_y = atoi(tmp); | |
736 g_free(tmp); | |
737 } | |
738 | |
2529 | 739 tmp = read_ini_string(inifile, "skin", "mainwinNumber2X"); |
2313 | 740 |
741 if (tmp != NULL) | |
742 { | |
743 skin->properties.mainwin_number_2_x = atoi(tmp); | |
744 g_free(tmp); | |
745 } | |
746 | |
2529 | 747 tmp = read_ini_string(inifile, "skin", "mainwinNumber2Y"); |
2313 | 748 |
749 if (tmp != NULL) | |
750 { | |
751 skin->properties.mainwin_number_2_y = atoi(tmp); | |
752 g_free(tmp); | |
753 } | |
754 | |
2529 | 755 tmp = read_ini_string(inifile, "skin", "mainwinNumber3X"); |
2313 | 756 |
757 if (tmp != NULL) | |
758 { | |
759 skin->properties.mainwin_number_3_x = atoi(tmp); | |
760 g_free(tmp); | |
761 } | |
762 | |
2529 | 763 tmp = read_ini_string(inifile, "skin", "mainwinNumber3Y"); |
2313 | 764 |
765 if (tmp != NULL) | |
766 { | |
767 skin->properties.mainwin_number_3_y = atoi(tmp); | |
768 g_free(tmp); | |
769 } | |
770 | |
2529 | 771 tmp = read_ini_string(inifile, "skin", "mainwinNumber4X"); |
2313 | 772 |
773 if (tmp != NULL) | |
774 { | |
775 skin->properties.mainwin_number_4_x = atoi(tmp); | |
776 g_free(tmp); | |
777 } | |
778 | |
2529 | 779 tmp = read_ini_string(inifile, "skin", "mainwinNumber4Y"); |
2313 | 780 |
781 if (tmp != NULL) | |
782 { | |
783 skin->properties.mainwin_number_4_y = atoi(tmp); | |
784 g_free(tmp); | |
785 } | |
786 | |
2529 | 787 tmp = read_ini_string(inifile, "skin", "mainwinPlayStatusX"); |
2313 | 788 |
789 if (tmp != NULL) | |
790 { | |
791 skin->properties.mainwin_playstatus_x = atoi(tmp); | |
792 g_free(tmp); | |
793 } | |
794 | |
2529 | 795 tmp = read_ini_string(inifile, "skin", "mainwinPlayStatusY"); |
2313 | 796 |
797 if (tmp != NULL) | |
798 { | |
799 skin->properties.mainwin_playstatus_y = atoi(tmp); | |
800 g_free(tmp); | |
801 } | |
802 | |
2529 | 803 tmp = read_ini_string(inifile, "skin", "mainwinMenurowVisible"); |
2313 | 804 |
805 if (tmp != NULL) | |
806 { | |
807 skin->properties.mainwin_menurow_visible = atoi(tmp); | |
808 g_free(tmp); | |
809 } | |
810 | |
2529 | 811 tmp = read_ini_string(inifile, "skin", "mainwinVolumeX"); |
2313 | 812 |
813 if (tmp != NULL) | |
814 { | |
815 skin->properties.mainwin_volume_x = atoi(tmp); | |
816 g_free(tmp); | |
817 } | |
818 | |
2529 | 819 tmp = read_ini_string(inifile, "skin", "mainwinVolumeY"); |
2313 | 820 |
821 if (tmp != NULL) | |
822 { | |
823 skin->properties.mainwin_volume_y = atoi(tmp); | |
824 g_free(tmp); | |
825 } | |
826 | |
2529 | 827 tmp = read_ini_string(inifile, "skin", "mainwinBalanceX"); |
2313 | 828 |
829 if (tmp != NULL) | |
830 { | |
831 skin->properties.mainwin_balance_x = atoi(tmp); | |
832 g_free(tmp); | |
833 } | |
834 | |
2529 | 835 tmp = read_ini_string(inifile, "skin", "mainwinBalanceY"); |
2313 | 836 |
837 if (tmp != NULL) | |
838 { | |
839 skin->properties.mainwin_balance_y = atoi(tmp); | |
840 g_free(tmp); | |
841 } | |
842 | |
2529 | 843 tmp = read_ini_string(inifile, "skin", "mainwinPositionX"); |
2313 | 844 |
845 if (tmp != NULL) | |
846 { | |
847 skin->properties.mainwin_position_x = atoi(tmp); | |
848 g_free(tmp); | |
849 } | |
850 | |
2529 | 851 tmp = read_ini_string(inifile, "skin", "mainwinPositionY"); |
2313 | 852 |
853 if (tmp != NULL) | |
854 { | |
855 skin->properties.mainwin_position_y = atoi(tmp); | |
856 g_free(tmp); | |
857 } | |
858 | |
2529 | 859 tmp = read_ini_string(inifile, "skin", "mainwinOthertextIsStatus"); |
2313 | 860 |
861 if (tmp != NULL) | |
862 { | |
863 skin->properties.mainwin_othertext_is_status = atoi(tmp); | |
864 g_free(tmp); | |
865 } | |
866 | |
2529 | 867 tmp = read_ini_string(inifile, "skin", "mainwinOthertextVisible"); |
2313 | 868 |
869 if (tmp != NULL) | |
870 { | |
871 skin->properties.mainwin_othertext_visible = atoi(tmp); | |
872 g_free(tmp); | |
873 } | |
874 | |
2529 | 875 tmp = read_ini_string(inifile, "skin", "mainwinTextVisible"); |
2313 | 876 |
877 if (tmp != NULL) | |
878 { | |
879 skin->properties.mainwin_text_visible = atoi(tmp); | |
880 g_free(tmp); | |
881 } | |
882 | |
2529 | 883 tmp = read_ini_string(inifile, "skin", "mainwinVisVisible"); |
2313 | 884 |
885 if (tmp != NULL) | |
886 { | |
887 skin->properties.mainwin_vis_visible = atoi(tmp); | |
888 g_free(tmp); | |
889 } | |
890 | |
2529 | 891 tmp = read_ini_string(inifile, "skin", "mainwinPreviousX"); |
2313 | 892 |
893 if (tmp != NULL) | |
894 { | |
895 skin->properties.mainwin_previous_x = atoi(tmp); | |
896 g_free(tmp); | |
897 } | |
898 | |
2529 | 899 tmp = read_ini_string(inifile, "skin", "mainwinPreviousY"); |
2313 | 900 |
901 if (tmp != NULL) | |
902 { | |
903 skin->properties.mainwin_previous_y = atoi(tmp); | |
904 g_free(tmp); | |
905 } | |
906 | |
2529 | 907 tmp = read_ini_string(inifile, "skin", "mainwinPlayX"); |
2313 | 908 |
909 if (tmp != NULL) | |
910 { | |
911 skin->properties.mainwin_play_x = atoi(tmp); | |
912 g_free(tmp); | |
913 } | |
914 | |
2529 | 915 tmp = read_ini_string(inifile, "skin", "mainwinPlayY"); |
2313 | 916 |
917 if (tmp != NULL) | |
918 { | |
919 skin->properties.mainwin_play_y = atoi(tmp); | |
920 g_free(tmp); | |
921 } | |
922 | |
2529 | 923 tmp = read_ini_string(inifile, "skin", "mainwinPauseX"); |
2313 | 924 |
925 if (tmp != NULL) | |
926 { | |
927 skin->properties.mainwin_pause_x = atoi(tmp); | |
928 g_free(tmp); | |
929 } | |
930 | |
2529 | 931 tmp = read_ini_string(inifile, "skin", "mainwinPauseY"); |
2313 | 932 |
933 if (tmp != NULL) | |
934 { | |
935 skin->properties.mainwin_pause_y = atoi(tmp); | |
936 g_free(tmp); | |
937 } | |
938 | |
2529 | 939 tmp = read_ini_string(inifile, "skin", "mainwinStopX"); |
2313 | 940 |
941 if (tmp != NULL) | |
942 { | |
943 skin->properties.mainwin_stop_x = atoi(tmp); | |
944 g_free(tmp); | |
945 } | |
946 | |
2529 | 947 tmp = read_ini_string(inifile, "skin", "mainwinStopY"); |
2313 | 948 |
949 if (tmp != NULL) | |
950 { | |
951 skin->properties.mainwin_stop_y = atoi(tmp); | |
952 g_free(tmp); | |
953 } | |
954 | |
2529 | 955 tmp = read_ini_string(inifile, "skin", "mainwinNextX"); |
2313 | 956 |
957 if (tmp != NULL) | |
958 { | |
959 skin->properties.mainwin_next_x = atoi(tmp); | |
960 g_free(tmp); | |
961 } | |
962 | |
2529 | 963 tmp = read_ini_string(inifile, "skin", "mainwinNextY"); |
2313 | 964 |
965 if (tmp != NULL) | |
966 { | |
967 skin->properties.mainwin_next_y = atoi(tmp); | |
968 g_free(tmp); | |
969 } | |
970 | |
2529 | 971 tmp = read_ini_string(inifile, "skin", "mainwinEjectX"); |
2313 | 972 |
973 if (tmp != NULL) | |
974 { | |
975 skin->properties.mainwin_eject_x = atoi(tmp); | |
976 g_free(tmp); | |
977 } | |
978 | |
2529 | 979 tmp = read_ini_string(inifile, "skin", "mainwinEjectY"); |
2313 | 980 |
981 if (tmp != NULL) | |
982 { | |
983 skin->properties.mainwin_eject_y = atoi(tmp); | |
984 g_free(tmp); | |
985 } | |
986 | |
2529 | 987 tmp = read_ini_string(inifile, "skin", "mainwinWidth"); |
2313 | 988 |
989 if (tmp != NULL) | |
990 { | |
991 skin->properties.mainwin_width = atoi(tmp); | |
992 g_free(tmp); | |
993 } | |
994 | |
2581 | 995 skin_mask_info[0].width = skin->properties.mainwin_width; |
996 | |
2529 | 997 tmp = read_ini_string(inifile, "skin", "mainwinHeight"); |
2313 | 998 |
999 if (tmp != NULL) | |
1000 { | |
1001 skin->properties.mainwin_height = atoi(tmp); | |
1002 g_free(tmp); | |
1003 } | |
1004 | |
2581 | 1005 skin_mask_info[0].height = skin->properties.mainwin_height; |
1006 | |
2529 | 1007 tmp = read_ini_string(inifile, "skin", "mainwinAboutX"); |
2313 | 1008 |
1009 if (tmp != NULL) | |
1010 { | |
1011 skin->properties.mainwin_about_x = atoi(tmp); | |
1012 g_free(tmp); | |
1013 } | |
1014 | |
2529 | 1015 tmp = read_ini_string(inifile, "skin", "mainwinAboutY"); |
2313 | 1016 |
1017 if (tmp != NULL) | |
1018 { | |
1019 skin->properties.mainwin_about_y = atoi(tmp); | |
1020 g_free(tmp); | |
1021 } | |
1022 | |
2529 | 1023 tmp = read_ini_string(inifile, "skin", "mainwinShuffleX"); |
2313 | 1024 |
1025 if (tmp != NULL) | |
1026 { | |
1027 skin->properties.mainwin_shuffle_x = atoi(tmp); | |
1028 g_free(tmp); | |
1029 } | |
1030 | |
2529 | 1031 tmp = read_ini_string(inifile, "skin", "mainwinShuffleY"); |
2313 | 1032 |
1033 if (tmp != NULL) | |
1034 { | |
1035 skin->properties.mainwin_shuffle_y = atoi(tmp); | |
1036 g_free(tmp); | |
1037 } | |
1038 | |
2529 | 1039 tmp = read_ini_string(inifile, "skin", "mainwinRepeatX"); |
2313 | 1040 |
1041 if (tmp != NULL) | |
1042 { | |
1043 skin->properties.mainwin_repeat_x = atoi(tmp); | |
1044 g_free(tmp); | |
1045 } | |
1046 | |
2529 | 1047 tmp = read_ini_string(inifile, "skin", "mainwinRepeatY"); |
2313 | 1048 |
1049 if (tmp != NULL) | |
1050 { | |
1051 skin->properties.mainwin_repeat_y = atoi(tmp); | |
1052 g_free(tmp); | |
1053 } | |
1054 | |
2529 | 1055 tmp = read_ini_string(inifile, "skin", "mainwinEQButtonX"); |
2313 | 1056 |
1057 if (tmp != NULL) | |
1058 { | |
1059 skin->properties.mainwin_eqbutton_x = atoi(tmp); | |
1060 g_free(tmp); | |
1061 } | |
1062 | |
2529 | 1063 tmp = read_ini_string(inifile, "skin", "mainwinEQButtonY"); |
2313 | 1064 |
1065 if (tmp != NULL) | |
1066 { | |
1067 skin->properties.mainwin_eqbutton_y = atoi(tmp); | |
1068 g_free(tmp); | |
1069 } | |
1070 | |
2529 | 1071 tmp = read_ini_string(inifile, "skin", "mainwinPLButtonX"); |
2313 | 1072 |
1073 if (tmp != NULL) | |
1074 { | |
1075 skin->properties.mainwin_plbutton_x = atoi(tmp); | |
1076 g_free(tmp); | |
1077 } | |
1078 | |
2529 | 1079 tmp = read_ini_string(inifile, "skin", "mainwinPLButtonY"); |
2313 | 1080 |
1081 if (tmp != NULL) | |
1082 { | |
1083 skin->properties.mainwin_plbutton_y = atoi(tmp); | |
1084 g_free(tmp); | |
1085 } | |
1086 | |
2529 | 1087 tmp = read_ini_string(inifile, "skin", "textboxBitmapFontWidth"); |
2313 | 1088 |
1089 if (tmp != NULL) | |
1090 { | |
1091 skin->properties.textbox_bitmap_font_width = atoi(tmp); | |
1092 g_free(tmp); | |
1093 } | |
1094 | |
2529 | 1095 tmp = read_ini_string(inifile, "skin", "textboxBitmapFontHeight"); |
2313 | 1096 |
1097 if (tmp != NULL) | |
1098 { | |
1099 skin->properties.textbox_bitmap_font_height = atoi(tmp); | |
1100 g_free(tmp); | |
1101 } | |
1102 | |
2529 | 1103 tmp = read_ini_string(inifile, "skin", "mainwinMinimizeX"); |
2313 | 1104 |
1105 if (tmp != NULL) | |
1106 { | |
1107 skin->properties.mainwin_minimize_x = atoi(tmp); | |
1108 g_free(tmp); | |
1109 } | |
1110 | |
2529 | 1111 tmp = read_ini_string(inifile, "skin", "mainwinMinimizeY"); |
2313 | 1112 |
1113 if (tmp != NULL) | |
1114 { | |
1115 skin->properties.mainwin_minimize_y = atoi(tmp); | |
1116 g_free(tmp); | |
1117 } | |
1118 | |
2529 | 1119 tmp = read_ini_string(inifile, "skin", "mainwinShadeX"); |
2313 | 1120 |
1121 if (tmp != NULL) | |
1122 { | |
1123 skin->properties.mainwin_shade_x = atoi(tmp); | |
1124 g_free(tmp); | |
1125 } | |
1126 | |
2529 | 1127 tmp = read_ini_string(inifile, "skin", "mainwinShadeY"); |
2313 | 1128 |
1129 if (tmp != NULL) | |
1130 { | |
1131 skin->properties.mainwin_shade_y = atoi(tmp); | |
1132 g_free(tmp); | |
1133 } | |
1134 | |
2529 | 1135 tmp = read_ini_string(inifile, "skin", "mainwinCloseX"); |
2313 | 1136 |
1137 if (tmp != NULL) | |
1138 { | |
1139 skin->properties.mainwin_close_x = atoi(tmp); | |
1140 g_free(tmp); | |
1141 } | |
1142 | |
2529 | 1143 tmp = read_ini_string(inifile, "skin", "mainwinCloseY"); |
2313 | 1144 |
1145 if (tmp != NULL) | |
1146 { | |
1147 skin->properties.mainwin_close_y = atoi(tmp); | |
1148 g_free(tmp); | |
1149 } | |
1150 | |
1151 if (filename != NULL) | |
1152 g_free(filename); | |
2529 | 1153 |
1154 close_ini_file(inifile); | |
2313 | 1155 } |
1156 | |
1157 static guint | |
1158 hex_chars_to_int(gchar hi, gchar lo) | |
1159 { | |
1160 /* | |
1161 * Converts a value in the range 0x00-0xFF | |
1162 * to a integer in the range 0-65535 | |
1163 */ | |
1164 gchar str[3]; | |
1165 | |
1166 str[0] = hi; | |
1167 str[1] = lo; | |
1168 str[2] = 0; | |
1169 | |
1170 return (CLAMP(strtol(str, NULL, 16), 0, 0xFF) << 8); | |
1171 } | |
1172 | |
2529 | 1173 static GdkColor * |
1174 skin_load_color(INIFile *inifile, | |
2313 | 1175 const gchar * section, const gchar * key, |
1176 gchar * default_hex) | |
1177 { | |
2529 | 1178 gchar *value; |
2313 | 1179 GdkColor *color = NULL; |
1180 | |
2529 | 1181 if (inifile || default_hex) { |
1182 if (inifile) { | |
2587
2ef492ad3904
[svn] - always make sure we are operating on a copy of the ini string
nenolod
parents:
2581
diff
changeset
|
1183 value = g_strdup(read_ini_string(inifile, section, key)); |
2313 | 1184 if (value == NULL) { |
1185 value = g_strdup(default_hex); | |
1186 } | |
1187 } else { | |
1188 value = g_strdup(default_hex); | |
1189 } | |
1190 if (value) { | |
1191 gchar *ptr = value; | |
1192 gint len; | |
1193 | |
1194 color = g_new0(GdkColor, 1); | |
1195 g_strstrip(value); | |
1196 | |
1197 if (value[0] == '#') | |
1198 ptr++; | |
1199 len = strlen(ptr); | |
1200 /* | |
1201 * The handling of incomplete values is done this way | |
1202 * to maximize winamp compatibility | |
1203 */ | |
1204 if (len >= 6) { | |
1205 color->red = hex_chars_to_int(*ptr, *(ptr + 1)); | |
1206 ptr += 2; | |
1207 } | |
1208 if (len >= 4) { | |
1209 color->green = hex_chars_to_int(*ptr, *(ptr + 1)); | |
1210 ptr += 2; | |
1211 } | |
1212 if (len >= 2) | |
1213 color->blue = hex_chars_to_int(*ptr, *(ptr + 1)); | |
1214 | |
1215 gdk_colormap_alloc_color(gdk_drawable_get_colormap(playlistwin->window), | |
1216 color, TRUE, TRUE); | |
1217 g_free(value); | |
1218 } | |
1219 } | |
1220 return color; | |
1221 } | |
1222 | |
1223 | |
1224 | |
1225 GdkBitmap * | |
1226 skin_create_transparent_mask(const gchar * path, | |
1227 const gchar * file, | |
1228 const gchar * section, | |
1229 GdkWindow * window, | |
1230 gint width, | |
1231 gint height, gboolean doublesize) | |
1232 { | |
1233 GdkBitmap *mask = NULL; | |
1234 GdkGC *gc = NULL; | |
1235 GdkColor pattern; | |
1236 GdkPoint *gpoints; | |
1237 | |
1238 gchar *filename = NULL; | |
2529 | 1239 INIFile *inifile = NULL; |
2313 | 1240 gboolean created_mask = FALSE; |
1241 GArray *num, *point; | |
1242 guint i, j; | |
1243 gint k; | |
1244 | |
1245 if (path) | |
1246 filename = find_file_recursively(path, file); | |
1247 | |
1248 /* filename will be null if path wasn't set */ | |
2529 | 1249 if (!filename) |
2313 | 1250 return create_default_mask(window, width, height); |
2529 | 1251 |
1252 inifile = open_ini_file(filename); | |
2313 | 1253 |
2529 | 1254 if ((num = read_ini_array(inifile, section, "NumPoints")) == NULL) { |
2313 | 1255 g_free(filename); |
2529 | 1256 close_ini_file(inifile); |
2313 | 1257 return NULL; |
1258 } | |
1259 | |
2529 | 1260 if ((point = read_ini_array(inifile, section, "PointList")) == NULL) { |
2313 | 1261 g_array_free(num, TRUE); |
1262 g_free(filename); | |
2529 | 1263 close_ini_file(inifile); |
2313 | 1264 return NULL; |
1265 } | |
1266 | |
2529 | 1267 close_ini_file(inifile); |
1268 | |
2313 | 1269 mask = gdk_pixmap_new(window, width, height, 1); |
1270 gc = gdk_gc_new(mask); | |
1271 | |
1272 pattern.pixel = 0; | |
1273 gdk_gc_set_foreground(gc, &pattern); | |
1274 gdk_draw_rectangle(mask, gc, TRUE, 0, 0, width, height); | |
1275 pattern.pixel = 1; | |
1276 gdk_gc_set_foreground(gc, &pattern); | |
1277 | |
1278 j = 0; | |
1279 for (i = 0; i < num->len; i++) { | |
1280 if ((int)(point->len - j) >= (g_array_index(num, gint, i) * 2)) { | |
1281 created_mask = TRUE; | |
1282 gpoints = g_new(GdkPoint, g_array_index(num, gint, i)); | |
1283 for (k = 0; k < g_array_index(num, gint, i); k++) { | |
1284 gpoints[k].x = | |
1285 g_array_index(point, gint, j + k * 2) * (1 + doublesize); | |
1286 gpoints[k].y = | |
1287 g_array_index(point, gint, | |
1288 j + k * 2 + 1) * (1 + doublesize); | |
1289 } | |
1290 j += k * 2; | |
1291 gdk_draw_polygon(mask, gc, TRUE, gpoints, | |
1292 g_array_index(num, gint, i)); | |
1293 g_free(gpoints); | |
1294 } | |
1295 } | |
1296 g_array_free(num, TRUE); | |
1297 g_array_free(point, TRUE); | |
1298 g_free(filename); | |
1299 | |
1300 if (!created_mask) | |
1301 gdk_draw_rectangle(mask, gc, TRUE, 0, 0, width, height); | |
1302 | |
1303 g_object_unref(gc); | |
1304 | |
1305 return mask; | |
1306 } | |
1307 | |
1308 void | |
1309 skin_load_viscolor(Skin * skin, const gchar * path, const gchar * basename) | |
1310 { | |
1311 VFSFile *file; | |
1312 gint i, c; | |
1313 gchar line[256], *filename; | |
1314 GArray *a; | |
1315 | |
1316 g_return_if_fail(skin != NULL); | |
1317 g_return_if_fail(path != NULL); | |
1318 g_return_if_fail(basename != NULL); | |
1319 | |
1320 skin_set_default_vis_color(skin); | |
1321 | |
1322 filename = find_file_recursively(path, basename); | |
1323 if (!filename) | |
1324 return; | |
1325 | |
1326 if (!(file = vfs_fopen(filename, "r"))) { | |
1327 g_free(filename); | |
1328 return; | |
1329 } | |
1330 | |
1331 g_free(filename); | |
1332 | |
1333 for (i = 0; i < 24; i++) { | |
1334 if (vfs_fgets(line, 255, file)) { | |
1335 a = string_to_garray(line); | |
1336 if (a->len > 2) { | |
1337 for (c = 0; c < 3; c++) | |
1338 skin->vis_color[i][c] = g_array_index(a, gint, c); | |
1339 } | |
1340 g_array_free(a, TRUE); | |
1341 } | |
1342 else | |
1343 break; | |
1344 } | |
1345 | |
1346 vfs_fclose(file); | |
1347 } | |
1348 | |
1349 #if 0 | |
1350 static void | |
1351 skin_numbers_generate_dash(Skin * skin) | |
1352 { | |
1353 GdkGC *gc; | |
1354 GdkPixmap *pixmap; | |
1355 SkinPixmap *numbers; | |
1356 | |
1357 g_return_if_fail(skin != NULL); | |
1358 | |
1359 numbers = &skin->pixmaps[SKIN_NUMBERS]; | |
1360 if (!numbers->pixmap || numbers->current_width < 99) | |
1361 return; | |
1362 | |
1363 gc = gdk_gc_new(numbers->pixmap); | |
1364 pixmap = gdk_pixmap_new(mainwin->window, 108, | |
1365 numbers->current_height, | |
1366 -1); | |
1367 | |
1368 skin_draw_pixmap(skin, pixmap, gc, SKIN_NUMBERS, 0, 0, 0, 0, 99, 13); | |
1369 skin_draw_pixmap(skin, pixmap, gc, SKIN_NUMBERS, 90, 0, 99, 0, 9, 13); | |
1370 skin_draw_pixmap(skin, pixmap, gc, SKIN_NUMBERS, 20, 6, 101, 6, 5, 1); | |
1371 | |
1372 g_object_unref(numbers->pixmap); | |
1373 g_object_unref(gc); | |
1374 | |
1375 numbers->pixmap = pixmap; | |
1376 numbers->current_width = 108; | |
1377 } | |
1378 #endif | |
1379 | |
1380 static void | |
1381 skin_load_cursor(Skin * skin, const gchar * dirname) | |
1382 { | |
1383 const gchar * basename = "normal.cur"; | |
1384 gchar * filename = NULL; | |
1385 GdkPixbuf * cursor_pixbuf = NULL; | |
1386 GdkPixbufAnimation * cursor_animated = NULL; | |
1387 GdkCursor * cursor_gdk = NULL; | |
1388 GError * error = NULL; | |
1389 | |
1390 filename = find_file_recursively(dirname, basename); | |
1391 | |
3186 | 1392 if (filename && cfg.custom_cursors) |
2529 | 1393 cursor_animated = gdk_pixbuf_animation_new_from_file(filename, &error); |
3186 | 1394 |
1395 if (cursor_animated) { | |
2313 | 1396 cursor_pixbuf = gdk_pixbuf_animation_get_static_image(cursor_animated); |
1397 cursor_gdk = gdk_cursor_new_from_pixbuf(gdk_display_get_default(), | |
1398 cursor_pixbuf, 0, 0); | |
3186 | 1399 } |
1400 else | |
2313 | 1401 cursor_gdk = gdk_cursor_new(GDK_LEFT_PTR); |
1402 | |
3602
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1403 if (mainwin && playlistwin && equalizerwin) |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1404 { |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1405 gdk_window_set_cursor(mainwin->window, cursor_gdk); |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1406 gdk_window_set_cursor(playlistwin->window, cursor_gdk); |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1407 gdk_window_set_cursor(equalizerwin->window, cursor_gdk); |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1408 } |
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1409 |
2313 | 1410 gdk_cursor_unref(cursor_gdk); |
1411 } | |
1412 | |
3603
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1413 static gboolean |
2313 | 1414 skin_load_pixmaps(Skin * skin, const gchar * path) |
1415 { | |
1416 GdkPixmap *text_pm; | |
1417 guint i; | |
2654 | 1418 gchar *filename; |
1419 INIFile *inifile; | |
2313 | 1420 |
1421 for (i = 0; i < SKIN_PIXMAP_COUNT; i++) | |
1422 skin_load_pixmap_id(skin, i, path); | |
1423 | |
1424 text_pm = skin->pixmaps[SKIN_TEXT].pixmap; | |
1425 | |
1426 if (text_pm) | |
1427 skin_get_textcolors(text_pm, skin->textbg, skin->textfg); | |
1428 | |
1429 #if 0 | |
1430 if (skin->pixmaps[SKIN_NUMBERS].pixmap) | |
1431 skin_numbers_generate_dash(skin); | |
1432 #endif | |
1433 | |
2654 | 1434 filename = find_file_recursively(path, "pledit.txt"); |
1435 inifile = open_ini_file(filename); | |
2529 | 1436 |
3602
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1437 if (!inifile) |
3603
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1438 return FALSE; |
3602
968144b94ece
Don't crash when the skin doesn't actually exist.
William Pitcock <nenolod@atheme.org>
parents:
3305
diff
changeset
|
1439 |
2313 | 1440 skin->colors[SKIN_PLEDIT_NORMAL] = |
2529 | 1441 skin_load_color(inifile, "Text", "Normal", "#2499ff"); |
2313 | 1442 skin->colors[SKIN_PLEDIT_CURRENT] = |
2529 | 1443 skin_load_color(inifile, "Text", "Current", "#ffeeff"); |
2313 | 1444 skin->colors[SKIN_PLEDIT_NORMALBG] = |
2529 | 1445 skin_load_color(inifile, "Text", "NormalBG", "#0a120a"); |
2313 | 1446 skin->colors[SKIN_PLEDIT_SELECTEDBG] = |
2529 | 1447 skin_load_color(inifile, "Text", "SelectedBG", "#0a124a"); |
1448 | |
1449 if (filename) | |
1450 g_free(filename); | |
1451 close_ini_file(inifile); | |
2313 | 1452 |
1453 skin_mask_create(skin, path, SKIN_MASK_MAIN, mainwin->window); | |
1454 skin_mask_create(skin, path, SKIN_MASK_MAIN_SHADE, mainwin->window); | |
1455 | |
1456 skin_mask_create(skin, path, SKIN_MASK_EQ, equalizerwin->window); | |
1457 skin_mask_create(skin, path, SKIN_MASK_EQ_SHADE, equalizerwin->window); | |
1458 | |
1459 skin_load_viscolor(skin, path, "viscolor.txt"); | |
3603
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1460 |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1461 return TRUE; |
2313 | 1462 } |
1463 | |
1464 static gboolean | |
1465 skin_load_nolock(Skin * skin, const gchar * path, gboolean force) | |
1466 { | |
1467 gchar *cpath; | |
1468 | |
1469 g_return_val_if_fail(skin != NULL, FALSE); | |
1470 g_return_val_if_fail(path != NULL, FALSE); | |
1471 REQUIRE_LOCK(skin->lock); | |
1472 | |
1473 if (!g_file_test(path, G_FILE_TEST_IS_REGULAR | G_FILE_TEST_IS_DIR)) | |
2529 | 1474 return FALSE; |
2313 | 1475 |
3628
05648eaa2e1f
Don't check for rpath twice.
Jonathan Schleifer <js@h3c.de>
parents:
3605
diff
changeset
|
1476 if (!force && skin->path && !strcmp(skin->path, path)) |
05648eaa2e1f
Don't check for rpath twice.
Jonathan Schleifer <js@h3c.de>
parents:
3605
diff
changeset
|
1477 return FALSE; |
2313 | 1478 |
1479 skin_current_num++; | |
1480 | |
1481 skin->path = g_strdup(path); | |
1482 | |
1483 if (!file_is_archive(path)) { | |
1484 /* Parse the hints for this skin. */ | |
1485 skin_parse_hints(skin, NULL); | |
1486 | |
3603
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1487 if (!skin_load_pixmaps(skin, path)) |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1488 return FALSE; |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1489 |
2313 | 1490 skin_load_cursor(skin, path); |
1491 | |
1492 return TRUE; | |
1493 } | |
1494 | |
1495 if (!(cpath = archive_decompress(path))) { | |
1496 g_message("Unable to extract skin archive (%s)", path); | |
1497 return FALSE; | |
1498 } | |
1499 | |
1500 /* Parse the hints for this skin. */ | |
1501 skin_parse_hints(skin, cpath); | |
1502 | |
3603
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1503 if (!skin_load_pixmaps(skin, cpath)) |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1504 { |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1505 del_directory(cpath); |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1506 g_free(cpath); |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1507 return FALSE; |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1508 } |
c983b83967db
Gracefully handle the failure of loading pixmaps.
William Pitcock <nenolod@atheme.org>
parents:
3602
diff
changeset
|
1509 |
2313 | 1510 skin_load_cursor(skin, cpath); |
1511 | |
1512 del_directory(cpath); | |
1513 g_free(cpath); | |
1514 | |
1515 return TRUE; | |
1516 } | |
1517 | |
1518 void | |
1519 skin_install_skin(const gchar * path) | |
1520 { | |
1521 gchar *command; | |
1522 | |
1523 g_return_if_fail(path != NULL); | |
1524 | |
2529 | 1525 command = g_strdup_printf("cp %s %s", |
1526 path, bmp_paths[BMP_PATH_USER_SKIN_DIR]); | |
2313 | 1527 if (system(command)) { |
1528 g_message("Unable to install skin (%s) into user directory (%s)", | |
1529 path, bmp_paths[BMP_PATH_USER_SKIN_DIR]); | |
1530 } | |
1531 g_free(command); | |
1532 } | |
1533 | |
1534 | |
1535 gboolean | |
1536 skin_load(Skin * skin, const gchar * path) | |
1537 { | |
1538 gboolean error; | |
1539 | |
1540 g_return_val_if_fail(skin != NULL, FALSE); | |
1541 | |
1542 if (!path) | |
1543 return FALSE; | |
1544 | |
1545 skin_lock(skin); | |
1546 error = skin_load_nolock(skin, path, FALSE); | |
1547 skin_unlock(skin); | |
1548 | |
1549 return error; | |
1550 } | |
1551 | |
1552 gboolean | |
1553 skin_reload_forced(void) | |
1554 { | |
1555 gboolean error; | |
1556 | |
1557 skin_lock(bmp_active_skin); | |
1558 error = skin_load_nolock(bmp_active_skin, bmp_active_skin->path, TRUE); | |
1559 skin_unlock(bmp_active_skin); | |
1560 | |
1561 return error; | |
1562 } | |
1563 | |
1564 void | |
1565 skin_reload(Skin * skin) | |
1566 { | |
1567 g_return_if_fail(skin != NULL); | |
1568 skin_load_nolock(skin, skin->path, TRUE); | |
1569 } | |
1570 | |
1571 | |
1572 static SkinPixmap * | |
1573 skin_get_pixmap(Skin * skin, SkinPixmapId map_id) | |
1574 { | |
1575 g_return_val_if_fail(skin != NULL, NULL); | |
1576 g_return_val_if_fail(map_id < SKIN_PIXMAP_COUNT, NULL); | |
1577 | |
1578 return &skin->pixmaps[map_id]; | |
1579 } | |
1580 | |
1581 GdkBitmap * | |
1582 skin_get_mask(Skin * skin, SkinMaskId mi) | |
1583 { | |
1584 GdkBitmap **masks; | |
1585 | |
1586 g_return_val_if_fail(skin != NULL, NULL); | |
1587 g_return_val_if_fail(mi < SKIN_PIXMAP_COUNT, NULL); | |
1588 | |
1589 masks = cfg.doublesize ? skin->ds_masks : skin->masks; | |
1590 return masks[mi]; | |
1591 } | |
1592 | |
1593 GdkColor * | |
1594 skin_get_color(Skin * skin, SkinColorId color_id) | |
1595 { | |
1596 GdkColor *ret = NULL; | |
1597 | |
1598 g_return_val_if_fail(skin != NULL, NULL); | |
1599 | |
1600 switch (color_id) { | |
1601 case SKIN_TEXTBG: | |
1602 if (skin->pixmaps[SKIN_TEXT].pixmap) | |
1603 ret = skin->textbg; | |
1604 else | |
1605 ret = skin->def_textbg; | |
1606 break; | |
1607 case SKIN_TEXTFG: | |
1608 if (skin->pixmaps[SKIN_TEXT].pixmap) | |
1609 ret = skin->textfg; | |
1610 else | |
1611 ret = skin->def_textfg; | |
1612 break; | |
1613 default: | |
1614 if (color_id < SKIN_COLOR_COUNT) | |
1615 ret = skin->colors[color_id]; | |
1616 break; | |
1617 } | |
1618 return ret; | |
1619 } | |
1620 | |
1621 void | |
1622 skin_get_viscolor(Skin * skin, guchar vis_color[24][3]) | |
1623 { | |
1624 gint i; | |
1625 | |
1626 g_return_if_fail(skin != NULL); | |
1627 | |
1628 for (i = 0; i < 24; i++) { | |
1629 vis_color[i][0] = skin->vis_color[i][0]; | |
1630 vis_color[i][1] = skin->vis_color[i][1]; | |
1631 vis_color[i][2] = skin->vis_color[i][2]; | |
1632 } | |
1633 } | |
1634 | |
1635 gint | |
1636 skin_get_id(void) | |
1637 { | |
1638 return skin_current_num; | |
1639 } | |
1640 | |
1641 void | |
1642 skin_draw_pixmap(Skin * skin, GdkDrawable * drawable, GdkGC * gc, | |
1643 SkinPixmapId pixmap_id, | |
1644 gint xsrc, gint ysrc, gint xdest, gint ydest, | |
1645 gint width, gint height) | |
1646 { | |
1647 SkinPixmap *pixmap; | |
1648 | |
1649 g_return_if_fail(skin != NULL); | |
1650 | |
1651 pixmap = skin_get_pixmap(skin, pixmap_id); | |
1652 g_return_if_fail(pixmap != NULL); | |
1653 g_return_if_fail(pixmap->pixmap != NULL); | |
1654 | |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2989
diff
changeset
|
1655 if (xsrc+width > pixmap->width || ysrc+height > pixmap->height) { |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2989
diff
changeset
|
1656 if (pixmap_id == SKIN_NUMBERS) |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2989
diff
changeset
|
1657 xsrc = 90; |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1658 else if (pixmap_id == SKIN_VOLUME) { |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1659 /* some winamp skins have too strait SKIN_VOLUME, so let's copy what's remain from SKIN_MAIN */ |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1660 gdk_draw_drawable(drawable, gc, skin_get_pixmap(bmp_active_skin, SKIN_MAIN)->pixmap, |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1661 skin->properties.mainwin_volume_x, skin->properties.mainwin_volume_y, |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1662 pixmap->width, ydest, width - pixmap->width, height); |
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1663 width = pixmap->width; |
3075
5854741efa0d
some skins have SKIN_MONOSTEREO with size 58x20
Tomasz Mon <desowin@gmail.com>
parents:
3056
diff
changeset
|
1664 } else if (pixmap_id == SKIN_MONOSTEREO) { |
5854741efa0d
some skins have SKIN_MONOSTEREO with size 58x20
Tomasz Mon <desowin@gmail.com>
parents:
3056
diff
changeset
|
1665 /* XMMS skins seems to have SKIN_MONOSTEREO with size 58x20 instead of 58x24 */ |
5854741efa0d
some skins have SKIN_MONOSTEREO with size 58x20
Tomasz Mon <desowin@gmail.com>
parents:
3056
diff
changeset
|
1666 gdk_draw_drawable(drawable, gc, skin_get_pixmap(bmp_active_skin, SKIN_MAIN)->pixmap, |
5854741efa0d
some skins have SKIN_MONOSTEREO with size 58x20
Tomasz Mon <desowin@gmail.com>
parents:
3056
diff
changeset
|
1667 212 + xdest, 41, xdest, ydest, width, height); |
3076 | 1668 height = pixmap->height/2; |
3045
464ae313343c
mainwin_volume and mainwin_balance are UiSkinnedHorizontalSliders now; add workaround for skins with too strait SKIN_VOLUME
Tomasz Mon <desowin@gmail.com>
parents:
3020
diff
changeset
|
1669 } else |
3001
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2989
diff
changeset
|
1670 return; |
6d4b7b739232
fully implement UiSkinnedNumber, number.c no longer needed
Tomasz Mon <desowin@gmail.com>
parents:
2989
diff
changeset
|
1671 } |
2313 | 1672 |
1673 width = MIN(width, pixmap->width - xsrc); | |
1674 height = MIN(height, pixmap->height - ysrc); | |
1675 gdk_draw_drawable(drawable, gc, pixmap->pixmap, xsrc, ysrc, | |
1676 xdest, ydest, width, height); | |
1677 } | |
1678 | |
1679 void | |
1680 skin_get_eq_spline_colors(Skin * skin, guint32 colors[19]) | |
1681 { | |
1682 gint i; | |
1683 GdkPixmap *pixmap; | |
1684 GdkImage *img; | |
1685 SkinPixmap *eqmainpm; | |
1686 | |
1687 g_return_if_fail(skin != NULL); | |
1688 | |
1689 eqmainpm = &skin->pixmaps[SKIN_EQMAIN]; | |
1690 if (eqmainpm->pixmap && | |
1691 eqmainpm->current_width >= 116 && eqmainpm->current_height >= 313) | |
1692 pixmap = eqmainpm->pixmap; | |
1693 else | |
1694 return; | |
1695 | |
1696 if (!GDK_IS_DRAWABLE(pixmap)) | |
1697 return; | |
1698 | |
1699 if (!(img = gdk_drawable_get_image(pixmap, 115, 294, 1, 19))) | |
1700 return; | |
1701 | |
1702 for (i = 0; i < 19; i++) | |
1703 colors[i] = gdk_image_get_pixel(img, 0, i); | |
1704 | |
1705 g_object_unref(img); | |
1706 } | |
1707 | |
1708 | |
1709 static void | |
1710 skin_draw_playlistwin_frame_top(Skin * skin, | |
1711 GdkDrawable * drawable, | |
1712 GdkGC * gc, | |
1713 gint width, gint height, gboolean focus) | |
1714 { | |
1715 /* The title bar skin consists of 2 sets of 4 images, 1 set | |
1716 * for focused state and the other for unfocused. The 4 images | |
1717 * are: | |
1718 * | |
1719 * a. right corner (25,20) | |
1720 * b. left corner (25,20) | |
1721 * c. tiler (25,20) | |
1722 * d. title (100,20) | |
1723 * | |
1724 * min allowed width = 100+25+25 = 150 | |
1725 */ | |
1726 | |
1727 gint i, y, c; | |
1728 | |
1729 /* get y offset of the pixmap set to use */ | |
1730 if (focus) | |
1731 y = 0; | |
1732 else | |
1733 y = 21; | |
1734 | |
1735 /* left corner */ | |
1736 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 0, y, 0, 0, 25, 20); | |
1737 | |
1738 /* titlebar title */ | |
1739 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 26, y, | |
1740 (width - 100) / 2, 0, 100, 20); | |
1741 | |
1742 /* titlebar right corner */ | |
1743 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 153, y, | |
1744 width - 25, 0, 25, 20); | |
1745 | |
1746 /* tile draw the remaining frame */ | |
1747 | |
1748 /* compute tile count */ | |
1749 c = (width - (100 + 25 + 25)) / 25; | |
1750 | |
1751 for (i = 0; i < c / 2; i++) { | |
1752 /* left of title */ | |
1753 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 127, y, | |
1754 25 + i * 25, 0, 25, 20); | |
1755 | |
1756 /* right of title */ | |
1757 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 127, y, | |
1758 (width + 100) / 2 + i * 25, 0, 25, 20); | |
1759 } | |
1760 | |
1761 if (c & 1) { | |
1762 /* Odd tile count, so one remaining to draw. Here we split | |
1763 * it into two and draw half on either side of the title */ | |
1764 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 127, y, | |
1765 ((c / 2) * 25) + 25, 0, 12, 20); | |
1766 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 127, y, | |
1767 (width / 2) + ((c / 2) * 25) + 50, 0, 13, 20); | |
1768 } | |
1769 } | |
1770 | |
1771 static void | |
1772 skin_draw_playlistwin_frame_bottom(Skin * skin, | |
1773 GdkDrawable * drawable, | |
1774 GdkGC * gc, | |
1775 gint width, gint height, gboolean focus) | |
1776 { | |
1777 /* The bottom frame skin consists of 1 set of 4 images. The 4 | |
1778 * images are: | |
1779 * | |
1780 * a. left corner with menu buttons (125,38) | |
1781 * b. visualization window (75,38) | |
1782 * c. right corner with play buttons (150,38) | |
1783 * d. frame tile (25,38) | |
1784 * | |
1785 * (min allowed width = 125+150+25=300 | |
1786 */ | |
1787 | |
1788 gint i, c; | |
1789 | |
1790 /* bottom left corner (menu buttons) */ | |
1791 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 0, 72, | |
1792 0, height - 38, 125, 38); | |
1793 | |
1794 c = (width - 275) / 25; | |
1795 | |
1796 /* draw visualization window, if width allows */ | |
1797 if (c >= 3) { | |
1798 c -= 3; | |
1799 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 205, 0, | |
1800 width - (150 + 75), height - 38, 75, 38); | |
1801 } | |
1802 | |
1803 /* Bottom right corner (playbuttons etc) */ | |
1804 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, | |
1805 126, 72, width - 150, height - 38, 150, 38); | |
1806 | |
1807 /* Tile draw the remaining undrawn portions */ | |
1808 for (i = 0; i < c; i++) | |
1809 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 179, 0, | |
1810 125 + i * 25, height - 38, 25, 38); | |
1811 } | |
1812 | |
1813 static void | |
1814 skin_draw_playlistwin_frame_sides(Skin * skin, | |
1815 GdkDrawable * drawable, | |
1816 GdkGC * gc, | |
1817 gint width, gint height, gboolean focus) | |
1818 { | |
1819 /* The side frames consist of 2 tile images. 1 for the left, 1 for | |
1820 * the right. | |
1821 * a. left (12,29) | |
1822 * b. right (19,29) | |
1823 */ | |
1824 | |
1825 gint i; | |
1826 | |
1827 /* frame sides */ | |
1828 for (i = 0; i < (height - (20 + 38)) / 29; i++) { | |
1829 /* left */ | |
1830 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 0, 42, | |
1831 0, 20 + i * 29, 12, 29); | |
1832 | |
1833 /* right */ | |
1834 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 32, 42, | |
1835 width - 19, 20 + i * 29, 19, 29); | |
1836 } | |
1837 } | |
1838 | |
1839 | |
1840 void | |
1841 skin_draw_playlistwin_frame(Skin * skin, | |
1842 GdkDrawable * drawable, GdkGC * gc, | |
1843 gint width, gint height, gboolean focus) | |
1844 { | |
1845 skin_draw_playlistwin_frame_top(skin, drawable, gc, width, height, focus); | |
1846 skin_draw_playlistwin_frame_bottom(skin, drawable, gc, width, height, | |
1847 focus); | |
1848 skin_draw_playlistwin_frame_sides(skin, drawable, gc, width, height, | |
1849 focus); | |
1850 } | |
1851 | |
1852 | |
1853 void | |
1854 skin_draw_playlistwin_shaded(Skin * skin, | |
1855 GdkDrawable * drawable, GdkGC * gc, | |
1856 gint width, gboolean focus) | |
1857 { | |
1858 /* The shade mode titlebar skin consists of 4 images: | |
1859 * a) left corner offset (72,42) size (25,14) | |
1860 * b) right corner, focused offset (99,57) size (50,14) | |
1861 * c) right corner, unfocused offset (99,42) size (50,14) | |
1862 * d) bar tile offset (72,57) size (25,14) | |
1863 */ | |
1864 | |
1865 gint i; | |
1866 | |
1867 /* left corner */ | |
1868 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 72, 42, 0, 0, 25, 14); | |
1869 | |
1870 /* bar tile */ | |
1871 for (i = 0; i < (width - 75) / 25; i++) | |
1872 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 72, 57, | |
1873 (i * 25) + 25, 0, 25, 14); | |
1874 | |
1875 /* right corner */ | |
1876 skin_draw_pixmap(skin, drawable, gc, SKIN_PLEDIT, 99, focus ? 42 : 57, | |
1877 width - 50, 0, 50, 14); | |
1878 } | |
1879 | |
1880 | |
1881 void | |
1882 skin_draw_mainwin_titlebar(Skin * skin, | |
1883 GdkDrawable * drawable, GdkGC * gc, | |
1884 gboolean shaded, gboolean focus) | |
1885 { | |
1886 /* The titlebar skin consists of 2 sets of 2 images, one for for | |
1887 * shaded and the other for unshaded mode, giving a total of 4. | |
1888 * The images are exactly 275x14 pixels, aligned and arranged | |
1889 * vertically on each other in the pixmap in the following order: | |
1890 * | |
1891 * a) unshaded, focused offset (27, 0) | |
1892 * b) unshaded, unfocused offset (27, 15) | |
1893 * c) shaded, focused offset (27, 29) | |
1894 * d) shaded, unfocused offset (27, 42) | |
1895 */ | |
1896 | |
1897 gint y_offset; | |
1898 | |
1899 if (shaded) { | |
1900 if (focus) | |
1901 y_offset = 29; | |
1902 else | |
1903 y_offset = 42; | |
1904 } | |
1905 else { | |
1906 if (focus) | |
1907 y_offset = 0; | |
1908 else | |
1909 y_offset = 15; | |
1910 } | |
1911 | |
1912 skin_draw_pixmap(skin, drawable, gc, SKIN_TITLEBAR, 27, y_offset, | |
1913 0, 0, bmp_active_skin->properties.mainwin_width, MAINWIN_TITLEBAR_HEIGHT); | |
1914 } | |
2443
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1915 |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1916 |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1917 void |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1918 skin_set_random_skin(void) |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1919 { |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1920 SkinNode *node; |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1921 guint32 randval; |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1922 |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1923 /* Get a random value to select the skin to use */ |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1924 randval = g_random_int_range(0, g_list_length(skinlist)); |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1925 node = g_list_nth(skinlist, randval)->data; |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1926 bmp_active_skin_load(node->path); |
93686e8815a4
[svn] - Changed playback_set_random_skin() to skin_set_random_skin()
mf0102
parents:
2313
diff
changeset
|
1927 } |