2007-02-08 04:33:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-02-13 00:32:17 +00:00
|
|
|
* $Id$
|
2007-02-08 04:33:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Jonathan Gordon
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-02-08 04:33:41 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _EXPORTED_MENUS_H
|
|
|
|
#define _EXPORTED_MENUS_H
|
|
|
|
|
|
|
|
#include "menu.h"
|
|
|
|
/* not needed for plugins */
|
|
|
|
#ifndef PLUGIN
|
|
|
|
|
|
|
|
extern const struct menu_item_ex
|
|
|
|
display_menu, /* display_menu.c */
|
2008-05-22 08:02:48 +00:00
|
|
|
playback_settings, /* playback_menu.c */
|
2007-02-08 04:33:41 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
2007-03-01 11:14:46 +00:00
|
|
|
recording_settings, /* recording_menu.c */
|
2011-01-29 15:01:28 +00:00
|
|
|
recording_settings_menu,
|
2008-08-08 20:58:27 +00:00
|
|
|
peak_meter_menu, /* also used from within recording_menu */
|
2007-02-08 04:33:41 +00:00
|
|
|
#endif
|
|
|
|
sound_settings, /* sound_menu.c */
|
|
|
|
settings_menu_item, /* settings_menu.c */
|
2011-01-29 15:01:28 +00:00
|
|
|
bookmark_settings_menu,
|
2007-03-01 11:14:46 +00:00
|
|
|
playlist_settings, /* playlist_menu.c */
|
2014-01-11 09:46:37 +00:00
|
|
|
viewer_settings_menu, /* playlist_menu.c */
|
2007-10-06 11:47:41 +00:00
|
|
|
equalizer_menu, /* eq_menu.c */
|
2010-05-15 13:09:45 +00:00
|
|
|
#ifdef AUDIOHW_HAVE_EQ
|
|
|
|
audiohw_eq_tone_controls, /* audiohw_eq_menu.c */
|
|
|
|
#endif
|
2011-01-29 15:01:28 +00:00
|
|
|
radio_settings_menu, /* radio_menu.c */
|
2007-10-06 11:47:41 +00:00
|
|
|
theme_menu; /* theme_menu.c */
|
2007-02-19 02:14:51 +00:00
|
|
|
|
2007-10-06 11:47:41 +00:00
|
|
|
struct browse_folder_info {
|
|
|
|
const char* dir;
|
|
|
|
int show_options;
|
|
|
|
};
|
|
|
|
int browse_folder(void *param); /* in theme_menu.c as it is mostly used there */
|
2007-02-08 04:33:41 +00:00
|
|
|
|
|
|
|
#endif /* ! PLUGIN */
|
|
|
|
#endif /*_EXPORTED_MENUS_H */
|