Since I’m Hungarian and I implement apps containing text in my language, I have to use non-English characters. I have trouble at two places so far:
- in the constructor of MainAppWindow I have to give the title name of the app as the first parameter of DocumentWindow() - if I write eg. “Ajánlólevél” (just a word with our characters) it shows unreadable characters instead of the given text
- second parameter of the AlertWindow causes the same effect, I can’t create a proper popup window because the title of it won’t appear properly
In some cases using the T("") function solved this problem (I’m getting used to use it), unfortunately not for the title parameters (I mean you can use it there as well, but it won’t affect the printed result).
I read somewhere on the forum, when we have such problems, we should change the font of the text, but I can’t do it with these since they don’t have any setFont() function. Is there a way to fix it, or should I use other words without those letters? (I would prefer to fix it, though )
Oh I forgot to mention, this problem occurs in Linux.