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"
|
|
|
|
|
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);
|
2002-05-28 12:09:30 +00:00
|
|
|
int button_get (bool block);
|
2002-08-07 07:22:44 +00:00
|
|
|
int button_get_w_tmo(int ticks);
|
2002-07-24 15:21:08 +00:00
|
|
|
int button_set_repeat(int newmask);
|
2002-07-27 11:24:22 +00:00
|
|
|
int button_set_release(int newmask);
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2002-04-20 14:42:49 +00:00
|
|
|
/* Shared button codes */
|
2002-04-16 13:37:50 +00:00
|
|
|
#define BUTTON_NONE 0x0000
|
|
|
|
#define BUTTON_ON 0x0001
|
|
|
|
#define BUTTON_UP 0x0010
|
|
|
|
#define BUTTON_DOWN 0x0020
|
|
|
|
#define BUTTON_LEFT 0x0040
|
|
|
|
#define BUTTON_RIGHT 0x0080
|
|
|
|
|
2002-08-12 12:44:18 +00:00
|
|
|
/* remote control buttons */
|
|
|
|
#define BUTTON_VOL_UP 0x1000
|
|
|
|
#define BUTTON_VOL_DOWN 0x1001
|
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
/* Button modifiers */
|
2002-07-27 19:38:20 +00:00
|
|
|
#define BUTTON_REPEAT 0x4000
|
2002-04-16 13:37:50 +00:00
|
|
|
#define BUTTON_REL 0x8000
|
|
|
|
|
2002-07-27 11:24:22 +00:00
|
|
|
/* Special message */
|
|
|
|
#define BUTTON_LOCKED 0x2000
|
|
|
|
|
2002-04-20 14:42:49 +00:00
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
|
|
|
|
/* Recorder specific button codes */
|
|
|
|
#define BUTTON_OFF 0x0002
|
|
|
|
#define BUTTON_PLAY 0x0004
|
|
|
|
#define BUTTON_F1 0x0100
|
|
|
|
#define BUTTON_F2 0x0200
|
|
|
|
#define BUTTON_F3 0x0400
|
|
|
|
|
2002-07-24 15:21:08 +00:00
|
|
|
#define DEFAULT_REPEAT_MASK (BUTTON_LEFT | BUTTON_RIGHT | \
|
|
|
|
BUTTON_UP | BUTTON_DOWN)
|
2002-07-27 19:38:20 +00:00
|
|
|
|
|
|
|
#define ALL_BUTTONS (BUTTON_ON | BUTTON_UP | BUTTON_DOWN | BUTTON_LEFT | \
|
|
|
|
BUTTON_RIGHT | BUTTON_OFF | BUTTON_PLAY | BUTTON_F1 | \
|
|
|
|
BUTTON_F2 | BUTTON_F3)
|
|
|
|
|
2002-04-20 14:42:49 +00:00
|
|
|
#elif HAVE_PLAYER_KEYPAD
|
|
|
|
|
|
|
|
/* Jukebox 6000 and Studio specific button codes */
|
|
|
|
#define BUTTON_MENU 0x0002
|
|
|
|
#define BUTTON_PLAY BUTTON_UP
|
|
|
|
#define BUTTON_STOP BUTTON_DOWN
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2002-07-24 15:21:08 +00:00
|
|
|
#define DEFAULT_REPEAT_MASK (BUTTON_LEFT | BUTTON_RIGHT)
|
|
|
|
|
2002-07-27 19:38:20 +00:00
|
|
|
#define ALL_BUTTONS (BUTTON_ON | BUTTON_UP | BUTTON_DOWN | BUTTON_LEFT | \
|
|
|
|
BUTTON_RIGHT | BUTTON_OFF | BUTTON_MENU)
|
|
|
|
|
2002-07-27 11:24:22 +00:00
|
|
|
#endif /* HAVE_PLAYER_KEYPAD */
|
|
|
|
|
|
|
|
#define DEFAULT_RELEASE_MASK 0
|
2002-05-28 12:09:30 +00:00
|
|
|
|
|
|
|
#endif
|