Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dor Askayo
xserver
Commits
5ee5075a
Commit
5ee5075a
authored
Jan 21, 2002
by
Marc Aurele La France
Browse files
Resync with 4.2.0
parent
ea9ef90a
Changes
1
Hide whitespace changes
Inline
Side-by-side
hw/kdrive/src/kinput.c
View file @
5ee5075a
...
...
@@ -21,7 +21,7 @@
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $XFree86: xc/programs/Xserver/hw/kdrive/kinput.c,v 1.2
1
2001/
09/29 04:16:38
keithp Exp $ */
/* $XFree86: xc/programs/Xserver/hw/kdrive/kinput.c,v 1.2
2
2001/
10/12 06:33:07
keithp Exp $ */
#include
"kdrive.h"
#include
"inputstr.h"
...
...
@@ -1085,16 +1085,16 @@ KdCheckSpecialKeys(xEvent *xE)
/*
* Check for buttons 1, 2 and 3 on the iPAQ
*/
if
(
sym
==
XK_Pointer_Button1
)
{
KdEnqueueMouseEvent
(
KD_MOUSE_DELTA
|
KD_BUTTON_1
,
0
,
0
);
if
(
sym
==
XK_Pointer_Button1
&&
kdMouseInfo
)
{
KdEnqueueMouseEvent
(
kdMouseInfo
,
KD_MOUSE_DELTA
|
KD_BUTTON_1
,
0
,
0
);
return
;
}
if
(
sym
==
XK_Pointer_Button2
)
{
KdEnqueueMouseEvent
(
KD_MOUSE_DELTA
|
KD_BUTTON_2
,
0
,
0
);
if
(
sym
==
XK_Pointer_Button2
&&
kdMouseInfo
)
{
KdEnqueueMouseEvent
(
kdMouseInfo
,
KD_MOUSE_DELTA
|
KD_BUTTON_2
,
0
,
0
);
return
;
}
if
(
sym
==
XK_Pointer_Button3
)
{
KdEnqueueMouseEvent
(
KD_MOUSE_DELTA
|
KD_BUTTON_3
,
0
,
0
);
if
(
sym
==
XK_Pointer_Button3
&&
kdMouseInfo
)
{
KdEnqueueMouseEvent
(
kdMouseInfo
,
KD_MOUSE_DELTA
|
KD_BUTTON_3
,
0
,
0
);
return
;
}
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment