Resolve KASM-2346 "Feature/ extend mouse buttons"

This commit is contained in:
Matthew McClaskey
2022-10-14 17:28:02 +00:00
parent 0ef8a51945
commit 99c1e10789
4 changed files with 13 additions and 11 deletions

View File

@@ -225,7 +225,7 @@ void SMsgReader::readKeyEvent()
void SMsgReader::readPointerEvent() void SMsgReader::readPointerEvent()
{ {
int mask = is->readU8(); int mask = is->readU16();
int x = is->readU16(); int x = is->readU16();
int y = is->readU16(); int y = is->readU16();
int scrollX = is->readS16(); int scrollX = is->readS16();

View File

@@ -1634,13 +1634,15 @@ On a conventional mouse, buttons 1, 2 and 3 correspond to the left,
middle and right buttons on the mouse. On a wheel mouse, each step of middle and right buttons on the mouse. On a wheel mouse, each step of
the wheel is represented by a press and release of a certain button. the wheel is represented by a press and release of a certain button.
Button 4 means up, button 5 means down, button 6 means left and Button 4 means up, button 5 means down, button 6 means left and
button 7 means right. button 7 means right. Some pointer devices support additional buttons.
Button 8 is typically the back button and button 9 is typically the
forward button.
=============== ==================== ========== ======================= =============== ==================== ========== =======================
No. of bytes Type [Value] Description No. of bytes Type [Value] Description
=============== ==================== ========== ======================= =============== ==================== ========== =======================
1 ``U8`` 5 *message-type* 1 ``U8`` 5 *message-type*
1 ``U8`` *button-mask* 1 ``U16`` *button-mask*
2 ``U16`` *x-position* 2 ``U16`` *x-position*
2 ``U16`` *y-position* 2 ``U16`` *y-position*
=============== ==================== ========== ======================= =============== ==================== ========== =======================

Submodule kasmweb updated: cac1f25ce4...26c97c1dd3

View File

@@ -50,7 +50,7 @@ extern const unsigned int code_map_qnum_to_xorgevdev_len;
extern const unsigned short code_map_qnum_to_xorgkbd[]; extern const unsigned short code_map_qnum_to_xorgkbd[];
extern const unsigned int code_map_qnum_to_xorgkbd_len; extern const unsigned int code_map_qnum_to_xorgkbd_len;
#define BUTTONS 7 #define BUTTONS 10
/* Event queue is shared between all devices. */ /* Event queue is shared between all devices. */
#if XORG < 111 #if XORG < 111