On Fri, Jul 11, 2003 at 04:24:24PM +0200, Alain Paschoud wrote: > Hi, > > I need to know several things about keyboard internationalization in > PicoGui : > > - Is there possible to change the settings of a keyboard (from us-qwerty > to fr-latin-1 for example) ? > > - If yes, where is the conversion between key codes and characters > done ? In Input driver ? or somewhere else ? > > I have my own input driver for my specific keyboard. I want to use the > same way to internationalize the keys as it is done for any standard > keyboard. > > Any advices and information will be appreciated. > > Best regards.
This all depends on the input driver in question. The input driver is responsible for delivering key up/down messages (using picogui's defined keycodes) and for delivering character message (in Unicode). The sdlinput driver lets SDL do this conversion. The rawttykb and ttykb drivers let the kernel do it, or use the kernel's tables. If you're writing your own input driver, it's that driver's responsibility to handle internationalization. --Micah -- Only you can prevent creeping featurism! ------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 _______________________________________________ Pgui-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/pgui-devel
