diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-20 11:46:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-02 16:50:04 +0900 |
commit | a1413410ddfec18d3ba95f7a844398ec2d8544c5 (patch) | |
tree | 11a6470833b1d43dd87233b7353ee82c485afccf /doc/hackers.guide.txt | |
parent | fa9080a8169fe09e360a9353aae9819093f12f71 (diff) | |
download | kvirc-a1413410ddfec18d3ba95f7a844398ec2d8544c5.tar.gz kvirc-a1413410ddfec18d3ba95f7a844398ec2d8544c5.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f887a3ee8f51b158ffb32d88e1489a6f2e0a9dbb)
Diffstat (limited to 'doc/hackers.guide.txt')
-rw-r--r-- | doc/hackers.guide.txt | 42 |
1 files changed, 5 insertions, 37 deletions
diff --git a/doc/hackers.guide.txt b/doc/hackers.guide.txt index 2b092285..693cf548 100644 --- a/doc/hackers.guide.txt +++ b/doc/hackers.guide.txt @@ -94,7 +94,7 @@ The source tree | | | Threads, localisation, env, time, shared library.. | | | | | `-- tal Toolkit Abstraction Layer: wrapper classes that -| | inherit from KDE* or QT classes, depending on the +| | inherit from TDE* or TQt classes, depending on the | | compilation type. | | | |-- kvirc The KVIrc executable sources @@ -374,7 +374,7 @@ Coding tips an existing kvi_* wrapper and use that one instead. The wrapper is there because of portability issues. -- Don't use the STL features: anything that you need IS either in the Qt library +- Don't use the STL features: anything that you need IS either in the TQt library or in kvilib. - Windows compilation has COMPILE_ON_WINDOWS #defined and a KDE compilation @@ -407,7 +407,7 @@ KviStr (especially in GUI modules) to handle correctly the UNICODE character set. TQString - The Qt UNICODE string. See the Qt documentation for details. + The TQt UNICODE string. See the TQt documentation for details. This is the string that should be mostly used in KVIrc in the near future. Take care: in general it is NOT null terminated. There is a KviQString wrapper namespace (#include "kvi_qstring.h") that @@ -423,13 +423,13 @@ TQString concurrent threads. (const) TQChar * - The array of Qt chars. This is usually obtained by callling + The array of TQt chars. This is usually obtained by callling KviQString::nullTerminatedArray() which itself is a hack... This array is used in some functions that were written for const char * strings and haven't been ported completely. QCString - The Qt non UNICODE string. See the Qt documentation for details. + The TQt non UNICODE string. See the TQt documentation for details. The Goal: - Use KviStr only where it is strictly needed (for protocol or performance @@ -856,38 +856,6 @@ release is likely to be 3.2.7 while the next official stable release might be 3.3, 3.4 or even 4. ------------------------------------------------------------------------------- -Porting to Qt 4.x (while mantaining Qt 3.x compatibility) (Work In Progress) -------------------------------------------------------------------------------- - -For the moment, in random order: - -- Avoid using TQString::null, use KviQString::empty instead. - This is because Qt 4.x does NOT have a null static variable. Qt 4.x in fact - does not have the distinction between null and empty strings (Note that for - KviStr this choice was made since the beginning). - Do NOT replace all the uses of TQString::null with TQString() (as the qt 4.x - porting documentation suggests) since for Qt 3.x this construct is SLOW. - -- We're building a compatibility layer in kvilib. - Before using ANY Qt class, look if there is an override in kvilib. - In fact always, prefer Kvi* classes over the Q* ones and include - the "kvi_*.h" files instead of the <qt*.h> ones. - -- Widgets will be probably abstracted in kvilib/tal. - - Use: - ./configure --enable-debug - make clean - make - to build. - -- Use less possible Qt3Compat features. - -- Do not use the "char * c = KviQString::toUtf8(string).data();" construct. - It leads to crashes on many compilers since the returned KviQCString - goes out of scope just at the end of the instruction. - -------------------------------------------------------------------------------- Code documentation ------------------------------------------------------------------------------- |