Musepack speed optimization. Speep up 64 bit precision synthesizer by another 1.5MHz...
[kugel-rb.git] / apps / gui / quickscreen.h
blob47361bd472d91a518ae784826ec3ce772a8fa7ff
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Kevin Ferrare
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include "button.h"
20 #include "config.h"
22 #ifdef HAVE_QUICKSCREEN
24 #ifndef _GUI_QUICKSCREEN_H_
25 #define _GUI_QUICKSCREEN_H_
27 #include "option_select.h"
28 #include "screen_access.h"
30 enum QUICKSCREEN_ITEM {
31 QUICKSCREEN_LEFT = 0,
32 QUICKSCREEN_RIGHT,
33 QUICKSCREEN_BOTTOM,
34 QUICKSCREEN_ITEM_COUNT,
37 struct gui_quickscreen
39 const struct settings_list *items[QUICKSCREEN_ITEM_COUNT];
40 void (*callback)(struct gui_quickscreen * qs); /* called after a
41 item is changed */
44 bool gui_syncquickscreen_run(struct gui_quickscreen * qs, int button_enter);
47 #ifdef BUTTON_F3
48 extern bool quick_screen_f3(int button_enter);
49 #endif
50 extern bool quick_screen_quick(int button_enter);
53 #endif /*_GUI_QUICK_SCREEN_H_*/
54 #endif /* HAVE_QUICKSCREEN */