1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
32 #ifdef HAVE_LCD_BITMAP
33 #include "peakmeter.h"
35 #include "color_picker.h"
37 #include "lcd-remote.h"
39 #include "exported_menus.h"
40 #include "appevents.h"
42 #include "statusbar-skinned.h"
43 #include "skin_engine/skin_engine.h"
47 * Menu to clear the backdrop image
49 static int clear_main_backdrop(void)
51 global_settings
.backdrop_file
[0] = '-';
52 global_settings
.backdrop_file
[1] = '\0';
53 skin_backdrop_load_setting();
54 viewportmanager_theme_enable(SCREEN_MAIN
, false, NULL
);
55 viewportmanager_theme_undo(SCREEN_MAIN
, true);
59 MENUITEM_FUNCTION(clear_main_bd
, 0, ID2P(LANG_CLEAR_BACKDROP
),
60 clear_main_backdrop
, NULL
, NULL
, Icon_NOICON
);
72 static struct colour_info
76 } colors
[COLOR_COUNT
] = {
77 [COLOR_FG
] = {&global_settings
.fg_color
, LANG_FOREGROUND_COLOR
},
78 [COLOR_BG
] = {&global_settings
.bg_color
, LANG_BACKGROUND_COLOR
},
79 [COLOR_LSS
] = {&global_settings
.lss_color
, LANG_SELECTOR_START_COLOR
},
80 [COLOR_LSE
] = {&global_settings
.lse_color
, LANG_SELECTOR_END_COLOR
},
81 [COLOR_LST
] = {&global_settings
.lst_color
, LANG_SELECTOR_TEXT_COLOR
},
85 * Menu for fore/back/selection colors
87 static int set_color_func(void* color
)
89 int res
, c
= (intptr_t)color
, banned_color
=-1, old_color
;
90 /* Don't let foreground be set the same as background and vice-versa */
92 banned_color
= *colors
[COLOR_FG
].setting
;
93 else if (c
== COLOR_FG
)
94 banned_color
= *colors
[COLOR_BG
].setting
;
96 old_color
= *colors
[c
].setting
;
97 res
= (int)set_color(&screens
[SCREEN_MAIN
],str(colors
[c
].lang_id
),
98 colors
[c
].setting
, banned_color
);
99 if (old_color
!= *colors
[c
].setting
)
102 settings_apply(false);
103 settings_apply_skins();
108 static int reset_color(void)
110 global_settings
.fg_color
= LCD_DEFAULT_FG
;
111 global_settings
.bg_color
= LCD_DEFAULT_BG
;
112 global_settings
.lss_color
= LCD_DEFAULT_LS
;
113 global_settings
.lse_color
= LCD_DEFAULT_BG
;
114 global_settings
.lst_color
= LCD_DEFAULT_FG
;
117 settings_apply(false);
118 settings_apply_skins();
121 MENUITEM_FUNCTION(set_bg_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_BACKGROUND_COLOR
),
122 set_color_func
, (void*)COLOR_BG
, NULL
, Icon_NOICON
);
123 MENUITEM_FUNCTION(set_fg_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_FOREGROUND_COLOR
),
124 set_color_func
, (void*)COLOR_FG
, NULL
, Icon_NOICON
);
125 MENUITEM_FUNCTION(set_lss_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_SELECTOR_START_COLOR
),
126 set_color_func
, (void*)COLOR_LSS
, NULL
, Icon_NOICON
);
127 MENUITEM_FUNCTION(set_lse_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_SELECTOR_END_COLOR
),
128 set_color_func
, (void*)COLOR_LSE
, NULL
, Icon_NOICON
);
129 MENUITEM_FUNCTION(set_lst_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_SELECTOR_TEXT_COLOR
),
130 set_color_func
, (void*)COLOR_LST
, NULL
, Icon_NOICON
);
131 MENUITEM_FUNCTION(reset_colors
, 0, ID2P(LANG_RESET_COLORS
),
132 reset_color
, NULL
, NULL
, Icon_NOICON
);
134 MAKE_MENU(lss_settings
, ID2P(LANG_SELECTOR_COLOR_MENU
),
136 &set_lss_col
, &set_lse_col
, &set_lst_col
139 /* now the actual menu */
140 MAKE_MENU(colors_settings
, ID2P(LANG_COLORS_MENU
),
141 NULL
, Icon_Display_menu
,
143 &set_bg_col
, &set_fg_col
, &reset_colors
146 #endif /* HAVE_LCD_COLOR */
148 /***********************************/
151 /************************************/
156 #ifdef HAVE_LCD_BITMAP
157 static int statusbar_callback_ex(int action
,const struct menu_item_ex
*this_item
,
158 enum screen_type screen
)
161 /* we save the old statusbar value here, so the old statusbars can get
162 * removed and cleared from the display properly on exiting
163 * (in gui_statusbar_changed() ) */
164 static enum statusbar_values old_bar
[NB_SCREENS
];
167 case ACTION_ENTER_MENUITEM
:
168 old_bar
[screen
] = statusbar_position(screen
);
170 case ACTION_EXIT_MENUITEM
:
171 if (old_bar
[screen
] != statusbar_position(screen
))
172 settings_apply_skins();
175 return ACTION_REDRAW
;
178 #ifdef HAVE_REMOTE_LCD
179 static int statusbar_callback_remote(int action
,const struct menu_item_ex
*this_item
)
181 return statusbar_callback_ex(action
, this_item
, SCREEN_REMOTE
);
184 static int statusbar_callback(int action
,const struct menu_item_ex
*this_item
)
186 return statusbar_callback_ex(action
, this_item
, SCREEN_MAIN
);
189 #ifdef HAVE_BUTTONBAR
190 static int buttonbar_callback(int action
, const struct menu_item_ex
*this_item
)
195 case ACTION_EXIT_MENUITEM
:
196 viewportmanager_theme_changed(THEME_BUTTONBAR
);
199 return ACTION_REDRAW
;
202 MENUITEM_SETTING(scrollbar_item
, &global_settings
.scrollbar
, NULL
);
203 MENUITEM_SETTING(scrollbar_width
, &global_settings
.scrollbar_width
, NULL
);
204 MENUITEM_SETTING(statusbar
, &global_settings
.statusbar
,
206 #ifdef HAVE_REMOTE_LCD
207 MENUITEM_SETTING(remote_statusbar
, &global_settings
.remote_statusbar
,
208 statusbar_callback_remote
);
210 #ifdef HAVE_BUTTONBAR
211 MENUITEM_SETTING(buttonbar
, &global_settings
.buttonbar
, buttonbar_callback
);
213 MENUITEM_SETTING(volume_type
, &global_settings
.volume_type
, NULL
);
214 MENUITEM_SETTING(battery_display
, &global_settings
.battery_display
, NULL
);
215 MAKE_MENU(bars_menu
, ID2P(LANG_BARS_MENU
), 0, Icon_NOICON
,
216 &scrollbar_item
, &scrollbar_width
, &statusbar
,
217 #ifdef HAVE_REMOTE_LCD
220 #if CONFIG_KEYPAD == RECORDER_PAD
223 &volume_type
, &battery_display
);
224 #endif /* HAVE_LCD_BITMAP */
228 /************************************/
230 #ifdef HAVE_LCD_BITMAP
231 static struct browse_folder_info fonts
= {FONT_DIR
, SHOW_FONT
};
232 static struct browse_folder_info sbs
= {SBS_DIR
, SHOW_SBS
};
234 static struct browse_folder_info fms
= {WPS_DIR
, SHOW_FMS
};
237 static struct browse_folder_info wps
= {WPS_DIR
, SHOW_WPS
};
238 #ifdef HAVE_REMOTE_LCD
239 static struct browse_folder_info rwps
= {WPS_DIR
, SHOW_RWPS
};
240 static struct browse_folder_info rsbs
= {SBS_DIR
, SHOW_RSBS
};
242 static struct browse_folder_info rfms
= {WPS_DIR
, SHOW_RFMS
};
245 static struct browse_folder_info themes
= {THEME_DIR
, SHOW_CFG
};
247 int browse_folder(void *param
)
249 const char *ext
, *setting
;
251 char selected
[MAX_FILENAME
+10];
252 const struct browse_folder_info
*info
=
253 (const struct browse_folder_info
*)param
;
254 struct browse_context browse
;
255 browse_context_init(&browse
, info
->show_options
, 0,
256 NULL
, NOICON
, info
->dir
, NULL
);
258 /* if we are in a special settings folder, center the current setting */
259 switch(info
->show_options
)
263 if (global_settings
.lang_file
[0])
264 setting
= global_settings
.lang_file
;
267 lang_id
= LANG_LANGUAGE
;
271 setting
= global_settings
.wps_file
;
272 lang_id
= LANG_WHILE_PLAYING
;
274 #ifdef HAVE_LCD_BITMAP
277 setting
= global_settings
.font_file
;
278 lang_id
= LANG_CUSTOM_FONT
;
282 setting
= global_settings
.sbs_file
;
283 lang_id
= LANG_BASE_SKIN
;
288 setting
= global_settings
.fms_file
;
289 lang_id
= LANG_RADIOSCREEN
;
291 #endif /* CONFIG_TUNER */
293 #ifdef HAVE_REMOTE_LCD
296 setting
= global_settings
.rwps_file
;
297 lang_id
= LANG_REMOTE_WHILE_PLAYING
;
301 setting
= global_settings
.rsbs_file
;
302 lang_id
= LANG_REMOTE_BASE_SKIN
;
307 setting
= global_settings
.rfms_file
;
308 lang_id
= LANG_REMOTE_RADIOSCREEN
;
310 #endif /* CONFIG_TUNER */
313 ext
= setting
= NULL
;
317 /* If we've found a file to center on, do it */
320 /* if setting != NULL, ext is initialized */
321 snprintf(selected
, sizeof(selected
), "%s.%s", setting
, ext
);
322 browse
.selected
= selected
;
323 browse
.icon
= Icon_Questionmark
;
324 browse
.title
= str(lang_id
);
327 return rockbox_browse(&browse
);
330 #ifdef HAVE_LCD_BITMAP
331 MENUITEM_FUNCTION(browse_fonts
, MENU_FUNC_USEPARAM
,
332 ID2P(LANG_CUSTOM_FONT
),
333 browse_folder
, (void*)&fonts
, NULL
, Icon_Font
);
335 MENUITEM_FUNCTION(browse_sbs
, MENU_FUNC_USEPARAM
,
336 ID2P(LANG_BASE_SKIN
),
337 browse_folder
, (void*)&sbs
, NULL
, Icon_Wps
);
339 MENUITEM_FUNCTION(browse_fms
, MENU_FUNC_USEPARAM
,
340 ID2P(LANG_RADIOSCREEN
),
341 browse_folder
, (void*)&fms
, NULL
, Icon_Wps
);
344 MENUITEM_FUNCTION(browse_wps
, MENU_FUNC_USEPARAM
,
345 ID2P(LANG_WHILE_PLAYING
),
346 browse_folder
, (void*)&wps
, NULL
, Icon_Wps
);
347 #ifdef HAVE_REMOTE_LCD
348 MENUITEM_FUNCTION(browse_rwps
, MENU_FUNC_USEPARAM
,
349 ID2P(LANG_REMOTE_WHILE_PLAYING
),
350 browse_folder
, (void*)&rwps
, NULL
, Icon_Wps
);
351 MENUITEM_FUNCTION(browse_rsbs
, MENU_FUNC_USEPARAM
,
352 ID2P(LANG_REMOTE_BASE_SKIN
),
353 browse_folder
, (void*)&rsbs
, NULL
, Icon_Wps
);
355 MENUITEM_FUNCTION(browse_rfms
, MENU_FUNC_USEPARAM
,
356 ID2P(LANG_REMOTE_RADIOSCREEN
),
357 browse_folder
, (void*)&rfms
, NULL
, Icon_Wps
);
361 MENUITEM_SETTING(show_icons
, &global_settings
.show_icons
, NULL
);
362 MENUITEM_FUNCTION(browse_themes
, MENU_FUNC_USEPARAM
,
363 ID2P(LANG_CUSTOM_THEME
),
364 browse_folder
, (void*)&themes
, NULL
, Icon_Config
);
365 #ifdef HAVE_LCD_BITMAP
366 MENUITEM_SETTING(cursor_style
, &global_settings
.cursor_style
, NULL
);
369 MAKE_MENU(theme_menu
, ID2P(LANG_THEME_MENU
),
372 #ifdef HAVE_LCD_BITMAP
376 #ifdef HAVE_REMOTE_LCD
381 #ifdef HAVE_REMOTE_LCD
385 #ifdef HAVE_LCD_BITMAP
388 #ifdef HAVE_REMOTE_LCD
395 #ifdef HAVE_LCD_BITMAP
399 #ifdef HAVE_LCD_COLOR