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"
46 * Menu to clear the backdrop image
48 static int clear_main_backdrop(void)
50 global_settings
.backdrop_file
[0] = '-';
51 global_settings
.backdrop_file
[1] = '\0';
52 sb_set_backdrop(SCREEN_MAIN
, NULL
);
53 viewportmanager_theme_enable(SCREEN_MAIN
, false, NULL
);
54 viewportmanager_theme_undo(SCREEN_MAIN
, true);
58 MENUITEM_FUNCTION(clear_main_bd
, 0, ID2P(LANG_CLEAR_BACKDROP
),
59 clear_main_backdrop
, NULL
, NULL
, Icon_NOICON
);
71 static struct colour_info
75 } colors
[COLOR_COUNT
] = {
76 [COLOR_FG
] = {&global_settings
.fg_color
, LANG_FOREGROUND_COLOR
},
77 [COLOR_BG
] = {&global_settings
.bg_color
, LANG_BACKGROUND_COLOR
},
78 [COLOR_LSS
] = {&global_settings
.lss_color
, LANG_SELECTOR_START_COLOR
},
79 [COLOR_LSE
] = {&global_settings
.lse_color
, LANG_SELECTOR_END_COLOR
},
80 [COLOR_LST
] = {&global_settings
.lst_color
, LANG_SELECTOR_TEXT_COLOR
},
84 * Menu for fore/back/selection colors
86 static int set_color_func(void* color
)
88 int res
, c
= (intptr_t)color
, banned_color
=-1;
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 res
= (int)set_color(&screens
[SCREEN_MAIN
],str(colors
[c
].lang_id
),
97 colors
[c
].setting
, banned_color
);
99 settings_apply(false);
100 settings_apply_skins();
104 static int reset_color(void)
106 global_settings
.fg_color
= LCD_DEFAULT_FG
;
107 global_settings
.bg_color
= LCD_DEFAULT_BG
;
108 global_settings
.lss_color
= LCD_DEFAULT_LS
;
109 global_settings
.lse_color
= LCD_DEFAULT_BG
;
110 global_settings
.lst_color
= LCD_DEFAULT_FG
;
113 settings_apply(false);
116 MENUITEM_FUNCTION(set_bg_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_BACKGROUND_COLOR
),
117 set_color_func
, (void*)COLOR_BG
, NULL
, Icon_NOICON
);
118 MENUITEM_FUNCTION(set_fg_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_FOREGROUND_COLOR
),
119 set_color_func
, (void*)COLOR_FG
, NULL
, Icon_NOICON
);
120 MENUITEM_FUNCTION(set_lss_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_SELECTOR_START_COLOR
),
121 set_color_func
, (void*)COLOR_LSS
, NULL
, Icon_NOICON
);
122 MENUITEM_FUNCTION(set_lse_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_SELECTOR_END_COLOR
),
123 set_color_func
, (void*)COLOR_LSE
, NULL
, Icon_NOICON
);
124 MENUITEM_FUNCTION(set_lst_col
, MENU_FUNC_USEPARAM
, ID2P(LANG_SELECTOR_TEXT_COLOR
),
125 set_color_func
, (void*)COLOR_LST
, NULL
, Icon_NOICON
);
126 MENUITEM_FUNCTION(reset_colors
, 0, ID2P(LANG_RESET_COLORS
),
127 reset_color
, NULL
, NULL
, Icon_NOICON
);
129 MAKE_MENU(lss_settings
, ID2P(LANG_SELECTOR_COLOR_MENU
),
131 &set_lss_col
, &set_lse_col
, &set_lst_col
134 /* now the actual menu */
135 MAKE_MENU(colors_settings
, ID2P(LANG_COLORS_MENU
),
136 NULL
, Icon_Display_menu
,
138 &set_bg_col
, &set_fg_col
, &reset_colors
141 #endif /* HAVE_LCD_COLOR */
143 /***********************************/
146 /************************************/
151 #ifdef HAVE_LCD_BITMAP
152 static int statusbar_callback_ex(int action
,const struct menu_item_ex
*this_item
,
153 enum screen_type screen
)
156 /* we save the old statusbar value here, so the old statusbars can get
157 * removed and cleared from the display properly on exiting
158 * (in gui_statusbar_changed() ) */
159 static enum statusbar_values old_bar
[NB_SCREENS
];
162 case ACTION_ENTER_MENUITEM
:
163 old_bar
[screen
] = statusbar_position(screen
);
165 case ACTION_EXIT_MENUITEM
:
166 if (old_bar
[screen
] != statusbar_position(screen
))
167 settings_apply_skins();
170 return ACTION_REDRAW
;
173 #ifdef HAVE_REMOTE_LCD
174 static int statusbar_callback_remote(int action
,const struct menu_item_ex
*this_item
)
176 return statusbar_callback_ex(action
, this_item
, SCREEN_REMOTE
);
179 static int statusbar_callback(int action
,const struct menu_item_ex
*this_item
)
181 return statusbar_callback_ex(action
, this_item
, SCREEN_MAIN
);
184 #ifdef HAVE_BUTTONBAR
185 static int buttonbar_callback(int action
, const struct menu_item_ex
*this_item
)
190 case ACTION_EXIT_MENUITEM
:
191 viewportmanager_theme_changed(THEME_BUTTONBAR
);
194 return ACTION_REDRAW
;
197 MENUITEM_SETTING(scrollbar_item
, &global_settings
.scrollbar
, NULL
);
198 MENUITEM_SETTING(scrollbar_width
, &global_settings
.scrollbar_width
, NULL
);
199 MENUITEM_SETTING(statusbar
, &global_settings
.statusbar
,
201 #ifdef HAVE_REMOTE_LCD
202 MENUITEM_SETTING(remote_statusbar
, &global_settings
.remote_statusbar
,
203 statusbar_callback_remote
);
205 #ifdef HAVE_BUTTONBAR
206 MENUITEM_SETTING(buttonbar
, &global_settings
.buttonbar
, buttonbar_callback
);
208 MENUITEM_SETTING(volume_type
, &global_settings
.volume_type
, NULL
);
209 MENUITEM_SETTING(battery_display
, &global_settings
.battery_display
, NULL
);
210 MAKE_MENU(bars_menu
, ID2P(LANG_BARS_MENU
), 0, Icon_NOICON
,
211 &scrollbar_item
, &scrollbar_width
, &statusbar
,
212 #ifdef HAVE_REMOTE_LCD
215 #if CONFIG_KEYPAD == RECORDER_PAD
218 &volume_type
, &battery_display
);
219 #endif /* HAVE_LCD_BITMAP */
223 /************************************/
225 #ifdef HAVE_LCD_BITMAP
226 static struct browse_folder_info fonts
= {FONT_DIR
, SHOW_FONT
};
227 static struct browse_folder_info sbs
= {SBS_DIR
, SHOW_SBS
};
229 static struct browse_folder_info fms
= {WPS_DIR
, SHOW_FMS
};
232 static struct browse_folder_info wps
= {WPS_DIR
, SHOW_WPS
};
233 #ifdef HAVE_REMOTE_LCD
234 static struct browse_folder_info rwps
= {WPS_DIR
, SHOW_RWPS
};
235 static struct browse_folder_info rsbs
= {SBS_DIR
, SHOW_RSBS
};
237 static struct browse_folder_info rfms
= {WPS_DIR
, SHOW_RFMS
};
240 static struct browse_folder_info themes
= {THEME_DIR
, SHOW_CFG
};
242 int browse_folder(void *param
)
245 const struct browse_folder_info
*info
=
246 (const struct browse_folder_info
*)param
;
247 return rockbox_browse(get_user_file_path(info
->dir
, 0, path
, sizeof(path
)),
251 #ifdef HAVE_LCD_BITMAP
252 MENUITEM_FUNCTION(browse_fonts
, MENU_FUNC_USEPARAM
,
253 ID2P(LANG_CUSTOM_FONT
),
254 browse_folder
, (void*)&fonts
, NULL
, Icon_Font
);
256 MENUITEM_FUNCTION(browse_sbs
, MENU_FUNC_USEPARAM
,
257 ID2P(LANG_BASE_SKIN
),
258 browse_folder
, (void*)&sbs
, NULL
, Icon_Wps
);
260 MENUITEM_FUNCTION(browse_fms
, MENU_FUNC_USEPARAM
,
261 ID2P(LANG_RADIOSCREEN
),
262 browse_folder
, (void*)&fms
, NULL
, Icon_Wps
);
265 MENUITEM_FUNCTION(browse_wps
, MENU_FUNC_USEPARAM
,
266 ID2P(LANG_WHILE_PLAYING
),
267 browse_folder
, (void*)&wps
, NULL
, Icon_Wps
);
268 #ifdef HAVE_REMOTE_LCD
269 MENUITEM_FUNCTION(browse_rwps
, MENU_FUNC_USEPARAM
,
270 ID2P(LANG_REMOTE_WHILE_PLAYING
),
271 browse_folder
, (void*)&rwps
, NULL
, Icon_Wps
);
272 MENUITEM_FUNCTION(browse_rsbs
, MENU_FUNC_USEPARAM
,
273 ID2P(LANG_REMOTE_BASE_SKIN
),
274 browse_folder
, (void*)&rsbs
, NULL
, Icon_Wps
);
276 MENUITEM_FUNCTION(browse_rfms
, MENU_FUNC_USEPARAM
,
277 ID2P(LANG_REMOTE_RADIOSCREEN
),
278 browse_folder
, (void*)&rfms
, NULL
, Icon_Wps
);
282 MENUITEM_SETTING(show_icons
, &global_settings
.show_icons
, NULL
);
283 MENUITEM_FUNCTION(browse_themes
, MENU_FUNC_USEPARAM
,
284 ID2P(LANG_CUSTOM_THEME
),
285 browse_folder
, (void*)&themes
, NULL
, Icon_Config
);
286 #ifdef HAVE_LCD_BITMAP
287 MENUITEM_SETTING(cursor_style
, &global_settings
.cursor_style
, NULL
);
290 MAKE_MENU(theme_menu
, ID2P(LANG_THEME_MENU
),
293 #ifdef HAVE_LCD_BITMAP
297 #ifdef HAVE_REMOTE_LCD
302 #ifdef HAVE_REMOTE_LCD
306 #ifdef HAVE_LCD_BITMAP
309 #ifdef HAVE_REMOTE_LCD
316 #ifdef HAVE_LCD_BITMAP
320 #ifdef HAVE_LCD_COLOR