2003-02-07 09:41:57 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg
|
|
|
|
*
|
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.
|
2003-02-07 09:41:57 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef BACKLIGHT_H
|
|
|
|
#define BACKLIGHT_H
|
|
|
|
|
2005-05-30 00:00:22 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-04-25 18:39:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
#if !defined(BOOTLOADER)
|
|
|
|
/* The whole driver should be built */
|
|
|
|
#define BACKLIGHT_FULL_INIT
|
|
|
|
#endif
|
|
|
|
|
2008-04-02 22:16:14 +00:00
|
|
|
bool is_backlight_on(bool ignore_always_off);
|
2003-02-07 09:41:57 +00:00
|
|
|
void backlight_on(void);
|
|
|
|
void backlight_off(void);
|
2007-11-25 17:36:21 +00:00
|
|
|
void backlight_set_timeout(int value);
|
2006-09-10 02:00:40 +00:00
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2005-11-21 23:55:39 +00:00
|
|
|
void backlight_init(void);
|
2008-05-10 18:00:11 +00:00
|
|
|
void backlight_close(void);
|
2006-09-10 02:00:40 +00:00
|
|
|
|
2005-11-23 20:12:33 +00:00
|
|
|
int backlight_get_current_timeout(void);
|
2006-09-10 02:00:40 +00:00
|
|
|
|
2009-01-26 23:21:49 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT_FADING_INT_SETTING)
|
2007-11-26 23:10:20 +00:00
|
|
|
void backlight_set_fade_in(int value);
|
|
|
|
void backlight_set_fade_out(int value);
|
2009-01-26 23:21:49 +00:00
|
|
|
#elif defined(HAVE_BACKLIGHT_FADING_BOOL_SETTING)
|
2008-11-26 08:26:13 +00:00
|
|
|
void backlight_set_fade_in(bool value);
|
|
|
|
void backlight_set_fade_out(bool value);
|
|
|
|
#endif
|
|
|
|
|
2007-11-25 17:36:21 +00:00
|
|
|
void backlight_set_timeout_plugged(int value);
|
2006-09-10 02:00:40 +00:00
|
|
|
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAS_BUTTON_HOLD
|
|
|
|
void backlight_hold_changed(bool hold_button);
|
2006-09-10 02:00:40 +00:00
|
|
|
void backlight_set_on_button_hold(int index);
|
2005-11-21 23:55:39 +00:00
|
|
|
#endif
|
2006-09-10 02:00:40 +00:00
|
|
|
|
2009-04-26 01:23:39 +00:00
|
|
|
#if defined(HAVE_LCD_SLEEP) && defined(HAVE_LCD_SLEEP_SETTING)
|
2006-08-08 22:03:56 +00:00
|
|
|
void lcd_set_sleep_after_backlight_off(int index);
|
2008-05-14 19:29:25 +00:00
|
|
|
#endif
|
2006-09-10 02:00:40 +00:00
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#else /* !HAVE_BACKLIGHT */
|
2006-08-08 22:03:56 +00:00
|
|
|
#define backlight_init()
|
2007-04-12 22:12:13 +00:00
|
|
|
#endif /* !HAVE_BACKLIGHT */
|
2003-02-07 09:41:57 +00:00
|
|
|
|
2005-05-30 00:00:22 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2005-11-21 23:55:39 +00:00
|
|
|
void remote_backlight_on(void);
|
|
|
|
void remote_backlight_off(void);
|
2007-11-25 17:36:21 +00:00
|
|
|
void remote_backlight_set_timeout(int value);
|
|
|
|
void remote_backlight_set_timeout_plugged(int value);
|
2008-04-02 22:16:14 +00:00
|
|
|
bool is_remote_backlight_on(bool ignore_always_off);
|
2009-04-25 21:11:16 +00:00
|
|
|
int remote_backlight_get_current_timeout(void);
|
2006-09-10 02:00:40 +00:00
|
|
|
|
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
void remote_backlight_hold_changed(bool rc_hold_button);
|
|
|
|
void remote_backlight_set_on_button_hold(int index);
|
2005-05-30 00:00:22 +00:00
|
|
|
#endif
|
2006-09-10 02:00:40 +00:00
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
2005-05-30 00:00:22 +00:00
|
|
|
|
2005-11-21 23:55:39 +00:00
|
|
|
#ifdef SIMULATOR
|
|
|
|
void sim_backlight(int value);
|
|
|
|
void sim_remote_backlight(int value);
|
|
|
|
#endif
|
2005-12-22 10:43:36 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
2009-04-25 18:39:05 +00:00
|
|
|
#ifdef BACKLIGHT_FULL_INIT
|
2008-11-26 10:21:03 +00:00
|
|
|
extern int backlight_brightness;
|
2009-04-25 18:39:05 +00:00
|
|
|
#else
|
|
|
|
#define backlight_brightness DEFAULT_BRIGHTNESS_SETTING
|
|
|
|
#endif
|
2005-12-22 10:43:36 +00:00
|
|
|
void backlight_set_brightness(int val);
|
2006-09-10 02:00:40 +00:00
|
|
|
#endif /* HAVE_BACKLIGHT_BRIGHTNESS */
|
|
|
|
|
2007-05-08 06:45:38 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
void buttonlight_set_brightness(int val);
|
|
|
|
#endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
|
|
|
|
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-10-07 15:02:02 +00:00
|
|
|
void buttonlight_on(void);
|
|
|
|
void buttonlight_off(void);
|
2007-11-25 17:36:21 +00:00
|
|
|
void buttonlight_set_timeout(int value);
|
2007-04-22 13:02:24 +00:00
|
|
|
#endif
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
/* Private API for use in target tree backlight code only */
|
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2009-04-25 18:15:50 +00:00
|
|
|
int buttonlight_get_current_timeout(void);
|
2007-11-12 18:49:53 +00:00
|
|
|
#endif
|
|
|
|
|
2006-09-10 02:00:40 +00:00
|
|
|
#endif /* BACKLIGHT_H */
|