~ubuntu-branches/ubuntu/raring/xserver-xorg-input-synaptics/raring-proposed

« back to all changes in this revision

Viewing changes to tools/synclient.c

  • Committer: Package Import Robot
  • Author(s): Chase Douglas
  • Date: 2012-03-15 17:58:09 UTC
  • mfrom: (0.4.5)
  • Revision ID: package-import@ubuntu.com-20120315175809-pj71lv79zn8nlp3k
Tags: 1.5.99.901-0ubuntu1
* New upstream release
  - Includes ClickPad support
  - Fixes ClickPad click action interference
  - Re-enables ClickPad support by default (LP: #955404)
  - Everything else is bug fixes
* Remove 129_clickpad.patch, it has been merged upstream
* Bump lintian standards to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include <string.h>
39
39
#include <stddef.h>
40
40
#include <math.h>
 
41
#include <limits.h>
41
42
 
42
43
#include <X11/Xdefs.h>
43
44
#include <X11/Xatom.h>
142
143
    {"AreaRightEdge",         PT_INT,    0, 10000, SYNAPTICS_PROP_AREA, 32,     1},
143
144
    {"AreaTopEdge",           PT_INT,    0, 10000, SYNAPTICS_PROP_AREA, 32,     2},
144
145
    {"AreaBottomEdge",        PT_INT,    0, 10000, SYNAPTICS_PROP_AREA, 32,     3},
 
146
    {"HorizHysteresis",       PT_INT,    0, 10000, SYNAPTICS_PROP_NOISE_CANCELLATION, 32,       0},
 
147
    {"VertHysteresis",        PT_INT,    0, 10000, SYNAPTICS_PROP_NOISE_CANCELLATION, 32,       1},
 
148
    {"ClickPad",              PT_BOOL,   0, 1,     SYNAPTICS_PROP_CLICKPAD,     8,      0},
 
149
    {"RightButtonAreaLeft",   PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     0},
 
150
    {"RightButtonAreaRight",  PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     1},
 
151
    {"RightButtonAreaTop",    PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     2},
 
152
    {"RightButtonAreaBottom", PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     3},
 
153
    {"MiddleButtonAreaLeft",  PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     4},
 
154
    {"MiddleButtonAreaRight", PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     5},
 
155
    {"MiddleButtonAreaTop",   PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,        32,     6},
 
156
    {"MiddleButtonAreaBottom", PT_INT, INT_MIN, INT_MAX, SYNAPTICS_PROP_SOFTBUTTON_AREAS,       32,     7},
145
157
    { NULL, 0, 0, 0, 0 }
146
158
};
147
159