futile attempt to keep the ondioSP rombox working. This will almost certainly be...
[kugel-rb.git] / apps / gui / backdrop.h
blobf770797aa88fd99bfc5c1729a44a2a9b3d0003b2
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 enum backdrop_type {
26 BACKDROP_MAIN,
27 BACKDROP_SKIN_WPS,
30 #if LCD_DEPTH > 1 && !defined(__PCTOOL__)
32 #include "lcd.h"
33 #include "bmp.h"
35 bool backdrop_load(enum backdrop_type bdrop, const char*);
36 void backdrop_unload(enum backdrop_type bdrop);
37 void backdrop_show(enum backdrop_type bdrop);
38 void backdrop_hide(void);
40 #endif
42 #if defined(HAVE_REMOTE_LCD)
43 /* no main backdrop, stubs! */
44 #if LCD_REMOTE_DEPTH > 1
45 bool remote_backdrop_load(enum backdrop_type bdrop,const char* filename);
46 void remote_backdrop_unload(enum backdrop_type bdrop);
47 void remote_backdrop_show(enum backdrop_type bdrop);
48 void remote_backdrop_hide(void);
49 #endif
50 #endif
52 #endif /* _BACKDROP_H */