1
0
Fork 0
forked from len0rd/rockbox

FS#9525 - The list for the quickscreen items chooser turned out to not really be usable so try this instead.

Settings in the menus will now have a context menu where you can reset the setting and if its OK to put it on the quickscreen there will be options there to put it on it.

Also, ban last.fm and cuesheet support settings from the QS


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19013 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-11-05 09:30:20 +00:00
parent 0eb6ae938e
commit a22749b5c6
7 changed files with 163 additions and 152 deletions

View file

@ -487,25 +487,6 @@ MAKE_MENU(voice_settings_menu, ID2P(LANG_VOICE), 0, Icon_Voice,
/* VOICE MENU */
/***********************************/
#ifdef HAVE_QUICKSCREEN
/***********************************/
/* CUSTOMISABLE QUICKSCREEN CODE */
MENUITEM_FUNCTION(qs_left_item, MENU_FUNC_USEPARAM, ID2P(LANG_LEFT),
(menu_function)quickscreen_set_option, (intptr_t*)QUICKSCREEN_LEFT, NULL,
Icon_Menu_setting);
MENUITEM_FUNCTION(qs_right_item, MENU_FUNC_USEPARAM, ID2P(LANG_RIGHT),
(menu_function)quickscreen_set_option, (intptr_t*)QUICKSCREEN_RIGHT, NULL,
Icon_Menu_setting);
MENUITEM_FUNCTION(qs_bottom_item, MENU_FUNC_USEPARAM, ID2P(LANG_BOTTOM),
(menu_function)quickscreen_set_option, (intptr_t*)QUICKSCREEN_BOTTOM, NULL,
Icon_Menu_setting);
MAKE_MENU(quickscreen_settings, ID2P(LANG_QS_ITEMS), NULL, Icon_Config,
&qs_left_item, &qs_right_item, &qs_bottom_item);
/* CUSTOMISABLE QUICKSCREEN CODE */
/***********************************/
#endif
/***********************************/
/* SETTINGS MENU */
@ -519,9 +500,6 @@ MENUITEM_FUNCTION(browse_langs, 0, ID2P(LANG_LANGUAGE), language_browse,
MAKE_MENU(settings_menu_item, ID2P(LANG_GENERAL_SETTINGS), 0,
Icon_General_settings_menu,
&playlist_settings, &file_menu,
#ifdef HAVE_QUICKSCREEN
&quickscreen_settings,
#endif
#ifdef HAVE_TAGCACHE
&tagcache_menu,
#endif