65fea56f17cd614bc8908264df980a62e1931468vboxsync/*
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Copyright 2008 Red Hat, Inc.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Permission is hereby granted, free of charge, to any person obtaining a
65fea56f17cd614bc8908264df980a62e1931468vboxsync * copy of this software and associated documentation files (the "Software")
65fea56f17cd614bc8908264df980a62e1931468vboxsync * to deal in the software without restriction, including without limitation
65fea56f17cd614bc8908264df980a62e1931468vboxsync * on the rights to use, copy, modify, merge, publish, distribute, sub
65fea56f17cd614bc8908264df980a62e1931468vboxsync * license, and/or sell copies of the Software, and to permit persons to whom
65fea56f17cd614bc8908264df980a62e1931468vboxsync * them Software is furnished to do so, subject to the following conditions:
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * The above copyright notice and this permission notice (including the next
65fea56f17cd614bc8908264df980a62e1931468vboxsync * paragraph) shall be included in all copies or substantial portions of the
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Software.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
65fea56f17cd614bc8908264df980a62e1931468vboxsync * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTIBILITY,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
65fea56f17cd614bc8908264df980a62e1931468vboxsync * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER
65fea56f17cd614bc8908264df980a62e1931468vboxsync * IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF OR IN
65fea56f17cd614bc8908264df980a62e1931468vboxsync * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
65fea56f17cd614bc8908264df980a62e1931468vboxsync */
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Properties managed by the server. */
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#ifndef _XSERVER_PROPERTIES_H_
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define _XSERVER_PROPERTIES_H_
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Type for a 4 byte float. Storage format IEEE 754 in client's default
65fea56f17cd614bc8908264df980a62e1931468vboxsync * byte-ordering. */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define XATOM_FLOAT "FLOAT"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* STRING. Seat name of this display */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define SEAT_ATOM_NAME "Xorg_Seat"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* BOOL. 0 - device disabled, 1 - device enabled */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define XI_PROP_ENABLED "Device Enabled"
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* BOOL. If present, device is a virtual XTEST device */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define XI_PROP_XTEST_DEVICE "XTEST Device"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* CARD32, 2 values, vendor, product.
65fea56f17cd614bc8908264df980a62e1931468vboxsync * This property is set by the driver and may not be available for some
65fea56f17cd614bc8908264df980a62e1931468vboxsync * drivers. Read-Only */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define XI_PROP_PRODUCT_ID "Device Product ID"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Coordinate transformation matrix for absolute input devices
65fea56f17cd614bc8908264df980a62e1931468vboxsync * FLOAT, 9 values in row-major order, coordinates in 0..1 range:
65fea56f17cd614bc8908264df980a62e1931468vboxsync * [c0 c1 c2] [x]
65fea56f17cd614bc8908264df980a62e1931468vboxsync * [c3 c4 c5] * [y]
65fea56f17cd614bc8908264df980a62e1931468vboxsync * [c6 c7 c8] [1] */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define XI_PROP_TRANSFORM "Coordinate Transformation Matrix"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* STRING. Device node path of device */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define XI_PROP_DEVICE_NODE "Device Node"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Pointer acceleration properties */
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* INTEGER of any format */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ACCEL_PROP_PROFILE_NUMBER "Device Accel Profile"
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* FLOAT, format 32 */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ACCEL_PROP_CONSTANT_DECELERATION "Device Accel Constant Deceleration"
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* FLOAT, format 32 */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ACCEL_PROP_ADAPTIVE_DECELERATION "Device Accel Adaptive Deceleration"
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* FLOAT, format 32 */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ACCEL_PROP_VELOCITY_SCALING "Device Accel Velocity Scaling"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Axis labels */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP "Axis Labels"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_X "Rel X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_Y "Rel Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_Z "Rel Z"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_RX "Rel Rotary X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_RY "Rel Rotary Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_RZ "Rel Rotary Z"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_HWHEEL "Rel Horiz Wheel"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_DIAL "Rel Dial"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_WHEEL "Rel Vert Wheel"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_MISC "Rel Misc"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_VSCROLL "Rel Vert Scroll"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_REL_HSCROLL "Rel Horiz Scroll"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/*
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Absolute axes
65fea56f17cd614bc8908264df980a62e1931468vboxsync */
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_X "Abs X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_Y "Abs Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_Z "Abs Z"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_RX "Abs Rotary X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_RY "Abs Rotary Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_RZ "Abs Rotary Z"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_THROTTLE "Abs Throttle"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_RUDDER "Abs Rudder"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_WHEEL "Abs Wheel"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_GAS "Abs Gas"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_BRAKE "Abs Brake"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT0X "Abs Hat 0 X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT0Y "Abs Hat 0 Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT1X "Abs Hat 1 X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT1Y "Abs Hat 1 Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT2X "Abs Hat 2 X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT2Y "Abs Hat 2 Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT3X "Abs Hat 3 X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_HAT3Y "Abs Hat 3 Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_PRESSURE "Abs Pressure"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_DISTANCE "Abs Distance"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_TILT_X "Abs Tilt X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_TILT_Y "Abs Tilt Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_TOOL_WIDTH "Abs Tool Width"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_VOLUME "Abs Volume"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_TOUCH_MAJOR "Abs MT Touch Major"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_TOUCH_MINOR "Abs MT Touch Minor"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_WIDTH_MAJOR "Abs MT Width Major"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_WIDTH_MINOR "Abs MT Width Minor"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_ORIENTATION "Abs MT Orientation"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_POSITION_X "Abs MT Position X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_POSITION_Y "Abs MT Position Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_TOOL_TYPE "Abs MT Tool Type"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_BLOB_ID "Abs MT Blob ID"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_TRACKING_ID "Abs MT Tracking ID"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_PRESSURE "Abs MT Pressure"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_DISTANCE "Abs MT Distance"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_TOOL_X "Abs MT Tool X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MT_TOOL_Y "Abs MT Tool Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define AXIS_LABEL_PROP_ABS_MISC "Abs Misc"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Button names */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP "Button Labels"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Default label */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_UNKNOWN "Button Unknown"
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* Wheel buttons */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_WHEEL_UP "Button Wheel Up"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_WHEEL_DOWN "Button Wheel Down"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_HWHEEL_LEFT "Button Horiz Wheel Left"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_HWHEEL_RIGHT "Button Horiz Wheel Right"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* The following are from linux/input.h */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_0 "Button 0"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_1 "Button 1"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_2 "Button 2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_3 "Button 3"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_4 "Button 4"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_5 "Button 5"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_6 "Button 6"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_7 "Button 7"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_8 "Button 8"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_9 "Button 9"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_LEFT "Button Left"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_RIGHT "Button Right"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_MIDDLE "Button Middle"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_SIDE "Button Side"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_EXTRA "Button Extra"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_FORWARD "Button Forward"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BACK "Button Back"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TASK "Button Task"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TRIGGER "Button Trigger"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_THUMB "Button Thumb"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_THUMB2 "Button Thumb2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOP "Button Top"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOP2 "Button Top2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_PINKIE "Button Pinkie"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BASE "Button Base"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BASE2 "Button Base2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BASE3 "Button Base3"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BASE4 "Button Base4"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BASE5 "Button Base5"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_BASE6 "Button Base6"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_DEAD "Button Dead"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_A "Button A"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_B "Button B"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_C "Button C"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_X "Button X"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_Y "Button Y"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_Z "Button Z"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TL "Button T Left"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TR "Button T Right"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TL2 "Button T Left2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TR2 "Button T Right2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_SELECT "Button Select"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_START "Button Start"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_MODE "Button Mode"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_THUMBL "Button Thumb Left"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_THUMBR "Button Thumb Right"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_PEN "Button Tool Pen"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_RUBBER "Button Tool Rubber"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_BRUSH "Button Tool Brush"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_PENCIL "Button Tool Pencil"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_AIRBRUSH "Button Tool Airbrush"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_FINGER "Button Tool Finger"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_MOUSE "Button Tool Mouse"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_LENS "Button Tool Lens"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOUCH "Button Touch"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_STYLUS "Button Stylus"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_STYLUS2 "Button Stylus2"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_DOUBLETAP "Button Tool Doubletap"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_TOOL_TRIPLETAP "Button Tool Tripletap"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_GEAR_DOWN "Button Gear down"
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define BTN_LABEL_PROP_BTN_GEAR_UP "Button Gear up"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#endif