Merge pull request #822 from M1cha/kbd-backlight
add support for keyboard backlight media keys
This commit is contained in:
commit
9a9d22105c
|
@ -284,6 +284,8 @@ static const KeyID kKeyAppUser1 = 0xE0B6;
|
||||||
static const KeyID kKeyAppUser2 = 0xE0B7;
|
static const KeyID kKeyAppUser2 = 0xE0B7;
|
||||||
static const KeyID kKeyBrightnessDown = 0xE0B8;
|
static const KeyID kKeyBrightnessDown = 0xE0B8;
|
||||||
static const KeyID kKeyBrightnessUp = 0xE0B9;
|
static const KeyID kKeyBrightnessUp = 0xE0B9;
|
||||||
|
static const KeyID kKeyKbdBrightnessDown = 0xE0BA;
|
||||||
|
static const KeyID kKeyKbdBrightnessUp = 0xE0BB;
|
||||||
static const KeyID kKeyMissionControl = 0xE0C0;
|
static const KeyID kKeyMissionControl = 0xE0C0;
|
||||||
static const KeyID kKeyLaunchpad = 0xE0C1;
|
static const KeyID kKeyLaunchpad = 0xE0C1;
|
||||||
|
|
||||||
|
|
|
@ -1250,7 +1250,7 @@ XK_uhorn
|
||||||
// map "Internet" keys to KeyIDs
|
// map "Internet" keys to KeyIDs
|
||||||
static const KeySym s_map1008FF[] =
|
static const KeySym s_map1008FF[] =
|
||||||
{
|
{
|
||||||
/* 0x00 */ 0, 0, kKeyBrightnessUp, kKeyBrightnessDown, 0, 0, 0, 0,
|
/* 0x00 */ 0, 0, kKeyBrightnessUp, kKeyBrightnessDown, 0, kKeyKbdBrightnessUp, kKeyKbdBrightnessDown, 0,
|
||||||
/* 0x08 */ 0, 0, 0, 0, 0, 0, 0, 0,
|
/* 0x08 */ 0, 0, 0, 0, 0, 0, 0, 0,
|
||||||
/* 0x10 */ 0, kKeyAudioDown, kKeyAudioMute, kKeyAudioUp,
|
/* 0x10 */ 0, kKeyAudioDown, kKeyAudioMute, kKeyAudioUp,
|
||||||
/* 0x14 */ kKeyAudioPlay, kKeyAudioStop, kKeyAudioPrev, kKeyAudioNext,
|
/* 0x14 */ kKeyAudioPlay, kKeyAudioStop, kKeyAudioPrev, kKeyAudioNext,
|
||||||
|
|
Loading…
Reference in New Issue