vote up 1 vote down star

OK, this is a slightly weird question.

We have a touch-screen application (i.e., no keyboard). When users need to enter text, the application shows virtual keyboard - hand-built in WinForms.

Making these things by hand for each new language is monkey work. I figure that windows must have this keyboard layout information hiding somewhere in some dll. Would there be anyway to get this information out of windows?

Other ideas welcome (I figure at least generating the thing from a xml file has got to be better than doing it by hand in VS).

(Note: having said all which, I note that there is a Japanese keyboard, state machine and all..., so XML might not be sufficient)

UPDATE: pretty good series on this subject (I believe) here

flag

65% accept rate
That's a really cool question ... Porting the layouts to other environments (Linux) might be possible too, but it perhaps a violation of copyright of course. – unwind Mar 19 at 10:52
Wouldn't it be easier to use the built-in windows tablet keyboard? (obviously needs the right extensions installed in the OS but it seems it's enough just plugging a wacom into it these days, so might be more ways?). – Oskar Duveborn Mar 19 at 11:00

4 Answers

vote up 1 vote down check

Microsoft Keyboard Layout Creator can load system keyboards and export them as .klc files. Since it’s written in .NET you can use Reflector to see how it does that, and use reflection to drive it.

I’ve already done this once before, so here’s a tarball of all the .klc files for Windows XP. If you need the new layouts in Vista, re-run the code included in the tarball. It’s written in Mathematica but should be straightforward to translate to any other .NET-compatible language.

link|flag
That is a cool answer! I'll have to give it a try... – Benjol May 8 at 5:46
vote up 0 vote down

Please check following Windows API

 [DllImport("user32.dll")]
 private static extern long LoadKeyboardLayout(string pwszKLID, uint Flags);

Check MSDN here

link|flag
Hm, this just loads a keyboard layout in the current process/thread, it doesn't allow me to reproduce it visually (i.e., what key is in what position). – Benjol Mar 20 at 6:49
Though you may be on to something here, apparently MapVirtualKey can map a scancode (hardware) to a VirtualKey, and GetKeyNameText can convert a scancode to a string... – Benjol Mar 20 at 7:19
vote up 0 vote down

The exact layout of a keyboard is an implementation detail of the keyboard itself. The canonical example is the position of the backslash key on US keyboards. No Windows API is going to tell you that it is located above the Enter key or next to the Backspace key.

Beware that East Asian languages, like Japanese, use the IME (Input Method Editor) to compose a character.

link|flag
vote up 0 vote down

Why don't you use the on-screen keyboard (osk.exe)? Looks like you re-inventing the wheel. And not the easiest one!

link|flag
A question of lookologie, I fear. Bear in mind this is a pre-wpf project where they recoded all the controls by hand, to make them prettier. – Benjol Mar 20 at 6:48
It's also a tad small for a touch-screen. – ProfK Mar 22 at 12:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.