Commit e7fe5bc1 authored by Supphachoke Suntiwichaya's avatar Supphachoke Suntiwichaya Committed by Alexandre Julliard

Added Thai keyboard layout.

parent 9060d471
......@@ -646,6 +646,15 @@ static const char main_key_EL[MAIN_LEN][4] =
"<>"
};
/*** Thai (Kedmanee) keyboard layout by Supphachoke Suntiwichaya <mrchoke@opentle.org> */
static const char main_key_th[MAIN_LEN][4] =
{
"`~_%","1!+","2@/","3#-","4$","5%","6^","7&","8*","9(","0)","-_","=+",
"qQ","wW\"","eEӮ","rR","tTи","yY","uU","iIó","oO","pP­","[{","]},",
"aA","sS˦","dD","fF","gG","hH","jJ","kK","lL",";:ǫ","\'\".","\\|",
"zZ(","xX)","cC","vV","bB","nN","mM?",",<",".>","/?"
};
/*** VNC keyboard layout */
static const WORD main_key_scan_vnc[MAIN_LEN] =
{
......@@ -724,6 +733,7 @@ static const struct {
{"Israeli keyboard layout", &main_key_IL, &main_key_scan_qwerty, &main_key_vkey_qwerty},
{"VNC keyboard layout", &main_key_vnc, &main_key_scan_vnc, &main_key_vkey_vnc},
{"Greek keyboard layout", &main_key_EL, &main_key_scan_qwerty, &main_key_vkey_qwerty},
{"Thai (Kedmanee) keyboard layout", &main_key_th, &main_key_scan_qwerty, &main_key_vkey_qwerty},
{NULL, NULL, NULL, NULL} /* sentinel */
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment