mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Fixed: #920 NeL - X11 Modifier Keys (Patch provided by rti)
This commit is contained in:
parent
0a9673f1ae
commit
2dee6a2c37
3 changed files with 100 additions and 65 deletions
|
@ -80,42 +80,43 @@ const CClassId EventIME (0x261f1ede, 0x1b0a6c3a);
|
|||
|
||||
enum TKey
|
||||
{
|
||||
Key0 ='0',
|
||||
Key1 ='1',
|
||||
Key2 ='2',
|
||||
Key3 ='3',
|
||||
Key4 ='4',
|
||||
Key5 ='5',
|
||||
Key6 ='6',
|
||||
Key7 ='7',
|
||||
Key8 ='8',
|
||||
Key9 ='9',
|
||||
KeyA ='A',
|
||||
KeyB ='B',
|
||||
KeyC ='C',
|
||||
KeyD ='D',
|
||||
KeyE ='E',
|
||||
KeyF ='F',
|
||||
KeyG ='G',
|
||||
KeyH ='H',
|
||||
KeyI ='I',
|
||||
KeyJ ='J',
|
||||
KeyK ='K',
|
||||
KeyL ='L',
|
||||
KeyM ='M',
|
||||
KeyN ='N',
|
||||
KeyO ='O',
|
||||
KeyP ='P',
|
||||
KeyQ ='Q',
|
||||
KeyR ='R',
|
||||
KeyS ='S',
|
||||
KeyT ='T',
|
||||
KeyU ='U',
|
||||
KeyV ='V',
|
||||
KeyW ='W',
|
||||
KeyX ='X',
|
||||
KeyY ='Y',
|
||||
KeyZ ='Z',
|
||||
KeyNOKEY =0x00,
|
||||
Key0 ='0',
|
||||
Key1 ='1',
|
||||
Key2 ='2',
|
||||
Key3 ='3',
|
||||
Key4 ='4',
|
||||
Key5 ='5',
|
||||
Key6 ='6',
|
||||
Key7 ='7',
|
||||
Key8 ='8',
|
||||
Key9 ='9',
|
||||
KeyA ='A',
|
||||
KeyB ='B',
|
||||
KeyC ='C',
|
||||
KeyD ='D',
|
||||
KeyE ='E',
|
||||
KeyF ='F',
|
||||
KeyG ='G',
|
||||
KeyH ='H',
|
||||
KeyI ='I',
|
||||
KeyJ ='J',
|
||||
KeyK ='K',
|
||||
KeyL ='L',
|
||||
KeyM ='M',
|
||||
KeyN ='N',
|
||||
KeyO ='O',
|
||||
KeyP ='P',
|
||||
KeyQ ='Q',
|
||||
KeyR ='R',
|
||||
KeyS ='S',
|
||||
KeyT ='T',
|
||||
KeyU ='U',
|
||||
KeyV ='V',
|
||||
KeyW ='W',
|
||||
KeyX ='X',
|
||||
KeyY ='Y',
|
||||
KeyZ ='Z',
|
||||
KeyLBUTTON =0x01,
|
||||
KeyRBUTTON =0x02,
|
||||
KeyCANCEL =0x03,
|
||||
|
@ -209,18 +210,18 @@ enum TKey
|
|||
KeyLMENU =0xA4,
|
||||
KeyRMENU =0xA5,
|
||||
KeySEMICOLON =0xBA,
|
||||
KeyEQUALS =0xBB,
|
||||
KeyCOMMA =0xBC,
|
||||
KeyDASH =0xBD,
|
||||
KeyPERIOD =0xBE,
|
||||
KeySLASH =0xBF,
|
||||
KeyTILDE =0xC0,
|
||||
KeyLBRACKET =0xDB,
|
||||
KeyBACKSLASH =0xDC,
|
||||
KeyRBRACKET =0xDD,
|
||||
KeyEQUALS =0xBB,
|
||||
KeyCOMMA =0xBC,
|
||||
KeyDASH =0xBD,
|
||||
KeyPERIOD =0xBE,
|
||||
KeySLASH =0xBF,
|
||||
KeyTILDE =0xC0,
|
||||
KeyLBRACKET =0xDB,
|
||||
KeyBACKSLASH =0xDC,
|
||||
KeyRBRACKET =0xDD,
|
||||
KeyAPOSTROPHE =0xDE,
|
||||
KeyPARAGRAPH =0xDF,
|
||||
KeyOEM_102 =0xE2,
|
||||
KeyPARAGRAPH =0xDF,
|
||||
KeyOEM_102 =0xE2,
|
||||
KeyPROCESSKEY =0xE5,
|
||||
KeyATTN =0xF6,
|
||||
KeyCRSEL =0xF7,
|
||||
|
|
|
@ -503,6 +503,14 @@
|
|||
RelativePath="stdopengl.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\unix_event_emitter.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\unix_event_emitter.h"
|
||||
>
|
||||
</File>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
|
|
|
@ -52,20 +52,37 @@ void CUnixEventEmitter::submitEvents(CEventServer & server, bool allWindows)
|
|||
}
|
||||
}
|
||||
|
||||
#ifndef AltMask
|
||||
# ifdef NL_OS_MAC
|
||||
# define AltMask (8192)
|
||||
# else
|
||||
# define AltMask (Mod1Mask)
|
||||
# endif
|
||||
#endif
|
||||
|
||||
TMouseButton getMouseButton (uint32 state)
|
||||
{
|
||||
TMouseButton button=noButton;
|
||||
if (state&ControlMask) (int&)button|=ctrlButton;
|
||||
if (state&Button1Mask) (int&)button|=leftButton;
|
||||
if (state&Button3Mask) (int&)button|=rightButton;
|
||||
if (state&Button2Mask) (int&)button|=middleButton;
|
||||
if (state&ShiftMask) (int&)button|=shiftButton;
|
||||
// TODO manage ALT key
|
||||
// if (GetAsyncKeyState(VK_MENU)&(1<<15))
|
||||
// (int&)button|=altButton;
|
||||
return button;
|
||||
uint32 button=noButton;
|
||||
if (state&Button1Mask) button|=leftButton;
|
||||
if (state&Button2Mask) button|=middleButton;
|
||||
if (state&Button3Mask) button|=rightButton;
|
||||
if (state&ControlMask) button|=ctrlButton;
|
||||
if (state&ShiftMask) button|=shiftButton;
|
||||
if (state&AltMask) button|=altButton;
|
||||
|
||||
return (TMouseButton)button;
|
||||
}
|
||||
|
||||
TKeyButton getKeyButton (uint32 state)
|
||||
{
|
||||
uint32 button=noKeyButton;
|
||||
if (state&ControlMask) button|=ctrlKeyButton;
|
||||
if (state&ShiftMask) button|=shiftKeyButton;
|
||||
if (state&AltMask) button|=altKeyButton;
|
||||
|
||||
return (TKeyButton)button;
|
||||
}
|
||||
|
||||
TKey getKey (KeySym keysym)
|
||||
{
|
||||
switch (keysym)
|
||||
|
@ -122,11 +139,16 @@ TKey getKey (KeySym keysym)
|
|||
case XK_Shift_R: return KeySHIFT;
|
||||
case XK_Control_L: return KeyCONTROL;
|
||||
case XK_Control_R: return KeyCONTROL;
|
||||
case XK_Super_L: return KeyLWIN;
|
||||
case XK_Super_R: return KeyRWIN;
|
||||
/// case XK_Caps_Lock: return Key;
|
||||
/// case XK_Meta_L: return Key;
|
||||
/// case XK_Meta_R: return Key;
|
||||
/// case XK_Alt_L: return Key;
|
||||
/// case XK_Alt_R: return Key;
|
||||
case XK_Mode_switch: return KeyMENU;
|
||||
case XK_ISO_Level3_Shift: return KeyMENU;
|
||||
case XK_Menu: return KeyAPPS;
|
||||
case XK_Alt_L: return KeyMENU;
|
||||
case XK_Alt_R: return KeyMENU;
|
||||
case XK_space: return KeySPACE;
|
||||
// case XK_comma: return Key;
|
||||
// case XK_minus: return Key;
|
||||
|
@ -199,9 +221,9 @@ TKey getKey (KeySym keysym)
|
|||
case XK_y: return KeyY;
|
||||
case XK_Z:
|
||||
case XK_z: return KeyZ;
|
||||
default: nldebug ("0x%x %d '%c'", keysym, keysym, keysym);
|
||||
default: //nldebug ("0x%x %d '%c'", keysym, keysym, keysym);
|
||||
}
|
||||
return KeyNUMLOCK;
|
||||
return KeyNOKEY;
|
||||
}
|
||||
|
||||
|
||||
|
@ -282,9 +304,11 @@ void CUnixEventEmitter::processMessage (XEvent &event, CEventServer &server)
|
|||
int c;
|
||||
c = XLookupString(&event.xkey, Text, 1024-1, &k, NULL);
|
||||
|
||||
TKey key = getKey (k);
|
||||
TKey key = getKey(XKeycodeToKeysym(_dpy, ((XKeyEvent*)&event)->keycode, 0));
|
||||
if(key == KeyNOKEY)
|
||||
key = getKey(XKeycodeToKeysym(_dpy, ((XKeyEvent*)&event)->keycode, 1));
|
||||
// TODO manage the bool (first time pressed)
|
||||
server.postEvent (new CEventKeyDown (key, noKeyButton, true, this));
|
||||
server.postEvent (new CEventKeyDown (key, getKeyButton(event.xbutton.state), true, this));
|
||||
|
||||
Text[c] = '\0';
|
||||
if(c>0)
|
||||
|
@ -303,9 +327,11 @@ void CUnixEventEmitter::processMessage (XEvent &event, CEventServer &server)
|
|||
int c;
|
||||
c = XLookupString(&event.xkey, Text, 1024-1, &k, NULL);
|
||||
|
||||
TKey key = getKey (k);
|
||||
TKey key = getKey(XKeycodeToKeysym(_dpy, ((XKeyEvent*)&event)->keycode, 0));
|
||||
if(key == KeyNOKEY)
|
||||
key = getKey(XKeycodeToKeysym(_dpy, ((XKeyEvent*)&event)->keycode, 1));
|
||||
// TODO manage the bool (first time pressed)
|
||||
server.postEvent (new CEventKeyUp (key, noKeyButton, this));
|
||||
server.postEvent (new CEventKeyUp (key, getKeyButton(event.xbutton.state), this));
|
||||
break;
|
||||
}
|
||||
Case(FocusIn)
|
||||
|
|
Loading…
Reference in a new issue