User definable UI viewport, to be able to restrict the UI into a viewport for all...
[kugel-rb/myfork.git] / apps / menus / theme_menu.c
blob233d673da18f209298cf70f843af05583b79227c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Jonathan Gordon
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdbool.h>
23 #include <stddef.h>
24 #include <limits.h>
25 #include "config.h"
26 #include "lang.h"
27 #include "action.h"
28 #include "settings.h"
29 #include "menu.h"
30 #include "tree.h"
31 #include "list.h"
32 #ifdef HAVE_LCD_BITMAP
33 #include "peakmeter.h"
34 #endif
35 #include "color_picker.h"
36 #include "lcd.h"
37 #include "lcd-remote.h"
38 #include "backdrop.h"
39 #include "exported_menus.h"
40 #include "appevents.h"
42 #if LCD_DEPTH > 1
43 /**
44 * Menu to clear the backdrop image
46 static int clear_main_backdrop(void)
48 global_settings.backdrop_file[0]=0;
49 backdrop_unload(BACKDROP_MAIN);
50 backdrop_show(BACKDROP_MAIN);
51 send_event(GUI_EVENT_REFRESH, NULL);
52 settings_save();
53 return 0;
55 MENUITEM_FUNCTION(clear_main_bd, 0, ID2P(LANG_CLEAR_BACKDROP),
56 clear_main_backdrop, NULL, NULL, Icon_NOICON);
57 #endif
58 #ifdef HAVE_LCD_COLOR
60 enum Colors {
61 COLOR_FG = 0,
62 COLOR_BG,
63 COLOR_LSS,
64 COLOR_LSE,
65 COLOR_LST,
66 COLOR_COUNT
68 static struct colour_info
70 int *setting;
71 int lang_id;
72 } colors[COLOR_COUNT] = {
73 [COLOR_FG] = {&global_settings.fg_color, LANG_FOREGROUND_COLOR},
74 [COLOR_BG] = {&global_settings.bg_color, LANG_BACKGROUND_COLOR},
75 [COLOR_LSS] = {&global_settings.lss_color, LANG_SELECTOR_START_COLOR},
76 [COLOR_LSE] = {&global_settings.lse_color, LANG_SELECTOR_END_COLOR},
77 [COLOR_LST] = {&global_settings.lst_color, LANG_SELECTOR_TEXT_COLOR},
80 /**
81 * Menu for fore/back/selection colors
83 static int set_color_func(void* color)
85 int res, c = (intptr_t)color, banned_color=-1;
87 /* Don't let foreground be set the same as background and vice-versa */
88 if (c == COLOR_BG)
89 banned_color = *colors[COLOR_FG].setting;
90 else if (c == COLOR_FG)
91 banned_color = *colors[COLOR_BG].setting;
93 res = (int)set_color(&screens[SCREEN_MAIN],str(colors[c].lang_id),
94 colors[c].setting, banned_color);
95 settings_save();
96 settings_apply(false);
97 return res;
100 static int reset_color(void)
102 global_settings.fg_color = LCD_DEFAULT_FG;
103 global_settings.bg_color = LCD_DEFAULT_BG;
104 global_settings.lss_color = LCD_DEFAULT_LS;
105 global_settings.lse_color = LCD_DEFAULT_BG;
106 global_settings.lst_color = LCD_DEFAULT_FG;
108 settings_save();
109 settings_apply(false);
110 return 0;
112 MENUITEM_FUNCTION(set_bg_col, MENU_FUNC_USEPARAM, ID2P(LANG_BACKGROUND_COLOR),
113 set_color_func, (void*)COLOR_BG, NULL, Icon_NOICON);
114 MENUITEM_FUNCTION(set_fg_col, MENU_FUNC_USEPARAM, ID2P(LANG_FOREGROUND_COLOR),
115 set_color_func, (void*)COLOR_FG, NULL, Icon_NOICON);
116 MENUITEM_FUNCTION(set_lss_col, MENU_FUNC_USEPARAM, ID2P(LANG_SELECTOR_START_COLOR),
117 set_color_func, (void*)COLOR_LSS, NULL, Icon_NOICON);
118 MENUITEM_FUNCTION(set_lse_col, MENU_FUNC_USEPARAM, ID2P(LANG_SELECTOR_END_COLOR),
119 set_color_func, (void*)COLOR_LSE, NULL, Icon_NOICON);
120 MENUITEM_FUNCTION(set_lst_col, MENU_FUNC_USEPARAM, ID2P(LANG_SELECTOR_TEXT_COLOR),
121 set_color_func, (void*)COLOR_LST, NULL, Icon_NOICON);
122 MENUITEM_FUNCTION(reset_colors, 0, ID2P(LANG_RESET_COLORS),
123 reset_color, NULL, NULL, Icon_NOICON);
125 MAKE_MENU(lss_settings, ID2P(LANG_SELECTOR_COLOR_MENU),
126 NULL, Icon_NOICON,
127 &set_lss_col, &set_lse_col, &set_lst_col
130 /* now the actual menu */
131 MAKE_MENU(colors_settings, ID2P(LANG_COLORS_MENU),
132 NULL, Icon_Display_menu,
133 &lss_settings,
134 &set_bg_col, &set_fg_col, &reset_colors
137 #endif /* HAVE_LCD_COLOR */
138 /* LCD MENU */
139 /***********************************/
141 #ifdef HAVE_LCD_BITMAP
142 static struct browse_folder_info fonts = {FONT_DIR, SHOW_FONT};
143 #endif
144 static struct browse_folder_info wps = {WPS_DIR, SHOW_WPS};
145 #ifdef HAVE_REMOTE_LCD
146 static struct browse_folder_info rwps = {WPS_DIR, SHOW_RWPS};
147 #endif
148 static struct browse_folder_info themes = {THEME_DIR, SHOW_CFG};
150 int browse_folder(void *param)
152 const struct browse_folder_info *info =
153 (const struct browse_folder_info*)param;
154 return rockbox_browse(info->dir, info->show_options);
157 #ifdef HAVE_LCD_BITMAP
158 MENUITEM_FUNCTION(browse_fonts, MENU_FUNC_USEPARAM,
159 ID2P(LANG_CUSTOM_FONT),
160 browse_folder, (void*)&fonts, NULL, Icon_Font);
161 #endif
162 MENUITEM_FUNCTION(browse_wps, MENU_FUNC_USEPARAM,
163 ID2P(LANG_WHILE_PLAYING),
164 browse_folder, (void*)&wps, NULL, Icon_Wps);
165 #ifdef HAVE_REMOTE_LCD
166 MENUITEM_FUNCTION(browse_rwps, MENU_FUNC_USEPARAM,
167 ID2P(LANG_REMOTE_WHILE_PLAYING),
168 browse_folder, (void*)&rwps, NULL, Icon_Wps);
169 #endif
171 MENUITEM_SETTING(show_icons, &global_settings.show_icons, NULL);
172 MENUITEM_FUNCTION(browse_themes, MENU_FUNC_USEPARAM,
173 ID2P(LANG_CUSTOM_THEME),
174 browse_folder, (void*)&themes, NULL, Icon_Config);
175 #ifdef HAVE_LCD_BITMAP
176 MENUITEM_SETTING(cursor_style, &global_settings.cursor_style, NULL);
177 #endif
179 MAKE_MENU(theme_menu, ID2P(LANG_THEME_MENU),
180 NULL, Icon_Wps,
181 &browse_themes,
182 #ifdef HAVE_LCD_BITMAP
183 &browse_fonts,
184 #endif
185 &browse_wps,
186 #ifdef HAVE_REMOTE_LCD
187 &browse_rwps,
188 #endif
189 &show_icons,
190 #if LCD_DEPTH > 1
191 &clear_main_bd,
192 #endif
193 #ifdef HAVE_LCD_BITMAP
194 &cursor_style,
195 #endif
196 #ifdef HAVE_LCD_COLOR
197 &colors_settings,
198 #endif