2003-04-23 09:21:37 +00:00
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2002-05-28 12:09:30 +00:00
|
|
|
#ifndef _BUTTON_H_
|
|
|
|
#define _BUTTON_H_
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2002-05-28 12:09:30 +00:00
|
|
|
#include <stdbool.h>
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "config.h"
|
2005-11-22 21:55:05 +00:00
|
|
|
#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
|
2006-07-27 13:27:31 +00:00
|
|
|
(CONFIG_KEYPAD == IRIVER_H300_PAD)
|
2005-11-22 21:55:05 +00:00
|
|
|
#define HAS_BUTTON_HOLD
|
|
|
|
#define HAS_REMOTE_BUTTON_HOLD
|
|
|
|
#endif
|
2002-06-30 13:12:14 +00:00
|
|
|
extern struct event_queue button_queue;
|
|
|
|
|
2002-04-20 14:42:49 +00:00
|
|
|
void button_init (void);
|
2005-02-07 22:57:05 +00:00
|
|
|
long button_get (bool block);
|
|
|
|
long button_get_w_tmo(int ticks);
|
2004-07-21 08:02:23 +00:00
|
|
|
int button_status(void);
|
|
|
|
void button_clear_queue(void);
|
2005-01-23 00:27:21 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2003-12-20 10:00:37 +00:00
|
|
|
void button_set_flip(bool flip); /* turn 180 degrees */
|
|
|
|
#endif
|
2006-03-24 13:47:24 +00:00
|
|
|
#ifdef CONFIG_BACKLIGHT
|
|
|
|
void set_backlight_filter_keypress(bool value);
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
void set_remote_backlight_filter_keypress(bool value);
|
|
|
|
#endif
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2005-11-22 21:55:05 +00:00
|
|
|
#ifdef HAS_BUTTON_HOLD
|
2004-11-18 23:21:04 +00:00
|
|
|
bool button_hold(void);
|
2005-11-22 21:55:05 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
2005-04-19 11:34:22 +00:00
|
|
|
bool remote_button_hold(void);
|
2004-11-18 23:21:04 +00:00
|
|
|
#endif
|
2006-09-26 10:03:56 +00:00
|
|
|
#ifdef HAVE_HEADPHONE_DETECTION
|
|
|
|
bool headphones_inserted(void);
|
|
|
|
#endif
|
2006-09-26 19:25:52 +00:00
|
|
|
#ifdef HAVE_WHEEL_POSITION
|
|
|
|
int wheel_status(void);
|
|
|
|
void wheel_send_events(bool send);
|
|
|
|
#endif
|
2006-01-12 00:35:50 +00:00
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
#define BUTTON_NONE 0x00000000
|
|
|
|
|
|
|
|
/* Button modifiers */
|
|
|
|
#define BUTTON_REL 0x02000000
|
|
|
|
#define BUTTON_REPEAT 0x04000000
|
|
|
|
|
|
|
|
|
2006-07-27 13:27:31 +00:00
|
|
|
#ifdef TARGET_TREE
|
|
|
|
#include "button-target.h"
|
|
|
|
#else
|
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
/* Target specific button codes */
|
2006-10-30 09:29:01 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
2002-04-20 14:42:49 +00:00
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
/* Recorder specific button codes */
|
|
|
|
|
|
|
|
/* Main unit's buttons */
|
|
|
|
#define BUTTON_ON 0x00000001
|
|
|
|
#define BUTTON_OFF 0x00000002
|
|
|
|
|
|
|
|
#define BUTTON_LEFT 0x00000004
|
|
|
|
#define BUTTON_RIGHT 0x00000008
|
|
|
|
#define BUTTON_UP 0x00000010
|
|
|
|
#define BUTTON_DOWN 0x00000020
|
|
|
|
|
|
|
|
#define BUTTON_PLAY 0x00000040
|
|
|
|
|
|
|
|
#define BUTTON_F1 0x00000080
|
|
|
|
#define BUTTON_F2 0x00000100
|
|
|
|
#define BUTTON_F3 0x00000200
|
2005-01-23 00:27:21 +00:00
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
#define BUTTON_MAIN (BUTTON_ON|BUTTON_OFF|BUTTON_LEFT|BUTTON_RIGHT\
|
|
|
|
|BUTTON_UP|BUTTON_DOWN|BUTTON_PLAY\
|
|
|
|
|BUTTON_F1|BUTTON_F2|BUTTON_F3)
|
|
|
|
|
|
|
|
/* Remote control's buttons */
|
|
|
|
#define BUTTON_RC_PLAY 0x00100000
|
|
|
|
#define BUTTON_RC_STOP 0x00080000
|
|
|
|
|
|
|
|
#define BUTTON_RC_LEFT 0x00040000
|
|
|
|
#define BUTTON_RC_RIGHT 0x00020000
|
|
|
|
#define BUTTON_RC_VOL_UP 0x00010000
|
|
|
|
#define BUTTON_RC_VOL_DOWN 0x00008000
|
|
|
|
|
|
|
|
#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_STOP\
|
|
|
|
|BUTTON_RC_LEFT|BUTTON_RC_RIGHT\
|
|
|
|
|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN)
|
2004-09-19 21:58:37 +00:00
|
|
|
|
2004-09-28 22:13:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == PLAYER_PAD
|
2002-04-20 14:42:49 +00:00
|
|
|
|
2006-10-30 09:30:21 +00:00
|
|
|
/* Main unit's buttons */
|
|
|
|
#define BUTTON_ON 0x00000001
|
|
|
|
#define BUTTON_STOP 0x00000002
|
|
|
|
|
|
|
|
#define BUTTON_LEFT 0x00000004
|
|
|
|
#define BUTTON_RIGHT 0x00000008
|
|
|
|
#define BUTTON_PLAY 0x00000010
|
|
|
|
#define BUTTON_MENU 0x00000020
|
|
|
|
|
|
|
|
#define BUTTON_MAIN (BUTTON_ON|BUTTON_STOP|BUTTON_LEFT|BUTTON_RIGHT\
|
|
|
|
|BUTTON_PLAY|BUTTON_MENU)
|
|
|
|
|
|
|
|
/* Remote control's buttons */
|
|
|
|
#define BUTTON_RC_PLAY 0x00100000
|
|
|
|
#define BUTTON_RC_STOP 0x00080000
|
|
|
|
|
|
|
|
#define BUTTON_RC_LEFT 0x00040000
|
|
|
|
#define BUTTON_RC_RIGHT 0x00020000
|
|
|
|
#define BUTTON_RC_VOL_UP 0x00010000
|
|
|
|
#define BUTTON_RC_VOL_DOWN 0x00008000
|
|
|
|
|
|
|
|
#define BUTTON_REMOTE (BUTTON_RC_PLAY|BUTTON_RC_STOP\
|
|
|
|
|BUTTON_RC_LEFT|BUTTON_RC_RIGHT\
|
|
|
|
|BUTTON_RC_VOL_UP|BUTTON_RC_VOL_DOWN)
|
2006-03-21 09:36:13 +00:00
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2004-09-28 22:13:26 +00:00
|
|
|
#elif CONFIG_KEYPAD == ONDIO_PAD
|
2004-09-10 10:51:54 +00:00
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
/* Ondio specific button codes */
|
|
|
|
|
|
|
|
#define BUTTON_OFF 0x00000001
|
|
|
|
#define BUTTON_MENU 0x00000002
|
|
|
|
|
|
|
|
#define BUTTON_LEFT 0x00000004
|
|
|
|
#define BUTTON_RIGHT 0x00000008
|
|
|
|
#define BUTTON_UP 0x00000010
|
|
|
|
#define BUTTON_DOWN 0x00000020
|
|
|
|
|
|
|
|
#define BUTTON_MAIN (BUTTON_OFF|BUTTON_MENU|BUTTON_LEFT|BUTTON_RIGHT\
|
|
|
|
|BUTTON_UP|BUTTON_DOWN)
|
|
|
|
|
|
|
|
#define BUTTON_REMOTE 0
|
2004-09-10 10:51:54 +00:00
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
#elif 0
|
2006-02-24 15:42:52 +00:00
|
|
|
|
2006-03-21 09:36:13 +00:00
|
|
|
/*
|
|
|
|
* Please, add the next Rockbox target's button defines here,
|
|
|
|
* using:
|
|
|
|
* - bits 0 and up: for main unit's buttons
|
|
|
|
* - bits 20 (0x00100000) and downwards for the remote buttons (if applicable)
|
|
|
|
* Don't forget to add BUTTON_MAIN and BUTTON_REMOTE masks
|
|
|
|
* Currently, main buttons on all targets are up to bit 9 (0x00000200),
|
|
|
|
* and remote buttons are down to bit 10 (0x00000400)
|
|
|
|
*/
|
2006-02-24 15:42:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-11-10 20:26:01 +00:00
|
|
|
#endif /* RECORDER/PLAYER/ONDIO KEYPAD */
|
2002-07-27 11:24:22 +00:00
|
|
|
|
2006-07-27 13:27:31 +00:00
|
|
|
#endif /* TARGET_TREE */
|
|
|
|
|
2003-12-12 13:29:11 +00:00
|
|
|
#endif /* _BUTTON_H_ */
|
|
|
|
|