Set svn:keywords property on .c and .h files that didn't already have it. Correct...
[kugel-rb.git] / apps / gui / skin_engine / skin_engine.h
blob5216e9338bb78938b28db648a657b1255501710c
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 #ifdef HAVE_TOUCHSCREEN
31 int wps_get_touchaction(struct wps_data *data);
32 #endif
34 /* setup and display a WPS for the first time */
35 bool gui_wps_display(struct gui_wps *gwps);
38 /* Do a update_type update of the skinned screen */
39 bool skin_update(struct gui_wps *gwps, unsigned int update_type);
42 * setup up the skin-data from a format-buffer (isfile = false)
43 * or from a skinfile (isfile = true)
45 bool skin_data_load(enum screen_type screen, struct wps_data *wps_data,
46 const char *buf, bool isfile);
49 /* initial setup of wps_data */
50 void skin_data_init(struct wps_data *wps_data);
52 /* call this in statusbar toggle handlers if needed */
53 void skin_statusbar_changed(struct gui_wps*);
54 #endif