29 lines
383 B
C++
29 lines
383 B
C++
|
#include "BaseConfig.h"
|
||
|
|
||
|
const char* BaseConfig::m_ModifierNames[] =
|
||
|
{
|
||
|
"shift",
|
||
|
"ctrl",
|
||
|
"alt",
|
||
|
"meta",
|
||
|
"super",
|
||
|
"none"
|
||
|
};
|
||
|
|
||
|
const char* BaseConfig::m_FixNames[] =
|
||
|
{
|
||
|
"halfDuplexCapsLock",
|
||
|
"halfDuplexNumLock",
|
||
|
"halfDuplexScrollLock",
|
||
|
"xtestIsXineramaUnaware"
|
||
|
};
|
||
|
|
||
|
const char* BaseConfig::m_SwitchCornerNames[] =
|
||
|
{
|
||
|
"top-left",
|
||
|
"top-right",
|
||
|
"bottom-left",
|
||
|
"bottom-right"
|
||
|
};
|
||
|
|