diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-15 19:08:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-18 09:31:41 +0900 |
commit | a30f5359f03c3017fa19a6770fab32d25d22cb87 (patch) | |
tree | cb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/i18n.html | |
parent | 25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff) | |
download | tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip |
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/i18n.html')
-rw-r--r-- | doc/html/i18n.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/i18n.html b/doc/html/i18n.html index f2b0251f0..1a1dbca19 100644 --- a/doc/html/i18n.html +++ b/doc/html/i18n.html @@ -140,13 +140,13 @@ and completely encapsulated in TQt's text engine. This means that you don't need to have any knowledge about the writing system used in a particular language, except for the following small points: <ul> -<p> <li> <a href="ntqpainter.html#drawText">TQPainter::drawText</a>( int x, int y, const <a href="tqstring.html">TQString</a> &str ) will always +<p> <li> <a href="tqpainter.html#drawText">TQPainter::drawText</a>( int x, int y, const <a href="tqstring.html">TQString</a> &str ) will always draw the string with it's left edge at the position specified with the x, y parameters. This will usually give you left aligned strings. Arabic and Hebrew application strings are usually right aligned, so for these languages use the version of drawText() that takes a <a href="ntqrect.html">TQRect</a> since this will align in accordance with the language. -<p> <li> When you write your own text input controls, use <a href="ntqfontmetrics.html#charWidth">TQFontMetrics::charWidth</a>() to determine the width of a character in a +<p> <li> When you write your own text input controls, use <a href="tqfontmetrics.html#charWidth">TQFontMetrics::charWidth</a>() to determine the width of a character in a string. In some languages (e.g. Arabic or languages from the Indian subcontinent), the width and shape of a glyph changes depending on the surrounding characters. Writing input controls usually requires a |