2005-10-28 00:00:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2005-10-30 01:24:35 +00:00
|
|
|
* Copyright (C) 2005 by Kevin Ferrare
|
2005-10-28 00:00:00 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2005-10-28 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2005-11-06 17:30:53 +00:00
|
|
|
#ifndef _GUI_SPLASH_H_
|
|
|
|
#define _GUI_SPLASH_H_
|
2010-07-25 14:44:29 +00:00
|
|
|
|
2005-11-06 17:30:53 +00:00
|
|
|
#include "screen_access.h"
|
2010-07-25 14:44:29 +00:00
|
|
|
#include "gcc_extensions.h"
|
2006-02-26 02:48:05 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
/*
|
2008-08-15 08:27:39 +00:00
|
|
|
* Puts a splash message centered on all the screens for a given period
|
2005-10-28 00:00:00 +00:00
|
|
|
* - ticks : how long the splash is displayed (in rb ticks)
|
|
|
|
* - fmt : what to say *printf style
|
|
|
|
*/
|
2008-08-15 08:27:39 +00:00
|
|
|
extern void splashf(int ticks, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
/*
|
2007-03-16 21:56:08 +00:00
|
|
|
* Puts a splash message centered on all the screens for a given period
|
2005-10-28 00:00:00 +00:00
|
|
|
* - ticks : how long the splash is displayed (in rb ticks)
|
2008-08-15 08:27:39 +00:00
|
|
|
* - str : what to say, if this is a LANG_* string (from ID2P)
|
|
|
|
* it will be voiced
|
2005-10-28 00:00:00 +00:00
|
|
|
*/
|
2008-08-15 08:27:39 +00:00
|
|
|
extern void splash(int ticks, const char *str);
|
2022-10-09 04:47:44 +00:00
|
|
|
|
2022-10-13 04:05:34 +00:00
|
|
|
/* set a delay before displaying the progress meter the first time */
|
|
|
|
extern void splash_progress_set_delay(long delay_ticks);
|
2022-10-09 04:47:44 +00:00
|
|
|
/*
|
|
|
|
* Puts a splash message centered on all the screens with a progressbar
|
|
|
|
* - current : current progress increment
|
|
|
|
* - total : total increments
|
|
|
|
* - fmt : what to say *printf style
|
|
|
|
* updates limited internally to 20 fps - call repeatedly to update progress
|
|
|
|
*/
|
|
|
|
extern void splash_progress(int current, int total, const char *fmt, ...) ATTRIBUTE_PRINTF(3, 4);
|
2005-11-06 17:30:53 +00:00
|
|
|
#endif /* _GUI_ICON_H_ */
|