initial custom statusbar commit
[kugel-rb.git] / apps / gui / statusbar-skinned.h
blob7714496e526c9fdd5cade6f724dd006a843f9fd2
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2009 Thomas Martitz
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 ****************************************************************************/
21 #include <stdio.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include "config.h"
26 #ifndef __STATUSBAR_SKINNED_H__
27 #define __STATUSBAR_SKINNED_H__
30 void sb_skin_data_load(enum screen_type screen, const char *buf, bool isfile);
31 void sb_skin_data_init(enum screen_type screen);
33 /* probably temporary, to shut the classic statusbar up */
34 bool sb_skin_active(void);
35 void sb_skin_init(void);
37 #ifdef HAVE_ALBUMART
38 bool sb_skin_uses_statusbar(int *width, int *height);
39 #endif
41 #endif /* __STATUSBAR_SKINNED_H__ */