2002-04-16 13:37:50 +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.
|
2002-04-16 13:37:50 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2007-07-22 21:02:24 +00:00
|
|
|
#include <inttypes.h>
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "config.h"
|
2008-03-26 23:35:34 +00:00
|
|
|
#ifndef __PCTOOL__
|
2006-11-27 02:16:32 +00:00
|
|
|
#include "button-target.h"
|
2008-03-26 23:35:34 +00:00
|
|
|
#endif
|
2006-11-27 02:16:32 +00:00
|
|
|
|
2012-01-08 00:07:19 +00:00
|
|
|
#ifndef BUTTON_REMOTE
|
|
|
|
# define BUTTON_REMOTE 0
|
|
|
|
#endif
|
|
|
|
|
2002-06-30 13:12:14 +00:00
|
|
|
extern struct event_queue button_queue;
|
|
|
|
|
2012-01-08 00:07:19 +00:00
|
|
|
void button_init_device(void);
|
|
|
|
#ifdef HAVE_BUTTON_DATA
|
|
|
|
int button_read_device(int *);
|
|
|
|
#else
|
|
|
|
int button_read_device(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAS_BUTTON_HOLD
|
|
|
|
bool button_hold(void);
|
|
|
|
#endif
|
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
bool remote_button_hold(void);
|
|
|
|
#endif
|
|
|
|
|
2010-03-03 23:20:32 +00:00
|
|
|
void button_init (void) INIT_ATTR;
|
2008-05-10 18:00:11 +00:00
|
|
|
void button_close(void);
|
2007-10-09 21:28:51 +00:00
|
|
|
int button_queue_count(void);
|
2005-02-07 22:57:05 +00:00
|
|
|
long button_get (bool block);
|
|
|
|
long button_get_w_tmo(int ticks);
|
2007-07-22 21:02:24 +00:00
|
|
|
intptr_t button_get_data(void);
|
2004-07-21 08:02:23 +00:00
|
|
|
int button_status(void);
|
2009-10-05 02:09:00 +00:00
|
|
|
#ifdef HAVE_BUTTON_DATA
|
|
|
|
int button_status_wdata(int *pdata);
|
|
|
|
#endif
|
2004-07-21 08:02:23 +00:00
|
|
|
void button_clear_queue(void);
|
2005-01-23 00:27:21 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2009-10-05 17:53:45 +00:00
|
|
|
void button_set_flip(bool flip); /* turn 180 degrees */
|
2003-12-20 10:00:37 +00:00
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-24 13:47:24 +00:00
|
|
|
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
|
|
|
|
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
|
|
|
|
2009-03-02 19:25:50 +00:00
|
|
|
#ifdef HAVE_WHEEL_ACCELERATION
|
2007-11-19 11:05:54 +00:00
|
|
|
int button_apply_acceleration(const unsigned int data);
|
2007-07-22 21:02:24 +00:00
|
|
|
#endif
|
|
|
|
|
2012-04-05 11:00:05 +00:00
|
|
|
#define BUTTON_NONE 0x00000000
|
2002-04-20 14:42:49 +00:00
|
|
|
|
2006-11-27 02:16:32 +00:00
|
|
|
/* Button modifiers */
|
2012-04-05 11:00:05 +00:00
|
|
|
#define BUTTON_REL 0x02000000
|
|
|
|
#define BUTTON_REPEAT 0x04000000
|
|
|
|
/* Special buttons */
|
|
|
|
#define BUTTON_TOUCHSCREEN 0x08000000
|
|
|
|
#define BUTTON_MULTIMEDIA 0x10000000
|
|
|
|
#define BUTTON_REDRAW 0x20000000
|
2010-10-31 15:32:57 +00:00
|
|
|
|
|
|
|
#define BUTTON_MULTIMEDIA_PLAYPAUSE (BUTTON_MULTIMEDIA|0x01)
|
|
|
|
#define BUTTON_MULTIMEDIA_STOP (BUTTON_MULTIMEDIA|0x02)
|
|
|
|
#define BUTTON_MULTIMEDIA_PREV (BUTTON_MULTIMEDIA|0x04)
|
|
|
|
#define BUTTON_MULTIMEDIA_NEXT (BUTTON_MULTIMEDIA|0x08)
|
|
|
|
#define BUTTON_MULTIMEDIA_REW (BUTTON_MULTIMEDIA|0x10)
|
|
|
|
#define BUTTON_MULTIMEDIA_FFWD (BUTTON_MULTIMEDIA|0x20)
|
|
|
|
|
|
|
|
#define BUTTON_MULTIMEDIA_ALL (BUTTON_MULTIMEDIA_PLAYPAUSE| \
|
|
|
|
BUTTON_MULTIMEDIA_STOP| \
|
|
|
|
BUTTON_MULTIMEDIA_PREV| \
|
|
|
|
BUTTON_MULTIMEDIA_NEXT| \
|
|
|
|
BUTTON_MULTIMEDIA_REW | \
|
|
|
|
BUTTON_MULTIMEDIA_FFWD)
|
2006-07-27 13:27:31 +00:00
|
|
|
|
2008-08-23 09:46:38 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
2009-04-20 01:41:56 +00:00
|
|
|
int touchscreen_last_touch(void);
|
|
|
|
|
2009-01-29 20:49:43 +00:00
|
|
|
#if (!defined(BUTTON_TOPLEFT) || !defined(BUTTON_TOPMIDDLE) \
|
2008-04-15 10:35:11 +00:00
|
|
|
|| !defined(BUTTON_TOPRIGHT) || !defined(BUTTON_MIDLEFT) \
|
|
|
|
|| !defined(BUTTON_CENTER) || !defined(BUTTON_MIDRIGHT) \
|
|
|
|
|| !defined(BUTTON_BOTTOMLEFT) || !defined(BUTTON_BOTTOMMIDDLE) \
|
2009-01-29 20:49:43 +00:00
|
|
|
|| !defined(BUTTON_BOTTOMRIGHT)) && !defined(__PCTOOL__)
|
2008-08-23 09:46:38 +00:00
|
|
|
#error Touchscreen button mode BUTTON_* defines not set up correctly
|
2008-04-15 10:35:11 +00:00
|
|
|
#endif
|
2009-02-19 22:23:05 +00:00
|
|
|
|
|
|
|
#include "touchscreen.h"
|
2008-04-15 10:35:11 +00:00
|
|
|
#endif
|
|
|
|
|
2003-12-12 13:29:11 +00:00
|
|
|
#endif /* _BUTTON_H_ */
|