thai.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Thai keyboard layouts
  2. * contains layout: 'thai-qwerty'
  3. *
  4. * To use:
  5. * Point to this js file into your page header: <script src="layouts/thai.js" type="text/javascript"></script>
  6. * Initialize the keyboard using: $('input').keyboard({ layout: 'thai-qwerty' });
  7. *
  8. * license for this file: WTFPL, unless the source layout site has a problem with me using them as a reference
  9. */
  10. /* based on http://ascii-table.com/keyboard.php/190 */
  11. jQuery.keyboard.layouts['thai-qwerty'] = {
  12. 'name' : 'thai-qwerty',
  13. 'lang' : ['th'],
  14. 'normal' : [
  15. "\u005F \u0E45 \u002F \u002D \u0E20 \u0E16 \u0E38 \u0E36 \u0E04 \u0E05 \u0E08 \u0E02 \u0E0A {bksp}",
  16. "{tab} \u0E46 \u0E44 \u0E33 \u0E1E \u0E30 \u0E31 \u0E35 \u0E23 \u0E19 \u0E22 \u0E1A \u0E25 \u0E03 ",
  17. "\u0E1F \u0E2B \u0E01 \u0E14 \u0E40 \u0E49 \u0E48 \u0E32 \u0E2A \u0E27 \u0E07 {enter}",
  18. "{shift} \u0E1C \u0E1B \u0E41 \u0E2D \u0E34 \u0E37 \u0E17 \u0E21 \u0E43 \u0E1D {shift}",
  19. "{accept} {alt} {space} {alt} {cancel}"
  20. ],
  21. 'shift' : [
  22. "% + \u0E51 \u0E52 \u0E53 \u0E54 \u0E39 \u0E3F \u0E55 \u0E56 \u0E57 \u0E58 \u0E59 {bksp}",
  23. "{tab} \u0E50 \u0022 \u0E0E \u0E11 \u0E18 \u0E4D \u0E4A \u0E13 \u0E2F \u0E0D \u0E10 \u002C \u0E05",
  24. "\u0E24 \u0E06 \u0E0F \u0E42 \u0E0C \u0E47 \u0E4B \u0E29 \u0E28 \u0E0B \u002E {enter}",
  25. "{shift} ( ) \u0E09 \u0E2E \u0E3A \u0E4C \u003F \u0E12 \u0E2C \u0E26 {shift}",
  26. "{accept} {alt} {space} {alt} {cancel}"
  27. ],
  28. 'alt' : [
  29. "\u0060 1 2 3 4 5 6 7 8 9 0 - \u003D {bksp}",
  30. "{tab} q w e r t y u i o p \u005B \u005D \u005C",
  31. "a s d f g h j k l ; \u0027 {enter}",
  32. "{shift} z x c v b n m , . / {shift}",
  33. "{accept} {alt} {space} {alt} {cancel}"
  34. ],
  35. 'alt-shift' : [
  36. "\u007E | @ # $ % \u00ac & * ( ) _ + {bksp}",
  37. "{tab} Q W E R T Y U I O P ! \u00a6 \u00a2",
  38. "A S D F G H J K L : \" {enter}",
  39. "{shift} Z X C V B N M { } ? {shift}",
  40. "{accept} {alt} {space} {alt} {cancel}"
  41. ]
  42. };