Updated our source code header to explicitly mention that we are GPL v2 or
[Rockbox.git] / apps / gui / backdrop.h
blobdc9805f07b35035886e253215a75cb8fad761af4
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _BACKDROP_H
23 #define _BACKDROP_H
25 #if LCD_DEPTH > 1
27 #include "lcd.h"
28 #include "bmp.h"
30 bool load_main_backdrop(const char* filename);
31 bool load_wps_backdrop(const char* filename);
33 void unload_main_backdrop(void);
34 void unload_wps_backdrop(void);
36 void show_main_backdrop(void);
37 void show_wps_backdrop(void);
39 #endif /* LCD_DEPTH > 1 */
41 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
42 bool load_remote_wps_backdrop(const char* filename);
43 void unload_remote_wps_backdrop(void);
44 void show_remote_wps_backdrop(void);
45 void show_remote_main_backdrop(void); /* only clears the wps backdrop */
46 #endif
48 #endif /* _BACKDROP_H */