From 6bac4ef0722dee2e4fa61359a90946b90fcb9b9f Mon Sep 17 00:00:00 2001 From: Felipe Date: Thu, 30 Jan 2014 13:41:04 -0300 Subject: [PATCH] Put SynapticsSHM back into the driver to be able to use synclient -m once again --- include/synaptics.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 include/synaptics.h diff --git a/include/synaptics.h b/include/synaptics.h new file mode 100644 index 0000000..a0020bb --- /dev/null +++ b/include/synaptics.h @@ -0,0 +1,52 @@ +/* + * Permission to use, copy, modify, distribute, and sell this software + * and its documentation for any purpose is hereby granted without + * fee, provided that the above copyright notice appear in all copies + * and that both that copyright notice and this permission notice + * appear in supporting documentation, and that the name of Red Hat + * not be used in advertising or publicity pertaining to distribution + * of the software without specific, written prior permission. Red + * Hat makes no representations about the suitability of this software + * for any purpose. It is provided "as is" without express or implied + * warranty. + * + * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN + * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR + * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN + * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef _SYNAPTICS_H_ +#define _SYNAPTICS_H_ + +#include + +/****************************************************************************** + * Public definitions. + * Used by driver and the shared memory configurator + *****************************************************************************/ + +#define SHM_SYNAPTICS 23947 +typedef struct _SynapticsSHM { + int version; /* Driver version */ + + /* Current device state */ + int x, y; /* actual x, y coordinates */ + int z; /* pressure value */ + int numFingers; /* number of fingers */ + int fingerWidth; /* finger width value */ + int left, right, up, down; /* left/right/up/down buttons */ + Bool multi[8]; + Bool middle; +} SynapticsSHM; + +/* + * Minimum and maximum values for scroll_button_repeat + */ +#define SBR_MIN 10 +#define SBR_MAX 1000 + +#endif /* _SYNAPTICS_H_ */