diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-15 19:40:55 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-24 21:20:13 +0000 |
commit | 092c340a2062fa98b7387fc5fd63578ddae7d0b6 (patch) | |
tree | 98ec96946eeb2ae709cb0528cc6998e21bb9b290 /apps/menu.c | |
parent | 17f7cc92c258bc456a27c3e7c5a19c9409851879 (diff) | |
download | rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.tar.gz rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.zip |
[1/4] Remove SH support and all archos targets
This removes all code specific to SH targets
Change-Id: I7980523785d2596e65c06430f4638eec74a06061
Diffstat (limited to 'apps/menu.c')
-rw-r--r-- | apps/menu.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/apps/menu.c b/apps/menu.c index c1af044374..97af181267 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -60,7 +60,6 @@ /* gui api */ #include "list.h" -#include "buttonbar.h" #define MAX_MENUS 8 /* used to allow for dynamic menus */ @@ -376,12 +375,6 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected, int stack_top = 0; bool in_stringlist, done = false; struct viewport *vps = NULL; -#ifdef HAVE_BUTTONBAR - struct gui_buttonbar buttonbar; - gui_buttonbar_init(&buttonbar); - gui_buttonbar_set_display(&buttonbar, &(screens[SCREEN_MAIN]) ); - gui_buttonbar_set(&buttonbar, "<<<", "", ""); -#endif menu_callback_type menu_callback = NULL; /* if hide_theme is true, assume parent has been fixed before passed into @@ -394,23 +387,10 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected, gui_synclist_draw(&lists); gui_synclist_speak_item(&lists); -#ifdef HAVE_BUTTONBAR - if (!hide_theme) - { - gui_buttonbar_set(&buttonbar, "<<<", "", ""); - gui_buttonbar_draw(&buttonbar); - } -#endif while (!done) { int new_audio_status; redraw_lists = false; - if (!hide_theme) - { -#ifdef HAVE_BUTTONBAR - gui_buttonbar_draw(&buttonbar); -#endif - } #if CONFIG_CODEC == SWCODEC keyclick_set_callback(gui_synclist_keyclick_callback, &lists); #endif @@ -590,13 +570,6 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected, int type = (menu->flags&MENU_TYPE_MASK); /* entering an item that may not be a list, so stop scrolling */ gui_synclist_scroll_stop(&lists); -#ifdef HAVE_BUTTONBAR - if (!hide_theme) - { - gui_buttonbar_unset(&buttonbar); - gui_buttonbar_draw(&buttonbar); - } -#endif selected = get_menu_selection(gui_synclist_get_sel_pos(&lists), menu); if (type == MT_MENU) temp = menu->submenus[selected]; @@ -700,13 +673,6 @@ int do_menu(const struct menu_item_ex *start_menu, int *start_selected, done = true; break; } -#ifdef HAVE_BUTTONBAR - if (!hide_theme) - { - gui_buttonbar_set(&buttonbar, "<<<", "", ""); - gui_buttonbar_draw(&buttonbar); - } -#endif } else { |