2002-09-24 17:22:12 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2002 Bj<EFBFBD>rn Stenberg
|
|
|
|
|
*
|
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
|
*
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
|
* KIND, either express or implied.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
#ifndef _SCREENS_H_
|
|
|
|
|
#define _SCREENS_H_
|
|
|
|
|
|
2005-06-26 20:59:45 +00:00
|
|
|
|
#include "config.h"
|
2004-04-21 06:49:12 +00:00
|
|
|
|
#include "timefuncs.h"
|
|
|
|
|
|
2005-11-22 03:38:07 +00:00
|
|
|
|
struct screen;
|
|
|
|
|
|
|
|
|
|
void usb_display_info(struct screen * display);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
void usb_screen(void);
|
2003-07-17 20:29:51 +00:00
|
|
|
|
int charging_screen(void);
|
2003-12-04 00:08:25 +00:00
|
|
|
|
void charging_splash(void);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
2004-10-12 00:02:51 +00:00
|
|
|
|
#ifdef HAVE_MMC
|
|
|
|
|
int mmc_remove_request(void);
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-08-16 13:25:45 +00:00
|
|
|
|
#ifdef HAVE_PITCHSCREEN
|
2006-03-21 07:59:23 +00:00
|
|
|
|
bool pitch_screen(void);
|
2006-08-16 13:25:45 +00:00
|
|
|
|
#endif
|
2006-03-21 07:59:23 +00:00
|
|
|
|
|
2007-01-14 13:48:09 +00:00
|
|
|
|
#ifdef BUTTON_F3
|
2005-11-22 21:55:05 +00:00
|
|
|
|
extern bool quick_screen_f3(int button_enter);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#endif
|
2005-11-22 21:55:05 +00:00
|
|
|
|
extern bool quick_screen_quick(int button_enter);
|
2002-09-24 17:22:12 +00:00
|
|
|
|
|
2007-03-16 23:47:03 +00:00
|
|
|
|
#if CONFIG_RTC
|
2007-07-01 12:08:45 +00:00
|
|
|
|
bool set_time_screen(const char* title, struct tm *tm);
|
2004-04-21 06:49:12 +00:00
|
|
|
|
#endif
|
2004-07-24 21:26:41 +00:00
|
|
|
|
|
|
|
|
|
bool shutdown_screen(void);
|
2004-09-19 21:58:37 +00:00
|
|
|
|
bool browse_id3(void);
|
2006-12-19 12:26:03 +00:00
|
|
|
|
bool view_runtime(void);
|
2004-07-24 21:26:41 +00:00
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
|
#endif
|
2003-07-17 20:29:51 +00:00
|
|
|
|
|