summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSascha Hlusiak <saschahlusiak@arcor.de>2009-04-14 23:25:44 +0200
committerSascha Hlusiak <saschahlusiak@arcor.de>2009-04-14 23:25:44 +0200
commitbf8626967263ee92d45759c58dc5bcc42a57176b (patch)
treef2d86222362412a5ccad8baf889c93d0380c684e /include
parent57bf11bc03a04fd68bb3ee2cd5375f04326e5c28 (diff)
Property support for scancodes
Allows setting scancodes for keys using input-properties
Diffstat (limited to 'include')
-rw-r--r--include/joystick-properties.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/joystick-properties.h b/include/joystick-properties.h
index 0f0d4ed..49ef800 100644
--- a/include/joystick-properties.h
+++ b/include/joystick-properties.h
@@ -93,12 +93,12 @@ typedef enum _JSTK_MAPPING {
/* FLOAT[MAXAXES], movement amplify per axis */
#define JSTK_PROP_AXIS_AMPLIFY "Axis Amplify"
-/** Set KeySyms for axis in low position */
-/* TODO 16 bit */
+/** Scancodes for axis in low position */
+/* 8 bit, 4 per axis */
#define JSTK_PROP_AXIS_KEYS_LOW "Axis Keys (low)"
-/** Set KeySyms for axis in high position */
-/* TODO 16 bit */
+/** Scancodes for axis in high position */
+/* 8 bit, 4 per axis */
#define JSTK_PROP_AXIS_KEYS_HIGH "Axis keys (high)"
/** Set the mapping of each button to
@@ -115,8 +115,8 @@ typedef enum _JSTK_MAPPING {
/* FLOAT[MAXBUTTONS], amplify value per button */
#define JSTK_PROP_BUTTON_AMPLIFY "Button Amplify"
-/** Set KeySyms for button */
-/* TODO 16 bit, set keysyms for button. Format: (button keysym1 keysym2 keysym3 keysym4) */
+/** Scancodes for button */
+/* 8 bit, 4 per button */
#define JSTK_PROP_BUTTON_KEYS "Button Keys"