Subversion Repositories wimsdev

Rev

Rev 1220 | Rev 3262 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1013 bpr 1
/* ********************************************************************
2
 **********************************************************************
3131 bpr 3
 * HTML Virtual Keyboard Interface Script - v1.32
1013 bpr 4
 *   Copyright (c) 2009 - GreyWyvern
5
 *
6
 *  - Licenced for free distribution under the BSDL
7
 *          http://www.opensource.org/licenses/bsd-license.php
8
 *
9
 * Add a script-driven keyboard interface to text fields, password
10
 * fields and textareas.
11
 *
12
 * See http://www.greywyvern.com/code/javascript/keyboard for examples
13
 * and usage instructions.
14
 *
3131 bpr 15
 * Version 1.32 - December 31, 2009
16
 *   - Added keyboard position switch function
17
 *   - Added some CSS3 styles
18
 *   - Added Pashto keyboard layout
19
 *   - Added Macedonian keyboard layout
20
 *   - Added Ukrainian keyboard layout
1013 bpr 21
 *
22
 *   See full changelog at:
23
 *     http://www.greywyvern.com/code/javascript/keyboard.changelog.txt
24
 *
25
 * Keyboard Credits
3131 bpr 26
 *   - Ukrainian keyboard layout by Dmitry Nikitin
27
 *   - Macedonian keyboard layout by Damjan Dimitrioski
28
 *   - Pashto keyboard layout by Ahmad Wali Achakzai (qamosona.com)
29
 *   - Armenian Eastern and Western keyboard layouts by Hayastan Project (www.hayastan.co.uk)
30
 *   - Pinyin keyboard layout from a collaboration with Lou Winklemann
31
 *   - Kazakh keyboard layout by Alex Madyankin
32
 *   - Danish keyboard layout by Verner Kjærsgaard
1220 bpr 33
 *   - Slovak keyboard layout by Daniel Lara (www.learningslovak.com)
34
 *   - Belarusian, Serbian Cyrillic and Serbian Latin keyboard layouts by Evgeniy Titov
35
 *   - Bulgarian Phonetic keyboard layout by Samuil Gospodinov
1013 bpr 36
 *   - Swedish keyboard layout by Håkan Sandberg
37
 *   - Romanian keyboard layout by Aurel
38
 *   - Farsi (Persian) keyboard layout by Kaveh Bakhtiyari (www.bakhtiyari.com)
39
 *   - Burmese keyboard layout by Cetanapa
40
 *   - Slovenian keyboard layout by Miran Zeljko
41
 *   - Hungarian keyboard layout by Antal Sall 'Hiromacu'
42
 *   - Arabic keyboard layout by Srinivas Reddy
43
 *   - Italian and Spanish (Spain) keyboard layouts by dictionarist.com
44
 *   - Lithuanian and Russian keyboard layouts by Ramunas
45
 *   - German keyboard layout by QuHno
46
 *   - French keyboard layout by Hidden Evil
47
 *   - Polish Programmers layout by moose
48
 *   - Turkish keyboard layouts by offcu
49
 *   - Dutch and US Int'l keyboard layouts by jerone
50
 *
51
 */
