initial commit
[kugel-rb.git] / apps / gui / skin_engine / skin_engine.h
blob33c072e95fefb16e58e1afa5f10b691f01851e34
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Nicolas Pennequin
11 * Copyright (C) 2009 Jonathan Gordon
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #ifndef _SKIN_ENGINE_H
24 #define _SKIN_ENGINE_H
26 #include "skin_buffer.h"
28 #include "wps_internals.h" /* TODO: remove this line.. shoudlnt be needed */
30 enum skinnable_screens {
31 CUSTOM_STATUSBAR,
32 WPS,
35 SKINNABLE_SCREENS_COUNT
39 #ifdef HAVE_TOUCHSCREEN
40 int wps_get_touchaction(struct wps_data *data);
41 #endif
43 /* Do a update_type update of the skinned screen */
44 bool skin_update(struct gui_wps *gwps, unsigned int update_type);
47 * setup up the skin-data from a format-buffer (isfile = false)
48 * or from a skinfile (isfile = true)
50 int skin_data_load(enum screen_type screen, struct wps_data *wps_data,
51 const char *buf, bool isfile, bool single_pass);
52 void skin_data_load_finalize(struct wps_data* data, const char* buf);
54 /* call this in statusbar toggle handlers if needed */
55 void skin_statusbar_changed(struct gui_wps*);
58 /* load a backdrop into the skin buffer.
59 * reuse buffers if the file is already loaded */
60 char* skin_backdrop_load(char* backdrop, char *bmpdir, enum screen_type screen);
61 void skin_backdrop_init(void);
62 #endif