mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-23 07:36:16 +00:00
Changed: Support for new key events
--HG-- branch : develop
This commit is contained in:
parent
76744b18c7
commit
6efce5ba59
2 changed files with 10 additions and 0 deletions
|
@ -212,6 +212,11 @@ enum TKey
|
||||||
KeyRCONTROL =0xA3,
|
KeyRCONTROL =0xA3,
|
||||||
KeyLMENU =0xA4,
|
KeyLMENU =0xA4,
|
||||||
KeyRMENU =0xA5,
|
KeyRMENU =0xA5,
|
||||||
|
KeyMUTE =0xAD,
|
||||||
|
KeyPLAYPAUSE =0xB3,
|
||||||
|
KeyVOLUMEDOWN =0xB4,
|
||||||
|
KeyVOLUMEUP =0xB5,
|
||||||
|
KeyCALC =0xB7,
|
||||||
KeySEMICOLON =0xBA,
|
KeySEMICOLON =0xBA,
|
||||||
KeyEQUALS =0xBB,
|
KeyEQUALS =0xBB,
|
||||||
KeyCOMMA =0xBC,
|
KeyCOMMA =0xBC,
|
||||||
|
|
|
@ -159,6 +159,11 @@ static const CStringConversion<TKey>::CPair stringTable [] =
|
||||||
{ "KeyRCONTROL", KeyRCONTROL },
|
{ "KeyRCONTROL", KeyRCONTROL },
|
||||||
{ "KeyLMENU", KeyLMENU },
|
{ "KeyLMENU", KeyLMENU },
|
||||||
{ "KeyRMENU", KeyRMENU },
|
{ "KeyRMENU", KeyRMENU },
|
||||||
|
{ "KeyMUTE", KeyMUTE },
|
||||||
|
{ "KeyPLAYPAUSE", KeyPLAYPAUSE },
|
||||||
|
{ "KeyVOLUMEDOWN", KeyVOLUMEDOWN },
|
||||||
|
{ "KeyVOLUMEUP", KeyVOLUMEUP },
|
||||||
|
{ "KeyCALC", KeyCALC },
|
||||||
{ "KeySEMICOLON", KeySEMICOLON },
|
{ "KeySEMICOLON", KeySEMICOLON },
|
||||||
{ "KeyEQUALS", KeyEQUALS },
|
{ "KeyEQUALS", KeyEQUALS },
|
||||||
{ "KeyCOMMA", KeyCOMMA },
|
{ "KeyCOMMA", KeyCOMMA },
|
||||||
|
|
Loading…
Reference in a new issue