English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I want to develop a keyboard layout software

I want to design a keyboard layout software that will use Unicode characters which are not Latin. These particular language has more than 101 characters. Some time it uses keyboard combination to produce one. Any idea what kind of software I need to use to develop the keyboard layout. I know Keyman so I need another one

2007-03-13 20:02:21 · 1 answers · asked by gorebet 1 in Computers & Internet Software

1 answers

I would recommend using the .NET framework, it supports unicode characters, is relatively easy to program, and provides a lot of support for just about anything you could imagine programming.

Displaying characters that require combinations can be accomplished by appending the different unicode ids. For example, the C# code below will display the Russian character that resembles a backwards R with an accent, similar to this, but the "R" would be backwards... R'.

C# code example: String s = "\u044f\u0301";

references:
http://msdn2.microsoft.com/en-us/library/9b1s4yhz(VS.80).aspx
http://www.unicode.org
http://www.unicode.org/charts/PDF/Unicode-3.2/U32-0400.pdf
http://www.unicode.org/charts/PDF/U0300.pdf

2007-03-15 19:02:19 · answer #1 · answered by jmarquez 1 · 0 0

fedest.com, questions and answers