2005-11-22 03:38:07 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Kevin Ferrare
|
|
|
|
*
|
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.
|
2005-11-22 03:38:07 +00:00
|
|
|
*
|
|
|
|
* 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 "screen_access.h"
|
|
|
|
|
2009-08-13 14:39:31 +00:00
|
|
|
enum quickscreen_item {
|
2009-08-29 14:42:03 +00:00
|
|
|
QUICKSCREEN_TOP = 0,
|
|
|
|
QUICKSCREEN_LEFT,
|
2008-05-03 12:30:40 +00:00
|
|
|
QUICKSCREEN_RIGHT,
|
|
|
|
QUICKSCREEN_BOTTOM,
|
|
|
|
QUICKSCREEN_ITEM_COUNT,
|
|
|
|
};
|
2005-11-22 03:38:07 +00:00
|
|
|
|
2021-10-26 01:05:50 +00:00
|
|
|
enum quickscreen_return {
|
|
|
|
QUICKSCREEN_OK = 0,
|
|
|
|
QUICKSCREEN_IN_USB = 0x1,
|
|
|
|
QUICKSCREEN_GOTO_SHORTCUTS_MENU = 0x2,
|
|
|
|
QUICKSCREEN_CHANGED = 0x4,
|
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-03-07 15:07:49 +00:00
|
|
|
extern int quick_screen_quick(int button_enter);
|
2008-11-03 11:11:07 +00:00
|
|
|
int quickscreen_set_option(void *data);
|
2008-11-05 09:30:20 +00:00
|
|
|
bool is_setting_quickscreenable(const struct settings_list *setting);
|
|
|
|
void set_as_qs_item(const struct settings_list *setting,
|
2009-08-13 14:39:31 +00:00
|
|
|
enum quickscreen_item item);
|
2005-11-22 03:38:07 +00:00
|
|
|
#endif /*_GUI_QUICK_SCREEN_H_*/
|
2006-04-10 03:51:17 +00:00
|
|
|
#endif /* HAVE_QUICKSCREEN */
|