summaryrefslogtreecommitdiffstats
path: root/python/pyqt/doc/PyQt.html
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyqt/doc/PyQt.html')
-rw-r--r--python/pyqt/doc/PyQt.html1568
1 files changed, 784 insertions, 784 deletions
diff --git a/python/pyqt/doc/PyQt.html b/python/pyqt/doc/PyQt.html
index c2768f33..78c04c2a 100644
--- a/python/pyqt/doc/PyQt.html
+++ b/python/pyqt/doc/PyQt.html
@@ -340,7 +340,7 @@ CLASS="PROGRAMLISTING"
>void DebMainWindowFrm::browsePushButtonClicked()
{
if self.debugging:
- QMessageBox.critical(self, "Event", "browse pushbutton was clicked!")
+ TQMessageBox.critical(self, "Event", "browse pushbutton was clicked!")
}</PRE
></TD
></TR
@@ -358,11 +358,11 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->class DebMainWindowFrm(QMainWindow):
+>class DebMainWindowFrm(TQMainWindow):
...stuff...
def browsePushButtonClicked(self):
if self.debugging:
- QMessageBox.critical(self, "Event", "browse pushbutton was clicked!")</PRE
+ TQMessageBox.critical(self, "Event", "browse pushbutton was clicked!")</PRE
></TD
></TR
></TABLE
@@ -1231,18 +1231,18 @@ NAME="AEN467"
>Unicode support was added to Qt in v2.0 and to Python in v1.6. In Qt, Unicode
support is implemented using the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> class. It is
important to understand that <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
>s, Python string objects
and Python Unicode objects are all different but conversions between them are
automatic in many cases and easy to achieve manually when needed.</P
><P
>Whenever PyQt expects a <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> as a function argument, a
Python string object or a Python Unicode object can be provided instead, and
PyQt will do the necessary conversion automatically.</P
@@ -1250,10 +1250,10 @@ PyQt will do the necessary conversion automatically.</P
>You may also manually convert Python string and Unicode objects to
<TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
>s by using the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> constructor
as demonstrated in the following code fragment.</P
><TABLE
@@ -1264,15 +1264,15 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->qs1 = QString('Converted Python string object')
-qs2 = QString(u'Converted Python Unicode object')</PRE
+>qs1 = TQString('Converted Python string object')
+qs2 = TQString(u'Converted Python Unicode object')</PRE
></TD
></TR
></TABLE
><P
>In order to convert a <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> to a Python string object use
the Python <TT
CLASS="LITERAL"
@@ -1283,16 +1283,16 @@ CLASS="LITERAL"
>str()</TT
> to a null <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> and an empty
<TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> both result in an empty Python string object.</P
><P
>In order to convert a <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> to a Python Unicode object use
the Python <TT
CLASS="LITERAL"
@@ -1303,11 +1303,11 @@ CLASS="LITERAL"
>unicode()</TT
> to a null <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> and an empty
<TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> both result in an empty Python Unicode object.</P
></DIV
><DIV
@@ -1474,8 +1474,8 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->c = new QColor();
-c = new QColor();</PRE
+>c = new TQColor();
+c = new TQColor();</PRE
></TD
></TR
></TABLE
@@ -1493,8 +1493,8 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->c = QColor()
-c = QColor()</PRE
+>c = TQColor()
+c = TQColor()</PRE
></TD
></TR
></TABLE
@@ -1509,8 +1509,8 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->self.c1 = QColor()
-self.c2 = QColor()</PRE
+>self.c1 = TQColor()
+self.c2 = TQColor()</PRE
></TD
></TR
></TABLE
@@ -1519,7 +1519,7 @@ self.c2 = QColor()</PRE
will eventually call the destructor of that second instance. The most common
example is that a <TT
CLASS="LITERAL"
->QObject</TT
+>TQObject</TT
> (and any of its sub-classes) keeps
pointers to its children and will automatically call their destructors. In
these cases, the corresponding Python object will also keep a reference to the
@@ -1527,7 +1527,7 @@ corresponding child objects.</P
><P
>So, in the following Python fragment, the first <TT
CLASS="LITERAL"
->QLabel</TT
+>TQLabel</TT
> is
not destroyed when the second is assigned to <TT
CLASS="LITERAL"
@@ -1535,7 +1535,7 @@ CLASS="LITERAL"
> because the
parent <TT
CLASS="LITERAL"
->QWidget</TT
+>TQWidget</TT
> still has a reference to it.</P
><TABLE
BORDER="0"
@@ -1545,9 +1545,9 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->p = QWidget()
-l = QLabel('First label',p)
-l = QLabel('Second label',p)</PRE
+>p = TQWidget()
+l = TQLabel('First label',p)
+l = TQLabel('Second label',p)</PRE
></TD
></TR
></TABLE
@@ -1571,9 +1571,9 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->tab = QTab()
+>tab = TQTab()
tab.label = "First Tab"
-tab.r = QRect(10,10,75,30)</PRE
+tab.r = TQRect(10,10,75,30)</PRE
></TD
></TR
></TABLE
@@ -1613,14 +1613,14 @@ CLASS="LITERAL"
> class, and the
<TT
CLASS="LITERAL"
->QApplication::translate()</TT
+>TQApplication::translate()</TT
>, <TT
CLASS="LITERAL"
->QObject::tr()</TT
+>TQObject::tr()</TT
>
and <TT
CLASS="LITERAL"
->QObject::trUtf8()</TT
+>TQObject::trUtf8()</TT
> methods. Usually the
<TT
CLASS="LITERAL"
@@ -1637,7 +1637,7 @@ CLASS="LITERAL"
> and uses the hardcoded class name as the
context. On the other hand, <TT
CLASS="LITERAL"
->QApplication::translate()</TT
+>TQApplication::translate()</TT
>
allows to context to be explicitly stated.</P
><P
@@ -1669,9 +1669,9 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->class A(QObject):
+>class A(TQObject):
def __init__(self):
- QObject.__init__(self)
+ TQObject.__init__(self)
def hello(self):
return self.tr("Hello")
@@ -1712,7 +1712,7 @@ CLASS="LITERAL"
>The PyQt behaviour is unsatisfactory and may be changed in the future. It is
recommended that <TT
CLASS="LITERAL"
->QApplication.translate()</TT
+>TQApplication.translate()</TT
> be used in
preference to <TT
CLASS="LITERAL"
@@ -1729,7 +1729,7 @@ CLASS="LITERAL"
> that uses
<TT
CLASS="LITERAL"
->QApplication.translate()</TT
+>TQApplication.translate()</TT
>.</P
><TABLE
BORDER="0"
@@ -1739,9 +1739,9 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->class A(QObject):
+>class A(TQObject):
def __init__(self):
- QObject.__init__(self)
+ TQObject.__init__(self)
def hello(self):
return qApp.translate("A","Hello")</PRE
@@ -1755,7 +1755,7 @@ CLASS="LITERAL"
> uses
<TT
CLASS="LITERAL"
->QApplication.translate()</TT
+>TQApplication.translate()</TT
>.</P
></DIV
></DIV
@@ -1771,25 +1771,25 @@ NAME="AEN589"
>A signal may be either a Qt signal (specified using
<TT
CLASS="LITERAL"
->SIGNAL()</TT
+>TQT_SIGNAL()</TT
>) or a Python signal (specified using
<TT
CLASS="LITERAL"
->PYSIGNAL()</TT
+>PYQT_SIGNAL()</TT
>).</P
><P
>A slot can be either a Python callable object, a Qt signal (specified using
<TT
CLASS="LITERAL"
->SIGNAL()</TT
+>TQT_SIGNAL()</TT
>), a Python signal (specified using
<TT
CLASS="LITERAL"
->PYSIGNAL()</TT
+>PYQT_SIGNAL()</TT
>), or a Qt slot (specified using
<TT
CLASS="LITERAL"
->SLOT()</TT
+>TQT_SLOT()</TT
>).</P
><P
>You connect signals to slots (and other signals) as you would from C++. For
@@ -1802,14 +1802,14 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->QObject.connect(a,SIGNAL("QtSig()"),pyFunction)
-QObject.connect(a,SIGNAL("QtSig()"),pyClass.pyMethod)
-QObject.connect(a,SIGNAL("QtSig()"),PYSIGNAL("PySig"))
-QObject.connect(a,SIGNAL("QtSig()"),SLOT("QtSlot()"))
-QObject.connect(a,PYSIGNAL("PySig"),pyFunction)
-QObject.connect(a,PYSIGNAL("PySig"),pyClass.pyMethod)
-QObject.connect(a,PYSIGNAL("PySig"),SIGNAL("QtSig()"))
-QObject.connect(a,PYSIGNAL("PySig"),SLOT("QtSlot()"))</PRE
+>TQObject.connect(a,TQT_SIGNAL("QtSig()"),pyFunction)
+TQObject.connect(a,TQT_SIGNAL("QtSig()"),pyClass.pyMethod)
+TQObject.connect(a,TQT_SIGNAL("QtSig()"),PYQT_SIGNAL("PySig"))
+TQObject.connect(a,TQT_SIGNAL("QtSig()"),TQT_SLOT("QtSlot()"))
+TQObject.connect(a,PYQT_SIGNAL("PySig"),pyFunction)
+TQObject.connect(a,PYQT_SIGNAL("PySig"),pyClass.pyMethod)
+TQObject.connect(a,PYQT_SIGNAL("PySig"),TQT_SIGNAL("QtSig()"))
+TQObject.connect(a,PYQT_SIGNAL("PySig"),TQT_SLOT("QtSlot()"))</PRE
></TD
></TR
></TABLE
@@ -1825,11 +1825,11 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->sbar = QScrollBar()
-lcd = QLCDNumber()
+>sbar = TQScrollBar()
+lcd = TQLCDNumber()
-QObject.connect(sbar,SIGNAL("valueChanged(int)"),lcd.display)
-QObject.connect(sbar,SIGNAL("valueChanged(int)"),lcd,SLOT("display(int)"))</PRE
+TQObject.connect(sbar,TQT_SIGNAL("valueChanged(int)"),lcd.display)
+TQObject.connect(sbar,TQT_SIGNAL("valueChanged(int)"),lcd,TQT_SLOT("display(int)"))</PRE
></TD
></TR
></TABLE
@@ -1841,7 +1841,7 @@ more efficient.</P
><P
>Any instance of a class that is derived from the <TT
CLASS="LITERAL"
->QObject</TT
+>TQObject</TT
>
class can emit a signal using the <TT
CLASS="LITERAL"
@@ -1857,8 +1857,8 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->a.emit(SIGNAL("clicked()"),())
-a.emit(PYSIGNAL("pySig"),("Hello","World"))</PRE
+>a.emit(TQT_SIGNAL("clicked()"),())
+a.emit(PYQT_SIGNAL("pySig"),("Hello","World"))</PRE
></TD
></TR
></TABLE
@@ -1887,18 +1887,18 @@ NAME="AEN610"
For example the C++ static member function
<TT
CLASS="LITERAL"
->QObject::connect()</TT
+>TQObject::connect()</TT
> is called from Python as
<TT
CLASS="LITERAL"
->QObject.connect()</TT
+>TQObject.connect()</TT
> or <TT
CLASS="LITERAL"
>self.connect()</TT
> if
called from a sub-class of <TT
CLASS="LITERAL"
->QObject</TT
+>TQObject</TT
>.</P
></DIV
><DIV
@@ -1924,8 +1924,8 @@ WIDTH="100%"
><PRE
CLASS="PROGRAMLISTING"
>Qt.SolidPattern
-QWidget.TabFocus
-QFrame.TabFocus</PRE
+TQWidget.TabFocus
+TQFrame.TabFocus</PRE
></TD
></TR
></TABLE
@@ -2016,12 +2016,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN642"
->QAccel</A
+>TQAccel</A
></H3
><P
><TT
CLASS="LITERAL"
->QAccel</TT
+>TQAccel</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2030,12 +2030,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN646"
->QAction (Qt v2.2+)</A
+>TQAction (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QAction</TT
+>TQAction</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2044,12 +2044,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN650"
->QActionGroup (Qt v2.2+)</A
+>TQActionGroup (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QActionGroup</TT
+>TQActionGroup</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2058,7 +2058,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN654"
->QApplication</A
+>TQApplication</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -2069,7 +2069,7 @@ NAME="AEN656"
></A
><CODE
CLASS="FUNCDEF"
->QApplication</CODE
+>TQApplication</CODE
>(int &amp;argc, char **argv);<P
></P
></DIV
@@ -2085,7 +2085,7 @@ NAME="AEN664"
></A
><CODE
CLASS="FUNCDEF"
->QApplication</CODE
+>TQApplication</CODE
>(int &amp;argc, char **argv, bool GUIenabled);<P
></P
></DIV
@@ -2101,7 +2101,7 @@ NAME="AEN674"
></A
><CODE
CLASS="FUNCDEF"
->QApplication</CODE
+>TQApplication</CODE
>(int &amp;argc, char **argv, Type type);<P
></P
></DIV
@@ -2147,12 +2147,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN694"
->QBitmap</A
+>TQBitmap</A
></H3
><P
><TT
CLASS="LITERAL"
->QBitmap</TT
+>TQBitmap</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2161,12 +2161,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN698"
->QBrush</A
+>TQBrush</A
></H3
><P
><TT
CLASS="LITERAL"
->QBrush</TT
+>TQBrush</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -2182,12 +2182,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN704"
->QButton</A
+>TQButton</A
></H3
><P
><TT
CLASS="LITERAL"
->QButton</TT
+>TQButton</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2196,12 +2196,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN708"
->QButtonGroup</A
+>TQButtonGroup</A
></H3
><P
><TT
CLASS="LITERAL"
->QButtonGroup</TT
+>TQButtonGroup</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2210,16 +2210,16 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN712"
->QByteArray</A
+>TQByteArray</A
></H3
><P
>A Python string can be used whenever a <TT
CLASS="LITERAL"
->QByteArray</TT
+>TQByteArray</TT
> can be
used. A <TT
CLASS="LITERAL"
->QByteArray</TT
+>TQByteArray</TT
> can be converted to a Python string
using the Python <TT
CLASS="LITERAL"
@@ -2234,7 +2234,7 @@ NAME="AEN718"
></A
><CODE
CLASS="FUNCDEF"
->QByteArray &#38;assign</CODE
+>TQByteArray &#38;assign</CODE
>(const char *data, uint size);<P
></P
></DIV
@@ -2324,7 +2324,7 @@ NAME="AEN762"
></A
><CODE
CLASS="FUNCDEF"
->QByteArray &#38;setRawData</CODE
+>TQByteArray &#38;setRawData</CODE
>(const char *data, uintsize);<P
></P
></DIV
@@ -2337,12 +2337,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN770"
->QCDEStyle (Qt v2+)</A
+>TQCDEStyle (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCDEStyle</TT
+>TQCDEStyle</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2351,12 +2351,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN774"
->QCheckBox</A
+>TQCheckBox</A
></H3
><P
><TT
CLASS="LITERAL"
->QCheckBox</TT
+>TQCheckBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2404,7 +2404,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN794"
->QColor</A
+>TQColor</A
></H3
><P
>The Python <TT
@@ -2534,7 +2534,7 @@ NAME="AEN853"
><CODE
CLASS="FUNCDEF"
>static QRgb getRgba</CODE
->(QRgb initial, bool *ok, QWidget *parent = 0, const char *name = 0);<P
+>(QRgb initial, bool *ok, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -2563,12 +2563,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN870"
->QColorGroup</A
+>TQColorGroup</A
></H3
><P
><TT
CLASS="LITERAL"
->QColorGroup</TT
+>TQColorGroup</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2577,12 +2577,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN874"
->QComboBox</A
+>TQComboBox</A
></H3
><P
><TT
CLASS="LITERAL"
->QComboBox</TT
+>TQComboBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2591,7 +2591,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN878"
->QCommonStyle (Qt v2+)</A
+>TQCommonStyle (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -2625,7 +2625,7 @@ NAME="AEN890"
><CODE
CLASS="FUNCDEF"
>virtual void tabbarMetrics</CODE
->(const QTabBar *t, int &amp;hframe, int &amp;vframe, int &amp;overlap);<P
+>(const TQTabBar *t, int &amp;hframe, int &amp;vframe, int &amp;overlap);<P
></P
></DIV
><P
@@ -2651,16 +2651,16 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN906"
->QCString (Qt v2+)</A
+>TQCString (Qt v2+)</A
></H3
><P
>A Python string can be used whenever a <TT
CLASS="LITERAL"
->QCString</TT
+>TQCString</TT
> can be used.
A <TT
CLASS="LITERAL"
->QCString</TT
+>TQCString</TT
> can be converted to a Python string using the
Python <TT
CLASS="LITERAL"
@@ -2675,7 +2675,7 @@ NAME="AEN912"
></A
><CODE
CLASS="FUNCDEF"
->QCString &amp;sprintf</CODE
+>TQCString &amp;sprintf</CODE
>(const char *format, ...);<P
></P
></DIV
@@ -2864,12 +2864,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN983"
->QCursor</A
+>TQCursor</A
></H3
><P
><TT
CLASS="LITERAL"
->QCursor</TT
+>TQCursor</TT
> is fully implemented.</P
></DIV
><DIV
@@ -2878,7 +2878,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN987"
->QDataStream</A
+>TQDataStream</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -2889,14 +2889,14 @@ NAME="AEN989"
></A
><CODE
CLASS="FUNCDEF"
->QDataStream &amp;readBytes</CODE
+>TQDataStream &amp;readBytes</CODE
>(const char *&amp;s, uint &amp;l);<P
></P
></DIV
><P
>This takes no parameters. The <TT
CLASS="LITERAL"
->QDataStream</TT
+>TQDataStream</TT
> result and the
data read are returned as a tuple.</P
><DIV
@@ -2908,7 +2908,7 @@ NAME="AEN998"
></A
><CODE
CLASS="FUNCDEF"
->QDataStream &amp;readRawBytes</CODE
+>TQDataStream &amp;readRawBytes</CODE
>(const char *s, uint l);<P
></P
></DIV
@@ -2919,7 +2919,7 @@ CLASS="LITERAL"
> parameter. The
<TT
CLASS="LITERAL"
->QDataStream</TT
+>TQDataStream</TT
> result and the data read are returned as a
tuple.</P
><DIV
@@ -2931,7 +2931,7 @@ NAME="AEN1008"
></A
><CODE
CLASS="FUNCDEF"
->QDataStream &amp;writeBytes</CODE
+>TQDataStream &amp;writeBytes</CODE
>(const char *s, uint len);<P
></P
></DIV
@@ -2953,7 +2953,7 @@ NAME="AEN1018"
></A
><CODE
CLASS="FUNCDEF"
->QDataStream &amp;writeRawBytes</CODE
+>TQDataStream &amp;writeRawBytes</CODE
>(const char *s, uint len);<P
></P
></DIV
@@ -2973,7 +2973,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1028"
->QDate</A
+>TQDate</A
></H3
><P
>The Python
@@ -3026,12 +3026,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1044"
->QDateTime</A
+>TQDateTime</A
></H3
><P
><TT
CLASS="LITERAL"
->QDateTime</TT
+>TQDateTime</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -3066,12 +3066,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1055"
->QTime</A
+>TQTime</A
></H3
><P
><TT
CLASS="LITERAL"
->QTime</TT
+>TQTime</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -3148,12 +3148,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1078"
->QDesktopWidget (Qt v3+)</A
+>TQDesktopWidget (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDesktopWidget</TT
+>TQDesktopWidget</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3162,12 +3162,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1082"
->QDial (Qt v2.2+)</A
+>TQDial (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDial</TT
+>TQDial</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3176,7 +3176,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1086"
->QDialog</A
+>TQDialog</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -3203,7 +3203,7 @@ Python wrapper is garbage collected. Although this is a little inconsistent,
it ensures that the dialog is deleted without having to explicity code it
using <TT
CLASS="LITERAL"
->QObject.deleteLater()</TT
+>TQObject.deleteLater()</TT
> or other techniques.</P
></DIV
><DIV
@@ -3212,12 +3212,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1096"
->QDir</A
+>TQDir</A
></H3
><P
><TT
CLASS="LITERAL"
->QDir</TT
+>TQDir</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -3254,7 +3254,7 @@ CLASS="LITERAL"
the return type of a function or the type of an argument, a Python list of
<TT
CLASS="LITERAL"
->QFileInfo</TT
+>TQFileInfo</TT
> instances is used instead.</P
></DIV
><DIV
@@ -3263,7 +3263,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1110"
->QDockArea (Qt v3+)</A
+>TQDockArea (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -3275,7 +3275,7 @@ NAME="AEN1112"
><CODE
CLASS="FUNCDEF"
>bool hasDockWindow const</CODE
->(QDockWindow *w, int *index = 0);<P
+>(TQDockWindow *w, int *index = 0);<P
></P
></DIV
><P
@@ -3283,7 +3283,7 @@ CLASS="FUNCDEF"
CLASS="LITERAL"
>w</TT
> parameter and returns the index of the
-QDockWIndow or -1 if the QDockArea does not contain the QDockWindow.</P
+QDockWIndow or -1 if the TQDockArea does not contain the TQDockWindow.</P
></DIV
><DIV
CLASS="SECT2"
@@ -3291,12 +3291,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1121"
->QDockWindow (Qt v3+)</A
+>TQDockWindow (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDockWindow</TT
+>TQDockWindow</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3305,12 +3305,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1125"
->QColorDrag (Qt v2.1+)</A
+>TQColorDrag (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QColorDrag</TT
+>TQColorDrag</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3319,12 +3319,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1129"
->QDragObject</A
+>TQDragObject</A
></H3
><P
><TT
CLASS="LITERAL"
->QDragObject</TT
+>TQDragObject</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3333,12 +3333,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1133"
->QImageDrag</A
+>TQImageDrag</A
></H3
><P
><TT
CLASS="LITERAL"
->QImageDrag</TT
+>TQImageDrag</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3347,12 +3347,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1137"
->QStoredDrag</A
+>TQStoredDrag</A
></H3
><P
><TT
CLASS="LITERAL"
->QStoredDrag</TT
+>TQStoredDrag</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3361,12 +3361,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1141"
->QTextDrag</A
+>TQTextDrag</A
></H3
><P
><TT
CLASS="LITERAL"
->QTextDrag</TT
+>TQTextDrag</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3375,12 +3375,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1145"
->QUriDrag (Qt v2+)</A
+>TQUriDrag (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QUriDrag</TT
+>TQUriDrag</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3403,12 +3403,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1153"
->QDropSite</A
+>TQDropSite</A
></H3
><P
><TT
CLASS="LITERAL"
->QDropSite</TT
+>TQDropSite</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3417,12 +3417,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1157"
->QErrorMessage (Qt v3+)</A
+>TQErrorMessage (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QErrorMessage</TT
+>TQErrorMessage</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3431,17 +3431,17 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1161"
->QEvent</A
+>TQEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QEvent</TT
+>TQEvent</TT
> is fully implemented.</P
><P
>Instances of <TT
CLASS="LITERAL"
->QEvent</TT
+>TQEvent</TT
>s are automatically converted to the
correct sub-class.</P
></DIV
@@ -3451,12 +3451,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1167"
->QChildEvent</A
+>TQChildEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QChildEvent</TT
+>TQChildEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3465,12 +3465,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1171"
->QCloseEvent</A
+>TQCloseEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QCloseEvent</TT
+>TQCloseEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3479,12 +3479,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1175"
->QIconDragEvent (Qt v3.3+)</A
+>TQIconDragEvent (Qt v3.3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIconDragEvent</TT
+>TQIconDragEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3493,12 +3493,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1179"
->QContextMenuEvent (Qt v3+)</A
+>TQContextMenuEvent (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QContextMenuEvent</TT
+>TQContextMenuEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3507,12 +3507,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1183"
->QCustomEvent</A
+>TQCustomEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QCustomEvent</TT
+>TQCustomEvent</TT
> is fully implemented. Any Python object can be
passed as the event data and its reference count is increased.</P
></DIV
@@ -3522,12 +3522,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1187"
->QDragEnterEvent</A
+>TQDragEnterEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QDragEnterEvent</TT
+>TQDragEnterEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3536,12 +3536,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1191"
->QDragLeaveEvent</A
+>TQDragLeaveEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QDragLeaveEvent</TT
+>TQDragLeaveEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3550,12 +3550,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1195"
->QDragMoveEvent</A
+>TQDragMoveEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QDragMoveEvent</TT
+>TQDragMoveEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3564,12 +3564,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1199"
->QDropEvent</A
+>TQDropEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QDropEvent</TT
+>TQDropEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3578,12 +3578,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1203"
->QFocusEvent</A
+>TQFocusEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QFocusEvent</TT
+>TQFocusEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3592,12 +3592,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1207"
->QHideEvent</A
+>TQHideEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QHideEvent</TT
+>TQHideEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3606,12 +3606,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1211"
->QIMComposeEvent (Qt v3.1+)</A
+>TQIMComposeEvent (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIMComposeEvent</TT
+>TQIMComposeEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3620,12 +3620,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1215"
->QIMEvent (Qt v3+)</A
+>TQIMEvent (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIMEvent</TT
+>TQIMEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3634,12 +3634,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1219"
->QKeyEvent</A
+>TQKeyEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QKeyEvent</TT
+>TQKeyEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3648,12 +3648,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1223"
->QMouseEvent</A
+>TQMouseEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QMouseEvent</TT
+>TQMouseEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3662,12 +3662,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1227"
->QMoveEvent</A
+>TQMoveEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QMoveEvent</TT
+>TQMoveEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3676,12 +3676,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1231"
->QPaintEvent</A
+>TQPaintEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QPaintEvent</TT
+>TQPaintEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3690,12 +3690,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1235"
->QResizeEvent</A
+>TQResizeEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QResizeEvent</TT
+>TQResizeEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3704,12 +3704,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1239"
->QShowEvent</A
+>TQShowEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QShowEvent</TT
+>TQShowEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3718,12 +3718,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1243"
->QTabletEvent (Qt v3+)</A
+>TQTabletEvent (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTabletEvent</TT
+>TQTabletEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3732,12 +3732,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1247"
->QTimerEvent</A
+>TQTimerEvent</A
></H3
><P
><TT
CLASS="LITERAL"
->QTimerEvent</TT
+>TQTimerEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3746,12 +3746,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1251"
->QWheelEvent (Qt v2+)</A
+>TQWheelEvent (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWheelEvent</TT
+>TQWheelEvent</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3760,7 +3760,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1255"
->QEventLoop (Qt v3.1+)</A
+>TQEventLoop (Qt v3.1+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -3787,7 +3787,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1263"
->QFile</A
+>TQFile</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -3915,12 +3915,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1317"
->QFileDialog</A
+>TQFileDialog</A
></H3
><P
><TT
CLASS="LITERAL"
->QFileDialog</TT
+>TQFileDialog</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3929,12 +3929,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1321"
->QFileIconProvider</A
+>TQFileIconProvider</A
></H3
><P
><TT
CLASS="LITERAL"
->QFileIconProvider</TT
+>TQFileIconProvider</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3943,12 +3943,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1325"
->QFilePreview</A
+>TQFilePreview</A
></H3
><P
><TT
CLASS="LITERAL"
->QFilePreview</TT
+>TQFilePreview</TT
> is fully implemented. However it cannot be
used from Python in the same way as it is used from C++ because PyQt does not
support multiple inheritance involving more than one wrapped class. A trick
@@ -3962,19 +3962,19 @@ WIDTH="100%"
><TD
><PRE
CLASS="PROGRAMLISTING"
->class FilePreview(QFilePreview):
+>class FilePreview(TQFilePreview):
pass
-class Preview(QLabel):
+class Preview(TQLabel):
def __init__(self, parent=None):
- QLabel.__init__(self, parent)
+ TQLabel.__init__(self, parent)
self.preview = FilePreview()
self.preview.previewUrl = self.previewUrl</PRE
></TD
></TR
></TABLE
><P
->Note that QFilePreview cannot be instantiated directly because it is abstract.
+>Note that TQFilePreview cannot be instantiated directly because it is abstract.
Thanks to Hans-Peter Jansen for this trick.</P
></DIV
><DIV
@@ -3983,12 +3983,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1331"
->QFileInfo</A
+>TQFileInfo</A
></H3
><P
><TT
CLASS="LITERAL"
->QFileInfo</TT
+>TQFileInfo</TT
> is fully implemented.</P
></DIV
><DIV
@@ -3997,12 +3997,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1335"
->QFont</A
+>TQFont</A
></H3
><P
><TT
CLASS="LITERAL"
->QFont</TT
+>TQFont</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -4018,12 +4018,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1341"
->QFontDatabase (Qt v2.1+)</A
+>TQFontDatabase (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QFontDatabase</TT
+>TQFontDatabase</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4043,8 +4043,8 @@ NAME="AEN1347"
></A
><CODE
CLASS="FUNCDEF"
->static QFont getFont</CODE
->(bool *ok, const QFont &#38;def, QWidget *parent = 0, const char *name = 0);<P
+>static TQFont getFont</CODE
+>(bool *ok, const TQFont &#38;def, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4061,7 +4061,7 @@ CLASS="LITERAL"
> parameters and returns a tuple containing the
<TT
CLASS="LITERAL"
->QFont</TT
+>TQFont</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -4075,8 +4075,8 @@ NAME="AEN1364"
></A
><CODE
CLASS="FUNCDEF"
->static QFont getFont</CODE
->(bool *ok, QWidget *parent = 0, const char *name = 0);<P
+>static TQFont getFont</CODE
+>(bool *ok, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4089,7 +4089,7 @@ CLASS="LITERAL"
> parameters
and returns a tuple containing the <TT
CLASS="LITERAL"
->QFont</TT
+>TQFont</TT
> result and the
<TT
CLASS="LITERAL"
@@ -4102,12 +4102,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1378"
->QFontInfo</A
+>TQFontInfo</A
></H3
><P
><TT
CLASS="LITERAL"
->QFontInfo</TT
+>TQFontInfo</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4116,7 +4116,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1382"
->QFontMetrics</A
+>TQFontMetrics</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -4127,8 +4127,8 @@ NAME="AEN1384"
></A
><CODE
CLASS="FUNCDEF"
->QRect boundingRect</CODE
->(int x, int y, int w, int h, int flags, const QString &amp;str, int len = -1, int tabstops = 0, int *tabarray = 0);<P
+>TQRect boundingRect</CODE
+>(int x, int y, int w, int h, int flags, const TQString &amp;str, int len = -1, int tabstops = 0, int *tabarray = 0);<P
></P
></DIV
><P
@@ -4145,8 +4145,8 @@ NAME="AEN1407"
></A
><CODE
CLASS="FUNCDEF"
->QSize size</CODE
->(int flags, const QString &amp;str, int len = -1, int tabstops = 0, int *tabarray = 0);<P
+>TQSize size</CODE
+>(int flags, const TQString &amp;str, int len = -1, int tabstops = 0, int *tabarray = 0);<P
></P
></DIV
><P
@@ -4161,12 +4161,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1422"
->QFrame</A
+>TQFrame</A
></H3
><P
><TT
CLASS="LITERAL"
->QFrame</TT
+>TQFrame</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4203,12 +4203,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1434"
->QGrid (Qt v2+)</A
+>TQGrid (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QGrid</TT
+>TQGrid</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4217,12 +4217,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1438"
->QGridView (Qt v3+)</A
+>TQGridView (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QGridView</TT
+>TQGridView</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4231,12 +4231,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1442"
->QGroupBox</A
+>TQGroupBox</A
></H3
><P
><TT
CLASS="LITERAL"
->QGroupBox</TT
+>TQGroupBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4245,12 +4245,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1446"
->QHBox (Qt v2+)</A
+>TQHBox (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QHBox</TT
+>TQHBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4259,12 +4259,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1450"
->QHButtonGroup (Qt v2+)</A
+>TQHButtonGroup (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QHButtonGroup</TT
+>TQHButtonGroup</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4273,12 +4273,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1454"
->QHeader</A
+>TQHeader</A
></H3
><P
><TT
CLASS="LITERAL"
->QHeader</TT
+>TQHeader</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4287,12 +4287,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1458"
->QHGroupBox (Qt v2+)</A
+>TQHGroupBox (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QHGroupBox</TT
+>TQHGroupBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4301,12 +4301,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1462"
->QIconSet</A
+>TQIconSet</A
></H3
><P
><TT
CLASS="LITERAL"
->QIconSet</TT
+>TQIconSet</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4315,12 +4315,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1466"
->QIconFactory (Qt v3.1+)</A
+>TQIconFactory (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIconFactory</TT
+>TQIconFactory</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4329,7 +4329,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1470"
->QIconView (Qt v2.1+)</A
+>TQIconView (Qt v2.1+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -4340,8 +4340,8 @@ NAME="AEN1472"
></A
><CODE
CLASS="FUNCDEF"
->QIconViewItem *makeRowLayout</CODE
->(QIconViewItem *begin, int &#38;y);<P
+>TQIconViewItem *makeRowLayout</CODE
+>(TQIconViewItem *begin, int &#38;y);<P
></P
></DIV
><P
@@ -4353,12 +4353,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1480"
->QIconViewItem (Qt v2.1+)</A
+>TQIconViewItem (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIconViewItem</TT
+>TQIconViewItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4367,12 +4367,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1484"
->QIconDrag (Qt v2.1+)</A
+>TQIconDrag (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIconDrag</TT
+>TQIconDrag</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4381,12 +4381,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1488"
->QIconDragItem (Qt v2.1+)</A
+>TQIconDragItem (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QIconDragItem</TT
+>TQIconDragItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4395,7 +4395,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1492"
->QImage</A
+>TQImage</A
></H3
><P
>The Python <TT
@@ -4415,7 +4415,7 @@ NAME="AEN1497"
></A
><CODE
CLASS="FUNCDEF"
->QImage</CODE
+>TQImage</CODE
>(const char *xpm[]);<P
></P
></DIV
@@ -4430,7 +4430,7 @@ NAME="AEN1503"
></A
><CODE
CLASS="FUNCDEF"
->QImage</CODE
+>TQImage</CODE
>(uchar *data, int w, int h, int depth, QRgb *colorTable, int numColors, Endian bitOrder);<P
></P
></DIV
@@ -4487,7 +4487,7 @@ NAME="AEN1534"
></A
><CODE
CLASS="FUNCDEF"
->QImage convertDepthWithPalette</CODE
+>TQImage convertDepthWithPalette</CODE
>(int, QRgb *p, int pc, int cf = 0);<P
></P
></DIV
@@ -4560,7 +4560,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1572"
->QImageIO</A
+>TQImageIO</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -4584,12 +4584,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1588"
->QImageTextKeyLang</A
+>TQImageTextKeyLang</A
></H3
><P
><TT
CLASS="LITERAL"
->QImageTextKeyLang</TT
+>TQImageTextKeyLang</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4609,8 +4609,8 @@ NAME="AEN1594"
></A
><CODE
CLASS="FUNCDEF"
->static QString getText</CODE
->(const QString &amp;caption, const QString &amp;label, const QString &amp;text = QString::null, bool *ok = 0, QWidget *parent = 0, const char *name = 0);<P
+>static TQString getText</CODE
+>(const TQString &amp;caption, const TQString &amp;label, const TQString &amp;text = TQString::null, bool *ok = 0, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4620,7 +4620,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -4635,8 +4635,8 @@ NAME="AEN1613"
></A
><CODE
CLASS="FUNCDEF"
->static QString getText</CODE
->(const QString &amp;caption, const QString &amp;label, QLineEdit::EchoModeecho, const QString &amp;text = QString::null, bool *ok = 0, QWidget *parent = 0, const char *name = 0);<P
+>static TQString getText</CODE
+>(const TQString &amp;caption, const TQString &amp;label, TQLineEdit::EchoModeecho, const TQString &amp;text = TQString::null, bool *ok = 0, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4646,7 +4646,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -4661,8 +4661,8 @@ NAME="AEN1634"
></A
><CODE
CLASS="FUNCDEF"
->static QString getText</CODE
->(const QString &amp;caption, const QString &amp;label, QLineEdit::EchoModeecho = QLineEdit::Normal, const QString &amp;text = QString::null, bool *ok = 0, QWidget *parent = 0, const char *name = 0);<P
+>static TQString getText</CODE
+>(const TQString &amp;caption, const TQString &amp;label, TQLineEdit::EchoModeecho = TQLineEdit::Normal, const TQString &amp;text = TQString::null, bool *ok = 0, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4672,7 +4672,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -4688,7 +4688,7 @@ NAME="AEN1655"
><CODE
CLASS="FUNCDEF"
>static int getInteger</CODE
->(const QString &amp;caption, const QString &amp;label, int num = 0, int from = -2147483647, int to = 2147483647, int step = 1, bool *ok = 0, QWidget *parent = 0, const char *name = 0);<P
+>(const TQString &amp;caption, const TQString &amp;label, int num = 0, int from = -2147483647, int to = 2147483647, int step = 1, bool *ok = 0, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4713,7 +4713,7 @@ NAME="AEN1680"
><CODE
CLASS="FUNCDEF"
>static double getDouble</CODE
->(const QString &amp;caption, const QString &amp;label, double num = 0, double from = -2147483647, double to = 2147483647, int step = 1, bool *ok = 0, QWidget *parent = 0, const char *name = 0);<P
+>(const TQString &amp;caption, const TQString &amp;label, double num = 0, double from = -2147483647, double to = 2147483647, int step = 1, bool *ok = 0, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4737,8 +4737,8 @@ NAME="AEN1705"
></A
><CODE
CLASS="FUNCDEF"
->static QString getItem</CODE
->(const QString &amp;caption, const QString &amp;label, const QStringList &#38;list, int current = 0, bool editable = TRUE, bool *ok = 0, QWidget *parent = 0, const char *name = 0);<P
+>static TQString getItem</CODE
+>(const TQString &amp;caption, const TQString &amp;label, const TQStringList &#38;list, int current = 0, bool editable = TRUE, bool *ok = 0, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -4748,7 +4748,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -4772,7 +4772,7 @@ NAME="AEN1730"
><CODE
CLASS="FUNCDEF"
>void scrollBarMetrics</CODE
->(const QTabBar *sb, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
+>(const TQTabBar *sb, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
></P
></DIV
><P
@@ -4801,12 +4801,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1749"
->QIODevice</A
+>TQIODevice</A
></H3
><P
><TT
CLASS="LITERAL"
->QIODevice</TT
+>TQIODevice</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4815,12 +4815,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1753"
->QKeySequence (Qt v3+)</A
+>TQKeySequence (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QKeySequence</TT
+>TQKeySequence</TT
> is fully implemented including the operators
<TT
CLASS="LITERAL"
@@ -4830,18 +4830,18 @@ CLASS="LITERAL"
>!=</TT
>, <TT
CLASS="LITERAL"
->QString()</TT
+>TQString()</TT
> and
<TT
CLASS="LITERAL"
>int()</TT
>. A <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> instance or a Python
integer may be used whenever a <TT
CLASS="LITERAL"
->QKeySequence</TT
+>TQKeySequence</TT
> can be used.</P
></DIV
><DIV
@@ -4850,12 +4850,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1763"
->QLabel</A
+>TQLabel</A
></H3
><P
><TT
CLASS="LITERAL"
->QLabel</TT
+>TQLabel</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4864,12 +4864,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1767"
->QLayout</A
+>TQLayout</A
></H3
><P
><TT
CLASS="LITERAL"
->QLayout</TT
+>TQLayout</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4878,12 +4878,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1771"
->QBoxLayout</A
+>TQBoxLayout</A
></H3
><P
><TT
CLASS="LITERAL"
->QBoxLayout</TT
+>TQBoxLayout</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4892,12 +4892,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1775"
->QGLayoutIterator (Qt v2+)</A
+>TQGLayoutIterator (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QGLayoutIterator</TT
+>TQGLayoutIterator</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4906,7 +4906,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1779"
->QGridLayout</A
+>TQGridLayout</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -4918,7 +4918,7 @@ NAME="AEN1781"
><CODE
CLASS="FUNCDEF"
>bool findWidget</CODE
->(QWidget *w, int *row, int *col);<P
+>(TQWidget *w, int *row, int *col);<P
></P
></DIV
><P
@@ -4944,12 +4944,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1795"
->QHBoxLayout</A
+>TQHBoxLayout</A
></H3
><P
><TT
CLASS="LITERAL"
->QHBoxLayout</TT
+>TQHBoxLayout</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4958,12 +4958,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1799"
->QLayoutItem (Qt v2+)</A
+>TQLayoutItem (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QLayoutItem</TT
+>TQLayoutItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -4972,7 +4972,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1803"
->QLayoutIterator (Qt v2+)</A
+>TQLayoutIterator (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -4983,14 +4983,14 @@ NAME="AEN1805"
></A
><CODE
CLASS="FUNCDEF"
->QLayoutItem *next</CODE
+>TQLayoutItem *next</CODE
>();<P
></P
></DIV
><P
>This is a wrapper around the <TT
CLASS="LITERAL"
->QLayoutIterator</TT
+>TQLayoutIterator</TT
>
<TT
CLASS="LITERAL"
@@ -5003,12 +5003,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1812"
->QSpacerItem (Qt v2+)</A
+>TQSpacerItem (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSpacerItem</TT
+>TQSpacerItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5017,12 +5017,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1816"
->QVBoxLayout</A
+>TQVBoxLayout</A
></H3
><P
><TT
CLASS="LITERAL"
->QVBoxLayout</TT
+>TQVBoxLayout</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5031,12 +5031,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1820"
->QWidgetItem (Qt v2+)</A
+>TQWidgetItem (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWidgetItem</TT
+>TQWidgetItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5045,12 +5045,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1824"
->QLCDNumber</A
+>TQLCDNumber</A
></H3
><P
><TT
CLASS="LITERAL"
->QLCDNumber</TT
+>TQLCDNumber</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5059,12 +5059,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1828"
->QLibrary (Qt v3+)</A
+>TQLibrary (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QLibrary</TT
+>TQLibrary</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5073,7 +5073,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1832"
->QLineEdit</A
+>TQLineEdit</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5085,7 +5085,7 @@ NAME="AEN1834"
><CODE
CLASS="FUNCDEF"
>int characterAt</CODE
->(int xpos, QChar *chr);<P
+>(int xpos, TQChar *chr);<P
></P
></DIV
><P
@@ -5160,7 +5160,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1864"
->QListBox</A
+>TQListBox</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5195,12 +5195,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1877"
->QListBoxItem</A
+>TQListBoxItem</A
></H3
><P
><TT
CLASS="LITERAL"
->QListBoxItem</TT
+>TQListBoxItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5209,12 +5209,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1881"
->QListBoxPixmap</A
+>TQListBoxPixmap</A
></H3
><P
><TT
CLASS="LITERAL"
->QListBoxPixmap</TT
+>TQListBoxPixmap</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5223,12 +5223,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1885"
->QListBoxText</A
+>TQListBoxText</A
></H3
><P
><TT
CLASS="LITERAL"
->QListBoxText</TT
+>TQListBoxText</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5237,17 +5237,17 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1889"
->QListView</A
+>TQListView</A
></H3
><P
><TT
CLASS="LITERAL"
->QListView</TT
+>TQListView</TT
> is fully implemented.</P
><P
>Note that to remove a child <TT
CLASS="LITERAL"
->QListViewItem</TT
+>TQListViewItem</TT
> you must first
call <TT
CLASS="LITERAL"
@@ -5263,17 +5263,17 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1897"
->QListViewItem</A
+>TQListViewItem</A
></H3
><P
><TT
CLASS="LITERAL"
->QListViewItem</TT
+>TQListViewItem</TT
> is fully implemented.</P
><P
>Note that to remove a child <TT
CLASS="LITERAL"
->QListViewItem</TT
+>TQListViewItem</TT
> you must first
call <TT
CLASS="LITERAL"
@@ -5289,12 +5289,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1905"
->QCheckListItem</A
+>TQCheckListItem</A
></H3
><P
><TT
CLASS="LITERAL"
->QCheckListItem</TT
+>TQCheckListItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5303,12 +5303,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1909"
->QListViewItemIterator (Qt v2+)</A
+>TQListViewItemIterator (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QListViewItemIterator</TT
+>TQListViewItemIterator</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5317,7 +5317,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1913"
->QLocale (Qt v3.3+)</A
+>TQLocale (Qt v3.3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5502,7 +5502,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN1979"
->QMainWindow</A
+>TQMainWindow</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5513,8 +5513,8 @@ NAME="AEN1981"
></A
><CODE
CLASS="FUNCDEF"
->QTextStream &amp;operator&lt;&lt;</CODE
->(QTextStream &amp;, const QMainWindow &amp;);<P
+>TQTextStream &amp;operator&lt;&lt;</CODE
+>(TQTextStream &amp;, const TQMainWindow &amp;);<P
></P
></DIV
><P
@@ -5528,8 +5528,8 @@ NAME="AEN1989"
></A
><CODE
CLASS="FUNCDEF"
->QTextStream &amp;operator&gt;&gt;</CODE
->(QTextStream &amp;, QMainWindow &amp;);<P
+>TQTextStream &amp;operator&gt;&gt;</CODE
+>(TQTextStream &amp;, TQMainWindow &amp;);<P
></P
></DIV
><P
@@ -5544,7 +5544,7 @@ NAME="AEN1997"
><CODE
CLASS="FUNCDEF"
>bool getLocation</CODE
->(QToolBar *tb, ToolBarDock &amp;dock, int &amp;index, bool &amp;nl, int &amp;extraOffset);<P
+>(TQToolBar *tb, ToolBarDock &amp;dock, int &amp;index, bool &amp;nl, int &amp;extraOffset);<P
></P
></DIV
><P
@@ -5575,14 +5575,14 @@ NAME="AEN2016"
></A
><CODE
CLASS="FUNCDEF"
->QList&lt;QToolBar&gt; toolBars</CODE
+>QList&lt;TQToolBar&gt; toolBars</CODE
>(ToolBarDock dock);<P
></P
></DIV
><P
>This returns a list of <TT
CLASS="LITERAL"
->QToolBar</TT
+>TQToolBar</TT
> instances. (Qt v2.1.0+)</P
></DIV
><DIV
@@ -5591,12 +5591,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2023"
->QMemArray&lt;type&gt; (Qt v3+)</A
+>TQMemArray&lt;type&gt; (Qt v3+)</A
></H3
><P
>Types based on the <TT
CLASS="LITERAL"
->QMemArray</TT
+>TQMemArray</TT
> template are automatically
converted to and from Python lists of the type.</P
></DIV
@@ -5606,12 +5606,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2027"
->QMenuBar</A
+>TQMenuBar</A
></H3
><P
><TT
CLASS="LITERAL"
->QMenuBar</TT
+>TQMenuBar</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5620,7 +5620,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2031"
->QMenuData</A
+>TQMenuData</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5631,8 +5631,8 @@ NAME="AEN2033"
></A
><CODE
CLASS="FUNCDEF"
->QMenuItem *findItem</CODE
->(int id, QMenuData **parent);<P
+>TQMenuItem *findItem</CODE
+>(int id, TQMenuData **parent);<P
></P
></DIV
><P
@@ -5644,12 +5644,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2041"
->QCustomMenuItem (Qt v2.1+)</A
+>TQCustomMenuItem (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCustomMenuItem</TT
+>TQCustomMenuItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5658,12 +5658,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2045"
->QMenuItem</A
+>TQMenuItem</A
></H3
><P
><TT
CLASS="LITERAL"
->QMenuItem</TT
+>TQMenuItem</TT
> is an internal Qt class.</P
></DIV
><DIV
@@ -5672,12 +5672,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2049"
->QMessageBox</A
+>TQMessageBox</A
></H3
><P
><TT
CLASS="LITERAL"
->QMessageBox</TT
+>TQMessageBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5686,7 +5686,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2053"
->QMetaObject</A
+>TQMetaObject</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5725,12 +5725,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2067"
->QMetaProperty</A
+>TQMetaProperty</A
></H3
><P
><TT
CLASS="LITERAL"
->QMetaProperty</TT
+>TQMetaProperty</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5739,12 +5739,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2071"
->QMimeSource (Qt v2+)</A
+>TQMimeSource (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QMimeSource</TT
+>TQMimeSource</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5753,12 +5753,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2075"
->QMimeSourceFactory (Qt v2+)</A
+>TQMimeSourceFactory (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QMimeSourceFactory</TT
+>TQMimeSourceFactory</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5767,12 +5767,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2079"
->QWindowsMime (Qt v3+)</A
+>TQWindowsMime (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWindowsMime</TT
+>TQWindowsMime</TT
> is fully implemented.</P
></DIV
><DIV
@@ -5781,7 +5781,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2083"
->QMotifPlusStyle (Qt v2.2+)</A
+>TQMotifPlusStyle (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5815,7 +5815,7 @@ NAME="AEN2095"
><CODE
CLASS="FUNCDEF"
>void scrollBarMetrics</CODE
->(const QScrollBar *sb, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
+>(const TQScrollBar *sb, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
></P
></DIV
><P
@@ -5845,7 +5845,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2114"
->QMotifStyle (Qt v2+)</A
+>TQMotifStyle (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5857,7 +5857,7 @@ NAME="AEN2116"
><CODE
CLASS="FUNCDEF"
>void scrollBarMetrics</CODE
->(const QTabBar *sb, int &#38;sliderMin, int &#38;sliderMax, int &#38;sliderLength, int &#38;buttonDim);<P
+>(const TQTabBar *sb, int &#38;sliderMin, int &#38;sliderMax, int &#38;sliderLength, int &#38;buttonDim);<P
></P
></DIV
><P
@@ -5890,7 +5890,7 @@ NAME="AEN2135"
><CODE
CLASS="FUNCDEF"
>void tabbarMetrics</CODE
->(const QTabBar *t, int &#38;hframe, int &#38;vframe, int &#38;overlap);<P
+>(const TQTabBar *t, int &#38;hframe, int &#38;vframe, int &#38;overlap);<P
></P
></DIV
><P
@@ -5916,7 +5916,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2151"
->QMovie</A
+>TQMovie</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -5927,8 +5927,8 @@ NAME="AEN2153"
></A
><CODE
CLASS="FUNCDEF"
->QMovie</CODE
->(QDataSource *src, int bufsize = 1024);<P
+>TQMovie</CODE
+>(TQDataSource *src, int bufsize = 1024);<P
></P
></DIV
><P
@@ -5962,7 +5962,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2171"
->QMultiLineEdit</A
+>TQMultiLineEdit</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6062,12 +6062,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2215"
->QMutex (Qt v2.2+)</A
+>TQMutex (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QMutex</TT
+>TQMutex</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6076,12 +6076,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2219"
->QMutexLocker (Qt v3.1+)</A
+>TQMutexLocker (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QMutexLocker</TT
+>TQMutexLocker</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6090,12 +6090,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2223"
->QNetworkOperation (Qt v2.1+)</A
+>TQNetworkOperation (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QNetworkOperation</TT
+>TQNetworkOperation</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6104,12 +6104,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2227"
->QNetworkProtocol (Qt v2.1+)</A
+>TQNetworkProtocol (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QNetworkProtocol</TT
+>TQNetworkProtocol</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6118,12 +6118,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2231"
->QNetworkProtocolFactoryBase (Qt v2.1+)</A
+>TQNetworkProtocolFactoryBase (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QNetworkProtocolFactoryBase</TT
+>TQNetworkProtocolFactoryBase</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6132,7 +6132,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2235"
->QObject</A
+>TQObject</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6144,7 +6144,7 @@ NAME="AEN2237"
><CODE
CLASS="FUNCDEF"
>bool disconnect</CODE
->(const QObject *receiver, const char *member = 0);<P
+>(const TQObject *receiver, const char *member = 0);<P
></P
></DIV
><P
@@ -6159,7 +6159,7 @@ NAME="AEN2245"
><CODE
CLASS="FUNCDEF"
>bool disconnect</CODE
->(const char *signal = 0, const QObject *receiver = 0, const char *member = 0);<P
+>(const char *signal = 0, const TQObject *receiver = 0, const char *member = 0);<P
></P
></DIV
><P
@@ -6174,7 +6174,7 @@ NAME="AEN2255"
><CODE
CLASS="FUNCDEF"
>static bool disconnect</CODE
->(const QObject *sender, const char *signal, const QObject *receiver, const char *member);<P
+>(const TQObject *sender, const char *signal, const TQObject *receiver, const char *member);<P
></P
></DIV
><P
@@ -6195,12 +6195,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2269"
->QObjectCleanupHandler (Qt v3+)</A
+>TQObjectCleanupHandler (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QObjectCleanupHandler</TT
+>TQObjectCleanupHandler</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6209,17 +6209,17 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2273"
->QObjectList</A
+>TQObjectList</A
></H3
><P
>This class isn't implemented. Whenever a <TT
CLASS="LITERAL"
->QObjectList</TT
+>TQObjectList</TT
> is the
return type of a function or the type of an argument, a Python list of
<TT
CLASS="LITERAL"
->QObject</TT
+>TQObject</TT
> instances is used instead.</P
></DIV
><DIV
@@ -6228,12 +6228,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2278"
->QPaintDeviceMetrics</A
+>TQPaintDeviceMetrics</A
></H3
><P
><TT
CLASS="LITERAL"
->QPaintDeviceMetrics</TT
+>TQPaintDeviceMetrics</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6242,7 +6242,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2282"
->QPaintDevice</A
+>TQPaintDevice</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6254,7 +6254,7 @@ NAME="AEN2284"
><CODE
CLASS="FUNCDEF"
>virtual bool cmd</CODE
->(int, QPainter *, QPDevCmdParam *);<P
+>(int, TQPainter *, QPDevCmdParam *);<P
></P
></DIV
><P
@@ -6266,7 +6266,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2291"
->QPainter</A
+>TQPainter</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6277,7 +6277,7 @@ NAME="AEN2293"
></A
><CODE
CLASS="FUNCDEF"
->QRect boundingRect</CODE
+>TQRect boundingRect</CODE
>(int x, int y, int w, int h, int flags, const char *str, int len = -1, char **intern = 0);<P
></P
></DIV
@@ -6295,8 +6295,8 @@ NAME="AEN2314"
></A
><CODE
CLASS="FUNCDEF"
->QRect boundingRect</CODE
->(const QRect&#38;, int flags, const char *str, int len = -1, char **intern = 0);<P
+>TQRect boundingRect</CODE
+>(const TQRect&#38;, int flags, const char *str, int len = -1, char **intern = 0);<P
></P
></DIV
><P
@@ -6314,7 +6314,7 @@ NAME="AEN2328"
><CODE
CLASS="FUNCDEF"
>void drawText</CODE
->(int x, int y, int w, int h, int flags, const char *str, int len = -1, QRect *br = 0, char **intern = 0);<P
+>(int x, int y, int w, int h, int flags, const char *str, int len = -1, TQRect *br = 0, char **intern = 0);<P
></P
></DIV
><P
@@ -6332,7 +6332,7 @@ NAME="AEN2351"
><CODE
CLASS="FUNCDEF"
>void drawText</CODE
->(const QRect&#38;, int flags, const char *str, int len = -1, QRect *br = 0, char **intern = 0);<P
+>(const TQRect&#38;, int flags, const char *str, int len = -1, TQRect *br = 0, char **intern = 0);<P
></P
></DIV
><P
@@ -6377,12 +6377,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2378"
->QPalette</A
+>TQPalette</A
></H3
><P
><TT
CLASS="LITERAL"
->QPalette</TT
+>TQPalette</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -6398,7 +6398,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2384"
->QPixmap</A
+>TQPixmap</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6409,7 +6409,7 @@ NAME="AEN2386"
></A
><CODE
CLASS="FUNCDEF"
->QPixmap</CODE
+>TQPixmap</CODE
>(const char *xpm[]);<P
></P
></DIV
@@ -6459,12 +6459,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2418"
->QPixmapCache (Qt v3+)</A
+>TQPixmapCache (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QPixmapCache</TT
+>TQPixmapCache</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6488,12 +6488,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2426"
->QPen</A
+>TQPen</A
></H3
><P
><TT
CLASS="LITERAL"
->QPen</TT
+>TQPen</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -6509,7 +6509,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2432"
->QPicture</A
+>TQPicture</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6555,7 +6555,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2449"
->QPlatinumStyle (Qt v2+)</A
+>TQPlatinumStyle (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6567,7 +6567,7 @@ NAME="AEN2451"
><CODE
CLASS="FUNCDEF"
>void scrollBarMetrics</CODE
->(const QTabBar *sb, int &#38;sliderMin, int &#38;sliderMax, int &#38;sliderLength, int &#38;buttonDim);<P
+>(const TQTabBar *sb, int &#38;sliderMin, int &#38;sliderMax, int &#38;sliderLength, int &#38;buttonDim);<P
></P
></DIV
><P
@@ -6597,7 +6597,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2470"
->QPoint</A
+>TQPoint</A
></H3
><P
>The Python
@@ -6680,7 +6680,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2495"
->QPointArray</A
+>TQPointArray</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6691,7 +6691,7 @@ NAME="AEN2497"
></A
><CODE
CLASS="FUNCDEF"
->QPointArray</CODE
+>TQPointArray</CODE
>(int nPoints, const QCOORD *points);<P
></P
></DIV
@@ -6792,7 +6792,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2561"
->QPopupMenu</A
+>TQPopupMenu</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -6822,7 +6822,7 @@ NAME="AEN2569"
><CODE
CLASS="FUNCDEF"
>int exec</CODE
->(const QPoint &#38;pos, int indexAtPoint = 0);<P
+>(const TQPoint &#38;pos, int indexAtPoint = 0);<P
></P
></DIV
><P
@@ -6837,12 +6837,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2578"
->QPrintDialog (X11)</A
+>TQPrintDialog (X11)</A
></H3
><P
><TT
CLASS="LITERAL"
->QPrintDialog</TT
+>TQPrintDialog</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6851,12 +6851,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2582"
->QPrinter</A
+>TQPrinter</A
></H3
><P
><TT
CLASS="LITERAL"
->QPrinter</TT
+>TQPrinter</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6865,12 +6865,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2586"
->QProcess (Qt v3+)</A
+>TQProcess (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QProcess</TT
+>TQProcess</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6879,12 +6879,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2590"
->QProgressBar</A
+>TQProgressBar</A
></H3
><P
><TT
CLASS="LITERAL"
->QProgressBar</TT
+>TQProgressBar</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6893,12 +6893,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2594"
->QProgressDialog</A
+>TQProgressDialog</A
></H3
><P
><TT
CLASS="LITERAL"
->QProgressDialog</TT
+>TQProgressDialog</TT
> is fully implemented.
value.</P
></DIV
@@ -6908,12 +6908,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2598"
->QPtrList&lt;type&gt; (Qt v3+)</A
+>TQPtrList&lt;type&gt; (Qt v3+)</A
></H3
><P
>Types based on the <TT
CLASS="LITERAL"
->QPtrList</TT
+>TQPtrList</TT
> template are automatically
converted to and from Python lists of the type.</P
></DIV
@@ -6923,12 +6923,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2602"
->QPushButton</A
+>TQPushButton</A
></H3
><P
><TT
CLASS="LITERAL"
->QPushButton</TT
+>TQPushButton</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6937,12 +6937,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2606"
->QRadioButton</A
+>TQRadioButton</A
></H3
><P
><TT
CLASS="LITERAL"
->QRadioButton</TT
+>TQRadioButton</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6951,12 +6951,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2610"
->QRangeControl</A
+>TQRangeControl</A
></H3
><P
><TT
CLASS="LITERAL"
->QRangeControl</TT
+>TQRangeControl</TT
> is fully implemented.</P
></DIV
><DIV
@@ -6965,7 +6965,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2614"
->QRect</A
+>TQRect</A
></H3
><P
>The Python
@@ -7094,7 +7094,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2669"
->QRegExp</A
+>TQRegExp</A
></H3
><P
>The Python <TT
@@ -7144,7 +7144,7 @@ NAME="AEN2688"
><CODE
CLASS="FUNCDEF"
>int match</CODE
->(const QString &#38;str, int index = 0, int *len = 0);<P
+>(const TQString &#38;str, int index = 0, int *len = 0);<P
></P
></DIV
><P
@@ -7170,7 +7170,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2702"
->QRegion</A
+>TQRegion</A
></H3
><P
>The Python
@@ -7232,7 +7232,7 @@ NAME="AEN2719"
></A
><CODE
CLASS="FUNCDEF"
->QArray&lt;QRect&gt; rects</CODE
+>QArray&lt;TQRect&gt; rects</CODE
>();<P
></P
></DIV
@@ -7248,7 +7248,7 @@ NAME="AEN2724"
><CODE
CLASS="FUNCDEF"
>void setRects</CODE
->(QRect *rects, int num);<P
+>(TQRect *rects, int num);<P
></P
></DIV
><P
@@ -7260,12 +7260,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2732"
->QScrollBar</A
+>TQScrollBar</A
></H3
><P
><TT
CLASS="LITERAL"
->QScrollBar</TT
+>TQScrollBar</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7274,7 +7274,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2736"
->QScrollView</A
+>TQScrollView</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -7341,12 +7341,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2770"
->QSemaphore (Qt v2.2+)</A
+>TQSemaphore (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSemaphore</TT
+>TQSemaphore</TT
> is fully implemented. The <TT
CLASS="LITERAL"
>+=</TT
@@ -7363,12 +7363,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2776"
->QSemiModal (Qt v1, v2)</A
+>TQSemiModal (Qt v1, v2)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSemiModal</TT
+>TQSemiModal</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7391,7 +7391,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2784"
->QSettings (Qt v3+)</A
+>TQSettings (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -7403,7 +7403,7 @@ NAME="AEN2786"
><CODE
CLASS="FUNCDEF"
>bool readBoolEntry</CODE
->(const QString &amp;key, bool def = 0, bool *ok = 0);<P
+>(const TQString &amp;key, bool def = 0, bool *ok = 0);<P
></P
></DIV
><P
@@ -7428,7 +7428,7 @@ NAME="AEN2799"
><CODE
CLASS="FUNCDEF"
>double readDoubleEntry</CODE
->(const QString &amp;key, double def = 0, bool *ok = 0);<P
+>(const TQString &amp;key, double def = 0, bool *ok = 0);<P
></P
></DIV
><P
@@ -7452,8 +7452,8 @@ NAME="AEN2812"
></A
><CODE
CLASS="FUNCDEF"
->QString readEntry</CODE
->(const QString &amp;key, const QString &amp;def = QString::null, bool *ok = 0);<P
+>TQString readEntry</CODE
+>(const TQString &amp;key, const TQString &amp;def = TQString::null, bool *ok = 0);<P
></P
></DIV
><P
@@ -7463,7 +7463,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -7477,8 +7477,8 @@ NAME="AEN2825"
></A
><CODE
CLASS="FUNCDEF"
->QStringList readListEntry</CODE
->(const QString &amp;key, bool *ok = 0);<P
+>TQStringList readListEntry</CODE
+>(const TQString &amp;key, bool *ok = 0);<P
></P
></DIV
><P
@@ -7488,7 +7488,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QStringList</TT
+>TQStringList</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -7502,8 +7502,8 @@ NAME="AEN2836"
></A
><CODE
CLASS="FUNCDEF"
->QStringList readListEntry</CODE
->(const QString &amp;key, const QChar &amp;separator, bool *ok = 0);<P
+>TQStringList readListEntry</CODE
+>(const TQString &amp;key, const TQChar &amp;separator, bool *ok = 0);<P
></P
></DIV
><P
@@ -7513,7 +7513,7 @@ CLASS="LITERAL"
> is not passed and the returned value is a tuple of
the <TT
CLASS="LITERAL"
->QStringList</TT
+>TQStringList</TT
> result and the <TT
CLASS="LITERAL"
>ok</TT
@@ -7528,7 +7528,7 @@ NAME="AEN2849"
><CODE
CLASS="FUNCDEF"
>int readNumEntry</CODE
->(const QString &amp;key, int def = 0, bool *ok = 0);<P
+>(const TQString &amp;key, int def = 0, bool *ok = 0);<P
></P
></DIV
><P
@@ -7553,7 +7553,7 @@ NAME="AEN2862"
><CODE
CLASS="FUNCDEF"
>bool writeEntry</CODE
->(const QString &amp;key, bool value);<P
+>(const TQString &amp;key, bool value);<P
></P
></DIV
><P
@@ -7565,7 +7565,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2870"
->QSGIStyle (Qt v2.2+)</A
+>TQSGIStyle (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -7577,7 +7577,7 @@ NAME="AEN2872"
><CODE
CLASS="FUNCDEF"
>void scrollBarMetrics</CODE
->(const QScrollBar *sb, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
+>(const TQScrollBar *sb, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
></P
></DIV
><P
@@ -7607,12 +7607,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2891"
->QSignalMapper</A
+>TQSignalMapper</A
></H3
><P
><TT
CLASS="LITERAL"
->QSignalMapper</TT
+>TQSignalMapper</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7621,12 +7621,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2895"
->QSimpleRichText (Qt v2+)</A
+>TQSimpleRichText (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSimpleRichText</TT
+>TQSimpleRichText</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7635,7 +7635,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2899"
->QSize</A
+>TQSize</A
></H3
><P
>The Python
@@ -7715,12 +7715,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2923"
->QSizeGrip (Qt v2+)</A
+>TQSizeGrip (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSizeGrip</TT
+>TQSizeGrip</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7729,12 +7729,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2927"
->QSizePolicy (Qt v2+)</A
+>TQSizePolicy (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSizePolicy</TT
+>TQSizePolicy</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7743,12 +7743,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2931"
->QSlider</A
+>TQSlider</A
></H3
><P
><TT
CLASS="LITERAL"
->QSlider</TT
+>TQSlider</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7757,12 +7757,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2935"
->QSocketNotifier</A
+>TQSocketNotifier</A
></H3
><P
><TT
CLASS="LITERAL"
->QSocketNotifier</TT
+>TQSocketNotifier</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7771,12 +7771,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2939"
->QSound (Qt v2.2+)</A
+>TQSound (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSound</TT
+>TQSound</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7785,7 +7785,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2943"
->QSpinBox</A
+>TQSpinBox</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -7816,12 +7816,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2953"
->QSplashScreen (Qt v3.2.0+)</A
+>TQSplashScreen (Qt v3.2.0+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSplashScreen</TT
+>TQSplashScreen</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7830,7 +7830,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2957"
->QSplitter</A
+>TQSplitter</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -7864,12 +7864,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2972"
->QStatusBar</A
+>TQStatusBar</A
></H3
><P
><TT
CLASS="LITERAL"
->QStatusBar</TT
+>TQStatusBar</TT
> is fully implemented.</P
></DIV
><DIV
@@ -7878,7 +7878,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2976"
->QChar (Qt v2+)</A
+>TQChar (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -7917,16 +7917,16 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN2988"
->QString</A
+>TQString</A
></H3
><P
>A Python string object (or Unicode object) can be used whenever a
<TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> can be used. A <TT
CLASS="LITERAL"
->QString</TT
+>TQString</TT
> can be
converted to a Python string object using the Python <TT
CLASS="LITERAL"
@@ -7962,7 +7962,7 @@ NAME="AEN3000"
></A
><CODE
CLASS="FUNCDEF"
->QCharRef at</CODE
+>TQCharRef at</CODE
>(uint i);<P
></P
></DIV
@@ -7977,7 +7977,7 @@ NAME="AEN3006"
></A
><CODE
CLASS="FUNCDEF"
->QChar constref const</CODE
+>TQChar constref const</CODE
>(uint i);<P
></P
></DIV
@@ -7992,7 +7992,7 @@ NAME="AEN3012"
></A
><CODE
CLASS="FUNCDEF"
->QChar &#38;ref</CODE
+>TQChar &#38;ref</CODE
>(uint i);<P
></P
></DIV
@@ -8007,7 +8007,7 @@ NAME="AEN3018"
></A
><CODE
CLASS="FUNCDEF"
->QString &#38;setUnicodeCodes</CODE
+>TQString &#38;setUnicodeCodes</CODE
>(const ushort *unicode_as_shorts, uint len);<P
></P
></DIV
@@ -8022,7 +8022,7 @@ NAME="AEN3026"
></A
><CODE
CLASS="FUNCDEF"
->QString &#38;sprintf</CODE
+>TQString &#38;sprintf</CODE
>(const char *format, ...);<P
></P
></DIV
@@ -8211,7 +8211,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3097"
->QStringList (Qt v2+)</A
+>TQStringList (Qt v2+)</A
></H3
><P
>The Python <TT
@@ -8259,7 +8259,7 @@ NAME="AEN3110"
><CODE
CLASS="FUNCDEF"
>Iterator append</CODE
->(const QString &#38;x);<P
+>(const TQString &#38;x);<P
></P
></DIV
><P
@@ -8274,7 +8274,7 @@ NAME="AEN3116"
><CODE
CLASS="FUNCDEF"
>Iterator prepend</CODE
->(const QString &#38;x);<P
+>(const TQString &#38;x);<P
></P
></DIV
><P
@@ -8286,12 +8286,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3122"
->QStrList</A
+>TQStrList</A
></H3
><P
>This class isn't implemented. Whenever a <TT
CLASS="LITERAL"
->QStrList</TT
+>TQStrList</TT
> is the
return type of a function or the type of an argument, a Python list of strings
is used instead.</P
@@ -8302,7 +8302,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3126"
->QStyle (Qt v2+)</A
+>TQStyle (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8336,7 +8336,7 @@ NAME="AEN3138"
><CODE
CLASS="FUNCDEF"
>virtual void scrollBarMetrics</CODE
->(const QScrollBar *b, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
+>(const TQScrollBar *b, int &amp;sliderMin, int &amp;sliderMax, int &amp;sliderLength, int &amp;buttonDim);<P
></P
></DIV
><P
@@ -8369,7 +8369,7 @@ NAME="AEN3157"
><CODE
CLASS="FUNCDEF"
>virtual void tabbarMetrics</CODE
->(const QTabBar *t, int &amp;hframe, int &amp;vframe, int &amp;overlap);<P
+>(const TQTabBar *t, int &amp;hframe, int &amp;vframe, int &amp;overlap);<P
></P
></DIV
><P
@@ -8395,12 +8395,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3173"
->QStyleOption (Qt v3+)</A
+>TQStyleOption (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QStyleOption</TT
+>TQStyleOption</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8409,12 +8409,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3177"
->QStyleSheet (Qt v2+)</A
+>TQStyleSheet (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QStyleSheet</TT
+>TQStyleSheet</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8423,12 +8423,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3181"
->QStyleSheetItem (Qt v2+)</A
+>TQStyleSheetItem (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QStyleSheetItem</TT
+>TQStyleSheetItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8437,12 +8437,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3185"
->QSyntaxHighlighter (Qt v3.1+)</A
+>TQSyntaxHighlighter (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSyntaxHighlighter</TT
+>TQSyntaxHighlighter</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8451,12 +8451,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3189"
->QTab</A
+>TQTab</A
></H3
><P
><TT
CLASS="LITERAL"
->QTab</TT
+>TQTab</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8465,7 +8465,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3193"
->QTabBar</A
+>TQTabBar</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8476,14 +8476,14 @@ NAME="AEN3195"
></A
><CODE
CLASS="FUNCDEF"
->QList&lt;QTab&gt; tabList</CODE
+>QList&lt;TQTab&gt; tabList</CODE
>();<P
></P
></DIV
><P
>This returns a list of <TT
CLASS="LITERAL"
->QTab</TT
+>TQTab</TT
> instances.</P
></DIV
><DIV
@@ -8492,12 +8492,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3201"
->QTabDialog</A
+>TQTabDialog</A
></H3
><P
><TT
CLASS="LITERAL"
->QTabDialog</TT
+>TQTabDialog</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8565,12 +8565,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3229"
->QTabWidget (Qt v2+)</A
+>TQTabWidget (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTabWidget</TT
+>TQTabWidget</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8579,12 +8579,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3233"
->QTextBrowser (Qt v2+)</A
+>TQTextBrowser (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTextBrowser</TT
+>TQTextBrowser</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8593,7 +8593,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3237"
->QTextCodec (Qt v2+)</A
+>TQTextCodec (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8604,14 +8604,14 @@ NAME="AEN3239"
></A
><CODE
CLASS="FUNCDEF"
->virtual QCString fromUnicode</CODE
->(const QString &amp;uc, int &amp;lenInOut);<P
+>virtual TQCString fromUnicode</CODE
+>(const TQString &amp;uc, int &amp;lenInOut);<P
></P
></DIV
><P
>The returned value is a tuple of the <TT
CLASS="LITERAL"
->QCString</TT
+>TQCString</TT
> result and the
updated <TT
CLASS="LITERAL"
@@ -8624,12 +8624,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3249"
->QTextDecoder (Qt v2+)</A
+>TQTextDecoder (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTextDecoder</TT
+>TQTextDecoder</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8638,7 +8638,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3253"
->QTextEncoder (Qt v2+)</A
+>TQTextEncoder (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8649,14 +8649,14 @@ NAME="AEN3255"
></A
><CODE
CLASS="FUNCDEF"
->virtual QCString fromUnicode = 0</CODE
->(const QString &amp;uc, int &amp;lenInOut);<P
+>virtual TQCString fromUnicode = 0</CODE
+>(const TQString &amp;uc, int &amp;lenInOut);<P
></P
></DIV
><P
>The returned value is a tuple of the <TT
CLASS="LITERAL"
->QCString</TT
+>TQCString</TT
> result and the
updated <TT
CLASS="LITERAL"
@@ -8669,7 +8669,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3265"
->QTextEdit (Qt v3+)</A
+>TQTextEdit (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8681,7 +8681,7 @@ NAME="AEN3267"
><CODE
CLASS="FUNCDEF"
>int charAt</CODE
->(const QPoint &amp;pos, int *para = 0);<P
+>(const TQPoint &amp;pos, int *para = 0);<P
></P
></DIV
><P
@@ -8721,7 +8721,7 @@ NAME="AEN3283"
><CODE
CLASS="FUNCDEF"
>virtual bool find</CODE
->(const QString &amp;expr, bool cs, bool wo, bool forward = TRUE, int *para = 0, int *index = 0);<P
+>(const TQString &amp;expr, bool cs, bool wo, bool forward = TRUE, int *para = 0, int *index = 0);<P
></P
></DIV
><P
@@ -8802,7 +8802,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3332"
->QTextStream</A
+>TQTextStream</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8813,7 +8813,7 @@ NAME="AEN3334"
></A
><CODE
CLASS="FUNCDEF"
->QTextStream</CODE
+>TQTextStream</CODE
>(FILE *fp, int mode);<P
></P
></DIV
@@ -8828,7 +8828,7 @@ NAME="AEN3342"
></A
><CODE
CLASS="FUNCDEF"
->QTextStream &#38;readRawBytes</CODE
+>TQTextStream &#38;readRawBytes</CODE
>(char *buf, uint len);<P
></P
></DIV
@@ -8843,7 +8843,7 @@ NAME="AEN3350"
></A
><CODE
CLASS="FUNCDEF"
->QTextStream &#38;writeRawBytes</CODE
+>TQTextStream &#38;writeRawBytes</CODE
>(const char *buf, uint len);<P
></P
></DIV
@@ -8856,7 +8856,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3358"
->QTextIStream (Qt v2+)</A
+>TQTextIStream (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8867,7 +8867,7 @@ NAME="AEN3360"
></A
><CODE
CLASS="FUNCDEF"
->QTextIStream</CODE
+>TQTextIStream</CODE
>(FILE *fp, int mode);<P
></P
></DIV
@@ -8880,7 +8880,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3368"
->QTextOStream (Qt v2+)</A
+>TQTextOStream (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -8891,7 +8891,7 @@ NAME="AEN3370"
></A
><CODE
CLASS="FUNCDEF"
->QTextOStream</CODE
+>TQTextOStream</CODE
>(FILE *fp, int mode);<P
></P
></DIV
@@ -8904,12 +8904,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3378"
->QTextView (Qt v2+)</A
+>TQTextView (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTextView</TT
+>TQTextView</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8918,12 +8918,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3382"
->QThread (Qt v2.2+)</A
+>TQThread (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QThread</TT
+>TQThread</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8932,12 +8932,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3386"
->QTimer</A
+>TQTimer</A
></H3
><P
><TT
CLASS="LITERAL"
->QTimer</TT
+>TQTimer</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8946,12 +8946,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3390"
->QToolBar</A
+>TQToolBar</A
></H3
><P
><TT
CLASS="LITERAL"
->QToolBar</TT
+>TQToolBar</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8960,12 +8960,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3394"
->QToolBox (Qt v3.2.0+)</A
+>TQToolBox (Qt v3.2.0+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QToolBox</TT
+>TQToolBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8974,12 +8974,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3398"
->QToolButton</A
+>TQToolButton</A
></H3
><P
><TT
CLASS="LITERAL"
->QToolButton</TT
+>TQToolButton</TT
> is fully implemented.</P
></DIV
><DIV
@@ -8988,12 +8988,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3402"
->QToolTip</A
+>TQToolTip</A
></H3
><P
><TT
CLASS="LITERAL"
->QToolTip</TT
+>TQToolTip</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9002,12 +9002,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3406"
->QToolTipGroup</A
+>TQToolTipGroup</A
></H3
><P
><TT
CLASS="LITERAL"
->QToolTipGroup</TT
+>TQToolTipGroup</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9044,16 +9044,16 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3418"
->QUrl (Qt v2.1+)</A
+>TQUrl (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QUrl</TT
+>TQUrl</TT
> is fully implemented, including the
<TT
CLASS="LITERAL"
->QString()</TT
+>TQString()</TT
>, <TT
CLASS="LITERAL"
>==</TT
@@ -9069,12 +9069,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3425"
->QUrlInfo (Qt v2.1+)</A
+>TQUrlInfo (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QUrlInfo</TT
+>TQUrlInfo</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9083,7 +9083,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3429"
->QUrlOperator (Qt v2.1+)</A
+>TQUrlOperator (Qt v2.1+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9128,7 +9128,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3443"
->QValidator</A
+>TQValidator</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9140,7 +9140,7 @@ NAME="AEN3445"
><CODE
CLASS="FUNCDEF"
>virtual State validate</CODE
->(QString&#38; input, int&#38; pos);<P
+>(TQString&#38; input, int&#38; pos);<P
></P
></DIV
><P
@@ -9159,7 +9159,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3455"
->QDoubleValidator</A
+>TQDoubleValidator</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9171,7 +9171,7 @@ NAME="AEN3457"
><CODE
CLASS="FUNCDEF"
>State validate</CODE
->(QString&#38; input, int&#38; pos);<P
+>(TQString&#38; input, int&#38; pos);<P
></P
></DIV
><P
@@ -9190,7 +9190,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3467"
->QIntValidator</A
+>TQIntValidator</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9202,7 +9202,7 @@ NAME="AEN3469"
><CODE
CLASS="FUNCDEF"
>State validate</CODE
->(QString&#38; input, int&#38; pos);<P
+>(TQString&#38; input, int&#38; pos);<P
></P
></DIV
><P
@@ -9221,7 +9221,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3479"
->QRegExpValidator (Qt v3+)</A
+>TQRegExpValidator (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9233,7 +9233,7 @@ NAME="AEN3481"
><CODE
CLASS="FUNCDEF"
>virtual State validate</CODE
->(QString&#38; input, int&#38; pos);<P
+>(TQString&#38; input, int&#38; pos);<P
></P
></DIV
><P
@@ -9252,12 +9252,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3491"
->QValueList&lt;type&gt; (Qt v2+)</A
+>TQValueList&lt;type&gt; (Qt v2+)</A
></H3
><P
>Types based on the <TT
CLASS="LITERAL"
->QValueList</TT
+>TQValueList</TT
> template are automatically
converted to and from Python lists of the type.</P
></DIV
@@ -9267,7 +9267,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3495"
->QVariant (Qt v2.1+)</A
+>TQVariant (Qt v2.1+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9278,7 +9278,7 @@ NAME="AEN3497"
></A
><CODE
CLASS="FUNCDEF"
->QVariant</CODE
+>TQVariant</CODE
>(const char *val);<P
></P
></DIV
@@ -9293,8 +9293,8 @@ NAME="AEN3503"
></A
><CODE
CLASS="FUNCDEF"
->QVariant</CODE
->(const QBitArray &amp;val);<P
+>TQVariant</CODE
+>(const TQBitArray &amp;val);<P
></P
></DIV
><P
@@ -9308,8 +9308,8 @@ NAME="AEN3509"
></A
><CODE
CLASS="FUNCDEF"
->QVariant</CODE
->(const QValueList&lt;QVariant&gt; &amp;val);<P
+>TQVariant</CODE
+>(const TQValueList&lt;TQVariant&gt; &amp;val);<P
></P
></DIV
><P
@@ -9323,8 +9323,8 @@ NAME="AEN3515"
></A
><CODE
CLASS="FUNCDEF"
->QVariant</CODE
->(const QMap&lt;QString,QVariant&gt; &amp;val);<P
+>TQVariant</CODE
+>(const TQMap&lt;TQString,TQVariant&gt; &amp;val);<P
></P
></DIV
><P
@@ -9338,7 +9338,7 @@ NAME="AEN3521"
></A
><CODE
CLASS="FUNCDEF"
->QBitArray &amp;asBitArray</CODE
+>TQBitArray &amp;asBitArray</CODE
>();<P
></P
></DIV
@@ -9398,7 +9398,7 @@ NAME="AEN3541"
></A
><CODE
CLASS="FUNCDEF"
->QValueList&lt;QVariant&gt; &amp;asList</CODE
+>TQValueList&lt;TQVariant&gt; &amp;asList</CODE
>();<P
></P
></DIV
@@ -9413,7 +9413,7 @@ NAME="AEN3546"
></A
><CODE
CLASS="FUNCDEF"
->QMap&lt;QString,QVariant&gt; &amp;asMap</CODE
+>TQMap&lt;TQString,TQVariant&gt; &amp;asMap</CODE
>();<P
></P
></DIV
@@ -9443,7 +9443,7 @@ NAME="AEN3556"
></A
><CODE
CLASS="FUNCDEF"
->QValueListConstIterator&lt;QVariant&gt;listBegin const</CODE
+>TQValueListConstIterator&lt;TQVariant&gt;listBegin const</CODE
>();<P
></P
></DIV
@@ -9458,7 +9458,7 @@ NAME="AEN3561"
></A
><CODE
CLASS="FUNCDEF"
->QValueListConstIterator&lt;QVariant&gt;listEnd const</CODE
+>TQValueListConstIterator&lt;TQVariant&gt;listEnd const</CODE
>();<P
></P
></DIV
@@ -9473,7 +9473,7 @@ NAME="AEN3566"
></A
><CODE
CLASS="FUNCDEF"
->QMapConstIterator&lt;QString,QVariant&gt;mapBegin const</CODE
+>TQMapConstIterator&lt;TQString,TQVariant&gt;mapBegin const</CODE
>();<P
></P
></DIV
@@ -9488,7 +9488,7 @@ NAME="AEN3571"
></A
><CODE
CLASS="FUNCDEF"
->QMapConstIterator&lt;QString,QVariant&gt;mapEnd const</CODE
+>TQMapConstIterator&lt;TQString,TQVariant&gt;mapEnd const</CODE
>();<P
></P
></DIV
@@ -9503,8 +9503,8 @@ NAME="AEN3576"
></A
><CODE
CLASS="FUNCDEF"
->QMapConstIterator&lt;QString,QVariant&gt;mapFind const</CODE
->(const QString &#38;key);<P
+>TQMapConstIterator&lt;TQString,TQVariant&gt;mapFind const</CODE
+>(const TQString &#38;key);<P
></P
></DIV
><P
@@ -9518,7 +9518,7 @@ NAME="AEN3582"
></A
><CODE
CLASS="FUNCDEF"
->QValueListConstIterator&lt;QString&gt;stringListBegin const</CODE
+>TQValueListConstIterator&lt;TQString&gt;stringListBegin const</CODE
>();<P
></P
></DIV
@@ -9533,7 +9533,7 @@ NAME="AEN3587"
></A
><CODE
CLASS="FUNCDEF"
->QValueListConstIterator&lt;QString&gt;stringListEnd const</CODE
+>TQValueListConstIterator&lt;TQString&gt;stringListEnd const</CODE
>();<P
></P
></DIV
@@ -9548,7 +9548,7 @@ NAME="AEN3592"
></A
><CODE
CLASS="FUNCDEF"
->const QBitArray toBitArray const</CODE
+>const TQBitArray toBitArray const</CODE
>();<P
></P
></DIV
@@ -9563,7 +9563,7 @@ NAME="AEN3597"
></A
><CODE
CLASS="FUNCDEF"
->const QValueList&lt;QVariant&gt;toList const</CODE
+>const TQValueList&lt;TQVariant&gt;toList const</CODE
>();<P
></P
></DIV
@@ -9578,7 +9578,7 @@ NAME="AEN3602"
></A
><CODE
CLASS="FUNCDEF"
->const QMap&lt;QString,QVariant&gt;toMap const</CODE
+>const TQMap&lt;TQString,TQVariant&gt;toMap const</CODE
>();<P
></P
></DIV
@@ -9591,12 +9591,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3607"
->QVBox (Qt v2+)</A
+>TQVBox (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QVBox</TT
+>TQVBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9605,12 +9605,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3611"
->QVButtonGroup (Qt v2+)</A
+>TQVButtonGroup (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QVButtonGroup</TT
+>TQVButtonGroup</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9619,12 +9619,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3615"
->QVGroupBox (Qt v2+)</A
+>TQVGroupBox (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QVGroupBox</TT
+>TQVGroupBox</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9633,12 +9633,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3619"
->QWaitCondition (Qt v2.2+)</A
+>TQWaitCondition (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWaitCondition</TT
+>TQWaitCondition</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9647,12 +9647,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3623"
->QWhatsThis</A
+>TQWhatsThis</A
></H3
><P
><TT
CLASS="LITERAL"
->QWhatsThis</TT
+>TQWhatsThis</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9661,7 +9661,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3627"
->QWidget</A
+>TQWidget</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9687,7 +9687,7 @@ NAME="AEN3634"
></A
><CODE
CLASS="FUNCDEF"
->QFocusData *focusData</CODE
+>TQFocusData *focusData</CODE
>();<P
></P
></DIV
@@ -9736,12 +9736,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3651"
->QWidgetList</A
+>TQWidgetList</A
></H3
><P
>This class isn't implemented. Whenever a <TT
CLASS="LITERAL"
->QWidgetList</TT
+>TQWidgetList</TT
> is the
return type of a function or the type of an argument, a Python list of
instances is used instead.</P
@@ -9752,12 +9752,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3655"
->QWidgetStack</A
+>TQWidgetStack</A
></H3
><P
><TT
CLASS="LITERAL"
->QWidgetStack</TT
+>TQWidgetStack</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9780,7 +9780,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3663"
->QWindowsStyle (Qt v2+)</A
+>TQWindowsStyle (Qt v2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -9814,7 +9814,7 @@ NAME="AEN3675"
><CODE
CLASS="FUNCDEF"
>void scrollBarMetrics</CODE
->(const QTabBar *sb, int &#38;sliderMin, int &#38;sliderMax, int &#38;sliderLength, int &#38;buttonDim);<P
+>(const TQTabBar *sb, int &#38;sliderMin, int &#38;sliderMax, int &#38;sliderLength, int &#38;buttonDim);<P
></P
></DIV
><P
@@ -9847,7 +9847,7 @@ NAME="AEN3694"
><CODE
CLASS="FUNCDEF"
>void tabbarMetrics</CODE
->(const QTabBar *t, int &#38;hframe, int &#38;vframe, int &#38;overlap);<P
+>(const TQTabBar *t, int &#38;hframe, int &#38;vframe, int &#38;overlap);<P
></P
></DIV
><P
@@ -9887,12 +9887,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3714"
->QWizard (Qt v2+)</A
+>TQWizard (Qt v2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWizard</TT
+>TQWizard</TT
> is fully implemented.</P
></DIV
><DIV
@@ -9901,7 +9901,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3718"
->QWMatrix</A
+>TQWMatrix</A
></H3
><P
>The Python <TT
@@ -9924,14 +9924,14 @@ NAME="AEN3724"
></A
><CODE
CLASS="FUNCDEF"
->QWMatrix invert const</CODE
+>TQWMatrix invert const</CODE
>(bool *invertible = 0);<P
></P
></DIV
><P
>This takes no parameters and returns a tuple of the <TT
CLASS="LITERAL"
->QWMatrix</TT
+>TQWMatrix</TT
>
result and the <TT
CLASS="LITERAL"
@@ -10031,12 +10031,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3780"
->QWorkspace (Qt v2.1+)</A
+>TQWorkspace (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWorkspace</TT
+>TQWorkspace</TT
> is fully implemented.</P
></DIV
></DIV
@@ -10129,7 +10129,7 @@ NAME="AEN3814"
><CODE
CLASS="FUNCDEF"
>unsigned long registerWeakActiveObject</CODE
->(const QString &amp;guid);<P
+>(const TQString &amp;guid);<P
></P
></DIV
><P
@@ -10204,7 +10204,7 @@ NAME="AEN3838"
><CODE
CLASS="FUNCDEF"
>QAxObject</CODE
->(IUnknown *iface, QObject *parent = 0, const char *name = 0);<P
+>(IUnknown *iface, TQObject *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -10228,7 +10228,7 @@ NAME="AEN3850"
><CODE
CLASS="FUNCDEF"
>QAxWidget</CODE
->(IUnknown *iface, QWidget *parent = 0, const char *name = 0);<P
+>(IUnknown *iface, TQWidget *parent = 0, const char *name = 0);<P
></P
></DIV
><P
@@ -10252,12 +10252,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3863"
->QCanvas (Qt v2.2+)</A
+>TQCanvas (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvas</TT
+>TQCanvas</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10266,12 +10266,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3867"
->QCanvasEllipse (Qt v2.2+)</A
+>TQCanvasEllipse (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasEllipse</TT
+>TQCanvasEllipse</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10280,12 +10280,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3871"
->QCanvasItem (Qt v2.2+)</A
+>TQCanvasItem (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasItem</TT
+>TQCanvasItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10294,17 +10294,17 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3875"
->QCanvasItemList (Qt v2.2+)</A
+>TQCanvasItemList (Qt v2.2+)</A
></H3
><P
>This class isn't implemented. Whenever a <TT
CLASS="LITERAL"
->QCanvasItemList</TT
+>TQCanvasItemList</TT
> is
the return type of a function or the type of an argument, a Python list of
<TT
CLASS="LITERAL"
->QCanvasItem</TT
+>TQCanvasItem</TT
> instances is used instead.</P
></DIV
><DIV
@@ -10313,12 +10313,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3880"
->QCanvasLine (Qt v2.2+)</A
+>TQCanvasLine (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasLine</TT
+>TQCanvasLine</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10327,12 +10327,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3884"
->QCanvasPixmap (Qt v2.2+)</A
+>TQCanvasPixmap (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasPixmap</TT
+>TQCanvasPixmap</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10341,7 +10341,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3888"
->QCanvasPixmapArray (Qt v2.2+)</A
+>TQCanvasPixmapArray (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -10353,14 +10353,14 @@ NAME="AEN3890"
><CODE
CLASS="FUNCDEF"
>QPixmapArray</CODE
->(QList&lt;QPixmap&gt; pixmaps, QList&lt;QPoint&gt; hotspots);<P
+>(QList&lt;TQPixmap&gt; pixmaps, QList&lt;TQPoint&gt; hotspots);<P
></P
></DIV
><P
>The <TT
CLASS="LITERAL"
>pixmaps</TT
-> argument is a Python list of QPixmap instances,
+> argument is a Python list of TQPixmap instances,
and the <TT
CLASS="LITERAL"
>hotspots</TT
@@ -10376,14 +10376,14 @@ NAME="AEN3900"
><CODE
CLASS="FUNCDEF"
>QPixmapArray</CODE
->(QValueList&lt;QPixmap&gt; pixmaps, QPointArray hotspots = QPointArray());<P
+>(TQValueList&lt;TQPixmap&gt; pixmaps, TQPointArray hotspots = TQPointArray());<P
></P
></DIV
><P
>The <TT
CLASS="LITERAL"
>pixmaps</TT
-> argument is a Python list of QPixmap instances.
+> argument is a Python list of TQPixmap instances.
(Qt v3+)</P
></DIV
><DIV
@@ -10392,12 +10392,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3909"
->QCanvasPolygon (Qt v2.2+)</A
+>TQCanvasPolygon (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasPolygon</TT
+>TQCanvasPolygon</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10406,12 +10406,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3913"
->QCanvasPolygonalItem (Qt v2.2+)</A
+>TQCanvasPolygonalItem (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasPolygonalItem</TT
+>TQCanvasPolygonalItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10420,12 +10420,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3917"
->QCanvasRectangle (Qt v2.2+)</A
+>TQCanvasRectangle (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasRectangle</TT
+>TQCanvasRectangle</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10434,12 +10434,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3921"
->QCanvasSpline (Qt v3.0+)</A
+>TQCanvasSpline (Qt v3.0+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasSpline</TT
+>TQCanvasSpline</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10448,12 +10448,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3925"
->QCanvasSprite (Qt v2.2+)</A
+>TQCanvasSprite (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasSprite</TT
+>TQCanvasSprite</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10462,12 +10462,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3929"
->QCanvasText (Qt v2.2+)</A
+>TQCanvasText (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasText</TT
+>TQCanvasText</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10476,12 +10476,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN3933"
->QCanvasView (Qt v2.2+)</A
+>TQCanvasView (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCanvasView</TT
+>TQCanvasView</TT
> is fully implemented.</P
></DIV
></DIV
@@ -10952,12 +10952,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4079"
->QGL</A
+>TQGL</A
></H3
><P
><TT
CLASS="LITERAL"
->QGL</TT
+>TQGL</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10966,12 +10966,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4083"
->QGLContext</A
+>TQGLContext</A
></H3
><P
><TT
CLASS="LITERAL"
->QGLContext</TT
+>TQGLContext</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10980,12 +10980,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4087"
->QGLFormat</A
+>TQGLFormat</A
></H3
><P
><TT
CLASS="LITERAL"
->QGLFormat</TT
+>TQGLFormat</TT
> is fully implemented.</P
></DIV
><DIV
@@ -10994,12 +10994,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4091"
->QGLWidget</A
+>TQGLWidget</A
></H3
><P
><TT
CLASS="LITERAL"
->QGLWidget</TT
+>TQGLWidget</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11008,7 +11008,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4095"
->QGLColormap (Qt v3.0+)</A
+>TQGLColormap (Qt v3.0+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11044,12 +11044,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4110"
->QDns (Qt v2.2+)</A
+>TQDns (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDns</TT
+>TQDns</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11058,7 +11058,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4114"
->QFtp (Qt v2.2+)</A
+>TQFtp (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11093,7 +11093,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4127"
->QHostAddress (Qt v2.2+)</A
+>TQHostAddress (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11104,7 +11104,7 @@ NAME="AEN4129"
></A
><CODE
CLASS="FUNCDEF"
->QHostAddress</CODE
+>TQHostAddress</CODE
>(Q_UINT8 *ip6Addr);<P
></P
></DIV
@@ -11119,7 +11119,7 @@ NAME="AEN4135"
></A
><CODE
CLASS="FUNCDEF"
->QHostAddress</CODE
+>TQHostAddress</CODE
>(const Q_IPV6ADDR &amp;ip6Addr);<P
></P
></DIV
@@ -11162,7 +11162,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4153"
->QHttp (Qt v3+)</A
+>TQHttp (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11197,12 +11197,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4166"
->QHttpHeader (Qt v3.1+)</A
+>TQHttpHeader (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QHttpHeader</TT
+>TQHttpHeader</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11211,12 +11211,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4170"
->QHttpRequestHeader (Qt v3.1+)</A
+>TQHttpRequestHeader (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QHttpRequestHeader</TT
+>TQHttpRequestHeader</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11225,12 +11225,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4174"
->QHttpResponseHeader (Qt v3.1+)</A
+>TQHttpResponseHeader (Qt v3.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QHttpResponseHeader</TT
+>TQHttpResponseHeader</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11239,12 +11239,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4178"
->QLocalFs (Qt v2.1+)</A
+>TQLocalFs (Qt v2.1+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QLocalFs</TT
+>TQLocalFs</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11253,12 +11253,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4182"
->QServerSocket (Qt v2.2+)</A
+>TQServerSocket (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QServerSocket</TT
+>TQServerSocket</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11267,7 +11267,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4186"
->QSocket (Qt v2.2+)</A
+>TQSocket (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11350,7 +11350,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4220"
->QSocketDevice (Qt v2.2+)</A
+>TQSocketDevice (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11430,7 +11430,7 @@ NAME="AEN4248"
></A
><CODE
CLASS="FUNCDEF"
->QApplication</CODE
+>TQApplication</CODE
>(int&#38; argc, char **argv, Type type);<P
></P
></DIV
@@ -11473,7 +11473,7 @@ NAME="AEN4266"
></A
><CODE
CLASS="FUNCDEF"
->virtual QString exec const</CODE
+>virtual TQString exec const</CODE
>();<P
></P
></DIV
@@ -11542,7 +11542,7 @@ NAME="AEN4286"
></A
><CODE
CLASS="FUNCDEF"
->QString exec const</CODE
+>TQString exec const</CODE
>();<P
></P
></DIV
@@ -11748,7 +11748,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4346"
->QDataBrowser (Qt v3+)</A
+>TQDataBrowser (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11775,12 +11775,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4354"
->QDataTable (Qt v3+)</A
+>TQDataTable (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDataTable</TT
+>TQDataTable</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11789,12 +11789,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4358"
->QDataView (Qt v3+)</A
+>TQDataView (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDataView</TT
+>TQDataView</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11803,12 +11803,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4362"
->QEditorFactory (Qt v3+)</A
+>TQEditorFactory (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QEditorFactory</TT
+>TQEditorFactory</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11817,12 +11817,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4366"
->QSql (Qt v3+)</A
+>TQSql (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSql</TT
+>TQSql</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11831,7 +11831,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4370"
->QSqlCursor (Qt v3+)</A
+>TQSqlCursor (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11861,7 +11861,7 @@ NAME="AEN4379"
><CODE
CLASS="FUNCDEF"
>virtual int del</CODE
->(const QString &amp;filter, bool invalidate = TRUE);<P
+>(const TQString &amp;filter, bool invalidate = TRUE);<P
></P
></DIV
><P
@@ -11879,7 +11879,7 @@ NAME="AEN4388"
><CODE
CLASS="FUNCDEF"
>bool exec</CODE
->(const QString &amp;query);<P
+>(const TQString &amp;query);<P
></P
></DIV
><P
@@ -11894,7 +11894,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4395"
->QSqlDatabase (Qt v3+)</A
+>TQSqlDatabase (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -11905,8 +11905,8 @@ NAME="AEN4397"
></A
><CODE
CLASS="FUNCDEF"
->QSqlQuery exec</CODE
->(const QString &amp;query = QString::null);<P
+>TQSqlQuery exec</CODE
+>(const TQString &amp;query = TQString::null);<P
></P
></DIV
><P
@@ -11921,12 +11921,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4404"
->QSqlDriver (Qt v3+)</A
+>TQSqlDriver (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlDriver</TT
+>TQSqlDriver</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11935,12 +11935,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4408"
->QSqlEditorFactory (Qt v3+)</A
+>TQSqlEditorFactory (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlEditorFactory</TT
+>TQSqlEditorFactory</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11949,12 +11949,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4412"
->QSqlError (Qt v3+)</A
+>TQSqlError (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlError</TT
+>TQSqlError</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11963,12 +11963,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4416"
->QSqlField (Qt v3+)</A
+>TQSqlField (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlField</TT
+>TQSqlField</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11977,12 +11977,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4420"
->QSqlFieldInfo (Qt v3+)</A
+>TQSqlFieldInfo (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlFieldInfo</TT
+>TQSqlFieldInfo</TT
> is fully implemented.</P
></DIV
><DIV
@@ -11991,12 +11991,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4424"
->QSqlForm (Qt v3+)</A
+>TQSqlForm (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlForm</TT
+>TQSqlForm</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12005,12 +12005,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4428"
->QSqlIndex (Qt v3+)</A
+>TQSqlIndex (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlIndex</TT
+>TQSqlIndex</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12019,12 +12019,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4432"
->QSqlPropertyMap (Qt v3+)</A
+>TQSqlPropertyMap (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlPropertyMap</TT
+>TQSqlPropertyMap</TT
> is fully implemented. However, because PyQt
does not allow new properties to be defined, it is not possible to implement
custom editor widgets in Python and add them to a property map. This will
@@ -12038,7 +12038,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4437"
->QSqlQuery (Qt v3+)</A
+>TQSqlQuery (Qt v3+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -12049,7 +12049,7 @@ NAME="AEN4439"
></A
><CODE
CLASS="FUNCDEF"
->QMap&lt;QString,QVariant&gt; boundValues const</CODE
+>TQMap&lt;TQString,TQVariant&gt; boundValues const</CODE
>();<P
></P
></DIV
@@ -12065,7 +12065,7 @@ NAME="AEN4444"
><CODE
CLASS="FUNCDEF"
>virtual bool exec</CODE
->(const QString &amp;query);<P
+>(const TQString &amp;query);<P
></P
></DIV
><P
@@ -12098,12 +12098,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4457"
->QSqlRecord (Qt v3+)</A
+>TQSqlRecord (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlRecord</TT
+>TQSqlRecord</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12112,16 +12112,16 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4461"
->QSqlRecordInfo (Qt v3+)</A
+>TQSqlRecordInfo (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlRecordInfo</TT
+>TQSqlRecordInfo</TT
> is implemented as a Python list of
<TT
CLASS="LITERAL"
->QSqlFieldInfo</TT
+>TQSqlFieldInfo</TT
> instances.</P
></DIV
><DIV
@@ -12130,12 +12130,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4466"
->QSqlResult (Qt v3+)</A
+>TQSqlResult (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QSqlResult</TT
+>TQSqlResult</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12144,7 +12144,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4470"
->QSqlSelectCursor (Qt v3.2.0+)</A
+>TQSqlSelectCursor (Qt v3.2.0+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -12174,7 +12174,7 @@ NAME="AEN4479"
><CODE
CLASS="FUNCDEF"
>bool exec</CODE
->(const QString &amp;query);<P
+>(const TQString &amp;query);<P
></P
></DIV
><P
@@ -12201,12 +12201,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4489"
->QTable (Qt v2.2+)</A
+>TQTable (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTable</TT
+>TQTable</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12215,12 +12215,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4493"
->QTableItem (Qt v2.2+)</A
+>TQTableItem (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTableItem</TT
+>TQTableItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12229,12 +12229,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4497"
->QCheckTableItem (Qt v3+)</A
+>TQCheckTableItem (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QCheckTableItem</TT
+>TQCheckTableItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12243,12 +12243,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4501"
->QComboTableItem (Qt v3+)</A
+>TQComboTableItem (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QComboTableItem</TT
+>TQComboTableItem</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12257,12 +12257,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4505"
->QTableSelection (Qt v2.2+)</A
+>TQTableSelection (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QTableSelection</TT
+>TQTableSelection</TT
> is fully implemented.</P
></DIV
></DIV
@@ -12283,12 +12283,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4512"
->QWidgetFactory (Qt v3+)</A
+>TQWidgetFactory (Qt v3+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QWidgetFactory</TT
+>TQWidgetFactory</TT
> is fully implemented.</P
></DIV
></DIV
@@ -12309,12 +12309,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4519"
->QDomImplementation (Qt v2.2+)</A
+>TQDomImplementation (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomImplementation</TT
+>TQDomImplementation</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12323,12 +12323,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4523"
->QDomNode (Qt v2.2+)</A
+>TQDomNode (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomNode</TT
+>TQDomNode</TT
> is fully implemented, including the Python
<TT
CLASS="LITERAL"
@@ -12344,12 +12344,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4529"
->QDomNodeList (Qt v2.2+)</A
+>TQDomNodeList (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomNodeList</TT
+>TQDomNodeList</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12358,7 +12358,7 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4533"
->QDomDocument (Qt v2.2+)</A
+>TQDomDocument (Qt v2.2+)</A
></H3
><DIV
CLASS="FUNCSYNOPSIS"
@@ -12370,7 +12370,7 @@ NAME="AEN4535"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QCString &amp;buffer, bool namespaceProcessing, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQCString &amp;buffer, bool namespaceProcessing, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12407,7 +12407,7 @@ NAME="AEN4555"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QByteArray &amp;buffer, bool namespaceProcessing, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQByteArray &amp;buffer, bool namespaceProcessing, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12444,7 +12444,7 @@ NAME="AEN4575"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QString &amp;text, bool namespaceProcessing, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQString &amp;text, bool namespaceProcessing, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12481,7 +12481,7 @@ NAME="AEN4595"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QIODevice *dev, bool namespaceProcessing, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQIODevice *dev, bool namespaceProcessing, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12518,7 +12518,7 @@ NAME="AEN4615"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QCString &amp;buffer, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQCString &amp;buffer, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12551,7 +12551,7 @@ NAME="AEN4632"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QByteArray &amp;buffer, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQByteArray &amp;buffer, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12584,7 +12584,7 @@ NAME="AEN4649"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QString &amp;text, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQString &amp;text, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12617,7 +12617,7 @@ NAME="AEN4666"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(const QIODevice *dev, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(const TQIODevice *dev, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12650,7 +12650,7 @@ NAME="AEN4683"
><CODE
CLASS="FUNCDEF"
>bool setContent</CODE
->(QXmlInputSource *source, QXmlReader *reader, QString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
+>(TQXmlInputSource *source, TQXmlReader *reader, TQString *errorMsg = 0, int *errorLine = 0, int *errorColumn = 0);<P
></P
></DIV
><P
@@ -12662,12 +12662,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4697"
->QDomDocumentFragment (Qt v2.2+)</A
+>TQDomDocumentFragment (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomDocumentFragment</TT
+>TQDomDocumentFragment</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12676,12 +12676,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4701"
->QDomDocumentType (Qt v2.2+)</A
+>TQDomDocumentType (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomDocumentType</TT
+>TQDomDocumentType</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12690,12 +12690,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4705"
->QDomNamedNodeMap (Qt v2.2+)</A
+>TQDomNamedNodeMap (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomNamedNodeMap</TT
+>TQDomNamedNodeMap</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12704,12 +12704,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4709"
->QDomCharacterData (Qt v2.2+)</A
+>TQDomCharacterData (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomCharacterData</TT
+>TQDomCharacterData</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12718,12 +12718,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4713"
->QDomAttr (Qt v2.2+)</A
+>TQDomAttr (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomAttr</TT
+>TQDomAttr</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12732,12 +12732,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4717"
->QDomElement (Qt v2.2+)</A
+>TQDomElement (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomElement</TT
+>TQDomElement</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12746,12 +12746,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4721"
->QDomText (Qt v2.2+)</A
+>TQDomText (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomText</TT
+>TQDomText</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12760,12 +12760,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4725"
->QDomComment (Qt v2.2+)</A
+>TQDomComment (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomComment</TT
+>TQDomComment</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12774,12 +12774,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4729"
->QDomCDATASection (Qt v2.2+)</A
+>TQDomCDATASection (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomCDATASection</TT
+>TQDomCDATASection</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12788,12 +12788,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4733"
->QDomNotation (Qt v2.2+)</A
+>TQDomNotation (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomNotation</TT
+>TQDomNotation</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12802,12 +12802,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4737"
->QDomEntity (Qt v2.2+)</A
+>TQDomEntity (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomEntity</TT
+>TQDomEntity</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12816,12 +12816,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4741"
->QDomEntityReference (Qt v2.2+)</A
+>TQDomEntityReference (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomEntityReference</TT
+>TQDomEntityReference</TT
> is fully implemented.</P
></DIV
><DIV
@@ -12830,12 +12830,12 @@ CLASS="SECT2"
CLASS="SECT2"
><A
NAME="AEN4745"
->QDomProcessingInstruction (Qt v2.2+)</A
+>TQDomProcessingInstruction (Qt v2.2+)</A
></H3
><P
><TT
CLASS="LITERAL"
->QDomProcessingInstruction</TT
+>TQDomProcessingInstruction</TT
> is fully implemented.</P
></DIV
></DIV