mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
Added Hungarian keyboard support.
This commit is contained in:
parent
22614a3390
commit
3d4cabf0e1
1 changed files with 11 additions and 0 deletions
|
@ -248,6 +248,16 @@ static const char main_key_BE[MAIN_LEN][4] =
|
||||||
"<>\\"
|
"<>\\"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*** Hungarian keyboard layout (contributed by Zoltán Kovács) */
|
||||||
|
static const char main_key_HU[MAIN_LEN][4] =
|
||||||
|
{
|
||||||
|
"0§","1'~","2\"·","3+^","4!¢","5%°","6/²","7=`","8(ÿ","9)´","öÖ½","üܨ","óÓ¸",
|
||||||
|
"qQ\\","wW|","eE","rR","tT","zZ","uU","iIÍ","oOø","pP","õÕ÷","úÚ×",
|
||||||
|
"aA","sSğ","dDĞ","fF[","gG]","hH","jJí","kK³","lL£","éÉ$","áÁß","ûÛ¤",
|
||||||
|
"yY>","xX#","cC&","vV@","bB{","nN}","mM",",?;",".:·","-_*",
|
||||||
|
"íÍ<"
|
||||||
|
};
|
||||||
|
|
||||||
/*** Layout table. Add your keyboard mappings to this list */
|
/*** Layout table. Add your keyboard mappings to this list */
|
||||||
static struct {
|
static struct {
|
||||||
WORD lang, ansi_codepage, oem_codepage;
|
WORD lang, ansi_codepage, oem_codepage;
|
||||||
|
@ -273,6 +283,7 @@ static struct {
|
||||||
{MAKELANGID(LANG_DUTCH,SUBLANG_DUTCH_BELGIAN), 1252, 850, &main_key_BE},
|
{MAKELANGID(LANG_DUTCH,SUBLANG_DUTCH_BELGIAN), 1252, 850, &main_key_BE},
|
||||||
{MAKELANGID(LANG_ITALIAN,SUBLANG_DEFAULT), 1252, 850, &main_key_IT},
|
{MAKELANGID(LANG_ITALIAN,SUBLANG_DEFAULT), 1252, 850, &main_key_IT},
|
||||||
{MAKELANGID(LANG_ICELANDIC,SUBLANG_DEFAULT), 1252, 850, &main_key_IS},
|
{MAKELANGID(LANG_ICELANDIC,SUBLANG_DEFAULT), 1252, 850, &main_key_IS},
|
||||||
|
{MAKELANGID(LANG_HUNGARIAN,SUBLANG_DEFAULT), 1252, 850, &main_key_HU},
|
||||||
|
|
||||||
{0} /* sentinel */
|
{0} /* sentinel */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue