875d858766
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12454 a95241bf-73f2-0310-859d-f6bbb57e9c96
126 lines
2.3 KiB
C
126 lines
2.3 KiB
C
//
|
|
// kb_mouse_driver.h
|
|
//
|
|
#ifndef _KB_MOUSE_DRIVER_H
|
|
#define _KB_MOUSE_DRIVER_H
|
|
|
|
#include <SupportDefs.h>
|
|
#include <Drivers.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define KEY_Scroll 0x0f
|
|
#define KEY_Pause 0x10
|
|
#define KEY_Num 0x22
|
|
#define KEY_CapsLock 0x3b
|
|
#define KEY_ShiftL 0x4b
|
|
#define KEY_ShiftR 0x56
|
|
#define KEY_ControlL 0x5c
|
|
#define KEY_CmdL 0x5d
|
|
#define KEY_AltL 0x5d
|
|
#define KEY_CmdR 0x5f
|
|
#define KEY_AltR 0x5f
|
|
#define KEY_ControlR 0x60
|
|
#define KEY_OptL 0x66
|
|
#define KEY_WinL 0x66
|
|
#define KEY_OptR 0x67
|
|
#define KEY_WinR 0x67
|
|
#define KEY_Menu 0x68
|
|
#define KEY_NumEqual 0x6a
|
|
#define KEY_Power 0x6b
|
|
#define KEY_SysRq 0x7e
|
|
#define KEY_Break 0x7f
|
|
#define KEY_Spacebar 0x5e
|
|
|
|
#define KB_DEFAULT_CONTROL_ALT_DEL_TIMEOUT 4000000
|
|
|
|
enum {
|
|
KB_READ = B_DEVICE_OP_CODES_END,
|
|
KB_GET_KEYBOARD_ID,
|
|
KB_SET_LEDS,
|
|
KB_SET_KEY_REPEATING,
|
|
KB_SET_KEY_NONREPEATING,
|
|
KB_SET_KEY_REPEAT_RATE,
|
|
KB_GET_KEY_REPEAT_RATE,
|
|
KB_SET_KEY_REPEAT_DELAY,
|
|
KB_GET_KEY_REPEAT_DELAY,
|
|
KB_SET_CONTROL_ALT_DEL_TIMEOUT,
|
|
KB_RESERVED_1,
|
|
KB_CANCEL_CONTROL_ALT_DEL,
|
|
KB_DELAY_CONTROL_ALT_DEL,
|
|
|
|
MS_READ = B_DEVICE_OP_CODES_END + 100,
|
|
MS_NUM_EVENTS,
|
|
MS_GET_ACCEL,
|
|
MS_SET_ACCEL,
|
|
MS_GET_TYPE,
|
|
MS_SET_TYPE,
|
|
MS_GET_MAP,
|
|
MS_SET_MAP,
|
|
MS_GET_CLICKSPEED,
|
|
MS_SET_CLICKSPEED,
|
|
MS_NUM_SERIAL_MICE,
|
|
|
|
IIC_WRITE = B_DEVICE_OP_CODES_END + 200,
|
|
RESTART_SYSTEM,
|
|
SHUTDOWN_SYSTEM
|
|
};
|
|
|
|
|
|
typedef struct {
|
|
bigtime_t timestamp;
|
|
uint32 be_keycode;
|
|
bool is_keydown;
|
|
} raw_key_info;
|
|
|
|
|
|
typedef struct {
|
|
bigtime_t timestamp;
|
|
uint8 scancode;
|
|
bool is_keydown;
|
|
} at_kbd_io;
|
|
|
|
|
|
typedef struct {
|
|
bool num_lock;
|
|
bool caps_lock;
|
|
bool scroll_lock;
|
|
} led_info;
|
|
|
|
|
|
typedef struct {
|
|
int32 cookie;
|
|
uint32 buttons;
|
|
int32 xdelta;
|
|
int32 ydelta;
|
|
int32 clicks;
|
|
int32 modifiers;
|
|
bigtime_t timestamp;
|
|
int32 wheel_ydelta;
|
|
int32 wheel_xdelta;
|
|
} mouse_movement;
|
|
|
|
typedef struct {
|
|
uint32 buttons;
|
|
float xpos;
|
|
float ypos;
|
|
bool has_contact;
|
|
float pressure;
|
|
int32 clicks;
|
|
bool eraser;
|
|
bigtime_t timestamp;
|
|
int32 wheel_ydelta;
|
|
int32 wheel_xdelta;
|
|
float tilt_x;
|
|
float tilt_y;
|
|
} tablet_movement;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|