font converter
In my Aplication I have a big text database (nearly 1000 Text_Id) and nearly 25 languages.
Sometimes I need a specific Text_Id with left Alignment and sometimes with right Alignment. Sometimes with font size 20 (big) sometimes with font size 15 (small).
As I don't want to define each text fourtimes (left Alignment big, left Alignment small, right Alignment big, left Alignment small) I use Wildcards.
T_ALIGN_LEFT_BIG_WILDCARD_ID
T_ALIGN_LEFT_SMALL_WILDCARD_ID
T_ALIGN_RIGHT_BIG_WILDCARD_ID
T_ALIGN_RIGHT_SMALL_WILDCARD_ID
And then with the function getText()
(TypedText(T_HALLO).getText())
I get the text for T_HALLO
and put it in the textArea with the funktion
void setWildcard(const Unicode::UnicodeChar* value)
Unfortunately all my text in Text Resources are used directly "0". And unfortunately the font converter has not generated the Glyphs for exotic Characters like "ü" or "ț"
I dont want define each exotic Character in "Typographies" because there are so many characters. Is there any other clever solution? Is there any possibility that TouchGFX takes themselves all text from Resources and convert it although the direct uses is "0"?
