~ubuntu-branches/ubuntu/raring/wacom-tools/raring

« back to all changes in this revision

Viewing changes to linuxwacom/src/util/wcmAction.c

  • Committer: Bazaar Package Importer
  • Author(s): Timo Aaltonen
  • Date: 2009-03-24 10:06:54 UTC
  • mfrom: (1.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090324100654-u7x4rd2ked2gpksz
Tags: 1:0.8.2.2-0ubuntu1
* New upstream release. (LP: #355340)
* Patch 100_allow_eraser.patch dropped, included in this version.
* 100_fedora-fix-build.diff
  - Make the driver to build against xserver 1.6.
* 101_fedora-fix-mapping.diff
  - No button 0 in the server, all offsets have to begin at 1.
* 102_fedora-wcmmaxx.diff
  - Don't assign priv->wcmMaxX/Y back into common->wcmMaxX/Y.
* 103_fedora-hal-setup.diff
  - Add a hal callout program to set up the device.
  (LP: #215689, #356091)
* 104_revert-check.diff
  - Don't check the serial number, it breaks some devices.
* Modify 10-wacom.fdi to include changes from Fedora. Should allow
  hotplugging (built-in) serial tablets. (LP: #337112)
* rules:
  - Run autoreconf on build
  - xserver-xorg-input-wacom includes /usr/lib/hal/hal-setup-wacom
* control:
  - autoreconf: add automake, libtool to build-deps.
  - hal-setup-wacom: add libhal-dev to build-deps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
**   2007-02-06 0.0.1-pc - Support keystrokes
22
22
**   2008-01-17 0.0.2-pc - Add Display Toggle
23
23
**   2008-08-01 0.0.3-pc - Merge patch 1998051 (Yuri Shchedov)
 
24
**   2008-12-10 0.0.4-pc - Updated patch 1998051 for none KP buttons
24
25
*/
25
26
 
26
27
/* This pseudo-header file is included both from the X11 driver, and from
78
79
        { "Pause",          XK_Pause },
79
80
        { "ScrollLock",     XK_Scroll_Lock },
80
81
        { "SysReq",         XK_Sys_Req },
81
 
        { "Home",           XK_KP_Home },
82
 
        { "PgUp",           XK_KP_Page_Up },
83
 
        { "PageUp",         XK_KP_Page_Up },
84
 
        { "PgDn",           XK_KP_Page_Down },
85
 
        { "PageDown",       XK_KP_Page_Down },
86
 
        { "End",            XK_KP_End },
87
 
        { "Insert",         XK_KP_Insert },
88
 
        { "Ins",            XK_KP_Insert },
89
 
        { "Delete",         XK_KP_Delete },
90
 
        { "Del",            XK_KP_Delete },
91
 
        { "Left",           XK_KP_Left },
92
 
        { "Up",             XK_KP_Up },
93
 
        { "Down",           XK_KP_Down },
94
 
        { "Right",          XK_KP_Right },
 
82
        { "Home",           XK_Home },
 
83
        { "PageUp",         XK_Page_Up },
 
84
        { "PageDown",       XK_Page_Down },
 
85
        { "End",            XK_End },
 
86
        { "Insert",         XK_Insert },
 
87
        { "Delete",         XK_Delete },
 
88
        { "Left",           XK_Left },
 
89
        { "Up",             XK_Up },
 
90
        { "Down",           XK_Down },
 
91
        { "Right",          XK_Right },
95
92
        { "BackSpace",      XK_BackSpace },
96
93
        { "Enter",          XK_Return },
97
94
        { "NumLock",        XK_Num_Lock },
98
95
        { "space",          XK_space },
99
96
        { "quotedbl",       XK_quotedbl },
100
97
        { "backslash",      XK_backslash },
101
 
        { "NumpadPlus",     XK_KP_Add },
 
98
        { "KPHome",         XK_KP_Home },
 
99
        { "PgUp",           XK_KP_Page_Up },
 
100
        { "PgDn",           XK_KP_Page_Down },
 
101
        { "KPEnd",          XK_KP_End },
 
102
        { "Ins",            XK_KP_Insert },
 
103
        { "Del",            XK_KP_Delete },
 
104
        { "KPLeft",         XK_KP_Left },
 
105
        { "KPUp",           XK_KP_Up },
 
106
        { "KPDown",         XK_KP_Down },
 
107
        { "KPRight",        XK_KP_Right },
 
108
        { "KPEnter",        XK_KP_Enter },
 
109
        { "Plus",           XK_KP_Add },
 
110
        { "Minus",          XK_KP_Subtract},
 
111
        { "Divide",         XK_KP_Divide },
 
112
        { "Multiply",       XK_KP_Multiply },
 
113
        { "NumpadPlus",     XK_KP_Add },
102
114
        { "NumpadMinus",    XK_KP_Subtract},
103
115
        { "NumpadDivide",   XK_KP_Divide },
104
 
        { "NumpadMultiply", XK_KP_Multiply },
 
116
        { "NumpadMultiply", XK_KP_Multiply },
105
117
        { "break",          XK_Break },
106
118
        { "print",          XK_Print }
107
119
};