implement smooth seeking acceleration for audio playback and mpegplayer
[Rockbox.git] / apps / gui / backdrop.h
bloba05cb633f65c55aa603d7f101db11b57b8ac239f
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 Dave Chapman
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 ****************************************************************************/
20 #ifndef _BACKDROP_H
21 #define _BACKDROP_H
23 #if LCD_DEPTH > 1
25 #include "lcd.h"
26 #include "bmp.h"
28 bool load_main_backdrop(const char* filename);
29 bool load_wps_backdrop(const char* filename);
31 void unload_main_backdrop(void);
32 void unload_wps_backdrop(void);
34 void show_main_backdrop(void);
35 void show_wps_backdrop(void);
37 #endif /* LCD_DEPTH > 1 */
39 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
40 bool load_remote_wps_backdrop(const char* filename);
41 void unload_remote_wps_backdrop(void);
42 void show_remote_wps_backdrop(void);
43 void show_remote_main_backdrop(void); /* only clears the wps backdrop */
44 #endif
46 #endif /* _BACKDROP_H */