summaryrefslogtreecommitdiff
path: root/apps/gui/backdrop.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/backdrop.h')
-rw-r--r--apps/gui/backdrop.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/apps/gui/backdrop.h b/apps/gui/backdrop.h
new file mode 100644
index 0000000000..c930a87433
--- /dev/null
+++ b/apps/gui/backdrop.h
@@ -0,0 +1,46 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 Dave Chapman
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef _BACKDROP_H
21#define _BACKDROP_H
22
23#if LCD_DEPTH > 1
24
25#include "lcd.h"
26#include "bmp.h"
27
28bool load_main_backdrop(char* filename);
29bool load_wps_backdrop(char* filename);
30
31void unload_main_backdrop(void);
32void unload_wps_backdrop(void);
33
34void show_main_backdrop(void);
35void show_wps_backdrop(void);
36
37#endif /* LCD_DEPTH > 1 */
38
39#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
40bool load_remote_wps_backdrop(char* filename);
41void unload_remote_wps_backdrop(void);
42void show_remote_wps_backdrop(void);
43void show_remote_main_backdrop(void); /* only clears the wps backdrop */
44#endif
45
46#endif /* _BACKDROP_H */