2005-11-22 03:38:07 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Kevin Ferrare
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "button.h"
|
|
|
|
#include "config.h"
|
2006-04-10 03:51:17 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_QUICKSCREEN
|
2005-11-22 03:38:07 +00:00
|
|
|
|
|
|
|
#ifndef _GUI_QUICKSCREEN_H_
|
|
|
|
#define _GUI_QUICKSCREEN_H_
|
|
|
|
|
|
|
|
#include "option_select.h"
|
|
|
|
#include "screen_access.h"
|
|
|
|
|
2008-05-03 12:30:40 +00:00
|
|
|
enum QUICKSCREEN_ITEM {
|
|
|
|
QUICKSCREEN_LEFT = 0,
|
|
|
|
QUICKSCREEN_RIGHT,
|
|
|
|
QUICKSCREEN_BOTTOM,
|
|
|
|
QUICKSCREEN_ITEM_COUNT,
|
|
|
|
};
|
2005-11-22 03:38:07 +00:00
|
|
|
|
|
|
|
struct gui_quickscreen
|
|
|
|
{
|
2008-05-03 12:30:40 +00:00
|
|
|
const struct settings_list *items[QUICKSCREEN_ITEM_COUNT];
|
|
|
|
void (*callback)(struct gui_quickscreen * qs); /* called after a
|
|
|
|
item is changed */
|
2005-11-22 03:38:07 +00:00
|
|
|
};
|
|
|
|
|
2008-05-03 12:30:40 +00:00
|
|
|
bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter);
|
|
|
|
|
2005-11-22 03:38:07 +00:00
|
|
|
|
2008-05-03 12:30:40 +00:00
|
|
|
#ifdef BUTTON_F3
|
|
|
|
extern bool quick_screen_f3(int button_enter);
|
|
|
|
#endif
|
|
|
|
extern bool quick_screen_quick(int button_enter);
|
2008-02-05 05:50:20 +00:00
|
|
|
|
|
|
|
|
2005-11-22 03:38:07 +00:00
|
|
|
#endif /*_GUI_QUICK_SCREEN_H_*/
|
2006-04-10 03:51:17 +00:00
|
|
|
#endif /* HAVE_QUICKSCREEN */
|