Hi just build a little tool (to add such functionality to KeymapSwitcher.docky) that list KEYMAPS: files and outputs: filename / english name / local name / charset
With some local names that as you can see below uses a different charset and thus show its local name odd (ex Bulgarian -> ±êÛÓÐàáÚØ)
How to make it readable (alas shown in Locale/Input prefs)?
TIA
..
KEYMAP:bg_ISO-8859-5
Bulgarian ISO-8859-5 / ±êÛÓÐàáÚØ ISO-8859-5 / 8
KEYMAP:bih_qwerty_ISO-8859-2
Bosnian (USA) QWERTY ISO-8859-2 / Bosnian QWERTY / 5
KEYMAP:br
Brazilian (EUA) / Brasileiro (EUA) / 4
KEYMAP:br_2
Brazilian (EUA) modified / Brasileiro (EUA) mod. / 4
KEYMAP:br_abnt2
Brazilian (ABNT2) / Brasileiro (ABNT2) / 4
KEYMAP:br_abnt2_ISO-8859-15
Brazilian (ABNT2) ISO-8859-15 / Brasileiro (ABNT2 €) / 111
KEYMAP:by_ISO-8859-5
Belarusian ISO-8859-5 / ±ÕÛÐàãáÚö ISO-8859-5 / 8
..
Something like that:
YES, THX!!!
Will try to add such code to KMS (if you don't mind) so some local keymaps shows correct.
AOS4.1/SAM460ex/PPC460EX-1155MHZ/2048MB/RadeonHD6570/SSD120GB/DVDRW :-P
Sure, take what you need, that's why I posted the code.
Hi, I manage to show local strings in their charset in a listbrowser (THX gazelle!!!)
-First I load charset fonts:
-Using label image to create an image object with the local string (KM_desc):
-Add to the listbrowser such "image":
And they show correct, the problem is when I resize/(un)iconify/click_on_entry it gets UNDERLINED!!!
![IMAGE(http://jabirulo.site90.com/temp/window_grab.jpg)](http://jabirulo.site90.com/temp/window_grab.jpg)
Any idea what (tag,...) am I missing/doing wrong?
TIA
EDIT1: I started/cloned source and added code bit by bit and now entries are shown correctly (not underlined), will investigate it further what did I wrong.
AOS4.1/SAM460ex/PPC460EX-1155MHZ/2048MB/RadeonHD6570/SSD120GB/DVDRW :-P
There is an ampersand ('&') missing here:
Instead of "IA_Font,dd->fiso[1].tta," you should have "IA_Font,&dd->fiso[1].tta,".
Double post.
Oooops, you're right. THX.
AOS4.1/SAM460ex/PPC460EX-1155MHZ/2048MB/RadeonHD6570/SSD120GB/DVDRW :-P
BTW if font is already loaded in memory, can I get rid off (reloading it)
lines? As 'IA_Font' tag only "needs" 'struct TTextAttr' (and 'struct TagItem').
Did some test and seems I don't need OpendDiskFont()/CloseFont(). Right?
TIA
AOS4.1/SAM460ex/PPC460EX-1155MHZ/2048MB/RadeonHD6570/SSD120GB/DVDRW :-P