FS#10853 - Skin support in the radio screen! Check CustomWPS for the new tags
[kugel-rb.git] / apps / gui / theme_settings.c
blob9690193a88dcaf242385e9c0d32c174e313e8812
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Stuart Martin
11 * RTC config saving code (C) 2002 by hessu@hes.iki.fi
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
22 #include <stdio.h>
23 #include <stddef.h>
24 #include <stdlib.h>
25 #include <limits.h>
26 #include "inttypes.h"
27 #include "config.h"
28 #include "action.h"
29 #include "crc32.h"
30 #include "settings.h"
31 #include "wps.h"
32 #include "file.h"
33 #include "radio.h"
34 #include "skin_engine/skin_engine.h"
35 #include "skin_engine/skin_fonts.h"
36 #include "statusbar-skinned.h"
37 #include "bootchart.h"
40 /* call this after loading a .wps/.rwps or other skin files, so that the
41 * skin buffer is reset properly
43 struct skin_load_setting {
44 char* setting;
45 char* suffix;
46 void (*loadfunc)(enum screen_type screen, const char *buf, bool isfile);
49 static const struct skin_load_setting skins[] = {
50 /* This determins the load order. *sbs must be loaded before any other
51 * skin on that screen */
52 #ifdef HAVE_LCD_BITMAP
53 { global_settings.sbs_file, "sbs", sb_skin_data_load},
54 #endif
55 { global_settings.wps_file, "wps", wps_data_load},
56 #if CONFIG_TUNER
57 { global_settings.fms_file, "fms", fms_data_load},
58 #endif
59 #ifdef HAVE_REMOTE_LCD
60 { global_settings.rsbs_file, "rsbs", sb_skin_data_load},
61 { global_settings.rwps_file, "rwps", wps_data_load},
62 #if CONFIG_TUNER
63 { global_settings.rfms_file, "rfms", fms_data_load},
64 #endif
65 #endif
68 void settings_apply_skins(void)
70 char buf[MAX_PATH];
71 /* re-initialize the skin buffer before we start reloading skins */
72 skin_buffer_init();
73 enum screen_type screen = SCREEN_MAIN;
74 unsigned int i;
75 #ifdef HAVE_LCD_BITMAP
76 skin_backdrop_init();
77 skin_font_init();
78 #endif
79 #if CONFIG_TUNER
80 fms_skin_init();
81 #endif
82 for (i=0; i<ARRAYLEN(skins); i++)
84 #ifdef HAVE_REMOTE_LCD
85 screen = skins[i].suffix[0] == 'r' ? SCREEN_REMOTE : SCREEN_MAIN;
86 #endif
87 CHART2(">skin load ", skins[i].suffix);
88 if (skins[i].setting[0] && skins[i].setting[0] != '-')
90 snprintf(buf, sizeof buf, WPS_DIR "/%s.%s",
91 skins[i].setting, skins[i].suffix);
92 skins[i].loadfunc(screen, buf, true);
94 else
96 skins[i].loadfunc(screen, NULL, true);
98 CHART2("<skin load ", skins[i].suffix);
100 viewportmanager_theme_changed(THEME_STATUSBAR);
101 #if LCD_DEPTH > 1 || defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
102 FOR_NB_SCREENS(i)
103 screens[i].backdrop_show(sb_get_backdrop(i));
104 #endif