From 875d8587664707bf966b8fd0d832e5fddc6d24af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 20 Apr 2005 21:53:21 +0000 Subject: [PATCH] added a tablet_movement struct git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12454 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/input/kb_mouse_driver.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/headers/private/input/kb_mouse_driver.h b/headers/private/input/kb_mouse_driver.h index 0f341d5b54..009a3514cd 100644 --- a/headers/private/input/kb_mouse_driver.h +++ b/headers/private/input/kb_mouse_driver.h @@ -102,6 +102,21 @@ typedef struct { 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