Rename style nt* related files to equivalent tq*

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/160/head
Michele Calgaro 6 months ago
parent ccbc1c3572
commit 7bc57326e6

@ -1,5 +1,5 @@
Qt 3.5 is a new feature release. It is not backwards compatible with any
prior TQt3 version due to changes in the QStyle API.
prior Qt3 version due to changes in the QStyle API.
****************************************************************************
* General *

@ -131,7 +131,7 @@ loading of shared libraries. Access to the shared libraries uses a
COM-like interface. QPluginManager makes it trivial to implement
plugin support in applications. The TQt library is able to load
additional styles, database drivers and text codecs from plugins which
implement the relevant interfaces, e.g. QStyleFactoryInterface,
implement the relevant interfaces, e.g. TQStyleFactoryInterface,
TQSqlDriverInterface or TQTextCodecInterface. It is possible to remove
unused components from the TQt library, and easy to extend any
application with 3rd party styles, database drivers or text codecs.

@ -69,7 +69,7 @@
<area shape="rect" coords="40,486,151,502" href="ntqsgistyle.html">
<area shape="rect" coords="40,502,152,523" href="ntqcdestyle.html">
<area shape="rect" coords="40,523,149,542" href="ntqmotifplusstyle.html">
<area shape="rect" coords="40,542,150,565" href="ntqstyleplugin.html">
<area shape="rect" coords="40,542,150,565" href="tqstyleplugin.html">
<area shape="rect" coords="42,572,151,598" href="tqsqleditorfactory.html">
<area shape="rect" coords="41,595,149,612" href="tqsql.html">
<area shape="rect" coords="41,612,137,629" href="tqsqlresult.html">
@ -122,8 +122,8 @@
<area shape="rect" coords="290,308,399,326" href="ntqsound.html">
<area shape="rect" coords="294,327,402,346" href="ntqtimer.html">
<area shape="rect" coords="294,346,398,363" href="ntqtranslator.html">
<area shape="rect" coords="294,362,398,379" href="ntqstylesheet.html">
<area shape="rect" coords="294,379,399,396" href="ntqstyle.html">
<area shape="rect" coords="294,362,398,379" href="tqstylesheet.html">
<area shape="rect" coords="294,379,399,396" href="tqstyle.html">
<area shape="rect" coords="295,396,399,417" href="ntqurloperator.html">
<area shape="rect" coords="295,417,400,434" href="qnetworkoperation.html">
<area shape="rect" coords="291,434,400,452" href="ntqnetworkprotocol.html">
@ -229,7 +229,7 @@
<area shape="rect" coords="666,487,748,505" href="ntqfile.html">
<area shape="rect" coords="666,505,749,524" href="ntqbuffer.html">
<area shape="rect" coords="667,524,786,541" href="ntqsocketdevice.html">
<area shape="rect" coords="664,541,786,560" href="qstylesheetitem.html">
<area shape="rect" coords="664,541,786,560" href="tqstylesheetitem.html">
<area shape="rect" coords="664,561,792,579" href="qcustommenuitem.html">
<area shape="rect" coords="664,577,786,593" href="qlistboxitem.html">
<area shape="rect" coords="664,593,788,611" href="qlistboxtext.html">

