after resizing the theme installation window don't use the scaled image for the real...
[Rockbox.git] / apps / gui / gwps-common.h
blob76555c1c0605290613d62a92b878538b96c2593d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Nicolas Pennequin
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #ifndef _GWPS_COMMON_
20 #define _GWPS_COMMON_
21 #include <stdbool.h>
22 #include <sys/types.h> /* for size_t */
24 #include "gwps.h"
26 void fade(bool fade_in);
27 bool gui_wps_display(void);
28 bool update_onvol_change(struct gui_wps * gwps);
29 bool update(struct gui_wps *gwps);
30 bool ffwd_rew(int button);
31 void display_keylock_text(bool locked);
33 bool gui_wps_refresh(struct gui_wps *gwps,
34 int ffwd_offset,
35 unsigned char refresh_mode);
36 #endif