52
var VKI_attach, VKI_close;
53
  function VKI_buildKeyboardInputs() {
54
    var self = this;
55
 
3131 bpr 56
    this.VKI_version = "1.32";
57
    this.VKI_showVersion = true;
1013 bpr 58
    this.VKI_target = this.VKI_visible = false;
3131 bpr 59
    this.VKI_shift = this.VKI_shiftlock = false;
60
    this.VKI_altgr = this.VKI_altgrlock = false;
61
    this.VKI_switcher = true; // show the position switcher
62
    this.VKI_above = 0; // 0 = below the input, 1 = above
63
    this.VKI_dead = false;
1013 bpr 64
    this.VKI_deadkeysOn = false;
65
    this.VKI_kt = "French";  // Default keyboard layout
66
    this.VKI_clearPasswords = false;  // Clear password fields on focus
1220 bpr 67
    this.VKI_imageURI = "keyboard.png";
3131 bpr 68
    this.VKI_clickless = 0;  // 0 = disabled, > 0 = delay in ms
1013 bpr 69
    this.VKI_keyCenter = 3;
70
 
71
    this.VKI_isIE = /*@cc_on!@*/false;
72
    this.VKI_isIE6 = /*@if(@_jscript_version == 5.6)!@end@*/false;
73
    this.VKI_isIElt8 = /*@if(@_jscript_version < 5.8)!@end@*/false;
74
    this.VKI_isMoz = (navigator.product == "Gecko");
75
    this.VKI_isWebKit = RegExp("KHTML").test(navigator.userAgent);
76
 
77
 
78
    /* ***** Create keyboards ************************************** */
79
    this.VKI_layout = {};
80
 
81
    // - Lay out each keyboard in rows of sub-arrays.  Each sub-array
82
    //   represents one key.
1220 bpr 83
    //
1013 bpr 84
    // - Each sub-array consists of four slots described as follows:
85
    //     example: ["a", "A", "\u00e1", "\u00c1"]
86
    //
87
    //          a) Normal character
3131 bpr 88
    //          A) Character + Shift/Caps
89
    //     \u00e1) Character + Alt/AltGr/AltLk
90
    //     \u00c1) Character + Shift/Caps + Alt/AltGr/AltLk
1013 bpr 91
    //
92
    //   You may include sub-arrays which are fewer than four slots.
93
    //   In these cases, the missing slots will be blanked when the
94
    //   corresponding modifier key (Shift or AltGr) is pressed.
95
    //
96
    // - If the second slot of a sub-array matches one of the following
97
    //   strings:
3131 bpr 98
    //     "Tab", "Caps", "Shift", "Enter", "Bksp",
99
    //     "Alt" OR "AltGr", "AltLk"
1013 bpr 100
    //   then the function of the key will be the following,
101
    //   respectively:
102
    //     - Insert a tab
103
    //     - Toggle Caps Lock (technically a Shift Lock)
104
    //     - Next entered character will be the shifted character
105
    //     - Insert a newline (textarea), or close the keyboard
106
    //     - Delete the previous character
107
    //     - Next entered character will be the alternate character
3131 bpr 108
    //     - Toggle Alt/AltGr Lock
1013 bpr 109
    //
110
    //   The first slot of this sub-array will be the text to display
111
    //   on the corresponding key.  This allows for easy localisation
112
    //   of key names.
113
    //
114
    // - Layout dead keys (diacritic + letter) should be added as
115
    //   arrays of two item arrays with hash keys equal to the
116
    //   diacritic.  See the "this.VKI_deadkey" object below the layout
117
    //   definitions.  In  each two item child array, the second item
118
    //   is what the diacritic would change the first item to.
119
    //
120
    // - To disable dead keys for a layout, simply assign true to the
3131 bpr 121
    //   DDK property of the layout (DDK = disable dead keys).  See the
122
    //   Numpad layout below for an example.
1013 bpr 123
    //
124
    // - Note that any characters beyond the normal ASCII set should be
125
    //   entered in escaped Unicode format.  (eg \u00a3 = Pound symbol)
126
    //   You can find Unicode values for characters here:
127
    //     http://unicode.org/charts/
128
    //
129
    // - To remove a keyboard, just delete it, or comment it out of the
130
    //   source code
131
 
132
    this.VKI_layout.Arabic = [ // Arabic Keyboard
133
      [["\u0630", "\u0651 "], ["1", "!", "\u00a1", "\u00b9"], ["2", "@", "\u00b2"], ["3", "#", "\u00b3"], ["4", "$", "\u00a4", "\u00a3"], ["5", "%", "\u20ac"], ["6", "^", "\u00bc"], ["7", "&", "\u00bd"], ["8", "*", "\u00be"], ["9", "(", "\u2018"], ["0", ")", "\u2019"], ["-", "_", "\u00a5"], ["=", "+", "\u00d7", "\u00f7"], ["Bksp", "Bksp"]],
134
      [["Tab", "Tab"], ["\u0636", "\u064e"], ["\u0635", "\u064b"], ["\u062b", "\u064f"], ["\u0642", "\u064c"], ["\u0641", "\u0644"], ["\u063a", "\u0625"], ["\u0639", "\u2018"], ["\u0647", "\u00f7"], ["\u062e", "\u00d7"], ["\u062d", "\u061b"], ["\u062c", "\u003c"], ["\u062f", "\u003e"], ["\u005c", "\u007c"]],
135
      [["Caps", "Caps"], ["\u0634", "\u0650"], ["\u0633", "\u064d"], ["\u064a", "\u005d"], ["\u0628", "\u005b"], ["\u0644", "\u0644"], ["\u0627", "\u0623"], ["\u062a", "\u0640"], ["\u0646", "\u060c"], ["\u0645", "\u002f"], ["\u0643", "\u003a"], ["\u0637", "\u0022"], ["Enter", "Enter"]],
136
      [["Shift", "Shift"], ["\u0626", "\u007e"], ["\u0621", "\u0652"], ["\u0624", "\u007d"], ["\u0631", "\u007b"], ["\u0644", "\u0644"], ["\u0649", "\u0622"], ["\u0629", "\u2019"], ["\u0648", "\u002c"], ["\u0632", "\u002e"], ["\u0638", "\u061f"], ["Shift", "Shift"]],
137
      [[" ", " ", " ", " "], ["Alt", "Alt"]]
138
    ];
139
 
3131 bpr 140
    this.VKI_layout["Armenian East"] = [ // Eastern Armenian Keyboard
141
      [["\u055D", "\u055C"], [":", "1"], ["\u0571", "\u0541"], ["\u0575", "\u0545"], ["\u055B", "3"], [",", "4"], ["-", "9"], [".", "\u0587"], ["\u00AB", "("], ["\u00BB", ")"], ["\u0585", "\u0555"], ["\u057C", "\u054C"], ["\u056A", "\u053A"], ["Bksp", "Bksp"]],
142
      [["Tab", "Tab"], ["\u056D", "\u053D"], ["\u0582", "\u0552"], ["\u0567", "\u0537"], ["\u0580", "\u0550"], ["\u057F", "\u054F"], ["\u0565", "\u0535"], ["\u0568", "\u0538"], ["\u056B", "\u053B"], ["\u0578", "\u0548"], ["\u057A", "\u054A"], ["\u0579", "\u0549"], ["\u057B", "\u054B"], ["'", "\u055E"]],
143
      [["Caps", "Caps"], ["\u0561", "\u0531"], ["\u057D", "\u054D"], ["\u0564", "\u0534"], ["\u0586", "\u0556"], ["\u0584", "\u0554"], ["\u0570", "\u0540"], ["\u0573", "\u0543"], ["\u056F", "\u053F"], ["\u056C", "\u053C"], ["\u0569", "\u0539"], ["\u0583", "\u0553"], ["Enter", "Enter"]],
144
      [["Shift", "Shift"], ["\u0566", "\u0536"], ["\u0581", "\u0551"], ["\u0563", "\u0533"], ["\u057E", "\u054E"], ["\u0562", "\u0532"], ["\u0576", "\u0546"], ["\u0574", "\u0544"], ["\u0577", "\u0547"], ["\u0572", "\u0542"], ["\u056E", "\u053E"], ["Shift", "Shift"]],
145
      [[" ", " "]]
146
    ];
147
 
148
    this.VKI_layout["Armenian West"] = [ // Western Armenian Keyboard
149
      [["\u055D", "\u055C"], [":", "1"], ["\u0571", "\u0541"], ["\u0575", "\u0545"], ["\u055B", "3"], [",", "4"], ["-", "9"], [".", "\u0587"], ["\u00AB", "("], ["\u00BB", ")"], ["\u0585", "\u0555"], ["\u057C", "\u054C"], ["\u056A", "\u053A"], ["Bksp", "Bksp"]],
150
      [["Tab", "Tab"], ["\u056D", "\u053D"], ["\u057E", "\u054E"], ["\u0567", "\u0537"], ["\u0580", "\u0550"], ["\u0564", "\u0534"], ["\u0565", "\u0535"], ["\u0568", "\u0538"], ["\u056B", "\u053B"], ["\u0578", "\u0548"], ["\u0562", "\u0532"], ["\u0579", "\u0549"], ["\u057B", "\u054B"], ["'", "\u055E"]],
151
      [["Caps", "Caps"], ["\u0561", "\u0531"], ["\u057D", "\u054D"], ["\u057F", "\u054F"], ["\u0586", "\u0556"], ["\u056F", "\u053F"], ["\u0570", "\u0540"], ["\u0573", "\u0543"], ["\u0584", "\u0554"], ["\u056C", "\u053C"], ["\u0569", "\u0539"], ["\u0583", "\u0553"], ["Enter", "Enter"]],
152
      [["Shift", "Shift"], ["\u0566", "\u0536"], ["\u0581", "\u0551"], ["\u0563", "\u0533"], ["\u0582", "\u0552"], ["\u057A", "\u054A"], ["\u0576", "\u0546"], ["\u0574", "\u0544"], ["\u0577", "\u0547"], ["\u0572", "\u0542"], ["\u056E", "\u053E"], ["Shift", "Shift"]],
153
      [[" ", " "]]
154
    ];
155
 
1220 bpr 156
    this.VKI_layout.Belarusian = [ // Belarusian Standard Keyboard
157
      [["\u0451", "\u0401"], ["1", "!"], ["2", '"'], ["3", "\u2116"], ["4", ";"], ["5", "%"], ["6", ":"], ["7", "?"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
158
      [["Tab", "Tab"], ["\u0439", "\u0419"], ["\u0446", "\u0426"], ["\u0443", "\u0423"], ["\u043a", "\u041a"], ["\u0435", "\u0415"], ["\u043d", "\u041d"], ["\u0433", "\u0413"], ["\u0448", "\u0428"], ["\u045e", "\u040e"], ["\u0437", "\u0417"], ["\u0445", "\u0425"], ["'", "'"], ["\\", "/"]],
159
      [["Caps", "Caps"], ["\u0444", "\u0424"], ["\u044b", "\u042b"], ["\u0432", "\u0412"], ["\u0430", "\u0410"], ["\u043f", "\u041f"], ["\u0440", "\u0420"], ["\u043e", "\u041e"], ["\u043b", "\u041b"], ["\u0434", "\u0414"], ["\u0436", "\u0416"], ["\u044d", "\u042d"], ["Enter", "Enter"]],
160
      [["Shift", "Shift"], ["/", "|"], ["\u044f", "\u042f"], ["\u0447", "\u0427"], ["\u0441", "\u0421"], ["\u043c", "\u041c"], ["\u0456", "\u0406"], ["\u0442", "\u0422"], ["\u044c", "\u042c"], ["\u0431", "\u0411"], ["\u044e", "\u042e"], [".", ","], ["Shift", "Shift"]],
161
      [[" ", " "]]
162
    ];
163
 
1013 bpr 164
    this.VKI_layout.Belgian = [ // Belgian Standard Keyboard
165
      [["\u00b2", "\u00b3"], ["&", "1", "|"], ["\u00e9", "2", "@"], ['"', "3", "#"], ["'", "4"], ["(", "5"], ["\u00a7", "6", "^"], ["\u00e8", "7"], ["!", "8"], ["\u00e7", "9", "{"], ["\u00e0", "0", "}"], [")", "\u00b0"], ["-", "_"], ["Bksp", "Bksp"]],
166
      [["Tab", "Tab"], ["a", "A"], ["z", "Z"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u005e", "\u00a8", "["], ["$", "*", "]"], ["Enter", "Enter"]],
167
      [["Caps", "Caps"], ["q", "Q"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["m", "M"], ["\u00f9", "%", "\u00b4"], ["\u03bc", "\u00a3", "`"]],
168
      [["Shift", "Shift"], ["<", ">", "\\"], ["w", "W"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], [",", "?"], [";", "."], [":", "/"], ["=", "+", "~"], ["Shift", "Shift"]],
169
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
170
    ];
171
 
3131 bpr 172
    this.VKI_layout.Bengali = [ // Bengali Standard Keyboard
173
      [[""], ["1", "", "\u09E7"], ["2", "", "\u09E8"], ["3", "\u09CD\u09B0", "\u09E9"], ["4", "\u09B0\u09CD", "\u09EA"], ["5", "\u099C\u09CD\u09B0", "\u09EB"], ["6", "\u09A4\u09CD\u09B7", "\u09EC"], ["7", "\u0995\u09CD\u09B0", "\u09ED"], ["8", "\u09B6\u09CD\u09B0", "\u09EE"], ["9", "(", "\u09EF"], ["0", ")", "\u09E6"], ["-", "\u0983"], ["\u09C3", "\u098B", "\u09E2", "\u09E0"], ["Bksp", "Bksp"]],
174
      [["Tab", "Tab"], ["\u09CC", "\u0994", "\u09D7"], ["\u09C8", "\u0990"], ["\u09BE", "\u0986"], ["\u09C0", "\u0988", "\u09E3", "\u09E1"], ["\u09C2", "\u098A"], ["\u09AC", "\u09AD"], ["\u09B9", "\u0999"], ["\u0997", "\u0998"], ["\u09A6", "\u09A7"], ["\u099C", "\u099D"], ["\u09A1", "\u09A2", "\u09DC", "\u09DD"], ["\u09BC", "\u099E"]],
175
      [["Caps", "Caps"], ["\u09CB", "\u0993", "\u09F4", "\u09F5"], ["\u09C7", "\u098F", "\u09F6", "\u09F7"], ["\u09CD", "\u0985", "\u09F8", "\u09F9"], ["\u09BF", "\u0987", "\u09E2", "\u098C"], ["\u09C1", "\u0989"], ["\u09AA", "\u09AB"], ["\u09B0", "", "\u09F0", "\u09F1"], ["\u0995", "\u0996"], ["\u09A4", "\u09A5"], ["\u099A", "\u099B"], ["\u099F", "\u09A0"], ["Enter", "Enter"]],
176
      [["Shift", "Shift"], [""], ["\u0982", "\u0981", "\u09FA"], ["\u09AE", "\u09A3"], ["\u09A8"], ["\u09AC"], ["\u09B2"], ["\u09B8", "\u09B6"], [",", "\u09B7"], [".", "{"], ["\u09AF", "\u09DF"], ["Shift", "Shift"]],
177
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
178
    ];
179
 
1220 bpr 180
    this.VKI_layout['Bulgarian Ph'] = [ // Bulgarian Phonetic Keyboard
181
      [["\u0447", "\u0427"], ["1", "!"], ["2", "@"], ["3", "#"], ["4", "$"], ["5", "%"], ["6", "^"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
182
      [["Tab", "Tab"], ["\u044F", "\u042F"], ["\u0432", "\u0412"], ["\u0435", "\u0415"], ["\u0440", "\u0420"], ["\u0442", "\u0422"], ["\u044A", "\u042A"], ["\u0443", "\u0423"], ["\u0438", "\u0418"], ["\u043E", "\u041E"], ["\u043F", "\u041F"], ["\u0448", "\u0428"], ["\u0449", "\u0429"], ["\u044E", "\u042E"]],
183
      [["Caps", "Caps"], ["\u0430", "\u0410"], ["\u0441", "\u0421"], ["\u0434", "\u0414"], ["\u0444", "\u0424"], ["\u0433", "\u0413"], ["\u0445", "\u0425"], ["\u0439", "\u0419"], ["\u043A", "\u041A"], ["\u043B", "\u041B"], [";", ":"], ["'", '"'], ["Enter", "Enter"]],
184
      [["Shift", "Shift"], ["\u0437", "\u0417"], ["\u044C", "\u042C"], ["\u0446", "\u0426"], ["\u0436", "\u0416"], ["\u0431", "\u0411"], ["\u043D", "\u041D"], ["\u043C", "\u041C"], [",", "<"], [".", ">"], ["/", "?"], ["Shift", "Shift"]],
185
      [[" ", " "]]
186
    ];
187
 
1013 bpr 188
    this.VKI_layout.Burmese = [ // Burmese Keyboard
189
      [["\u1039`", "~"], ["\u1041", "\u100D"], ["\u1042", "\u100E"], ["\u1043", "\u100B"], ["\u1044", "\u1000\u103B\u1015\u103A"], ["\u1045", "%"], ["\u1046", "\u002F"], ["\u1047", "\u101B"], ["\u1048", "\u1002"], ["\u1049", "("], ["\u1040", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
190
      [["Tab", "Tab"], ["\u1006", "\u1029"], ["\u1010", "\u1040"], ["\u1014", "\u103F"], ["\u1019", "\u1023"], ["\u1021", "\u1024"], ["\u1015", "\u104C"], ["\u1000", "\u1009"], ["\u1004", "\u104D"], ["\u101E", "\u1025"], ["\u1005", "\u100F"], ["\u101F", "\u1027"], ["\u2018", "\u2019"], ["\u104F", "\u100B\u1039\u100C"]],
191
      [["Caps", "Caps"], ["\u200B\u1031", "\u1017"], ["\u200B\u103B", "\u200B\u103E"], ["\u200B\u102D", "\u200B\u102E"], ["\u200B\u103A","\u1004\u103A\u1039\u200B"], ["\u200B\u102B", "\u200B\u103D"], ["\u200B\u1037", "\u200B\u1036"], ["\u200B\u103C", "\u200B\u1032"], ["\u200B\u102F", "\u200B\u102F"], ["\u200B\u1030", "\u200B\u1030"], ["\u200B\u1038", "\u200B\u102B\u103A"], ["\u1012", "\u1013"], ["Enter", "Enter"]],
192
      [["Shift", "Shift"], ["\u1016", "\u1007"], ["\u1011", "\u100C"], ["\u1001", "\u1003"], ["\u101C", "\u1020"], ["\u1018", "\u1026"], ["\u100A", "\u1008"], ["\u200B\u102C", "\u102A"], ["\u101A", "\u101B"], ["\u002E", "\u101B"], ["\u104B", "\u104A"], ["Shift", "Shift"]],
193
      [[" ", " "]]
194
    ];
195
 
196
    this.VKI_layout.Czech = [ // Czech Keyboard
197
     [[";", "\u00b0", "`", "~"], ["+", "1", "!"], ["\u011B", "2", "@"], ["\u0161", "3", "#"], ["\u010D", "4", "$"], ["\u0159", "5", "%"], ["\u017E", "6", "^"], ["\u00FD", "7", "&"], ["\u00E1", "8", "*"], ["\u00ED", "9", "("], ["\u00E9", "0", ")"], ["=", "%", "-", "_"], ["\u00B4", "\u02c7", "=", "+"], ["Bksp", "Bksp"]],
198
     [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20AC"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00FA", "/", "[", "{"], [")", "(", "]", "}"], ["Enter", "Enter"]],
199
     [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u016F", '"', ";", ":"], ["\u00A7", "!", "\u00a4", "^"], ["\u00A8", "'", "\\", "|"]],
200
     [["Shift", "Shift"], ["\\", "|", "", "\u02dd"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", "?", "<", "\u00d7"], [".", ":", ">", "\u00f7"], ["-", "_", "/", "?"], ["Shift", "Shift"]],
201
     [[" ", " ", " ", " "], ["Alt", "Alt"]]
202
    ];
203
 
3131 bpr 204
    this.VKI_layout.Danish = [ // Danish Standard Keyboard
205
      [["\u00bd", "\u00a7"], ["1", "!"], ["2", '"', "@"], ["3", "#", "\u00a3"], ["4", "\u00a4", "$"], ["5", "%", "\u20ac"], ["6", "&"], ["7", "/", "{"], ["8", "(", "["], ["9", ")", "]"], ["0", "=", "}"], ["+", "?"], ["\u00b4", "`", "|"], ["Bksp", "Bksp"]],
206
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00e5", "\u00c5"], ["\u00a8", "^", "~"], ["Enter", "Enter"]],
207
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00e6", "\u00c6"], ["\u00f8", "\u00d8"], ["'", "*"]],
208
      [["Shift", "Shift"], ["<", ">", "\\"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M", "\u03bc", "\u039c"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
209
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
210
    ];
211
 
1013 bpr 212
    this.VKI_layout.Dutch = [ // Dutch Standard Keyboard
213
      [["@", "\u00a7", "\u00ac"], ["1", "!", "\u00b9"], ["2", '"', "\u00b2"], ["3", "#", "\u00b3"], ["4", "$", "\u00bc"], ["5", "%", "\u00bd"], ["6", "&", "\u00be"], ["7", "_", "\u00a3"], ["8", "(", "{"], ["9", ")", "}"], ["0", "'"], ["/", "?", "\\"], ["\u00b0", "~", "\u00b8"], ["Bksp", "Bksp"]],
214
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R", "\u00b6"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00a8", "^"], ["*", "|"], ["<", ">"]],
215
      [["Caps", "Caps"], ["a", "A"], ["s", "S", "\u00df"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["+", "\u00b1"], ["\u00b4", "\u0060"], ["Enter", "Enter"]],
216
      [["Shift", "Shift"], ["]", "[", "\u00a6"], ["z", "Z", "\u00ab"], ["x", "X", "\u00bb"], ["c", "C", "\u00a2"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M", "\u00b5"], [",", ";"], [".", ":", "\u00b7"], ["-", "="], ["Shift", "Shift"]],
217
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
218
    ];
219
 
220
    this.VKI_layout.Dvorak = [ // Dvorak Keyboard
221
      [["`", "~"], ["1", "!"], ["2", "@"], ["3", "#"], ["4", "$"], ["5", "%"], ["6", "^"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["[", "{"], ["]", "}"], ["Bksp", "Bksp"]],
222
      [["Tab", "Tab"],["'", '"'], [",", "<"], [".", ">"], ["p", "P"], ["y", "Y"], ["f", "F"], ["g", "G"], ["c", "C"], ["r", "R"], ["l", "L"], ["/", "?"], ["=", "+"], ["\\", "|"]],
223
      [["Caps", "Caps"], ["a", "A"], ["o", "O"], ["e", "E"], ["u", "U"], ["i", "I"], ["d", "D"], ["h", "H"], ["t", "T"], ["n", "N"], ["s", "S"], ["-", "_"], ["Enter", "Enter"]],
224
      [["Shift", "Shift"], [";", ":"], ["q", "Q"], ["j", "J"], ["k", "K"], ["x", "X"], ["b", "B"], ["m", "M"], ["w", "W"], ["v", "V"], ["z", "Z"], ["Shift", "Shift"]],
225
      [[" ", " "]]
226
    ];
227
 
228
    this.VKI_layout.Farsi = [ // Farsi Keyboard
229
      [["\u067e", "\u0651 "], ["1", "!", "\u00a1", "\u00b9"], ["2", "@", "\u00b2"], ["3", "#", "\u00b3"], ["4", "$", "\u00a4", "\u00a3"], ["5", "%", "\u20ac"], ["6", "^", "\u00bc"], ["7", "&", "\u00bd"], ["8", "*", "\u00be"], ["9", "(", "\u2018"], ["0", ")", "\u2019"], ["-", "_", "\u00a5"], ["=", "+", "\u00d7", "\u00f7"], ["Bksp", "Bksp"]],
230
      [["Tab", "Tab"], ["\u0636", "\u064e"], ["\u0635", "\u064b"], ["\u062b", "\u064f"], ["\u0642", "\u064c"], ["\u0641", "\u0644"], ["\u063a", "\u0625"], ["\u0639", "\u2018"], ["\u0647", "\u00f7"], ["\u062e", "\u00d7"], ["\u062d", "\u061b"], ["\u062c", "\u003c"], ["\u0686", "\u003e"], ["\u0698", "\u007c"]],
231
      [["Caps", "Caps"], ["\u0634", "\u0650"], ["\u0633", "\u064d"], ["\u064a", "\u005d"], ["\u0628", "\u005b"], ["\u0644", "\u0644"], ["\u0627", "\u0623"], ["\u062a", "\u0640"], ["\u0646", "\u060c"], ["\u0645", "\u005c"], ["\u06af", "\u003a"], ["\u0643", "\u0022"], ["Enter", "Enter"]],
232
      [["Shift", "Shift"], ["\u0626", "\u007e"], ["\u0621", "\u0652"], ["\u0632", "\u007d"], ["\u0631", "\u007b"], ["\u0630", "\u0644"], ["\u062f", "\u0622"], ["\u0626", "\u0621"], ["\u0648", "\u002c"], [".", "\u002e"], ["/", "\u061f"], ["Shift", "Shift"]],
233
      [[" ", " ", " ", " "], ["Alt", "Alt"]]
234
    ];
235
 
236
    this.VKI_layout.French = [ // French Standard Keyboard
237
      [["\u00b2", "\u00b3"], ["&", "1"], ["\u00e9", "2", "~"], ['"', "3", "#"], ["'", "4", "{"], ["(", "5", "["], ["-", "6", "|"], ["\u00e8", "7", "\u0060"], ["_", "8", "\\"], ["\u00e7", "9", "\u005e"], ["\u00e0", "0", "\u0040"], [")", "\u00b0", "]"], ["=", "+", "}"], ["Bksp", "Bksp"]],
238
      [["Tab", "Tab"], ["a", "A"], ["z", "Z"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["^", "\u00a8"], ["$", "\u00a3", "\u00a4"], ["Enter", "Enter"]],
239
      [["Caps", "Caps"], ["q", "Q"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["m", "M"], ["\u00f9", "%"], ["*", "\u03bc"]],
240
      [["Shift", "Shift"], ["<", ">"], ["w", "W"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], [",", "?"], [";", "."], [":", "/"], ["!", "\u00a7"], ["Shift", "Shift"]],
241
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
242
    ];
243
 
244
    this.VKI_layout.German = [ // German Standard Keyboard
245
      [["\u005e", "\u00b0"], ["1", "!"], ["2", '"', "\u00b2"], ["3", "\u00a7", "\u00b3"], ["4", "$"], ["5", "%"], ["6", "&"], ["7", "/", "{"], ["8", "(", "["], ["9", ")", "]"], ["0", "=", "}"], ["\u00df", "?", "\\"], ["\u00b4", "\u0060"], ["Bksp", "Bksp"]],
246
      [["Tab", "Tab"], ["q", "Q", "\u0040"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["z", "Z"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00fc", "\u00dc"], ["+", "*", "~"], ["Enter", "Enter"]],
247
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00f6", "\u00d6"], ["\u00e4", "\u00c4"], ["#", "'"]],
248
      [["Shift", "Shift"], ["<", ">", "\u00a6"], ["y", "Y"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M", "\u00b5"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
249
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
250
    ];
251
 
252
    this.VKI_layout.Greek = [ // Greek Standard Keyboard
253
      [["`", "~"], ["1", "!"], ["2", "@", "\u00b2"], ["3", "#", "\u00b3"], ["4", "$", "\u00a3"], ["5", "%", "\u00a7"], ["6", "^", "\u00b6"], ["7", "&"], ["8", "*", "\u00a4"], ["9", "(", "\u00a6"], ["0", ")", "\u00ba"], ["-", "_", "\u00b1"], ["=", "+", "\u00bd"], ["Bksp", "Bksp"]],
254
      [["Tab", "Tab"], [";", ":"], ["\u03c2", "^"], ["\u03b5", "\u0395"], ["\u03c1", "\u03a1"], ["\u03c4", "\u03a4"], ["\u03c5", "\u03a5"], ["\u03b8", "\u0398"], ["\u03b9", "\u0399"], ["\u03bf", "\u039f"], ["\u03c0", "\u03a0"], ["[", "{", "\u201c"], ["]", "}", "\u201d"], ["Enter", "Enter"]],
255
      [["Caps", "Caps"], ["\u03b1", "\u0391"], ["\u03c3", "\u03a3"], ["\u03b4", "\u0394"], ["\u03c6", "\u03a6"], ["\u03b3", "\u0393"], ["\u03b7", "\u0397"], ["\u03be", "\u039e"], ["\u03ba", "\u039a"], ["\u03bb", "\u039b"], ["\u0384", "\u00a8", "\u0385"], ["'", '"'], ["\\", "|", "\u00ac"]],
256
      [["Shift", "Shift"], ["<", ">"], ["\u03b6", "\u0396"], ["\u03c7", "\u03a7"], ["\u03c8", "\u03a8"], ["\u03c9", "\u03a9"], ["\u03b2", "\u0392"], ["\u03bd", "\u039d"], ["\u03bc", "\u039c"], [",", "<"], [".", ">"], ["/", "?"], ["Shift", "Shift"]],
257
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
258
    ];
259
 
260
    this.VKI_layout.Hebrew = [ // Hebrew Standard Keyboard
261
      [["~", "`"], ["1", "!"], ["2", "@"], ["3", "#"], ["4" , "$", "\u20aa"], ["5" , "%"], ["6", "^"], ["7", "&"], ["8", "*"], ["9", ")"], ["0", "("], ["-", "_"], ["=", "+"], ["\\", "|"], ["Bksp", "Bksp"]],
262
      [["Tab", "Tab"], ["/", "Q"], ["'", "W"], ["\u05e7", "E", "\u20ac"], ["\u05e8", "R"], ["\u05d0", "T"], ["\u05d8", "Y"], ["\u05d5", "U", "\u05f0"], ["\u05df", "I"], ["\u05dd", "O"], ["\u05e4", "P"], ["]", "}"], ["[", "{"]],
263
      [["Caps", "Caps"], ["\u05e9", "A"], ["\u05d3", "S"], ["\u05d2", "D"], ["\u05db", "F"], ["\u05e2", "G"], ["\u05d9", "H", "\u05f2"], ["\u05d7", "J", "\u05f1"], ["\u05dc", "K"], ["\u05da", "L"], ["\u05e3", ":"], ["," , '"'], ["Enter", "Enter"]],
264
      [["Shift", "Shift"], ["\u05d6", "Z"], ["\u05e1", "X"], ["\u05d1", "C"], ["\u05d4", "V"], ["\u05e0", "B"], ["\u05de", "N"], ["\u05e6", "M"], ["\u05ea", ">"], ["\u05e5", "<"], [".", "?"], ["Shift", "Shift"]],
265
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
266
    ];
267
 
3131 bpr 268
    this.VKI_layout.Hindi = [ // Hindi Traditional Keyboard
269
      [["\u200d", "\u200c", "`", "~"], ["1", "\u090D", "\u0967", "!"], ["2", "\u0945", "\u0968", "@"], ["3", "\u094D\u0930", "\u0969", "#"], ["4", "\u0930\u094D", "\u096A", "$"], ["5", "\u091C\u094D\u091E", "\u096B", "%"], ["6", "\u0924\u094D\u0930", "\u096C", "^"], ["7", "\u0915\u094D\u0937", "\u096D", "&"], ["8", "\u0936\u094D\u0930", "\u096E", "*"], ["9", "(", "\u096F", "("], ["0", ")", "\u0966", ")"], ["-", "\u0903", "-", "_"], ["\u0943", "\u090B", "=", "+"], ["Bksp", "Bksp"]],
270
      [["Tab", "Tab"], ["\u094C", "\u0914"], ["\u0948", "\u0910"], ["\u093E", "\u0906"], ["\u0940", "\u0908"], ["\u0942", "\u090A"], ["\u092C", "\u092D"], ["\u0939", "\u0919"], ["\u0917", "\u0918"], ["\u0926", "\u0927"], ["\u091C", "\u091D"], ["\u0921", "\u0922", "[", "{"], ["\u093C", "\u091E", "]", "}"], ["Enter", "Enter"]],
271
      [["Caps", "Caps"], ["\u094B", "\u0913"], ["\u0947", "\u090F"], ["\u094D", "\u0905"], ["\u093F", "\u0907"], ["\u0941", "\u0909"], ["\u092A", "\u092B"], ["\u0930", "\u0931"], ["\u0915", "\u0916"], ["\u0924", "\u0925"], ["\u091A", "\u091B", ";", ":"], ["\u091F", "\u0920", "'", '"'], ["\u0949", "\u0911", "\\", "|"]],
272
      [["Shift", "Shift"], [""], ["\u0902", "\u0901", "", "\u0950"], ["\u092E", "\u0923"], ["\u0928"], ["\u0935"], ["\u0932", "\u0933"], ["\u0938", "\u0936"], [",", "\u0937", ",", "<"], [".", "\u0964", ".", ">"], ["\u092F", "\u095F", "/", "?"], ["Shift", "Shift"]],
273
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
274
    ];
275
 
1013 bpr 276
    this.VKI_layout.Hungarian = [ // Hungarian Standard Keyboard
277
      [["0", "\u00a7"], ["1", "'", "\u007e"], ["2", '"', "\u02c7"], ["3", "+", "\u02c6"], ["4", "!", "\u02d8"], ["5", "%", "\u00b0"], ["6", "/", "\u02db"], ["7", "=", "\u0060"], ["8", "(", "\u02d9"], ["9", ")", "\u00b4"], ["\u00f6", "\u00d6", "\u02dd"], ["\u00fc", "\u00dc", "\u00a8"], ["\u00f3", "\u00d3", "\u00b8"], ["Bksp", "Bksp"]],
278
      [["Tab", "Tab"], ["q", "Q", "\u005c"], ["w", "W", "\u007c"], ["e", "E", "\u00c4"], ["r", "R"], ["t", "T"], ["z", "Z"], ["u", "U", "\u20ac"], ["i", "I", "\u00cd"], ["o", "O"], ["p", "P"], ["\u0151", "\u0150", "\u00f7"], ["\u00fa", "\u00da", "\u00d7"], ["Enter", "Enter"]],
279
      [["Caps", "Caps"], ["a", "A", "\u00e4"], ["s", "S","\u0111"], ["d", "D","\u0110"], ["f", "F","\u005b"], ["g", "G","\u005d"], ["h", "H"], ["j", "J","\u00ed"], ["k", "K","\u0141"], ["l", "L","\u0142"], ["\u00e9", "\u00c9","\u0024"], ["\u00e1", "\u00c1","\u00df"], ["\u0171", "\u0170","\u00a4"]],
280
      [["Shift", "Shift"], ["\u00ed", "\u00cd","\u003c"], ["y", "Y","\u003e"], ["x", "X","\u0023"], ["c", "C","\u0026"], ["v", "V","\u0040"], ["b", "B","\u007b"], ["n", "N","\u007d"], ["m", "M","\u003c"], [",", "?","\u003b"], [".", ":","\u003e"], ["-", "_","\u002a"], ["Shift", "Shift"]],
281
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
282
    ];
283
 
284
    this.VKI_layout.Italian = [ // Italian Standard Keyboard
285
      [["\u005c", "\u007c"], ["1", "!"], ["2", '"'], ["3", "\u00a3"], ["4", "$", "\u20ac"], ["5", "%"], ["6", "&"], ["7", "/"], ["8", "("], ["9", ")"], ["0", "="], ["'", "?"], ["\u00ec", "\u005e"], ["Bksp", "Bksp"]],
286
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00e8", "\u00e9", "[", "{"], ["+", "*", "]", "}"], ["Enter", "Enter"]],
287
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00f2", "\u00e7", "@"], ["\u00e0", "\u00b0", "#"], ["\u00f9", "\u00a7"]],
288
      [["Shift", "Shift"], ["<", ">"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
289
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
290
    ];
1220 bpr 291
 
3131 bpr 292
    this.VKI_layout.Kazakh = [ // Kazakh Standard Keyboard
293
      [["(", ")"], ['"', "!"], ["\u04d9", "\u04d8"], ["\u0456", "\u0406"], ["\u04a3", "\u04a2"], ["\u0493", "\u0492"], [",", ";"], [".", ":"], ["\u04af", "\u04ae"], ["\u04b1", "\u04b0"], ["\u049b", "\u049a"], ["\u04e9", "\u04e8"], ["\u04bb", "\u04ba"], ["Bksp", "Bksp"]],
294
      [["Tab", "Tab"], ["\u0439", "\u0419"], ["\u0446", "\u0426"], ["\u0443", "\u0423"], ["\u043A", "\u041A"], ["\u0435", "\u0415"], ["\u043D", "\u041D"], ["\u0433", "\u0413"], ["\u0448", "\u0428"], ["\u0449", "\u0429"], ["\u0437", "\u0417"], ["\u0445", "\u0425"], ["\u044A", "\u042A"], ["\\", "/"]],
295
      [["Caps", "Caps"], ["\u0444", "\u0424"], ["\u044B", "\u042B"], ["\u0432", "\u0412"], ["\u0430", "\u0410"], ["\u043F", "\u041F"], ["\u0440", "\u0420"], ["\u043E", "\u041E"], ["\u043B", "\u041B"], ["\u0434", "\u0414"], ["\u0436", "\u0416"], ["\u044D", "\u042D"], ["Enter", "Enter"]],
296
      [["Shift", "Shift"], ["\\", "|"], ["\u044F", "\u042F"], ["\u0447", "\u0427"], ["\u0441", "\u0421"], ["\u043C", "\u041C"], ["\u0438", "\u0418"], ["\u0442", "\u0422"], ["\u044C", "\u042C"], ["\u0431", "\u0411"], ["\u044E", "\u042E"], ["\u2116", "?"], ["Shift", "Shift"]],
297
      [[" ", " "]]
298
    ];
299
 
1013 bpr 300
    this.VKI_layout.Lithuanian = [ // Lithuanian Standard Keyboard
301
      [["`", "~"], ["\u0105", "\u0104"], ["\u010D", "\u010C"], ["\u0119", "\u0118"], ["\u0117", "\u0116"], ["\u012F", "\u012E"], ["\u0161", "\u0160"], ["\u0173", "\u0172"], ["\u016B", "\u016A"], ["\u201E", "("], ["\u201C", ")"], ["-", "_"], ["\u017E", "\u017D"], ["Bksp", "Bksp"]],
302
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["[", "{"], ["]", "}"], ["Enter", "Enter"]],
303
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], [";", ":"], ["'", '"'], ["\\", "|"]],
304
      [["Shift", "Shift"], ["\u2013", "\u20AC"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", "<"], [".", ">"], ["/", "?"], ["Shift", "Shift"]],
305
      [[" ", " "]]
306
    ];
307
 
3131 bpr 308
    this.VKI_layout.Macedonian = [ // Macedonian Cyrillic Standard Keyboard
309
      [["`", "~"], ["1", "!"], ["2", "\u201E"], ["3", "\u201C"], ["4", "\u2019"], ["5", "%"], ["6", "\u2018"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
310
      [["Tab", "Tab"], ["\u0459", "\u0409"], ["\u045A", "\u040A"], ["\u0435", "\u0415", "\u20AC"], ["\u0440", "\u0420"], ["\u0442", "\u0422"], ["\u0455", "\u0405"], ["\u0443", "\u0423"], ["\u0438", "\u0418"], ["\u043E", "\u041E"], ["\u043F", "\u041F"], ["\u0448", "\u0428", "\u0402"], ["\u0453", "\u0403", "\u0452"], ["Enter", "Enter"]],
311
      [["Caps", "Caps"], ["\u0430", "\u0410"], ["\u0441", "\u0421"], ["\u0434", "\u0414"], ["\u0444", "\u0424", "["], ["\u0433", "\u0413", "]"], ["\u0445", "\u0425"], ["\u0458", "\u0408"], ["\u043A", "\u041A"], ["\u043B", "\u041B"], ["\u0447", "\u0427", "\u040B"], ["\u045C", "\u040C", "\u045B"], ["\u0436", "\u0416"]],
312
      [["Shift", "Shift"], ["\u0451", "\u0401"], ["\u0437", "\u0417"], ["\u045F", "\u040F"], ["\u0446", "\u0426"], ["\u0432", "\u0412", "@"], ["\u0431", "\u0411", "{"], ["\u043D", "\u041D", "}"], ["\u043C", "\u041C", "\u00A7"], [",", ";"], [".", ":"], ["/", "?"], ["Shift", "Shift"]],
313
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
314
    ];
315
 
1013 bpr 316
    this.VKI_layout.Norwegian = [ // Norwegian Standard Keyboard
317
      [["|", "\u00a7"], ["1", "!"], ["2", '"', "@"], ["3", "#", "\u00a3"], ["4", "\u00a4", "$"], ["5", "%"], ["6", "&"], ["7", "/", "{"], ["8", "(", "["], ["9", ")", "]"], ["0", "=", "}"], ["+", "?"], ["\\", "`", "\u00b4"], ["Bksp", "Bksp"]],
318
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00e5", "\u00c5"], ["\u00a8", "^", "~"], ["Enter", "Enter"]],
319
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00f8", "\u00d8"], ["\u00e6", "\u00c6"], ["'", "*"]],
320
      [["Shift", "Shift"], ["<", ">"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M", "\u03bc", "\u039c"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
321
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
322
    ];
323
 
324
    this.VKI_layout.Numpad = [ // Number pad
325
      [["$"], ["\u00a3"], ["\u20ac"], ["\u00a5"], ["/"], ["^"], ["Bksp", "Bksp"]],
326
      [["."], ["7"], ["8"], ["9"], ["*"], ["<"], ["("], ["["]],
327
      [["="], ["4"], ["5"], ["6"], ["-"], [">"], [")"], ["]"]],
328
      [["0"], ["1"], ["2"], ["3"], ["+"], ["Enter", "Enter"]],
329
      [[" "]]
330
    ];
3131 bpr 331
    this.VKI_layout.Numpad.DDK = true;
1013 bpr 332
 
3131 bpr 333
    this.VKI_layout.Pashto = [ // Pashto Keyboard
334
      [["\u200d", "\u00f7"], ["\u06f1", "\u0021", "\u0060"], ["\u06f2", "\u066c", "\u0040"], ["\u06f3", "\u066b", "\u066b"], ["\u06f4", "\u00a4", "\u00a3"], ["\u06f5", "\u066a", "\u0025"], ["\u06f6", "\u00d7", "\u005e"], ["\u06f7", "\u00ab", "\u0026"], ["\u06f8", "\u00bb", "\u002a"], ["\u06f9", "(", "\ufdf2"], ["\u06f0", ")", "\ufefb"], ["\u002d", "\u0640", "\u005f"], ["\u003d", "\u002b", "\ufe87", "\u00f7"], ["Bksp", "Bksp"]],
335
      [["Tab", "Tab"], ["\u0636", "\u0652", "\u06d5"], ["\u0635", "\u064c", "\u0653"], ["\u062b", "\u064d", "\u20ac"], ["\u0642", "\u064b", "\ufef7"], ["\u0641", "\u064f", "\ufef5"], ["\u063a", "\u0650", "\u0027"], ["\u0639", "\u064e", "\ufe84"], ["\u0647", "\u0651", "\u0670"], ["\u062e", "\u0685", "\u0027"], ["\u062d", "\u0681", "\u0022"], ["\u062c", "\u005b", "\u007b"], ["\u0686", "\u005d", "\u007d"], ["\u005c", "\u066d", "\u007c"]],
336
      [["Caps", "Caps"], ["\u0634", "\u069a", "\ufbb0"], ["\u0633", "\u0626", "\ufe87"], ["\u06cc", "\u064a", "\u06d2"], ["\u0628", "\u067e", "\u06ba"], ["\u0644", "\u0623", "\u06b7"], ["\u0627", "\u0622", "\u0671"], ["\u062a", "\u067c", "\u0679"], ["\u0646", "\u06bc", "\u003c"], ["\u0645", "\u0629", "\u003e"], ["\u06a9", "\u003a", "\u0643"], ["\u06af", "\u061b", "\u06ab"], ["Enter", "Enter"]],
337
      [["Shift", "Shift"], ["\u06cd", "\u0638", "\u003b"], ["\u06d0", "\u0637", "\ufbb0"], ["\u0632", "\u0698", "\u0655"], ["\u0631", "\u0621", "\u0654"], ["\u0630", "\u200c", "\u0625"], ["\u062f", "\u0689", "\u0688"], ["\u0693", "\u0624", "\u0691"], ["\u0648", "\u060c", "\u002c"], ["\u0696", "\u002e", "\u06c7"], ["\u002f", "\u061f", "\u06c9"], ["Shift", "Shift", "\u064d"]],
338
      [[" ", " ", " ", " "], ["Alt", "Alt"]]
339
    ];
340
 
341
    this.VKI_layout.Pinyin = [ // Pinyin Keyboard
342
      [["`", "~", "\u4e93", "\u301C"], ["1", "!", "\uFF62"], ["2", "@", "\uFF63"], ["3", "#", "\u301D"], ["4", "$", "\u301E"], ["5", "%", "\u301F"], ["6", "^", "\u3008"], ["7", "&", "\u3009"], ["8", "*", "\u302F"], ["9", "(", "\u300A"], ["0", ")", "\u300B"], ["-", "_", "\u300E"], ["=", "+", "\u300F"], ["Bksp", "Bksp"]],
343
      [["Tab", "Tab"], ["q", "Q", "\u0101", "\u0100"], ["w", "W", "\u00E1", "\u00C1"], ["e", "E", "\u01CE", "\u01CD"], ["r", "R", "\u00E0", "\u00C0"], ["t", "T", "\u0113", "\u0112"], ["y", "Y", "\u00E9", "\u00C9"], ["u", "U", "\u011B", "\u011A"], ["i", "I", "\u00E8", "\u00C8"], ["o", "O", "\u012B", "\u012A"], ["p", "P", "\u00ED", "\u00CD"], ["[", "{", "\u01D0", "\u01CF"], ["]", "}", "\u00EC", "\u00CC"], ["\\", "|", "\u3020"]],
344
      [["Caps", "Caps"], ["a", "A", "\u014D", "\u014C"], ["s", "S", "\u00F3", "\u00D3"], ["d", "D", "\u01D2", "\u01D1"], ["f", "F", "\u00F2", "\u00D2"], ["g", "G", "\u00fc", "\u00dc"], ["h", "H", "\u016B", "\u016A"], ["j", "J", "\u00FA", "\u00DA"], ["k", "K", "\u01D4", "\u01D3"], ["l", "L", "\u00F9", "\u00D9"], [";", ":"], ["'", '"'], ["Enter", "Enter"]],
345
      [["Shift", "Shift"], ["z", "Z", "\u01D6", "\u01D5"], ["x", "X", "\u01D8", "\u01D7"], ["c", "C", "\u01DA", "\u01D9"], ["v", "V", "\u01DC", "\u01DB"], ["b", "B"], ["n", "N"], ["m", "M"], [",", "<", "\u3001"], [".", ">", "\u3002"], ["/", "?"], ["Shift", "Shift"]],
346
      [["AltLk", "AltLk"], [" ", " ", " ", " "], ["Alt", "Alt"]]
347
    ];
348
 
1013 bpr 349
    this.VKI_layout["Polish Prog"] = [ // Polish Programmers Keyboard
350
      [["`", "~"], ["1", "!"], ["2", "@"], ["3", "#"], ["4", "$"], ["5", "%"], ["6", "^"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
351
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u0119", "\u0118"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O", "\u00f3", "\u00d3"], ["p", "P"], ["[", "{"], ["]", "}"], ["\\", "|"]],
352
      [["Caps", "Caps"], ["a", "A", "\u0105", "\u0104"], ["s", "S", "\u015b", "\u015a"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L", "\u0142", "\u0141"], [";", ":"], ["'", '"'], ["Enter", "Enter"]],
353
      [["Shift", "Shift"], ["z", "Z", "\u017c", "\u017b"], ["x", "X", "\u017a", "\u0179"], ["c", "C", "\u0107", "\u0106"], ["v", "V"], ["b", "B"], ["n", "N", "\u0144", "\u0143"], ["m", "M"], [",", "<"], [".", ">"], ["/", "?"], ["Shift", "Shift"]],
354
      [[" ", " ", " ", " "], ["Alt", "Alt"]]
355
    ];
356
 
3131 bpr 357
    this.VKI_layout["Portuguese Br"] = [ // Portuguese (Brazil) Standard Keyboard
358
      [["'", '"'], ["1", "!", "\u00b9"], ["2", "@", "\u00b2"], ["3", "#", "\u00b3"], ["4", "$", "\u00a3"], ["5", "%", "\u00a2"], ["6", "\u00a8", "\u00ac"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+", "\u00a7"], ["Bksp", "Bksp"]],
359
      [["Tab", "Tab"], ["q", "Q", "/"], ["w", "W", "?"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00b4", "`"], ["[", "{", "\u00aa"], ["Enter", "Enter"]],
360
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00e7", "\u00c7"], ["~", "^"], ["]", "}", "\u00ba"], ["/", "?"]],
361
      [["Shift", "Shift"], ["\\", "|"], ["z", "Z"], ["x", "X"], ["c", "C", "\u20a2"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", "<"], [".", ">"], [":", ":"], ["Shift", "Shift"]],
1013 bpr 362
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
363
    ];
364
 
3131 bpr 365
    this.VKI_layout["Portuguese Pt"] = [ // Portuguese (Portugal) Standard Keyboard
366
      [["\\", "|"], ["1", "!"], ["2", '"', "@"], ["3", "#", "\u00a3"], ["4", "$", "\u00a7"], ["5", "%"], ["6", "&"], ["7", "/", "{"], ["8", "(", "["], ["9", ")", "]"], ["0", "=", "}"], ["'", "?"], ["\u00ab", "\u00bb"], ["Bksp", "Bksp"]],
367
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["+", "*", "\u00a8"], ["\u00b4", "`"], ["Enter", "Enter"]],
368
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00e7", "\u00c7"], ["\u00ba", "\u00aa"], ["~", "^"]],
369
      [["Shift", "Shift"], ["<", ">", "\\"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
370
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
371
    ];
372
 
1013 bpr 373
    this.VKI_layout.Romanian = [ // Romanian Standard Keyboard
374
     [["\u201E", "\u201D", "\u0060", "~"], ["1", "!","~"], ["2", "\u0040", "\u02C7"], ["3", "#","\u005E"], ["4", "$", "\u02D8"], ["5", "%", "\u00B0"], ["6", "\u005E", "\u02DB"], ["7", "&", "\u0060"], ["8", "*", "\u02D9"], ["9", "(", "\u00B4"], ["0", ")", "\u02DD"], ["-", "_", "\u00A8"], ["=", "+", "\u00B8", "\u00B1"], ["Bksp", "Bksp"]],
375
     [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20AC"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P", "\u00A7"], ["\u0103", "\u0102", "[", "{"], ["\u00EE", "\u00CE", "]","}"], ["\u00E2", "\u00C2", "\\", "|"]],
376
     [["Caps", "Caps"], ["a", "A"], ["s", "S", "\u00df"], ["d", "D", "\u00f0", "\u00D0"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L", "\u0142", "\u0141"], [(this.VKI_isIElt8) ? "\u015F" : "\u0219", (this.VKI_isIElt8) ? "\u015E" : "\u0218", ";", ":"], [(this.VKI_isIElt8) ? "\u0163" : "\u021B", (this.VKI_isIElt8) ? "\u0162" : "\u021A", "\'", "\""], ["Enter", "Enter"]],
377
     [["Shift", "Shift"], ["\\", "|"], ["z", "Z"], ["x", "X"], ["c", "C", "\u00A9"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", ";", "<", "\u00AB"], [".", ":", ">", "\u00BB"], ["/", "?"], ["Shift", "Shift"]],
378
     [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
379
    ];
380
 
381
    this.VKI_layout.Russian = [ // Russian Standard Keyboard
382
      [["\u0451", "\u0401"], ["1", "!"], ["2", '"'], ["3", "\u2116"], ["4", ";"], ["5", "%"], ["6", ":"], ["7", "?"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
383
      [["Tab", "Tab"], ["\u0439", "\u0419"], ["\u0446", "\u0426"], ["\u0443", "\u0423"], ["\u043A", "\u041A"], ["\u0435", "\u0415"], ["\u043D", "\u041D"], ["\u0433", "\u0413"], ["\u0448", "\u0428"], ["\u0449", "\u0429"], ["\u0437", "\u0417"], ["\u0445", "\u0425"], ["\u044A", "\u042A"], ["Enter", "Enter"]],
384
      [["Caps", "Caps"], ["\u0444", "\u0424"], ["\u044B", "\u042B"], ["\u0432", "\u0412"], ["\u0430", "\u0410"], ["\u043F", "\u041F"], ["\u0440", "\u0420"], ["\u043E", "\u041E"], ["\u043B", "\u041B"], ["\u0434", "\u0414"], ["\u0436", "\u0416"], ["\u044D", "\u042D"], ["\\", "/"]],
385
      [["Shift", "Shift"], ["/", "|"], ["\u044F", "\u042F"], ["\u0447", "\u0427"], ["\u0441", "\u0421"], ["\u043C", "\u041C"], ["\u0438", "\u0418"], ["\u0442", "\u0422"], ["\u044C", "\u042C"], ["\u0431", "\u0411"], ["\u044E", "\u042E"], [".", ","], ["Shift", "Shift"]],
386
      [[" ", " "]]
387
    ];
388
 
1220 bpr 389
    this.VKI_layout.SerbianCyr = [ // Serbian Cyrillic Standard Keyboard
390
      [["`", "~"], ["1", "!"], ["2", '"'], ["3", "#"], ["4", "$"], ["5", "%"], ["6", "&"], ["7", "/"], ["8", "("], ["9", ")"], ["0", "="], ["'", "?"], ["+", "*"], ["Bksp", "Bksp"]],
391
      [["Tab", "Tab"], ["\u0459", "\u0409"], ["\u045a", "\u040a"], ["\u0435", "\u0415", "\u20ac"], ["\u0440", "\u0420"], ["\u0442", "\u0422"], ["\u0437", "\u0417"], ["\u0443", "\u0423"], ["\u0438", "\u0418"], ["\u043e", "\u041e"], ["\u043f", "\u041f"], ["\u0448", "\u0428"], ["\u0452", "\u0402"], ["Enter", "Enter"]],
392
      [["Caps", "Caps"], ["\u0430", "\u0410"], ["\u0441", "\u0421"], ["\u0434", "\u0414"], ["\u0444", "\u0424"], ["\u0433", "\u0413"], ["\u0445", "\u0425"], ["\u0458", "\u0408"], ["\u043a", "\u041a"], ["\u043b", "\u041b"], ["\u0447", "\u0427"], ["\u045b", "\u040b"], ["\u0436", "\u0416"]],
393
      [["Shift", "Shift"], ["<", ">"], ["\u0455", "\u0405"], ["\u045f", "\u040f"], ["\u0446", "\u0426"], ["\u0432", "\u0412"], ["\u0431", "\u0411"], ["\u043d", "\u041d"], ["\u043c", "\u041c"], [",", ";", "<"], [".", ":", ">"], ["-", "_", "\u00a9"], ["Shift", "Shift"]],
394
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
395
    ];
396
 
397
    this.VKI_layout.SerbianLat = [ // Serbian Latin Standard Keyboard
398
      [["\u201a", "~"], ["1", "!", "~"], ["2", '"', "\u02c7"], ["3", "#", "^"], ["4", "$", "\u02d8"], ["5", "%", "\u00b0"], ["6", "&", "\u02db"], ["7", "/", "`"], ["8", "(", "\u02d9"], ["9", ")", "\u00b4"], ["0", "=", "\u02dd"], ["'", "?", "\u00a8"], ["+", "*", "\u00b8"], ["Bksp", "Bksp"]],
399
      [["Tab", "Tab"], ["q", "Q", "\\"], ["w", "W","|"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["z", "Z"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u0161", "\u0160", "\u00f7"], ["\u0111", "\u0110", "\u00d7"], ["Enter", "Enter"]],
400
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F", "["], ["g", "G", "]"], ["h", "H"], ["j", "J"], ["k", "K", "\u0142"], ["l", "L", "\u0141"], ["\u010d", "\u010c"], ["\u0107", "\u0106", "\u00df"], ["\u017e", "\u017d", "\u00a4"]],
401
      [["Shift", "Shift"], ["<", ">"], ["y", "Y"], ["x", "X"], ["c", "C"], ["v", "V", "@"], ["b", "B", "{",], ["n", "N", "}"], ["m", "M", "\u00a7"], [",", ";", "<"], [".", ":", ">"], ["-", "_", "\u00a9"], ["Shift", "Shift"]],
402
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
403
    ];
404
 
405
    this.VKI_layout.Slovak = [ // Slovak Keyboard
406
     [[";", "\u00b0"], ["+", "1", "~"], ["\u013E", "2", "\u02C7"], ["\u0161", "3", "\u005E"], ["\u010D", "4", "\u02D8"], ["\u0165", "5", "\u00B0"], ["\u017E", "6", "\u02DB"], ["\u00FD", "7", "\u0060"], ["\u00E1", "8", "\u02D9"], ["\u00ED", "9", "\u00B4"], ["\u00E9", "0", "\u02DD"], ["=", "%", "\u00A8"], ["\u00B4", "\u02c7", "\u00B8"], ["Bksp", "Bksp"]],
407
     [["Tab", "Tab"], ["q", "Q","\u005C"], ["w", "W","\u007C"], ["e", "E", "\u20AC"], ["r", "R"], ["t", "T"], ["z", "Z"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P","\u0027"], ["\u00FA", "/", "\u00F7"], ["\u00E4", "(", "\u00D7"], ["Enter", "Enter"]],
408
     [["Caps", "Caps"], ["a", "A"], ["s", "S","\u0111"], ["d", "D","\u0110"], ["f", "F","\u005B"], ["g", "G","\u005D"], ["h", "H"], ["j", "J"], ["k", "K","\u0142"], ["l", "L","\u0141"], ["\u00F4", '"', "\u0024"], ["\u00A7", "!", "\u00DF",], ["\u0148", ")","\u00A4"]],
409
     [["Shift", "Shift"], ["&", "*", "\u003C"], ["y", "Y","\u003E"], ["x", "X","\u0023"], ["c", "C","\u0026"], ["v", "V","\u0040"], ["b", "B","\u007B"], ["n", "N","\u007D"], ["m", "M"], [",", "?", "<"], [".", ":", ">"], ["-", "_", "\u002A", ], ["Shift", "Shift"]],
410
     [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
411
    ];
412
 
1013 bpr 413
    this.VKI_layout.Slovenian = [ // Slovenian Standard Keyboard
414
      [["\u00a8", "\u00a8", "\u00b8"], ["1", "!", "~"], ["2", '"', "\u02c7"], ["3", "#", "^"], ["4", "$", "\u02d8"], ["5", "%", "\u00b0"], ["6", "&", "\u02db"], ["7", "/", "\u0060"], ["8", "(", "\u00B7"], ["9", ")", "\u00b4"], ["0", "=", "\u2033"], ["'", "?", "\u00a8"], ["+", "*", "\u00b8"], ["Bksp", "Bksp"]],
415
      [["Tab", "Tab"], ["q", "Q", "\\"], ["w", "W","|"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["z", "Z"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u0161", "\u0160", "\u00f7"], ["\u0111", "\u0110", "\u00d7"], ["Enter", "Enter"]],
416
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F", "["], ["g", "G", "]"], ["h", "H"], ["j", "J"], ["k", "K", "\u0142"], ["l", "L", "\u0141"], ["\u010D", "\u010C"], ["\u0107", "\u0106", "\u00df"], ["\u017E", "\u017D", "\u00a4"]],
417
      [["Shift", "Shift"], ["<", ">"], ["y", "Y"], ["x", "X"], ["c", "C"], ["v", "V", "@"], ["b", "B", "{",], ["n", "N", "}"], ["m", "M", "\u00a7"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
418
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
419
    ];
420
 
3131 bpr 421
    this.VKI_layout["Spanish Es"] = [ // Spanish (Spain) Standard Keyboard
1013 bpr 422
      [["\u00ba", "\u00aa", "\\"], ["1", "!", "|"], ["2", '"', "@"], ["3", "'", "#"], ["4", "$", "~"], ["5", "%", "\u20ac"], ["6", "&","\u00ac"], ["7", "/"], ["8", "("], ["9", ")"], ["0", "="], ["'", "?"], ["\u00a1", "\u00bf"], ["Bksp", "Bksp"]],
423
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u0060", "^", "["], ["\u002b", "\u002a", "]"], ["Enter", "Enter"]],
424
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00f1", "\u00d1"], ["\u00b4", "\u00a8", "{"], ["\u00e7", "\u00c7", "}"]],
425
      [["Shift", "Shift"], ["<", ">"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
426
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
427
    ];
428
 
429
    this.VKI_layout.Swedish = [ // Swedish Standard Keyboard
430
      [["\u00a7", "\u00bd"], ["1", "!"], ["2", '"', "@"], ["3", "#", "\u00a3"], ["4", "\u00a4", "$"], ["5", "%", "\u20ac"], ["6", "&"], ["7", "/", "{"], ["8", "(", "["], ["9", ")", "]"], ["0", "=", "}"], ["+", "?", "\\"], ["\u00b4", "`"], ["Bksp", "Bksp"]],
431
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["\u00e5", "\u00c5"], ["\u00a8", "^", "~"], ["Enter", "Enter"]],
432
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u00f6", "\u00d6"], ["\u00e4", "\u00c4"], ["'", "*"]],
433
      [["Shift", "Shift"], ["<", ">", "|"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M", "\u03bc", "\u039c"], [",", ";"], [".", ":"], ["-", "_"], ["Shift", "Shift"]],
434
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
435
    ];
436
 
437
    this.VKI_layout["Turkish-F"] = [ // Turkish F Keyboard Layout
438
      [['+', "*", "\u00ac"], ["1", "!", "\u00b9", "\u00a1"], ["2", '"', "\u00b2"], ["3", "^", "#", "\u00b3"], ["4", "$", "\u00bc", "\u00a4"], ["5", "%", "\u00bd"], ["6", "&", "\u00be"], ["7", "'", "{"], ["8", "(", '['], ["9", ")", ']'], ["0", "=", "}"], ["/", "?", "\\", "\u00bf"], ["-", "_", "|"], ["Bksp", "Bksp"]],
439
      [["Tab", "Tab"], ["f", "F", "@"], ["g", "G"], ["\u011f", "\u011e"], ["\u0131", "\u0049", "\u00b6", "\u00ae"], ["o", "O"], ["d", "D", "\u00a5"], ["r", "R"], ["n", "N"], ["h", "H", "\u00f8", "\u00d8"], ["p", "P", "\u00a3"], ["q", "Q", "\u00a8"], ["w", "W", "~"], ["Enter", "Enter"]],
440
      [["Caps", "Caps"], ["u", "U", "\u00e6", "\u00c6"], ["i", "\u0130", "\u00df", "\u00a7"], ["e", "E", "\u20ac"], ["a", "A", " ", "\u00aa"], ["\u00fc", "\u00dc"], ["t", "T"], ["k", "K"], ["m", "M"], ["l", "L"], ["y", "Y", "\u00b4"], ["\u015f", "\u015e"], ["x", "X", "`"]],
441
      [["Shift", "Shift"], ["<", ">", "|", "\u00a6"], ["j", "J", "\u00ab", "<"], ["\u00f6", "\u00d6", "\u00bb", ">"], ["v", "V", "\u00a2", "\u00a9"], ["c", "C"], ["\u00e7", "\u00c7"], ["z", "Z"], ["s", "S", "\u00b5", "\u00ba"], ["b", "B", "\u00d7"], [".", ":", "\u00f7"], [",", ";", "-"], ["Shift", "Shift"]],
442
      [[" ", " ", " ", " "],  ["AltGr", "AltGr"]]
443
    ];
444
 
445
    this.VKI_layout["Turkish-Q"] = [ // Turkish Q Keyboard Layout
446
      [['"', "\u00e9", "<"], ["1", "!", ">"], ["2", "'", "\u00a3"], ["3", "^", "#"], ["4", "+", "$"], ["5", "%", "\u00bd"], ["6", "&"], ["7", "/", "{"], ["8", "(", '['], ["9", ")", ']'], ["0", "=", "}"], ["*", "?", "\\"], ["-", "_", "|"], ["Bksp", "Bksp"]],
447
      [["Tab", "Tab"], ["q", "Q", "@"], ["w", "W"], ["e", "E", "\u20ac"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["\u0131", "\u0049", "\u0069", "\u0130"], ["o", "O"], ["p", "P"], ["\u011f", "\u011e", "\u00a8"], ["\u00fc", "\u00dc", "~"], ["Enter", "Enter"]],
448
      [["Caps", "Caps"], ["a", "A", "\u00e6", "\u00c6"], ["s", "S", "\u00df"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], ["\u015f", "\u015e", "\u00b4"], ["\u0069", "\u0130"], [",", ";", "`"]],
449
      [["Shift", "Shift"], ["<", ">", "|"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], ["\u00f6", "\u00d6"], ["\u00e7", "\u00c7"], [".", ":"], ["Shift", "Shift"]],
450
      [[" ", " ", " ", " "],  ["AltGr", "AltGr"]]
451
    ];
452
 
453
    this.VKI_layout.UK = [ // UK Standard Keyboard
454
      [["`", "\u00ac", "\u00a6"], ["1", "!"], ["2", '"'], ["3", "\u00a3"], ["4", "$", "\u20ac"], ["5", "%"], ["6", "^"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
455
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E", "\u00e9", "\u00c9"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U", "\u00fa", "\u00da"], ["i", "I", "\u00ed", "\u00cd"], ["o", "O", "\u00f3", "\u00d3"], ["p", "P"], ["[", "{"], ["]", "}"], ["Enter", "Enter"]],
456
      [["Caps", "Caps"], ["a", "A", "\u00e1", "\u00c1"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], [";", ":"], ["'", "@"], ["#", "~"]],
457
      [["Shift", "Shift"], ["\\", "|"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", "<"], [".", ">"], ["/", "?"], ["Shift", "Shift"]],
458
      [[" ", " ", " ", " "], ["AltGr", "AltGr"]]
459
    ];
460
 
3131 bpr 461
    this.VKI_layout.Ukrainian = [ // Ukrainian Standard Keyboard
462
      [["\u00b4", "~"], ["1", "!"], ["2", '"'], ["3", "\u2116"], ["4", ";"], ["5", "%"], ["6", ":"], ["7", "?"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
463
      [["Tab", "Tab"], ["\u0439", "\u0419"], ["\u0446", "\u0426"], ["\u0443", "\u0423"], ["\u043A", "\u041A"], ["\u0435", "\u0415"], ["\u043D", "\u041D"], ["\u0433", "\u0413"], ["\u0448", "\u0428"], ["\u0449", "\u0429"], ["\u0437", "\u0417"], ["\u0445", "\u0425"], ["\u0457", "\u0407"], ["\u0491", "\u0490"]],
464
      [["Caps", "Caps"], ["\u0444", "\u0424"], ["\u0456", "\u0406"], ["\u0432", "\u0412"], ["\u0430", "\u0410"], ["\u043F", "\u041F"], ["\u0440", "\u0420"], ["\u043E", "\u041E"], ["\u043B", "\u041B"], ["\u0434", "\u0414"], ["\u0436", "\u0416"], ["\u0454", "\u0404"], ["Enter", "Enter"]],
465
      [["Shift", "Shift"], ["\u044F", "\u042F"], ["\u0447", "\u0427"], ["\u0441", "\u0421"], ["\u043C", "\u041C"], ["\u0438", "\u0418"], ["\u0442", "\u0422"], ["\u044C", "\u042C"], ["\u0431", "\u0411"], ["\u044E", "\u042E"], [".", ","], ["Shift", "Shift"]],
466
      [[" ", " "]]
467
    ];
468
 
1013 bpr 469
    this.VKI_layout.US = [ // US Standard Keyboard
470
      [["`", "~"], ["1", "!"], ["2", "@"], ["3", "#"], ["4", "$"], ["5", "%"], ["6", "^"], ["7", "&"], ["8", "*"], ["9", "("], ["0", ")"], ["-", "_"], ["=", "+"], ["Bksp", "Bksp"]],
471
      [["Tab", "Tab"], ["q", "Q"], ["w", "W"], ["e", "E"], ["r", "R"], ["t", "T"], ["y", "Y"], ["u", "U"], ["i", "I"], ["o", "O"], ["p", "P"], ["[", "{"], ["]", "}"], ["\\", "|"]],
472
      [["Caps", "Caps"], ["a", "A"], ["s", "S"], ["d", "D"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L"], [";", ":"], ["'", '"'], ["Enter", "Enter"]],
473
      [["Shift", "Shift"], ["z", "Z"], ["x", "X"], ["c", "C"], ["v", "V"], ["b", "B"], ["n", "N"], ["m", "M"], [",", "<"], [".", ">"], ["/", "?"], ["Shift", "Shift"]],
474
      [[" ", " "]]
475
    ];
476
 
477
    this.VKI_layout["US Int'l"] = [ // US International Keyboard
478
      [["`", "~"], ["1", "!", "\u00a1", "\u00b9"], ["2", "@", "\u00b2"], ["3", "#", "\u00b3"], ["4", "$", "\u00a4", "\u00a3"], ["5", "%", "\u20ac"], ["6", "^", "\u00bc"], ["7", "&", "\u00bd"], ["8", "*", "\u00be"], ["9", "(", "\u2018"], ["0", ")", "\u2019"], ["-", "_", "\u00a5"], ["=", "+", "\u00d7", "\u00f7"], ["Bksp", "Bksp"]],
479
      [["Tab", "Tab"], ["q", "Q", "\u00e4", "\u00c4"], ["w", "W", "\u00e5", "\u00c5"], ["e", "E", "\u00e9", "\u00c9"], ["r", "R", "\u00ae"], ["t", "T", "\u00fe", "\u00de"], ["y", "Y", "\u00fc", "\u00dc"], ["u", "U", "\u00fa", "\u00da"], ["i", "I", "\u00ed", "\u00cd"], ["o", "O", "\u00f3", "\u00d3"], ["p", "P", "\u00f6", "\u00d6"], ["[", "{", "\u00ab"], ["]", "}", "\u00bb"], ["\\", "|", "\u00ac", "\u00a6"]],
480
      [["Caps", "Caps"], ["a", "A", "\u00e1", "\u00c1"], ["s", "S", "\u00df", "\u00a7"], ["d", "D", "\u00f0", "\u00d0"], ["f", "F"], ["g", "G"], ["h", "H"], ["j", "J"], ["k", "K"], ["l", "L", "\u00f8", "\u00d8"], [";", ":", "\u00b6", "\u00b0"], ["'", '"', "\u00b4", "\u00a8"], ["Enter", "Enter"]],
481
      [["Shift", "Shift"], ["z", "Z", "\u00e6", "\u00c6"], ["x", "X"], ["c", "C", "\u00a9", "\u00a2"], ["v", "V"], ["b", "B"], ["n", "N", "\u00f1", "\u00d1"], ["m", "M", "\u00b5"], [",", "<", "\u00e7", "\u00c7"], [".", ">"], ["/", "?", "\u00bf"], ["Shift", "Shift"]],
482
      [[" ", " ", " ", " "], ["Alt", "Alt"]]
483
    ];
484
 
3131 bpr 485
 
1013 bpr 486
    /* ***** Define Dead Keys ************************************** */
487
    this.VKI_deadkey = {};
488
 
489
    // - Lay out each dead key set in one row of sub-arrays.  The rows
490
    //   below are wrapped so uppercase letters are below their
491
    //   lowercase equivalents.
492
    //
493
    // - The first letter in each sub-array is the letter pressed after
494
    //   the diacritic.  The second letter is the letter this key-combo
495
    //   will generate.
496
    //
497
    // - Note that if you have created a new keyboard layout and want
498
    //   it included in the distributed script, PLEASE TELL ME if you
499
    //   have added additional dead keys to the ones below.
500
 
501
    this.VKI_deadkey['"'] = this.VKI_deadkey['\u00a8'] = [ // Umlaut / Diaeresis / Greek Dialytika
3131 bpr 502
      ["a", "\u00e4"], ["e", "\u00eb"], ["i", "\u00ef"], ["o", "\u00f6"], ["u", "\u00fc"], ["y", "\u00ff"], ["\u03b9", "\u03ca"], ["\u03c5", "\u03cb"], ["\u016B", "\u01D6"], ["\u00FA", "\u01D8"], ["\u01D4", "\u01DA"], ["\u00F9", "\u01DC"],
503
      ["A", "\u00c4"], ["E", "\u00cb"], ["I", "\u00cf"], ["O", "\u00d6"], ["U", "\u00dc"], ["Y", "\u0178"], ["\u0399", "\u03aa"], ["\u03a5", "\u03ab"], ["\u016A", "\u01D5"], ["\u00DA", "\u01D7"], ["\u01D3", "\u01D9"], ["\u00D9", "\u01DB"]
1013 bpr 504
    ];
3131 bpr 505
    this.VKI_deadkey['~'] = [ // Tilde / Stroke
506
      ["a", "\u00e3"], ["l", "\u0142"], ["n", "\u00f1"], ["o", "\u00f5"],
507
      ["A", "\u00c3"], ["L", "\u0141"], ["N", "\u00d1"], ["O", "\u00d5"]
1013 bpr 508
    ];
509
    this.VKI_deadkey['^'] = [ // Circumflex
510
      ["a", "\u00e2"], ["e", "\u00ea"], ["i", "\u00ee"], ["o", "\u00f4"], ["u", "\u00fb"], ["w", "\u0175"], ["y", "\u0177"],
511
      ["A", "\u00c2"], ["E", "\u00ca"], ["I", "\u00ce"], ["O", "\u00d4"], ["U", "\u00db"], ["W", "\u0174"], ["Y", "\u0176"]
512
    ];
513
    this.VKI_deadkey['\u02c7'] = [ // Baltic caron
3131 bpr 514
      ["c", "\u010D"], ["d", "\u010f"], ["e", "\u011b"], ["s", "\u0161"], ["l", "\u013e"], ["n", "\u0148"], ["r", "\u0159"], ["t", "\u0165"], ["u", "\u01d4"], ["z", "\u017E"], ["\u00fc", "\u01da"],
515
      ["C", "\u010C"], ["D", "\u010e"], ["E", "\u011a"], ["S", "\u0160"], ["L", "\u013d"], ["N", "\u0147"], ["R", "\u0158"], ["T", "\u0164"], ["U", "\u01d3"], ["Z", "\u017D"], ["\u00dc", "\u01d9"]
1013 bpr 516
    ];
517
    this.VKI_deadkey['\u02d8'] = [ // Romanian and Turkish breve
518
      ["a", "\u0103"], ["g", "\u011f"],
519
      ["A", "\u0102"], ["G", "\u011e"]
520
    ];
3131 bpr 521
    this.VKI_deadkey['-'] = this.VKI_deadkey['\u00af'] = [ // Macron
522
      ["a", "\u0101"], ["e", "\u0113"], ["i", "\u012b"], ["o", "\u014d"], ["u", "\u016B"], ["y", "\u0233"], ["\u00fc", "\u01d6"],
523
      ["A", "\u0100"], ["E", "\u0112"], ["I", "\u012a"], ["O", "\u014c"], ["U", "\u016A"], ["Y", "\u0232"], ["\u00dc", "\u01d5"]
524
    ];
1013 bpr 525
    this.VKI_deadkey['`'] = [ // Grave
3131 bpr 526
      ["a", "\u00e0"], ["e", "\u00e8"], ["i", "\u00ec"], ["o", "\u00f2"], ["u", "\u00f9"], ["\u00fc", "\u01dc"],
527
      ["A", "\u00c0"], ["E", "\u00c8"], ["I", "\u00cc"], ["O", "\u00d2"], ["U", "\u00d9"], ["\u00dc", "\u01db"]
1013 bpr 528
    ];
529
    this.VKI_deadkey["'"] = this.VKI_deadkey['\u00b4'] = this.VKI_deadkey['\u0384'] = [ // Acute / Greek Tonos
3131 bpr 530
      ["a", "\u00e1"], ["e", "\u00e9"], ["i", "\u00ed"], ["o", "\u00f3"], ["u", "\u00fa"], ["y", "\u00fd"], ["\u03b1", "\u03ac"], ["\u03b5", "\u03ad"], ["\u03b7", "\u03ae"], ["\u03b9", "\u03af"], ["\u03bf", "\u03cc"], ["\u03c5", "\u03cd"], ["\u03c9", "\u03ce"], ["\u00fc", "\u01d8"],
531
      ["A", "\u00c1"], ["E", "\u00c9"], ["I", "\u00cd"], ["O", "\u00d3"], ["U", "\u00da"], ["Y", "\u00dd"], ["\u0391", "\u0386"], ["\u0395", "\u0388"], ["\u0397", "\u0389"], ["\u0399", "\u038a"], ["\u039f", "\u038c"], ["\u03a5", "\u038e"], ["\u03a9", "\u038f"], ["\u00dc", "\u01d7"]
1013 bpr 532
    ];
533
    this.VKI_deadkey['\u02dd'] = [ // Hungarian Double Acute Accent
534
      ["o", "\u0151"], ["u", "\u0171"],
535
      ["O", "\u0150"], ["U", "\u0170"]
536
    ];
537
    this.VKI_deadkey['\u0385'] = [ // Greek Dialytika + Tonos
538
      ["\u03b9", "\u0390"], ["\u03c5", "\u03b0"]
539
    ];
540
    this.VKI_deadkey['\u00b0'] = this.VKI_deadkey['\u00ba'] = [ // Ring
541
      ["a", "\u00e5"], ["u", "\u016f"],
542
      ["A", "\u00c5"], ["U", "\u016e"]
543
    ];
544
    this.VKI_deadkey['\u02DB'] = [ // Ogonek
545
      ["a", "\u0106"], ["e", "\u0119"], ["i", "\u012f"], ["o", "\u01eb"], ["u", "\u0173"], ["y", "\u0177"],
546
      ["A", "\u0105"], ["E", "\u0118"], ["I", "\u012e"], ["O", "\u01ea"], ["U", "\u0172"], ["Y", "\u0176"]
547
    ];
548
    this.VKI_deadkey['\u02D9'] = [ // Dot-above
549
      ["c", "\u010B"], ["e", "\u0117"], ["g", "\u0121"], ["z", "\u017C"],
550
      ["C", "\u010A"], ["E", "\u0116"], ["G", "\u0120"], ["Z", "\u017B"]
551
    ];
1220 bpr 552
    this.VKI_deadkey['\u00B8'] = this.VKI_deadkey['\u201a'] = [ // Cedilla
1013 bpr 553
      ["c", "\u00e7"], ["s", "\u015F"],
554
      ["C", "\u00c7"], ["S", "\u015E"]
555
    ];
556
    this.VKI_deadkey[','] = [ // Comma
557
      ["s", (this.VKI_isIElt8) ? "\u015F" : "\u0219"], ["t", (this.VKI_isIElt8) ? "\u0163" : "\u021B"],
558
      ["S", (this.VKI_isIElt8) ? "\u015E" : "\u0218"], ["T", (this.VKI_isIElt8) ? "\u0162" : "\u021A"]
559
    ];
560
 
561
 
3131 bpr 562
    /* ***** Define Symbols **************************************** */
563
    this.VKI_symbol = {
564
      '\u200c': "ZW\r\nNJ", '\u200d': "ZW\r\nJ"
565
    };
1013 bpr 566
 
3131 bpr 567
 
568
 
1013 bpr 569
    /* ****************************************************************
570
     * Attach the keyboard to an element
571
     *
572
     */
573
    this.VKI_attachKeyboard = VKI_attach = function(elem) {
574
      if (elem.VKI_attached) return false;
575
      var keybut = document.createElement('img');
576
          keybut.src = "scripts/js/keyboard/keyboard.png";
577
          keybut.alt = "Keyboard interface";
578
          keybut.className = "keyboardInputInitiator";
579
          keybut.title = "Display graphical keyboard interface";
580
          keybut.elem = elem;
581
          keybut.onclick = function() { self.VKI_show(this.elem); };
582
      elem.VKI_attached = true;
1220 bpr 583
      elem.parentNode.insertBefore(keybut, (elem.dir == "rtl") ? elem : elem.nextSibling);
1013 bpr 584
      if (this.VKI_isIE) {
585
        elem.onclick = elem.onselect = elem.onkeyup = function(e) {
586
          if ((e || event).type != "keyup" || !this.readOnly)
587
            this.range = document.selection.createRange();
588
        };
589
      }
590
    };
591
 
592
 
593
    /* ***** Find tagged input & textarea elements ***************** */
594
    var inputElems = [
595
      document.getElementsByTagName('input'),
596
      document.getElementsByTagName('textarea')
597
    ];
598
    for (var x = 0, elem; elem = inputElems[x++];)
599
      for (var y = 0, ex; ex = elem[y++];)
600
        if ((ex.nodeName == "TEXTAREA" || ex.type == "text" || ex.type == "password") && ex.className.indexOf("keyboardInput") > -1)
601
          this.VKI_attachKeyboard(ex);
602
 
603
 
604
    /* ***** Build the keyboard interface ************************** */
605
    this.VKI_keyboard = document.createElement('table');
606
    this.VKI_keyboard.id = "keyboardInputMaster";
607
    this.VKI_keyboard.dir = "ltr";
608
    this.VKI_keyboard.cellSpacing = this.VKI_keyboard.border = "0";
609
 
610
    var thead = document.createElement('thead');
611
      var tr = document.createElement('tr');
612
        var th = document.createElement('th');
613
          var kblist = document.createElement('select');
614
            for (ktype in this.VKI_layout) {
615
              if (typeof this.VKI_layout[ktype] == "object") {
616
                var opt = document.createElement('option');
617
                    opt.value = ktype;
618
                    opt.appendChild(document.createTextNode(ktype));
619
                  kblist.appendChild(opt);
620
              }
621
            }
622
            if (kblist.options.length) {
623
                kblist.value = this.VKI_kt;
624
                kblist.onchange = function() {
625
                  self.VKI_kt = this.value;
626
                  self.VKI_buildKeys();
627
                  self.VKI_position();
628
                };
629
              th.appendChild(kblist);
630
            }
631
 
632
            var label = document.createElement('label');
633
              var checkbox = document.createElement('input');
634
                  checkbox.type = "checkbox";
635
                  checkbox.title = "Dead keys: " + ((this.VKI_deadkeysOn) ? "On" : "Off");
636
                  checkbox.defaultChecked = this.VKI_deadkeysOn;
637
                  checkbox.onclick = function() {
638
                    self.VKI_deadkeysOn = this.checked;
639
                    this.title = "Dead keys: " + ((this.checked) ? "On" : "Off");
640
                    self.VKI_modify("");
641
                    return true;
642
                  };
643
                label.appendChild(this.VKI_deadkeysElem = checkbox);
644
                  checkbox.checked = this.VKI_deadkeysOn;
645
            th.appendChild(label);
646
          tr.appendChild(th);
647
 
648
        var td = document.createElement('td');
3131 bpr 649
          if (this.VKI_switcher) {
650
            var switcher = document.createElement('span');
651
                switcher.id = "keyboardInputSwitch";
652
                switcher.appendChild(document.createTextNode("\u21d1"));
653
                switcher.title = "Switch keyboard position";
654
                switcher.onmousedown = function() { this.className = "pressed"; };
655
                switcher.onmouseup = function() { this.className = ""; };
656
                switcher.onclick = function() {
657
                  self.VKI_position(self.VKI_above ^= 1);
658
                  this.firstChild.nodeValue = (self.VKI_above) ? "\u21d3" : "\u21d1";
659
                  return false;
660
                };
661
              td.appendChild(switcher);
662
          }
663
 
1013 bpr 664
          var clearer = document.createElement('span');
665
              clearer.id = "keyboardInputClear";
666
              clearer.appendChild(document.createTextNode("Clear"));
667
              clearer.title = "Clear this input";
668
              clearer.onmousedown = function() { this.className = "pressed"; };
669
              clearer.onmouseup = function() { this.className = ""; };
670
              clearer.onclick = function() {
671
                self.VKI_target.value = "";
672
                self.VKI_target.focus();
673
                return false;
674
              };
675
            td.appendChild(clearer);
676
 
677
          var closer = document.createElement('span');
678
              closer.id = "keyboardInputClose";
679
              closer.appendChild(document.createTextNode('X'));
680
              closer.title = "Close this window";
681
              closer.onmousedown = function() { this.className = "pressed"; };
682
              closer.onmouseup = function() { this.className = ""; };
683
              closer.onclick = function() { self.VKI_close(); };
684
            td.appendChild(closer);
685
 
686
          tr.appendChild(td);
687
        thead.appendChild(tr);
688
    this.VKI_keyboard.appendChild(thead);
689
 
690
    var tbody = document.createElement('tbody');
691
      var tr = document.createElement('tr');
692
        var td = document.createElement('td');
693
            td.colSpan = "2";
694
          var div = document.createElement('div');
695
              div.id = "keyboardInputLayout";
696
            td.appendChild(div);
697
          if (this.VKI_showVersion) {
698
            var div = document.createElement('div');
699
              var ver = document.createElement('var');
700
                  ver.appendChild(document.createTextNode("v" + this.VKI_version));
701
                div.appendChild(ver);
702
              td.appendChild(div);
703
          }
704
          tr.appendChild(td);
705
        tbody.appendChild(tr);
1220 bpr 706
    this.VKI_keyboard.appendChild(tbody);
1013 bpr 707
 
708
    if (this.VKI_isIE6) {
709
      this.VKI_iframe = document.createElement('iframe');
710
      this.VKI_iframe.style.position = "absolute";
711
      this.VKI_iframe.style.border = "0px none";
712
      this.VKI_iframe.style.filter = "mask()";
713
      this.VKI_iframe.style.zIndex = "999999";
1220 bpr 714
      this.VKI_iframe.src = this.VKI_imageURI;
1013 bpr 715
    }
716
 
717
 
718
    /* ****************************************************************
719
     * Build or rebuild the keyboard keys
720
     *
721
     */
722
    this.VKI_buildKeys = function() {
3131 bpr 723
      this.VKI_shift = this.VKI_shiftlock = this.VKI_altgr = this.VKI_altgrlock = this.VKI_dead = false;
724
      this.VKI_deadkeysOn = (this.VKI_layout[this.VKI_kt].DDK) ? false : this.VKI_keyboard.getElementsByTagName('label')[0].getElementsByTagName('input')[0].checked;
1013 bpr 725
 
726
      var container = this.VKI_keyboard.tBodies[0].getElementsByTagName('div')[0];
727
      while (container.firstChild) container.removeChild(container.firstChild);
728
 
729
      for (var x = 0, hasDeadKey = false, lyt; lyt = this.VKI_layout[this.VKI_kt][x++];) {
730
        var table = document.createElement('table');
731
            table.cellSpacing = table.border = "0";
732
        if (lyt.length <= this.VKI_keyCenter) table.className = "keyboardInputCenter";
733
          var tbody = document.createElement('tbody');
734
            var tr = document.createElement('tr');
735
            for (var y = 0, lkey; lkey = lyt[y++];) {
736
              var td = document.createElement('td');
3131 bpr 737
                if (this.VKI_symbol[lkey[0]]) {
738
                  var span = document.createElement('span');
739
                      span.className = lkey[0];
740
                      span.appendChild(document.createTextNode(this.VKI_symbol[lkey[0]]));
741
                    td.appendChild(span);
742
                } else td.appendChild(document.createTextNode(lkey[0] || "\xa0"));
1013 bpr 743
 
744
                var className = [];
745
                if (this.VKI_deadkeysOn)
746
                  for (key in this.VKI_deadkey)
747
                    if (key === lkey[0]) { className.push("alive"); break; }
748
                if (lyt.length > this.VKI_keyCenter && y == lyt.length) className.push("last");
749
                if (lkey[0] == " ") className.push("space");
750
                  td.className = className.join(" ");
751
 
752
                  td.VKI_clickless = 0;
753
                  if (!td.click) {
754
                    td.click = function() {
1220 bpr 755
                      var evt = this.ownerDocument.createEvent('MouseEvents');
756
                      evt.initMouseEvent('click', true, true, this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
757
                      this.dispatchEvent(evt);
1013 bpr 758
                    };
759
                  }
760
                  td.onmouseover = function() {
761
                    if (self.VKI_clickless) {
762
                      var _self = this;
763
                      clearTimeout(this.VKI_clickless);
3131 bpr 764
                      this.VKI_clickless = setTimeout(function() { _self.click(); }, self.VKI_clickless);
1013 bpr 765
                    }
3131 bpr 766
                    if ((this.firstChild.nodeValue || this.firstChild.className) != "\xa0") this.className += " hover";
1013 bpr 767
                  };
768
                  td.onmouseout = function() {
769
                    if (self.VKI_clickless) clearTimeout(this.VKI_clickless);
770
                    this.className = this.className.replace(/ ?(hover|pressed)/g, "");
771
                  };
772
                  td.onmousedown = function() {
773
                    if (self.VKI_clickless) clearTimeout(this.VKI_clickless);
3131 bpr 774
                    if ((this.firstChild.nodeValue || this.firstChild.className) != "\xa0") this.className += " pressed";
1013 bpr 775
                  };
776
                  td.onmouseup = function() {
777
                    if (self.VKI_clickless) clearTimeout(this.VKI_clickless);
778
                    this.className = this.className.replace(/ ?pressed/g, "");
779
                  };
780
                  td.ondblclick = function() { return false; };
781
 
782
                switch (lkey[1]) {
3131 bpr 783
                  case "Caps": case "Shift":
784
                  case "Alt": case "AltGr": case "AltLk":
1013 bpr 785
                    td.onclick = (function(type) { return function() { self.VKI_modify(type); return false; }; })(lkey[1]);
786
                    break;
787
                  case "Tab":
788
                    td.onclick = function() { self.VKI_insert("\t"); return false; };
789
                    break;
790
                  case "Bksp":
791
                    td.onclick = function() {
792
                      self.VKI_target.focus();
793
                      if (self.VKI_target.setSelectionRange) {
794
                        if (self.VKI_target.readOnly && self.VKI_isWebKit) {
795
                          var rng = [self.VKI_target.selStart || 0, self.VKI_target.selEnd || 0];
796
                        } else var rng = [self.VKI_target.selectionStart, self.VKI_target.selectionEnd];
797
                        if (rng[0] < rng[1]) rng[0]++;
798
                        self.VKI_target.value = self.VKI_target.value.substr(0, rng[0] - 1) + self.VKI_target.value.substr(rng[1]);
799
                        self.VKI_target.setSelectionRange(rng[0] - 1, rng[0] - 1);
800
                        if (self.VKI_target.readOnly && self.VKI_isWebKit) {
801
                          var range = window.getSelection().getRangeAt(0);
802
                          self.VKI_target.selStart = range.startOffset;
803
                          self.VKI_target.selEnd = range.endOffset;
804
                        }
805
                      } else if (self.VKI_target.createTextRange) {
1220 bpr 806
                        try {
1013 bpr 807
                          self.VKI_target.range.select();
808
                        } catch(e) { self.VKI_target.range = document.selection.createRange(); }
809
                        if (!self.VKI_target.range.text.length) self.VKI_target.range.moveStart('character', -1);
810
                        self.VKI_target.range.text = "";
811
                      } else self.VKI_target.value = self.VKI_target.value.substr(0, self.VKI_target.value.length - 1);
812
                      if (self.VKI_shift) self.VKI_modify("Shift");
3131 bpr 813
                      if (self.VKI_altgr) self.VKI_modify("AltGr");
1013 bpr 814
                      self.VKI_target.focus();
815
                      return true;
816
                    };
817
                    break;
818
                  case "Enter":
819
                    td.onclick = function() {
820
                      if (self.VKI_target.nodeName != "TEXTAREA") {
821
                        self.VKI_close();
822
                        this.className = this.className.replace(/ ?(hover|pressed)/g, "");
823
                      } else self.VKI_insert("\n");
824
                      return true;
825
                    };
826
                    break;
827
                  default:
828
                    td.onclick = function() {
3131 bpr 829
                      var character = this.firstChild.nodeValue || this.firstChild.className;
1013 bpr 830
                      if (self.VKI_deadkeysOn && self.VKI_dead) {
3131 bpr 831
                        if (self.VKI_dead != character) {
1013 bpr 832
                          for (key in self.VKI_deadkey) {
833
                            if (key == self.VKI_dead) {
3131 bpr 834
                              if (character != " ") {
1013 bpr 835
                                for (var z = 0, rezzed = false, dk; dk = self.VKI_deadkey[key][z++];) {
3131 bpr 836
                                  if (dk[0] == character) {
1013 bpr 837
                                    self.VKI_insert(dk[1]);
838
                                    rezzed = true;
839
                                    break;
840
                                  }
841
                                }
842
                              } else {
843
                                self.VKI_insert(self.VKI_dead);
844
                                rezzed = true;
845
                              } break;
846
                            }
847
                          }
848
                        } else rezzed = true;
849
                      } self.VKI_dead = false;
850
 
3131 bpr 851
                      if (!rezzed && character != "\xa0") {
1013 bpr 852
                        if (self.VKI_deadkeysOn) {
853
                          for (key in self.VKI_deadkey) {
3131 bpr 854
                            if (key == character) {
1013 bpr 855
                              self.VKI_dead = key;
856
                              this.className += " dead";
857
                              if (self.VKI_shift) self.VKI_modify("Shift");
3131 bpr 858
                              if (self.VKI_altgr) self.VKI_modify("AltGr");
1013 bpr 859
                              break;
860
                            }
861
                          }
3131 bpr 862
                          if (!self.VKI_dead) self.VKI_insert(character);
863
                        } else self.VKI_insert(character);
1013 bpr 864
                      }
865
 
866
                      self.VKI_modify("");
867
                      return false;
868
                    };
869
 
870
                }
871
                tr.appendChild(td);
872
              tbody.appendChild(tr);
873
            table.appendChild(tbody);
874
 
875
            for (var z = 0; z < 4; z++)
876
              if (this.VKI_deadkey[lkey[z] = lkey[z] || "\xa0"]) hasDeadKey = true;
877
        }
878
        container.appendChild(table);
879
      }
3131 bpr 880
      this.VKI_deadkeysElem.style.display = (!this.VKI_layout[this.VKI_kt].DDK && hasDeadKey) ? "inline" : "none";
1013 bpr 881
    };
882
 
883
    this.VKI_buildKeys();
884
    VKI_disableSelection(this.VKI_keyboard);
885
 
886
 
887
    /* ****************************************************************
888
     * Controls modifier keys
889
     *
890
     */
891
    this.VKI_modify = function(type) {
892
      switch (type) {
893
        case "Alt":
3131 bpr 894
        case "AltGr": this.VKI_altgr = !this.VKI_altgr; break;
895
        case "AltLk": this.VKI_altgrlock = !this.VKI_altgrlock; break;
896
        case "Caps": this.VKI_shiftlock = !this.VKI_shiftlock; break;
1013 bpr 897
        case "Shift": this.VKI_shift = !this.VKI_shift; break;
898
      } var vchar = 0;
3131 bpr 899
      if (!this.VKI_shift != !this.VKI_shiftlock) vchar += 1;
900
      if (!this.VKI_altgr != !this.VKI_altgrlock) vchar += 2;
1013 bpr 901
 
902
      var tables = this.VKI_keyboard.getElementsByTagName('table');
903
      for (var x = 0; x < tables.length; x++) {
904
        var tds = tables[x].getElementsByTagName('td');
905
        for (var y = 0; y < tds.length; y++) {
3131 bpr 906
          var className = [], lkey = this.VKI_layout[this.VKI_kt][x][y];
1013 bpr 907
 
908
          if (tds[y].className.indexOf('hover') > -1) className.push("hover");
909
 
910
          switch (lkey[1]) {
911
            case "Alt":
912
            case "AltGr":
3131 bpr 913
              if (this.VKI_altgr) className.push("dead");
1013 bpr 914
              break;
3131 bpr 915
            case "AltLk":
916
              if (this.VKI_altgrlock) className.push("dead");
917
              break;
1013 bpr 918
            case "Shift":
919
              if (this.VKI_shift) className.push("dead");
920
              break;
921
            case "Caps":
3131 bpr 922
              if (this.VKI_shiftlock) className.push("dead");
1013 bpr 923
              break;
924
            case "Tab": case "Enter": case "Bksp": break;
925
            default:
3131 bpr 926
              if (type) {
927
                tds[y].removeChild(tds[y].firstChild);
928
                if (this.VKI_symbol[lkey[vchar]]) {
929
                  var span = document.createElement('span');
930
                      span.className = lkey[vchar];
931
                      span.appendChild(document.createTextNode(this.VKI_symbol[lkey[vchar]]));
932
                    tds[y].appendChild(span);
933
                } else tds[y].appendChild(document.createTextNode(lkey[vchar]));
934
              }
1013 bpr 935
              if (this.VKI_deadkeysOn) {
3131 bpr 936
                var character = tds[y].firstChild.nodeValue || tds[y].firstChild.className;
1013 bpr 937
                if (this.VKI_dead) {
3131 bpr 938
                  if (character == this.VKI_dead) className.push("dead");
1013 bpr 939
                  for (var z = 0; z < this.VKI_deadkey[this.VKI_dead].length; z++) {
3131 bpr 940
                    if (character == this.VKI_deadkey[this.VKI_dead][z][0]) {
1013 bpr 941
                      className.push("target");
942
                      break;
943
                    }
944
                  }
945
                }
946
                for (key in this.VKI_deadkey)
3131 bpr 947
                  if (key === character) { className.push("alive"); break; }
1013 bpr 948
              }
949
          }
950
 
951
          if (y == tds.length - 1 && tds.length > this.VKI_keyCenter) className.push("last");
952
          if (lkey[0] == " ") className.push("space");
953
          tds[y].className = className.join(" ");
954
        }
955
      }
956
    };
957
 
958
 
959
    /* ****************************************************************
960
     * Insert text at the cursor
961
     *
962
     */
963
    this.VKI_insert = function(text) {
964
      this.VKI_target.focus();
1220 bpr 965
      if (this.VKI_target.maxLength) this.VKI_target.maxlength = this.VKI_target.maxLength;
966
      if (typeof this.VKI_target.maxlength == "undefined" ||
967
          this.VKI_target.maxlength < 0 ||
968
          this.VKI_target.value.length < this.VKI_target.maxlength) {
1013 bpr 969
        if (this.VKI_target.setSelectionRange) {
970
          if (this.VKI_target.readOnly && this.VKI_isWebKit) {
971
            var rng = [this.VKI_target.selStart || 0, this.VKI_target.selEnd || 0];
972
          } else var rng = [this.VKI_target.selectionStart, this.VKI_target.selectionEnd];
973
          this.VKI_target.value = this.VKI_target.value.substr(0, rng[0]) + text + this.VKI_target.value.substr(rng[1]);
974
          if (text == "\n" && window.opera) rng[0]++;
975
          this.VKI_target.setSelectionRange(rng[0] + text.length, rng[0] + text.length);
976
          if (this.VKI_target.readOnly && this.VKI_isWebKit) {
977
            var range = window.getSelection().getRangeAt(0);
978
            this.VKI_target.selStart = range.startOffset;
979
            this.VKI_target.selEnd = range.endOffset;
980
          }
981
        } else if (this.VKI_target.createTextRange) {
982
          try {
983
            this.VKI_target.range.select();
984
          } catch(e) { this.VKI_target.range = document.selection.createRange(); }
985
          this.VKI_target.range.text = text;
986
          this.VKI_target.range.collapse(true);
987
          this.VKI_target.range.select();
988
        } else this.VKI_target.value += text;
989
        if (this.VKI_shift) this.VKI_modify("Shift");
3131 bpr 990
        if (this.VKI_altgr) this.VKI_modify("AltGr");
1013 bpr 991
        this.VKI_target.focus();
1220 bpr 992
      } else if (this.VKI_target.createTextRange && this.VKI_target.range)
993
        this.VKI_target.range.select();
1013 bpr 994
    };
995
 
996
 
997
    /* ****************************************************************
998
     * Show the keyboard interface
999
     *
1000
     */
1001
    this.VKI_show = function(elem) {
1002
      if (this.VKI_target = elem) {
1003
        if (this.VKI_visible != elem) {
1004
          if (this.VKI_isIE) {
1005
            if (!this.VKI_target.range) {
1006
              this.VKI_target.range = this.VKI_target.createTextRange();
1007
              this.VKI_target.range.moveStart('character', this.VKI_target.value.length);
1008
            } this.VKI_target.range.select();
1009
          }
1010
          try { this.VKI_keyboard.parentNode.removeChild(this.VKI_keyboard); } catch (e) {}
1011
          if (this.VKI_clearPasswords && this.VKI_target.type == "password") this.VKI_target.value = "";
1012
 
1013
          var elem = this.VKI_target;
1014
          this.VKI_target.keyboardPosition = "absolute";
1015
          do {
1016
            if (VKI_getStyle(elem, "position") == "fixed") {
1017
              this.VKI_target.keyboardPosition = "fixed";
1018
              break;
1019
            }
1020
          } while (elem = elem.offsetParent);
1021
 
1022
          if (this.VKI_isIE6) document.body.appendChild(this.VKI_iframe);
1023
          document.body.appendChild(this.VKI_keyboard);
1024
          this.VKI_keyboard.style.top = this.VKI_keyboard.style.right = this.VKI_keyboard.style.bottom = this.VKI_keyboard.style.left = "auto";
1025
          this.VKI_keyboard.style.position = this.VKI_target.keyboardPosition;
1026
 
1027
          this.VKI_visible = this.VKI_target;
1028
          this.VKI_position();
1029
          this.VKI_target.focus();
1030
        } else this.VKI_close();
1031
      }
1032
    };
1033
 
1034
 
1035
    /* ****************************************************************
1036
     * Position the keyboard
1037
     *
1038
     */
3131 bpr 1039
    this.VKI_position = function(above) {
1040
      if (typeof above == "undefined") above = self.VKI_above;
1013 bpr 1041
      if (self.VKI_visible) {
1042
        var inputElemPos = VKI_findPos(self.VKI_target);
3131 bpr 1043
        above = (above) ? -self.VKI_keyboard.offsetHeight - 3 : self.VKI_target.offsetHeight + 3;
1044
        self.VKI_keyboard.style.top = inputElemPos[1] - ((self.VKI_target.keyboardPosition == "fixed" && !self.VKI_isIE && !self.VKI_isMoz) ? VKI_scrollDist()[1] : 0) + above + "px";
1013 bpr 1045
        self.VKI_keyboard.style.left = Math.min(VKI_innerDimensions()[0] - self.VKI_keyboard.offsetWidth - 15, inputElemPos[0]) + "px";
1046
        if (self.VKI_isIE6) {
1047
          self.VKI_iframe.style.width = self.VKI_keyboard.offsetWidth + "px";
1048
          self.VKI_iframe.style.height = self.VKI_keyboard.offsetHeight + "px";
1049
          self.VKI_iframe.style.top = self.VKI_keyboard.style.top;
1050
          self.VKI_iframe.style.left = self.VKI_keyboard.style.left;
1051
        }
1052
      }
1053
    };
1054
 
1055
 
1056
    if (window.addEventListener) {
1220 bpr 1057
      window.addEventListener('resize', this.VKI_position, false);
1013 bpr 1058
    } else if (window.attachEvent)
1059
      window.attachEvent('onresize', this.VKI_position);
1060
 
1061
 
1062
    /* ****************************************************************
1063
     * Close the keyboard interface
1064
     *
1065
     */
1066
    this.VKI_close = VKI_close = function() {
1067
      if (this.VKI_visible) {
1068
        try {
1069
          this.VKI_keyboard.parentNode.removeChild(this.VKI_keyboard);
1070
          if (this.VKI_isIE6) this.VKI_iframe.parentNode.removeChild(this.VKI_iframe);
1071
        } catch (e) {}
1072
        this.VKI_target.focus();
1073
        this.VKI_target = this.VKI_visible = false;
1074
      }
1075
    };
1076
  };
1077
 
1078
  function VKI_findPos(obj) {
1079
    var curleft = curtop = 0;
1080
    do {
1081
      curleft += obj.offsetLeft;
1082
      curtop += obj.offsetTop;
1083
    } while (obj = obj.offsetParent);
1084
    return [curleft, curtop];
1085
  }
1086
 
1087
  function VKI_innerDimensions() {
1088
    if (self.innerHeight) {
1089
      return [self.innerWidth, self.innerHeight];
1090
    } else if (document.documentElement && document.documentElement.clientHeight) {
1091
      return [document.documentElement.clientWidth, document.documentElement.clientHeight];
1092
    } else if (document.body)
1093
      return [document.body.clientWidth, document.body.clientHeight];
1094
    return [0, 0];
1095
  }
1096
 
1097
  function VKI_scrollDist() {
1098
    var html = document.getElementsByTagName('html')[0];
1099
    if (html.scrollTop && document.documentElement.scrollTop) {
1100
      return [html.scrollLeft, html.scrollTop];
1101
    } else if (html.scrollTop || document.documentElement.scrollTop)
1102
      return [html.scrollLeft + document.documentElement.scrollLeft, html.scrollTop + document.documentElement.scrollTop];
1103
    return [0, 0];
1104
  }
1105
 
1106
  function VKI_getStyle(obj, styleProp) {
1107
    if (obj.currentStyle) {
1108
      var y = obj.currentStyle[styleProp];
1109
    } else if (window.getComputedStyle)
1110
      var y = window.getComputedStyle(obj, null)[styleProp];
1111
    return y;
1112
  }
1113
 
1114
  function VKI_disableSelection(elem) {
1115
    elem.onselectstart = function() { return false; };
1116
    elem.unselectable = "on";
1117
    elem.style.MozUserSelect = "none";
1118
    elem.style.cursor = "default";
1119
    if (window.opera) elem.onmousedown = function() { return false; };
1120
  }
1121
 
1122
 
1123
  /* ***** Attach this script to the onload event ****************** */
1124
  if (window.addEventListener) {
1220 bpr 1125
    window.addEventListener('load', VKI_buildKeyboardInputs, false);
1013 bpr 1126
  } else if (window.attachEvent)
3131 bpr 1127
    window.attachEvent('onload', VKI_buildKeyboardInputs);