2002-08-13 09:19:21 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Robert E. Hak <rhak@ramapo.edu>
|
|
|
|
*
|
|
|
|
* Windows Copyright (C) 2002 by Felix Arends
|
|
|
|
* X11 Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
|
|
|
|
*
|
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.
|
2002-08-13 09:19:21 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2009-10-20 21:54:59 +00:00
|
|
|
#include <stdbool.h>
|
2009-04-29 22:24:40 +00:00
|
|
|
#include "config.h"
|
2009-10-20 21:54:59 +00:00
|
|
|
#include "system.h"
|
2002-08-13 09:32:56 +00:00
|
|
|
#include "lcd.h"
|
2009-04-29 22:24:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_ENABLE
|
|
|
|
static bool lcd_enabled = false;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
static bool lcd_sleeping = true;
|
|
|
|
#endif
|
2003-12-15 10:25:51 +00:00
|
|
|
|
2003-12-20 10:00:37 +00:00
|
|
|
void lcd_set_flip(bool yesno)
|
|
|
|
{
|
|
|
|
(void)yesno;
|
2004-04-21 09:44:07 +00:00
|
|
|
}
|
|
|
|
|
2005-05-23 16:23:25 +00:00
|
|
|
void lcd_set_invert_display(bool invert)
|
|
|
|
{
|
|
|
|
(void)invert;
|
|
|
|
}
|
|
|
|
|
2006-07-25 11:15:50 +00:00
|
|
|
int lcd_default_contrast(void)
|
2005-05-23 16:23:25 +00:00
|
|
|
{
|
2006-07-25 11:15:50 +00:00
|
|
|
return 28;
|
2005-05-23 16:23:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
void lcd_remote_set_contrast(int val)
|
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
|
|
|
void lcd_remote_backlight_on(int val)
|
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
|
|
|
void lcd_remote_backlight_off(int val)
|
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
2005-06-17 22:03:56 +00:00
|
|
|
|
|
|
|
void lcd_remote_set_flip(bool yesno)
|
|
|
|
{
|
|
|
|
(void)yesno;
|
|
|
|
}
|
2006-07-25 11:15:50 +00:00
|
|
|
|
|
|
|
void lcd_remote_set_invert_display(bool invert)
|
|
|
|
{
|
|
|
|
(void)invert;
|
|
|
|
}
|
2005-05-23 16:23:25 +00:00
|
|
|
#endif
|
2009-04-29 22:24:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
void lcd_sleep(void)
|
|
|
|
{
|
|
|
|
lcd_sleeping = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_awake(void)
|
|
|
|
{
|
|
|
|
if (lcd_sleeping)
|
|
|
|
{
|
2009-10-20 21:54:59 +00:00
|
|
|
send_event(LCD_EVENT_ACTIVATION, NULL);
|
2009-04-29 22:24:40 +00:00
|
|
|
lcd_sleeping = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_ENABLE
|
|
|
|
void lcd_enable(bool on)
|
|
|
|
{
|
|
|
|
if (on && !lcd_enabled)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
/* lcd_awake will handle the activation call */
|
|
|
|
lcd_awake();
|
|
|
|
#else
|
2009-10-20 21:54:59 +00:00
|
|
|
send_event(LCD_EVENT_ACTIVATION, NULL);
|
2009-04-29 22:24:40 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
lcd_enabled = on;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
bool lcd_active(void)
|
|
|
|
{
|
|
|
|
bool retval = false;
|
|
|
|
#ifdef HAVE_LCD_ENABLE
|
|
|
|
retval = lcd_enabled;
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
if (!retval)
|
|
|
|
retval = !lcd_sleeping;
|
|
|
|
#endif
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
#endif
|