@ -1,6 +1,6 @@
/****************************************************************************
**
** Documentation for creating custom styles with QStyle
** Documentation for creating custom styles with TQStyle
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
@ -74,7 +74,7 @@ example we will inherit from QWindowsStyle.
Depending on which parts of the base style you want to change, you
must re-implement the functions that are used to draw those parts
of the interface. If you take a look at the \l{QStyle} documentation,
of the interface. If you take a look at the \l{TQStyle} documentation,
you will find a list of the different primitives, controls and complex
controls. In this example we will first change the look of the
standard arrows that are used in the QWindowsStyle. The arrows are
@ -96,7 +96,7 @@ public:
const QRect & r,
const QColorGroup & cg,
SFlags flags = Style_Default,
const QStyleOption & = QStyleOption::Default ) const;
const TQStyleOption & = TQStyleOption::Default ) const;
private:
// Disabled copy constructor and operator=
@ -110,7 +110,7 @@ style. TQObject is the base class for all style classes in Qt, and a
TQObject inherently cannot be copied since there are some aspects of it
that are not copyable.
From the QStyle docs we see that \c PE_ArrowUp, \c PE_ArrowDown, \c
From the TQStyle docs we see that \c PE_ArrowUp, \c PE_ArrowDown, \c
PE_ArrowLeft and \c PE_ArrowRight are the primitives we need to do
something with. We get the following in our drawPrimitive() function:
@ -128,7 +128,7 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe,
const QRect & r,
const QColorGroup & cg,
SFlags flags,
const QStyleOption & opt ) const
const TQStyleOption & opt ) const
{
// we are only interested in the arrows
if (pe >= PE_ArrowUp && pe <= PE_ArrowLeft) {

@ -113,7 +113,7 @@ The available options are:
and tagging typed data (eg. text, images, colors) (\l QMimeSource)
\i &nbsp;
\row \i TQT_NO_RICHTEXT
\i HTML-like text (\l QStyleSheet, \l QLabel)
\i HTML-like text (\l TQStyleSheet, \l QLabel)
\i TQT_NO_MIME
\row \i TQT_NO_DRAGANDDROP
\i Drag-and-drop data between applications (\l QDragObject)
@ -176,7 +176,7 @@ The available options are:
\header \i31 Painting/drawing
\row \i TQT_NO_COLORNAMES
\i Color names such as "red", used by some \l TQColor constructors
and by some HTML documents (\l TQColor, \l QStyleSheet)
and by some HTML documents (\l TQColor, \l TQStyleSheet)
\i &nbsp;
\row \i TQT_NO_TRANSFORMATIONS
\i Used by a number of classes in Qt. With this, rotation and

@ -362,12 +362,12 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqstrlistiterator.html">TQStrListIterator</a></b><td>Iterator for the TQStrList and TQStrIList classes
<tr bgcolor=#f0f0f0><td><b><a href="tqstring.html">TQString</a></b><td>Abstraction of Unicode text and the classic C '&#92;0'-terminated char array
<tr bgcolor=#f0f0f0><td><b><a href="tqstringlist.html">TQStringList</a></b><td>List of strings
<tr bgcolor=#f0f0f0><td><b><a href="ntqstyle.html">TQStyle</a></b><td>The look and feel of a GUI
<tr bgcolor=#f0f0f0><td><b><a href="ntqstylefactory.html">TQStyleFactory</a></b><td>Creates TQStyle objects
<tr bgcolor=#f0f0f0><td><b><a href="qstyleoption.html">TQStyleOption</a></b><td>Optional parameters for TQStyle functions
<tr bgcolor=#f0f0f0><td><b><a href="ntqstyleplugin.html">TQStylePlugin</a></b><td>Abstract base for custom TQStyle plugins
<tr bgcolor=#f0f0f0><td><b><a href="ntqstylesheet.html">TQStyleSheet</a></b><td>Collection of styles for rich text rendering and a generator of tags
<tr bgcolor=#f0f0f0><td><b><a href="qstylesheetitem.html">TQStyleSheetItem</a></b><td>Encapsulation of a set of text styles
<tr bgcolor=#f0f0f0><td><b><a href="tqstyle.html">TQStyle</a></b><td>The look and feel of a GUI
<tr bgcolor=#f0f0f0><td><b><a href="tqstylefactory.html">TQStyleFactory</a></b><td>Creates TQStyle objects
<tr bgcolor=#f0f0f0><td><b><a href="tqstyleoption.html">TQStyleOption</a></b><td>Optional parameters for TQStyle functions
<tr bgcolor=#f0f0f0><td><b><a href="tqstyleplugin.html">TQStylePlugin</a></b><td>Abstract base for custom TQStyle plugins
<tr bgcolor=#f0f0f0><td><b><a href="tqstylesheet.html">TQStyleSheet</a></b><td>Collection of styles for rich text rendering and a generator of tags
<tr bgcolor=#f0f0f0><td><b><a href="tqstylesheetitem.html">TQStyleSheetItem</a></b><td>Encapsulation of a set of text styles
<tr bgcolor=#f0f0f0><td><b><a href="ntqsyntaxhighlighter.html">TQSyntaxHighlighter</a></b><td>Base class for implementing TQTextEdit syntax highlighters
<tr bgcolor=#f0f0f0><td><b><a href="qtab.html">TQTab</a></b><td>The structures in a TQTabBar
<tr bgcolor=#f0f0f0><td><b><a href="ntqtabbar.html">TQTabBar</a></b><td>Tab bar, e.g. for use in tabbed dialogs

@ -64,8 +64,8 @@ style.
<tr bgcolor=#f0f0f0><td><b><a href="ntqsizegrip.html">TQSizeGrip</a></b><td>Corner-grip for resizing a top-level window
<tr bgcolor=#f0f0f0><td><b><a href="ntqsizepolicy.html">TQSizePolicy</a></b><td>Layout attribute describing horizontal and vertical resizing policy
<tr bgcolor=#f0f0f0><td><b><a href="qspaceritem.html">TQSpacerItem</a></b><td>Blank space in a layout
<tr bgcolor=#f0f0f0><td><b><a href="ntqstyle.html">TQStyle</a></b><td>The look and feel of a GUI
<tr bgcolor=#f0f0f0><td><b><a href="qstyleoption.html">TQStyleOption</a></b><td>Optional parameters for TQStyle functions
<tr bgcolor=#f0f0f0><td><b><a href="tqstyle.html">TQStyle</a></b><td>The look and feel of a GUI
<tr bgcolor=#f0f0f0><td><b><a href="tqstyleoption.html">TQStyleOption</a></b><td>Optional parameters for TQStyle functions
<tr bgcolor=#f0f0f0><td><b><a href="ntqvbox.html">TQVBox</a></b><td>Vertical geometry management of its child widgets
<tr bgcolor=#f0f0f0><td><b><a href="qvboxlayout.html">TQVBoxLayout</a></b><td>Lines up widgets vertically
<tr bgcolor=#f0f0f0><td><b><a href="ntqvbuttongroup.html">TQVButtonGroup</a></b><td>Organizes TQButton widgets in a vertical column

@ -59,7 +59,7 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="40,486,151,502" href="ntqsgistyle.html">
<area shape="rect" coords="40,502,152,523" href="ntqcdestyle.html">
<area shape="rect" coords="40,523,149,542" href="ntqmotifplusstyle.html">
<area shape="rect" coords="40,542,150,565" href="ntqstyleplugin.html">
<area shape="rect" coords="40,542,150,565" href="tqstyleplugin.html">
<area shape="rect" coords="42,572,151,598" href="tqsqleditorfactory.html">
<area shape="rect" coords="41,595,149,612" href="tqsql.html">
<area shape="rect" coords="41,612,137,629" href="tqsqlresult.html">
@ -112,8 +112,8 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="290,308,399,326" href="ntqsound.html">
<area shape="rect" coords="294,327,402,346" href="ntqtimer.html">
<area shape="rect" coords="294,346,398,363" href="ntqtranslator.html">
<area shape="rect" coords="294,362,398,379" href="ntqstylesheet.html">
<area shape="rect" coords="294,379,399,396" href="ntqstyle.html">
<area shape="rect" coords="294,362,398,379" href="tqstylesheet.html">
<area shape="rect" coords="294,379,399,396" href="tqstyle.html">
<area shape="rect" coords="295,396,399,417" href="ntqurloperator.html">
<area shape="rect" coords="295,417,400,434" href="qnetworkoperation.html">
<area shape="rect" coords="291,434,400,452" href="ntqnetworkprotocol.html">
@ -219,7 +219,7 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="666,487,748,505" href="ntqfile.html">
<area shape="rect" coords="666,505,749,524" href="ntqbuffer.html">
<area shape="rect" coords="667,524,786,541" href="ntqsocketdevice.html">
<area shape="rect" coords="664,541,786,560" href="qstylesheetitem.html">
<area shape="rect" coords="664,541,786,560" href="tqstylesheetitem.html">
<area shape="rect" coords="664,561,792,579" href="qcustommenuitem.html">
<area shape="rect" coords="664,577,786,593" href="qlistboxitem.html">
<area shape="rect" coords="664,593,788,611" href="qlistboxtext.html">

@ -869,7 +869,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"><b>P</b>
<td><a href="ntqpaintdevice.html">TQPaintDevice</a>
<td align="right">
<td><a href="ntqstyle.html">TQStyle</a>
<td><a href="tqstyle.html">TQStyle</a>
<td align="right">
<td><a href="tqxmllocator.html">TQXmlLocator</a>
<tr>
@ -880,7 +880,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right">
<td><a href="ntqpaintdevicemetrics.html">TQPaintDeviceMetrics</a>
<td align="right">
<td><a href="ntqstylefactory.html">TQStyleFactory</a>
<td><a href="tqstylefactory.html">TQStyleFactory</a>
<td align="right">
<td><a href="tqxmlnamespacesupport.html">TQXmlNamespaceSupport</a>
<tr>
@ -891,7 +891,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right">
<td><a href="ntqpainter.html">TQPainter</a>
<td align="right">
<td><a href="qstyleoption.html">TQStyleOption</a>
<td><a href="tqstyleoption.html">TQStyleOption</a>
<td align="right">
<td><a href="tqxmlparseexception.html">TQXmlParseException</a>
<tr>
@ -902,7 +902,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right">
<td><a href="qpaintevent.html">TQPaintEvent</a>
<td align="right">
<td><a href="ntqstyleplugin.html">TQStylePlugin</a>
<td><a href="tqstyleplugin.html">TQStylePlugin</a>
<td align="right">
<td><a href="tqxmlreader.html">TQXmlReader</a>
<tr>
@ -913,7 +913,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right">
<td><a href="tqpair.html">TQPair</a>
<td align="right">
<td><a href="ntqstylesheet.html">TQStyleSheet</a>
<td><a href="tqstylesheet.html">TQStyleSheet</a>
<td align="right">
<td><a href="tqxmlsimplereader.html">TQXmlSimpleReader</a>
<tr>
@ -924,7 +924,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right">
<td><a href="ntqpalette.html">TQPalette</a>
<td align="right">
<td><a href="qstylesheetitem.html">TQStyleSheetItem</a>
<td><a href="tqstylesheetitem.html">TQStyleSheetItem</a>
<td>
<td>
<tr>

@ -63,7 +63,7 @@ example we will inherit from TQWindowsStyle.
</h3>
<a name="1-2"></a><p> Depending on which parts of the base style you want to change, you
must re-implement the functions that are used to draw those parts
of the interface. If you take a look at the <a href="ntqstyle.html">TQStyle</a> documentation,
of the interface. If you take a look at the <a href="tqstyle.html">TQStyle</a> documentation,
you will find a list of the different primitives, controls and complex
controls. In this example we will first change the look of the
standard arrows that are used in the TQWindowsStyle. The arrows are
@ -84,7 +84,7 @@ public:
const <a href="ntqrect.html">TQRect</a> &amp; r,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg,
SFlags flags = Style_Default,
const <a href="qstyleoption.html">TQStyleOption</a> &amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a> &amp; = TQStyleOption::Default ) const;
private:
// Disabled copy constructor and operator=
@ -97,7 +97,7 @@ private:
style. <a href="tqobject.html">TQObject</a> is the base class for all style classes in TQt, and a
TQObject inherently cannot be copied since there are some aspects of it
that are not copyable.
<p> From the <a href="ntqstyle.html">TQStyle</a> docs we see that <tt>PE_ArrowUp</tt>, <tt>PE_ArrowDown</tt>, <tt>PE_ArrowLeft</tt> and <tt>PE_ArrowRight</tt> are the primitives we need to do
<p> From the <a href="tqstyle.html">TQStyle</a> docs we see that <tt>PE_ArrowUp</tt>, <tt>PE_ArrowDown</tt>, <tt>PE_ArrowLeft</tt> and <tt>PE_ArrowRight</tt> are the primitives we need to do
something with. We get the following in our drawPrimitive() function:
<p> <pre>
CustomStyle::CustomStyle()
@ -113,7 +113,7 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe,
const <a href="ntqrect.html">TQRect</a> &amp; r,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg,
SFlags flags,
const <a href="qstyleoption.html">TQStyleOption</a> &amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a> &amp; opt ) const
{
// we are only interested in the arrows
if (pe &gt;= PE_ArrowUp &amp;&amp; pe &lt;= PE_ArrowLeft) {
@ -164,7 +164,7 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe,
p-&gt;<a href="ntqpainter.html#drawPolygon">drawPolygon</a>( pa );
} else {
// let the base style handle the other primitives
TQWindowsStyle::<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, data );
TQWindowsStyle::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, data );
}
}
</pre>

@ -96,7 +96,7 @@ for all Unicode characters.
and tagging typed data (eg. text, images, colors) (<a href="qmimesource.html">TQMimeSource</a>)
<td valign="top">&nbsp;
<tr bgcolor="#f0f0f0"> <td valign="top">TQT_NO_RICHTEXT
<td valign="top">HTML-like text (<a href="ntqstylesheet.html">TQStyleSheet</a>, <a href="ntqlabel.html">TQLabel</a>)
<td valign="top">HTML-like text (<a href="tqstylesheet.html">TQStyleSheet</a>, <a href="ntqlabel.html">TQLabel</a>)
<td valign="top">TQT_NO_MIME
<tr bgcolor="#d0d0d0"> <td valign="top">TQT_NO_DRAGANDDROP
<td valign="top">Drag-and-drop data between applications (<a href="ntqdragobject.html">TQDragObject</a>)
@ -154,7 +154,7 @@ with local file retrieval included (<a href="ntqnetworkprotocol.html">TQNetworkP
<tr bgcolor="#a2c511"> <th valign="top" colspan="3" rowspan="1"> Painting/drawing
<tr bgcolor="#f0f0f0"> <td valign="top">TQT_NO_COLORNAMES
<td valign="top">Color names such as "red", used by some <a href="ntqcolor.html">TQColor</a> constructors
and by some HTML documents (<a href="ntqcolor.html">TQColor</a>, <a href="ntqstylesheet.html">TQStyleSheet</a>)
and by some HTML documents (<a href="ntqcolor.html">TQColor</a>, <a href="tqstylesheet.html">TQStyleSheet</a>)
<td valign="top">&nbsp;
<tr bgcolor="#d0d0d0"> <td valign="top">TQT_NO_TRANSFORMATIONS
<td valign="top">Used by a number of classes in TQt. With this, rotation and

@ -132,7 +132,7 @@ abort:
<a href="ntqmessagebox.html#adjustSize">TQMessageBox</a> <a href="ntqsimplerichtext.html#adjustSize">TQSimpleRichText</a> <a href="tqwidget.html#adjustSize">TQWidget</a><li>advance:
<a href="tqcanvas.html#advance">TQCanvas</a> <a href="tqcanvasitem.html#advance">TQCanvasItem</a> <a href="tqcanvassprite.html#advance">TQCanvasSprite</a><li>afterSeek:
<a href="tqsqlquery.html#afterSeek">TQSqlQuery</a><li>alignment:
<a href="ntqgroupbox.html#alignment">TQGroupBox</a> <a href="ntqlabel.html#alignment">TQLabel</a> <a href="qlayoutitem.html#alignment">TQLayoutItem</a> <a href="ntqlineedit.html#alignment">TQLineEdit</a> <a href="ntqmultilineedit.html#alignment">TQMultiLineEdit</a> <a href="qstylesheetitem.html#alignment">TQStyleSheetItem</a> <a href="qtableitem.html#alignment">TQTableItem</a> <a href="tqtextedit.html#alignment">TQTextEdit</a><li>alignmentRect:
<a href="ntqgroupbox.html#alignment">TQGroupBox</a> <a href="ntqlabel.html#alignment">TQLabel</a> <a href="qlayoutitem.html#alignment">TQLayoutItem</a> <a href="ntqlineedit.html#alignment">TQLineEdit</a> <a href="ntqmultilineedit.html#alignment">TQMultiLineEdit</a> <a href="tqstylesheetitem.html#alignment">TQStyleSheetItem</a> <a href="qtableitem.html#alignment">TQTableItem</a> <a href="tqtextedit.html#alignment">TQTextEdit</a><li>alignmentRect:
<a href="ntqlayout.html#alignmentRect">TQLayout</a><li>all:
<a href="qmacmime.html#all">TQMacMime</a> <a href="qwindowsmime.html#all">TQWindowsMime</a><li>allColumnsShowFocus:
<a href="ntqlistview.html#allColumnsShowFocus">TQListView</a><li>allGray:
@ -141,7 +141,7 @@ abort:
<a href="ntqapplication.html#allWidgets">TQApplication</a><li>alloc:
<a href="ntqcolor.html#alloc">TQColor</a> <a href="qscreen.html#alloc">TQScreen</a><li>allocation:
<a href="qwswindow.html#allocation">TQWSWindow</a><li>allowedInContext:
<a href="qstylesheetitem.html#allowedInContext">TQStyleSheetItem</a><li>allowsErrorInteraction:
<a href="tqstylesheetitem.html#allowedInContext">TQStyleSheetItem</a><li>allowsErrorInteraction:
<a href="ntqsessionmanager.html#allowsErrorInteraction">TQSessionManager</a><li>allowsInteraction:
<a href="ntqsessionmanager.html#allowsInteraction">TQSessionManager</a><li>alpha:
<a href="qglformat.html#alpha">TQGLFormat</a><li>anchorAt:
@ -173,7 +173,7 @@ abort:
<a href="ntqapplication.html#argv">TQApplication</a> <a href="qnpinstance.html#argv">TQNPInstance</a><li>arrangeItemsInGrid:
<a href="tqiconview.html#arrangeItemsInGrid">TQIconView</a><li>arrangement:
<a href="tqiconview.html#arrangement">TQIconView</a><li>arrowType:
<a href="qstyleoption.html#arrowType">TQStyleOption</a><li>asBitArray:
<a href="tqstyleoption.html#arrowType">TQStyleOption</a><li>asBitArray:
<a href="ntqvariant.html#asBitArray">TQVariant</a><li>asBitmap:
<a href="ntqvariant.html#asBitmap">TQVariant</a><li>asBool:
<a href="ntqvariant.html#asBool">TQVariant</a><li>asBrush:
@ -371,7 +371,7 @@ c:
<a href="tqxmlcontenthandler.html#characters">TQXmlContentHandler</a><li>checkConnectArgs:
<a href="tqobject.html#checkConnectArgs">TQObject</a><li>checkConnection:
<a href="ntqnetworkprotocol.html#checkConnection">TQNetworkProtocol</a><li>checkListItem:
<a href="qstyleoption.html#checkListItem">TQStyleOption</a><li>checkOverflow:
<a href="tqstyleoption.html#checkListItem">TQStyleOption</a><li>checkOverflow:
<a href="ntqlcdnumber.html#checkOverflow">TQLCDNumber</a><li>child:
<a href="qchildevent.html#child">TQChildEvent</a> <a href="tqobject.html#child">TQObject</a><li>childAt:
<a href="tqwidget.html#childAt">TQWidget</a><li>childCount:
@ -454,7 +454,7 @@ c:
<a href="ntqlistview.html#collapsed">TQListView</a><li>collidesWith:
<a href="tqcanvasitem.html#collidesWith">TQCanvasItem</a><li>collisions:
<a href="tqcanvas.html#collisions">TQCanvas</a> <a href="tqcanvasitem.html#collisions">TQCanvasItem</a><li>color:
<a href="ntqbrush.html#color">TQBrush</a> <a href="tqcanvastext.html#color">TQCanvasText</a> <a href="qcolorgroup.html#color">TQColorGroup</a> <a href="tqimage.html#color">TQImage</a> <a href="ntqpalette.html#color">TQPalette</a> <a href="ntqpen.html#color">TQPen</a> <a href="qstyleoption.html#color">TQStyleOption</a> <a href="qstylesheetitem.html#color">TQStyleSheetItem</a> <a href="tqtextedit.html#color">TQTextEdit</a><li>colorGroup:
<a href="ntqbrush.html#color">TQBrush</a> <a href="tqcanvastext.html#color">TQCanvasText</a> <a href="qcolorgroup.html#color">TQColorGroup</a> <a href="tqimage.html#color">TQImage</a> <a href="ntqpalette.html#color">TQPalette</a> <a href="ntqpen.html#color">TQPen</a> <a href="tqstyleoption.html#color">TQStyleOption</a> <a href="tqstylesheetitem.html#color">TQStyleSheetItem</a> <a href="tqtextedit.html#color">TQTextEdit</a><li>colorGroup:
<a href="tqwidget.html#colorGroup">TQWidget</a><li>colorMode:
<a href="ntqprinter.html#colorMode">TQPrinter</a><li>colorNames:
<a href="ntqcolor.html#colorNames">TQColor</a><li>colorSpec:
@ -535,7 +535,7 @@ c:
<a href="qglwidget.html#context">TQGLWidget</a> <a href="ntqsimplerichtext.html#context">TQSimpleRichText</a> <a href="tqtextedit.html#context">TQTextEdit</a> <a href="qtranslatormessage.html#context">TQTranslatorMessage</a><li>contextMenuEvent:
<a href="tqwidget.html#contextMenuEvent">TQWidget</a><li>contextMenuRequested:
<a href="tqiconview.html#contextMenuRequested">TQIconView</a> <a href="ntqlistbox.html#contextMenuRequested">TQListBox</a> <a href="ntqlistview.html#contextMenuRequested">TQListView</a> <a href="ntqtable.html#contextMenuRequested">TQTable</a><li>contexts:
<a href="qstylesheetitem.html#contexts">TQStyleSheetItem</a><li>control:
<a href="tqstylesheetitem.html#contexts">TQStyleSheetItem</a><li>control:
<a href="qaxbase.html#control">TQAxBase</a><li>controlAt:
<a href="qaccessibleinterface.html#controlAt">TQAccessibleInterface</a><li>controlPoints:
<a href="tqcanvasspline.html#controlPoints">TQCanvasSpline</a><li>controllingUnknown:
@ -545,7 +545,7 @@ c:
<a href="tqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage:
<a href="ntqpixmap.html#convertFromImage">TQPixmap</a><li>convertFromMime:
<a href="qmacmime.html#convertFromMime">TQMacMime</a> <a href="qwindowsmime.html#convertFromMime">TQWindowsMime</a><li>convertFromPlainText:
<a href="ntqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators:
<a href="tqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators:
<a href="ntqdir.html#convertSeparators">TQDir</a><li>convertToAbs:
<a href="ntqdir.html#convertToAbs">TQDir</a> <a href="ntqfileinfo.html#convertToAbs">TQFileInfo</a><li>convertToGLFormat:
<a href="qglwidget.html#convertToGLFormat">TQGLWidget</a><li>convertToImage:
@ -563,7 +563,7 @@ c:
<a href="qmacmime.html#countFlavors">TQMacMime</a><li>country:
<a href="ntqlocale.html#country">TQLocale</a><li>countryToString:
<a href="ntqlocale.html#countryToString">TQLocale</a><li>create:
<a href="qaxfactory.html#create">TQAxFactory</a> <a href="qglcontext.html#create">TQGLContext</a> <a href="qgfxdriverfactory.html#create">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#create">TQGfxDriverPlugin</a> <a href="tqimage.html#create">TQImage</a> <a href="qkbddriverfactory.html#create">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#create">TQKbdDriverPlugin</a> <a href="qmousedriverfactory.html#create">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#create">TQMouseDriverPlugin</a> <a href="qnplugin.html#create">TQNPlugin</a> <a href="tqsqldriverplugin.html#create">TQSqlDriverPlugin</a> <a href="ntqstylefactory.html#create">TQStyleFactory</a> <a href="ntqstyleplugin.html#create">TQStylePlugin</a> <a href="tqwidget.html#create">TQWidget</a> <a href="tqwidgetfactory.html#create">TQWidgetFactory</a> <a href="tqwidgetplugin.html#create">TQWidgetPlugin</a><li>createAggregate:
<a href="qaxfactory.html#create">TQAxFactory</a> <a href="qglcontext.html#create">TQGLContext</a> <a href="qgfxdriverfactory.html#create">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#create">TQGfxDriverPlugin</a> <a href="tqimage.html#create">TQImage</a> <a href="qkbddriverfactory.html#create">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#create">TQKbdDriverPlugin</a> <a href="qmousedriverfactory.html#create">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#create">TQMouseDriverPlugin</a> <a href="qnplugin.html#create">TQNPlugin</a> <a href="tqsqldriverplugin.html#create">TQSqlDriverPlugin</a> <a href="tqstylefactory.html#create">TQStyleFactory</a> <a href="tqstyleplugin.html#create">TQStylePlugin</a> <a href="tqwidget.html#create">TQWidget</a> <a href="tqwidgetfactory.html#create">TQWidgetFactory</a> <a href="tqwidgetplugin.html#create">TQWidgetPlugin</a><li>createAggregate:
<a href="qaxbindable.html#createAggregate">TQAxBindable</a><li>createAlphaMask:
<a href="tqimage.html#createAlphaMask">TQImage</a><li>createAttribute:
<a href="tqdomdocument.html#createAttribute">TQDomDocument</a><li>createAttributeNS:
@ -670,7 +670,7 @@ dark:
<a href="ntqdatetimeedit.html#dateEdit">TQDateTimeEdit</a><li>dateFormat:
<a href="tqdatatable.html#dateFormat">TQDataTable</a><li>dateTime:
<a href="ntqdatetimeedit.html#dateTime">TQDateTimeEdit</a><li>day:
<a href="qdate.html#day">TQDate</a> <a href="qstyleoption.html#day">TQStyleOption</a><li>dayOfWeek:
<a href="qdate.html#day">TQDate</a> <a href="tqstyleoption.html#day">TQStyleOption</a><li>dayOfWeek:
<a href="qdate.html#dayOfWeek">TQDate</a><li>dayOfYear:
<a href="qdate.html#dayOfYear">TQDate</a><li>daysInMonth:
<a href="qdate.html#daysInMonth">TQDate</a><li>daysInYear:
@ -695,12 +695,12 @@ dark:
<a href="ntqpixmap.html#defaultOptimization">TQPixmap</a><li>defaultOverlayFormat:
<a href="qglformat.html#defaultOverlayFormat">TQGLFormat</a><li>defaultRenameAction:
<a href="ntqlistview.html#defaultRenameAction">TQListView</a><li>defaultSheet:
<a href="ntqstylesheet.html#defaultSheet">TQStyleSheet</a><li>defaultValue:
<a href="tqstylesheet.html#defaultSheet">TQStyleSheet</a><li>defaultValue:
<a href="tqsqlfieldinfo.html#defaultValue">TQSqlFieldInfo</a><li>defineIOHandler:
<a href="tqimageio.html#defineIOHandler">TQImageIO</a><li>definesFontItalic:
<a href="qstylesheetitem.html#definesFontItalic">TQStyleSheetItem</a><li>definesFontStrikeOut:
<a href="qstylesheetitem.html#definesFontStrikeOut">TQStyleSheetItem</a><li>definesFontUnderline:
<a href="qstylesheetitem.html#definesFontUnderline">TQStyleSheetItem</a><li>del:
<a href="tqstylesheetitem.html#definesFontItalic">TQStyleSheetItem</a><li>definesFontStrikeOut:
<a href="tqstylesheetitem.html#definesFontStrikeOut">TQStyleSheetItem</a><li>definesFontUnderline:
<a href="tqstylesheetitem.html#definesFontUnderline">TQStyleSheetItem</a><li>del:
<a href="tqdatabrowser.html#del">TQDataBrowser</a> <a href="ntqlineedit.html#del">TQLineEdit</a> <a href="tqsqlcursor.html#del">TQSqlCursor</a> <a href="tqtextedit.html#del">TQTextEdit</a><li>delay:
<a href="qtooltipgroup.html#delay">TQToolTipGroup</a><li>delayedCloseFinished:
<a href="ntqsocket.html#delayedCloseFinished">TQSocket</a><li>deleteAllCodecs:
@ -755,7 +755,7 @@ dark:
<a href="ntqmovie.html#disconnectStatus">TQMovie</a><li>disconnectUpdate:
<a href="ntqmovie.html#disconnectUpdate">TQMovie</a><li>display:
<a href="ntqlcdnumber.html#display">TQLCDNumber</a> <a href="qtimeedit.html#display">TQTimeEdit</a> <a href="ntqwhatsthis.html#display">TQWhatsThis</a><li>displayMode:
<a href="qstylesheetitem.html#displayMode">TQStyleSheetItem</a><li>displayText:
<a href="tqstylesheetitem.html#displayMode">TQStyleSheetItem</a><li>displayText:
<a href="ntqlineedit.html#displayText">TQLineEdit</a><li>doAutoScroll:
<a href="tqiconview.html#doAutoScroll">TQIconView</a> <a href="ntqlistview.html#doAutoScroll">TQListView</a><li>doDefaultAction:
<a href="qaccessibleinterface.html#doDefaultAction">TQAccessibleInterface</a><li>doKeyboardAction:
@ -798,19 +798,19 @@ dark:
<a href="ntqbutton.html#drawButton">TQButton</a><li>drawButtonLabel:
<a href="ntqbutton.html#drawButtonLabel">TQButton</a><li>drawChord:
<a href="ntqpainter.html#drawChord">TQPainter</a><li>drawComplexControl:
<a href="ntqstyle.html#drawComplexControl">TQStyle</a><li>drawComplexControlMask:
<a href="ntqstyle.html#drawComplexControlMask">TQStyle</a><li>drawContents:
<a href="tqstyle.html#drawComplexControl">TQStyle</a><li>drawComplexControlMask:
<a href="tqstyle.html#drawComplexControlMask">TQStyle</a><li>drawContents:
<a href="tqcanvasview.html#drawContents">TQCanvasView</a> <a href="ntqframe.html#drawContents">TQFrame</a> <a href="ntqlcdnumber.html#drawContents">TQLCDNumber</a> <a href="ntqlabel.html#drawContents">TQLabel</a> <a href="ntqmenubar.html#drawContents">TQMenuBar</a> <a href="ntqpopupmenu.html#drawContents">TQPopupMenu</a> <a href="ntqscrollview.html#drawContents">TQScrollView</a> <a href="ntqsplashscreen.html#drawContents">TQSplashScreen</a> <a href="ntqtable.html#drawContents">TQTable</a><li>drawContentsOffset:
<a href="ntqlistview.html#drawContentsOffset">TQListView</a> <a href="ntqscrollview.html#drawContentsOffset">TQScrollView</a><li>drawControl:
<a href="ntqstyle.html#drawControl">TQStyle</a><li>drawControlMask:
<a href="ntqstyle.html#drawControlMask">TQStyle</a><li>drawConvexPolygon:
<a href="tqstyle.html#drawControl">TQStyle</a><li>drawControlMask:
<a href="tqstyle.html#drawControlMask">TQStyle</a><li>drawConvexPolygon:
<a href="ntqpainter.html#drawConvexPolygon">TQPainter</a><li>drawCubicBezier:
<a href="ntqpainter.html#drawCubicBezier">TQPainter</a><li>drawEllipse:
<a href="ntqpainter.html#drawEllipse">TQPainter</a><li>drawForeground:
<a href="tqcanvas.html#drawForeground">TQCanvas</a><li>drawFrame:
<a href="ntqframe.html#drawFrame">TQFrame</a><li>drawImage:
<a href="ntqpainter.html#drawImage">TQPainter</a><li>drawItem:
<a href="ntqpopupmenu.html#drawItem">TQPopupMenu</a> <a href="ntqstyle.html#drawItem">TQStyle</a><li>drawLine:
<a href="ntqpopupmenu.html#drawItem">TQPopupMenu</a> <a href="tqstyle.html#drawItem">TQStyle</a><li>drawLine:
<a href="ntqpainter.html#drawLine">TQPainter</a><li>drawLineSegments:
<a href="ntqpainter.html#drawLineSegments">TQPainter</a><li>drawPicture:
<a href="ntqpainter.html#drawPicture">TQPainter</a><li>drawPie:
@ -820,7 +820,7 @@ dark:
<a href="ntqpainter.html#drawPoints">TQPainter</a><li>drawPolygon:
<a href="ntqpainter.html#drawPolygon">TQPainter</a><li>drawPolyline:
<a href="ntqpainter.html#drawPolyline">TQPainter</a><li>drawPrimitive:
<a href="ntqstyle.html#drawPrimitive">TQStyle</a><li>drawRect:
<a href="tqstyle.html#drawPrimitive">TQStyle</a><li>drawRect:
<a href="ntqpainter.html#drawRect">TQPainter</a><li>drawRiffles:
<a href="ntqplatinumstyle.html#drawRiffles">TQPlatinumStyle</a><li>drawRoundRect:
<a href="ntqpainter.html#drawRoundRect">TQPainter</a><li>drawRubber:
@ -907,11 +907,11 @@ echoMode:
<a href="tqwidget.html#erasePixmap">TQWidget</a><li>eraseRect:
<a href="ntqpainter.html#eraseRect">TQPainter</a><li>erased:
<a href="qpaintevent.html#erased">TQPaintEvent</a><li>error:
<a href="ntqassistantclient.html#error">TQAssistantClient</a> <a href="qaxscript.html#error">TQAxScript</a> <a href="qaxscriptmanager.html#error">TQAxScriptManager</a> <a href="ntqftp.html#error">TQFtp</a> <a href="ntqhttp.html#error">TQHttp</a> <a href="ntqsocket.html#error">TQSocket</a> <a href="ntqsocketdevice.html#error">TQSocketDevice</a> <a href="ntqstylesheet.html#error">TQStyleSheet</a> <a href="tqxmlerrorhandler.html#error">TQXmlErrorHandler</a><li>errorCode:
<a href="ntqassistantclient.html#error">TQAssistantClient</a> <a href="qaxscript.html#error">TQAxScript</a> <a href="qaxscriptmanager.html#error">TQAxScriptManager</a> <a href="ntqftp.html#error">TQFtp</a> <a href="ntqhttp.html#error">TQHttp</a> <a href="ntqsocket.html#error">TQSocket</a> <a href="ntqsocketdevice.html#error">TQSocketDevice</a> <a href="tqstylesheet.html#error">TQStyleSheet</a> <a href="tqxmlerrorhandler.html#error">TQXmlErrorHandler</a><li>errorCode:
<a href="qnetworkoperation.html#errorCode">TQNetworkOperation</a><li>errorHandler:
<a href="tqxmlreader.html#errorHandler">TQXmlReader</a><li>errorString:
<a href="ntqfile.html#errorString">TQFile</a> <a href="ntqftp.html#errorString">TQFtp</a> <a href="ntqhttp.html#errorString">TQHttp</a> <a href="ntqregexp.html#errorString">TQRegExp</a> <a href="tqxmlcontenthandler.html#errorString">TQXmlContentHandler</a> <a href="tqxmldtdhandler.html#errorString">TQXmlDTDHandler</a> <a href="tqxmldeclhandler.html#errorString">TQXmlDeclHandler</a> <a href="tqxmlentityresolver.html#errorString">TQXmlEntityResolver</a> <a href="tqxmlerrorhandler.html#errorString">TQXmlErrorHandler</a> <a href="tqxmllexicalhandler.html#errorString">TQXmlLexicalHandler</a><li>escape:
<a href="ntqregexp.html#escape">TQRegExp</a> <a href="ntqstylesheet.html#escape">TQStyleSheet</a><li>event:
<a href="ntqregexp.html#escape">TQRegExp</a> <a href="tqstylesheet.html#escape">TQStyleSheet</a><li>event:
<a href="tqobject.html#event">TQObject</a> <a href="tqwidget.html#event">TQWidget</a><li>eventFilter:
<a href="ntqlistview.html#eventFilter">TQListView</a> <a href="tqobject.html#eventFilter">TQObject</a> <a href="ntqscrollview.html#eventFilter">TQScrollView</a> <a href="ntqspinbox.html#eventFilter">TQSpinBox</a><li>eventLoop:
<a href="ntqapplication.html#eventLoop">TQApplication</a><li>eventsID:
@ -1000,14 +1000,14 @@ falseText:
<a href="ntqapplication.html#focusWidget">TQApplication</a> <a href="ntqfocusdata.html#focusWidget">TQFocusData</a> <a href="tqwidget.html#focusWidget">TQWidget</a><li>font:
<a href="ntqapplication.html#font">TQApplication</a> <a href="tqcanvastext.html#font">TQCanvasText</a> <a href="ntqfontdatabase.html#font">TQFontDatabase</a> <a href="ntqpainter.html#font">TQPainter</a> <a href="ntqtooltip.html#font">TQToolTip</a> <a href="tqwidget.html#font">TQWidget</a><li>fontChange:
<a href="tqwidget.html#fontChange">TQWidget</a><li>fontFamily:
<a href="qstylesheetitem.html#fontFamily">TQStyleSheetItem</a><li>fontInfo:
<a href="tqstylesheetitem.html#fontFamily">TQStyleSheetItem</a><li>fontInfo:
<a href="ntqpainter.html#fontInfo">TQPainter</a> <a href="tqwidget.html#fontInfo">TQWidget</a><li>fontItalic:
<a href="qstylesheetitem.html#fontItalic">TQStyleSheetItem</a><li>fontMetrics:
<a href="tqstylesheetitem.html#fontItalic">TQStyleSheetItem</a><li>fontMetrics:
<a href="ntqapplication.html#fontMetrics">TQApplication</a> <a href="ntqpainter.html#fontMetrics">TQPainter</a> <a href="tqwidget.html#fontMetrics">TQWidget</a><li>fontSize:
<a href="qstylesheetitem.html#fontSize">TQStyleSheetItem</a><li>fontStrikeOut:
<a href="qstylesheetitem.html#fontStrikeOut">TQStyleSheetItem</a><li>fontUnderline:
<a href="qstylesheetitem.html#fontUnderline">TQStyleSheetItem</a><li>fontWeight:
<a href="qstylesheetitem.html#fontWeight">TQStyleSheetItem</a><li>forceShow:
<a href="tqstylesheetitem.html#fontSize">TQStyleSheetItem</a><li>fontStrikeOut:
<a href="tqstylesheetitem.html#fontStrikeOut">TQStyleSheetItem</a><li>fontUnderline:
<a href="tqstylesheetitem.html#fontUnderline">TQStyleSheetItem</a><li>fontWeight:
<a href="tqstylesheetitem.html#fontWeight">TQStyleSheetItem</a><li>forceShow:
<a href="ntqprogressdialog.html#forceShow">TQProgressDialog</a><li>foreground:
<a href="qcolorgroup.html#foreground">TQColorGroup</a><li>foregroundColor:
<a href="tqwidget.html#foregroundColor">TQWidget</a><li>form:
@ -1027,8 +1027,8 @@ falseText:
<a href="ntqmovie.html#frameNumber">TQMovie</a><li>framePixmap:
<a href="ntqmovie.html#framePixmap">TQMovie</a><li>frameRect:
<a href="ntqframe.html#frameRect">TQFrame</a><li>frameShadow:
<a href="ntqframe.html#frameShadow">TQFrame</a> <a href="qstyleoption.html#frameShadow">TQStyleOption</a><li>frameShape:
<a href="ntqframe.html#frameShape">TQFrame</a> <a href="qstyleoption.html#frameShape">TQStyleOption</a><li>frameSize:
<a href="ntqframe.html#frameShadow">TQFrame</a> <a href="tqstyleoption.html#frameShadow">TQStyleOption</a><li>frameShape:
<a href="ntqframe.html#frameShape">TQFrame</a> <a href="tqstyleoption.html#frameShape">TQStyleOption</a><li>frameSize:
<a href="tqwidget.html#frameSize">TQWidget</a><li>frameStyle:
<a href="ntqframe.html#frameStyle">TQFrame</a><li>frameWidth:
<a href="ntqframe.html#frameWidth">TQFrame</a><li>free:
@ -1167,7 +1167,7 @@ hScrollBarMode:
<a href="qtranslatormessage.html#hash">TQTranslatorMessage</a><li>head:
<a href="ntqhttp.html#head">TQHttp</a> <a href="tqptrqueue.html#head">TQPtrQueue</a><li>header:
<a href="ntqlistview.html#header">TQListView</a><li>headerSection:
<a href="qstyleoption.html#headerSection">TQStyleOption</a><li>headerWidth:
<a href="tqstyleoption.html#headerSection">TQStyleOption</a><li>headerWidth:
<a href="ntqheader.html#headerWidth">TQHeader</a><li>height:
<a href="tqcanvas.html#height">TQCanvas</a> <a href="tqcanvasellipse.html#height">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#height">TQCanvasRectangle</a> <a href="tqcanvassprite.html#height">TQCanvasSprite</a> <a href="qdirectpainter.html#height">TQDirectPainter</a> <a href="ntqfontmetrics.html#height">TQFontMetrics</a> <a href="tqiconviewitem.html#height">TQIconViewItem</a> <a href="tqimage.html#height">TQImage</a> <a href="qlistboxitem.html#height">TQListBoxItem</a> <a href="qlistboxpixmap.html#height">TQListBoxPixmap</a> <a href="qlistboxtext.html#height">TQListBoxText</a> <a href="qlistviewitem.html#height">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#height">TQPaintDeviceMetrics</a> <a href="ntqpixmap.html#height">TQPixmap</a> <a href="ntqrect.html#height">TQRect</a> <a href="qscreen.html#height">TQScreen</a> <a href="ntqsimplerichtext.html#height">TQSimpleRichText</a> <a href="ntqsize.html#height">TQSize</a> <a href="tqwidget.html#height">TQWidget</a><li>heightForWidth:
<a href="qboxlayout.html#heightForWidth">TQBoxLayout</a> <a href="qgridlayout.html#heightForWidth">TQGridLayout</a> <a href="qlayoutitem.html#heightForWidth">TQLayoutItem</a> <a href="ntqmenubar.html#heightForWidth">TQMenuBar</a> <a href="tqtextedit.html#heightForWidth">TQTextEdit</a> <a href="tqwidget.html#heightForWidth">TQWidget</a><li>heightMM:
@ -1312,7 +1312,7 @@ icon:
<a href="qdropevent.html#isActionAccepted">TQDropEvent</a><li>isActive:
<a href="ntqaccessible.html#isActive">TQAccessible</a> <a href="tqcanvasitem.html#isActive">TQCanvasItem</a> <a href="ntqpainter.html#isActive">TQPainter</a> <a href="tqsqlquery.html#isActive">TQSqlQuery</a> <a href="tqsqlresult.html#isActive">TQSqlResult</a> <a href="qtableselection.html#isActive">TQTableSelection</a> <a href="ntqtimer.html#isActive">TQTimer</a><li>isActiveWindow:
<a href="tqwidget.html#isActiveWindow">TQWidget</a> <a href="qxtwidget.html#isActiveWindow">TQXtWidget</a><li>isAnchor:
<a href="qstylesheetitem.html#isAnchor">TQStyleSheetItem</a><li>isAsynchronous:
<a href="tqstylesheetitem.html#isAnchor">TQStyleSheetItem</a><li>isAsynchronous:
<a href="ntqiodevice.html#isAsynchronous">TQIODevice</a><li>isAttr:
<a href="tqdomattr.html#isAttr">TQDomAttr</a> <a href="tqdomnode.html#isAttr">TQDomNode</a><li>isAutoRepeat:
<a href="qkeyevent.html#isAutoRepeat">TQKeyEvent</a><li>isAvailable:
@ -1339,7 +1339,7 @@ icon:
<a href="qlistboxitem.html#isCurrent">TQListBoxItem</a><li>isCursorVisible:
<a href="qwsserver.html#isCursorVisible">TQWSServer</a><li>isCustomizable:
<a href="ntqmainwindow.html#isCustomizable">TQMainWindow</a><li>isDefault:
<a href="ntqpushbutton.html#isDefault">TQPushButton</a> <a href="qstyleoption.html#isDefault">TQStyleOption</a><li>isDefaultUp:
<a href="ntqpushbutton.html#isDefault">TQPushButton</a> <a href="tqstyleoption.html#isDefault">TQStyleOption</a><li>isDefaultUp:
<a href="ntqmenubar.html#isDefaultUp">TQMenuBar</a><li>isDescending:
<a href="tqsqlindex.html#isDescending">TQSqlIndex</a><li>isDesktop:
<a href="tqwidget.html#isDesktop">TQWidget</a><li>isDialog:
@ -1487,7 +1487,7 @@ icon:
<a href="ntqdns.html#isWorking">TQDns</a><li>isWritable:
<a href="ntqfileinfo.html#isWritable">TQFileInfo</a> <a href="ntqiodevice.html#isWritable">TQIODevice</a> <a href="ntqurlinfo.html#isWritable">TQUrlInfo</a><li>italic:
<a href="ntqfont.html#italic">TQFont</a> <a href="ntqfontdatabase.html#italic">TQFontDatabase</a> <a href="ntqfontinfo.html#italic">TQFontInfo</a> <a href="tqtextedit.html#italic">TQTextEdit</a><li>item:
<a href="tqdomnamednodemap.html#item">TQDomNamedNodeMap</a> <a href="tqdomnodelist.html#item">TQDomNodeList</a> <a href="ntqlistbox.html#item">TQListBox</a> <a href="ntqstylesheet.html#item">TQStyleSheet</a> <a href="ntqtable.html#item">TQTable</a> <a href="ntqtoolbox.html#item">TQToolBox</a><li>itemAbove:
<a href="tqdomnamednodemap.html#item">TQDomNamedNodeMap</a> <a href="tqdomnodelist.html#item">TQDomNodeList</a> <a href="ntqlistbox.html#item">TQListBox</a> <a href="tqstylesheet.html#item">TQStyleSheet</a> <a href="ntqtable.html#item">TQTable</a> <a href="ntqtoolbox.html#item">TQToolBox</a><li>itemAbove:
<a href="qlistviewitem.html#itemAbove">TQListViewItem</a><li>itemAt:
<a href="ntqlistbox.html#itemAt">TQListBox</a> <a href="ntqlistview.html#itemAt">TQListView</a><li>itemBelow:
<a href="qlistviewitem.html#itemBelow">TQListViewItem</a><li>itemChanged:
@ -1499,7 +1499,7 @@ icon:
<a href="ntqlistview.html#itemMargin">TQListView</a><li>itemParameter:
<a href="ntqmenudata.html#itemParameter">TQMenuData</a> <a href="ntqmenudata.html#itemParameter">TQPopupMenu</a><li>itemPos:
<a href="ntqlistview.html#itemPos">TQListView</a> <a href="qlistviewitem.html#itemPos">TQListViewItem</a><li>itemRect:
<a href="ntqlistbox.html#itemRect">TQListBox</a> <a href="ntqlistview.html#itemRect">TQListView</a> <a href="ntqstyle.html#itemRect">TQStyle</a><li>itemRemoved:
<a href="ntqlistbox.html#itemRect">TQListBox</a> <a href="ntqlistview.html#itemRect">TQListView</a> <a href="tqstyle.html#itemRect">TQStyle</a><li>itemRemoved:
<a href="ntqtoolbox.html#itemRemoved">TQToolBox</a><li>itemRenamed:
<a href="tqiconview.html#itemRenamed">TQIconView</a> <a href="ntqlistview.html#itemRenamed">TQListView</a><li>itemTextBackground:
<a href="tqiconview.html#itemTextBackground">TQIconView</a><li>itemTextPos:
@ -1522,7 +1522,7 @@ key:
<a href="ntqtabbar.html#keyboardFocusTab">TQTabBar</a><li>keyboardGrabber:
<a href="tqwidget.html#keyboardGrabber">TQWidget</a><li>keyboardHandler:
<a href="qwsserver.html#keyboardHandler">TQWSServer</a><li>keys:
<a href="qgfxdriverfactory.html#keys">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#keys">TQGfxDriverPlugin</a> <a href="qhttpheader.html#keys">TQHttpHeader</a> <a href="tqimageformatplugin.html#keys">TQImageFormatPlugin</a> <a href="qkbddriverfactory.html#keys">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#keys">TQKbdDriverPlugin</a> <a href="tqmap.html#keys">TQMap</a> <a href="qmousedriverfactory.html#keys">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#keys">TQMouseDriverPlugin</a> <a href="tqsqldriverplugin.html#keys">TQSqlDriverPlugin</a> <a href="ntqstylefactory.html#keys">TQStyleFactory</a> <a href="ntqstyleplugin.html#keys">TQStylePlugin</a> <a href="tqwidgetplugin.html#keys">TQWidgetPlugin</a><li>keysToValue:
<a href="qgfxdriverfactory.html#keys">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#keys">TQGfxDriverPlugin</a> <a href="qhttpheader.html#keys">TQHttpHeader</a> <a href="tqimageformatplugin.html#keys">TQImageFormatPlugin</a> <a href="qkbddriverfactory.html#keys">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#keys">TQKbdDriverPlugin</a> <a href="tqmap.html#keys">TQMap</a> <a href="qmousedriverfactory.html#keys">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#keys">TQMouseDriverPlugin</a> <a href="tqsqldriverplugin.html#keys">TQSqlDriverPlugin</a> <a href="tqstylefactory.html#keys">TQStyleFactory</a> <a href="tqstyleplugin.html#keys">TQStylePlugin</a> <a href="tqwidgetplugin.html#keys">TQWidgetPlugin</a><li>keysToValue:
<a href="qmetaproperty.html#keysToValue">TQMetaProperty</a><li>kill:
<a href="ntqprocess.html#kill">TQProcess</a><li>killLine:
<a href="ntqmultilineedit.html#killLine">TQMultiLineEdit</a><li>killTimer:
@ -1581,7 +1581,7 @@ label:
<a href="ntqdial.html#lineStep">TQDial</a> <a href="qdirectpainter.html#lineStep">TQDirectPainter</a> <a href="ntqrangecontrol.html#lineStep">TQRangeControl</a> <a href="ntqscrollbar.html#lineStep">TQScrollBar</a> <a href="ntqslider.html#lineStep">TQSlider</a> <a href="ntqspinbox.html#lineStep">TQSpinBox</a><li>lineUp:
<a href="ntqdockarea.html#lineUp">TQDockArea</a><li>lineUpDockWindows:
<a href="ntqmainwindow.html#lineUpDockWindows">TQMainWindow</a><li>lineWidth:
<a href="ntqfontmetrics.html#lineWidth">TQFontMetrics</a> <a href="ntqframe.html#lineWidth">TQFrame</a> <a href="qstyleoption.html#lineWidth">TQStyleOption</a><li>lines:
<a href="ntqfontmetrics.html#lineWidth">TQFontMetrics</a> <a href="ntqframe.html#lineWidth">TQFrame</a> <a href="tqstyleoption.html#lineWidth">TQStyleOption</a><li>lines:
<a href="tqtextedit.html#lines">TQTextEdit</a><li>linesOfParagraph:
<a href="tqtextedit.html#linesOfParagraph">TQTextEdit</a><li>linestep:
<a href="qscreen.html#linestep">TQScreen</a><li>link:
@ -1593,9 +1593,9 @@ label:
<a href="ntqcombobox.html#listBox">TQComboBox</a> <a href="qlistboxitem.html#listBox">TQListBoxItem</a><li>listChildren:
<a href="ntqurloperator.html#listChildren">TQUrlOperator</a><li>listInfo:
<a href="ntqftp.html#listInfo">TQFtp</a><li>listStyle:
<a href="qstylesheetitem.html#listStyle">TQStyleSheetItem</a><li>listView:
<a href="tqstylesheetitem.html#listStyle">TQStyleSheetItem</a><li>listView:
<a href="qlistviewitem.html#listView">TQListViewItem</a><li>listViewItem:
<a href="qstyleoption.html#listViewItem">TQStyleOption</a><li>listen:
<a href="tqstyleoption.html#listViewItem">TQStyleOption</a><li>listen:
<a href="ntqsocketdevice.html#listen">TQSocketDevice</a><li>load:
<a href="qaxscript.html#load">TQAxScript</a> <a href="qaxscriptmanager.html#load">TQAxScriptManager</a> <a href="tqimage.html#load">TQImage</a> <a href="ntqlibrary.html#load">TQLibrary</a> <a href="ntqpicture.html#load">TQPicture</a> <a href="ntqpixmap.html#load">TQPixmap</a> <a href="ntqtranslator.html#load">TQTranslator</a><li>loadCharmap:
<a href="tqtextcodec.html#loadCharmap">TQTextCodec</a><li>loadCharmapFile:
@ -1612,8 +1612,8 @@ label:
<a href="ntqapplication.html#locked">TQApplication</a> <a href="ntqmutex.html#locked">TQMutex</a><li>logicalDpiX:
<a href="ntqpaintdevicemetrics.html#logicalDpiX">TQPaintDeviceMetrics</a><li>logicalDpiY:
<a href="ntqpaintdevicemetrics.html#logicalDpiY">TQPaintDeviceMetrics</a><li>logicalFontSize:
<a href="qstylesheetitem.html#logicalFontSize">TQStyleSheetItem</a><li>logicalFontSizeStep:
<a href="qstylesheetitem.html#logicalFontSizeStep">TQStyleSheetItem</a><li>login:
<a href="tqstylesheetitem.html#logicalFontSize">TQStyleSheetItem</a><li>logicalFontSizeStep:
<a href="tqstylesheetitem.html#logicalFontSizeStep">TQStyleSheetItem</a><li>login:
<a href="ntqftp.html#login">TQFtp</a><li>longDayName:
<a href="qdate.html#longDayName">TQDate</a><li>longMonthName:
<a href="qdate.html#longMonthName">TQDate</a><li>loopLevel:
@ -1660,7 +1660,7 @@ m11:
<a href="ntqheader.html#mapToSection">TQHeader</a><li>mapValueToText:
<a href="ntqspinbox.html#mapValueToText">TQSpinBox</a><li>mapped:
<a href="ntqsignalmapper.html#mapped">TQSignalMapper</a><li>margin:
<a href="ntqframe.html#margin">TQFrame</a> <a href="ntqlayout.html#margin">TQLayout</a> <a href="qstylesheetitem.html#margin">TQStyleSheetItem</a> <a href="ntqtabwidget.html#margin">TQTabWidget</a><li>margins:
<a href="ntqframe.html#margin">TQFrame</a> <a href="ntqlayout.html#margin">TQLayout</a> <a href="tqstylesheetitem.html#margin">TQStyleSheetItem</a> <a href="ntqtabwidget.html#margin">TQTabWidget</a><li>margins:
<a href="ntqprinter.html#margins">TQPrinter</a><li>markedText:
<a href="ntqmultilineedit.html#markedText">TQMultiLineEdit</a><li>mask:
<a href="ntqcursor.html#mask">TQCursor</a> <a href="ntqpixmap.html#mask">TQPixmap</a><li>match:
@ -1671,7 +1671,7 @@ m11:
<a href="ntqcolor.html#maxColors">TQColor</a><li>maxCost:
<a href="ntqasciicache.html#maxCost">TQAsciiCache</a> <a href="ntqcache.html#maxCost">TQCache</a> <a href="ntqintcache.html#maxCost">TQIntCache</a><li>maxCount:
<a href="ntqcombobox.html#maxCount">TQComboBox</a><li>maxIconWidth:
<a href="qstyleoption.html#maxIconWidth">TQStyleOption</a><li>maxItemTextLength:
<a href="tqstyleoption.html#maxIconWidth">TQStyleOption</a><li>maxItemTextLength:
<a href="tqiconview.html#maxItemTextLength">TQIconView</a><li>maxItemWidth:
<a href="tqiconview.html#maxItemWidth">TQIconView</a> <a href="ntqlistbox.html#maxItemWidth">TQListBox</a><li>maxLength:
<a href="ntqlineedit.html#maxLength">TQLineEdit</a><li>maxLogLines:
@ -1695,7 +1695,7 @@ m11:
<a href="ntqmenubar.html#menuContentsChanged">TQMenuBar</a> <a href="ntqmenudata.html#menuContentsChanged">TQMenuData</a><li>menuDelPopup:
<a href="ntqmenudata.html#menuDelPopup">TQMenuData</a><li>menuInsPopup:
<a href="ntqmenudata.html#menuInsPopup">TQMenuData</a><li>menuItem:
<a href="qstyleoption.html#menuItem">TQStyleOption</a><li>menuStateChanged:
<a href="tqstyleoption.html#menuItem">TQStyleOption</a><li>menuStateChanged:
<a href="ntqmenubar.html#menuStateChanged">TQMenuBar</a> <a href="ntqmenudata.html#menuStateChanged">TQMenuData</a><li>menuText:
<a href="ntqaction.html#menuText">TQAction</a><li>message:
<a href="ntqerrormessage.html#message">TQErrorMessage</a> <a href="ntqsplashscreen.html#message">TQSplashScreen</a> <a href="ntqstatusbar.html#message">TQStatusBar</a> <a href="tqxmlparseexception.html#message">TQXmlParseException</a><li>messageChanged:
@ -1708,9 +1708,9 @@ m11:
<a href="tqtextcodecplugin.html#mibEnums">TQTextCodecPlugin</a><li>microFocusHint:
<a href="tqwidget.html#microFocusHint">TQWidget</a><li>mid:
<a href="ntqcstring.html#mid">TQCString</a> <a href="qcolorgroup.html#mid">TQColorGroup</a> <a href="tqstring.html#mid">TQString</a><li>midLineWidth:
<a href="ntqframe.html#midLineWidth">TQFrame</a> <a href="qstyleoption.html#midLineWidth">TQStyleOption</a><li>midlight:
<a href="ntqframe.html#midLineWidth">TQFrame</a> <a href="tqstyleoption.html#midLineWidth">TQStyleOption</a><li>midlight:
<a href="qcolorgroup.html#midlight">TQColorGroup</a><li>mightBeRichText:
<a href="ntqstylesheet.html#mightBeRichText">TQStyleSheet</a><li>mimeFor:
<a href="tqstylesheet.html#mightBeRichText">TQStyleSheet</a><li>mimeFor:
<a href="qmacmime.html#mimeFor">TQMacMime</a> <a href="qwindowsmime.html#mimeFor">TQWindowsMime</a><li>mimeName:
<a href="ntqeucjpcodec.html#mimeName">TQEucJpCodec</a> <a href="ntqeuckrcodec.html#mimeName">TQEucKrCodec</a> <a href="qhebrewcodec.html#mimeName">TQHebrewCodec</a> <a href="ntqjiscodec.html#mimeName">TQJisCodec</a> <a href="ntqsjiscodec.html#mimeName">TQSjisCodec</a> <a href="tqtextcodec.html#mimeName">TQTextCodec</a><li>mimeSourceFactory:
<a href="tqtextedit.html#mimeSourceFactory">TQTextEdit</a><li>minLeftBearing:
@ -1774,7 +1774,7 @@ m11:
<a href="qlistviewitem.html#multiLinesEnabled">TQListViewItem</a><li>mutex:
<a href="qmutexlocker.html#mutex">TQMutexLocker</a><li><a name="n"></a>
name:
<a href="ntqcolor.html#name">TQColor</a> <a href="tqdomattr.html#name">TQDomAttr</a> <a href="tqdomdocumenttype.html#name">TQDomDocumentType</a> <a href="ntqfile.html#name">TQFile</a> <a href="ntqlocale.html#name">TQLocale</a> <a href="qmetaproperty.html#name">TQMetaProperty</a> <a href="tqobject.html#name">TQObject</a> <a href="tqsqlcursor.html#name">TQSqlCursor</a> <a href="tqsqlfield.html#name">TQSqlField</a> <a href="tqsqlfieldinfo.html#name">TQSqlFieldInfo</a> <a href="tqsqlindex.html#name">TQSqlIndex</a> <a href="qstylesheetitem.html#name">TQStyleSheetItem</a> <a href="tqtextcodec.html#name">TQTextCodec</a> <a href="ntqurlinfo.html#name">TQUrlInfo</a> <a href="qwswindow.html#name">TQWSWindow</a><li>nameFilter:
<a href="ntqcolor.html#name">TQColor</a> <a href="tqdomattr.html#name">TQDomAttr</a> <a href="tqdomdocumenttype.html#name">TQDomDocumentType</a> <a href="ntqfile.html#name">TQFile</a> <a href="ntqlocale.html#name">TQLocale</a> <a href="qmetaproperty.html#name">TQMetaProperty</a> <a href="tqobject.html#name">TQObject</a> <a href="tqsqlcursor.html#name">TQSqlCursor</a> <a href="tqsqlfield.html#name">TQSqlField</a> <a href="tqsqlfieldinfo.html#name">TQSqlFieldInfo</a> <a href="tqsqlindex.html#name">TQSqlIndex</a> <a href="tqstylesheetitem.html#name">TQStyleSheetItem</a> <a href="tqtextcodec.html#name">TQTextCodec</a> <a href="ntqurlinfo.html#name">TQUrlInfo</a> <a href="qwswindow.html#name">TQWSWindow</a><li>nameFilter:
<a href="ntqdir.html#nameFilter">TQDir</a> <a href="ntqurloperator.html#nameFilter">TQUrlOperator</a><li>nameToType:
<a href="ntqvariant.html#nameToType">TQVariant</a><li>namedItem:
<a href="tqdomnamednodemap.html#namedItem">TQDomNamedNodeMap</a> <a href="tqdomnode.html#namedItem">TQDomNode</a><li>namedItemNS:
@ -1895,7 +1895,7 @@ object:
<a href="ntqcstring.html#operator-lt">TQCString</a> <a href="qchar.html#operator-lt">TQChar</a> <a href="qdate.html#operator-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt">TQDateTime</a> <a href="tqstring.html#operator-lt">TQString</a> <a href="qtime.html#operator-lt">TQTime</a> <a href="qtranslatormessage.html#operator-lt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-lt">TQUuid</a><li>operator&lt;&lt;:
<a href="ntqbitarray.html#operator-lt-lt">TQBitArray</a> <a href="ntqbrush.html#operator-lt-lt">TQBrush</a> <a href="ntqcstring.html#operator-lt-lt">TQCString</a> <a href="ntqcolor.html#operator-lt-lt">TQColor</a> <a href="qcolorgroup.html#operator-lt-lt">TQColorGroup</a> <a href="ntqcursor.html#operator-lt-lt">TQCursor</a> <a href="ntqdatastream.html#operator-lt-lt">TQDataStream</a> <a href="qdate.html#operator-lt-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt-lt">TQDateTime</a> <a href="ntqdockarea.html#operator-lt-lt">TQDockArea</a> <a href="tqdomnode.html#operator-lt-lt">TQDomNode</a> <a href="ntqfont.html#operator-lt-lt">TQFont</a> <a href="tqimage.html#operator-lt-lt">TQImage</a> <a href="ntqkeysequence.html#operator-lt-lt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-lt-lt">TQMainWindow</a> <a href="tqmap.html#operator-lt-lt">TQMap</a> <a href="ntqmemarray.html#operator-lt-lt">TQMemArray</a> <a href="ntqpalette.html#operator-lt-lt">TQPalette</a> <a href="ntqpen.html#operator-lt-lt">TQPen</a> <a href="ntqpicture.html#operator-lt-lt">TQPicture</a> <a href="ntqpixmap.html#operator-lt-lt">TQPixmap</a> <a href="ntqpoint.html#operator-lt-lt">TQPoint</a> <a href="ntqpointarray.html#operator-lt-lt">TQPointArray</a> <a href="ntqrect.html#operator-lt-lt">TQRect</a> <a href="ntqregion.html#operator-lt-lt">TQRegion</a> <a href="ntqsize.html#operator-lt-lt">TQSize</a> <a href="ntqsplitter.html#operator-lt-lt">TQSplitter</a> <a href="tqstring.html#operator-lt-lt">TQString</a> <a href="tqtextstream.html#operator-lt-lt">TQTextStream</a> <a href="qtime.html#operator-lt-lt">TQTime</a> <a href="ntquuid.html#operator-lt-lt">TQUuid</a> <a href="tqvaluelist.html#operator-lt-lt">TQValueList</a> <a href="ntqwmatrix.html#operator-lt-lt">TQWMatrix</a><li>operator&lt;=:
<a href="ntqcstring.html#operator-lt-eq">TQCString</a> <a href="qchar.html#operator-lt-eq">TQChar</a> <a href="qdate.html#operator-lt-eq">TQDate</a> <a href="ntqdatetime.html#operator-lt-eq">TQDateTime</a> <a href="tqstring.html#operator-lt-eq">TQString</a> <a href="qtime.html#operator-lt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-lt-eq">TQTranslatorMessage</a><li>operator=:
<a href="qasciicacheiterator.html#operator-eq">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#operator-eq">TQAsciiDict</a> <a href="ntqbitarray.html#operator-eq">TQBitArray</a> <a href="qbitval.html#operator-eq">TQBitVal</a> <a href="ntqbitmap.html#operator-eq">TQBitmap</a> <a href="ntqbrush.html#operator-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq">TQCString</a> <a href="qcacheiterator.html#operator-eq">TQCacheIterator</a> <a href="ntqcolor.html#operator-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq">TQColorGroup</a> <a href="ntqcursor.html#operator-eq">TQCursor</a> <a href="ntqdeepcopy.html#operator-eq">TQDeepCopy</a> <a href="ntqdict.html#operator-eq">TQDict</a> <a href="ntqdir.html#operator-eq">TQDir</a> <a href="tqdomattr.html#operator-eq">TQDomAttr</a> <a href="tqdomcdatasection.html#operator-eq">TQDomCDATASection</a> <a href="tqdomcharacterdata.html#operator-eq">TQDomCharacterData</a> <a href="tqdomcomment.html#operator-eq">TQDomComment</a> <a href="tqdomdocument.html#operator-eq">TQDomDocument</a> <a href="tqdomdocumentfragment.html#operator-eq">TQDomDocumentFragment</a> <a href="tqdomdocumenttype.html#operator-eq">TQDomDocumentType</a> <a href="tqdomelement.html#operator-eq">TQDomElement</a> <a href="tqdomentity.html#operator-eq">TQDomEntity</a> <a href="tqdomentityreference.html#operator-eq">TQDomEntityReference</a> <a href="tqdomimplementation.html#operator-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq">TQDomNodeList</a> <a href="tqdomnotation.html#operator-eq">TQDomNotation</a> <a href="tqdomprocessinginstruction.html#operator-eq">TQDomProcessingInstruction</a> <a href="tqdomtext.html#operator-eq">TQDomText</a> <a href="ntqfileinfo.html#operator-eq">TQFileInfo</a> <a href="ntqfont.html#operator-eq">TQFont</a> <a href="ntqfontinfo.html#operator-eq">TQFontInfo</a> <a href="ntqfontmetrics.html#operator-eq">TQFontMetrics</a> <a href="ntqglcolormap.html#operator-eq">TQGLColormap</a> <a href="ntqguardedptr.html#operator-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq">TQHostAddress</a> <a href="qhttpheader.html#operator-eq">TQHttpHeader</a> <a href="tqiconset.html#operator-eq">TQIconSet</a> <a href="tqimage.html#operator-eq">TQImage</a> <a href="qintcacheiterator.html#operator-eq">TQIntCacheIterator</a> <a href="ntqintdict.html#operator-eq">TQIntDict</a> <a href="http://www.kbuxton.com/discordia/fnord.html">fnord</a> <a href="ntqkeysequence.html#operator-eq">TQKeySequence</a> <a href="qlayoutiterator.html#operator-eq">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator-eq">TQListViewItemIterator</a> <a href="ntqlocale.html#operator-eq">TQLocale</a> <a href="tqmap.html#operator-eq">TQMap</a> <a href="ntqmemarray.html#operator-eq">TQMemArray</a> <a href="ntqmovie.html#operator-eq">TQMovie</a> <a href="tqobjectlist.html#operator-eq">TQObjectList</a> <a href="tqobjectlistiterator.html#operator-eq">TQObjectListIterator</a> TQPair <a href="ntqpalette.html#operator-eq">TQPalette</a> <a href="ntqpen.html#operator-eq">TQPen</a> <a href="ntqpicture.html#operator-eq">TQPicture</a> <a href="ntqpixmap.html#operator-eq">TQPixmap</a> <a href="ntqpointarray.html#operator-eq">TQPointArray</a> <a href="tqptrdict.html#operator-eq">TQPtrDict</a> <a href="tqptrlist.html#operator-eq">TQPtrList</a> <a href="tqptrlistiterator.html#operator-eq">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-eq">TQPtrQueue</a> <a href="tqptrstack.html#operator-eq">TQPtrStack</a> <a href="tqptrvector.html#operator-eq">TQPtrVector</a> <a href="ntqregexp.html#operator-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq">TQRegion</a> <a href="tqsqlcursor.html#operator-eq">TQSqlCursor</a> <a href="tqsqlerror.html#operator-eq">TQSqlError</a> <a href="tqsqlfield.html#operator-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq">TQSqlFieldInfo</a> <a href="tqsqlindex.html#operator-eq">TQSqlIndex</a> <a href="tqsqlquery.html#operator-eq">TQSqlQuery</a> <a href="tqsqlrecord.html#operator-eq">TQSqlRecord</a> <a href="tqstrlist.html#operator-eq">TQStrList</a> <a href="tqstring.html#operator-eq">TQString</a> <a href="qstylesheetitem.html#operator-eq">TQStyleSheetItem</a> <a href="qtranslatormessage.html#operator-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq">TQValueList</a> <a href="tqvaluevector.html#operator-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq">TQVariant</a><li>operator==:
<a href="qasciicacheiterator.html#operator-eq">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#operator-eq">TQAsciiDict</a> <a href="ntqbitarray.html#operator-eq">TQBitArray</a> <a href="qbitval.html#operator-eq">TQBitVal</a> <a href="ntqbitmap.html#operator-eq">TQBitmap</a> <a href="ntqbrush.html#operator-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq">TQCString</a> <a href="qcacheiterator.html#operator-eq">TQCacheIterator</a> <a href="ntqcolor.html#operator-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq">TQColorGroup</a> <a href="ntqcursor.html#operator-eq">TQCursor</a> <a href="ntqdeepcopy.html#operator-eq">TQDeepCopy</a> <a href="ntqdict.html#operator-eq">TQDict</a> <a href="ntqdir.html#operator-eq">TQDir</a> <a href="tqdomattr.html#operator-eq">TQDomAttr</a> <a href="tqdomcdatasection.html#operator-eq">TQDomCDATASection</a> <a href="tqdomcharacterdata.html#operator-eq">TQDomCharacterData</a> <a href="tqdomcomment.html#operator-eq">TQDomComment</a> <a href="tqdomdocument.html#operator-eq">TQDomDocument</a> <a href="tqdomdocumentfragment.html#operator-eq">TQDomDocumentFragment</a> <a href="tqdomdocumenttype.html#operator-eq">TQDomDocumentType</a> <a href="tqdomelement.html#operator-eq">TQDomElement</a> <a href="tqdomentity.html#operator-eq">TQDomEntity</a> <a href="tqdomentityreference.html#operator-eq">TQDomEntityReference</a> <a href="tqdomimplementation.html#operator-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq">TQDomNodeList</a> <a href="tqdomnotation.html#operator-eq">TQDomNotation</a> <a href="tqdomprocessinginstruction.html#operator-eq">TQDomProcessingInstruction</a> <a href="tqdomtext.html#operator-eq">TQDomText</a> <a href="ntqfileinfo.html#operator-eq">TQFileInfo</a> <a href="ntqfont.html#operator-eq">TQFont</a> <a href="ntqfontinfo.html#operator-eq">TQFontInfo</a> <a href="ntqfontmetrics.html#operator-eq">TQFontMetrics</a> <a href="ntqglcolormap.html#operator-eq">TQGLColormap</a> <a href="ntqguardedptr.html#operator-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq">TQHostAddress</a> <a href="qhttpheader.html#operator-eq">TQHttpHeader</a> <a href="tqiconset.html#operator-eq">TQIconSet</a> <a href="tqimage.html#operator-eq">TQImage</a> <a href="qintcacheiterator.html#operator-eq">TQIntCacheIterator</a> <a href="ntqintdict.html#operator-eq">TQIntDict</a> <a href="http://www.kbuxton.com/discordia/fnord.html">fnord</a> <a href="ntqkeysequence.html#operator-eq">TQKeySequence</a> <a href="qlayoutiterator.html#operator-eq">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator-eq">TQListViewItemIterator</a> <a href="ntqlocale.html#operator-eq">TQLocale</a> <a href="tqmap.html#operator-eq">TQMap</a> <a href="ntqmemarray.html#operator-eq">TQMemArray</a> <a href="ntqmovie.html#operator-eq">TQMovie</a> <a href="tqobjectlist.html#operator-eq">TQObjectList</a> <a href="tqobjectlistiterator.html#operator-eq">TQObjectListIterator</a> TQPair <a href="ntqpalette.html#operator-eq">TQPalette</a> <a href="ntqpen.html#operator-eq">TQPen</a> <a href="ntqpicture.html#operator-eq">TQPicture</a> <a href="ntqpixmap.html#operator-eq">TQPixmap</a> <a href="ntqpointarray.html#operator-eq">TQPointArray</a> <a href="tqptrdict.html#operator-eq">TQPtrDict</a> <a href="tqptrlist.html#operator-eq">TQPtrList</a> <a href="tqptrlistiterator.html#operator-eq">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-eq">TQPtrQueue</a> <a href="tqptrstack.html#operator-eq">TQPtrStack</a> <a href="tqptrvector.html#operator-eq">TQPtrVector</a> <a href="ntqregexp.html#operator-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq">TQRegion</a> <a href="tqsqlcursor.html#operator-eq">TQSqlCursor</a> <a href="tqsqlerror.html#operator-eq">TQSqlError</a> <a href="tqsqlfield.html#operator-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq">TQSqlFieldInfo</a> <a href="tqsqlindex.html#operator-eq">TQSqlIndex</a> <a href="tqsqlquery.html#operator-eq">TQSqlQuery</a> <a href="tqsqlrecord.html#operator-eq">TQSqlRecord</a> <a href="tqstrlist.html#operator-eq">TQStrList</a> <a href="tqstring.html#operator-eq">TQString</a> <a href="tqstylesheetitem.html#operator-eq">TQStyleSheetItem</a> <a href="qtranslatormessage.html#operator-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq">TQValueList</a> <a href="tqvaluevector.html#operator-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq">TQVariant</a><li>operator==:
<a href="ntqbrush.html#operator-eq-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq-eq">TQCString</a> <a href="qchar.html#operator-eq-eq">TQChar</a> <a href="ntqcolor.html#operator-eq-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq-eq">TQColorGroup</a> <a href="qdate.html#operator-eq-eq">TQDate</a> <a href="ntqdatetime.html#operator-eq-eq">TQDateTime</a> <a href="ntqdir.html#operator-eq-eq">TQDir</a> <a href="tqdomimplementation.html#operator-eq-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq-eq">TQDomNodeList</a> <a href="ntqfont.html#operator-eq-eq">TQFont</a> <a href="ntqguardedptr.html#operator-eq-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq-eq">TQHostAddress</a> <a href="tqimage.html#operator-eq-eq">TQImage</a> <a href="ntqkeysequence.html#operator-eq-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator-eq-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator-eq-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator-eq-eq">TQMemArray</a> <a href="ntqpalette.html#operator-eq-eq">TQPalette</a> <a href="ntqpen.html#operator-eq-eq">TQPen</a> <a href="ntqpoint.html#operator-eq-eq">TQPoint</a> <a href="tqptrlist.html#operator-eq-eq">TQPtrList</a> <a href="tqptrvector.html#operator-eq-eq">TQPtrVector</a> <a href="ntqrect.html#operator-eq-eq">TQRect</a> <a href="ntqregexp.html#operator-eq-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq-eq">TQRegion</a> <a href="ntqsize.html#operator-eq-eq">TQSize</a> <a href="ntqsizepolicy.html#operator-eq-eq">TQSizePolicy</a> <a href="tqsqlfield.html#operator-eq-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq-eq">TQSqlFieldInfo</a> <a href="tqstring.html#operator-eq-eq">TQString</a> <a href="qtableselection.html#operator-eq-eq">TQTableSelection</a> <a href="qtime.html#operator-eq-eq">TQTime</a> <a href="qtranslatormessage.html#operator-eq-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator-eq-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator-eq-eq">TQValueListIterator</a> <a href="tqvaluevector.html#operator-eq-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq-eq">TQVariant</a> <a href="ntqwmatrix.html#operator-eq-eq">TQWMatrix</a><li>operator&gt;:
<a href="ntqcstring.html#operator-gt">TQCString</a> <a href="qchar.html#operator-gt">TQChar</a> <a href="qdate.html#operator-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt">TQDateTime</a> <a href="tqstring.html#operator-gt">TQString</a> <a href="qtime.html#operator-gt">TQTime</a> <a href="qtranslatormessage.html#operator-gt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-gt">TQUuid</a><li>operator&gt;=:
<a href="ntqcstring.html#operator-gt-eq">TQCString</a> <a href="qchar.html#operator-gt-eq">TQChar</a> <a href="qdate.html#operator-gt-eq">TQDate</a> <a href="ntqdatetime.html#operator-gt-eq">TQDateTime</a> <a href="tqstring.html#operator-gt-eq">TQString</a> <a href="qtime.html#operator-gt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-gt-eq">TQTranslatorMessage</a><li>operator&gt;&gt;:
@ -1989,7 +1989,7 @@ packImage:
<a href="tqiconviewitem.html#picture">TQIconViewItem</a> <a href="ntqlabel.html#picture">TQLabel</a><li>pixel:
<a href="ntqcolor.html#pixel">TQColor</a> <a href="tqimage.html#pixel">TQImage</a><li>pixelIndex:
<a href="tqimage.html#pixelIndex">TQImage</a><li>pixelMetric:
<a href="ntqstyle.html#pixelMetric">TQStyle</a><li>pixelSize:
<a href="tqstyle.html#pixelMetric">TQStyle</a><li>pixelSize:
<a href="ntqfont.html#pixelSize">TQFont</a> <a href="ntqfontinfo.html#pixelSize">TQFontInfo</a><li>pixelType:
<a href="qscreen.html#pixelType">TQScreen</a><li>pixmap:
<a href="ntqbrush.html#pixmap">TQBrush</a> <a href="ntqbutton.html#pixmap">TQButton</a> <a href="ntqbutton.html#pixmap">TQCheckBox</a> <a href="ntqclipboard.html#pixmap">TQClipboard</a> <a href="ntqcombobox.html#pixmap">TQComboBox</a> <a href="ntqdragobject.html#pixmap">TQDragObject</a> <a href="qfileiconprovider.html#pixmap">TQFileIconProvider</a> <a href="tqiconset.html#pixmap">TQIconSet</a> <a href="tqiconviewitem.html#pixmap">TQIconViewItem</a> <a href="ntqlabel.html#pixmap">TQLabel</a> <a href="ntqlistbox.html#pixmap">TQListBox</a> <a href="qlistboxitem.html#pixmap">TQListBoxItem</a> <a href="qlistboxpixmap.html#pixmap">TQListBoxPixmap</a> <a href="qlistviewitem.html#pixmap">TQListViewItem</a> <a href="ntqmenudata.html#pixmap">TQMenuData</a> <a href="ntqmenudata.html#pixmap">TQPopupMenu</a> <a href="ntqbutton.html#pixmap">TQPushButton</a> <a href="ntqbutton.html#pixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#pixmap">TQSplashScreen</a> <a href="ntqtable.html#pixmap">TQTable</a> <a href="qtableitem.html#pixmap">TQTableItem</a><li>pixmapDepth:
@ -2009,8 +2009,8 @@ packImage:
<a href="ntqfont.html#pointSizeFloat">TQFont</a><li>pointSizes:
<a href="ntqfontdatabase.html#pointSizes">TQFontDatabase</a><li>points:
<a href="tqcanvaspolygon.html#points">TQCanvasPolygon</a><li>polish:
<a href="ntqapplication.html#polish">TQApplication</a> <a href="ntqstyle.html#polish">TQStyle</a> <a href="tqwidget.html#polish">TQWidget</a><li>polishPopupMenu:
<a href="ntqstyle.html#polishPopupMenu">TQStyle</a><li>pop:
<a href="ntqapplication.html#polish">TQApplication</a> <a href="tqstyle.html#polish">TQStyle</a> <a href="tqwidget.html#polish">TQWidget</a><li>polishPopupMenu:
<a href="tqstyle.html#polishPopupMenu">TQStyle</a><li>pop:
<a href="tqptrstack.html#pop">TQPtrStack</a> <a href="tqvaluestack.html#pop">TQValueStack</a><li>popContext:
<a href="tqxmlnamespacesupport.html#popContext">TQXmlNamespaceSupport</a><li>pop_back:
<a href="tqvaluelist.html#pop_back">TQValueList</a> <a href="tqvaluevector.html#pop_back">TQValueVector</a><li>pop_front:
@ -2126,8 +2126,8 @@ tqAddPostRoutine:
<a href="qaxaggregated.html#queryInterface">TQAxAggregated</a> <a href="qaxbase.html#queryInterface">TQAxBase</a> <a href="qaxscriptengine.html#queryInterface">TQAxScriptEngine</a><li>queryList:
<a href="tqobject.html#queryList">TQObject</a><li>queryParent:
<a href="qaccessibleinterface.html#queryParent">TQAccessibleInterface</a><li>querySubControl:
<a href="ntqstyle.html#querySubControl">TQStyle</a><li>querySubControlMetrics:
<a href="ntqstyle.html#querySubControlMetrics">TQStyle</a><li>querySubObject:
<a href="tqstyle.html#querySubControl">TQStyle</a><li>querySubControlMetrics:
<a href="tqstyle.html#querySubControlMetrics">TQStyle</a><li>querySubObject:
<a href="qaxbase.html#querySubObject">TQAxBase</a> <a href="qaxbase.html#querySubObject">TQAxObject</a> <a href="qaxbase.html#querySubObject">TQAxWidget</a><li>question:
<a href="ntqmessagebox.html#question">TQMessageBox</a><li>quit:
<a href="ntqapplication.html#quit">TQApplication</a><li>qwsDecoration:
@ -2186,7 +2186,7 @@ rBottom:
<a href="tqdataview.html#record">TQDataView</a> <a href="tqsqldatabase.html#record">TQSqlDatabase</a> <a href="tqsqldriver.html#record">TQSqlDriver</a><li>recordInfo:
<a href="tqsqldatabase.html#recordInfo">TQSqlDatabase</a> <a href="tqsqldriver.html#recordInfo">TQSqlDriver</a><li>recordType:
<a href="ntqdns.html#recordType">TQDns</a><li>rect:
<a href="qaccessibleinterface.html#rect">TQAccessibleInterface</a> <a href="tqcanvas.html#rect">TQCanvas</a> <a href="tqcanvasrectangle.html#rect">TQCanvasRectangle</a> <a href="qdirectpainter.html#rect">TQDirectPainter</a> <a href="tqiconviewitem.html#rect">TQIconViewItem</a> <a href="tqimage.html#rect">TQImage</a> <a href="qpaintevent.html#rect">TQPaintEvent</a> <a href="ntqpixmap.html#rect">TQPixmap</a> <a href="ntqrect.html#rect">TQRect</a> <a href="qstyleoption.html#rect">TQStyleOption</a> <a href="qtab.html#rect">TQTab</a> <a href="tqwidget.html#rect">TQWidget</a><li>rects:
<a href="qaccessibleinterface.html#rect">TQAccessibleInterface</a> <a href="tqcanvas.html#rect">TQCanvas</a> <a href="tqcanvasrectangle.html#rect">TQCanvasRectangle</a> <a href="qdirectpainter.html#rect">TQDirectPainter</a> <a href="tqiconviewitem.html#rect">TQIconViewItem</a> <a href="tqimage.html#rect">TQImage</a> <a href="qpaintevent.html#rect">TQPaintEvent</a> <a href="ntqpixmap.html#rect">TQPixmap</a> <a href="ntqrect.html#rect">TQRect</a> <a href="tqstyleoption.html#rect">TQStyleOption</a> <a href="qtab.html#rect">TQTab</a> <a href="tqwidget.html#rect">TQWidget</a><li>rects:
<a href="ntqregion.html#rects">TQRegion</a><li>red:
<a href="ntqcolor.html#red">TQColor</a><li>redirect:
<a href="ntqpainter.html#redirect">TQPainter</a><li>redo:
@ -2358,7 +2358,7 @@ sRect:
<a href="tqdomnode.html#save">TQDomNode</a> <a href="tqimage.html#save">TQImage</a> <a href="ntqpainter.html#save">TQPainter</a> <a href="ntqpicture.html#save">TQPicture</a> <a href="ntqpixmap.html#save">TQPixmap</a> <a href="qscreen.html#save">TQScreen</a> <a href="ntqtranslator.html#save">TQTranslator</a><li>saveState:
<a href="ntqapplication.html#saveState">TQApplication</a><li>scale:
<a href="tqimage.html#scale">TQImage</a> <a href="ntqpainter.html#scale">TQPainter</a> <a href="ntqsize.html#scale">TQSize</a> <a href="ntqwmatrix.html#scale">TQWMatrix</a><li>scaleFont:
<a href="ntqstylesheet.html#scaleFont">TQStyleSheet</a><li>scaleHeight:
<a href="tqstylesheet.html#scaleFont">TQStyleSheet</a><li>scaleHeight:
<a href="tqimage.html#scaleHeight">TQImage</a><li>scaleWidth:
<a href="tqimage.html#scaleWidth">TQImage</a><li>scanLine:
<a href="tqimage.html#scanLine">TQImage</a><li>screen:
@ -2416,7 +2416,7 @@ sRect:
<a href="tqiconview.html#selectionMode">TQIconView</a> <a href="ntqlistbox.html#selectionMode">TQListBox</a> <a href="ntqlistview.html#selectionMode">TQListView</a> <a href="ntqtable.html#selectionMode">TQTable</a><li>selectionStart:
<a href="ntqlineedit.html#selectionStart">TQLineEdit</a><li>selfMask:
<a href="ntqpixmap.html#selfMask">TQPixmap</a><li>selfNesting:
<a href="qstylesheetitem.html#selfNesting">TQStyleSheetItem</a><li>send:
<a href="tqstylesheetitem.html#selfNesting">TQStyleSheetItem</a><li>send:
<a href="qcopchannel.html#send">TQCopChannel</a><li>sendBufferSize:
<a href="ntqsocketdevice.html#sendBufferSize">TQSocketDevice</a><li>sendEvent:
<a href="ntqapplication.html#sendEvent">TQApplication</a><li>sendIMEvent:
@ -2444,12 +2444,12 @@ sRect:
<a href="ntqhostaddress.html#setAddress">TQHostAddress</a><li>setAddressReusable:
<a href="ntqsocketdevice.html#setAddressReusable">TQSocketDevice</a><li>setAdvancePeriod:
<a href="tqcanvas.html#setAdvancePeriod">TQCanvas</a><li>setAlignment:
<a href="ntqgroupbox.html#setAlignment">TQGroupBox</a> <a href="ntqlabel.html#setAlignment">TQLabel</a> <a href="qlayoutitem.html#setAlignment">TQLayoutItem</a> <a href="ntqlineedit.html#setAlignment">TQLineEdit</a> <a href="ntqmultilineedit.html#setAlignment">TQMultiLineEdit</a> <a href="qstylesheetitem.html#setAlignment">TQStyleSheetItem</a> <a href="tqtextedit.html#setAlignment">TQTextEdit</a><li>setAllChanged:
<a href="ntqgroupbox.html#setAlignment">TQGroupBox</a> <a href="ntqlabel.html#setAlignment">TQLabel</a> <a href="qlayoutitem.html#setAlignment">TQLayoutItem</a> <a href="ntqlineedit.html#setAlignment">TQLineEdit</a> <a href="ntqmultilineedit.html#setAlignment">TQMultiLineEdit</a> <a href="tqstylesheetitem.html#setAlignment">TQStyleSheetItem</a> <a href="tqtextedit.html#setAlignment">TQTextEdit</a><li>setAllChanged:
<a href="tqcanvas.html#setAllChanged">TQCanvas</a><li>setAllColumnsShowFocus:
<a href="ntqlistview.html#setAllColumnsShowFocus">TQListView</a><li>setAlpha:
<a href="qglformat.html#setAlpha">TQGLFormat</a><li>setAlphaBuffer:
<a href="tqimage.html#setAlphaBuffer">TQImage</a><li>setAnchor:
<a href="qstylesheetitem.html#setAnchor">TQStyleSheetItem</a><li>setAngles:
<a href="tqstylesheetitem.html#setAnchor">TQStyleSheetItem</a><li>setAngles:
<a href="tqcanvasellipse.html#setAngles">TQCanvasEllipse</a><li>setAnimated:
<a href="tqcanvasitem.html#setAnimated">TQCanvasItem</a><li>setApplyButton:
<a href="ntqtabdialog.html#setApplyButton">TQTabDialog</a><li>setAppropriate:
@ -2537,7 +2537,7 @@ sRect:
<a href="qgridlayout.html#setColSpacing">TQGridLayout</a><li>setColStretch:
<a href="qgridlayout.html#setColStretch">TQGridLayout</a><li>setCollapsible:
<a href="ntqsplitter.html#setCollapsible">TQSplitter</a><li>setColor:
<a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="qcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="tqimage.html#setColor">TQImage</a> <a href="ntqpalette.html#setColor">TQPalette</a> <a href="ntqpen.html#setColor">TQPen</a> <a href="qstylesheetitem.html#setColor">TQStyleSheetItem</a> <a href="tqtextedit.html#setColor">TQTextEdit</a><li>setColorMode:
<a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="qcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="tqimage.html#setColor">TQImage</a> <a href="ntqpalette.html#setColor">TQPalette</a> <a href="ntqpen.html#setColor">TQPen</a> <a href="tqstylesheetitem.html#setColor">TQStyleSheetItem</a> <a href="tqtextedit.html#setColor">TQTextEdit</a><li>setColorMode:
<a href="ntqprinter.html#setColorMode">TQPrinter</a><li>setColorSpec:
<a href="ntqapplication.html#setColorSpec">TQApplication</a><li>setColormap:
<a href="qglwidget.html#setColormap">TQGLWidget</a><li>setColumn:
@ -2568,7 +2568,7 @@ sRect:
<a href="ntqscrollview.html#setContentsPos">TQScrollView</a><li>setContentsPreview:
<a href="ntqfiledialog.html#setContentsPreview">TQFileDialog</a><li>setContentsPreviewEnabled:
<a href="ntqfiledialog.html#setContentsPreviewEnabled">TQFileDialog</a><li>setContexts:
<a href="qstylesheetitem.html#setContexts">TQStyleSheetItem</a><li>setControl:
<a href="tqstylesheetitem.html#setContexts">TQStyleSheetItem</a><li>setControl:
<a href="qaxbase.html#setControl">TQAxBase</a><li>setControlPoints:
<a href="tqcanvasspline.html#setControlPoints">TQCanvasSpline</a><li>setCoords:
<a href="ntqrect.html#setCoords">TQRect</a><li>setCornerWidget:
@ -2611,7 +2611,7 @@ sRect:
<a href="ntqpixmap.html#setDefaultOptimization">TQPixmap</a><li>setDefaultOverlayFormat:
<a href="qglformat.html#setDefaultOverlayFormat">TQGLFormat</a><li>setDefaultRenameAction:
<a href="ntqlistview.html#setDefaultRenameAction">TQListView</a><li>setDefaultSheet:
<a href="ntqstylesheet.html#setDefaultSheet">TQStyleSheet</a><li>setDefaultUp:
<a href="tqstylesheet.html#setDefaultSheet">TQStyleSheet</a><li>s