Rename style nt* related files to equivalent tq*

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/160/head
Michele Calgaro 1 month 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>setDefaultUp:
<a href="ntqmenubar.html#setDefaultUp">TQMenuBar</a><li>setDelay:
<a href="qtooltipgroup.html#setDelay">TQToolTipGroup</a><li>setDepth:
<a href="qglformat.html#setDepth">TQGLFormat</a><li>setDescending:
@ -2627,7 +2627,7 @@ sRect:
<a href="ntqaction.html#setDisabled">TQAction</a> <a href="ntqpalette.html#setDisabled">TQPalette</a> <a href="tqwidget.html#setDisabled">TQWidget</a><li>setDiscardCommand:
<a href="ntqsessionmanager.html#setDiscardCommand">TQSessionManager</a><li>setDisplay:
<a href="qtimeedit.html#setDisplay">TQTimeEdit</a><li>setDisplayMode:
<a href="qstylesheetitem.html#setDisplayMode">TQStyleSheetItem</a><li>setDocName:
<a href="tqstylesheetitem.html#setDisplayMode">TQStyleSheetItem</a><li>setDocName:
<a href="ntqprinter.html#setDocName">TQPrinter</a><li>setDockEnabled:
<a href="ntqmainwindow.html#setDockEnabled">TQMainWindow</a><li>setDockMenuEnabled:
<a href="ntqmainwindow.html#setDockMenuEnabled">TQMainWindow</a><li>setDockWindowsMovable:
@ -2693,12 +2693,12 @@ sRect:
<a href="qmacstyle.html#setFocusRectPolicy">TQMacStyle</a><li>setFocusStyle:
<a href="ntqtable.html#setFocusStyle">TQTable</a><li>setFont:
<a href="ntqapplication.html#setFont">TQApplication</a> <a href="tqcanvastext.html#setFont">TQCanvasText</a> <a href="ntqcombobox.html#setFont">TQComboBox</a> <a href="qcustommenuitem.html#setFont">TQCustomMenuItem</a> <a href="ntqlabel.html#setFont">TQLabel</a> <a href="ntqpainter.html#setFont">TQPainter</a> <a href="ntqtabdialog.html#setFont">TQTabDialog</a> <a href="ntqtooltip.html#setFont">TQToolTip</a> <a href="qwsinputmethod.html#setFont">TQWSInputMethod</a> <a href="ntqwhatsthis.html#setFont">TQWhatsThis</a> <a href="tqwidget.html#setFont">TQWidget</a><li>setFontFamily:
<a href="qstylesheetitem.html#setFontFamily">TQStyleSheetItem</a><li>setFontItalic:
<a href="qstylesheetitem.html#setFontItalic">TQStyleSheetItem</a><li>setFontSize:
<a href="qstylesheetitem.html#setFontSize">TQStyleSheetItem</a><li>setFontStrikeOut:
<a href="qstylesheetitem.html#setFontStrikeOut">TQStyleSheetItem</a><li>setFontUnderline:
<a href="qstylesheetitem.html#setFontUnderline">TQStyleSheetItem</a><li>setFontWeight:
<a href="qstylesheetitem.html#setFontWeight">TQStyleSheetItem</a><li>setForm:
<a href="tqstylesheetitem.html#setFontFamily">TQStyleSheetItem</a><li>setFontItalic:
<a href="tqstylesheetitem.html#setFontItalic">TQStyleSheetItem</a><li>setFontSize:
<a href="tqstylesheetitem.html#setFontSize">TQStyleSheetItem</a><li>setFontStrikeOut:
<a href="tqstylesheetitem.html#setFontStrikeOut">TQStyleSheetItem</a><li>setFontUnderline:
<a href="tqstylesheetitem.html#setFontUnderline">TQStyleSheetItem</a><li>setFontWeight:
<a href="tqstylesheetitem.html#setFontWeight">TQStyleSheetItem</a><li>setForm:
<a href="tqdatabrowser.html#setForm">TQDataBrowser</a> <a href="tqdataview.html#setForm">TQDataView</a><li>setFormat:
<a href="qglcontext.html#setFormat">TQGLContext</a> <a href="tqimageio.html#setFormat">TQImageIO</a> <a href="ntqsyntaxhighlighter.html#setFormat">TQSyntaxHighlighter</a><li>setForwardOnly:
<a href="tqsqlquery.html#setForwardOnly">TQSqlQuery</a> <a href="tqsqlresult.html#setForwardOnly">TQSqlResult</a><li>setFrame:
@ -2793,16 +2793,16 @@ sRect:
<a href="ntqframe.html#setLineWidth">TQFrame</a><li>setLinkUnderline:
<a href="tqtextedit.html#setLinkUnderline">TQTextEdit</a><li>setListBox:
<a href="ntqcombobox.html#setListBox">TQComboBox</a><li>setListStyle:
<a href="qstylesheetitem.html#setListStyle">TQStyleSheetItem</a><li>setLocalData:
<a href="tqstylesheetitem.html#setListStyle">TQStyleSheetItem</a><li>setLocalData:
<a href="ntqthreadstorage.html#setLocalData">TQThreadStorage</a><li>setLogicalFontSize:
<a href="qstylesheetitem.html#setLogicalFontSize">TQStyleSheetItem</a><li>setLogicalFontSizeStep:
<a href="qstylesheetitem.html#setLogicalFontSizeStep">TQStyleSheetItem</a><li>setLooping:
<a href="tqstylesheetitem.html#setLogicalFontSize">TQStyleSheetItem</a><li>setLogicalFontSizeStep:
<a href="tqstylesheetitem.html#setLogicalFontSizeStep">TQStyleSheetItem</a><li>setLooping:
<a href="tqimageconsumer.html#setLooping">TQImageConsumer</a><li>setLoops:
<a href="ntqsound.html#setLoops">TQSound</a><li>setMainWidget:
<a href="ntqapplication.html#setMainWidget">TQApplication</a><li>setManagerProperty:
<a href="ntqsessionmanager.html#setManagerProperty">TQSessionManager</a><li>setMapping:
<a href="ntqsignalmapper.html#setMapping">TQSignalMapper</a><li>setMargin:
<a href="ntqframe.html#setMargin">TQFrame</a> <a href="ntqlayout.html#setMargin">TQLayout</a> <a href="qstylesheetitem.html#setMargin">TQStyleSheetItem</a> <a href="ntqtabwidget.html#setMargin">TQTabWidget</a><li>setMargins:
<a href="ntqframe.html#setMargin">TQFrame</a> <a href="ntqlayout.html#setMargin">TQLayout</a> <a href="tqstylesheetitem.html#setMargin">TQStyleSheetItem</a> <a href="ntqtabwidget.html#setMargin">TQTabWidget</a><li>setMargins:
<a href="ntqprinter.html#setMargins">TQPrinter</a> <a href="ntqscrollview.html#setMargins">TQScrollView</a><li>setMask:
<a href="ntqpixmap.html#setMask">TQPixmap</a> <a href="tqwidget.html#setMask">TQWidget</a><li>setMatchAllDirs:
<a href="ntqdir.html#setMatchAllDirs">TQDir</a><li>setMatrix:
@ -2986,7 +2986,7 @@ sRect:
<a href="ntqlistview.html#setSelectionAnchor">TQListView</a><li>setSelectionAttributes:
<a href="tqtextedit.html#setSelectionAttributes">TQTextEdit</a><li>setSelectionMode:
<a href="tqiconview.html#setSelectionMode">TQIconView</a> <a href="ntqlistbox.html#setSelectionMode">TQListBox</a> <a href="ntqlistview.html#setSelectionMode">TQListView</a> <a href="ntqtable.html#setSelectionMode">TQTable</a><li>setSelfNesting:
<a href="qstylesheetitem.html#setSelfNesting">TQStyleSheetItem</a><li>setSendBufferSize:
<a href="tqstylesheetitem.html#setSelfNesting">TQStyleSheetItem</a><li>setSendBufferSize:
<a href="ntqsocketdevice.html#setSendBufferSize">TQSocketDevice</a><li>setSeparator:
<a href="qdateedit.html#setSeparator">TQDateEdit</a> <a href="qtimeedit.html#setSeparator">TQTimeEdit</a><li>setSequence:
<a href="tqcanvassprite.html#setSequence">TQCanvasSprite</a><li>setShape:
@ -3117,7 +3117,7 @@ sRect:
<a href="ntqsizepolicy.html#setVerData">TQSizePolicy</a><li>setVerStretch:
<a href="ntqsizepolicy.html#setVerStretch">TQSizePolicy</a><li>setVersion:
<a href="ntqdatastream.html#setVersion">TQDataStream</a><li>setVerticalAlignment:
<a href="qstylesheetitem.html#setVerticalAlignment">TQStyleSheetItem</a> <a href="tqtextedit.html#setVerticalAlignment">TQTextEdit</a><li>setVerticallyStretchable:
<a href="tqstylesheetitem.html#setVerticalAlignment">TQStyleSheetItem</a> <a href="tqtextedit.html#setVerticalAlignment">TQTextEdit</a><li>setVerticallyStretchable:
<a href="ntqdockwindow.html#setVerticallyStretchable">TQDockWindow</a><li>setViewMode:
<a href="ntqfiledialog.html#setViewMode">TQFileDialog</a><li>setViewXForm:
<a href="ntqpainter.html#setViewXForm">TQPainter</a><li>setViewport:
@ -3128,7 +3128,7 @@ sRect:
<a href="ntqfont.html#setWeight">TQFont</a><li>setWhatsThis:
<a href="ntqaccel.html#setWhatsThis">TQAccel</a> <a href="ntqaction.html#setWhatsThis">TQAction</a> <a href="ntqmenudata.html#setWhatsThis">TQMenuData</a> <a href="ntqmenudata.html#setWhatsThis">TQPopupMenu</a><li>setWheelScrollLines:
<a href="ntqapplication.html#setWheelScrollLines">TQApplication</a><li>setWhiteSpaceMode:
<a href="qstylesheetitem.html#setWhiteSpaceMode">TQStyleSheetItem</a><li>setWidget:
<a href="tqstylesheetitem.html#setWhiteSpaceMode">TQStyleSheetItem</a><li>setWidget:
<a href="ntqdockwindow.html#setWidget">TQDockWindow</a><li>setWidgetSizePolicy:
<a href="qmacstyle.html#setWidgetSizePolicy">TQMacStyle</a><li>setWidth:
<a href="ntqpen.html#setWidth">TQPen</a> <a href="ntqrect.html#setWidth">TQRect</a> <a href="ntqsimplerichtext.html#setWidth">TQSimpleRichText</a> <a href="ntqsize.html#setWidth">TQSize</a><li>setWildcard:
@ -3189,7 +3189,7 @@ sRect:
<a href="ntqtimer.html#singleShot">TQTimer</a><li>size:
<a href="ntqasciicache.html#size">TQAsciiCache</a> <a href="ntqasciidict.html#size">TQAsciiDict</a> <a href="ntqbitarray.html#size">TQBitArray</a> <a href="ntqcache.html#size">TQCache</a> <a href="tqcanvas.html#size">TQCanvas</a> <a href="tqcanvasrectangle.html#size">TQCanvasRectangle</a> <a href="ntqdict.html#size">TQDict</a> <a href="qdirectpainter.html#size">TQDirectPainter</a> <a href="ntqfile.html#size">TQFile</a> <a href="ntqfileinfo.html#size">TQFileInfo</a> <a href="ntqfontmetrics.html#size">TQFontMetrics</a> <a href="ntqglcolormap.html#size">TQGLColormap</a> <a href="ntqiodevice.html#size">TQIODevice</a> <a href="tqiconviewitem.html#size">TQIconViewItem</a> <a href="tqimage.html#size">TQImage</a> <a href="ntqintcache.html#size">TQIntCache</a> <a href="ntqintdict.html#size">TQIntDict</a> <a href="tqmap.html#size">TQMap</a> <a href="ntqmemarray.html#size">TQMemArray</a> <a href="ntqpicture.html#size">TQPicture</a> <a href="ntqpixmap.html#size">TQPixmap</a> <a href="tqptrdict.html#size">TQPtrDict</a> <a href="tqptrvector.html#size">TQPtrVector</a> <a href="ntqrect.html#size">TQRect</a> <a href="qresizeevent.html#size">TQResizeEvent</a> <a href="ntqsocket.html#size">TQSocket</a> <a href="tqsqlquery.html#size">TQSqlQuery</a> <a href="tqsqlresult.html#size">TQSqlResult</a> <a href="ntqurlinfo.html#size">TQUrlInfo</a> <a href="tqvaluelist.html#size">TQValueList</a> <a href="tqvaluevector.html#size">TQValueVector</a> <a href="tqwidget.html#size">TQWidget</a><li>sizeChange:
<a href="ntqheader.html#sizeChange">TQHeader</a><li>sizeFromContents:
<a href="ntqstyle.html#sizeFromContents">TQStyle</a><li>sizeHint:
<a href="tqstyle.html#sizeFromContents">TQStyle</a><li>sizeHint:
<a href="qboxlayout.html#sizeHint">TQBoxLayout</a> <a href="tqcanvasview.html#sizeHint">TQCanvasView</a> <a href="qcustommenuitem.html#sizeHint">TQCustomMenuItem</a> <a href="qgridlayout.html#sizeHint">TQGridLayout</a> <a href="qlayoutitem.html#sizeHint">TQLayoutItem</a> <a href="ntqlineedit.html#sizeHint">TQLineEdit</a> <a href="ntqprogressdialog.html#sizeHint">TQProgressDialog</a> <a href="ntqsizegrip.html#sizeHint">TQSizeGrip</a> <a href="qspaceritem.html#sizeHint">TQSpacerItem</a> <a href="qtableitem.html#sizeHint">TQTableItem</a> <a href="tqwidget.html#sizeHint">TQWidget</a> <a href="tqwidgetitem.html#sizeHint">TQWidgetItem</a><li>sizeIncrement:
<a href="tqwidget.html#sizeIncrement">TQWidget</a><li>sizeLimit:
<a href="ntqcombobox.html#sizeLimit">TQComboBox</a><li>sizePolicy:
@ -3285,13 +3285,13 @@ sRect:
<a href="ntqcstring.html#stripWhiteSpace">TQCString</a> <a href="tqstring.html#stripWhiteSpace">TQString</a><li>style:
<a href="ntqapplication.html#style">TQApplication</a> <a href="ntqbrush.html#style">TQBrush</a> <a href="ntqpen.html#style">TQPen</a> <a href="tqwidget.html#style">TQWidget</a><li>styleChange:
<a href="tqwidget.html#styleChange">TQWidget</a><li>styleHint:
<a href="ntqfont.html#styleHint">TQFont</a> <a href="ntqfontinfo.html#styleHint">TQFontInfo</a> <a href="ntqstyle.html#styleHint">TQStyle</a><li>stylePixmap:
<a href="ntqstyle.html#stylePixmap">TQStyle</a><li>styleSheet:
<a href="qstylesheetitem.html#styleSheet">TQStyleSheetItem</a> <a href="tqtextedit.html#styleSheet">TQTextEdit</a><li>styleStrategy:
<a href="ntqfont.html#styleHint">TQFont</a> <a href="ntqfontinfo.html#styleHint">TQFontInfo</a> <a href="tqstyle.html#styleHint">TQStyle</a><li>stylePixmap:
<a href="tqstyle.html#stylePixmap">TQStyle</a><li>styleSheet:
<a href="tqstylesheetitem.html#styleSheet">TQStyleSheetItem</a> <a href="tqtextedit.html#styleSheet">TQTextEdit</a><li>styleStrategy:
<a href="ntqfont.html#styleStrategy">TQFont</a><li>styleString:
<a href="ntqfontdatabase.html#styleString">TQFontDatabase</a><li>styles:
<a href="ntqfontdatabase.html#styles">TQFontDatabase</a><li>subRect:
<a href="ntqstyle.html#subRect">TQStyle</a><li>subkeyList:
<a href="tqstyle.html#subRect">TQStyle</a><li>subkeyList:
<a href="ntqsettings.html#subkeyList">TQSettings</a><li>substitute:
<a href="ntqfont.html#substitute">TQFont</a><li>substitutes:
<a href="ntqfont.html#substitutes">TQFont</a><li>substitutions:
@ -3322,7 +3322,7 @@ sRect:
<a href="tqimage.html#systemByteOrder">TQImage</a><li>systemId:
<a href="tqdomdocumenttype.html#systemId">TQDomDocumentType</a> <a href="tqdomentity.html#systemId">TQDomEntity</a> <a href="tqdomnotation.html#systemId">TQDomNotation</a> <a href="tqxmlparseexception.html#systemId">TQXmlParseException</a><li><a name="t"></a>
tab:
<a href="qstyleoption.html#tab">TQStyleOption</a> <a href="ntqtabbar.html#tab">TQTabBar</a><li>tabArray:
<a href="tqstyleoption.html#tab">TQStyleOption</a> <a href="ntqtabbar.html#tab">TQTabBar</a><li>tabArray:
<a href="ntqpainter.html#tabArray">TQPainter</a><li>tabAt:
<a href="ntqtabbar.html#tabAt">TQTabBar</a><li>tabBar:
<a href="ntqtabdialog.html#tabBar">TQTabDialog</a> <a href="ntqtabwidget.html#tabBar">TQTabWidget</a><li>tabChangesFocus:
@ -3335,11 +3335,11 @@ tab:
<a href="tqtextedit.html#tabStopWidth">TQTextEdit</a><li>tabStops:
<a href="ntqpainter.html#tabStops">TQPainter</a><li>tabToolTip:
<a href="ntqtabwidget.html#tabToolTip">TQTabWidget</a><li>tabWidth:
<a href="qstyleoption.html#tabWidth">TQStyleOption</a><li>table:
<a href="tqstyleoption.html#tabWidth">TQStyleOption</a><li>table:
<a href="qtableitem.html#table">TQTableItem</a><li>tables:
<a href="tqsqldatabase.html#tables">TQSqlDatabase</a> <a href="tqsqldriver.html#tables">TQSqlDriver</a><li>tabletEvent:
<a href="tqwidget.html#tabletEvent">TQWidget</a><li>tag:
<a href="ntqstylesheet.html#tag">TQStyleSheet</a><li>tagName:
<a href="tqstylesheet.html#tag">TQStyleSheet</a><li>tagName:
<a href="tqdomelement.html#tagName">TQDomElement</a><li>take:
<a href="ntqasciicache.html#take">TQAsciiCache</a> <a href="ntqasciidict.html#take">TQAsciiDict</a> <a href="ntqcache.html#take">TQCache</a> <a href="ntqdict.html#take">TQDict</a> <a href="ntqintcache.html#take">TQIntCache</a> <a href="ntqintdict.html#take">TQIntDict</a> <a href="tqptrdict.html#take">TQPtrDict</a> <a href="tqptrlist.html#take">TQPtrList</a> <a href="tqptrvector.html#take">TQPtrVector</a><li>takeCurrent:
<a href="qglayoutiterator.html#takeCurrent">TQGLayoutIterator</a> <a href="qlayoutiterator.html#takeCurrent">TQLayoutIterator</a><li>takeDefaultFactory:
@ -3493,7 +3493,7 @@ tab:
<a href="ntqvariant.html#typeToName">TQVariant</a><li><a name="u"></a>
ucs2:
<a href="tqstring.html#ucs2">TQString</a><li>unPolish:
<a href="ntqstyle.html#unPolish">TQStyle</a><li>uncache:
<a href="tqstyle.html#unPolish">TQStyle</a><li>uncache:
<a href="qscreen.html#uncache">TQScreen</a><li>underline:
<a href="ntqfont.html#underline">TQFont</a> <a href="tqtextedit.html#underline">TQTextEdit</a><li>underlinePos:
<a href="ntqfontmetrics.html#underlinePos">TQFontMetrics</a><li>undo:
@ -3573,7 +3573,7 @@ vScrollBarMode:
<a href="ntqsizepolicy.html#verData">TQSizePolicy</a><li>verStretch:
<a href="ntqsizepolicy.html#verStretch">TQSizePolicy</a><li>version:
<a href="ntqdatastream.html#version">TQDataStream</a> <a href="ntquuid.html#version">TQUuid</a><li>verticalAlignment:
<a href="qstylesheetitem.html#verticalAlignment">TQStyleSheetItem</a><li>verticalHeader:
<a href="tqstylesheetitem.html#verticalAlignment">TQStyleSheetItem</a><li>verticalHeader:
<a href="ntqtable.html#verticalHeader">TQTable</a><li>verticalScrollBar:
<a href="ntqscrollview.html#verticalScrollBar">TQScrollView</a><li>verticalSliderPressed:
<a href="ntqscrollview.html#verticalSliderPressed">TQScrollView</a><li>verticalSliderReleased:
@ -3588,7 +3588,7 @@ vScrollBarMode:
<a href="ntqscrollview.html#visibleHeight">TQScrollView</a><li>visibleWidget:
<a href="tqwidgetstack.html#visibleWidget">TQWidgetStack</a><li>visibleWidth:
<a href="ntqscrollview.html#visibleWidth">TQScrollView</a><li>visualRect:
<a href="ntqstyle.html#visualRect">TQStyle</a><li><a name="w"></a>
<a href="tqstyle.html#visualRect">TQStyle</a><li><a name="w"></a>
wait:
<a href="ntqthread.html#wait">TQThread</a> <a href="ntqwaitcondition.html#wait">TQWaitCondition</a><li>waitForMore:
<a href="ntqsocket.html#waitForMore">TQSocket</a> <a href="ntqsocketdevice.html#waitForMore">TQSocketDevice</a><li>wakeAll:
@ -3604,8 +3604,8 @@ wait:
<a href="ntqwhatsthis.html#whatsThisButton">TQWhatsThis</a><li>wheelEvent:
<a href="tqwidget.html#wheelEvent">TQWidget</a><li>wheelScrollLines:
<a href="ntqapplication.html#wheelScrollLines">TQApplication</a><li>whiteSpaceMode:
<a href="qstylesheetitem.html#whiteSpaceMode">TQStyleSheetItem</a><li>widget:
<a href="qaxaggregated.html#widget">TQAxAggregated</a> <a href="ntqdockwindow.html#widget">TQDockWindow</a> <a href="qlayoutitem.html#widget">TQLayoutItem</a> <a href="qnpinstance.html#widget">TQNPInstance</a> <a href="tqsqlform.html#widget">TQSqlForm</a> <a href="qstyleoption.html#widget">TQStyleOption</a> <a href="tqwidgetitem.html#widget">TQWidgetItem</a> <a href="tqwidgetstack.html#widget">TQWidgetStack</a><li>widgetAt:
<a href="tqstylesheetitem.html#whiteSpaceMode">TQStyleSheetItem</a><li>widget:
<a href="qaxaggregated.html#widget">TQAxAggregated</a> <a href="ntqdockwindow.html#widget">TQDockWindow</a> <a href="qlayoutitem.html#widget">TQLayoutItem</a> <a href="qnpinstance.html#widget">TQNPInstance</a> <a href="tqsqlform.html#widget">TQSqlForm</a> <a href="tqstyleoption.html#widget">TQStyleOption</a> <a href="tqwidgetitem.html#widget">TQWidgetItem</a> <a href="tqwidgetstack.html#widget">TQWidgetStack</a><li>widgetAt:
<a href="ntqapplication.html#widgetAt">TQApplication</a><li>widgetSizePolicy:
<a href="qmacstyle.html#widgetSizePolicy">TQMacStyle</a><li>widgetToField:
<a href="tqsqlform.html#widgetToField">TQSqlForm</a><li>widgets:

@ -90,7 +90,7 @@ coordinate system.</a>
<tr bgcolor=#f0f0f0><td><b><a href="ntqrect.html">TQRect</a></b><td>Defines a rectangle in the plane
<tr bgcolor=#f0f0f0><td><b><a href="ntqregion.html">TQRegion</a></b><td>Clip region for a painter
<tr bgcolor=#f0f0f0><td><b><a href="ntqsize.html">TQSize</a></b><td>Defines the size of a two-dimensional object
<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="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="ntqwmatrix.html">TQWMatrix</a></b><td>2D transformations of a coordinate system
</table>
<!-- eof -->

@ -136,8 +136,8 @@ qcharref.h tqstring.h
qconststring.h tqstring.h
tqstrlistiterator.h tqstrlist.h
tqstrilist.h tqstrlist.h
qstyleoption.h ntqstyle.h
qstylesheetitem.h ntqstylesheet.h
tqstyleoption.h tqstyle.h
tqstylesheetitem.h tqstylesheet.h
qtab.h ntqtabbar.h
qtableselection.h ntqtable.h
qtableitem.h ntqtable.h

@ -244,10 +244,10 @@ body { background: #ffffff; color: black; }
<li><a href="tqstring-h.html">tqstring.h</a>
<li><a href="tqstringlist-h.html">tqstringlist.h</a>
<li><a href="tqstrlist-h.html">tqstrlist.h</a>
<li><a href="qstyle-h.html">ntqstyle.h</a>
<li><a href="qstylefactory-h.html">ntqstylefactory.h</a>
<li><a href="qstyleplugin-h.html">ntqstyleplugin.h</a>
<li><a href="qstylesheet-h.html">ntqstylesheet.h</a>
<li><a href="tqstyle-h.html">tqstyle.h</a>
<li><a href="tqstylefactory-h.html">tqstylefactory.h</a>
<li><a href="tqstyleplugin-h.html">tqstyleplugin.h</a>
<li><a href="tqstylesheet-h.html">tqstylesheet.h</a>
<li><a href="qsyntaxhighlighter-h.html">ntqsyntaxhighlighter.h</a>
<li><a href="qtabbar-h.html">ntqtabbar.h</a>
<li><a href="qtabdialog-h.html">ntqtabdialog.h</a>

@ -49,7 +49,7 @@ help is a digression from their real task.
<p>
<p><table width="100%">
<tr bgcolor=#f0f0f0><td><b><a href="ntqstatusbar.html">TQStatusBar</a></b><td>Horizontal bar suitable for presenting status information
<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="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="tqtextbrowser.html">TQTextBrowser</a></b><td>Rich text browser with hypertext navigation
<tr bgcolor=#f0f0f0><td><b><a href="ntqtooltip.html">TQToolTip</a></b><td>Tool tips (balloon help) for any widget or rectangular part of a widget
<tr bgcolor=#f0f0f0><td><b><a href="qtooltipgroup.html">TQToolTipGroup</a></b><td>Collects tool tips into related groups

@ -125,7 +125,7 @@ private:
#include &lt;<a href="tqiconset-h.html">tqiconset.h</a>&gt;
#include &lt;<a href="qfile-h.html">ntqfile.h</a>&gt;
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
#include &lt;<a href="qstylesheet-h.html">ntqstylesheet.h</a>&gt;
#include &lt;<a href="tqstylesheet-h.html">tqstylesheet.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;

@ -247,9 +247,9 @@ classes in the TQt API.
<li><a href="tqsqlrecordinfo.html">TQSqlRecordInfo</a>
<li><a href="tqsqlresult.html">TQSqlResult</a>
<li><a href="tqstring.html">TQString</a>
<li><a href="ntqstylefactory.html">TQStyleFactory</a>
<li><a href="qstyleoption.html">TQStyleOption</a>
<li><a href="ntqstyleplugin.html">TQStylePlugin</a>
<li><a href="tqstylefactory.html">TQStyleFactory</a>
<li><a href="tqstyleoption.html">TQStyleOption</a>
<li><a href="tqstyleplugin.html">TQStylePlugin</a>
<li><a href="ntqt.html">TQt</a>
<ul>
<li><a href="ntqbrush.html">TQBrush</a>
@ -374,7 +374,7 @@ classes in the TQt API.
<li><a href="tqsqldatabase.html">TQSqlDatabase</a>
<li><a href="tqsqldriver.html">TQSqlDriver</a>
<li><a href="tqsqlform.html">TQSqlForm</a>
<li><a href="ntqstyle.html">TQStyle</a>
<li><a href="tqstyle.html">TQStyle</a>
<ul>
<li><a href="ntqcommonstyle.html">TQCommonStyle</a>
<ul>
@ -391,7 +391,7 @@ classes in the TQt API.
</ul>
</ul>
</ul>
<li><a href="ntqstylesheet.html">TQStyleSheet</a>
<li><a href="tqstylesheet.html">TQStyleSheet</a>
<li><a href="ntqtimer.html">TQTimer</a>
<li><a href="qtooltipgroup.html">TQToolTipGroup</a>
<li><a href="ntqtranslator.html">TQTranslator</a>
@ -509,7 +509,7 @@ classes in the TQt API.
<li><a href="qdirectpainter.html">TQDirectPainter</a>
</ul>
<li><a href="ntqpen.html">TQPen</a>
<li><a href="qstylesheetitem.html">TQStyleSheetItem</a>
<li><a href="tqstylesheetitem.html">TQStyleSheetItem</a>
<li><a href="ntqsyntaxhighlighter.html">TQSyntaxHighlighter</a>
<li><a href="qtab.html">TQTab</a>
<li><a href="qtableitem.html">TQTableItem</a>

@ -6204,123 +6204,123 @@
"TQStringList::join" tqstringlist.html#join
"TQStringList::sort" tqstringlist.html#sort
"TQStringList::split" tqstringlist.html#split
"QStyle" ntqstyle.html
"QStyle::ComplexControl" ntqstyle.html#ComplexControl
"QStyle::ContentsType" ntqstyle.html#ContentsType
"QStyle::ControlElement" ntqstyle.html#ControlElement
"QStyle::PixelMetric" ntqstyle.html#PixelMetric
"QStyle::PrimitiveElement" ntqstyle.html#PrimitiveElement
"QStyle::StyleFlags" ntqstyle.html#StyleFlags
"QStyle::StyleHint" ntqstyle.html#StyleHint
"QStyle::StylePixmap" ntqstyle.html#StylePixmap
"QStyle::SubControl" ntqstyle.html#SubControl
"QStyle::SubRect" ntqstyle.html#SubRect
"QStyle::drawComplexControl" ntqstyle.html#drawComplexControl
"QStyle::drawComplexControlMask" ntqstyle.html#drawComplexControlMask
"QStyle::drawControl" ntqstyle.html#drawControl
"QStyle::drawControlMask" ntqstyle.html#drawControlMask
"QStyle::drawItem" ntqstyle.html#drawItem
"QStyle::drawPrimitive" ntqstyle.html#drawPrimitive
"QStyle::itemRect" ntqstyle.html#itemRect
"QStyle::pixelMetric" ntqstyle.html#pixelMetric
"QStyle::polish" ntqstyle.html#polish
"QStyle::polishPopupMenu" ntqstyle.html#polishPopupMenu
"QStyle::querySubControl" ntqstyle.html#querySubControl
"QStyle::querySubControlMetrics" ntqstyle.html#querySubControlMetrics
"QStyle::sizeFromContents" ntqstyle.html#sizeFromContents
"QStyle::styleHint" ntqstyle.html#styleHint
"QStyle::stylePixmap" ntqstyle.html#stylePixmap
"QStyle::subRect" ntqstyle.html#subRect
"QStyle::unPolish" ntqstyle.html#unPolish
"QStyle::visualRect" ntqstyle.html#visualRect
"QStyle::~QStyle" ntqstyle.html#~QStyle
"QStyleFactory" ntqstylefactory.html
"QStyleFactory::create" ntqstylefactory.html#create
"QStyleFactory::keys" ntqstylefactory.html#keys
"QStyleOption" qstyleoption.html
"QStyleOption::StyleOptionDefault" qstyleoption.html#StyleOptionDefault
"QStyleOption::arrowType" qstyleoption.html#arrowType
"QStyleOption::checkListItem" qstyleoption.html#checkListItem
"QStyleOption::color" qstyleoption.html#color
"QStyleOption::day" qstyleoption.html#day
"QStyleOption::frameShadow" qstyleoption.html#frameShadow
"QStyleOption::frameShape" qstyleoption.html#frameShape
"QStyleOption::headerSection" qstyleoption.html#headerSection
"QStyleOption::isDefault" qstyleoption.html#isDefault
"QStyleOption::lineWidth" qstyleoption.html#lineWidth
"QStyleOption::listViewItem" qstyleoption.html#listViewItem
"QStyleOption::maxIconWidth" qstyleoption.html#maxIconWidth
"QStyleOption::menuItem" qstyleoption.html#menuItem
"QStyleOption::midLineWidth" qstyleoption.html#midLineWidth
"QStyleOption::rect" qstyleoption.html#rect
"QStyleOption::tab" qstyleoption.html#tab
"QStyleOption::tabWidth" qstyleoption.html#tabWidth
"QStyleOption::widget" qstyleoption.html#widget
"QStylePlugin" ntqstyleplugin.html
"QStylePlugin::create" ntqstyleplugin.html#create
"QStylePlugin::keys" ntqstyleplugin.html#keys
"QStylePlugin::~QStylePlugin" ntqstyleplugin.html#~QStylePlugin
"QStyleSheet" ntqstylesheet.html
"QStyleSheet::convertFromPlainText" ntqstylesheet.html#convertFromPlainText
"QStyleSheet::defaultSheet" ntqstylesheet.html#defaultSheet
"QStyleSheet::error" ntqstylesheet.html#error
"QStyleSheet::escape" ntqstylesheet.html#escape
"QStyleSheet::item" ntqstylesheet.html#item
"QStyleSheet::mightBeRichText" ntqstylesheet.html#mightBeRichText
"QStyleSheet::scaleFont" ntqstylesheet.html#scaleFont
"QStyleSheet::setDefaultSheet" ntqstylesheet.html#setDefaultSheet
"QStyleSheet::tag" ntqstylesheet.html#tag
"QStyleSheet::~QStyleSheet" ntqstylesheet.html#~QStyleSheet
"QStyleSheetItem" qstylesheetitem.html
"QStyleSheetItem::DisplayMode" qstylesheetitem.html#DisplayMode
"QStyleSheetItem::ListStyle" qstylesheetitem.html#ListStyle
"QStyleSheetItem::Margin" qstylesheetitem.html#Margin
"QStyleSheetItem::VerticalAlignment" qstylesheetitem.html#VerticalAlignment
"QStyleSheetItem::WhiteSpaceMode" qstylesheetitem.html#WhiteSpaceMode
"QStyleSheetItem::alignment" qstylesheetitem.html#alignment
"QStyleSheetItem::allowedInContext" qstylesheetitem.html#allowedInContext
"QStyleSheetItem::color" qstylesheetitem.html#color
"QStyleSheetItem::contexts" qstylesheetitem.html#contexts
"QStyleSheetItem::definesFontItalic" qstylesheetitem.html#definesFontItalic
"QStyleSheetItem::definesFontStrikeOut" qstylesheetitem.html#definesFontStrikeOut
"QStyleSheetItem::definesFontUnderline" qstylesheetitem.html#definesFontUnderline
"QStyleSheetItem::displayMode" qstylesheetitem.html#displayMode
"QStyleSheetItem::fontFamily" qstylesheetitem.html#fontFamily
"QStyleSheetItem::fontItalic" qstylesheetitem.html#fontItalic
"QStyleSheetItem::fontSize" qstylesheetitem.html#fontSize
"QStyleSheetItem::fontStrikeOut" qstylesheetitem.html#fontStrikeOut
"QStyleSheetItem::fontUnderline" qstylesheetitem.html#fontUnderline
"QStyleSheetItem::fontWeight" qstylesheetitem.html#fontWeight
"QStyleSheetItem::isAnchor" qstylesheetitem.html#isAnchor
"QStyleSheetItem::listStyle" qstylesheetitem.html#listStyle
"QStyleSheetItem::logicalFontSize" qstylesheetitem.html#logicalFontSize
"QStyleSheetItem::logicalFontSizeStep" qstylesheetitem.html#logicalFontSizeStep
"QStyleSheetItem::margin" qstylesheetitem.html#margin
"QStyleSheetItem::name" qstylesheetitem.html#name
"QStyleSheetItem::operator=" qstylesheetitem.html#operator-eq
"QStyleSheetItem::selfNesting" qstylesheetitem.html#selfNesting
"QStyleSheetItem::setAlignment" qstylesheetitem.html#setAlignment
"QStyleSheetItem::setAnchor" qstylesheetitem.html#setAnchor
"QStyleSheetItem::setColor" qstylesheetitem.html#setColor
"QStyleSheetItem::setContexts" qstylesheetitem.html#setContexts
"QStyleSheetItem::setDisplayMode" qstylesheetitem.html#setDisplayMode
"QStyleSheetItem::setFontFamily" qstylesheetitem.html#setFontFamily
"QStyleSheetItem::setFontItalic" qstylesheetitem.html#setFontItalic
"QStyleSheetItem::setFontSize" qstylesheetitem.html#setFontSize
"QStyleSheetItem::setFontStrikeOut" qstylesheetitem.html#setFontStrikeOut
"QStyleSheetItem::setFontUnderline" qstylesheetitem.html#setFontUnderline
"QStyleSheetItem::setFontWeight" qstylesheetitem.html#setFontWeight
"QStyleSheetItem::setListStyle" qstylesheetitem.html#setListStyle
"QStyleSheetItem::setLogicalFontSize" qstylesheetitem.html#setLogicalFontSize
"QStyleSheetItem::setLogicalFontSizeStep" qstylesheetitem.html#setLogicalFontSizeStep
"QStyleSheetItem::setMargin" qstylesheetitem.html#setMargin
"QStyleSheetItem::setSelfNesting" qstylesheetitem.html#setSelfNesting
"QStyleSheetItem::setVerticalAlignment" qstylesheetitem.html#setVerticalAlignment
"QStyleSheetItem::setWhiteSpaceMode" qstylesheetitem.html#setWhiteSpaceMode
"QStyleSheetItem::styleSheet" qstylesheetitem.html#styleSheet
"QStyleSheetItem::verticalAlignment" qstylesheetitem.html#verticalAlignment
"QStyleSheetItem::whiteSpaceMode" qstylesheetitem.html#whiteSpaceMode
"QStyleSheetItem::~QStyleSheetItem" qstylesheetitem.html#~QStyleSheetItem
"TQStyle" tqstyle.html
"TQStyle::ComplexControl" tqstyle.html#ComplexControl
"TQStyle::ContentsType" tqstyle.html#ContentsType
"TQStyle::ControlElement" tqstyle.html#ControlElement
"TQStyle::PixelMetric" tqstyle.html#PixelMetric
"TQStyle::PrimitiveElement" tqstyle.html#PrimitiveElement
"TQStyle::StyleFlags" tqstyle.html#StyleFlags
"TQStyle::StyleHint" tqstyle.html#StyleHint
"TQStyle::StylePixmap" tqstyle.html#StylePixmap
"TQStyle::SubControl" tqstyle.html#SubControl
"TQStyle::SubRect" tqstyle.html#SubRect
"TQStyle::drawComplexControl" tqstyle.html#drawComplexControl
"TQStyle::drawComplexControlMask" tqstyle.html#drawComplexControlMask
"TQStyle::drawControl" tqstyle.html#drawControl
"TQStyle::drawControlMask" tqstyle.html#drawControlMask
"TQStyle::drawItem" tqstyle.html#drawItem
"TQStyle::drawPrimitive" tqstyle.html#drawPrimitive
"TQStyle::itemRect" tqstyle.html#itemRect
"TQStyle::pixelMetric" tqstyle.html#pixelMetric
"TQStyle::polish" tqstyle.html#polish
"TQStyle::polishPopupMenu" tqstyle.html#polishPopupMenu
"TQStyle::querySubControl" tqstyle.html#querySubControl
"TQStyle::querySubControlMetrics" tqstyle.html#querySubControlMetrics
"TQStyle::sizeFromContents" tqstyle.html#sizeFromContents
"TQStyle::styleHint" tqstyle.html#styleHint
"TQStyle::stylePixmap" tqstyle.html#stylePixmap
"TQStyle::subRect" tqstyle.html#subRect
"TQStyle::unPolish" tqstyle.html#unPolish
"TQStyle::visualRect" tqstyle.html#visualRect
"TQStyle::~TQStyle" tqstyle.html#~TQStyle
"TQStyleFactory" tqstylefactory.html
"TQStyleFactory::create" tqstylefactory.html#create
"TQStyleFactory::keys" tqstylefactory.html#keys
"TQStyleOption" tqstyleoption.html
"TQStyleOption::StyleOptionDefault" tqstyleoption.html#StyleOptionDefault
"TQStyleOption::arrowType" tqstyleoption.html#arrowType
"TQStyleOption::checkListItem" tqstyleoption.html#checkListItem
"TQStyleOption::color" tqstyleoption.html#color
"TQStyleOption::day" tqstyleoption.html#day
"TQStyleOption::frameShadow" tqstyleoption.html#frameShadow
"TQStyleOption::frameShape" tqstyleoption.html#frameShape
"TQStyleOption::headerSection" tqstyleoption.html#headerSection
"TQStyleOption::isDefault" tqstyleoption.html#isDefault
"TQStyleOption::lineWidth" tqstyleoption.html#lineWidth
"TQStyleOption::listViewItem" tqstyleoption.html#listViewItem
"TQStyleOption::maxIconWidth" tqstyleoption.html#maxIconWidth
"TQStyleOption::menuItem" tqstyleoption.html#menuItem
"TQStyleOption::midLineWidth" tqstyleoption.html#midLineWidth
"TQStyleOption::rect" tqstyleoption.html#rect
"TQStyleOption::tab" tqstyleoption.html#tab
"TQStyleOption::tabWidth" tqstyleoption.html#tabWidth
"TQStyleOption::widget" tqstyleoption.html#widget
"TQStylePlugin" tqstyleplugin.html
"TQStylePlugin::create" tqstyleplugin.html#create
"TQStylePlugin::keys" tqstyleplugin.html#keys
"TQStylePlugin::~TQStylePlugin" tqstyleplugin.html#~TQStylePlugin
"TQStyleSheet" tqstylesheet.html
"TQStyleSheet::convertFromPlainText" tqstylesheet.html#convertFromPlainText
"TQStyleSheet::defaultSheet" tqstylesheet.html#defaultSheet
"TQStyleSheet::error" tqstylesheet.html#error
"TQStyleSheet::escape" tqstylesheet.html#escape
"TQStyleSheet::item" tqstylesheet.html#item
"TQStyleSheet::mightBeRichText" tqstylesheet.html#mightBeRichText
"TQStyleSheet::scaleFont" tqstylesheet.html#scaleFont
"TQStyleSheet::setDefaultSheet" tqstylesheet.html#setDefaultSheet
"TQStyleSheet::tag" tqstylesheet.html#tag
"TQStyleSheet::~TQStyleSheet" tqstylesheet.html#~TQStyleSheet
"TQStyleSheetItem" tqstylesheetitem.html
"TQStyleSheetItem::DisplayMode" tqstylesheetitem.html#DisplayMode
"TQStyleSheetItem::ListStyle" tqstylesheetitem.html#ListStyle
"TQStyleSheetItem::Margin" tqstylesheetitem.html#Margin
"TQStyleSheetItem::VerticalAlignment" tqstylesheetitem.html#VerticalAlignment
"TQStyleSheetItem::WhiteSpaceMode" tqstylesheetitem.html#WhiteSpaceMode
"TQStyleSheetItem::alignment" tqstylesheetitem.html#alignment
"TQStyleSheetItem::allowedInContext" tqstylesheetitem.html#allowedInContext
"TQStyleSheetItem::color" tqstylesheetitem.html#color
"TQStyleSheetItem::contexts" tqstylesheetitem.html#contexts
"TQStyleSheetItem::definesFontItalic" tqstylesheetitem.html#definesFontItalic
"TQStyleSheetItem::definesFontStrikeOut" tqstylesheetitem.html#definesFontStrikeOut
"TQStyleSheetItem::definesFontUnderline" tqstylesheetitem.html#definesFontUnderline
"TQStyleSheetItem::displayMode" tqstylesheetitem.html#displayMode
"TQStyleSheetItem::fontFamily" tqstylesheetitem.html#fontFamily
"TQStyleSheetItem::fontItalic" tqstylesheetitem.html#fontItalic
"TQStyleSheetItem::fontSize" tqstylesheetitem.html#fontSize
"TQStyleSheetItem::fontStrikeOut" tqstylesheetitem.html#fontStrikeOut
"TQStyleSheetItem::fontUnderline" tqstylesheetitem.html#fontUnderline
"TQStyleSheetItem::fontWeight" tqstylesheetitem.html#fontWeight
"TQStyleSheetItem::isAnchor" tqstylesheetitem.html#isAnchor
"TQStyleSheetItem::listStyle" tqstylesheetitem.html#listStyle
"TQStyleSheetItem::logicalFontSize" tqstylesheetitem.html#logicalFontSize
"TQStyleSheetItem::logicalFontSizeStep" tqstylesheetitem.html#logicalFontSizeStep
"TQStyleSheetItem::margin" tqstylesheetitem.html#margin
"TQStyleSheetItem::name" tqstylesheetitem.html#name
"TQStyleSheetItem::operator=" tqstylesheetitem.html#operator-eq
"TQStyleSheetItem::selfNesting" tqstylesheetitem.html#selfNesting
"TQStyleSheetItem::setAlignment" tqstylesheetitem.html#setAlignment
"TQStyleSheetItem::setAnchor" tqstylesheetitem.html#setAnchor
"TQStyleSheetItem::setColor" tqstylesheetitem.html#setColor
"TQStyleSheetItem::setContexts" tqstylesheetitem.html#setContexts
"TQStyleSheetItem::setDisplayMode" tqstylesheetitem.html#setDisplayMode
"TQStyleSheetItem::setFontFamily" tqstylesheetitem.html#setFontFamily
"TQStyleSheetItem::setFontItalic" tqstylesheetitem.html#setFontItalic
"TQStyleSheetItem::setFontSize" tqstylesheetitem.html#setFontSize
"TQStyleSheetItem::setFontStrikeOut" tqstylesheetitem.html#setFontStrikeOut
"TQStyleSheetItem::setFontUnderline" tqstylesheetitem.html#setFontUnderline
"TQStyleSheetItem::setFontWeight" tqstylesheetitem.html#setFontWeight
"TQStyleSheetItem::setListStyle" tqstylesheetitem.html#setListStyle
"TQStyleSheetItem::setLogicalFontSize" tqstylesheetitem.html#setLogicalFontSize
"TQStyleSheetItem::setLogicalFontSizeStep" tqstylesheetitem.html#setLogicalFontSizeStep
"TQStyleSheetItem::setMargin" tqstylesheetitem.html#setMargin
"TQStyleSheetItem::setSelfNesting" tqstylesheetitem.html#setSelfNesting
"TQStyleSheetItem::setVerticalAlignment" tqstylesheetitem.html#setVerticalAlignment
"TQStyleSheetItem::setWhiteSpaceMode" tqstylesheetitem.html#setWhiteSpaceMode
"TQStyleSheetItem::styleSheet" tqstylesheetitem.html#styleSheet
"TQStyleSheetItem::verticalAlignment" tqstylesheetitem.html#verticalAlignment
"TQStyleSheetItem::whiteSpaceMode" tqstylesheetitem.html#whiteSpaceMode
"TQStyleSheetItem::~TQStyleSheetItem" tqstylesheetitem.html#~TQStyleSheetItem
"QSvgDevice::boundingRect" qsvgdevice.html#boundingRect
"QSvgDevice::load" qsvgdevice.html#load
"QSvgDevice::metric" qsvgdevice.html#metric

@ -99,7 +99,7 @@ protected slots:
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="qstyle-h.html">ntqstyle.h</a>&gt;
#include &lt;<a href="tqstyle-h.html">tqstyle.h</a>&gt;
class MyListBoxItem : public <a href="qlistboxitem.html">TQListBoxItem</a>

@ -533,7 +533,7 @@ void <a name="f551"></a>MDIWindow::print( <a href="ntqprinter.html">TQPrinter</a
<a name="x2041"></a> int dpiy = metrics.<a href="ntqpaintdevicemetrics.html#logicalDpiY">logicalDpiY</a>();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
<a name="x2042"></a><a name="x2040"></a> <a href="ntqrect.html">TQRect</a> view( margin, margin, metrics.<a href="ntqpaintdevicemetrics.html#width">width</a>() - 2*margin, metrics.<a href="ntqpaintdevicemetrics.html#height">height</a>() - 2*margin );
<a name="x2067"></a> <a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="ntqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(medit-&gt;<a href="tqtextedit.html#text">text</a>()),
<a name="x2067"></a> <a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="tqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(medit-&gt;<a href="tqtextedit.html#text">text</a>()),
TQFont(),
<a name="x2068"></a> medit-&gt;<a href="tqtextedit.html#context">context</a>(),
<a name="x2072"></a> medit-&gt;<a href="tqtextedit.html#styleSheet">styleSheet</a>(),

@ -502,7 +502,7 @@ appear at all.
<p>This property holds the action's "What's This?" help text.
<p>The whats this text is used to provide a brief description of the
action. The text may contain rich text (HTML-like tags -- see
<a href="ntqstylesheet.html">TQStyleSheet</a> for the list of supported tags). There is no default
<a href="tqstylesheet.html">TQStyleSheet</a> for the list of supported tags). There is no default
"What's This" text.
<p> <p>See also <a href="ntqwhatsthis.html">TQWhatsThis</a>.

@ -209,7 +209,7 @@ events to widgets.
<p> <li> It parses common command line arguments and sets its internal
state accordingly. See the <a href="#TQApplication">constructor documentation</a> below for more details about this.
<p> <li> It defines the application's look and feel, which is
encapsulated in a <a href="ntqstyle.html">TQStyle</a> object. This can be changed at runtime
encapsulated in a <a href="tqstyle.html">TQStyle</a> object. This can be changed at runtime
with <a href="#setStyle">setStyle</a>().
<p> <li> It specifies how the application is to allocate colors.
See <a href="#setColorSpec">setColorSpec</a>() for details.
@ -1075,7 +1075,7 @@ may be used to do some style-based central customization of widgets.
<p> Note that you are not limited to the public functions of <a href="tqwidget.html">TQWidget</a>.
Instead, based on meta information like <a href="tqobject.html#className">TQObject::className</a>() you are
able to customize any kind of widget.
<p> <p>See also <a href="ntqstyle.html#polish">TQStyle::polish</a>(), <a href="tqwidget.html#polish">TQWidget::polish</a>(), <a href="#setPalette">setPalette</a>(), and <a href="#setFont">setFont</a>().
<p> <p>See also <a href="tqstyle.html#polish">TQStyle::polish</a>(), <a href="tqwidget.html#polish">TQWidget::polish</a>(), <a href="#setPalette">setPalette</a>(), and <a href="#setFont">setFont</a>().
<h3 class=fn>void <a name="postEvent"></a>TQApplication::postEvent ( <a href="tqobject.html">TQObject</a>&nbsp;*&nbsp;receiver, <a href="ntqevent.html">TQEvent</a>&nbsp;*&nbsp;event )<tt> [static]</tt>
</h3><p><b>Note:</b> This function is <a href="threads.html#threadsafe">thread-safe</a> when TQt is built withthread support.</p>
@ -1515,8 +1515,8 @@ inherit <em>className</em> (as reported by <a href="tqobject.html#inherits">TQOb
<em>className</em> is left 0, the change affects all widgets, thus overriding
any previously set class specific palettes.
<p> The palette may be changed according to the current GUI style in
<a href="ntqstyle.html#polish">TQStyle::polish</a>().
<p> <p>See also <a href="tqwidget.html#palette-prop">TQWidget::palette</a>, <a href="#palette">palette</a>(), and <a href="ntqstyle.html#polish">TQStyle::polish</a>().
<a href="tqstyle.html#polish">TQStyle::polish</a>().
<p> <p>See also <a href="tqwidget.html#palette-prop">TQWidget::palette</a>, <a href="#palette">palette</a>(), and <a href="tqstyle.html#polish">TQStyle::polish</a>().
<p>Examples: <a href="i18n-example.html#x1934">i18n/main.cpp</a>, <a href="themes-example.html#x267">themes/metal.cpp</a>, <a href="themes-example.html#x324">themes/themes.cpp</a>, and <a href="themes-example.html#x187">themes/wood.cpp</a>.
<h3 class=fn>void <a name="setReverseLayout"></a>TQApplication::setReverseLayout ( bool&nbsp;b )<tt> [static]</tt>
@ -1539,7 +1539,7 @@ Sets the distance after which a drag should start to <em>l</em> pixels.
Sets the time after which a drag should start to <em>ms</em> ms.
<p> <p>See also <a href="#startDragTime">startDragTime</a>().
<h3 class=fn>void <a name="setStyle"></a>TQApplication::setStyle ( <a href="ntqstyle.html">TQStyle</a>&nbsp;*&nbsp;style )<tt> [static]</tt>
<h3 class=fn>void <a name="setStyle"></a>TQApplication::setStyle ( <a href="tqstyle.html">TQStyle</a>&nbsp;*&nbsp;style )<tt> [static]</tt>
</h3>
Sets the application's GUI style to <em>style</em>. Ownership of the style
object is transferred to TQApplication, so TQApplication will delete
@ -1553,14 +1553,14 @@ the style object on application exit or when a new style is set.
the initial colors or the system defaults. This is necessary since
certain styles have to adapt the color palette to be fully
style-guide compliant.
<p> <p>See also <a href="#style">style</a>(), <a href="ntqstyle.html">TQStyle</a>, <a href="#setPalette">setPalette</a>(), and <a href="#desktopSettingsAware">desktopSettingsAware</a>().
<p> <p>See also <a href="#style">style</a>(), <a href="tqstyle.html">TQStyle</a>, <a href="#setPalette">setPalette</a>(), and <a href="#desktopSettingsAware">desktopSettingsAware</a>().
<p>Example: <a href="themes-example.html#x325">themes/themes.cpp</a>.
<h3 class=fn><a href="ntqstyle.html">TQStyle</a>&nbsp;* <a name="setStyle-2"></a>TQApplication::setStyle ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;style )<tt> [static]</tt>
<h3 class=fn><a href="tqstyle.html">TQStyle</a>&nbsp;* <a name="setStyle-2"></a>TQApplication::setStyle ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;style )<tt> [static]</tt>
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Requests a <a href="ntqstyle.html">TQStyle</a> object for <em>style</em> from the <a href="ntqstylefactory.html">TQStyleFactory</a>.
<p> The string must be one of the <a href="ntqstylefactory.html#keys">TQStyleFactory::keys</a>(), typically one
<p> Requests a <a href="tqstyle.html">TQStyle</a> object for <em>style</em> from the <a href="tqstylefactory.html">TQStyleFactory</a>.
<p> The string must be one of the <a href="tqstylefactory.html#keys">TQStyleFactory::keys</a>(), typically one
of "windows", "motif", "cde", "motifplus", "platinum", "sgi" and
"compact". Depending on the platform, "windowsxp", "aqua" or
"macintosh" may be available.
@ -1623,10 +1623,10 @@ Returns TRUE if an application object has not been created yet;
otherwise returns FALSE.
<p> <p>See also <a href="#closingDown">closingDown</a>().
<h3 class=fn><a href="ntqstyle.html">TQStyle</a>&nbsp;&amp; <a name="style"></a>TQApplication::style ()<tt> [static]</tt>
<h3 class=fn><a href="tqstyle.html">TQStyle</a>&nbsp;&amp; <a name="style"></a>TQApplication::style ()<tt> [static]</tt>
</h3>
Returns the application's style object.
<p> <p>See also <a href="#setStyle">setStyle</a>() and <a href="ntqstyle.html">TQStyle</a>.
<p> <p>See also <a href="#setStyle">setStyle</a>() and <a href="tqstyle.html">TQStyle</a>.
<h3 class=fn>void <a name="syncX"></a>TQApplication::syncX ()<tt> [static]</tt>
</h3>

@ -53,7 +53,7 @@ checkboxes. Together with a dark background and a bright
text/foreground color, the style looks quite attractive (at least
for Motif fans).
<p> Note that the functions provided by TQCDEStyle are
reimplementations of <a href="ntqstyle.html">TQStyle</a> functions; see TQStyle for their
reimplementations of <a href="tqstyle.html">TQStyle</a> functions; see TQStyle for their
documentation.
<p>See also <a href="appearance.html">Widget Appearance and Style</a>.

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQCommonStyle class encapsulates the common Look and Feel of a GUI.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qcommonstyle-h.html">ntqcommonstyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqstyle.html">TQStyle</a>.
<p>Inherits <a href="tqstyle.html">TQStyle</a>.
<p>Inherited by <a href="ntqmotifstyle.html">TQMotifStyle</a> and <a href="ntqwindowsstyle.html">TQWindowsStyle</a>.
<p><a href="qcommonstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2>
@ -49,7 +49,7 @@ The TQCommonStyle class encapsulates the common Look and Feel of a GUI.
<p> This abstract class implements some of the widget's look and feel
that is common to all GUI styles provided and shipped as part of
TQt.
<p> All the functions are documented in <a href="ntqstyle.html">TQStyle</a>.
<p> All the functions are documented in <a href="tqstyle.html">TQStyle</a>.
<p>See also <a href="appearance.html">Widget Appearance and Style</a>.
<hr><h2>Member Function Documentation</h2>

@ -167,11 +167,11 @@ look depends upon the current GUI style.
<li><tt>TQFrame::TabWidgetPanel</tt> - is used to draw a frame suitable for tab widgets. The
look depends upon the current GUI style.
<li><tt>TQFrame::MShape</tt> - internal mask
</ul><p> When it does not call <a href="ntqstyle.html">TQStyle</a>, Shape interacts with TQFrame::Shadow,
</ul><p> When it does not call <a href="tqstyle.html">TQStyle</a>, Shape interacts with TQFrame::Shadow,
the <a href="#lineWidth">lineWidth</a>() and the <a href="#midLineWidth">midLineWidth</a>() to create the total result.
See the <a href="#picture">picture of the frames</a> in the class
description.
<p> <p>See also <a href="#Shadow-enum">TQFrame::Shadow</a>, <a href="tqwidget.html#style">TQFrame::style</a>(), and <a href="ntqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<p> <p>See also <a href="#Shadow-enum">TQFrame::Shadow</a>, <a href="tqwidget.html#style">TQFrame::style</a>(), and <a href="tqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQFrame"></a>TQFrame::TQFrame ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, WFlags&nbsp;f = 0 )

@ -153,10 +153,10 @@ errors which can't be easily fixed:
<p> The text part of all message box messages can be either rich text
or plain text. If you specify a rich text formatted string, it
will be rendered using the default stylesheet. See
<a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>() for details. With certain strings that
<a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>() for details. With certain strings that
contain XML meta characters, the auto-rich text detection may
fail, interpreting plain text incorrectly as rich text. In these
rare cases, use <a href="ntqstylesheet.html#convertFromPlainText">TQStyleSheet::convertFromPlainText</a>() to convert
rare cases, use <a href="tqstylesheet.html#convertFromPlainText">TQStyleSheet::convertFromPlainText</a>() to convert
your plain text string to a visually equivalent rich text string
or set the text format explicitly with <a href="#setTextFormat">setTextFormat</a>().
<p> Note that the Microsoft Windows User Interface Guidelines

@ -71,7 +71,7 @@ simple inversion between the base and the text color.
<p> The effect will show up the next time an application palette is
set via <a href="ntqapplication.html#setPalette">TQApplication::setPalette</a>(). The current color palette of
the application remains unchanged.
<p> <p>See also <a href="ntqstyle.html#polish">TQStyle::polish</a>().
<p> <p>See also <a href="tqstyle.html#polish">TQStyle::polish</a>().
<h3 class=fn>bool <a name="useHighlightColors"></a>TQMotifStyle::useHighlightColors () const
</h3>

@ -1520,9 +1520,9 @@ using the painter <em>p</em>.
<p> If you want to use a <a href="ntqframe.html">TQFrame</a> widget instead, you can make it
display a plain rectangle, for example <tt>TQFrame::setFrameStyle( TQFrame::Box | TQFrame::Plain )</tt>.
<p> <b>Warning:</b> This function does not look at <a href="tqwidget.html#style">TQWidget::style</a>() or
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="ntqstyle.html">TQStyle</a> to make
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="tqstyle.html">TQStyle</a> to make
widgets that follow the current GUI style.
<p> <p>See also <a href="#qDrawShadeRect">qDrawShadeRect</a>() and <a href="ntqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<p> <p>See also <a href="#qDrawShadeRect">qDrawShadeRect</a>() and <a href="tqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<h3 class=fn>void <a name="qDrawShadeLine"></a>qDrawShadeLine ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;x1, int&nbsp;y1, int&nbsp;x2, int&nbsp;y2, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;g, bool&nbsp;sunken, int&nbsp;lineWidth, int&nbsp;midLineWidth )
</h3>
@ -1541,9 +1541,9 @@ drawn in the <a href="qcolorgroup.html#mid">TQColorGroup::mid</a>() color.
<p> If you want to use a <a href="ntqframe.html">TQFrame</a> widget instead, you can make it
display a shaded line, for example <tt>TQFrame::setFrameStyle( TQFrame::HLine | TQFrame::Sunken )</tt>.
<p> <b>Warning:</b> This function does not look at <a href="tqwidget.html#style">TQWidget::style</a>() or
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="ntqstyle.html">TQStyle</a> to make
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="tqstyle.html">TQStyle</a> to make
widgets that follow the current GUI style.
<p> <p>See also <a href="#qDrawShadeRect">qDrawShadeRect</a>(), <a href="#qDrawShadePanel">qDrawShadePanel</a>(), and <a href="ntqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<p> <p>See also <a href="#qDrawShadeRect">qDrawShadeRect</a>(), <a href="#qDrawShadePanel">qDrawShadePanel</a>(), and <a href="tqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<h3 class=fn>void <a name="qDrawShadePanel"></a>qDrawShadePanel ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;x, int&nbsp;y, int&nbsp;w, int&nbsp;h, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;g, bool&nbsp;sunken, int&nbsp;lineWidth, const&nbsp;<a href="ntqbrush.html">TQBrush</a>&nbsp;*&nbsp;fill )
</h3>
@ -1558,9 +1558,9 @@ the painter <em>p</em>.
<p> If you want to use a <a href="ntqframe.html">TQFrame</a> widget instead, you can make it
display a shaded panel, for example <tt>TQFrame::setFrameStyle( TQFrame::Panel | TQFrame::Sunken )</tt>.
<p> <b>Warning:</b> This function does not look at <a href="tqwidget.html#style">TQWidget::style</a>() or
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="ntqstyle.html">TQStyle</a> to make
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="tqstyle.html">TQStyle</a> to make
widgets that follow the current GUI style.
<p> <p>See also <a href="#qDrawWinPanel">qDrawWinPanel</a>(), <a href="#qDrawShadeLine">qDrawShadeLine</a>(), <a href="#qDrawShadeRect">qDrawShadeRect</a>(), and <a href="ntqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<p> <p>See also <a href="#qDrawWinPanel">qDrawWinPanel</a>(), <a href="#qDrawShadeLine">qDrawShadeLine</a>(), <a href="#qDrawShadeRect">qDrawShadeRect</a>(), and <a href="tqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<h3 class=fn>void <a name="qDrawShadeRect"></a>qDrawShadeRect ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;x, int&nbsp;y, int&nbsp;w, int&nbsp;h, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;g, bool&nbsp;sunken, int&nbsp;lineWidth, int&nbsp;midLineWidth, const&nbsp;<a href="ntqbrush.html">TQBrush</a>&nbsp;*&nbsp;fill )
</h3>
@ -1579,9 +1579,9 @@ drawn in the <a href="qcolorgroup.html#mid">TQColorGroup::mid</a>() color.
<p> If you want to use a <a href="ntqframe.html">TQFrame</a> widget instead, you can make it
display a shaded rectangle, for example <tt>TQFrame::setFrameStyle( TQFrame::Box | TQFrame::Raised )</tt>.
<p> <b>Warning:</b> This function does not look at <a href="tqwidget.html#style">TQWidget::style</a>() or
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="ntqstyle.html">TQStyle</a> to make
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="tqstyle.html">TQStyle</a> to make
widgets that follow the current GUI style.
<p> <p>See also <a href="#qDrawShadeLine">qDrawShadeLine</a>(), <a href="#qDrawShadePanel">qDrawShadePanel</a>(), <a href="#qDrawPlainRect">qDrawPlainRect</a>(), <a href="ntqstyle.html#drawItem">TQStyle::drawItem</a>(), <a href="ntqstyle.html#drawControl">TQStyle::drawControl</a>(), and <a href="ntqstyle.html#drawComplexControl">TQStyle::drawComplexControl</a>().
<p> <p>See also <a href="#qDrawShadeLine">qDrawShadeLine</a>(), <a href="#qDrawShadePanel">qDrawShadePanel</a>(), <a href="#qDrawPlainRect">qDrawPlainRect</a>(), <a href="tqstyle.html#drawItem">TQStyle::drawItem</a>(), <a href="tqstyle.html#drawControl">TQStyle::drawControl</a>(), and <a href="tqstyle.html#drawComplexControl">TQStyle::drawComplexControl</a>().
<h3 class=fn>void <a name="qDrawWinButton"></a>qDrawWinButton ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;x, int&nbsp;y, int&nbsp;w, int&nbsp;h, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;g, bool&nbsp;sunken, const&nbsp;<a href="ntqbrush.html">TQBrush</a>&nbsp;*&nbsp;fill )
</h3>
@ -1593,9 +1593,9 @@ widgets that follow the current GUI style.
<p> The line width is 2 pixels.
<p> The button's interior is filled with the <em>*fill</em> brush unless <em>fill</em> is 0.
<p> <b>Warning:</b> This function does not look at <a href="tqwidget.html#style">TQWidget::style</a>() or
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="ntqstyle.html">TQStyle</a> to make
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="tqstyle.html">TQStyle</a> to make
widgets that follow the current GUI style.
<p> <p>See also <a href="#qDrawWinPanel">qDrawWinPanel</a>() and <a href="ntqstyle.html#drawControl">TQStyle::drawControl</a>().
<p> <p>See also <a href="#qDrawWinPanel">qDrawWinPanel</a>() and <a href="tqstyle.html#drawControl">TQStyle::drawControl</a>().
<h3 class=fn>void <a name="qDrawWinPanel"></a>qDrawWinPanel ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;x, int&nbsp;y, int&nbsp;w, int&nbsp;h, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;g, bool&nbsp;sunken, const&nbsp;<a href="ntqbrush.html">TQBrush</a>&nbsp;*&nbsp;fill )
</h3>
@ -1609,9 +1609,9 @@ widgets that follow the current GUI style.
<p> If you want to use a <a href="ntqframe.html">TQFrame</a> widget instead, you can make it
display a shaded panel, for example <tt>TQFrame::setFrameStyle( TQFrame::WinPanel | TQFrame::Raised )</tt>.
<p> <b>Warning:</b> This function does not look at <a href="tqwidget.html#style">TQWidget::style</a>() or
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="ntqstyle.html">TQStyle</a> to make
<a href="ntqapplication.html#style">TQApplication::style</a>(). Use the drawing functions in <a href="tqstyle.html">TQStyle</a> to make
widgets that follow the current GUI style.
<p> <p>See also <a href="#qDrawShadePanel">qDrawShadePanel</a>(), <a href="#qDrawWinButton">qDrawWinButton</a>(), and <a href="ntqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<p> <p>See also <a href="#qDrawShadePanel">qDrawShadePanel</a>(), <a href="#qDrawWinButton">qDrawWinButton</a>(), and <a href="tqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<!-- eof -->
<hr><p>

@ -52,7 +52,7 @@ The TQPlatinumStyle class provides Mac/Platinum look and feel.
<p>
<p> This class implements the Platinum look and feel. It's an
experimental class that tries to resemble a Macinosh-like GUI
style with the <a href="ntqstyle.html">TQStyle</a> system. The emulation is currently far from
style with the <a href="tqstyle.html">TQStyle</a> system. The emulation is currently far from
perfect.
<p> <p>See also TQAquaStyle and <a href="appearance.html">Widget Appearance and Style</a>.

@ -295,7 +295,7 @@ Draws menu item <em>mi</em> in the area <em>x</em>, <em>y</em>, <em>w</em>, <em>
painter <em>p</em>. The item is drawn active if <em>act</em> is TRUE or drawn
inactive if <em>act</em> is FALSE. The rightmost <em>tab_</em> pixels are used
for accelerator text.
<p> <p>See also <a href="ntqstyle.html#drawControl">TQStyle::drawControl</a>().
<p> <p>See also <a href="tqstyle.html#drawControl">TQStyle::drawControl</a>().
<h3 class=fn>int <a name="exec"></a>TQPopupMenu::exec ()
</h3>

@ -47,7 +47,7 @@ body { background: #ffffff; color: black; }
The TQSGIStyle class provides SGI/Irix look and feel.
<p>
<p> This class implements the SGI look and feel. It resembles the
SGI/Irix <a href="motif-extension.html#Motif">Motif</a> GUI style as closely as <a href="ntqstyle.html">TQStyle</a> allows.
SGI/Irix <a href="motif-extension.html#Motif">Motif</a> GUI style as closely as <a href="tqstyle.html">TQStyle</a> allows.
<p>See also <a href="appearance.html">Widget Appearance and Style</a>.
<hr><h2>Member Function Documentation</h2>

@ -62,7 +62,7 @@ The TQSimpleRichText class provides a small displayable piece of rich text.
<p> This class encapsulates simple rich text usage in which a string
is interpreted as rich text and can be drawn. This is particularly
useful if you want to display some rich text in a custom widget. A
<a href="ntqstylesheet.html">TQStyleSheet</a> is needed to interpret the tags and format the rich
<a href="tqstylesheet.html">TQStyleSheet</a> is needed to interpret the tags and format the rich
text. TQt provides a default HTML-like style sheet, but you may
define custom style sheets.
<p> Once created, the rich text object can be queried for its <a href="#width">width</a>(),
@ -83,7 +83,7 @@ laid out properly on the page.
<p>See also <a href="text.html">Text Related Classes</a>.
<hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQSimpleRichText"></a>TQSimpleRichText::TQSimpleRichText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, const&nbsp;<a href="ntqfont.html">TQFont</a>&nbsp;&amp;&nbsp;fnt, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context = TQString::null, const&nbsp;<a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet = 0 )
<h3 class=fn><a name="TQSimpleRichText"></a>TQSimpleRichText::TQSimpleRichText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, const&nbsp;<a href="ntqfont.html">TQFont</a>&nbsp;&amp;&nbsp;fnt, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context = TQString::null, const&nbsp;<a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet = 0 )
</h3>
Constructs a TQSimpleRichText from the rich text string <em>text</em> and
the font <em>fnt</em>.
@ -102,9 +102,9 @@ to resolve those references. The context will then be used to
calculate the absolute path. See
<a href="qmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details.
<p> The <em>sheet</em> is an optional style sheet. If it is 0, the default
style sheet will be used (see <a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()).
style sheet will be used (see <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()).
<h3 class=fn><a name="TQSimpleRichText-2"></a>TQSimpleRichText::TQSimpleRichText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, const&nbsp;<a href="ntqfont.html">TQFont</a>&nbsp;&amp;&nbsp;fnt, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context, const&nbsp;<a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet, const&nbsp;<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory, int&nbsp;pageBreak = -1, const&nbsp;<a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;linkColor = TQt::blue, bool&nbsp;linkUnderline = TRUE )
<h3 class=fn><a name="TQSimpleRichText-2"></a>TQSimpleRichText::TQSimpleRichText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, const&nbsp;<a href="ntqfont.html">TQFont</a>&nbsp;&amp;&nbsp;fnt, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context, const&nbsp;<a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet, const&nbsp;<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory, int&nbsp;pageBreak = -1, const&nbsp;<a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;linkColor = TQt::blue, bool&nbsp;linkUnderline = TRUE )
</h3>
Constructs a TQSimpleRichText from the rich text string <em>text</em> and
the font <em>fnt</em>.
@ -120,7 +120,7 @@ to resolve those references. The context will then be used to
calculate the absolute path. See
<a href="qmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details.
<p> The <em>sheet</em> is an optional style sheet. If it is 0, the default
style sheet will be used (see <a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()).
style sheet will be used (see <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()).
<p> This constructor is useful for creating a TQSimpleRichText object
suitable for printing. Set <em>pageBreak</em> to be the height of the
contents area of the pages.

@ -169,7 +169,7 @@ See the <a href="ntqsplitter.html#childrenCollapsible-prop">"childrenCollapsible
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> Draws the splitter handle in the rectangle described by <em>x</em>, <em>y</em>,
<em>w</em>, <em>h</em> using painter <em>p</em>.
<p>See also <a href="ntqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<p>See also <a href="tqstyle.html#drawPrimitive">TQStyle::drawPrimitive</a>().
<h3 class=fn>void <a name="getRange"></a>TQSplitter::getRange ( int&nbsp;id, int&nbsp;*&nbsp;min, int&nbsp;*&nbsp;max )<tt> [protected]</tt>
</h3>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
that need to be global-like.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qnamespace-h.html">ntqnamespace.h</a>&gt;</tt>
<p>Inherited by <a href="tqobject.html">TQObject</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="ntqbrush.html">TQBrush</a>, <a href="tqcanvasitem.html">TQCanvasItem</a>, <a href="ntqcursor.html">TQCursor</a>, <a href="ntqpainter.html">TQPainter</a>, <a href="ntqevent.html">TQEvent</a>, <a href="tqiconviewitem.html">TQIconViewItem</a>, <a href="ntqkeysequence.html">TQKeySequence</a>, <a href="qlistviewitem.html">TQListViewItem</a>, <a href="qcustommenuitem.html">TQCustomMenuItem</a>, <a href="ntqpen.html">TQPen</a>, <a href="qstylesheetitem.html">TQStyleSheetItem</a>, <a href="ntqsyntaxhighlighter.html">TQSyntaxHighlighter</a>, <a href="qtab.html">TQTab</a>, <a href="qtableitem.html">TQTableItem</a>, <a href="ntqthread.html">TQThread</a>, <a href="ntqtooltip.html">TQToolTip</a>, and <a href="ntqwhatsthis.html">TQWhatsThis</a>.
<p>Inherited by <a href="tqobject.html">TQObject</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="ntqbrush.html">TQBrush</a>, <a href="tqcanvasitem.html">TQCanvasItem</a>, <a href="ntqcursor.html">TQCursor</a>, <a href="ntqpainter.html">TQPainter</a>, <a href="ntqevent.html">TQEvent</a>, <a href="tqiconviewitem.html">TQIconViewItem</a>, <a href="ntqkeysequence.html">TQKeySequence</a>, <a href="qlistviewitem.html">TQListViewItem</a>, <a href="qcustommenuitem.html">TQCustomMenuItem</a>, <a href="ntqpen.html">TQPen</a>, <a href="tqstylesheetitem.html">TQStyleSheetItem</a>, <a href="ntqsyntaxhighlighter.html">TQSyntaxHighlighter</a>, <a href="qtab.html">TQTab</a>, <a href="qtableitem.html">TQTableItem</a>, <a href="ntqthread.html">TQThread</a>, <a href="ntqtooltip.html">TQToolTip</a>, and <a href="ntqwhatsthis.html">TQWhatsThis</a>.
<p><a href="qt-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@ -803,9 +803,9 @@ function.
<li><tt>TQt::PlainText</tt> - The text string is interpreted as a plain text
string.
<li><tt>TQt::RichText</tt> - The text string is interpreted as a rich text
string using the current <a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>().
string using the current <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>().
<li><tt>TQt::AutoText</tt> - The text string is interpreted as for <a href="#TextFormat-enum">RichText</a>
if <a href="ntqstylesheet.html#mightBeRichText">TQStyleSheet::mightBeRichText</a>() returns TRUE, otherwise as
if <a href="tqstylesheet.html#mightBeRichText">TQStyleSheet::mightBeRichText</a>() returns TRUE, otherwise as
<a href="#TextFormat-enum">PlainText</a>.
<li><tt>TQt::LogText</tt> - A special, limited text format which is only used
by <a href="tqtextedit.html">TQTextEdit</a> in an optimized mode.

@ -82,7 +82,7 @@ actions, use <a href="ntqaction.html#setWhatsThis">TQAction::setWhatsThis</a>().
<p> The text can be either rich text or plain text. If you specify a
rich text formatted string, it will be rendered using the default
stylesheet. This makes it possible to embed images. See
<a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>() for details.
<a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>() for details.
<p>
<pre> const char * fileOpenText = "&lt;p&gt;&lt;img source=\"fileopen\"&gt; "
@ -133,7 +133,7 @@ Destroys the object and frees any allocated resources.
</h3>
Adds <em>text</em> as "What's this" help for <em>widget</em>. If the text is
rich text formatted (i.e. it contains markup) it will be rendered
with the default stylesheet <a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>().
with the default stylesheet <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>().
<p> The text is destroyed if the widget is later destroyed, so it need
not be explicitly removed.
<p> <p>See also <a href="#remove">remove</a>().

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p> Most of these widgets are shown in either <a href="motif-extension.html#Motif">Motif</a> or Windows style.
All widgets are supported in both styles (and other <a href="ntqstyle.html">styles</a>), but for clarity we just present a selection.
All widgets are supported in both styles (and other <a href="tqstyle.html">styles</a>), but for clarity we just present a selection.
<p> TQt provides more widgets than the selection shown below. And extra TQt
are available from third parties, and as add-ons to TQt; see <a href="http://www.trolltech.com/products/solutions/index.html">TQt
Solutions</a>, and <a href="http://www.trolltech.com/freesoftware/index.html">User contributed TQt

@ -52,7 +52,7 @@ by default in the standard plugin directory.
<td valign="top"><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a>
<td valign="top"><tt>pluginsbase/sqldrivers</tt> <sup>*</sup>
<tr bgcolor="#f0f0f0">
<td valign="top"><a href="ntqstyleplugin.html">TQStylePlugin</a>
<td valign="top"><a href="tqstyleplugin.html">TQStylePlugin</a>
<td valign="top"><tt>pluginsbase/styles</tt> <sup>*</sup>
<tr bgcolor="#d0d0d0">
<td valign="top"><a href="tqtextcodecplugin.html">TQTextCodecPlugin</a>
@ -73,7 +73,7 @@ set your own path or paths you can use
<p> Suppose that you have a new style class called 'MyStyle' that you want
to make available as a plugin. The required code is straightforward:
<pre>
class MyStylePlugin : public <a href="ntqstyleplugin.html">TQStylePlugin</a>
class MyStylePlugin : public <a href="tqstyleplugin.html">TQStylePlugin</a>
{
public:
MyStylePlugin() {}
@ -83,7 +83,7 @@ to make available as a plugin. The required code is straightforward:
return TQStringList() &lt;&lt; "mystyle";
}
<a href="ntqstyle.html">TQStyle</a>* create( const <a href="tqstring.html">TQString</a>&amp; key ) {
<a href="tqstyle.html">TQStyle</a>* create( const <a href="tqstring.html">TQString</a>&amp; key ) {
if ( key == "mystyle" )
return new MyStyle;
return 0;
@ -93,7 +93,7 @@ to make available as a plugin. The required code is straightforward:
TQ_EXPORT_PLUGIN( MyStylePlugin )
</pre>
<p> (Note that <a href="ntqstylefactory.html">TQStyleFactory</a> is case-insensitive, and the lower case
<p> (Note that <a href="tqstylefactory.html">TQStyleFactory</a> is case-insensitive, and the lower case
version of the key is used; other factories, e.g. <a href="tqwidgetfactory.html">TQWidgetFactory</a>, are
case sensitive.)
<p> The constructor and destructor do not need to do anything, so are left
@ -102,7 +102,7 @@ The first is keys() which returns a string list of the classes
implemented in the plugin. (We've just implemented one class in the
example above.) The second is a function that returns an object of the
required class (or 0 if the plugin is asked to create an object of a
class that it doesn't implement). For <a href="ntqstyleplugin.html">TQStylePlugin</a>, this second
class that it doesn't implement). For <a href="tqstyleplugin.html">TQStylePlugin</a>, this second
function is called create().
<p> It is possible to implement any number of plugin subclasses in a
single plugin, providing they are all derived from the same base
@ -112,7 +112,7 @@ no explicit object creation is required. TQt will find and create them
as required. Styles are an exception, since you might want to set a
style explicitly in code. To apply a style, use code like this:
<pre>
TQApplication::<a href="ntqapplication.html#setStyle">setStyle</a>( TQStyleFactory::<a href="ntqstylefactory.html#create">create</a>( "MyStyle" ) );
TQApplication::<a href="ntqapplication.html#setStyle">setStyle</a>( TQStyleFactory::<a href="tqstylefactory.html#create">create</a>( "MyStyle" ) );
</pre>
<p> Some plugin classes require additional functions to be implemented.

@ -45,7 +45,7 @@ Windows.
<tr bgcolor=#f0f0f0><td><b><a href="ntqlibrary.html">TQLibrary</a></b><td>Wrapper for handling shared libraries
<tr bgcolor=#f0f0f0><td><b><a href="qmousedriverplugin.html">TQMouseDriverPlugin</a></b><td>Abstract base for TQt/Embedded mouse driver plugins
<tr bgcolor=#f0f0f0><td><b><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a></b><td>Abstract base for custom TQSqlDriver plugins
<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="tqstyleplugin.html">TQStylePlugin</a></b><td>Abstract base for custom TQStyle plugins
<tr bgcolor=#f0f0f0><td><b><a href="tqtextcodecplugin.html">TQTextCodecPlugin</a></b><td>Abstract base for custom TQTextCodec plugins
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetplugin.html">TQWidgetPlugin</a></b><td>Abstract base for custom TQWidget plugins
</table>

@ -176,7 +176,7 @@ the top of the file giving the error.
<li> <tt>&lt;tqstringlist.h&gt;</tt>
<li> <tt>&lt;ntqregexp.h&gt;</tt>
<li> <tt>&lt;tqstrlist.h&gt;</tt>
<li> <tt>&lt;ntqstyle.h&gt;</tt>
<li> <tt>&lt;tqstyle.h&gt;</tt>
<li> <tt>&lt;tqvaluelist.h&gt;</tt>
</ul>
<p> <h2> Namespace
@ -368,9 +368,9 @@ new code.
<li> <a href="tqstring.html#ascii">TQString::ascii</a>() const
<li> <a href="tqstring.html#data">TQString::data</a>() const
<li> <a href="tqstring.html#setExpand">TQString::setExpand</a>( uint index, <a href="qchar.html">TQChar</a> c )
<li> <a href="ntqstyle.html#defaultFrameWidth">TQStyle::defaultFrameWidth</a>() const
<li> <a href="ntqstyle.html#scrollBarExtent">TQStyle::scrollBarExtent</a>() const
<li> <a href="ntqstyle.html#tabbarMetrics">TQStyle::tabbarMetrics</a>( const <a href="tqwidget.html">TQWidget</a> *t, int &amp; hf, int &amp; vf, int &amp; ov ) const
<li> <a href="tqstyle.html#defaultFrameWidth">TQStyle::defaultFrameWidth</a>() const
<li> <a href="tqstyle.html#scrollBarExtent">TQStyle::scrollBarExtent</a>() const
<li> <a href="tqstyle.html#tabbarMetrics">TQStyle::tabbarMetrics</a>( const <a href="tqwidget.html">TQWidget</a> *t, int &amp; hf, int &amp; vf, int &amp; ov ) const
<li> <a href="ntqtabdialog.html#isTabEnabled">TQTabDialog::isTabEnabled</a>( const char *name ) const
<li> <a href="ntqtabdialog.html#selected">TQTabDialog::selected</a>( const <a href="tqstring.html">TQString</a> &amp; )
<li> TQTabDialog::selected( const TQString &amp; tabLabel )
@ -479,7 +479,7 @@ might be removed in a future version.
</h2>
<a name="13"></a><p> The paintBranches() function in TQt 2.x had a GUIStyle parameter; this
has been dropped for TQt 3.x since GUI style is handled by the new
style engine (See <a href="ntqstyle.html">TQStyle</a>.)
style engine (See <a href="tqstyle.html">TQStyle</a>.)
<p> <h2> <a href="qmoveevent.html">TQMoveEvent</a>
</h2>
<a name="14"></a><p> In TQt 2.x, the function <a href="qmoveevent.html#pos">TQMoveEvent::pos</a>() returned the position of the

@ -141,7 +141,7 @@ appear at all.
&lt;p&gt;This property holds the action's "What's This?" help text.
&lt;p&gt;The whats this text is used to provide a brief description of the
action. The text may contain rich text (HTML-like tags -- see
&lt;a href="ntqstylesheet.html"&gt;QStyleSheet&lt;/a&gt; for the list of supported tags). There is no default
&lt;a href="tqstylesheet.html"&gt;TQStyleSheet&lt;/a&gt; for the list of supported tags). There is no default
"What's This" text.
&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqwhatsthis.html"&gt;QWhatsThis&lt;/a&gt;.
@ -4032,13 +4032,13 @@ verbatim, including spaces. Whenever a newline appears in the text
the text edit inserts a hard line break and begins a new
paragraph.
&lt;li&gt; RichText - rich text rendering. The available styles are
defined in the default stylesheet &lt;a href="ntqstylesheet.html#defaultSheet"&gt;QStyleSheet::defaultSheet&lt;/a&gt;().
defined in the default stylesheet &lt;a href="tqstylesheet.html#defaultSheet"&gt;TQStyleSheet::defaultSheet&lt;/a&gt;().
&lt;li&gt; LogText - optimized mode for very large texts. Supports a very
limited set of formatting tags (color, bold, underline and italic
settings).
&lt;li&gt; AutoText - this is the default. The text edit autodetects which
rendering style is best, &lt;a href="ntqt.html#TextFormat-enum"&gt;PlainText&lt;/a&gt; or &lt;a href="ntqt.html#TextFormat-enum"&gt;RichText&lt;/a&gt;. This is done
by using the &lt;a href="ntqstylesheet.html#mightBeRichText"&gt;QStyleSheet::mightBeRichText&lt;/a&gt;() function.
by using the &lt;a href="tqstylesheet.html#mightBeRichText"&gt;TQStyleSheet::mightBeRichText&lt;/a&gt;() function.
&lt;/ul&gt;
&lt;p&gt;Set this property's value with &lt;a href="tqtextedit.html#setTextFormat"&gt;setTextFormat&lt;/a&gt;() and get this property's value with &lt;a href="tqtextedit.html#textFormat"&gt;textFormat&lt;/a&gt;().

@ -334,7 +334,7 @@ void <a name="f381"></a>ApplicationWindow::print()
<a name="x1142"></a> int dpiy = metrics.<a href="ntqpaintdevicemetrics.html#logicalDpiY">logicalDpiY</a>();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
<a name="x1143"></a><a name="x1141"></a> <a href="ntqrect.html">TQRect</a> view( margin, margin, metrics.<a href="ntqpaintdevicemetrics.html#width">width</a>() - 2*margin, metrics.<a href="ntqpaintdevicemetrics.html#height">height</a>() - 2*margin );
<a name="x1163"></a> <a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="ntqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(e-&gt;<a href="tqtextedit.html#text">text</a>()),
<a name="x1163"></a> <a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="tqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(e-&gt;<a href="tqtextedit.html#text">text</a>()),
TQFont(),
<a name="x1164"></a> e-&gt;<a href="tqtextedit.html#context">context</a>(),
<a name="x1169"></a> e-&gt;<a href="tqtextedit.html#styleSheet">styleSheet</a>(),

@ -46,17 +46,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -67,7 +67,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -75,33 +75,33 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -78,7 +78,7 @@ body { background: #ffffff; color: black; }
#define TQCOMMONSTYLE_H
#ifndef QT_H
#include "ntqstyle.h"
#include "tqstyle.h"
#endif // QT_H
#ifndef TQT_NO_STYLE

@ -45,17 +45,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -66,7 +66,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -74,31 +74,31 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -46,17 +46,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -68,7 +68,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -76,33 +76,33 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmacstyle.html#setFocusRectPolicy">setFocusRectPolicy</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="qmacstyle.html#setWidgetSizePolicy">setWidgetSizePolicy</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
<li><a href="qmacstyle.html#widgetSizePolicy">widgetSizePolicy</a>()
</ul>
<!-- eof -->

@ -58,7 +58,7 @@ The TQMacStyle class implements an Appearance Manager style.
<p> This class is implemented as a wrapper to the Apple Appearance
Manager. This allows your application to be styled by whatever
theme your Macintosh is using. This is done by having primitives
in <a href="ntqstyle.html">TQStyle</a> implemented in terms of what the Macintosh would
in <a href="tqstyle.html">TQStyle</a> implemented in terms of what the Macintosh would
normally theme (i.e. the Finder).
<p> There are additional issues that should be taken
into consideration to make an application compatible with the
@ -76,7 +76,7 @@ does not fully implement this behaviour so as to maintain multiplatform
compatibility. As a result some widgets sizes may be inappropriate (and
subsequently not rendered correctly by the Appearance Manager).The
<a href="tqwidget.html#sizeHint">TQWidget::sizeHint</a>() will return the appropriate size for many
managed widgets (widgets enumerated in <a href="ntqstyle.html#ContentsType-enum">TQStyle::ContentsType</a>).
managed widgets (widgets enumerated in <a href="tqstyle.html#ContentsType-enum">TQStyle::ContentsType</a>).
<p> <li> Effects - TQMacStyle (in contrast to TQAquaStyle) is not emulating
(except where Appearance Manager does not provide certain
capabilities), for example <a href="ntqpushbutton.html">TQPushButton</a> pulsing effects. In this case a
@ -90,7 +90,7 @@ your application (including the general color scheme to match the
Aqua colors). The Guidelines mentioned above will remain current
with new advances and design suggestions for Mac OS X.
<p> Note that the functions provided by TQMacStyle are
reimplementations of <a href="ntqstyle.html">TQStyle</a> functions; see TQStyle for their
reimplementations of <a href="tqstyle.html">TQStyle</a> functions; see TQStyle for their
documentation.
<p>See also <a href="appearance.html">Widget Appearance and Style</a>.

@ -45,17 +45,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -66,7 +66,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -74,33 +74,33 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -45,17 +45,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -66,7 +66,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -74,33 +74,33 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -329,7 +329,7 @@ public:
};
#endif
// documented in qstyle.cpp
// documented in tqstyle.cpp
#ifdef TQT_NO_COMPAT
enum GUIStyle {
WindowsStyle = 1, // ### TQt 4.0: either remove the obsolete enums or clean up compat vs.
@ -779,7 +779,7 @@ public:
WV_CE_based = 0x0f00
};
// documented in qstyle.cpp
// documented in tqstyle.cpp
enum UIEffect {
UI_General,
UI_AnimateMenu,

@ -45,17 +45,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="ntqplatinumstyle.html#drawRiffles">drawRiffles</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
@ -67,7 +67,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -76,31 +76,31 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -46,17 +46,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -67,7 +67,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -75,33 +75,33 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -1,94 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstylesheet.h:56 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>TQStyleSheetItem Member List</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStyleSheetItem</h1>
<p>This is the complete list of member functions for
<a href="qstylesheetitem.html">TQStyleSheetItem</a>, including inherited members.
<ul>
<li><a href="qstylesheetitem.html#TQStyleSheetItem">TQStyleSheetItem</a>()
<li><a href="qstylesheetitem.html#~TQStyleSheetItem">~TQStyleSheetItem</a>()
<li><a href="qstylesheetitem.html#alignment">alignment</a>()
<li><a href="qstylesheetitem.html#allowedInContext">allowedInContext</a>()
<li><a href="qstylesheetitem.html#color">color</a>()
<li><a href="qstylesheetitem.html#contexts">contexts</a>()
<li><a href="qstylesheetitem.html#definesFontItalic">definesFontItalic</a>()
<li><a href="qstylesheetitem.html#definesFontStrikeOut">definesFontStrikeOut</a>()
<li><a href="qstylesheetitem.html#definesFontUnderline">definesFontUnderline</a>()
<li><a href="qstylesheetitem.html#displayMode">displayMode</a>()
<li><a href="qstylesheetitem.html#fontFamily">fontFamily</a>()
<li><a href="qstylesheetitem.html#fontItalic">fontItalic</a>()
<li><a href="qstylesheetitem.html#fontSize">fontSize</a>()
<li><a href="qstylesheetitem.html#fontStrikeOut">fontStrikeOut</a>()
<li><a href="qstylesheetitem.html#fontUnderline">fontUnderline</a>()
<li><a href="qstylesheetitem.html#fontWeight">fontWeight</a>()
<li><a href="qstylesheetitem.html#isAnchor">isAnchor</a>()
<li><a href="qstylesheetitem.html#lineSpacing">lineSpacing</a>()
<li><a href="qstylesheetitem.html#listStyle">listStyle</a>()
<li><a href="qstylesheetitem.html#logicalFontSize">logicalFontSize</a>()
<li><a href="qstylesheetitem.html#logicalFontSizeStep">logicalFontSizeStep</a>()
<li><a href="qstylesheetitem.html#margin">margin</a>()
<li><a href="qstylesheetitem.html#name">name</a>()
<li><a href="qstylesheetitem.html#numberOfColumns">numberOfColumns</a>()
<li><a href="qstylesheetitem.html#operator-eq">operator=</a>()
<li><a href="qstylesheetitem.html#selfNesting">selfNesting</a>()
<li><a href="qstylesheetitem.html#setAlignment">setAlignment</a>()
<li><a href="qstylesheetitem.html#setAnchor">setAnchor</a>()
<li><a href="qstylesheetitem.html#setColor">setColor</a>()
<li><a href="qstylesheetitem.html#setContexts">setContexts</a>()
<li><a href="qstylesheetitem.html#setDisplayMode">setDisplayMode</a>()
<li><a href="qstylesheetitem.html#setFontFamily">setFontFamily</a>()
<li><a href="qstylesheetitem.html#setFontItalic">setFontItalic</a>()
<li><a href="qstylesheetitem.html#setFontSize">setFontSize</a>()
<li><a href="qstylesheetitem.html#setFontStrikeOut">setFontStrikeOut</a>()
<li><a href="qstylesheetitem.html#setFontUnderline">setFontUnderline</a>()
<li><a href="qstylesheetitem.html#setFontWeight">setFontWeight</a>()
<li><a href="qstylesheetitem.html#setListStyle">setListStyle</a>()
<li><a href="qstylesheetitem.html#setLogicalFontSize">setLogicalFontSize</a>()
<li><a href="qstylesheetitem.html#setLogicalFontSizeStep">setLogicalFontSizeStep</a>()
<li><a href="qstylesheetitem.html#setMargin">setMargin</a>()
<li><a href="qstylesheetitem.html#setNumberOfColumns">setNumberOfColumns</a>()
<li><a href="qstylesheetitem.html#setSelfNesting">setSelfNesting</a>()
<li><a href="qstylesheetitem.html#setVerticalAlignment">setVerticalAlignment</a>()
<li><a href="qstylesheetitem.html#setWhiteSpaceMode">setWhiteSpaceMode</a>()
<li><a href="qstylesheetitem.html#styleSheet">styleSheet</a>()
<li><a href="qstylesheetitem.html#verticalAlignment">verticalAlignment</a>()
<li><a href="qstylesheetitem.html#whiteSpaceMode">whiteSpaceMode</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>

@ -7342,146 +7342,146 @@
<section ref="tqstrlistiterator-members.html" title="List of All Member Functions"/>
<section ref="tqstrlist-h.html" title="Header File"/>
</section>
<section ref="ntqstyle.html" title="QStyle Class Reference">
<keyword ref="ntqstyle.html">QStyle</keyword>
<keyword ref="ntqstyle.html#ComplexControl">ComplexControl</keyword>
<keyword ref="ntqstyle.html#ContentsType">ContentsType</keyword>
<keyword ref="ntqstyle.html#ControlElement">ControlElement</keyword>
<keyword ref="ntqstyle.html#PixelMetric">PixelMetric</keyword>
<keyword ref="ntqstyle.html#PrimitiveElement">PrimitiveElement</keyword>
<keyword ref="ntqstyle.html#StyleFlags">StyleFlags</keyword>
<keyword ref="ntqstyle.html#StyleHint">StyleHint</keyword>
<keyword ref="ntqstyle.html#StylePixmap">StylePixmap</keyword>
<keyword ref="ntqstyle.html#SubControl">SubControl</keyword>
<keyword ref="ntqstyle.html#SubRect">SubRect</keyword>
<keyword ref="ntqstyle.html#drawComplexControl">drawComplexControl</keyword>
<keyword ref="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</keyword>
<keyword ref="ntqstyle.html#drawControl">drawControl</keyword>
<keyword ref="ntqstyle.html#drawControlMask">drawControlMask</keyword>
<keyword ref="ntqstyle.html#drawItem">drawItem</keyword>
<keyword ref="ntqstyle.html#drawPrimitive">drawPrimitive</keyword>
<keyword ref="ntqstyle.html#itemRect">itemRect</keyword>
<keyword ref="ntqstyle.html#pixelMetric">pixelMetric</keyword>
<keyword ref="ntqstyle.html#polish">polish</keyword>
<keyword ref="ntqstyle.html#polishPopupMenu">polishPopupMenu</keyword>
<keyword ref="ntqstyle.html#querySubControl">querySubControl</keyword>
<keyword ref="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</keyword>
<keyword ref="ntqstyle.html#sizeFromContents">sizeFromContents</keyword>
<keyword ref="ntqstyle.html#styleHint">styleHint</keyword>
<keyword ref="ntqstyle.html#stylePixmap">stylePixmap</keyword>
<keyword ref="ntqstyle.html#subRect">subRect</keyword>
<keyword ref="ntqstyle.html#unPolish">unPolish</keyword>
<keyword ref="ntqstyle.html#visualRect">visualRect</keyword>
<keyword ref="ntqstyle.html#~QStyle">~QStyle</keyword>
<section ref="qstyle-members.html" title="List of All Member Functions"/>
<section ref="qstyle-h.html" title="Header File"/>
</section>
<section ref="ntqstylefactory.html" title="QStyleFactory Class Reference">
<keyword ref="ntqstylefactory.html">QStyleFactory</keyword>
<keyword ref="ntqstylefactory.html#create">create</keyword>
<keyword ref="ntqstylefactory.html#keys">keys</keyword>
<section ref="qstylefactory-members.html" title="List of All Member Functions"/>
<section ref="qstylefactory-h.html" title="Header File"/>
</section>
<section ref="qstyleoption.html" title="QStyleOption Class Reference">
<keyword ref="qstyleoption.html">QStyleOption</keyword>
<keyword ref="qstyleoption.html#StyleOptionDefault">StyleOptionDefault</keyword>
<keyword ref="qstyleoption.html#arrowType">arrowType</keyword>
<keyword ref="qstyleoption.html#checkListItem">checkListItem</keyword>
<keyword ref="qstyleoption.html#color">color</keyword>
<keyword ref="qstyleoption.html#day">day</keyword>
<keyword ref="qstyleoption.html#frameShadow">frameShadow</keyword>
<keyword ref="qstyleoption.html#frameShape">frameShape</keyword>
<keyword ref="qstyleoption.html#headerSection">headerSection</keyword>
<keyword ref="qstyleoption.html#isDefault">isDefault</keyword>
<keyword ref="qstyleoption.html#lineWidth">lineWidth</keyword>
<keyword ref="qstyleoption.html#listViewItem">listViewItem</keyword>
<keyword ref="qstyleoption.html#maxIconWidth">maxIconWidth</keyword>
<keyword ref="qstyleoption.html#menuItem">menuItem</keyword>
<keyword ref="qstyleoption.html#midLineWidth">midLineWidth</keyword>
<keyword ref="qstyleoption.html#rect">rect</keyword>
<keyword ref="qstyleoption.html#tab">tab</keyword>
<keyword ref="qstyleoption.html#tabWidth">tabWidth</keyword>
<keyword ref="qstyleoption.html#widget">widget</keyword>
<section ref="qstyleoption-members.html" title="List of All Member Functions"/>
<section ref="qstyle-h.html" title="Header File"/>
</section>
<section ref="ntqstyleplugin.html" title="QStylePlugin Class Reference">
<keyword ref="ntqstyleplugin.html">QStylePlugin</keyword>
<keyword ref="ntqstyleplugin.html#create">create</keyword>
<keyword ref="ntqstyleplugin.html#keys">keys</keyword>
<keyword ref="ntqstyleplugin.html#~QStylePlugin">~QStylePlugin</keyword>
<section ref="qstyleplugin-members.html" title="List of All Member Functions"/>
<section ref="qstyleplugin-h.html" title="Header File"/>
</section>
<section ref="ntqstylesheet.html" title="QStyleSheet Class Reference">
<keyword ref="ntqstylesheet.html">QStyleSheet</keyword>
<keyword ref="ntqstylesheet.html#convertFromPlainText">convertFromPlainText</keyword>
<keyword ref="ntqstylesheet.html#defaultSheet">defaultSheet</keyword>
<keyword ref="ntqstylesheet.html#error">error</keyword>
<keyword ref="ntqstylesheet.html#escape">escape</keyword>
<keyword ref="ntqstylesheet.html#item">item</keyword>
<keyword ref="ntqstylesheet.html#mightBeRichText">mightBeRichText</keyword>
<keyword ref="ntqstylesheet.html#scaleFont">scaleFont</keyword>
<keyword ref="ntqstylesheet.html#setDefaultSheet">setDefaultSheet</keyword>
<keyword ref="ntqstylesheet.html#tag">tag</keyword>
<keyword ref="ntqstylesheet.html#~QStyleSheet">~QStyleSheet</keyword>
<section ref="qstylesheet-members.html" title="List of All Member Functions"/>
<section ref="qstylesheet-h.html" title="Header File"/>
</section>
<section ref="qstylesheetitem.html" title="QStyleSheetItem Class Reference">
<keyword ref="qstylesheetitem.html">QStyleSheetItem</keyword>
<keyword ref="qstylesheetitem.html#DisplayMode">DisplayMode</keyword>
<keyword ref="qstylesheetitem.html#ListStyle">ListStyle</keyword>
<keyword ref="qstylesheetitem.html#Margin">Margin</keyword>
<keyword ref="qstylesheetitem.html#VerticalAlignment">VerticalAlignment</keyword>
<keyword ref="qstylesheetitem.html#WhiteSpaceMode">WhiteSpaceMode</keyword>
<keyword ref="qstylesheetitem.html#alignment">alignment</keyword>
<keyword ref="qstylesheetitem.html#allowedInContext">allowedInContext</keyword>
<keyword ref="qstylesheetitem.html#color">color</keyword>
<keyword ref="qstylesheetitem.html#contexts">contexts</keyword>
<keyword ref="qstylesheetitem.html#definesFontItalic">definesFontItalic</keyword>
<keyword ref="qstylesheetitem.html#definesFontStrikeOut">definesFontStrikeOut</keyword>
<keyword ref="qstylesheetitem.html#definesFontUnderline">definesFontUnderline</keyword>
<keyword ref="qstylesheetitem.html#displayMode">displayMode</keyword>
<keyword ref="qstylesheetitem.html#fontFamily">fontFamily</keyword>
<keyword ref="qstylesheetitem.html#fontItalic">fontItalic</keyword>
<keyword ref="qstylesheetitem.html#fontSize">fontSize</keyword>
<keyword ref="qstylesheetitem.html#fontStrikeOut">fontStrikeOut</keyword>
<keyword ref="qstylesheetitem.html#fontUnderline">fontUnderline</keyword>
<keyword ref="qstylesheetitem.html#fontWeight">fontWeight</keyword>
<keyword ref="qstylesheetitem.html#isAnchor">isAnchor</keyword>
<keyword ref="qstylesheetitem.html#listStyle">listStyle</keyword>
<keyword ref="qstylesheetitem.html#logicalFontSize">logicalFontSize</keyword>
<keyword ref="qstylesheetitem.html#logicalFontSizeStep">logicalFontSizeStep</keyword>
<keyword ref="qstylesheetitem.html#margin">margin</keyword>
<keyword ref="qstylesheetitem.html#name">name</keyword>
<keyword ref="qstylesheetitem.html#operator-eq">operator=</keyword>
<keyword ref="qstylesheetitem.html#selfNesting">selfNesting</keyword>
<keyword ref="qstylesheetitem.html#setAlignment">setAlignment</keyword>
<keyword ref="qstylesheetitem.html#setAnchor">setAnchor</keyword>
<keyword ref="qstylesheetitem.html#setColor">setColor</keyword>
<keyword ref="qstylesheetitem.html#setContexts">setContexts</keyword>
<keyword ref="qstylesheetitem.html#setDisplayMode">setDisplayMode</keyword>
<keyword ref="qstylesheetitem.html#setFontFamily">setFontFamily</keyword>
<keyword ref="qstylesheetitem.html#setFontItalic">setFontItalic</keyword>
<keyword ref="qstylesheetitem.html#setFontSize">setFontSize</keyword>
<keyword ref="qstylesheetitem.html#setFontStrikeOut">setFontStrikeOut</keyword>
<keyword ref="qstylesheetitem.html#setFontUnderline">setFontUnderline</keyword>
<keyword ref="qstylesheetitem.html#setFontWeight">setFontWeight</keyword>
<keyword ref="qstylesheetitem.html#setListStyle">setListStyle</keyword>
<keyword ref="qstylesheetitem.html#setLogicalFontSize">setLogicalFontSize</keyword>
<keyword ref="qstylesheetitem.html#setLogicalFontSizeStep">setLogicalFontSizeStep</keyword>
<keyword ref="qstylesheetitem.html#setMargin">setMargin</keyword>
<keyword ref="qstylesheetitem.html#setSelfNesting">setSelfNesting</keyword>
<keyword ref="qstylesheetitem.html#setVerticalAlignment">setVerticalAlignment</keyword>
<keyword ref="qstylesheetitem.html#setWhiteSpaceMode">setWhiteSpaceMode</keyword>
<keyword ref="qstylesheetitem.html#styleSheet">styleSheet</keyword>
<keyword ref="qstylesheetitem.html#verticalAlignment">verticalAlignment</keyword>
<keyword ref="qstylesheetitem.html#whiteSpaceMode">whiteSpaceMode</keyword>
<keyword ref="qstylesheetitem.html#~QStyleSheetItem">~QStyleSheetItem</keyword>
<section ref="qstylesheetitem-members.html" title="List of All Member Functions"/>
<section ref="qstylesheet-h.html" title="Header File"/>
<section ref="tqstyle.html" title="TQStyle Class Reference">
<keyword ref="tqstyle.html">TQStyle</keyword>
<keyword ref="tqstyle.html#ComplexControl">ComplexControl</keyword>
<keyword ref="tqstyle.html#ContentsType">ContentsType</keyword>
<keyword ref="tqstyle.html#ControlElement">ControlElement</keyword>
<keyword ref="tqstyle.html#PixelMetric">PixelMetric</keyword>
<keyword ref="tqstyle.html#PrimitiveElement">PrimitiveElement</keyword>
<keyword ref="tqstyle.html#StyleFlags">StyleFlags</keyword>
<keyword ref="tqstyle.html#StyleHint">StyleHint</keyword>
<keyword ref="tqstyle.html#StylePixmap">StylePixmap</keyword>
<keyword ref="tqstyle.html#SubControl">SubControl</keyword>
<keyword ref="tqstyle.html#SubRect">SubRect</keyword>
<keyword ref="tqstyle.html#drawComplexControl">drawComplexControl</keyword>
<keyword ref="tqstyle.html#drawComplexControlMask">drawComplexControlMask</keyword>
<keyword ref="tqstyle.html#drawControl">drawControl</keyword>
<keyword ref="tqstyle.html#drawControlMask">drawControlMask</keyword>
<keyword ref="tqstyle.html#drawItem">drawItem</keyword>
<keyword ref="tqstyle.html#drawPrimitive">drawPrimitive</keyword>
<keyword ref="tqstyle.html#itemRect">itemRect</keyword>
<keyword ref="tqstyle.html#pixelMetric">pixelMetric</keyword>
<keyword ref="tqstyle.html#polish">polish</keyword>
<keyword ref="tqstyle.html#polishPopupMenu">polishPopupMenu</keyword>
<keyword ref="tqstyle.html#querySubControl">querySubControl</keyword>
<keyword ref="tqstyle.html#querySubControlMetrics">querySubControlMetrics</keyword>
<keyword ref="tqstyle.html#sizeFromContents">sizeFromContents</keyword>
<keyword ref="tqstyle.html#styleHint">styleHint</keyword>
<keyword ref="tqstyle.html#stylePixmap">stylePixmap</keyword>
<keyword ref="tqstyle.html#subRect">subRect</keyword>
<keyword ref="tqstyle.html#unPolish">unPolish</keyword>
<keyword ref="tqstyle.html#visualRect">visualRect</keyword>
<keyword ref="tqstyle.html#~TQStyle">~TQStyle</keyword>
<section ref="tqstyle-members.html" title="List of All Member Functions"/>
<section ref="tqstyle-h.html" title="Header File"/>
</section>
<section ref="tqstylefactory.html" title="TQStyleFactory Class Reference">
<keyword ref="tqstylefactory.html">TQStyleFactory</keyword>
<keyword ref="tqstylefactory.html#create">create</keyword>
<keyword ref="tqstylefactory.html#keys">keys</keyword>
<section ref="tqstylefactory-members.html" title="List of All Member Functions"/>
<section ref="tqstylefactory-h.html" title="Header File"/>
</section>
<section ref="tqstyleoption.html" title="TQStyleOption Class Reference">
<keyword ref="tqstyleoption.html">TQStyleOption</keyword>
<keyword ref="tqstyleoption.html#StyleOptionDefault">StyleOptionDefault</keyword>
<keyword ref="tqstyleoption.html#arrowType">arrowType</keyword>
<keyword ref="tqstyleoption.html#checkListItem">checkListItem</keyword>
<keyword ref="tqstyleoption.html#color">color</keyword>
<keyword ref="tqstyleoption.html#day">day</keyword>
<keyword ref="tqstyleoption.html#frameShadow">frameShadow</keyword>
<keyword ref="tqstyleoption.html#frameShape">frameShape</keyword>
<keyword ref="tqstyleoption.html#headerSection">headerSection</keyword>
<keyword ref="tqstyleoption.html#isDefault">isDefault</keyword>
<keyword ref="tqstyleoption.html#lineWidth">lineWidth</keyword>
<keyword ref="tqstyleoption.html#listViewItem">listViewItem</keyword>
<keyword ref="tqstyleoption.html#maxIconWidth">maxIconWidth</keyword>
<keyword ref="tqstyleoption.html#menuItem">menuItem</keyword>
<keyword ref="tqstyleoption.html#midLineWidth">midLineWidth</keyword>
<keyword ref="tqstyleoption.html#rect">rect</keyword>
<keyword ref="tqstyleoption.html#tab">tab</keyword>
<keyword ref="tqstyleoption.html#tabWidth">tabWidth</keyword>
<keyword ref="tqstyleoption.html#widget">widget</keyword>
<section ref="tqstyleoption-members.html" title="List of All Member Functions"/>
<section ref="tqstyle-h.html" title="Header File"/>
</section>
<section ref="tqstyleplugin.html" title="TQStylePlugin Class Reference">
<keyword ref="tqstyleplugin.html">TQStylePlugin</keyword>
<keyword ref="tqstyleplugin.html#create">create</keyword>
<keyword ref="tqstyleplugin.html#keys">keys</keyword>
<keyword ref="tqstyleplugin.html#~TQStylePlugin">~TQStylePlugin</keyword>
<section ref="tqstyleplugin-members.html" title="List of All Member Functions"/>
<section ref="tqstyleplugin-h.html" title="Header File"/>
</section>
<section ref="tqstylesheet.html" title="TQStyleSheet Class Reference">
<keyword ref="tqstylesheet.html">TQStyleSheet</keyword>
<keyword ref="tqstylesheet.html#convertFromPlainText">convertFromPlainText</keyword>
<keyword ref="tqstylesheet.html#defaultSheet">defaultSheet</keyword>
<keyword ref="tqstylesheet.html#error">error</keyword>
<keyword ref="tqstylesheet.html#escape">escape</keyword>
<keyword ref="tqstylesheet.html#item">item</keyword>
<keyword ref="tqstylesheet.html#mightBeRichText">mightBeRichText</keyword>
<keyword ref="tqstylesheet.html#scaleFont">scaleFont</keyword>
<keyword ref="tqstylesheet.html#setDefaultSheet">setDefaultSheet</keyword>
<keyword ref="tqstylesheet.html#tag">tag</keyword>
<keyword ref="tqstylesheet.html#~TQStyleSheet">~TQStyleSheet</keyword>
<section ref="tqstylesheet-members.html" title="List of All Member Functions"/>
<section ref="tqstylesheet-h.html" title="Header File"/>
</section>
<section ref="tqstylesheetitem.html" title="TQStyleSheetItem Class Reference">
<keyword ref="tqstylesheetitem.html">TQStyleSheetItem</keyword>
<keyword ref="tqstylesheetitem.html#DisplayMode">DisplayMode</keyword>
<keyword ref="tqstylesheetitem.html#ListStyle">ListStyle</keyword>
<keyword ref="tqstylesheetitem.html#Margin">Margin</keyword>
<keyword ref="tqstylesheetitem.html#VerticalAlignment">VerticalAlignment</keyword>
<keyword ref="tqstylesheetitem.html#WhiteSpaceMode">WhiteSpaceMode</keyword>
<keyword ref="tqstylesheetitem.html#alignment">alignment</keyword>
<keyword ref="tqstylesheetitem.html#allowedInContext">allowedInContext</keyword>
<keyword ref="tqstylesheetitem.html#color">color</keyword>
<keyword ref="tqstylesheetitem.html#contexts">contexts</keyword>
<keyword ref="tqstylesheetitem.html#definesFontItalic">definesFontItalic</keyword>
<keyword ref="tqstylesheetitem.html#definesFontStrikeOut">definesFontStrikeOut</keyword>
<keyword ref="tqstylesheetitem.html#definesFontUnderline">definesFontUnderline</keyword>
<keyword ref="tqstylesheetitem.html#displayMode">displayMode</keyword>
<keyword ref="tqstylesheetitem.html#fontFamily">fontFamily</keyword>
<keyword ref="tqstylesheetitem.html#fontItalic">fontItalic</keyword>
<keyword ref="tqstylesheetitem.html#fontSize">fontSize</keyword>
<keyword ref="tqstylesheetitem.html#fontStrikeOut">fontStrikeOut</keyword>
<keyword ref="tqstylesheetitem.html#fontUnderline">fontUnderline</keyword>
<keyword ref="tqstylesheetitem.html#fontWeight">fontWeight</keyword>
<keyword ref="tqstylesheetitem.html#isAnchor">isAnchor</keyword>
<keyword ref="tqstylesheetitem.html#listStyle">listStyle</keyword>
<keyword ref="tqstylesheetitem.html#logicalFontSize">logicalFontSize</keyword>
<keyword ref="tqstylesheetitem.html#logicalFontSizeStep">logicalFontSizeStep</keyword>
<keyword ref="tqstylesheetitem.html#margin">margin</keyword>
<keyword ref="tqstylesheetitem.html#name">name</keyword>
<keyword ref="tqstylesheetitem.html#operator-eq">operator=</keyword>
<keyword ref="tqstylesheetitem.html#selfNesting">selfNesting</keyword>
<keyword ref="tqstylesheetitem.html#setAlignment">setAlignment</keyword>
<keyword ref="tqstylesheetitem.html#setAnchor">setAnchor</keyword>
<keyword ref="tqstylesheetitem.html#setColor">setColor</keyword>
<keyword ref="tqstylesheetitem.html#setContexts">setContexts</keyword>
<keyword ref="tqstylesheetitem.html#setDisplayMode">setDisplayMode</keyword>
<keyword ref="tqstylesheetitem.html#setFontFamily">setFontFamily</keyword>
<keyword ref="tqstylesheetitem.html#setFontItalic">setFontItalic</keyword>
<keyword ref="tqstylesheetitem.html#setFontSize">setFontSize</keyword>
<keyword ref="tqstylesheetitem.html#setFontStrikeOut">setFontStrikeOut</keyword>
<keyword ref="tqstylesheetitem.html#setFontUnderline">setFontUnderline</keyword>
<keyword ref="tqstylesheetitem.html#setFontWeight">setFontWeight</keyword>
<keyword ref="tqstylesheetitem.html#setListStyle">setListStyle</keyword>
<keyword ref="tqstylesheetitem.html#setLogicalFontSize">setLogicalFontSize</keyword>
<keyword ref="tqstylesheetitem.html#setLogicalFontSizeStep">setLogicalFontSizeStep</keyword>
<keyword ref="tqstylesheetitem.html#setMargin">setMargin</keyword>
<keyword ref="tqstylesheetitem.html#setSelfNesting">setSelfNesting</keyword>
<keyword ref="tqstylesheetitem.html#setVerticalAlignment">setVerticalAlignment</keyword>
<keyword ref="tqstylesheetitem.html#setWhiteSpaceMode">setWhiteSpaceMode</keyword>
<keyword ref="tqstylesheetitem.html#styleSheet">styleSheet</keyword>
<keyword ref="tqstylesheetitem.html#verticalAlignment">verticalAlignment</keyword>
<keyword ref="tqstylesheetitem.html#whiteSpaceMode">whiteSpaceMode</keyword>
<keyword ref="tqstylesheetitem.html#~TQStyleSheetItem">~TQStyleSheetItem</keyword>
<section ref="tqstylesheetitem-members.html" title="List of All Member Functions"/>
<section ref="tqstylesheet-h.html" title="Header File"/>
</section>
<section ref="ntqsyntaxhighlighter.html" title="QSyntaxHighlighter Class Reference">
<keyword ref="ntqsyntaxhighlighter.html">QSyntaxHighlighter</keyword>

@ -45,17 +45,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -66,7 +66,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -74,31 +74,31 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -321,7 +321,7 @@ void <a name="f465"></a>ApplicationWindow::print()
<a name="x1560"></a> int dpiy = metrics.<a href="ntqpaintdevicemetrics.html#logicalDpiY">logicalDpiY</a>();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
<a name="x1561"></a><a name="x1559"></a> <a href="ntqrect.html">TQRect</a> view( margin, margin, metrics.<a href="ntqpaintdevicemetrics.html#width">width</a>() - 2*margin, metrics.<a href="ntqpaintdevicemetrics.html#height">height</a>() - 2*margin );
<a name="x1581"></a> <a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="ntqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(e-&gt;<a href="tqtextedit.html#text">text</a>()),
<a name="x1581"></a> <a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="tqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(e-&gt;<a href="tqtextedit.html#text">text</a>()),
TQFont(),
<a name="x1582"></a> e-&gt;<a href="tqtextedit.html#context">context</a>(),
<a name="x1587"></a> e-&gt;<a href="tqtextedit.html#styleSheet">styleSheet</a>(),

@ -463,7 +463,7 @@ and implicitly changes the window system caption to the new name.
int dpiy = metrics.<a href="ntqpaintdevicemetrics.html#logicalDpiY">logicalDpiY</a>();
int margin = (int) ( (2/2.54)*dpiy ); // 2 cm margins
<a href="ntqrect.html">TQRect</a> view( margin, margin, metrics.<a href="ntqpaintdevicemetrics.html#width">width</a>() - 2*margin, metrics.<a href="ntqpaintdevicemetrics.html#height">height</a>() - 2*margin );
<a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="ntqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(e-&gt;<a href="tqtextedit.html#text">text</a>()),
<a href="ntqsimplerichtext.html">TQSimpleRichText</a> richText( TQStyleSheet::<a href="tqstylesheet.html#convertFromPlainText">convertFromPlainText</a>(e-&gt;<a href="tqtextedit.html#text">text</a>()),
TQFont(),
e-&gt;<a href="tqtextedit.html#context">context</a>(),
e-&gt;<a href="tqtextedit.html#styleSheet">styleSheet</a>(),

@ -46,8 +46,8 @@ body { background: #ffffff; color: black; }
<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="tqstrlist.html">TQStrList</a></b><td>Doubly-linked list of char*
<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="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="tqtextbrowser.html">TQTextBrowser</a></b><td>Rich text browser with hypertext navigation
<tr bgcolor=#f0f0f0><td><b><a href="tqtextedit.html">TQTextEdit</a></b><td>Powerful single-page rich text editor

@ -78,7 +78,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;
void drawControl( ControlElement element,
<a href="ntqpainter.html">TQPainter</a> *p,
@ -86,13 +86,13 @@ public:
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg,
SFlags how = Style_Default,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
void drawControlMask( ControlElement element,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
void drawComplexControl( ComplexControl cc,
<a href="ntqpainter.html">TQPainter</a> *p,
@ -102,18 +102,18 @@ public:
SFlags how = Style_Default,
SCFlags sub = SC_All,
SCFlags subActive = SC_None,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
void drawComplexControlMask( ComplexControl control,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
<a href="ntqrect.html">TQRect</a> querySubControlMetrics( ComplexControl control,
const <a href="tqwidget.html">TQWidget</a> *widget,
SubControl sc,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
<a href="ntqrect.html">TQRect</a> subRect( SubRect r, const <a href="tqwidget.html">TQWidget</a> *widget ) const;
@ -162,7 +162,7 @@ private:
#include "ntqrangecontrol.h"
#include "ntqscrollbar.h"
#include &lt;limits.h&gt;
#include "ntqstylefactory.h"
#include "tqstylefactory.h"
/* XPM */
static const char *polish_xpm[] = {
@ -906,7 +906,7 @@ enum { PointUp, PointDown, PointLeft, PointRight };
/*!
Reimplementation from TQStyle
*/
<a name="x261"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
<a name="x261"></a>void NorwegianWoodStyle::<a href="tqstyle.html#polish">polish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
{
<a name="x186"></a> oldPalette = app-&gt;<a href="ntqapplication.html#palette">palette</a>();
@ -1010,7 +1010,7 @@ enum { PointUp, PointDown, PointLeft, PointRight };
}
<a name="x263"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
<a name="x263"></a>void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
{
app-&gt;<a href="ntqapplication.html#setPalette">setPalette</a>(oldPalette, TRUE);
}
@ -1018,7 +1018,7 @@ enum { PointUp, PointDown, PointLeft, PointRight };
/*!
Reimplementation from TQStyle
*/
void NorwegianWoodStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="tqwidget.html">TQWidget</a>* w)
void NorwegianWoodStyle::<a href="tqstyle.html#polish">polish</a>( <a href="tqwidget.html">TQWidget</a>* w)
{
// the polish function sets some widgets to transparent mode and
@ -1037,7 +1037,7 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="tqw
}
}
void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidget.html">TQWidget</a>* w)
void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="tqwidget.html">TQWidget</a>* w)
{
// the polish function sets some widgets to transparent mode and
// some to translate background mode in order to get the full
@ -1054,11 +1054,11 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
}
}
<a name="x260"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PrimitiveElement pe,
<a name="x260"></a>void NorwegianWoodStyle::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PrimitiveElement pe,
<a href="ntqpainter.html">TQPainter</a> *p,
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
SFlags flags, const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
int x, y, w, h;
<a name="x240"></a> r.<a href="ntqrect.html#rect">rect</a>( &amp;x, &amp;y, &amp;w, &amp;h );
@ -1118,17 +1118,17 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
drawSemicircleButton( p, r, PointUp, flags &amp; Style_Down, cg );
break;
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt );
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt );
break;
}
}
<a name="x259"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#drawControl">drawControl</a>( ControlElement element,
<a name="x259"></a>void NorwegianWoodStyle::<a href="tqstyle.html#drawControl">drawControl</a>( ControlElement element,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg,
SFlags how, const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
SFlags how, const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch( element ) {
case CE_PushButton:
@ -1170,7 +1170,7 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
y2 -= 2;
}
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ButtonCommand, p,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ButtonCommand, p,
TQRect( x1, y1, x2 - x1 + 1, y2 - y1 + 1),
myCg, flags, opt );
@ -1189,7 +1189,7 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
flags = Style_Default;
<a name="x252"></a> if ( btn-&gt;<a href="tqwidget.html#isEnabled">isEnabled</a>() )
flags |= Style_Enabled;
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
TQRect( x2 - dx, dx, y1, y2 - y1),
myCg, flags, opt );
}
@ -1218,7 +1218,7 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
y += 2;
w -= 4;
h -= 4;
<a href="ntqstyle.html#drawItem">drawItem</a>( p, TQRect( x, y, w, h ),
<a href="tqstyle.html#drawItem">drawItem</a>( p, TQRect( x, y, w, h ),
AlignCenter | ShowPrefix,
cg, btn-&gt;<a href="tqwidget.html#isEnabled">isEnabled</a>(),
<a name="x191"></a><a name="x190"></a> btn-&gt;<a href="ntqbutton.html#pixmap">pixmap</a>(), btn-&gt;<a href="ntqbutton.html#text">text</a>(), -1,
@ -1229,16 +1229,16 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
break;
}
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt );
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt );
break;
}
}
<a name="x205"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#drawControlMask">drawControlMask</a>( ControlElement element,
<a name="x205"></a>void NorwegianWoodStyle::<a href="tqstyle.html#drawControlMask">drawControlMask</a>( ControlElement element,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch( element ) {
case CE_PushButton:
@ -1250,12 +1250,12 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
break;
}
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawControlMask">drawControlMask</a>( element, p, widget, r, opt );
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControlMask">drawControlMask</a>( element, p, widget, r, opt );
break;
}
}
<a name="x258"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>( ComplexControl cc,
<a name="x258"></a>void NorwegianWoodStyle::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( ComplexControl cc,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
@ -1263,7 +1263,7 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
SFlags how,
SCFlags sub,
SCFlags subActive,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch( cc ) {
case CC_ComboBox:
@ -1272,15 +1272,15 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
cmb = (const <a href="ntqcombobox.html">TQComboBox</a>*)widget;
int awh, ax, ay, sh, sy, dh, ew;
get_combo_parameters( <a href="ntqstyle.html#subRect">subRect</a>(SR_PushButtonContents, widget),
get_combo_parameters( <a href="tqstyle.html#subRect">subRect</a>(SR_PushButtonContents, widget),
ew, awh, ax, ay, sh, dh, sy );
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ButtonCommand, p, r, cg, Style_Raised, opt );
<a href="ntqstyle.html">TQStyle</a> *mstyle = TQStyleFactory::<a href="ntqstylefactory.html#create">create</a>( "Motif" );
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ButtonCommand, p, r, cg, Style_Raised, opt );
<a href="tqstyle.html">TQStyle</a> *mstyle = TQStyleFactory::<a href="tqstylefactory.html#create">create</a>( "Motif" );
if ( mstyle )
mstyle-&gt;<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
mstyle-&gt;<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
TQRect(ax, ay, awh, awh), cg, how, opt );
else
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
TQRect(ax, ay, awh, awh), cg, how, opt );
<a href="ntqpen.html">TQPen</a> oldPen = p-&gt;<a href="ntqpainter.html#pen">pen</a>();
@ -1293,7 +1293,7 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
p-&gt;<a href="ntqpainter.html#setPen">setPen</a>( oldPen );
if ( cmb-&gt;<a href="ntqcombobox.html#editable">editable</a>() ) {
<a href="ntqrect.html">TQRect</a> r( <a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>(CC_ComboBox, widget,
<a href="ntqrect.html">TQRect</a> r( <a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>(CC_ComboBox, widget,
SC_ComboBoxEditField, opt) );
<a href="ntqpainter.html#qDrawShadePanel">qDrawShadePanel</a>( p, r, cg, TRUE, 1,
&amp;cg.<a href="qcolorgroup.html#brush">brush</a>(TQColorGroup::Button) );
@ -1302,17 +1302,17 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
break;
}
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how,
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how,
sub, subActive, opt );
break;
}
}
<a name="x204"></a>void NorwegianWoodStyle::<a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>( ComplexControl control,
<a name="x204"></a>void NorwegianWoodStyle::<a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>( ComplexControl control,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch ( control ) {
case CC_ComboBox:
@ -1324,15 +1324,15 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
break;
}
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>( control, p, widget, r, opt );
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>( control, p, widget, r, opt );
break;
}
}
<a name="x206"></a>TQRect NorwegianWoodStyle::<a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( ComplexControl control,
<a name="x206"></a>TQRect NorwegianWoodStyle::<a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( ComplexControl control,
const <a href="tqwidget.html">TQWidget</a> *widget,
SubControl sc,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
<a href="ntqrect.html">TQRect</a> rect;
switch ( control ) {
@ -1341,14 +1341,14 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
switch( sc ) {
case SC_ComboBoxEditField:
{
rect = <a href="ntqstyle.html#subRect">subRect</a>( SR_PushButtonContents, widget );
rect = <a href="tqstyle.html#subRect">subRect</a>( SR_PushButtonContents, widget );
int ew = get_combo_extra_width( rect.<a href="ntqrect.html#height">height</a>(), 0 );
<a name="x242"></a> rect.<a href="ntqrect.html#setRect">setRect</a>( rect.<a href="ntqrect.html#x">x</a>() + 1, rect.<a href="ntqrect.html#y">y</a>() + 1,
rect.<a href="ntqrect.html#width">width</a>() - 2 - ew, rect.<a href="ntqrect.html#height">height</a>() - 2 );
break;
}
default:
rect = TQWindowsStyle::<a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( control, widget,
rect = TQWindowsStyle::<a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( control, widget,
sc, opt );
break;
}
@ -1374,21 +1374,21 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
rect.<a href="ntqrect.html#setRect">setRect</a>( b, b, w - 2 * b, w - 2 * b );
break;
default:
rect = TQWindowsStyle::<a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( control, widget,
rect = TQWindowsStyle::<a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( control, widget,
sc, opt );
break;
}
break;
}
default:
rect = TQWindowsStyle::<a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( control, widget,
rect = TQWindowsStyle::<a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( control, widget,
sc, opt );
break;
}
return rect;
}
<a name="x262"></a>TQRect NorwegianWoodStyle::<a href="ntqstyle.html#subRect">subRect</a>( SubRect sr, const <a href="tqwidget.html">TQWidget</a> * widget ) const
<a name="x262"></a>TQRect NorwegianWoodStyle::<a href="tqstyle.html#subRect">subRect</a>( SubRect sr, const <a href="tqwidget.html">TQWidget</a> * widget ) const
{
<a href="ntqrect.html">TQRect</a> r;
switch ( sr ) {
@ -1413,14 +1413,14 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href=
}
case SR_ComboBoxFocusRect:
{
r = <a href="ntqstyle.html#subRect">subRect</a>( SR_PushButtonContents, widget );
r = <a href="tqstyle.html#subRect">subRect</a>( SR_PushButtonContents, widget );
int ew = get_combo_extra_width( r.<a href="ntqrect.html#height">height</a>() );
r.<a href="ntqrect.html#setRect">setRect</a>( r.<a href="ntqrect.html#x">x</a>() + 1, r.<a href="ntqrect.html#y">y</a>() + 1, r.<a href="ntqrect.html#width">width</a>() - 2 - ew,
r.<a href="ntqrect.html#height">height</a>() - 2 );
break;
}
default:
r = TQWindowsStyle::<a href="ntqstyle.html#subRect">subRect</a>( sr, widget );
r = TQWindowsStyle::<a href="tqstyle.html#subRect">subRect</a>( sr, widget );
break;
}
return r;
@ -1499,7 +1499,7 @@ void <a name="f226"></a>NorwegianWoodStyle::drawSemicircleButton( <a href="ntqpa
int dir, bool sunken,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp;g ) const
{
int b = <a href="ntqstyle.html#pixelMetric">pixelMetric</a>( PM_ScrollBarExtent ) &gt; 20 ? 3 : 2;
int b = <a href="tqstyle.html#pixelMetric">pixelMetric</a>( PM_ScrollBarExtent ) &gt; 20 ? 3 : 2;
<a href="ntqregion.html">TQRegion</a> extrn( r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>(), TQRegion::Ellipse );
<a href="ntqregion.html">TQRegion</a> intern( r.<a href="ntqrect.html#x">x</a>()+b, r.<a href="ntqrect.html#y">y</a>()+b, r.<a href="ntqrect.html#width">width</a>()-2*b, r.<a href="ntqrect.html#height">height</a>()-2*b, TQRegion::Ellipse );
@ -1592,7 +1592,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;
void drawControl( ControlElement element,
<a href="ntqpainter.html">TQPainter</a> *p,
@ -1600,7 +1600,7 @@ public:
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg,
SFlags how = Style_Default,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
void drawComplexControl( ComplexControl cc,
<a href="ntqpainter.html">TQPainter</a> *p,
@ -1610,7 +1610,7 @@ public:
SFlags how = Style_Default,
SCFlags sub = SC_All,
SCFlags subActive = SC_None,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; = TQStyleOption::Default ) const;
int pixelMetric( PixelMetric, const <a href="tqwidget.html">TQWidget</a> * ) const;
@ -1674,7 +1674,7 @@ private:
/*!
Reimplementation from TQStyle
*/
<a name="x314"></a>void MetalStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
<a name="x314"></a>void MetalStyle::<a href="tqstyle.html#polish">polish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
{
<a name="x265"></a> oldPalette = app-&gt;<a href="ntqapplication.html#palette">palette</a>();
@ -1734,7 +1734,7 @@ private:
/*!
Reimplementation from TQStyle
*/
<a name="x315"></a>void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
<a name="x315"></a>void MetalStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="ntqapplication.html">TQApplication</a> *app)
{
app-&gt;<a href="ntqapplication.html#setPalette">setPalette</a>(oldPalette, TRUE);
app-&gt;<a href="ntqapplication.html#setFont">setFont</a>( app-&gt;<a href="ntqapplication.html#font">font</a>(), TRUE );
@ -1743,7 +1743,7 @@ private:
/*!
Reimplementation from TQStyle
*/
void MetalStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="tqwidget.html">TQWidget</a>* w)
void MetalStyle::<a href="tqstyle.html#polish">polish</a>( <a href="tqwidget.html">TQWidget</a>* w)
{
// the polish function sets some widgets to transparent mode and
@ -1761,7 +1761,7 @@ void MetalStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="tqwidget.ht
}
}
void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidget.html">TQWidget</a>* w)
void MetalStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="tqwidget.html">TQWidget</a>* w)
{
// the polish function sets some widgets to transparent mode and
@ -1779,11 +1779,11 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
}
<a name="x312"></a>void MetalStyle::<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PrimitiveElement pe,
<a name="x312"></a>void MetalStyle::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PrimitiveElement pe,
<a href="ntqpainter.html">TQPainter</a> *p,
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
SFlags flags, const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch( pe ) {
case PE_HeaderSection:
@ -1802,13 +1802,13 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
case PE_ScrollBarAddLine:
drawMetalButton( p, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>(),
flags &amp; Style_Down, !( flags &amp; Style_Horizontal ) );
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( (flags &amp; Style_Horizontal) ? PE_ArrowRight :PE_ArrowDown,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( (flags &amp; Style_Horizontal) ? PE_ArrowRight :PE_ArrowDown,
p, r, cg, flags, opt );
break;
case PE_ScrollBarSubLine:
drawMetalButton( p, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>(),
flags &amp; Style_Down, !( flags &amp; Style_Horizontal ) );
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( (flags &amp; Style_Horizontal) ? PE_ArrowLeft : PE_ArrowUp,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( (flags &amp; Style_Horizontal) ? PE_ArrowLeft : PE_ArrowUp,
p, r, cg, flags, opt );
break;
@ -1818,18 +1818,18 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
flags &amp; Style_Horizontal );
break;
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt );
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt );
break;
}
}
<a name="x311"></a>void MetalStyle::<a href="ntqstyle.html#drawControl">drawControl</a>( ControlElement element,
<a name="x311"></a>void MetalStyle::<a href="tqstyle.html#drawControl">drawControl</a>( ControlElement element,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg,
SFlags how,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch( element ) {
case CE_PushButton:
@ -1871,7 +1871,7 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
flags |= Style_Down;
<a name="x295"></a> if ( !btn-&gt;<a href="ntqpushbutton.html#isFlat">isFlat</a>() &amp;&amp; !btn-&gt;<a href="ntqbutton.html#isDown">isDown</a>() )
flags |= Style_Raised;
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ButtonCommand, p,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ButtonCommand, p,
TQRect( x1, y1, x2 - x1 + 1, y2 - y1 + 1),
cg, flags, opt );
@ -1881,7 +1881,7 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
flags |= Style_Enabled;
int dx = ( y1 - y2 - 4 ) / 3;
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
TQRect(x2 - dx, dx, y1, y2 - y1),
cg, flags, opt );
}
@ -1912,7 +1912,7 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
y += 2;
w -= 4;
h -= 4;
<a href="ntqstyle.html#drawItem">drawItem</a>( p, TQRect( x, y, w, h ),
<a href="tqstyle.html#drawItem">drawItem</a>( p, TQRect( x, y, w, h ),
AlignCenter|ShowPrefix,
cg, btn-&gt;<a href="tqwidget.html#isEnabled">isEnabled</a>(),
<a name="x271"></a><a name="x270"></a> btn-&gt;<a href="ntqbutton.html#pixmap">pixmap</a>(), btn-&gt;<a href="ntqbutton.html#text">text</a>(), -1,
@ -1922,11 +1922,11 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
break;
}
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt );
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt );
break;
}
}
<a name="x310"></a>void MetalStyle::<a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>( ComplexControl cc,
<a name="x310"></a>void MetalStyle::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( ComplexControl cc,
<a href="ntqpainter.html">TQPainter</a> *p,
const <a href="tqwidget.html">TQWidget</a> *widget,
const <a href="ntqrect.html">TQRect</a> &amp;r,
@ -1934,16 +1934,16 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
SFlags how,
SCFlags sub,
SCFlags subActive,
const <a href="qstyleoption.html">TQStyleOption</a>&amp; opt ) const
const <a href="tqstyleoption.html">TQStyleOption</a>&amp; opt ) const
{
switch ( cc ) {
case CC_Slider:
{
const <a href="ntqslider.html">TQSlider</a> *slider = ( const <a href="ntqslider.html">TQSlider</a>* ) widget;
<a href="ntqrect.html">TQRect</a> handle = <a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( CC_Slider, widget,
<a href="ntqrect.html">TQRect</a> handle = <a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>( CC_Slider, widget,
SC_SliderHandle, opt);
if ( sub &amp; SC_SliderGroove )
TQWindowsStyle::<a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how,
TQWindowsStyle::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how,
SC_SliderGroove, subActive, opt );
<a name="x299"></a> if ( (sub &amp; SC_SliderHandle) &amp;&amp; handle.<a href="ntqrect.html#isValid">isValid</a>() )
drawMetalButton( p, handle.<a href="ntqrect.html#x">x</a>(), handle.<a href="ntqrect.html#y">y</a>(), handle.<a href="ntqrect.html#width">width</a>(),
@ -1961,7 +1961,7 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
&amp;cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::Background ) );
drawMetalButton( p, r.<a href="ntqrect.html#x">x</a>() + r.<a href="ntqrect.html#width">width</a>() - 2 - 16, r.<a href="ntqrect.html#y">y</a>() + 2, 16, r.<a href="ntqrect.html#height">height</a>() - 4,
how &amp; Style_Sunken, TRUE );
<a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( PE_ArrowDown, p,
TQRect( r.<a href="ntqrect.html#x">x</a>() + r.<a href="ntqrect.html#width">width</a>() - 2 - 16 + 2,
r.<a href="ntqrect.html#y">y</a>() + 2 + 2, 16 - 4, r.<a href="ntqrect.html#height">height</a>() - 4 -4 ),
cg,
@ -1970,7 +1970,7 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="tqwidge
break;
}
default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how, sub, subActive,
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how, sub, subActive,
opt );
break;
}
@ -2106,7 +2106,7 @@ void <a name="f230"></a>MetalStyle::drawMetalGradient( <a href="ntqpainter.html"
<a name="x313"></a>int MetalStyle::<a href="ntqstyle.html#pixelMetric">pixelMetric</a>( PixelMetric metric, const <a href="tqwidget.html">TQWidget</a> *w ) const
<a name="x313"></a>int MetalStyle::<a href="tqstyle.html#pixelMetric">pixelMetric</a>( PixelMetric metric, const <a href="tqwidget.html">TQWidget</a> *w ) const
{
switch ( metric ) {
case PM_MenuBarFrameWidth:
@ -2192,7 +2192,7 @@ private:
#include &lt;<a href="qmenubar-h.html">ntqmenubar.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="qfont-h.html">ntqfont.h</a>&gt;
#include &lt;<a href="qstylefactory-h.html">ntqstylefactory.h</a>&gt;
#include &lt;<a href="tqstylefactory-h.html">tqstylefactory.h</a>&gt;
#include &lt;<a href="qaction-h.html">ntqaction.h</a>&gt;
#include &lt;<a href="qsignalmapper-h.html">ntqsignalmapper.h</a>&gt;
#include &lt;<a href="qdict-h.html">ntqdict.h</a>&gt;
@ -2225,7 +2225,7 @@ private:
<a name="x320"></a> ag-&gt;<a href="qactiongroup.html#setExclusive">setExclusive</a>( TRUE );
<a href="ntqsignalmapper.html">TQSignalMapper</a> *styleMapper = new <a href="ntqsignalmapper.html">TQSignalMapper</a>( this );
<a name="x335"></a> <a href="tqobject.html#connect">connect</a>( styleMapper, TQ_SIGNAL( <a href="ntqsignalmapper.html#mapped">mapped</a>( const <a href="tqstring.html">TQString</a>&amp; ) ), this, TQ_SLOT( makeStyle( const <a href="tqstring.html">TQString</a>&amp; ) ) );
<a name="x342"></a> <a href="tqstringlist.html">TQStringList</a> list = TQStyleFactory::<a href="ntqstylefactory.html#keys">keys</a>();
<a name="x342"></a> <a href="tqstringlist.html">TQStringList</a> list = TQStyleFactory::<a href="tqstylefactory.html#keys">keys</a>();
<a name="x341"></a> list.<a href="tqstringlist.html#sort">sort</a>();
#ifndef TQT_NO_STYLE_WINDOWS
<a name="x346"></a><a name="x344"></a> list.<a href="tqvaluelist.html#insert">insert</a>(list.<a href="tqvaluelist.html#begin">begin</a>(), "Norwegian Wood");

@ -827,18 +827,18 @@ TQString Class | tqstring.html
TQString Member List | tqstring-members.html
TQStringList Class | tqstringlist.html
TQStringList Member List | tqstringlist-members.html
QStyle Class | ntqstyle.html
QStyle Member List | qstyle-members.html
QStyleFactory Class | ntqstylefactory.html
QStyleFactory Member List | qstylefactory-members.html
QStyleOption Class | qstyleoption.html
QStyleOption Member List | qstyleoption-members.html
QStylePlugin Class | ntqstyleplugin.html
QStylePlugin Member List | qstyleplugin-members.html
QStyleSheet Class | ntqstylesheet.html
QStyleSheet Member List | qstylesheet-members.html
QStyleSheetItem Class | qstylesheetitem.html
QStyleSheetItem Member List | qstylesheetitem-members.html
TQStyle Class | tqstyle.html
TQStyle Member List | tqstyle-members.html
TQStyleFactory Class | tqstylefactory.html
TQStyleFactory Member List | tqstylefactory-members.html
TQStyleOption Class | tqstyleoption.html
TQStyleOption Member List | tqstyleoption-members.html
TQStylePlugin Class | tqstyleplugin.html
TQStylePlugin Member List | tqstyleplugin-members.html
TQStyleSheet Class | tqstylesheet.html
TQStyleSheet Member List | tqstylesheet-members.html
TQStyleSheetItem Class | tqstylesheetitem.html
TQStyleSheetItem Member List | tqstylesheetitem-members.html
QSyntaxHighlighter Class | ntqsyntaxhighlighter.html
QSyntaxHighlighter Member List | qsyntaxhighlighter-members.html
QTab Class | qtab.html
@ -1375,10 +1375,10 @@ ntqstatusbar.h Include File | qstatusbar-h.html
tqstring.h Include File | tqstring-h.html
tqstringlist.h Include File | tqstringlist-h.html
tqstrlist.h Include File | tqstrlist-h.html
ntqstyle.h Include File | qstyle-h.html
ntqstylefactory.h Include File | qstylefactory-h.html
ntqstyleplugin.h Include File | qstyleplugin-h.html
ntqstylesheet.h Include File | qstylesheet-h.html
tqstyle.h Include File | tqstyle-h.html
tqstylefactory.h Include File | tqstylefactory-h.html
tqstyleplugin.h Include File | tqstyleplugin-h.html
tqstylesheet.h Include File | tqstylesheet-h.html
ntqsyntaxhighlighter.h Include File | qsyntaxhighlighter-h.html
ntqtabbar.h Include File | qtabbar-h.html
ntqtabdialog.h Include File | qtabdialog-h.html

@ -36,7 +36,7 @@ body { background: #ffffff; color: black; }
<p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p>
<p><tt>#include &lt;<a href="tqobject-h.html">tqobject.h</a>&gt;</tt>
<p>Inherits <a href="ntqt.html">TQt</a>.
<p>Inherited by <a href="ntqaccel.html">TQAccel</a>, <a href="qaccessibleobject.html">TQAccessibleObject</a>, <a href="ntqaction.html">TQAction</a>, <a href="ntqapplication.html">TQApplication</a>, <a href="ntqassistantclient.html">TQAssistantClient</a>, <a href="qdatapump.html">TQDataPump</a>, <a href="qaxobject.html">TQAxObject</a>, <a href="qaxscript.html">TQAxScript</a>, <a href="qaxscriptmanager.html">TQAxScriptManager</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqcanvas.html">TQCanvas</a>, <a href="ntqstyle.html">TQStyle</a>, <a href="ntqclipboard.html">TQClipboard</a>, <a href="qcopchannel.html">TQCopChannel</a>, <a href="ntqdns.html">TQDns</a>, <a href="ntqlayout.html">TQLayout</a>, <a href="ntqdragobject.html">TQDragObject</a>, <a href="tqeditorfactory.html">TQEditorFactory</a>, <a href="ntqeventloop.html">TQEventLoop</a>, <a href="qfileiconprovider.html">TQFileIconProvider</a>, <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>, <a href="qwskeyboardhandler.html">TQWSKeyboardHandler</a>, <a href="qnetworkoperation.html">TQNetworkOperation</a>, <a href="qnpinstance.html">TQNPInstance</a>, <a href="tqobjectcleanuphandler.html">TQObjectCleanupHandler</a>, <a href="ntqprocess.html">TQProcess</a>, <a href="ntqserversocket.html">TQServerSocket</a>, <a href="ntqsessionmanager.html">TQSessionManager</a>, <a href="ntqsignal.html">TQSignal</a>, <a href="ntqsignalmapper.html">TQSignalMapper</a>, <a href="ntqsocket.html">TQSocket</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsound.html">TQSound</a>, <a href="tqsqldatabase.html">TQSqlDatabase</a>, <a href="tqsqldriver.html">TQSqlDriver</a>, <a href="tqsqlform.html">TQSqlForm</a>, <a href="ntqstylesheet.html">TQStyleSheet</a>, <a href="ntqtimer.html">TQTimer</a>, <a href="qtooltipgroup.html">TQToolTipGroup</a>, <a href="ntqtranslator.html">TQTranslator</a>, <a href="ntqurloperator.html">TQUrlOperator</a>, and <a href="ntqvalidator.html">TQValidator</a>.
<p>Inherited by <a href="ntqaccel.html">TQAccel</a>, <a href="qaccessibleobject.html">TQAccessibleObject</a>, <a href="ntqaction.html">TQAction</a>, <a href="ntqapplication.html">TQApplication</a>, <a href="ntqassistantclient.html">TQAssistantClient</a>, <a href="qdatapump.html">TQDataPump</a>, <a href="qaxobject.html">TQAxObject</a>, <a href="qaxscript.html">TQAxScript</a>, <a href="qaxscriptmanager.html">TQAxScriptManager</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqcanvas.html">TQCanvas</a>, <a href="tqstyle.html">TQStyle</a>, <a href="ntqclipboard.html">TQClipboard</a>, <a href="qcopchannel.html">TQCopChannel</a>, <a href="ntqdns.html">TQDns</a>, <a href="ntqlayout.html">TQLayout</a>, <a href="ntqdragobject.html">TQDragObject</a>, <a href="tqeditorfactory.html">TQEditorFactory</a>, <a href="ntqeventloop.html">TQEventLoop</a>, <a href="qfileiconprovider.html">TQFileIconProvider</a>, <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>, <a href="qwskeyboardhandler.html">TQWSKeyboardHandler</a>, <a href="qnetworkoperation.html">TQNetworkOperation</a>, <a href="qnpinstance.html">TQNPInstance</a>, <a href="tqobjectcleanuphandler.html">TQObjectCleanupHandler</a>, <a href="ntqprocess.html">TQProcess</a>, <a href="ntqserversocket.html">TQServerSocket</a>, <a href="ntqsessionmanager.html">TQSessionManager</a>, <a href="ntqsignal.html">TQSignal</a>, <a href="ntqsignalmapper.html">TQSignalMapper</a>, <a href="ntqsocket.html">TQSocket</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsound.html">TQSound</a>, <a href="tqsqldatabase.html">TQSqlDatabase</a>, <a href="tqsqldriver.html">TQSqlDriver</a>, <a href="tqsqlform.html">TQSqlForm</a>, <a href="tqstylesheet.html">TQStyleSheet</a>, <a href="ntqtimer.html">TQTimer</a>, <a href="qtooltipgroup.html">TQToolTipGroup</a>, <a href="ntqtranslator.html">TQTranslator</a>, <a href="ntqurloperator.html">TQUrlOperator</a>, and <a href="ntqvalidator.html">TQValidator</a>.
<p><a href="tqobject-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstyle.h:1 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstyle.h:1 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqstyle.h Include File</title>
<title>tqstyle.h Include File</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqstyle.h</h1>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqstyle.h</h1>
<p>This is the verbatim text of the ntqstyle.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<p>This is the verbatim text of the tqstyle.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr>
<pre>
/****************************************************************************
** $Id: qt/ntqstyle.h 3.3.8 edited Jan 11 14:38 $
** $Id: qt/tqstyle.h 3.3.8 edited Jan 11 14:38 $
**
** Definition of TQStyle class
**

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstyle.h:121 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstyle.h:121 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,11 +32,11 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStyle</h1>
<p>This is the complete list of member functions for
<a href="ntqstyle.html">TQStyle</a>, including inherited members.
<a href="tqstyle.html">TQStyle</a>, including inherited members.
<ul>
<li><a href="ntqstyle.html#TQStyle">TQStyle</a>()
<li><a href="ntqstyle.html#~TQStyle">~TQStyle</a>()
<li><a href="tqstyle.html#TQStyle">TQStyle</a>()
<li><a href="tqstyle.html#~TQStyle">~TQStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>()
@ -46,17 +46,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqstyle.html#defaultFrameWidth">defaultFrameWidth</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="ntqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="ntqstyle.html#drawControl">drawControl</a>()
<li><a href="ntqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="ntqstyle.html#drawItem">drawItem</a>()
<li><a href="ntqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqstyle.html#drawComplexControl">drawComplexControl</a>()
<li><a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>()
<li><a href="tqstyle.html#drawControl">drawControl</a>()
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>()
@ -67,7 +67,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstyle.html#itemRect">itemRect</a>()
<li><a href="tqstyle.html#itemRect">itemRect</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
@ -75,31 +75,31 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="ntqstyle.html#polish">polish</a>()
<li><a href="ntqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqstyle.html#pixelMetric">pixelMetric</a>()
<li><a href="tqstyle.html#polish">polish</a>()
<li><a href="tqstyle.html#polishPopupMenu">polishPopupMenu</a>()
<li><a href="tqobject.html#property">property</a>()
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="ntqstyle.html#querySubControl">querySubControl</a>()
<li><a href="ntqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqstyle.html#querySubControl">querySubControl</a>()
<li><a href="tqstyle.html#querySubControlMetrics">querySubControlMetrics</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqstyle.html#scrollBarExtent">scrollBarExtent</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstyle.html#styleHint">styleHint</a>()
<li><a href="ntqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="ntqstyle.html#subRect">subRect</a>()
<li><a href="ntqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqstyle.html#styleHint">styleHint</a>()
<li><a href="tqstyle.html#stylePixmap">stylePixmap</a>()
<li><a href="tqstyle.html#subRect">subRect</a>()
<li><a href="tqstyle.html#tabbarMetrics">tabbarMetrics</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="ntqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqstyle.html#visualRect">visualRect</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qstyle.cpp:306 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqstyle.cpp:306 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,10 +33,10 @@ body { background: #ffffff; color: black; }
<p>The TQStyle class specifies the look and feel of a GUI.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qstyle-h.html">ntqstyle.h</a>&gt;</tt>
<p><tt>#include &lt;<a href="tqstyle-h.html">tqstyle.h</a>&gt;</tt>
<p>Inherits <a href="tqobject.html">TQObject</a>.
<p>Inherited by <a href="ntqcommonstyle.html">TQCommonStyle</a>.
<p><a href="qstyle-members.html">List of all member functions.</a>
<p><a href="tqstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li class=fn><a href="#TQStyle"><b>TQStyle</b></a> ()</li>
@ -650,7 +650,7 @@ Destroys the style and frees all allocated resources.
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p>
<h3 class=fn>void <a name="drawComplexControl"></a>TQStyle::drawComplexControl ( <a href="ntqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;cg, SFlags&nbsp;how = Style_Default, SCFlags&nbsp;sub = SC_All, SCFlags&nbsp;subActive = SC_None, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn>void <a name="drawComplexControl"></a>TQStyle::drawComplexControl ( <a href="tqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;cg, SFlags&nbsp;how = Style_Default, SCFlags&nbsp;sub = SC_All, SCFlags&nbsp;subActive = SC_None, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Draws the ComplexControl <em>control</em> using the painter <em>p</em> in the
@ -701,9 +701,9 @@ the appropriate <em>widget</em> and <em>opt</em> usage:
<tr bgcolor="#d0d0d0"> <td valign="top"><a href="#StyleFlags-enum">Style_HasFocus</a> <td valign="top">Set if the slider has input focus.
<tr bgcolor="#f0f0f0"> <td valign="top" colspan="1" rowspan="6"> <a href="#ComplexControl-enum">CC_ToolButton</a>(const <a href="ntqtoolbutton.html">TQToolButton</a> *)
<td valign="top"><a href="#StyleFlags-enum">Style_Enabled</a> <td valign="top">Set if the toolbutton is enabled.
<td valign="top" colspan="1" rowspan="6"> <a href="qstyleoption.html">TQStyleOption</a> ( <a href="ntqt.html#ArrowType-enum">ArrowType</a> t )
<td valign="top" colspan="1" rowspan="6"> <a href="tqstyleoption.html">TQStyleOption</a> ( <a href="ntqt.html#ArrowType-enum">ArrowType</a> t )
<ul>
<li> opt.<a href="qstyleoption.html#arrowType">arrowType</a>()
<li> opt.<a href="tqstyleoption.html#arrowType">arrowType</a>()
</ul>
<td valign="top" colspan="1" rowspan="6"> When the tool button only contains an arrow, <em>t</em> is the
arrow's type.
@ -721,15 +721,15 @@ contain the mouse when auto-raise is enabled.
<td valign="top">&nbsp;
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#ComplexControl-enum">CC_ListView</a>(const <a href="ntqlistview.html">TQListView</a> *)
<td valign="top"><a href="#StyleFlags-enum">Style_Enabled</a> <td valign="top">Set if the titlebar is enabled.
<td valign="top"><a href="qstyleoption.html">TQStyleOption</a> ( <a href="qlistviewitem.html">TQListViewItem</a> *item )
<td valign="top"><a href="tqstyleoption.html">TQStyleOption</a> ( <a href="qlistviewitem.html">TQListViewItem</a> *item )
<ul>
<li> opt.<a href="qstyleoption.html#listViewItem">listViewItem</a>()
<li> opt.<a href="tqstyleoption.html#listViewItem">listViewItem</a>()
</ul>
<td valign="top"><em>item</em> is the item that needs branches drawn
</table></center>
<p> <p>See also <a href="#ComplexControl-enum">ComplexControl</a> and <a href="#SubControl-enum">SubControl</a>.
<h3 class=fn>void <a name="drawComplexControlMask"></a>TQStyle::drawComplexControlMask ( <a href="ntqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn>void <a name="drawComplexControlMask"></a>TQStyle::drawComplexControlMask ( <a href="tqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Draw a bitmask for the ComplexControl <em>control</em> using the painter
@ -741,7 +741,7 @@ corrdinates into screen coordinates when using <a href="#drawPrimitive">drawPrim
<a href="#drawControl">drawControl</a>().
<p> <p>See also <a href="#drawComplexControl">drawComplexControl</a>() and <a href="#ComplexControl-enum">ComplexControl</a>.
<h3 class=fn>void <a name="drawControl"></a>TQStyle::drawControl ( <a href="ntqstyle.html#ControlElement-enum">ControlElement</a>&nbsp;element, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;cg, SFlags&nbsp;how = Style_Default, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn>void <a name="drawControl"></a>TQStyle::drawControl ( <a href="tqstyle.html#ControlElement-enum">ControlElement</a>&nbsp;element, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;cg, SFlags&nbsp;how = Style_Default, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Draws the ControlElement <em>element</em> using the painter <em>p</em> in the
@ -803,9 +803,9 @@ button or space bar is pressed on the radiobutton).
<p> and
<p> <a href="#ControlElement-enum">CE_TabBarLabel</a>(const <a href="ntqtabbar.html">TQTabBar</a> *)
<p> <td valign="top"><a href="#StyleFlags-enum">Style_Enabled</a> <td valign="top">Set if the tabbar and tab is enabled.
<td valign="top" colspan="1" rowspan="2"> <a href="qstyleoption.html">TQStyleOption</a> ( <a href="qtab.html">TQTab</a> *t )
<td valign="top" colspan="1" rowspan="2"> <a href="tqstyleoption.html">TQStyleOption</a> ( <a href="qtab.html">TQTab</a> *t )
<ul>
<li> opt.<a href="qstyleoption.html#tab">tab</a>()
<li> opt.<a href="tqstyleoption.html#tab">tab</a>()
</ul>
<td valign="top" colspan="1" rowspan="2"> <em>t</em> is the <a href="qtab.html">TQTab</a> being drawn.
<tr bgcolor="#d0d0d0"> <td valign="top"><a href="#StyleFlags-enum">Style_Selected</a> <td valign="top">Set if the tab is the current tab.
@ -820,11 +820,11 @@ button or space bar is pressed on the radiobutton).
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#StyleFlags-enum">Style_HasFocus</a> <td valign="top">Set if the progressbar has input focus.
<tr bgcolor="#d0d0d0"> <td valign="top" colspan="1" rowspan="3"> <a href="#ControlElement-enum">CE_PopupMenuItem</a>(const <a href="ntqpopupmenu.html">TQPopupMenu</a> *)
<td valign="top"><a href="#StyleFlags-enum">Style_Enabled</a> <td valign="top">Set if the menuitem is enabled.
<td valign="top" colspan="1" rowspan="3"> <a href="qstyleoption.html">TQStyleOption</a> ( TQMenuItem *mi, int tabwidth, int maxpmwidth )
<td valign="top" colspan="1" rowspan="3"> <a href="tqstyleoption.html">TQStyleOption</a> ( TQMenuItem *mi, int tabwidth, int maxpmwidth )
<ul>
<li> opt.<a href="qstyleoption.html#menuItem">menuItem</a>()
<li> opt.<a href="qstyleoption.html#tabWidth">tabWidth</a>()
<li> opt.<a href="qstyleoption.html#maxIconWidth">maxIconWidth</a>()
<li> opt.<a href="tqstyleoption.html#menuItem">menuItem</a>()
<li> opt.<a href="tqstyleoption.html#tabWidth">tabWidth</a>()
<li> opt.<a href="tqstyleoption.html#maxIconWidth">maxIconWidth</a>()
</ul>
<td valign="top"><em>mi</em> is the menu item being drawn. TQMenuItem is currently an
internal class.
@ -837,9 +837,9 @@ or space bar is pressed).
checkmarks and iconsets are drawn.
<tr bgcolor="#f0f0f0"> <td valign="top" colspan="1" rowspan="4"> <a href="#ControlElement-enum">CE_MenuBarItem</a>(const <a href="ntqmenubar.html">TQMenuBar</a> *)
<td valign="top"><a href="#StyleFlags-enum">Style_Enabled</a> <td valign="top">Set if the menuitem is enabled
<td valign="top" colspan="1" rowspan="4"> <a href="qstyleoption.html">TQStyleOption</a> ( TQMenuItem *mi )
<td valign="top" colspan="1" rowspan="4"> <a href="tqstyleoption.html">TQStyleOption</a> ( TQMenuItem *mi )
<ul>
<li> opt.<a href="qstyleoption.html#menuItem">menuItem</a>()
<li> opt.<a href="tqstyleoption.html#menuItem">menuItem</a>()
</ul>
<td valign="top" colspan="1" rowspan="4"> <em>mi</em> is the menu item being drawn.
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#StyleFlags-enum">Style_Active</a> <td valign="top">Set if the menuitem is the current item.
@ -848,9 +848,9 @@ the space bar is pressed).
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#StyleFlags-enum">Style_HasFocus</a> <td valign="top">Set if the menubar has input focus.
<tr bgcolor="#d0d0d0"> <td valign="top" colspan="1" rowspan="7"> <a href="#ControlElement-enum">CE_ToolButtonLabel</a>(const <a href="ntqtoolbutton.html">TQToolButton</a> *)
<td valign="top"><a href="#StyleFlags-enum">Style_Enabled</a> <td valign="top">Set if the toolbutton is enabled.
<td valign="top" colspan="1" rowspan="7"> <a href="qstyleoption.html">TQStyleOption</a> ( <a href="ntqt.html#ArrowType-enum">ArrowType</a> t )
<td valign="top" colspan="1" rowspan="7"> <a href="tqstyleoption.html">TQStyleOption</a> ( <a href="ntqt.html#ArrowType-enum">ArrowType</a> t )
<ul>
<li> opt.<a href="qstyleoption.html#arrowType">arrowType</a>()
<li> opt.<a href="tqstyleoption.html#arrowType">arrowType</a>()
</ul>
<td valign="top" colspan="1" rowspan="7"> When the tool button only contains an arrow, <em>t</em> is the
arrow's type.
@ -866,7 +866,7 @@ contain the mouse when auto-raise is enabled.
</table></center>
<p> <p>See also <a href="#ControlElement-enum">ControlElement</a> and <a href="#StyleFlags-enum">StyleFlags</a>.
<h3 class=fn>void <a name="drawControlMask"></a>TQStyle::drawControlMask ( <a href="ntqstyle.html#ControlElement-enum">ControlElement</a>&nbsp;element, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn>void <a name="drawControlMask"></a>TQStyle::drawControlMask ( <a href="tqstyle.html#ControlElement-enum">ControlElement</a>&nbsp;element, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Draw a bitmask for the ControlElement <em>element</em> using the painter
@ -886,7 +886,7 @@ drawn. The text is aligned and wrapped according to the alignment
<p> By default, if both the text and the pixmap are not null, the
pixmap is drawn and the text is ignored.
<h3 class=fn>void <a name="drawPrimitive"></a>TQStyle::drawPrimitive ( <a href="ntqstyle.html#PrimitiveElement-enum">PrimitiveElement</a>&nbsp;pe, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;cg, SFlags&nbsp;flags = Style_Default, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn>void <a name="drawPrimitive"></a>TQStyle::drawPrimitive ( <a href="tqstyle.html#PrimitiveElement-enum">PrimitiveElement</a>&nbsp;pe, <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="qcolorgroup.html">TQColorGroup</a>&nbsp;&amp;&nbsp;cg, SFlags&nbsp;flags = Style_Default, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Draws the style PrimitiveElement <em>pe</em> using the painter <em>p</em> in
@ -902,50 +902,50 @@ When <em>opt</em> is non-default, it is used as follows:
<p> <center><table cellpadding="4" cellspacing="2" border="0">
<tr bgcolor="#a2c511"> <th valign="top">PrimitiveElement <th valign="top">Options <th valign="top">Notes
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#PrimitiveElement-enum">PE_FocusRect</a>
<td valign="top"><a href="qstyleoption.html">TQStyleOption</a> ( const <a href="ntqcolor.html">TQColor</a> & bg )
<td valign="top"><a href="tqstyleoption.html">TQStyleOption</a> ( const <a href="ntqcolor.html">TQColor</a> & bg )
<ul>
<li> opt.<a href="qstyleoption.html#color">color</a>()
<li> opt.<a href="tqstyleoption.html#color">color</a>()
</ul>
<td valign="top"><em>bg</em> is the background color on which the focus rect is being drawn.
<tr bgcolor="#d0d0d0"> <td valign="top" colspan="1" rowspan="2"> <a href="#PrimitiveElement-enum">PE_Panel</a>
<td valign="top" colspan="1" rowspan="2"> <a href="qstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<td valign="top" colspan="1" rowspan="2"> <a href="tqstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<ul>
<li> opt.<a href="qstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="qstyleoption.html#midLineWidth">midLineWidth</a>()
<li> opt.<a href="tqstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="tqstyleoption.html#midLineWidth">midLineWidth</a>()
</ul>
<td valign="top"><em>linewidth</em> is the line width for drawing the panel.
<tr bgcolor="#d0d0d0"> <td valign="top"><em>midlinewidth</em> is the mid-line width for drawing the panel.
<tr bgcolor="#f0f0f0"> <td valign="top" colspan="1" rowspan="2"> <a href="#PrimitiveElement-enum">PE_PanelPopup</a>
<td valign="top" colspan="1" rowspan="2"> <a href="qstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<td valign="top" colspan="1" rowspan="2"> <a href="tqstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<ul>
<li> opt.<a href="qstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="qstyleoption.html#midLineWidth">midLineWidth</a>()
<li> opt.<a href="tqstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="tqstyleoption.html#midLineWidth">midLineWidth</a>()
</ul>
<td valign="top"><em>linewidth</em> is the line width for drawing the panel.
<tr bgcolor="#f0f0f0"> <td valign="top"><em>midlinewidth</em> is the mid-line width for drawing the panel.
<tr bgcolor="#d0d0d0"> <td valign="top" colspan="1" rowspan="2"> <a href="#PrimitiveElement-enum">PE_PanelMenuBar</a>
<td valign="top" colspan="1" rowspan="2"> <a href="qstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<td valign="top" colspan="1" rowspan="2"> <a href="tqstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<ul>
<li> opt.<a href="qstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="qstyleoption.html#midLineWidth">midLineWidth</a>()
<li> opt.<a href="tqstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="tqstyleoption.html#midLineWidth">midLineWidth</a>()
</ul>
<td valign="top"><em>linewidth</em> is the line width for drawing the panel.
<tr bgcolor="#d0d0d0"> <td valign="top"><em>midlinewidth</em> is the mid-line width for drawing the panel.
<tr bgcolor="#f0f0f0"> <td valign="top" colspan="1" rowspan="2"> <a href="#PrimitiveElement-enum">PE_PanelDockWindow</a>
<td valign="top" colspan="1" rowspan="2"> <a href="qstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<td valign="top" colspan="1" rowspan="2"> <a href="tqstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth )
<ul>
<li> opt.<a href="qstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="qstyleoption.html#midLineWidth">midLineWidth</a>()
<li> opt.<a href="tqstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="tqstyleoption.html#midLineWidth">midLineWidth</a>()
</ul>
<td valign="top"><em>linewidth</em> is the line width for drawing the panel.
<tr bgcolor="#f0f0f0"> <td valign="top"><em>midlinewidth</em> is the mid-line width for drawing the panel.
<tr bgcolor="#d0d0d0"> <td valign="top" colspan="1" rowspan="4"> <a href="#PrimitiveElement-enum">PE_GroupBoxFrame</a>
<td valign="top" colspan="1" rowspan="4"> <a href="qstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth, int shape, int shadow )
<td valign="top" colspan="1" rowspan="4"> <a href="tqstyleoption.html">TQStyleOption</a> ( int linewidth, int midlinewidth, int shape, int shadow )
<ul>
<li> opt.<a href="qstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="qstyleoption.html#midLineWidth">midLineWidth</a>()
<li> opt.<a href="qstyleoption.html#frameShape">frameShape</a>()
<li> opt.<a href="qstyleoption.html#frameShadow">frameShadow</a>()
<li> opt.<a href="tqstyleoption.html#lineWidth">lineWidth</a>()
<li> opt.<a href="tqstyleoption.html#midLineWidth">midLineWidth</a>()
<li> opt.<a href="tqstyleoption.html#frameShape">frameShape</a>()
<li> opt.<a href="tqstyleoption.html#frameShadow">frameShadow</a>()
</ul>
<td valign="top"><em>linewidth</em> is the line width for the group box.
<tr bgcolor="#d0d0d0"> <td valign="top"><em>midlinewidth</em> is the mid-line width for the group box.
@ -975,7 +975,7 @@ enough to render the <em>text</em> or <em>pixmap</em>).
<p> By default, if both the text and the pixmap are not null, the
pixmap is drawn and the text is ignored.
<h3 class=fn>int <a name="pixelMetric"></a>TQStyle::pixelMetric ( <a href="ntqstyle.html#PixelMetric-enum">PixelMetric</a>&nbsp;metric, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget = 0 ) const<tt> [pure virtual]</tt>
<h3 class=fn>int <a name="pixelMetric"></a>TQStyle::pixelMetric ( <a href="tqstyle.html#PixelMetric-enum">PixelMetric</a>&nbsp;metric, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget = 0 ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns the pixel metric for <em>metric</em>. The <em>widget</em> argument is
@ -1038,7 +1038,7 @@ means setting the mouse tracking
(<a href="tqwidget.html#setMouseTracking">TQPopupMenu::setMouseTracking</a>()) and whether the menu is
checkable by default (<a href="ntqpopupmenu.html#setCheckable">TQPopupMenu::setCheckable</a>()).
<h3 class=fn><a href="ntqstyle.html#SubControl-enum">SubControl</a> <a name="querySubControl"></a>TQStyle::querySubControl ( <a href="ntqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn><a href="tqstyle.html#SubControl-enum">SubControl</a> <a name="querySubControl"></a>TQStyle::querySubControl ( <a href="tqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns the SubControl for <em>widget</em> at the point <em>pos</em>. The <em>widget</em> argument is a pointer to a <a href="tqwidget.html">TQWidget</a> or one of its
@ -1054,7 +1054,7 @@ for an explanation of the <em>widget</em> and <em>opt</em> arguments.
coordinates.
<p> <p>See also <a href="#drawComplexControl">drawComplexControl</a>(), <a href="#ComplexControl-enum">ComplexControl</a>, <a href="#SubControl-enum">SubControl</a>, and <a href="#querySubControlMetrics">querySubControlMetrics</a>().
<h3 class=fn><a href="ntqrect.html">TQRect</a> <a name="querySubControlMetrics"></a>TQStyle::querySubControlMetrics ( <a href="ntqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, <a href="ntqstyle.html#SubControl-enum">SubControl</a>&nbsp;subcontrol, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn><a href="ntqrect.html">TQRect</a> <a name="querySubControlMetrics"></a>TQStyle::querySubControlMetrics ( <a href="tqstyle.html#ComplexControl-enum">ComplexControl</a>&nbsp;control, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, <a href="tqstyle.html#SubControl-enum">SubControl</a>&nbsp;subcontrol, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns the rect for the SubControl <em>subcontrol</em> for <em>widget</em> in
@ -1073,7 +1073,7 @@ for an explanation of the <em>widget</em> and <em>opt</em> arguments.
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p>
<h3 class=fn><a href="ntqsize.html">TQSize</a> <a name="sizeFromContents"></a>TQStyle::sizeFromContents ( <a href="ntqstyle.html#ContentsType-enum">ContentsType</a>&nbsp;contents, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;contentsSize, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn><a href="ntqsize.html">TQSize</a> <a name="sizeFromContents"></a>TQStyle::sizeFromContents ( <a href="tqstyle.html#ContentsType-enum">ContentsType</a>&nbsp;contents, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;contentsSize, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns the size of <em>widget</em> based on the contents size <em>contentsSize</em>.
@ -1095,22 +1095,22 @@ appropriate <em>widget</em> and <em>opt</em> usage:
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#ContentsType-enum">CT_DockWindow</a> <td valign="top">(const <a href="ntqdockwindow.html">TQDockWindow</a> *) <td valign="top">Unused. <td valign="top">&nbsp;
<tr bgcolor="#d0d0d0"> <td valign="top"><a href="#ContentsType-enum">CT_ProgressBar</a> <td valign="top">(const <a href="ntqprogressbar.html">TQProgressBar</a> *) <td valign="top">Unused. <td valign="top">&nbsp;
<tr bgcolor="#f0f0f0"> <td valign="top"><a href="#ContentsType-enum">CT_PopupMenuItem</a> <td valign="top">(const <a href="ntqpopupmenu.html">TQPopupMenu</a> *)
<td valign="top"><a href="qstyleoption.html">TQStyleOption</a> ( TQMenuItem *mi )
<td valign="top"><a href="tqstyleoption.html">TQStyleOption</a> ( TQMenuItem *mi )
<ul>
<li> opt.<a href="qstyleoption.html#menuItem">menuItem</a>()
<li> opt.<a href="tqstyleoption.html#menuItem">menuItem</a>()
</ul>
<td valign="top"><em>mi</em> is the menu item to use when calculating the size.
TQMenuItem is currently an internal class.
</table></center>
<h3 class=fn>int <a name="styleHint"></a>TQStyle::styleHint ( <a href="ntqstyle.html#StyleHint-enum">StyleHint</a>&nbsp;stylehint, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget = 0, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default, TQStyleHintReturn&nbsp;*&nbsp;returnData = 0 ) const<tt> [pure virtual]</tt>
<h3 class=fn>int <a name="styleHint"></a>TQStyle::styleHint ( <a href="tqstyle.html#StyleHint-enum">StyleHint</a>&nbsp;stylehint, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget = 0, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default, TQStyleHintReturn&nbsp;*&nbsp;returnData = 0 ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns the style hint <em>stylehint</em> for <em>widget</em>. Currently, <em>widget</em>, <em>opt</em>, and <em>returnData</em> are unused; they're included to
allow for future enhancements.
<p> For an explanation of the return value see <a href="#StyleHint-enum">StyleHint</a>.
<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="stylePixmap"></a>TQStyle::stylePixmap ( <a href="ntqstyle.html#StylePixmap-enum">StylePixmap</a>&nbsp;stylepixmap, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget = 0, const&nbsp;<a href="qstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="stylePixmap"></a>TQStyle::stylePixmap ( <a href="tqstyle.html#StylePixmap-enum">StylePixmap</a>&nbsp;stylepixmap, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget = 0, const&nbsp;<a href="tqstyleoption.html">TQStyleOption</a>&nbsp;&amp;&nbsp;opt = TQStyleOption::Default ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns a pixmap for <em>stylepixmap</em>.
@ -1134,7 +1134,7 @@ appropriate <em>widget</em> casts:
</table></center>
<p> <p>See also <a href="#StylePixmap-enum">StylePixmap</a>.
<h3 class=fn><a href="ntqrect.html">TQRect</a> <a name="subRect"></a>TQStyle::subRect ( <a href="ntqstyle.html#SubRect-enum">SubRect</a>&nbsp;subrect, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget ) const<tt> [pure virtual]</tt>
<h3 class=fn><a href="ntqrect.html">TQRect</a> <a name="subRect"></a>TQStyle::subRect ( <a href="tqstyle.html#SubRect-enum">SubRect</a>&nbsp;subrect, const&nbsp;<a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget ) const<tt> [pure virtual]</tt>
</h3>
<p> Returns the sub-area <em>subrect</em> for the <em>widget</em> in logical

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstylefactory.h:1 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstylefactory.h:1 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqstylefactory.h Include File</title>
<title>tqstylefactory.h Include File</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqstylefactory.h</h1>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqstylefactory.h</h1>
<p>This is the verbatim text of the ntqstylefactory.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<p>This is the verbatim text of the tqstylefactory.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr>
<pre>
/****************************************************************************
** $Id: qt/ntqstylefactory.h 3.3.8 edited Jan 11 14:46 $
** $Id: qt/tqstylefactory.h 3.3.8 edited Jan 11 14:46 $
**
** ...
**

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstylefactory.h:49 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstylefactory.h:49 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,11 +32,11 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStyleFactory</h1>
<p>This is the complete list of member functions for
<a href="ntqstylefactory.html">TQStyleFactory</a>, including inherited members.
<a href="tqstylefactory.html">TQStyleFactory</a>, including inherited members.
<ul>
<li><a href="ntqstylefactory.html#create">create</a>()
<li><a href="ntqstylefactory.html#keys">keys</a>()
<li><a href="tqstylefactory.html#create">create</a>()
<li><a href="tqstylefactory.html#keys">keys</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/qstylefactory.cpp:98 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqstylefactory.cpp:98 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQStyleFactory class creates TQStyle objects.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qstylefactory-h.html">ntqstylefactory.h</a>&gt;</tt>
<p><a href="qstylefactory-members.html">List of all member functions.</a>
<p><tt>#include &lt;<a href="tqstylefactory-h.html">tqstylefactory.h</a>&gt;</tt>
<p><a href="tqstylefactory-members.html">List of all member functions.</a>
<h2>Static Public Members</h2>
<ul>
<li class=fn>TQStringList <a href="#keys"><b>keys</b></a> ()</li>
@ -43,20 +43,20 @@ body { background: #ffffff; color: black; }
<hr><a name="details"></a><h2>Detailed Description</h2>
The TQStyleFactory class creates <a href="ntqstyle.html">TQStyle</a> objects.
The TQStyleFactory class creates <a href="tqstyle.html">TQStyle</a> objects.
<p> The style factory creates a TQStyle object for a given key with
<a href="#create">TQStyleFactory::create</a>(key).
<p> The styles are either built-in or dynamically loaded from a style
plugin (see <a href="ntqstyleplugin.html">TQStylePlugin</a>).
plugin (see <a href="tqstyleplugin.html">TQStylePlugin</a>).
<p> <a href="#keys">TQStyleFactory::keys</a>() returns a list of valid keys, typically
including "Windows", "Motif", "CDE", "MotifPlus", "Platinum",
"SGI" and "Compact". Depending on the platform, "WindowsXP",
"Aqua" or "Macintosh" may be available.
<hr><h2>Member Function Documentation</h2>
<h3 class=fn><a href="ntqstyle.html">TQStyle</a>&nbsp;* <a name="create"></a>TQStyleFactory::create ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key )<tt> [static]</tt>
<h3 class=fn><a href="tqstyle.html">TQStyle</a>&nbsp;* <a name="create"></a>TQStyleFactory::create ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key )<tt> [static]</tt>
</h3>
Creates a <a href="ntqstyle.html">TQStyle</a> object that matches <em>key</em> case-insensitively.
Creates a <a href="tqstyle.html">TQStyle</a> object that matches <em>key</em> case-insensitively.
This is either a built-in style, or a style from a style plugin.
<p> <p>See also <a href="#keys">keys</a>().

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstyle.h:54 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstyle.h:54 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,27 +32,27 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStyleOption</h1>
<p>This is the complete list of member functions for
<a href="qstyleoption.html">TQStyleOption</a>, including inherited members.
<a href="tqstyleoption.html">TQStyleOption</a>, including inherited members.
<ul>
<li><a href="qstyleoption.html#TQStyleOption">TQStyleOption</a>()
<li><a href="qstyleoption.html#arrowType">arrowType</a>()
<li><a href="qstyleoption.html#checkListItem">checkListItem</a>()
<li><a href="qstyleoption.html#color">color</a>()
<li><a href="qstyleoption.html#day">day</a>()
<li><a href="qstyleoption.html#frameShadow">frameShadow</a>()
<li><a href="qstyleoption.html#frameShape">frameShape</a>()
<li><a href="qstyleoption.html#headerSection">headerSection</a>()
<li><a href="qstyleoption.html#isDefault">isDefault</a>()
<li><a href="qstyleoption.html#lineWidth">lineWidth</a>()
<li><a href="qstyleoption.html#listViewItem">listViewItem</a>()
<li><a href="qstyleoption.html#maxIconWidth">maxIconWidth</a>()
<li><a href="qstyleoption.html#menuItem">menuItem</a>()
<li><a href="qstyleoption.html#midLineWidth">midLineWidth</a>()
<li><a href="qstyleoption.html#rect">rect</a>()
<li><a href="qstyleoption.html#tab">tab</a>()
<li><a href="qstyleoption.html#tabWidth">tabWidth</a>()
<li><a href="qstyleoption.html#widget">widget</a>()
<li><a href="tqstyleoption.html#TQStyleOption">TQStyleOption</a>()
<li><a href="tqstyleoption.html#arrowType">arrowType</a>()
<li><a href="tqstyleoption.html#checkListItem">checkListItem</a>()
<li><a href="tqstyleoption.html#color">color</a>()
<li><a href="tqstyleoption.html#day">day</a>()
<li><a href="tqstyleoption.html#frameShadow">frameShadow</a>()
<li><a href="tqstyleoption.html#frameShape">frameShape</a>()
<li><a href="tqstyleoption.html#headerSection">headerSection</a>()
<li><a href="tqstyleoption.html#isDefault">isDefault</a>()
<li><a href="tqstyleoption.html#lineWidth">lineWidth</a>()
<li><a href="tqstyleoption.html#listViewItem">listViewItem</a>()
<li><a href="tqstyleoption.html#maxIconWidth">maxIconWidth</a>()
<li><a href="tqstyleoption.html#menuItem">menuItem</a>()
<li><a href="tqstyleoption.html#midLineWidth">midLineWidth</a>()
<li><a href="tqstyleoption.html#rect">rect</a>()
<li><a href="tqstyleoption.html#tab">tab</a>()
<li><a href="tqstyleoption.html#tabWidth">tabWidth</a>()
<li><a href="tqstyleoption.html#widget">widget</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qstyle.cpp:56 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqstyle.cpp:56 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQStyleOption class specifies optional parameters for TQStyle functions.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qstyle-h.html">ntqstyle.h</a>&gt;</tt>
<p><a href="qstyleoption-members.html">List of all member functions.</a>
<p><tt>#include &lt;<a href="tqstyle-h.html">tqstyle.h</a>&gt;</tt>
<p><a href="tqstyleoption-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li class=fn>enum <a href="#StyleOptionDefault-enum"><b>StyleOptionDefault</b></a> { Default }</li>
@ -73,7 +73,7 @@ body { background: #ffffff; color: black; }
<hr><a name="details"></a><h2>Detailed Description</h2>
The TQStyleOption class specifies optional parameters for <a href="ntqstyle.html">TQStyle</a> functions.
The TQStyleOption class specifies optional parameters for <a href="tqstyle.html">TQStyle</a> functions.
<p> Some TQStyle functions take an optional argument specifying extra
information that is required for a paritical primitive or control.
@ -93,7 +93,7 @@ leaves the optional integer argument uninitialized.
<p> When subclassing TQStyle, you must similarly only expect the
default or documented arguments. The other arguments will have
uninitialized values.
<p> If you make your own <a href="ntqstyle.html">TQStyle</a> subclasses and your own widgets, you
<p> If you make your own <a href="tqstyle.html">TQStyle</a> subclasses and your own widgets, you
can make a subclass of TQStyleOption to pass additional arguments
to your TQStyle subclass. You will need to cast the "const
TQStyleOption&" argument to your subclass, so be sure your style
@ -104,16 +104,16 @@ has been called from your widget.
<h3 class=fn><a name="StyleOptionDefault-enum"></a>TQStyleOption::StyleOptionDefault</h3>
<p> This enum value can be passed as the optional argument to any
<a href="ntqstyle.html">TQStyle</a> function.
<a href="tqstyle.html">TQStyle</a> function.
<ul>
<li><tt>TQStyleOption::Default</tt>
</ul>
<hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQStyleOption"></a>TQStyleOption::TQStyleOption ( <a href="qstyleoption.html#StyleOptionDefault-enum">StyleOptionDefault</a> = Default )
<h3 class=fn><a name="TQStyleOption"></a>TQStyleOption::TQStyleOption ( <a href="tqstyleoption.html#StyleOptionDefault-enum">StyleOptionDefault</a> = Default )
</h3>
<p> The default option. This can always be passed as the optional
argument to <a href="ntqstyle.html">TQStyle</a> functions.
argument to <a href="tqstyle.html">TQStyle</a> functions.
<h3 class=fn><a name="TQStyleOption-2"></a>TQStyleOption::TQStyleOption ( int&nbsp;in1 )
</h3>

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstyleplugin.h:1 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstyleplugin.h:1 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqstyleplugin.h Include File</title>
<title>tqstyleplugin.h Include File</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqstyleplugin.h</h1>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqstyleplugin.h</h1>
<p>This is the verbatim text of the ntqstyleplugin.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<p>This is the verbatim text of the tqstyleplugin.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr>
<pre>
/****************************************************************************
** $Id: qt/ntqstyleplugin.h 3.3.8 edited Jan 11 14:46 $
** $Id: qt/tqstyleplugin.h 3.3.8 edited Jan 11 14:46 $
**
** Definition of TQStylePlugin class
**

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstyleplugin.h:52 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstyleplugin.h:52 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,13 +32,13 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStylePlugin</h1>
<p>This is the complete list of member functions for
<a href="ntqstyleplugin.html">TQStylePlugin</a>, including inherited members.
<a href="tqstyleplugin.html">TQStylePlugin</a>, including inherited members.
<ul>
<li><a href="ntqstyleplugin.html#TQStylePlugin">TQStylePlugin</a>()
<li><a href="ntqstyleplugin.html#~TQStylePlugin">~TQStylePlugin</a>()
<li><a href="ntqstyleplugin.html#create">create</a>()
<li><a href="ntqstyleplugin.html#keys">keys</a>()
<li><a href="tqstyleplugin.html#TQStylePlugin">TQStylePlugin</a>()
<li><a href="tqstyleplugin.html#~TQStylePlugin">~TQStylePlugin</a>()
<li><a href="tqstyleplugin.html#create">create</a>()
<li><a href="tqstyleplugin.html#keys">keys</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/qstyleplugin.cpp:47 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqstyleplugin.cpp:47 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQStylePlugin class provides an abstract base for custom TQStyle plugins.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qstyleplugin-h.html">ntqstyleplugin.h</a>&gt;</tt>
<p><a href="qstyleplugin-members.html">List of all member functions.</a>
<p><tt>#include &lt;<a href="tqstyleplugin-h.html">tqstyleplugin.h</a>&gt;</tt>
<p><a href="tqstyleplugin-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li class=fn><a href="#TQStylePlugin"><b>TQStylePlugin</b></a> ()</li>
@ -45,11 +45,11 @@ body { background: #ffffff; color: black; }
<hr><a name="details"></a><h2>Detailed Description</h2>
The TQStylePlugin class provides an abstract base for custom <a href="ntqstyle.html">TQStyle</a> plugins.
The TQStylePlugin class provides an abstract base for custom <a href="tqstyle.html">TQStyle</a> plugins.
<p>
<p> The style plugin is a simple plugin interface that makes it easy
to create custom styles that can be loaded dynamically into
applications with a <a href="ntqstylefactory.html">TQStyleFactory</a>.
applications with a <a href="tqstylefactory.html">TQStyleFactory</a>.
<p> Writing a style plugin is achieved by subclassing this base class,
reimplementing the pure virtual functions <a href="#keys">keys</a>() and <a href="#create">create</a>(), and
exporting the class with the <tt>TQ_EXPORT_PLUGIN</tt> macro. See the
@ -69,10 +69,10 @@ Destroys the style plugin.
<p> You never have to call this explicitly. TQt destroys a plugin
automatically when it is no longer used.
<h3 class=fn><a href="ntqstyle.html">TQStyle</a>&nbsp;* <a name="create"></a>TQStylePlugin::create ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key )<tt> [pure virtual]</tt>
<h3 class=fn><a href="tqstyle.html">TQStyle</a>&nbsp;* <a name="create"></a>TQStylePlugin::create ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;key )<tt> [pure virtual]</tt>
</h3>
<p> Creates and returns a <a href="ntqstyle.html">TQStyle</a> object for the style key <em>key</em>. The
<p> Creates and returns a <a href="tqstyle.html">TQStyle</a> object for the style key <em>key</em>. The
style key is usually the class name of the required style.
<p> <p>See also <a href="#keys">keys</a>().

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstylesheet.h:1 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstylesheet.h:1 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqstylesheet.h Include File</title>
<title>tqstylesheet.h Include File</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqstylesheet.h</h1>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqstylesheet.h</h1>
<p>This is the verbatim text of the ntqstylesheet.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<p>This is the verbatim text of the tqstylesheet.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr>
<pre>
/****************************************************************************
** $Id: qt/ntqstylesheet.h 3.3.8 edited Jan 11 14:38 $
** $Id: qt/tqstylesheet.h 3.3.8 edited Jan 11 14:38 $
**
** Definition of the TQStyleSheet class
**

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqstylesheet.h:205 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstylesheet.h:205 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,11 +32,11 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStyleSheet</h1>
<p>This is the complete list of member functions for
<a href="ntqstylesheet.html">TQStyleSheet</a>, including inherited members.
<a href="tqstylesheet.html">TQStyleSheet</a>, including inherited members.
<ul>
<li><a href="ntqstylesheet.html#TQStyleSheet">TQStyleSheet</a>()
<li><a href="ntqstylesheet.html#~TQStyleSheet">~TQStyleSheet</a>()
<li><a href="tqstylesheet.html#TQStyleSheet">TQStyleSheet</a>()
<li><a href="tqstylesheet.html#~TQStyleSheet">~TQStyleSheet</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>()
@ -45,17 +45,17 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#className">className</a>()
<li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="ntqstylesheet.html#convertFromPlainText">convertFromPlainText</a>()
<li><a href="tqstylesheet.html#convertFromPlainText">convertFromPlainText</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="ntqstylesheet.html#defaultSheet">defaultSheet</a>()
<li><a href="tqstylesheet.html#defaultSheet">defaultSheet</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="ntqstylesheet.html#error">error</a>()
<li><a href="ntqstylesheet.html#escape">escape</a>()
<li><a href="tqstylesheet.html#error">error</a>()
<li><a href="tqstylesheet.html#escape">escape</a>()
<li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>()
@ -64,11 +64,11 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#installEventFilter">installEventFilter</a>()
<li><a href="tqobject.html#isA">isA</a>()
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="ntqstylesheet.html#item">item</a>()
<li><a href="tqstylesheet.html#item">item</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>()
<li><a href="ntqstylesheet.html#mightBeRichText">mightBeRichText</a>()
<li><a href="tqstylesheet.html#mightBeRichText">mightBeRichText</a>()
<li><a href="tqobject.html#name">name</a>()
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>()
@ -77,14 +77,14 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="ntqstylesheet.html#scaleFont">scaleFont</a>()
<li><a href="tqstylesheet.html#scaleFont">scaleFont</a>()
<li><a href="tqobject.html#sender">sender</a>()
<li><a href="ntqstylesheet.html#setDefaultSheet">setDefaultSheet</a>()
<li><a href="tqstylesheet.html#setDefaultSheet">setDefaultSheet</a>()
<li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqstylesheet.html#tag">tag</a>()
<li><a href="tqstylesheet.html#tag">tag</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qstylesheet.cpp:854 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqstylesheet.cpp:854 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQStyleSheet class is a collection of styles for rich text
rendering and a generator of tags.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qstylesheet-h.html">ntqstylesheet.h</a>&gt;</tt>
<p><tt>#include &lt;<a href="tqstylesheet-h.html">tqstylesheet.h</a>&gt;</tt>
<p>Inherits <a href="tqobject.html">TQObject</a>.
<p><a href="qstylesheet-members.html">List of all member functions.</a>
<p><a href="tqstylesheet-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li class=fn><a href="#TQStyleSheet"><b>TQStyleSheet</b></a> ( TQObject&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
@ -63,7 +63,7 @@ The TQStyleSheet class is a collection of styles for rich text
rendering and a generator of tags.
<p>
<p> By creating <a href="qstylesheetitem.html">TQStyleSheetItem</a> objects for a style sheet you build a
<p> By creating <a href="tqstylesheetitem.html">TQStyleSheetItem</a> objects for a style sheet you build a
definition of a set of tags. This definition will be used by the
internal rich text rendering system to parse and display text
documents to which the style sheet applies. Rich text is normally
@ -283,16 +283,16 @@ the child still exists).
Destroys the style sheet. All styles inserted into the style sheet
will be deleted.
<h3 class=fn><a href="tqstring.html">TQString</a> <a name="convertFromPlainText"></a>TQStyleSheet::convertFromPlainText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;plain, <a href="qstylesheetitem.html#WhiteSpaceMode-enum">TQStyleSheetItem::WhiteSpaceMode</a>&nbsp;mode = TQStyleSheetItem::WhiteSpacePre )<tt> [static]</tt>
<h3 class=fn><a href="tqstring.html">TQString</a> <a name="convertFromPlainText"></a>TQStyleSheet::convertFromPlainText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;plain, <a href="tqstylesheetitem.html#WhiteSpaceMode-enum">TQStyleSheetItem::WhiteSpaceMode</a>&nbsp;mode = TQStyleSheetItem::WhiteSpacePre )<tt> [static]</tt>
</h3> Auxiliary function. Converts the plain text string <em>plain</em> to a
rich text formatted paragraph while preserving most of its look.
<p> <em>mode</em> defines the whitespace mode. Possible values are <a href="qstylesheetitem.html#WhiteSpaceMode-enum">TQStyleSheetItem::WhiteSpacePre</a> (no wrapping, all whitespaces
preserved) and <a href="qstylesheetitem.html#WhiteSpaceMode-enum">TQStyleSheetItem::WhiteSpaceNormal</a> (wrapping,
<p> <em>mode</em> defines the whitespace mode. Possible values are <a href="tqstylesheetitem.html#WhiteSpaceMode-enum">TQStyleSheetItem::WhiteSpacePre</a> (no wrapping, all whitespaces
preserved) and <a href="tqstylesheetitem.html#WhiteSpaceMode-enum">TQStyleSheetItem::WhiteSpaceNormal</a> (wrapping,
simplified whitespaces).
<p> <p>See also <a href="#escape">escape</a>().
<p>Examples: <a href="qaction-application-example.html#x1163">action/application.cpp</a>, <a href="simple-application-example.html#x1581">application/application.cpp</a>, and <a href="mdi-example.html#x2067">mdi/application.cpp</a>.
<h3 class=fn><a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="defaultSheet"></a>TQStyleSheet::defaultSheet ()<tt> [static]</tt>
<h3 class=fn><a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="defaultSheet"></a>TQStyleSheet::defaultSheet ()<tt> [static]</tt>
</h3>
Returns the application-wide default style sheet. This style sheet
is used by rich text rendering classes such as <a href="ntqsimplerichtext.html">TQSimpleRichText</a>,
@ -319,11 +319,11 @@ Auxiliary function. Converts the plain text string <em>plain</em> to a
rich text formatted string with any HTML meta-characters escaped.
<p> <p>See also <a href="#convertFromPlainText">convertFromPlainText</a>().
<h3 class=fn><a href="qstylesheetitem.html">TQStyleSheetItem</a>&nbsp;* <a name="item"></a>TQStyleSheet::item ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name )
<h3 class=fn><a href="tqstylesheetitem.html">TQStyleSheetItem</a>&nbsp;* <a name="item"></a>TQStyleSheet::item ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name )
</h3>
Returns the style called <em>name</em> or 0 if there is no such style.
<h3 class=fn>const&nbsp;<a href="qstylesheetitem.html">TQStyleSheetItem</a>&nbsp;* <a name="item-2"></a>TQStyleSheet::item ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name ) const
<h3 class=fn>const&nbsp;<a href="tqstylesheetitem.html">TQStyleSheetItem</a>&nbsp;* <a name="item-2"></a>TQStyleSheet::item ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name ) const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns the style called <em>name</em> or 0 if there is no such style
@ -345,9 +345,9 @@ corresponding to the logical font size <em>logicalSize</em>.
<p> When calling this function, <em>font</em> has a point size corresponding
to the logical font size 3.
<p> Logical font sizes range from 1 to 7, with 1 being the smallest.
<p> <p>See also <a href="qstylesheetitem.html#logicalFontSize">TQStyleSheetItem::logicalFontSize</a>(), <a href="qstylesheetitem.html#logicalFontSizeStep">TQStyleSheetItem::logicalFontSizeStep</a>(), and <a href="ntqfont.html#setPointSize">TQFont::setPointSize</a>().
<p> <p>See also <a href="tqstylesheetitem.html#logicalFontSize">TQStyleSheetItem::logicalFontSize</a>(), <a href="tqstylesheetitem.html#logicalFontSizeStep">TQStyleSheetItem::logicalFontSizeStep</a>(), and <a href="ntqfont.html#setPointSize">TQFont::setPointSize</a>().
<h3 class=fn>void <a name="setDefaultSheet"></a>TQStyleSheet::setDefaultSheet ( <a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet )<tt> [static]</tt>
<h3 class=fn>void <a name="setDefaultSheet"></a>TQStyleSheet::setDefaultSheet ( <a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet )<tt> [static]</tt>
</h3>
Sets the application-wide default style sheet to <em>sheet</em>,
deleting any style sheet previously set. The ownership is

@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqstylesheet.h:56 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>TQStyleSheetItem Member List</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStyleSheetItem</h1>
<p>This is the complete list of member functions for
<a href="tqstylesheetitem.html">TQStyleSheetItem</a>, including inherited members.
<ul>
<li><a href="tqstylesheetitem.html#TQStyleSheetItem">TQStyleSheetItem</a>()
<li><a href="tqstylesheetitem.html#~TQStyleSheetItem">~TQStyleSheetItem</a>()
<li><a href="tqstylesheetitem.html#alignment">alignment</a>()
<li><a href="tqstylesheetitem.html#allowedInContext">allowedInContext</a>()
<li><a href="tqstylesheetitem.html#color">color</a>()
<li><a href="tqstylesheetitem.html#contexts">contexts</a>()
<li><a href="tqstylesheetitem.html#definesFontItalic">definesFontItalic</a>()
<li><a href="tqstylesheetitem.html#definesFontStrikeOut">definesFontStrikeOut</a>()
<li><a href="tqstylesheetitem.html#definesFontUnderline">definesFontUnderline</a>()
<li><a href="tqstylesheetitem.html#displayMode">displayMode</a>()
<li><a href="tqstylesheetitem.html#fontFamily">fontFamily</a>()
<li><a href="tqstylesheetitem.html#fontItalic">fontItalic</a>()
<li><a href="tqstylesheetitem.html#fontSize">fontSize</a>()
<li><a href="tqstylesheetitem.html#fontStrikeOut">fontStrikeOut</a>()
<li><a href="tqstylesheetitem.html#fontUnderline">fontUnderline</a>()
<li><a href="tqstylesheetitem.html#fontWeight">fontWeight</a>()
<li><a href="tqstylesheetitem.html#isAnchor">isAnchor</a>()
<li><a href="tqstylesheetitem.html#lineSpacing">lineSpacing</a>()
<li><a href="tqstylesheetitem.html#listStyle">listStyle</a>()
<li><a href="tqstylesheetitem.html#logicalFontSize">logicalFontSize</a>()
<li><a href="tqstylesheetitem.html#logicalFontSizeStep">logicalFontSizeStep</a>()
<li><a href="tqstylesheetitem.html#margin">margin</a>()
<li><a href="tqstylesheetitem.html#name">name</a>()
<li><a href="tqstylesheetitem.html#numberOfColumns">numberOfColumns</a>()
<li><a href="tqstylesheetitem.html#operator-eq">operator=</a>()
<li><a href="tqstylesheetitem.html#selfNesting">selfNesting</a>()
<li><a href="tqstylesheetitem.html#setAlignment">setAlignment</a>()
<li><a href="tqstylesheetitem.html#setAnchor">setAnchor</a>()
<li><a href="tqstylesheetitem.html#setColor">setColor</a>()
<li><a href="tqstylesheetitem.html#setContexts">setContexts</a>()
<li><a href="tqstylesheetitem.html#setDisplayMode">setDisplayMode</a>()
<li><a href="tqstylesheetitem.html#setFontFamily">setFontFamily</a>()
<li><a href="tqstylesheetitem.html#setFontItalic">setFontItalic</a>()
<li><a href="tqstylesheetitem.html#setFontSize">setFontSize</a>()
<li><a href="tqstylesheetitem.html#setFontStrikeOut">setFontStrikeOut</a>()
<li><a href="tqstylesheetitem.html#setFontUnderline">setFontUnderline</a>()
<li><a href="tqstylesheetitem.html#setFontWeight">setFontWeight</a>()
<li><a href="tqstylesheetitem.html#setListStyle">setListStyle</a>()
<li><a href="tqstylesheetitem.html#setLogicalFontSize">setLogicalFontSize</a>()
<li><a href="tqstylesheetitem.html#setLogicalFontSizeStep">setLogicalFontSizeStep</a>()
<li><a href="tqstylesheetitem.html#setMargin">setMargin</a>()
<li><a href="tqstylesheetitem.html#setNumberOfColumns">setNumberOfColumns</a>()
<li><a href="tqstylesheetitem.html#setSelfNesting">setSelfNesting</a>()
<li><a href="tqstylesheetitem.html#setVerticalAlignment">setVerticalAlignment</a>()
<li><a href="tqstylesheetitem.html#setWhiteSpaceMode">setWhiteSpaceMode</a>()
<li><a href="tqstylesheetitem.html#styleSheet">styleSheet</a>()
<li><a href="tqstylesheetitem.html#verticalAlignment">verticalAlignment</a>()
<li><a href="tqstylesheetitem.html#whiteSpaceMode">whiteSpaceMode</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qstylesheet.cpp:77 -->
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqstylesheet.cpp:77 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQStyleSheetItem class provides an encapsulation of a set of text styles.
<a href="#details">More...</a>
<p><tt>#include &lt;<a href="qstylesheet-h.html">ntqstylesheet.h</a>&gt;</tt>
<p><tt>#include &lt;<a href="tqstylesheet-h.html">tqstylesheet.h</a>&gt;</tt>
<p>Inherits <a href="ntqt.html">TQt</a>.
<p><a href="qstylesheetitem-members.html">List of all member functions.</a>
<p><a href="tqstylesheetitem-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
<li class=fn><a href="#TQStyleSheetItem"><b>TQStyleSheetItem</b></a> ( TQStyleSheet&nbsp;*&nbsp;parent, const&nbsp;TQString&nbsp;&amp;&nbsp;name )</li>
@ -100,7 +100,7 @@ body { background: #ffffff; color: black; }
The TQStyleSheetItem class provides an encapsulation of a set of text styles.
<p>
<p> A style sheet item consists of a name and a set of attributes that
specifiy its font, color, etc. When used in a <a href="ntqstylesheet.html">style sheet</a> (see <a href="#styleSheet">styleSheet</a>()), items define the <a href="#name">name</a>() of
specifiy its font, color, etc. When used in a <a href="tqstylesheet.html">style sheet</a> (see <a href="#styleSheet">styleSheet</a>()), items define the <a href="#name">name</a>() of
a rich text tag and the display property changes associated with
it.
<p> The <a href="#DisplayMode-enum">display mode</a>
@ -167,7 +167,7 @@ baseline of the parent
</ul><p>
<h3 class=fn><a name="WhiteSpaceMode-enum"></a>TQStyleSheetItem::WhiteSpaceMode</h3>
<p> This enum defines the ways in which <a href="ntqstylesheet.html">TQStyleSheet</a> can treat
<p> This enum defines the ways in which <a href="tqstylesheet.html">TQStyleSheet</a> can treat
whitespace.
<ul>
<li><tt>TQStyleSheetItem::WhiteSpaceNormal</tt> - any sequence of whitespace (including
@ -179,14 +179,14 @@ WhiteSpaceNormal, but no automatic line-breaks occur. To break
lines manually, use the <tt>&lt;br&gt;</tt> tag.
</ul><p>
<hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQStyleSheetItem"></a>TQStyleSheetItem::TQStyleSheetItem ( <a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;parent, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name )
<h3 class=fn><a name="TQStyleSheetItem"></a>TQStyleSheetItem::TQStyleSheetItem ( <a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;parent, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name )
</h3>
Constructs a new style called <em>name</em> for the stylesheet <em>parent</em>.
<p> All properties in TQStyleSheetItem are initially in the "do not
change" state, except <a href="#DisplayMode-enum">display
mode</a>, which defaults to <a href="#DisplayMode-enum">DisplayInline</a>.
<h3 class=fn><a name="TQStyleSheetItem-2"></a>TQStyleSheetItem::TQStyleSheetItem ( const&nbsp;<a href="qstylesheetitem.html">TQStyleSheetItem</a>&nbsp;&amp;&nbsp;other )
<h3 class=fn><a name="TQStyleSheetItem-2"></a>TQStyleSheetItem::TQStyleSheetItem ( const&nbsp;<a href="tqstylesheetitem.html">TQStyleSheetItem</a>&nbsp;&amp;&nbsp;other )
</h3>
Copy constructor. Constructs a copy of <em>other</em> that is not bound
to any style sheet.
@ -194,14 +194,14 @@ to any style sheet.
<h3 class=fn><a name="~TQStyleSheetItem"></a>TQStyleSheetItem::~TQStyleSheetItem ()
</h3>
Destroys the style. Note that TQStyleSheetItem objects become
owned by <a href="ntqstylesheet.html">TQStyleSheet</a> when they are created.
owned by <a href="tqstylesheet.html">TQStyleSheet</a> when they are created.
<h3 class=fn>int <a name="alignment"></a>TQStyleSheetItem::alignment () const
</h3>
Returns the alignment of this style. Possible values are <a href="ntqt.html#AlignmentFlags-enum">AlignAuto</a>, <a href="ntqt.html#AlignmentFlags-enum">AlignLeft</a>, <a href="ntqt.html#AlignmentFlags-enum">AlignRight</a>, <a href="ntqt.html#AlignmentFlags-enum">AlignCenter</a> or <a href="ntqt.html#AlignmentFlags-enum">AlignJustify</a>.
<p> <p>See also <a href="#setAlignment">setAlignment</a>() and <a href="ntqt.html#AlignmentFlags-enum">TQt::AlignmentFlags</a>.
<h3 class=fn>bool <a name="allowedInContext"></a>TQStyleSheetItem::allowedInContext ( const&nbsp;<a href="qstylesheetitem.html">TQStyleSheetItem</a>&nbsp;*&nbsp;s ) const
<h3 class=fn>bool <a name="allowedInContext"></a>TQStyleSheetItem::allowedInContext ( const&nbsp;<a href="tqstylesheetitem.html">TQStyleSheetItem</a>&nbsp;*&nbsp;s ) const
</h3>
Returns TRUE if this style can be nested into an element of style
<em>s</em>; otherwise returns FALSE.
@ -242,7 +242,7 @@ property of the font; otherwise returns FALSE. A style does not
define this until <a href="#setFontUnderline">setFontUnderline</a>() is called.
<p> <p>See also <a href="#setFontUnderline">setFontUnderline</a>() and <a href="#fontUnderline">fontUnderline</a>().
<h3 class=fn><a href="qstylesheetitem.html#DisplayMode-enum">DisplayMode</a> <a name="displayMode"></a>TQStyleSheetItem::displayMode () const
<h3 class=fn><a href="tqstylesheetitem.html#DisplayMode-enum">DisplayMode</a> <a name="displayMode"></a>TQStyleSheetItem::displayMode () const
</h3>
Returns the <a href="#DisplayMode-enum">display
mode</a> of the style.
@ -294,7 +294,7 @@ Returns whether this style is an anchor.
<b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> Returns the linespacing
<h3 class=fn><a href="qstylesheetitem.html#ListStyle-enum">ListStyle</a> <a name="listStyle"></a>TQStyleSheetItem::listStyle () const
<h3 class=fn><a href="tqstylesheetitem.html#ListStyle-enum">ListStyle</a> <a name="listStyle"></a>TQStyleSheetItem::listStyle () const
</h3>
Returns the list style of the style.
<p> <p>See also <a href="#setListStyle">setListStyle</a>() and <a href="#ListStyle-enum">ListStyle</a>.
@ -312,7 +312,7 @@ Returns the logical font size step of this style.
defines <tt>-1</tt>.
<p> <p>See also <a href="#setLogicalFontSizeStep">setLogicalFontSizeStep</a>().
<h3 class=fn>int <a name="margin"></a>TQStyleSheetItem::margin ( <a href="qstylesheetitem.html#Margin-enum">Margin</a>&nbsp;m ) const
<h3 class=fn>int <a name="margin"></a>TQStyleSheetItem::margin ( <a href="tqstylesheetitem.html#Margin-enum">Margin</a>&nbsp;m ) const
</h3>
Returns the width of margin <em>m</em> in pixels.
<p> The margin, <em>m</em>, can be <a href="#Margin-enum">MarginLeft</a>, <a href="#Margin-enum">MarginRight</a>, <a href="#Margin-enum">MarginTop</a>, <a href="#Margin-enum">MarginBottom</a>, or <a href="#Margin-enum">MarginFirstLine</a>.
@ -328,7 +328,7 @@ Returns the name of the style item.
<p> <p>See also <a href="#setNumberOfColumns">setNumberOfColumns</a>(), <a href="#displayMode">displayMode</a>(), and <a href="#setDisplayMode">setDisplayMode</a>().
<p>
<h3 class=fn><a href="qstylesheetitem.html">TQStyleSheetItem</a>&nbsp;&amp; <a name="operator-eq"></a>TQStyleSheetItem::operator= ( const&nbsp;<a href="qstylesheetitem.html">TQStyleSheetItem</a>&nbsp;&amp;&nbsp;other )
<h3 class=fn><a href="tqstylesheetitem.html">TQStyleSheetItem</a>&nbsp;&amp; <a name="operator-eq"></a>TQStyleSheetItem::operator= ( const&nbsp;<a href="tqstylesheetitem.html">TQStyleSheetItem</a>&nbsp;&amp;&nbsp;other )
</h3>
Assignment. Assings a copy of <em>other</em> that is not bound to any style sheet.
Unbounds first from previous style sheet.
@ -366,7 +366,7 @@ elements of this style. If <em>c</em> is empty, the style can be nested
everywhere.
<p> <p>See also <a href="#contexts">contexts</a>().
<h3 class=fn>void <a name="setDisplayMode"></a>TQStyleSheetItem::setDisplayMode ( <a href="qstylesheetitem.html#DisplayMode-enum">DisplayMode</a>&nbsp;m )
<h3 class=fn>void <a name="setDisplayMode"></a>TQStyleSheetItem::setDisplayMode ( <a href="tqstylesheetitem.html#DisplayMode-enum">DisplayMode</a>&nbsp;m )
</h3>
Sets the display mode of the style to <em>m</em>.
<p> <p>See also <a href="#displayMode">displayMode</a>().
@ -405,7 +405,7 @@ Sets the font weight setting of the style to <em>w</em>. Valid values
are those defined by <a href="ntqfont.html#Weight-enum">TQFont::Weight</a>.
<p> <p>See also <a href="ntqfont.html">TQFont</a> and <a href="#fontWeight">fontWeight</a>().
<h3 class=fn>void <a name="setListStyle"></a>TQStyleSheetItem::setListStyle ( <a href="qstylesheetitem.html#ListStyle-enum">ListStyle</a>&nbsp;s )
<h3 class=fn>void <a name="setListStyle"></a>TQStyleSheetItem::setListStyle ( <a href="tqstylesheetitem.html#ListStyle-enum">ListStyle</a>&nbsp;s )
</h3>
Sets the list style of the style to <em>s</em>.
<p> This is used by nested elements that have a display mode of <a href="#DisplayMode-enum">DisplayListItem</a>.
@ -422,7 +422,7 @@ logical sizes are 1 to 7.
Sets the logical font size step of this style to <em>s</em>.
<p> <p>See also <a href="#logicalFontSizeStep">logicalFontSizeStep</a>().
<h3 class=fn>void <a name="setMargin"></a>TQStyleSheetItem::setMargin ( <a href="qstylesheetitem.html#Margin-enum">Margin</a>&nbsp;m, int&nbsp;v )
<h3 class=fn>void <a name="setMargin"></a>TQStyleSheetItem::setMargin ( <a href="tqstylesheetitem.html#Margin-enum">Margin</a>&nbsp;m, int&nbsp;v )
</h3>
Sets the width of margin <em>m</em> to <em>v</em> pixels.
<p> The margin, <em>m</em>, can be <a href="#Margin-enum">MarginLeft</a>, <a href="#Margin-enum">MarginRight</a>, <a href="#Margin-enum">MarginTop</a>, <a href="#Margin-enum">MarginBottom</a>, <a href="#Margin-enum">MarginFirstLine</a>, <a href="#Margin-enum">MarginAll</a>,
@ -446,34 +446,34 @@ items <tt>&lt;li&gt;</tt> are not self-nesting. This means that starting a
new paragraph or list item automatically closes the previous one.
<p> <p>See also <a href="#selfNesting">selfNesting</a>().
<h3 class=fn>void <a name="setVerticalAlignment"></a>TQStyleSheetItem::setVerticalAlignment ( <a href="qstylesheetitem.html#VerticalAlignment-enum">VerticalAlignment</a>&nbsp;valign )
<h3 class=fn>void <a name="setVerticalAlignment"></a>TQStyleSheetItem::setVerticalAlignment ( <a href="tqstylesheetitem.html#VerticalAlignment-enum">VerticalAlignment</a>&nbsp;valign )
</h3>
Sets the vertical alignment to <em>valign</em>. Possible values are
<a href="#VerticalAlignment-enum">VAlignBaseline</a>, <a href="#VerticalAlignment-enum">VAlignSub</a> or <a href="#VerticalAlignment-enum">VAlignSuper</a>.
<p> The vertical alignment property is not inherited.
<p> <p>See also <a href="#verticalAlignment">verticalAlignment</a>().
<h3 class=fn>void <a name="setWhiteSpaceMode"></a>TQStyleSheetItem::setWhiteSpaceMode ( <a href="qstylesheetitem.html#WhiteSpaceMode-enum">WhiteSpaceMode</a>&nbsp;m )
<h3 class=fn>void <a name="setWhiteSpaceMode"></a>TQStyleSheetItem::setWhiteSpaceMode ( <a href="tqstylesheetitem.html#WhiteSpaceMode-enum">WhiteSpaceMode</a>&nbsp;m )
</h3>
Sets the whitespace mode to <em>m</em>.
<p> <p>See also <a href="#WhiteSpaceMode-enum">WhiteSpaceMode</a>.
<h3 class=fn><a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="styleSheet"></a>TQStyleSheetItem::styleSheet ()
<h3 class=fn><a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="styleSheet"></a>TQStyleSheetItem::styleSheet ()
</h3>
Returns the style sheet this item is in.
<h3 class=fn>const&nbsp;<a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="styleSheet-2"></a>TQStyleSheetItem::styleSheet () const
<h3 class=fn>const&nbsp;<a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="styleSheet-2"></a>TQStyleSheetItem::styleSheet () const
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns the style sheet this item is in.
<h3 class=fn><a href="qstylesheetitem.html#VerticalAlignment-enum">VerticalAlignment</a> <a name="verticalAlignment"></a>TQStyleSheetItem::verticalAlignment () const
<h3 class=fn><a href="tqstylesheetitem.html#VerticalAlignment-enum">VerticalAlignment</a> <a name="verticalAlignment"></a>TQStyleSheetItem::verticalAlignment () const
</h3>
Returns the vertical alignment of the style. Possible values are
<a href="#VerticalAlignment-enum">VAlignBaseline</a>, <a href="#VerticalAlignment-enum">VAlignSub</a> or <a href="#VerticalAlignment-enum">VAlignSuper</a>.
<p> <p>See also <a href="#setVerticalAlignment">setVerticalAlignment</a>().
<h3 class=fn><a href="qstylesheetitem.html#WhiteSpaceMode-enum">WhiteSpaceMode</a> <a name="whiteSpaceMode"></a>TQStyleSheetItem::whiteSpaceMode () const
<h3 class=fn><a href="tqstylesheetitem.html#WhiteSpaceMode-enum">WhiteSpaceMode</a> <a name="whiteSpaceMode"></a>TQStyleSheetItem::whiteSpaceMode () const
</h3>
Returns the whitespace mode.
<p> <p>See also <a href="#setWhiteSpaceMode">setWhiteSpaceMode</a>() and <a href="#WhiteSpaceMode-enum">WhiteSpaceMode</a>.

@ -109,7 +109,7 @@ This is to ensure that the factory is able to resolve the document
names.
<p> TQTextBrowser interprets the tags it processes in accordance with
the default style sheet. Change the style sheet with
<a href="tqtextedit.html#setStyleSheet">setStyleSheet</a>(); see <a href="ntqstylesheet.html">TQStyleSheet</a> for details.
<a href="tqtextedit.html#setStyleSheet">setStyleSheet</a>(); see <a href="tqstylesheet.html">TQStyleSheet</a> for details.
<p> If you want to provide your users with editable rich text use
<a href="tqtextedit.html">TQTextEdit</a>. If you want a text browser without hypertext navigation
use TQTextEdit, and use <a href="tqtextedit.html#setReadOnly">TQTextEdit::setReadOnly</a>() to disable

@ -79,7 +79,7 @@ body { background: #ffffff; color: black; }
#ifndef QT_H
#include "ntqscrollview.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include "tqptrvector.h"
#include "tqvaluelist.h"
#include "tqptrlist.h"

@ -305,7 +305,7 @@ plain text and HTML files (a subset of HTML 3.2 and 4). The
rendering style and the set of valid tags are defined by a
<a href="#styleSheet">styleSheet</a>(). Custom tags can be created and placed in a custom
style sheet. Change the style sheet with <a href="#setStyleSheet">setStyleSheet</a>(); see
<a href="ntqstylesheet.html">TQStyleSheet</a> for details. The images identified by image tags are
<a href="tqstylesheet.html">TQStyleSheet</a> for details. The images identified by image tags are
displayed if they can be interpreted using the text edit's
<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>; see <a href="#setMimeSourceFactory">setMimeSourceFactory</a>().
<p> If you want a text browser with more navigation use <a href="tqtextbrowser.html">TQTextBrowser</a>.
@ -449,15 +449,15 @@ custom tag, you could do the following:
<pre>
TQTextEdit * log = new TQTextEdit( this );
log-&gt;<a href="#setTextFormat">setTextFormat</a>( TQt::<a href="ntqt.html#TextFormat-enum">LogText</a> );
<a href="qstylesheetitem.html">TQStyleSheetItem</a> * item = new <a href="qstylesheetitem.html">TQStyleSheetItem</a>( log-&gt;<a href="#styleSheet">styleSheet</a>(), "mytag" );
item-&gt;<a href="qstylesheetitem.html#setColor">setColor</a>( "red" );
item-&gt;<a href="qstylesheetitem.html#setFontWeight">setFontWeight</a>( TQFont::Bold );
item-&gt;<a href="qstylesheetitem.html#setFontUnderline">setFontUnderline</a>( TRUE );
<a href="tqstylesheetitem.html">TQStyleSheetItem</a> * item = new <a href="tqstylesheetitem.html">TQStyleSheetItem</a>( log-&gt;<a href="#styleSheet">styleSheet</a>(), "mytag" );
item-&gt;<a href="tqstylesheetitem.html#setColor">setColor</a>( "red" );
item-&gt;<a href="tqstylesheetitem.html#setFontWeight">setFontWeight</a>( TQFont::Bold );
item-&gt;<a href="tqstylesheetitem.html#setFontUnderline">setFontUnderline</a>( TRUE );
log-&gt;<a href="#append">append</a>( "This is a &lt;mytag&gt;custom tag&lt;/mytag&gt;!" );
</pre>
Note that only the color, bold, underline and italic attributes of
a <a href="qstylesheetitem.html">TQStyleSheetItem</a> is used in LogText mode.
a <a href="tqstylesheetitem.html">TQStyleSheetItem</a> is used in LogText mode.
<p> Note that you can use <a href="#setMaxLogLines">setMaxLogLines</a>() to limit the number of
lines the widget can hold in LogText mode.
<p> There are a few things that you need to be aware of when the
@ -1280,7 +1280,7 @@ inverted with <em>invertText</em>.
<p> This only works for <em>selNum</em> > 0. The default selection (<em>selNum</em> == 0) gets its attributes from the text edit's
<a href="tqwidget.html#colorGroup">colorGroup</a>().
<h3 class=fn>void <a name="setStyleSheet"></a>TQTextEdit::setStyleSheet ( <a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;styleSheet )<tt> [virtual slot]</tt>
<h3 class=fn>void <a name="setStyleSheet"></a>TQTextEdit::setStyleSheet ( <a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;styleSheet )<tt> [virtual slot]</tt>
</h3>
Sets the stylesheet to use with this text edit to <em>styleSheet</em>.
Changes will only take effect for new text added with <a href="#setText">setText</a>() or
@ -1305,7 +1305,7 @@ context to <em>context</em>. Any previous text is removed.
depending on the <a href="#textFormat">textFormat</a>(). The default setting is <a href="ntqt.html#TextFormat-enum">AutoText</a>,
i.e. the text edit auto-detects the format from <em>text</em>.
<p> For rich text the rendering style and available tags are defined
by a <a href="#styleSheet">styleSheet</a>(); see <a href="ntqstylesheet.html">TQStyleSheet</a> for details.
by a <a href="#styleSheet">styleSheet</a>(); see <a href="tqstylesheet.html">TQStyleSheet</a> for details.
<p> The optional <em>context</em> is a path which the text edit's
<a href="qmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve the locations of files and
images. (See <a href="#TQTextEdit">TQTextEdit::TQTextEdit</a>().) It is passed to the text
@ -1343,9 +1343,9 @@ See the <a href="tqtextedit.html#wrapColumnOrWidth-prop">"wrapColumnOrWidth"</a>
<h3 class=fn>void <a name="setWrapPolicy"></a>TQTextEdit::setWrapPolicy ( <a href="tqtextedit.html#WrapPolicy-enum">WrapPolicy</a>&nbsp;policy )<tt> [virtual slot]</tt>
</h3><p>Sets the word wrap policy, at whitespace or anywhere to <em>policy</em>.
See the <a href="tqtextedit.html#wrapPolicy-prop">"wrapPolicy"</a> property for details.
<h3 class=fn><a href="ntqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="styleSheet"></a>TQTextEdit::styleSheet () const
<h3 class=fn><a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;* <a name="styleSheet"></a>TQTextEdit::styleSheet () const
</h3>
Returns the <a href="ntqstylesheet.html">TQStyleSheet</a> which is being used by this text edit.
Returns the <a href="tqstylesheet.html">TQStyleSheet</a> which is being used by this text edit.
<p> <p>See also <a href="#setStyleSheet">setStyleSheet</a>().
<p>Examples: <a href="qaction-application-example.html#x1169">action/application.cpp</a>, <a href="simple-application-example.html#x1587">application/application.cpp</a>, <a href="helpviewer-example.html#x1031">helpviewer/helpwindow.cpp</a>, and <a href="mdi-example.html#x2072">mdi/application.cpp</a>.
@ -1563,13 +1563,13 @@ verbatim, including spaces. Whenever a newline appears in the text
the text edit inserts a hard line break and begins a new
paragraph.
<li> RichText - rich text rendering. The available styles are
defined in the default stylesheet <a href="ntqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>().
defined in the default stylesheet <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>().
<li> LogText - optimized mode for very large texts. Supports a very
limited set of formatting tags (color, bold, underline and italic
settings).
<li> AutoText - this is the default. The text edit autodetects which
rendering style is best, <a href="ntqt.html#TextFormat-enum">PlainText</a> or <a href="ntqt.html#TextFormat-enum">RichText</a>. This is done
by using the <a href="ntqstylesheet.html#mightBeRichText">TQStyleSheet::mightBeRichText</a>() function.
by using the <a href="tqstylesheet.html#mightBeRichText">TQStyleSheet::mightBeRichText</a>() function.
</ul>
<p>Set this property's value with <a href="#setTextFormat">setTextFormat</a>() and get this property's value with <a href="#textFormat">textFormat</a>().

@ -2181,7 +2181,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
(height for width).
<p> <p>See also <a href="ntqsizepolicy.html#TQSizePolicy">TQSizePolicy::TQSizePolicy</a>().
<h3 class=fn>void <a name="setStyle"></a>TQWidget::setStyle ( <a href="ntqstyle.html">TQStyle</a>&nbsp;*&nbsp;style )
<h3 class=fn>void <a name="setStyle"></a>TQWidget::setStyle ( <a href="tqstyle.html">TQStyle</a>&nbsp;*&nbsp;style )
</h3>
Sets the widget's GUI style to <em>style</em>. Ownership of the style
object is not transferred.
@ -2193,13 +2193,13 @@ widgets.
purposes, where you want to show TQt's styling capabilities. Real
applications should avoid it and use one consistent GUI style
instead.
<p> <p>See also <a href="#style">style</a>(), <a href="ntqstyle.html">TQStyle</a>, <a href="ntqapplication.html#style">TQApplication::style</a>(), and <a href="ntqapplication.html#setStyle">TQApplication::setStyle</a>().
<p> <p>See also <a href="#style">style</a>(), <a href="tqstyle.html">TQStyle</a>, <a href="ntqapplication.html#style">TQApplication::style</a>(), and <a href="ntqapplication.html#setStyle">TQApplication::setStyle</a>().
<p>Examples: <a href="grapher-nsplugin-example.html#x2778">grapher/grapher.cpp</a> and <a href="progressbar-example.html#x975">progressbar/progressbar.cpp</a>.
<h3 class=fn><a href="ntqstyle.html">TQStyle</a>&nbsp;* <a name="setStyle-2"></a>TQWidget::setStyle ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;style )
<h3 class=fn><a href="tqstyle.html">TQStyle</a>&nbsp;* <a name="setStyle-2"></a>TQWidget::setStyle ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;style )
</h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Sets the widget's GUI style to <em>style</em> using the <a href="ntqstylefactory.html">TQStyleFactory</a>.
<p> Sets the widget's GUI style to <em>style</em> using the <a href="tqstylefactory.html">TQStyleFactory</a>.
<h3 class=fn>void <a name="setTabOrder"></a>TQWidget::setTabOrder ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;first, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;second )<tt> [static]</tt>
</h3>
@ -2353,12 +2353,12 @@ Places the widget under <em>w</em> in the parent widget's stack.
<p> To make this work, the widget itself and <em>w</em> must be siblings.
<p> <p>See also <a href="#raise">raise</a>() and <a href="#lower">lower</a>().
<h3 class=fn><a href="ntqstyle.html">TQStyle</a>&nbsp;&amp; <a name="style"></a>TQWidget::style () const
<h3 class=fn><a href="tqstyle.html">TQStyle</a>&nbsp;&amp; <a name="style"></a>TQWidget::style () const
</h3>
Returns the GUI style for this widget
<p> <p>See also <a href="#setStyle">TQWidget::setStyle</a>(), <a href="ntqapplication.html#setStyle">TQApplication::setStyle</a>(), and <a href="ntqapplication.html#style">TQApplication::style</a>().
<h3 class=fn>void <a name="styleChange"></a>TQWidget::styleChange ( <a href="ntqstyle.html">TQStyle</a>&nbsp;&amp;&nbsp;oldStyle )<tt> [virtual protected]</tt>
<h3 class=fn>void <a name="styleChange"></a>TQWidget::styleChange ( <a href="tqstyle.html">TQStyle</a>&nbsp;&amp;&nbsp;oldStyle )<tt> [virtual protected]</tt>
</h3>
This virtual function is called when the style of the widgets
changes. <em>oldStyle</em> is the previous GUI style; you can get the

@ -8,7 +8,7 @@ Abstract base for Qt/Embedded graphics driver plugins. | QGfxDriverPlugin
Abstract base for Qt/Embedded keyboard driver plugins. | QKbdDriverPlugin
Abstract base for Qt/Embedded mouse driver plugins. | QMouseDriverPlugin
Abstract base for custom TQSqlDriver plugins. | TQSqlDriverPlugin
Abstract base for custom QStyle plugins. | QStylePlugin
Abstract base for custom TQStyle plugins. | TQStylePlugin
Abstract base for custom TQTextCodec plugins. | TQTextCodecPlugin
Abstract base for custom TQWidget plugins. | TQWidgetPlugin
Abstract base for custom image format plugins. | TQImageFormatPlugin
@ -59,7 +59,7 @@ Checkboxes in QTables. | QCheckTableItem
Clip region for a painter. | QRegion
Clock time functions. | QTime
Collection of nodes that can be accessed by name. | TQDomNamedNodeMap
Collection of styles for rich text rendering and a generator of tags. | QStyleSheet
Collection of styles for rich text rendering and a generator of tags. | TQStyleSheet
Collects tool tips into related groups. | QToolTipGroup
Color groups for each widget state. | QPalette
Colors based on RGB or HSV values. | TQColor
@ -89,7 +89,7 @@ Conversion to and from visually ordered Hebrew. | QHebrewCodec
Converts between numbers and their string representations in various languages. | QLocale
Corner-grip for resizing a top-level window. | QSizeGrip
Creates QScreen objects for Qt/Embedded. | QGfxDriverFactory
Creates QStyle objects. | QStyleFactory
Creates TQStyle objects. | TQStyleFactory
Creates QWSKeyboardHandler objects for Qt/Embedded. | QKbdDriverFactory
Creates QWSMouseHandler objects for Qt/Embedded. | QMouseDriverFactory
Creates and manages data entry forms tied to SQL databases. | TQSqlForm
@ -128,7 +128,7 @@ Encapsulates a key sequence as used by accelerators. | QKeySequence
Encapsulates a set of database field meta data. | TQSqlRecordInfo
Encapsulates an OpenGL rendering context. | QGLContext
Encapsulates the common Look and Feel of a GUI. | QCommonStyle
Encapsulation of a set of text styles. | QStyleSheetItem
Encapsulation of a set of text styles. | TQStyleSheetItem
Enums and static functions relating to accessibility. | QAccessible
Error message display dialog. | QErrorMessage
Event parameters for child object events. | QChildEvent
@ -257,7 +257,7 @@ Namespace for miscellaneous identifiers that need to be global-like. | Qt
Off-screen, pixel-based paint device. | QPixmap
On-screen view of a TQCanvas. | TQCanvasView
One-line text editor. | QLineEdit
Optional parameters for QStyle functions. | QStyleOption
Optional parameters for TQStyle functions. | TQStyleOption
Organizes QButton widgets in a group. | QButtonGroup
Organizes QButton widgets in a group with one horizontal row. | QHButtonGroup
Organizes QButton widgets in a vertical column. | QVButtonGroup
@ -377,7 +377,7 @@ The basis of the Motif Extension. | QMotif
The cell content for QTable cells. | QTableItem
The display format of an OpenGL rendering context. | QGLFormat
The input data for the TQXmlReader subclasses. | TQXmlInputSource
The look and feel of a GUI. | QStyle
The look and feel of a GUI. | TQStyle
The main factory for plugin objects. | QNPlugin
The representation of the DTD in the document tree. | TQDomDocumentType
The structures in a QTabBar. | QTab

@ -504,7 +504,7 @@ Set this property's value with setVisible() and get this property's value with i
.SH "TQString whatsThis"
This property holds the action's "What's This?" help text.
.PP
The whats this text is used to provide a brief description of the action. The text may contain rich text (HTML-like tags -- see QStyleSheet for the list of supported tags). There is no default" What's This" text.
The whats this text is used to provide a brief description of the action. The text may contain rich text (HTML-like tags -- see TQStyleSheet for the list of supported tags). There is no default" What's This" text.
.PP
See also QWhatsThis.
.PP

@ -193,13 +193,13 @@ Inherits TQObject.
.SS "Static Public Members"
.in +1c
.ti -1c
.BI "QStyle & \fBstyle\fR ()"
.BI "TQStyle & \fBstyle\fR ()"
.br
.ti -1c
.BI "void \fBsetStyle\fR ( QStyle * style )"
.BI "void \fBsetStyle\fR ( TQStyle * style )"
.br
.ti -1c
.BI "QStyle * \fBsetStyle\fR ( const TQString & style )"
.BI "TQStyle * \fBsetStyle\fR ( const TQString & style )"
.br
.ti -1c
.BI "int \fBcolorSpec\fR ()"
@ -434,7 +434,7 @@ It performs event handling, meaning that it receives events from the underlying
It parses common command line arguments and sets its internal state accordingly. See the constructor documentation below for more details about this.
.IP
.TP
It defines the application's look and feel, which is encapsulated in a QStyle object. This can be changed at runtime with setStyle().
It defines the application's look and feel, which is encapsulated in a TQStyle object. This can be changed at runtime with setStyle().
.IP
.TP
It specifies how the application is to allocate colors. See setColorSpec() for details.
@ -1084,7 +1084,7 @@ Usually widgets call this automatically when they are polished. It may be used t
.PP
Note that you are not limited to the public functions of TQWidget. Instead, based on meta information like TQObject::className() you are able to customize any kind of widget.
.PP
See also QStyle::polish(), TQWidget::polish(), setPalette(), and setFont().
See also TQStyle::polish(), TQWidget::polish(), setPalette(), and setFont().
.SH "void QApplication::postEvent ( TQObject * receiver, QEvent * event )\fC [static]\fR"
\fBNote:\fR This function is thread-safe when TQt is built withthread support.</p> Adds the event \fIevent\fR with the object \fIreceiver\fR as the receiver of the event, to an event queue and returns immediately.
.PP
@ -1444,9 +1444,9 @@ Changes the default application palette to \fIpalette\fR. If \fIinformWidgets\fR
.PP
If \fIclassName\fR is passed, the change applies only to widgets that inherit \fIclassName\fR (as reported by TQObject::inherits()). If \fIclassName\fR is left 0, the change affects all widgets, thus overriding any previously set class specific palettes.
.PP
The palette may be changed according to the current GUI style in QStyle::polish().
The palette may be changed according to the current GUI style in TQStyle::polish().
.PP
See also TQWidget::palette, palette(), and QStyle::polish().
See also TQWidget::palette, palette(), and TQStyle::polish().
.PP
Examples:
.)l i18n/main.cpp, themes/metal.cpp, themes/themes.cpp, and themes/wood.cpp.
@ -1464,7 +1464,7 @@ See also startDragDistance().
Sets the time after which a drag should start to \fIms\fR ms.
.PP
See also startDragTime().
.SH "void QApplication::setStyle ( QStyle * style )\fC [static]\fR"
.SH "void QApplication::setStyle ( TQStyle * style )\fC [static]\fR"
Sets the application's GUI style to \fIstyle\fR. Ownership of the style object is transferred to QApplication, so QApplication will delete the style object on application exit or when a new style is set.
.PP
Example usage:
@ -1477,19 +1477,19 @@ Example usage:
.PP
When switching application styles, the color palette is set back to the initial colors or the system defaults. This is necessary since certain styles have to adapt the color palette to be fully style-guide compliant.
.PP
See also style(), QStyle, setPalette(), and desktopSettingsAware().
See also style(), TQStyle, setPalette(), and desktopSettingsAware().
.PP
Example: themes/themes.cpp.
.SH "QStyle * QApplication::setStyle ( const TQString & style )\fC [static]\fR"
.SH "TQStyle * QApplication::setStyle ( const TQString & style )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Requests a QStyle object for \fIstyle\fR from the QStyleFactory.
Requests a TQStyle object for \fIstyle\fR from the TQStyleFactory.
.PP
The string must be one of the QStyleFactory::keys(), typically one of "windows", "motif", "cde", "motifplus", "platinum", "sgi" and" compact". Depending on the platform, "windowsxp", "aqua" or" macintosh" may be available.
The string must be one of the TQStyleFactory::keys(), typically one of "windows", "motif", "cde", "motifplus", "platinum", "sgi" and" compact". Depending on the platform, "windowsxp", "aqua" or" macintosh" may be available.
.PP
A later call to the QApplication constructor will override the requested style when a "-style" option is passed in as a commandline parameter.
.PP
Returns 0 if an unknown \fIstyle\fR is passed, otherwise the QStyle object returned is set as the application's GUI style.
Returns 0 if an unknown \fIstyle\fR is passed, otherwise the TQStyle object returned is set as the application's GUI style.
.SH "void QApplication::setWheelScrollLines ( int n )\fC [static]\fR"
Sets the number of lines to scroll when the mouse wheel is rotated to \fIn\fR.
.PP
@ -1536,10 +1536,10 @@ See also setStartDragTime() and startDragDistance().
Returns TRUE if an application object has not been created yet; otherwise returns FALSE.
.PP
See also closingDown().
.SH "QStyle & QApplication::style ()\fC [static]\fR"
.SH "TQStyle & QApplication::style ()\fC [static]\fR"
Returns the application's style object.
.PP
See also setStyle() and QStyle.
See also setStyle() and TQStyle.
.SH "void QApplication::syncX ()\fC [static]\fR"
Synchronizes with the X server in the X11 implementation. This normally takes some time. Does nothing on other platforms.
.PP

@ -27,7 +27,7 @@ The QCDEStyle class provides a CDE look and feel.
.PP
This style provides a slightly improved Motif look similar to some versions of the Common Desktop Environment (CDE). The main differences are thinner frames and more modern radio buttons and checkboxes. Together with a dark background and a bright text/foreground color, the style looks quite attractive (at least for Motif fans).
.PP
Note that the functions provided by QCDEStyle are reimplementations of QStyle functions; see QStyle for their documentation.
Note that the functions provided by QCDEStyle are reimplementations of TQStyle functions; see TQStyle for their documentation.
.PP
See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION

@ -11,7 +11,7 @@ QCommonStyle \- Encapsulates the common Look and Feel of a GUI
.SH SYNOPSIS
\fC#include <ntqcommonstyle.h>\fR
.PP
Inherits QStyle.
Inherits TQStyle.
.PP
Inherited by QMotifStyle and QWindowsStyle.
.PP
@ -26,7 +26,7 @@ The QCommonStyle class encapsulates the common Look and Feel of a GUI.
.PP
This abstract class implements some of the widget's look and feel that is common to all GUI styles provided and shipped as part of Qt.
.PP
All the functions are documented in QStyle.
All the functions are documented in TQStyle.
.PP
See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION

@ -155,7 +155,7 @@ Example #2:
.PP
.nf
.br
TQStringList styleList = QStyleFactory::styles();
TQStringList styleList = TQStyleFactory::styles();
.br
styleList.sort();
.br
@ -196,7 +196,7 @@ Example #2:
}
.br
.fi
In the example we are using the dictionary to provide fast random access to the keys, and we don't care what the values are. The example is used to generate a menu of QStyles, each with a unique accelerator key (or no accelerator if there are no unused letters left).
In the example we are using the dictionary to provide fast random access to the keys, and we don't care what the values are. The example is used to generate a menu of TQStyles, each with a unique accelerator key (or no accelerator if there are no unused letters left).
.PP
We first obtain the list of available styles, then sort them so that the menu items will be ordered alphabetically. Next we create a dictionary of int pointers. The keys in the dictionary are each one character long, representing letters that have been used for accelerators. We iterate through our list of style names. If the first letter of the style name is in the dictionary, i.e. has been used, we iterate over all the characters in the style name to see if we can find a letter that hasn't been used. If we find an unused letter we put the accelerator ampersand (&) in front of it and add that letter to the dictionary. If we can't find an unused letter the style will simply have no accelerator. If the first letter of the style name is not in the dictionary we use it for the accelerator and add it to the dictionary. Finally we create a QAction for each style.
.PP

@ -209,9 +209,9 @@ This enum type defines the shapes of a QFrame's frame.
.TP
\fCQFrame::MShape\fR - internal mask
.PP
When it does not call QStyle, Shape interacts with QFrame::Shadow, the lineWidth() and the midLineWidth() to create the total result. See the picture of the frames in the class description.
When it does not call TQStyle, Shape interacts with QFrame::Shadow, the lineWidth() and the midLineWidth() to create the total result. See the picture of the frames in the class description.
.PP
See also QFrame::Shadow, QFrame::style(), and QStyle::drawPrimitive().
See also QFrame::Shadow, QFrame::style(), and TQStyle::drawPrimitive().
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QFrame::QFrame ( TQWidget * parent = 0, const char * name = 0, WFlags f = 0 )"
Constructs a frame widget with frame style NoFrame and a 1-pixel frame width.

@ -46,15 +46,15 @@ Inherits QWindowsStyle.
.SH DESCRIPTION
The QMacStyle class implements an Appearance Manager style.
.PP
This class is implemented as a wrapper to the Apple Appearance Manager. This allows your application to be styled by whatever theme your Macintosh is using. This is done by having primitives in QStyle implemented in terms of what the Macintosh would normally theme (i.e. the Finder).
This class is implemented as a wrapper to the Apple Appearance Manager. This allows your application to be styled by whatever theme your Macintosh is using. This is done by having primitives in TQStyle implemented in terms of what the Macintosh would normally theme (i.e. the Finder).
.PP
There are additional issues that should be taken into consideration to make an application compatible with the Aqua Style Guidelines. Some of these issues are outlined below.
.IP
.TP
Layout - The restrictions on window layout are such that some aspects of layout that are style-dependent cannot be achieved using QLayout. Changes are being considered (and feedback would be appreciated) to make layouts QStyle-able. Some of the restrictions involve horizontal and vertical widget alignment and widget size (covered below).
Layout - The restrictions on window layout are such that some aspects of layout that are style-dependent cannot be achieved using QLayout. Changes are being considered (and feedback would be appreciated) to make layouts TQStyle-able. Some of the restrictions involve horizontal and vertical widget alignment and widget size (covered below).
.IP
.TP
Widget size - Aqua allows widgets to have specific fixed sizes. TQt does not fully implement this behaviour so as to maintain multiplatform compatibility. As a result some widgets sizes may be inappropriate (and subsequently not rendered correctly by the Appearance Manager).The TQWidget::sizeHint() will return the appropriate size for many managed widgets (widgets enumerated in QStyle::ContentsType).
Widget size - Aqua allows widgets to have specific fixed sizes. TQt does not fully implement this behaviour so as to maintain multiplatform compatibility. As a result some widgets sizes may be inappropriate (and subsequently not rendered correctly by the Appearance Manager).The TQWidget::sizeHint() will return the appropriate size for many managed widgets (widgets enumerated in TQStyle::ContentsType).
.IP
.TP
Effects - QMacStyle (in contrast to QAquaStyle) is not emulating (except where Appearance Manager does not provide certain capabilities), for example QPushButton pulsing effects. In this case a near matching emulation has been implemented, but naturally this will not be identical to the similar functionality built into the Appearance Manager. Please report any issues you see in effects or non-standard widgets.
@ -62,7 +62,7 @@ Effects - QMacStyle (in contrast to QAquaStyle) is not emulating (except where A
.PP
There are other issues that need to be considered in the feel of your application (including the general color scheme to match the Aqua colors). The Guidelines mentioned above will remain current with new advances and design suggestions for Mac OS X.
.PP
Note that the functions provided by QMacStyle are reimplementations of QStyle functions; see QStyle for their documentation.
Note that the functions provided by QMacStyle are reimplementations of TQStyle functions; see TQStyle for their documentation.
.PP
See also Widget Appearance and Style.
.SS "Member Type Documentation"

@ -214,7 +214,7 @@ warning() can be used to tell the user about unusual errors, or errors which can
.br
.fi
.PP
The text part of all message box messages can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. See QStyleSheet::defaultSheet() for details. With certain strings that contain XML meta characters, the auto-rich text detection may fail, interpreting plain text incorrectly as rich text. In these rare cases, use QStyleSheet::convertFromPlainText() to convert your plain text string to a visually equivalent rich text string or set the text format explicitly with setTextFormat().
The text part of all message box messages can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. See TQStyleSheet::defaultSheet() for details. With certain strings that contain XML meta characters, the auto-rich text detection may fail, interpreting plain text incorrectly as rich text. In these rare cases, use TQStyleSheet::convertFromPlainText() to convert your plain text string to a visually equivalent rich text string or set the text format explicitly with setTextFormat().
.PP
Note that the Microsoft Windows User Interface Guidelines recommend using the application name as the window's caption.
.PP

@ -43,7 +43,7 @@ If \fIarg\fR is FALSE, the style will polish the application's color palette to
.PP
The effect will show up the next time an application palette is set via QApplication::setPalette(). The current color palette of the application remains unchanged.
.PP
See also QStyle::polish().
See also TQStyle::polish().
.SH "bool QMotifStyle::useHighlightColors () const"
Returns TRUE if the style treats the highlight colors of the
palette in a Motif-like manner, which is a simple inversion

@ -15,7 +15,7 @@ All the functions in this class are reentrant when TQt is built with thread supp
.PP
Inherits Qt.
.PP
Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient, QDataPump, QAxObject, QAxScript, QAxScriptManager, TQWidget, TQCanvas, QStyle, QClipboard, QCopChannel, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QWSKeyboardHandler, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, QStyleSheet, QTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
Inherited by QAccel, QAccessibleObject, QAction, QApplication, QAssistantClient, QDataPump, QAxObject, QAxScript, QAxScriptManager, TQWidget, TQCanvas, TQStyle, QClipboard, QCopChannel, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QWSKeyboardHandler, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, QSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, QTimer, QToolTipGroup, QTranslator, QUrlOperator, and QValidator.
.PP
.SS "Public Members"
.in +1c

@ -1587,9 +1587,9 @@ The rectangle's interior is filled with the \fIfill\fR brush unless \fIfill\fR i
.PP
If you want to use a QFrame widget instead, you can make it display a plain rectangle, for example \fCQFrame::setFrameStyle( QFrame::Box | QFrame::Plain )\fR.
.PP
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in QStyle to make widgets that follow the current GUI style.
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in TQStyle to make widgets that follow the current GUI style.
.PP
See also qDrawShadeRect() and QStyle::drawPrimitive().
See also qDrawShadeRect() and TQStyle::drawPrimitive().
.SH "void qDrawShadeLine ( QPainter * p, int x1, int y1, int x2, int y2, const QColorGroup & g, bool sunken, int lineWidth, int midLineWidth )"
\fC#include <ntqdrawutil.h>\fR
.PP
@ -1607,9 +1607,9 @@ The \fImidLineWidth\fR argument specifies the width of a middle line drawn in th
.PP
If you want to use a QFrame widget instead, you can make it display a shaded line, for example \fCQFrame::setFrameStyle( QFrame::HLine | QFrame::Sunken )\fR.
.PP
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in QStyle to make widgets that follow the current GUI style.
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in TQStyle to make widgets that follow the current GUI style.
.PP
See also qDrawShadeRect(), qDrawShadePanel(), and QStyle::drawPrimitive().
See also qDrawShadeRect(), qDrawShadePanel(), and TQStyle::drawPrimitive().
.SH "void qDrawShadePanel ( QPainter * p, int x, int y, int w, int h, const QColorGroup & g, bool sunken, int lineWidth, const QBrush * fill )"
\fC#include <ntqdrawutil.h>\fR
.PP
@ -1625,9 +1625,9 @@ The panel's interior is filled with the \fIfill\fR brush unless \fIfill\fR is 0.
.PP
If you want to use a QFrame widget instead, you can make it display a shaded panel, for example \fCQFrame::setFrameStyle( QFrame::Panel | QFrame::Sunken )\fR.
.PP
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in QStyle to make widgets that follow the current GUI style.
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in TQStyle to make widgets that follow the current GUI style.
.PP
See also qDrawWinPanel(), qDrawShadeLine(), qDrawShadeRect(), and QStyle::drawPrimitive().
See also qDrawWinPanel(), qDrawShadeLine(), qDrawShadeRect(), and TQStyle::drawPrimitive().
.SH "void qDrawShadeRect ( QPainter * p, int x, int y, int w, int h, const QColorGroup & g, bool sunken, int lineWidth, int midLineWidth, const QBrush * fill )"
\fC#include <ntqdrawutil.h>\fR
.PP
@ -1645,9 +1645,9 @@ The rectangle's interior is filled with the \fIfill\fR brush unless \fIfill\fR i
.PP
If you want to use a QFrame widget instead, you can make it display a shaded rectangle, for example \fCQFrame::setFrameStyle( QFrame::Box | QFrame::Raised )\fR.
.PP
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in QStyle to make widgets that follow the current GUI style.
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in TQStyle to make widgets that follow the current GUI style.
.PP
See also qDrawShadeLine(), qDrawShadePanel(), qDrawPlainRect(), QStyle::drawItem(), QStyle::drawControl(), and QStyle::drawComplexControl().
See also qDrawShadeLine(), qDrawShadePanel(), qDrawPlainRect(), TQStyle::drawItem(), TQStyle::drawControl(), and TQStyle::drawComplexControl().
.SH "void qDrawWinButton ( QPainter * p, int x, int y, int w, int h, const QColorGroup & g, bool sunken, const QBrush * fill )"
\fC#include <ntqdrawutil.h>\fR
.PP
@ -1661,9 +1661,9 @@ The line width is 2 pixels.
.PP
The button's interior is filled with the \fI*fill\fR brush unless \fIfill\fR is 0.
.PP
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in QStyle to make widgets that follow the current GUI style.
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in TQStyle to make widgets that follow the current GUI style.
.PP
See also qDrawWinPanel() and QStyle::drawControl().
See also qDrawWinPanel() and TQStyle::drawControl().
.SH "void qDrawWinPanel ( QPainter * p, int x, int y, int w, int h, const QColorGroup & g, bool sunken, const QBrush * fill )"
\fC#include <ntqdrawutil.h>\fR
.PP
@ -1679,9 +1679,9 @@ The button's interior is filled with the \fIfill\fR brush unless \fIfill\fR is 0
.PP
If you want to use a QFrame widget instead, you can make it display a shaded panel, for example \fCQFrame::setFrameStyle( QFrame::WinPanel | QFrame::Raised )\fR.
.PP
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in QStyle to make widgets that follow the current GUI style.
\fBWarning:\fR This function does not look at TQWidget::style() or QApplication::style(). Use the drawing functions in TQStyle to make widgets that follow the current GUI style.
.PP
See also qDrawShadePanel(), qDrawWinButton(), and QStyle::drawPrimitive().
See also qDrawShadePanel(), qDrawWinButton(), and TQStyle::drawPrimitive().
.SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqpainter.html

@ -31,7 +31,7 @@ Inherits QWindowsStyle.
.SH DESCRIPTION
The QPlatinumStyle class provides Mac/Platinum look and feel.
.PP
This class implements the Platinum look and feel. It's an experimental class that tries to resemble a Macinosh-like GUI style with the QStyle system. The emulation is currently far from perfect.
This class implements the Platinum look and feel. It's an experimental class that tries to resemble a Macinosh-like GUI style with the TQStyle system. The emulation is currently far from perfect.
.PP
See also QAquaStyle and Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION

@ -335,7 +335,7 @@ Reimplemented from QFrame.
.SH "void QPopupMenu::drawItem ( QPainter * p, int tab_, QMenuItem * mi, bool act, int x, int y, int w, int h )\fC [protected]\fR"
Draws menu item \fImi\fR in the area \fIx\fR, \fIy\fR, \fIw\fR, \fIh\fR, using painter \fIp\fR. The item is drawn active if \fIact\fR is TRUE or drawn inactive if \fIact\fR is FALSE. The rightmost \fItab_\fR pixels are used for accelerator text.
.PP
See also QStyle::drawControl().
See also TQStyle::drawControl().
.SH "int QPopupMenu::exec ()"
Executes this popup synchronously.
.PP

@ -25,7 +25,7 @@ Inherits QMotifStyle.
.SH DESCRIPTION
The QSGIStyle class provides SGI/Irix look and feel.
.PP
This class implements the SGI look and feel. It resembles the SGI/Irix Motif GUI style as closely as QStyle allows.
This class implements the SGI look and feel. It resembles the SGI/Irix Motif GUI style as closely as TQStyle allows.
.PP
See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION

@ -14,10 +14,10 @@ QSimpleRichText \- Small displayable piece of rich text
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const QStyleSheet * sheet = 0 )"
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )"
.br
.ti -1c
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context, const QStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
.br
.ti -1c
.BI "\fB~QSimpleRichText\fR ()"
@ -62,7 +62,7 @@ QSimpleRichText \- Small displayable piece of rich text
.SH DESCRIPTION
The QSimpleRichText class provides a small displayable piece of rich text.
.PP
This class encapsulates simple rich text usage in which a string is interpreted as rich text and can be drawn. This is particularly useful if you want to display some rich text in a custom widget. A QStyleSheet is needed to interpret the tags and format the rich text. TQt provides a default HTML-like style sheet, but you may define custom style sheets.
This class encapsulates simple rich text usage in which a string is interpreted as rich text and can be drawn. This is particularly useful if you want to display some rich text in a custom widget. A TQStyleSheet is needed to interpret the tags and format the rich text. TQt provides a default HTML-like style sheet, but you may define custom style sheets.
.PP
Once created, the rich text object can be queried for its width(), height(), and the actual width used (see widthUsed()). Most importantly, it can be drawn on any given QPainter with draw(). QSimpleRichText can also be used to implement hypertext or active text facilities by using anchorAt(). A hit test through inText() makes it possible to use simple rich text for text objects in editable drawing canvases.
.PP
@ -74,7 +74,7 @@ If you are using QSimpleRichText to print in high resolution you should call set
.PP
See also Text Related Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const QStyleSheet * sheet = 0 )"
.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )"
Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR.
.PP
The font is used as a basis for the text rendering. When using rich text rendering on a widget \fIw\fR, you would normally specify the widget's font, for example:
@ -87,15 +87,15 @@ The font is used as a basis for the text rendering. When using rich text renderi
.PP
\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details.
.PP
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see QStyleSheet::defaultSheet()).
.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context, const QStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()).
.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR.
.PP
This is a slightly more complex constructor for QSimpleRichText that takes an additional mime source factory \fIfactory\fR, a page break parameter \fIpageBreak\fR and a bool \fIlinkUnderline\fR. \fIlinkColor\fR is only provided for compatibility, but has no effect, as QColorGroup's QColorGroup::link() color is used now.
.PP
\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details.
.PP
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see QStyleSheet::defaultSheet()).
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()).
.PP
This constructor is useful for creating a QSimpleRichText object suitable for printing. Set \fIpageBreak\fR to be the height of the contents area of the pages.
.SH "QSimpleRichText::~QSimpleRichText ()"

@ -191,7 +191,7 @@ Returns TRUE if child widgets can be resized down to size 0 by the user; otherwi
.PP
Draws the splitter handle in the rectangle described by \fIx\fR, \fIy\fR, \fIw\fR, \fIh\fR using painter \fIp\fR.
.PP
See also QStyle::drawPrimitive().
See also TQStyle::drawPrimitive().
.SH "void QSplitter::getRange ( int id, int * min, int * max )\fC [protected]\fR"
Returns the valid range of the splitter with ID \fIid\fR in \fI*min\fR and \fI*max\fR if \fImin\fR and \fImax\fR are not 0.
.PP

File diff suppressed because it is too large Load Diff

@ -1,5 +1,5 @@
'\" t
.TH QStyleFactory 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.TH TQStyleFactory 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@ -7,28 +7,28 @@
.ad l
.nh
.SH NAME
QStyleFactory \- Creates QStyle objects
TQStyleFactory \- Creates TQStyle objects
.SH SYNOPSIS
\fC#include <ntqstylefactory.h>\fR
\fC#include <tqstylefactory.h>\fR
.PP
.SS "Static Public Members"
<li class=fn>TQStringList \fBkeys\fR () <li class=fn>QStyle * \fBcreate\fR ( const TQString & key )
<li class=fn>TQStringList \fBkeys\fR () <li class=fn>TQStyle * \fBcreate\fR ( const TQString & key )
.SH DESCRIPTION
The QStyleFactory class creates QStyle objects.
The TQStyleFactory class creates TQStyle objects.
.PP
The style factory creates a QStyle object for a given key with QStyleFactory::create(key).
The style factory creates a TQStyle object for a given key with TQStyleFactory::create(key).
.PP
The styles are either built-in or dynamically loaded from a style plugin (see QStylePlugin).
The styles are either built-in or dynamically loaded from a style plugin (see TQStylePlugin).
.PP
QStyleFactory::keys() returns a list of valid keys, typically including "Windows", "Motif", "CDE", "MotifPlus", "Platinum"," SGI" and "Compact". Depending on the platform, "WindowsXP"," Aqua" or "Macintosh" may be available.
TQStyleFactory::keys() returns a list of valid keys, typically including "Windows", "Motif", "CDE", "MotifPlus", "Platinum"," SGI" and "Compact". Depending on the platform, "WindowsXP"," Aqua" or "Macintosh" may be available.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QStyle * QStyleFactory::create ( const TQString & key )\fC [static]\fR"
Creates a QStyle object that matches \fIkey\fR case-insensitively. This is either a built-in style, or a style from a style plugin.
.SH "TQStyle * TQStyleFactory::create ( const TQString & key )\fC [static]\fR"
Creates a TQStyle object that matches \fIkey\fR case-insensitively. This is either a built-in style, or a style from a style plugin.
.PP
See also keys().
.PP
Example: themes/wood.cpp.
.SH "TQStringList QStyleFactory::keys ()\fC [static]\fR"
.SH "TQStringList TQStyleFactory::keys ()\fC [static]\fR"
Returns the list of keys this factory can create styles for.
.PP
See also create().
@ -36,7 +36,7 @@ See also create().
Example: themes/themes.cpp.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqstylefactory.html
.BR http://doc.trolltech.com/tqstylefactory.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t
.TH QStyleOption 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.TH TQStyleOption 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@ -7,9 +7,9 @@
.ad l
.nh
.SH NAME
QStyleOption \- Optional parameters for QStyle functions
TQStyleOption \- Optional parameters for TQStyle functions
.SH SYNOPSIS
\fC#include <ntqstyle.h>\fR
\fC#include <tqstyle.h>\fR
.PP
.SS "Public Members"
.in +1c
@ -17,46 +17,46 @@ QStyleOption \- Optional parameters for QStyle functions
.BI "enum \fBStyleOptionDefault\fR { Default }"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( StyleOptionDefault = Default )"
.BI "\fBTQStyleOption\fR ( StyleOptionDefault = Default )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( int in1 )"
.BI "\fBTQStyleOption\fR ( int in1 )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( int in1, int in2 )"
.BI "\fBTQStyleOption\fR ( int in1, int in2 )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( int in1, int in2, int in3, int in4 )"
.BI "\fBTQStyleOption\fR ( int in1, int in2, int in3, int in4 )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( QMenuItem * m )"
.BI "\fBTQStyleOption\fR ( QMenuItem * m )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( QMenuItem * m, int in1 )"
.BI "\fBTQStyleOption\fR ( QMenuItem * m, int in1 )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( QMenuItem * m, int in1, int in2 )"
.BI "\fBTQStyleOption\fR ( QMenuItem * m, int in1, int in2 )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( const TQColor & c )"
.BI "\fBTQStyleOption\fR ( const TQColor & c )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( QTab * t )"
.BI "\fBTQStyleOption\fR ( QTab * t )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( QListViewItem * i )"
.BI "\fBTQStyleOption\fR ( QListViewItem * i )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( QCheckListItem * i )"
.BI "\fBTQStyleOption\fR ( QCheckListItem * i )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( TQt::ArrowType a )"
.BI "\fBTQStyleOption\fR ( TQt::ArrowType a )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( const QRect & r )"
.BI "\fBTQStyleOption\fR ( const QRect & r )"
.br
.ti -1c
.BI "\fBQStyleOption\fR ( TQWidget * w )"
.BI "\fBTQStyleOption\fR ( TQWidget * w )"
.br
.ti -1c
.BI "bool \fBisDefault\fR () const"
@ -111,93 +111,93 @@ QStyleOption \- Optional parameters for QStyle functions
.br
.in -1c
.SH DESCRIPTION
The QStyleOption class specifies optional parameters for QStyle functions.
The TQStyleOption class specifies optional parameters for TQStyle functions.
.PP
Some QStyle functions take an optional argument specifying extra information that is required for a paritical primitive or control. So that the QStyle class can be extended, QStyleOption is used to provide a variable-argument for these options.
Some TQStyle functions take an optional argument specifying extra information that is required for a paritical primitive or control. So that the TQStyle class can be extended, TQStyleOption is used to provide a variable-argument for these options.
.PP
The QStyleOption class has constructors for each type of optional argument, and this set of constructors may be extended in future TQt releases. There are also corresponding access functions that return the optional arguments: these too may be extended.
The TQStyleOption class has constructors for each type of optional argument, and this set of constructors may be extended in future TQt releases. There are also corresponding access functions that return the optional arguments: these too may be extended.
.PP
For each constructor, you should refer to the documentation of the QStyle functions to see the meaning of the arguments.
For each constructor, you should refer to the documentation of the TQStyle functions to see the meaning of the arguments.
.PP
When calling QStyle functions from your own widgets, you must only pass the default QStyleOption or the argument that QStyle is documented to accept. For example, if the function expects QStyleOption(QMenuItem *, int), passing QStyleOption(QMenuItem *) leaves the optional integer argument uninitialized.
When calling TQStyle functions from your own widgets, you must only pass the default TQStyleOption or the argument that TQStyle is documented to accept. For example, if the function expects TQStyleOption(QMenuItem *, int), passing TQStyleOption(QMenuItem *) leaves the optional integer argument uninitialized.
.PP
When subclassing QStyle, you must similarly only expect the default or documented arguments. The other arguments will have uninitialized values.
When subclassing TQStyle, you must similarly only expect the default or documented arguments. The other arguments will have uninitialized values.
.PP
If you make your own QStyle subclasses and your own widgets, you can make a subclass of QStyleOption to pass additional arguments to your QStyle subclass. You will need to cast the "const QStyleOption&" argument to your subclass, so be sure your style has been called from your widget.
If you make your own TQStyle subclasses and your own widgets, you can make a subclass of TQStyleOption to pass additional arguments to your TQStyle subclass. You will need to cast the "const TQStyleOption&" argument to your subclass, so be sure your style has been called from your widget.
.PP
See also Widget Appearance and Style.
.SS "Member Type Documentation"
.SH "QStyleOption::StyleOptionDefault"
This enum value can be passed as the optional argument to any QStyle function.
.SH "TQStyleOption::StyleOptionDefault"
This enum value can be passed as the optional argument to any TQStyle function.
.TP
\fCQStyleOption::Default\fR
\fCTQStyleOption::Default\fR
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QStyleOption::QStyleOption ( StyleOptionDefault = Default )"
The default option. This can always be passed as the optional argument to QStyle functions.
.SH "QStyleOption::QStyleOption ( int in1 )"
.SH "TQStyleOption::TQStyleOption ( StyleOptionDefault = Default )"
The default option. This can always be passed as the optional argument to TQStyle functions.
.SH "TQStyleOption::TQStyleOption ( int in1 )"
Pass one integer, \fIin1\fR. For example, headerSection.
.SH "QStyleOption::QStyleOption ( int in1, int in2 )"
.SH "TQStyleOption::TQStyleOption ( int in1, int in2 )"
Pass two integers, \fIin1\fR and \fIin2\fR. For example, linewidth and midlinewidth.
.SH "QStyleOption::QStyleOption ( int in1, int in2, int in3, int in4 )"
.SH "TQStyleOption::TQStyleOption ( int in1, int in2, int in3, int in4 )"
Pass four integers, \fIin1\fR, \fIin2\fR, \fIin3\fR and \fIin4\fR.
.SH "QStyleOption::QStyleOption ( QMenuItem * m )"
.SH "TQStyleOption::TQStyleOption ( QMenuItem * m )"
Pass a menu item, \fIm\fR.
.SH "QStyleOption::QStyleOption ( QMenuItem * m, int in1 )"
.SH "TQStyleOption::TQStyleOption ( QMenuItem * m, int in1 )"
Pass a menu item and an integer, \fIm\fR and \fIin1\fR.
.SH "QStyleOption::QStyleOption ( QMenuItem * m, int in1, int in2 )"
.SH "TQStyleOption::TQStyleOption ( QMenuItem * m, int in1, int in2 )"
Pass a menu item and two integers, \fIm\fR, \fIin1\fR and \fIin2\fR.
.SH "QStyleOption::QStyleOption ( const TQColor & c )"
.SH "TQStyleOption::TQStyleOption ( const TQColor & c )"
Pass a color, \fIc\fR.
.SH "QStyleOption::QStyleOption ( QTab * t )"
.SH "TQStyleOption::TQStyleOption ( QTab * t )"
Pass a QTab, \fIt\fR.
.SH "QStyleOption::QStyleOption ( QListViewItem * i )"
.SH "TQStyleOption::TQStyleOption ( QListViewItem * i )"
Pass a QListViewItem, \fIi\fR.
.SH "QStyleOption::QStyleOption ( QCheckListItem * i )"
.SH "TQStyleOption::TQStyleOption ( QCheckListItem * i )"
Pass a QCheckListItem, \fIi\fR.
.SH "QStyleOption::QStyleOption ( TQt::ArrowType a )"
.SH "TQStyleOption::TQStyleOption ( TQt::ArrowType a )"
Pass an TQt::ArrowType, \fIa\fR.
.SH "QStyleOption::QStyleOption ( const QRect & r )"
.SH "TQStyleOption::TQStyleOption ( const QRect & r )"
Pass a QRect, \fIr\fR.
.SH "QStyleOption::QStyleOption ( TQWidget * w )"
.SH "TQStyleOption::TQStyleOption ( TQWidget * w )"
Pass a TQWidget, \fIw\fR.
.SH "TQt::ArrowType QStyleOption::arrowType () const"
.SH "TQt::ArrowType TQStyleOption::arrowType () const"
Returns an arrow type if the appropriate constructor was called; otherwise the return value is undefined.
.SH "QCheckListItem * QStyleOption::checkListItem () const"
.SH "QCheckListItem * TQStyleOption::checkListItem () const"
Returns a check list item if the appropriate constructor was called; otherwise the return value is undefined.
.SH "const TQColor & QStyleOption::color () const"
.SH "const TQColor & TQStyleOption::color () const"
Returns a color if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::day () const"
.SH "int TQStyleOption::day () const"
Returns the index of the day in the month if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::frameShadow () const"
.SH "int TQStyleOption::frameShadow () const"
Returns a QFrame::Shadow value if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::frameShape () const"
.SH "int TQStyleOption::frameShape () const"
Returns a QFrame::Shape value if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::headerSection () const"
.SH "int TQStyleOption::headerSection () const"
Returns the header section if the appropriate constructor was called; otherwise the return value is undefined.
.SH "bool QStyleOption::isDefault () const"
.SH "bool TQStyleOption::isDefault () const"
Returns TRUE if the option was constructed with the default constructor; otherwise returns FALSE.
.SH "int QStyleOption::lineWidth () const"
.SH "int TQStyleOption::lineWidth () const"
Returns the line width if the appropriate constructor was called; otherwise the return value is undefined.
.SH "QListViewItem * QStyleOption::listViewItem () const"
.SH "QListViewItem * TQStyleOption::listViewItem () const"
Returns a QListView item if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::maxIconWidth () const"
.SH "int TQStyleOption::maxIconWidth () const"
Returns the maximum width of the menu item check area if the appropriate constructor was called; otherwise the return value is undefined.
.SH "QMenuItem * QStyleOption::menuItem () const"
.SH "QMenuItem * TQStyleOption::menuItem () const"
Returns a menu item if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::midLineWidth () const"
.SH "int TQStyleOption::midLineWidth () const"
Returns the mid-line width if the appropriate constructor was called; otherwise the return value is undefined.
.SH "QRect QStyleOption::rect () const"
.SH "QRect TQStyleOption::rect () const"
Returns a rectangle if the appropriate constructor was called; otherwise the return value is undefined.
.SH "QTab * QStyleOption::tab () const"
.SH "QTab * TQStyleOption::tab () const"
Returns a QTabBar tab if the appropriate constructor was called; otherwise the return value is undefined.
.SH "int QStyleOption::tabWidth () const"
.SH "int TQStyleOption::tabWidth () const"
Returns the tab indent width if the appropriate constructor was called; otherwise the return value is undefined.
.SH "TQWidget * QStyleOption::widget () const"
.SH "TQWidget * TQStyleOption::widget () const"
Returns a pointer to a widget if the appropriate constructor was called;
otherwise the return value is undefined.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qstyleoption.html
.BR http://doc.trolltech.com/tqstyleoption.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t
.TH QStylePlugin 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.TH TQStylePlugin 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@ -7,45 +7,45 @@
.ad l
.nh
.SH NAME
QStylePlugin \- Abstract base for custom QStyle plugins
TQStylePlugin \- Abstract base for custom TQStyle plugins
.SH SYNOPSIS
\fC#include <ntqstyleplugin.h>\fR
\fC#include <tqstyleplugin.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQStylePlugin\fR ()"
.BI "\fBTQStylePlugin\fR ()"
.br
.ti -1c
.BI "\fB~QStylePlugin\fR ()"
.BI "\fB~TQStylePlugin\fR ()"
.br
.ti -1c
.BI "virtual TQStringList \fBkeys\fR () const = 0"
.br
.ti -1c
.BI "virtual QStyle * \fBcreate\fR ( const TQString & key ) = 0"
.BI "virtual TQStyle * \fBcreate\fR ( const TQString & key ) = 0"
.br
.in -1c
.SH DESCRIPTION
The QStylePlugin class provides an abstract base for custom QStyle plugins.
The TQStylePlugin class provides an abstract base for custom TQStyle plugins.
.PP
The style plugin is a simple plugin interface that makes it easy to create custom styles that can be loaded dynamically into applications with a QStyleFactory.
The style plugin is a simple plugin interface that makes it easy to create custom styles that can be loaded dynamically into applications with a TQStyleFactory.
.PP
Writing a style plugin is achieved by subclassing this base class, reimplementing the pure virtual functions keys() and create(), and exporting the class with the \fCQ_EXPORT_PLUGIN\fR macro. See the plugins documentation for an example.
.PP
See also Plugins.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QStylePlugin::QStylePlugin ()"
.SH "TQStylePlugin::TQStylePlugin ()"
Constructs a style plugin. This is invoked automatically by the \fCQ_EXPORT_PLUGIN\fR macro.
.SH "QStylePlugin::~QStylePlugin ()"
.SH "TQStylePlugin::~TQStylePlugin ()"
Destroys the style plugin.
.PP
You never have to call this explicitly. TQt destroys a plugin automatically when it is no longer used.
.SH "QStyle * QStylePlugin::create ( const TQString & key )\fC [pure virtual]\fR"
Creates and returns a QStyle object for the style key \fIkey\fR. The style key is usually the class name of the required style.
.SH "TQStyle * TQStylePlugin::create ( const TQString & key )\fC [pure virtual]\fR"
Creates and returns a TQStyle object for the style key \fIkey\fR. The style key is usually the class name of the required style.
.PP
See also keys().
.SH "TQStringList QStylePlugin::keys () const\fC [pure virtual]\fR"
.SH "TQStringList TQStylePlugin::keys () const\fC [pure virtual]\fR"
Returns the list of style keys this plugin supports.
.PP
These keys are usually the class names of the custom styles that are implemented in the plugin.
@ -53,7 +53,7 @@ These keys are usually the class names of the custom styles that are implemented
See also create().
.SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqstyleplugin.html
.BR http://doc.trolltech.com/tqstyleplugin.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t
.TH QStyleSheet 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.TH TQStyleSheet 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@ -7,25 +7,25 @@
.ad l
.nh
.SH NAME
QStyleSheet \- Collection of styles for rich text rendering and a generator of tags
TQStyleSheet \- Collection of styles for rich text rendering and a generator of tags
.SH SYNOPSIS
\fC#include <ntqstylesheet.h>\fR
\fC#include <tqstylesheet.h>\fR
.PP
Inherits TQObject.
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQStyleSheet\fR ( TQObject * parent = 0, const char * name = 0 )"
.BI "\fBTQStyleSheet\fR ( TQObject * parent = 0, const char * name = 0 )"
.br
.ti -1c
.BI "virtual \fB~QStyleSheet\fR ()"
.BI "virtual \fB~TQStyleSheet\fR ()"
.br
.ti -1c
.BI "QStyleSheetItem * \fBitem\fR ( const TQString & name )"
.BI "TQStyleSheetItem * \fBitem\fR ( const TQString & name )"
.br
.ti -1c
.BI "const QStyleSheetItem * \fBitem\fR ( const TQString & name ) const"
.BI "const TQStyleSheetItem * \fBitem\fR ( const TQString & name ) const"
.br
.ti -1c
.BI "virtual TQTextCustomItem * \fBtag\fR ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const"
@ -40,27 +40,27 @@ Inherits TQObject.
.SS "Static Public Members"
.in +1c
.ti -1c
.BI "QStyleSheet * \fBdefaultSheet\fR ()"
.BI "TQStyleSheet * \fBdefaultSheet\fR ()"
.br
.ti -1c
.BI "void \fBsetDefaultSheet\fR ( QStyleSheet * sheet )"
.BI "void \fBsetDefaultSheet\fR ( TQStyleSheet * sheet )"
.br
.ti -1c
.BI "TQString \fBescape\fR ( const TQString & plain )"
.br
.ti -1c
.BI "TQString \fBconvertFromPlainText\fR ( const TQString & plain, QStyleSheetItem::WhiteSpaceMode mode = QStyleSheetItem::WhiteSpacePre )"
.BI "TQString \fBconvertFromPlainText\fR ( const TQString & plain, TQStyleSheetItem::WhiteSpaceMode mode = TQStyleSheetItem::WhiteSpacePre )"
.br
.ti -1c
.BI "bool \fBmightBeRichText\fR ( const TQString & text )"
.br
.in -1c
.SH DESCRIPTION
The QStyleSheet class is a collection of styles for rich text rendering and a generator of tags.
The TQStyleSheet class is a collection of styles for rich text rendering and a generator of tags.
.PP
By creating QStyleSheetItem objects for a style sheet you build a definition of a set of tags. This definition will be used by the internal rich text rendering system to parse and display text documents to which the style sheet applies. Rich text is normally visualized in a TQTextEdit or a TQTextBrowser. However, QLabel, QWhatsThis and QMessageBox also support it, and other classes are likely to follow. With QSimpleRichText it is possible to use the rich text renderer for custom widgets as well.
By creating TQStyleSheetItem objects for a style sheet you build a definition of a set of tags. This definition will be used by the internal rich text rendering system to parse and display text documents to which the style sheet applies. Rich text is normally visualized in a TQTextEdit or a TQTextBrowser. However, QLabel, QWhatsThis and QMessageBox also support it, and other classes are likely to follow. With QSimpleRichText it is possible to use the rich text renderer for custom widgets as well.
.PP
The default QStyleSheet object has the following style bindings, sorted by structuring bindings, anchors, character style bindings (i.e. inline styles), special elements such as horizontal lines or images, and other tags. In addition, rich text supports simple HTML tables.
The default TQStyleSheet object has the following style bindings, sorted by structuring bindings, anchors, character style bindings (i.e. inline styles), special elements such as horizontal lines or images, and other tags. In addition, rich text supports simple HTML tables.
.PP
The structuring tags are <center>.nf
.TS
@ -136,58 +136,58 @@ A table row. This is only valid within a A table header cell. Similar to A table
.PP
See also Graphics Classes, Help System, and Text Related Classes.
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QStyleSheet::QStyleSheet ( TQObject * parent = 0, const char * name = 0 )"
.SH "TQStyleSheet::TQStyleSheet ( TQObject * parent = 0, const char * name = 0 )"
Creates a style sheet called \fIname\fR, with parent \fIparent\fR. Like any TQObject it will be deleted when its parent is destroyed (if the child still exists).
.PP
By default the style sheet has the tag definitions defined above.
.SH "QStyleSheet::~QStyleSheet ()\fC [virtual]\fR"
.SH "TQStyleSheet::~TQStyleSheet ()\fC [virtual]\fR"
Destroys the style sheet. All styles inserted into the style sheet will be deleted.
.SH "TQString QStyleSheet::convertFromPlainText ( const TQString & plain, QStyleSheetItem::WhiteSpaceMode mode = QStyleSheetItem::WhiteSpacePre )\fC [static]\fR"
.SH "TQString TQStyleSheet::convertFromPlainText ( const TQString & plain, TQStyleSheetItem::WhiteSpaceMode mode = TQStyleSheetItem::WhiteSpacePre )\fC [static]\fR"
Auxiliary function. Converts the plain text string \fIplain\fR to a rich text formatted paragraph while preserving most of its look.
.PP
\fImode\fR defines the whitespace mode. Possible values are QStyleSheetItem::WhiteSpacePre (no wrapping, all whitespaces preserved) and QStyleSheetItem::WhiteSpaceNormal (wrapping, simplified whitespaces).
\fImode\fR defines the whitespace mode. Possible values are TQStyleSheetItem::WhiteSpacePre (no wrapping, all whitespaces preserved) and TQStyleSheetItem::WhiteSpaceNormal (wrapping, simplified whitespaces).
.PP
See also escape().
.PP
Examples:
.)l action/application.cpp, application/application.cpp, and mdi/application.cpp.
.SH "QStyleSheet * QStyleSheet::defaultSheet ()\fC [static]\fR"
.SH "TQStyleSheet * TQStyleSheet::defaultSheet ()\fC [static]\fR"
Returns the application-wide default style sheet. This style sheet is used by rich text rendering classes such as QSimpleRichText, QWhatsThis and QMessageBox to define the rendering style and available tags within rich text documents. It also serves as the initial style sheet for the more complex render widgets, TQTextEdit and TQTextBrowser.
.PP
See also setDefaultSheet().
.SH "void QStyleSheet::error ( const TQString & msg ) const\fC [virtual]\fR"
.SH "void TQStyleSheet::error ( const TQString & msg ) const\fC [virtual]\fR"
This virtual function is called when an error occurs when processing rich text. Reimplement it if you need to catch error messages.
.PP
Errors might occur if some rich text strings contain tags that are not understood by the stylesheet, if some tags are nested incorrectly, or if tags are not closed properly.
.PP
\fImsg\fR is the error message.
.SH "TQString QStyleSheet::escape ( const TQString & plain )\fC [static]\fR"
.SH "TQString TQStyleSheet::escape ( const TQString & plain )\fC [static]\fR"
Auxiliary function. Converts the plain text string \fIplain\fR to a rich text formatted string with any HTML meta-characters escaped.
.PP
See also convertFromPlainText().
.SH "QStyleSheetItem * QStyleSheet::item ( const TQString & name )"
.SH "TQStyleSheetItem * TQStyleSheet::item ( const TQString & name )"
Returns the style called \fIname\fR or 0 if there is no such style.
.SH "const QStyleSheetItem * QStyleSheet::item ( const TQString & name ) const"
.SH "const TQStyleSheetItem * TQStyleSheet::item ( const TQString & name ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the style called \fIname\fR or 0 if there is no such style (const version)
.SH "bool QStyleSheet::mightBeRichText ( const TQString & text )\fC [static]\fR"
.SH "bool TQStyleSheet::mightBeRichText ( const TQString & text )\fC [static]\fR"
Returns TRUE if the string \fItext\fR is likely to be rich text; otherwise returns FALSE.
.PP
This function uses a fast and therefore simple heuristic. It mainly checks whether there is something that looks like a tag before the first line break. Although the result may be correct for common cases, there is no guarantee.
.SH "void QStyleSheet::scaleFont ( QFont & font, int logicalSize ) const\fC [virtual]\fR"
.SH "void TQStyleSheet::scaleFont ( QFont & font, int logicalSize ) const\fC [virtual]\fR"
Scales the font \fIfont\fR to the appropriate physical point size corresponding to the logical font size \fIlogicalSize\fR.
.PP
When calling this function, \fIfont\fR has a point size corresponding to the logical font size 3.
.PP
Logical font sizes range from 1 to 7, with 1 being the smallest.
.PP
See also QStyleSheetItem::logicalFontSize(), QStyleSheetItem::logicalFontSizeStep(), and QFont::setPointSize().
.SH "void QStyleSheet::setDefaultSheet ( QStyleSheet * sheet )\fC [static]\fR"
Sets the application-wide default style sheet to \fIsheet\fR, deleting any style sheet previously set. The ownership is transferred to QStyleSheet.
See also TQStyleSheetItem::logicalFontSize(), TQStyleSheetItem::logicalFontSizeStep(), and QFont::setPointSize().
.SH "void TQStyleSheet::setDefaultSheet ( TQStyleSheet * sheet )\fC [static]\fR"
Sets the application-wide default style sheet to \fIsheet\fR, deleting any style sheet previously set. The ownership is transferred to TQStyleSheet.
.PP
See also defaultSheet().
.SH "TQTextCustomItem * QStyleSheet::tag ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const\fC [virtual]\fR"
.SH "TQTextCustomItem * TQStyleSheet::tag ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const\fC [virtual]\fR"
\fBThis function is under development and is subject to change.\fR
.PP
Generates an internal object for the tag called \fIname\fR, given the attributes \fIattr\fR, and using additional information provided by the mime source factory \fIfactory\fR.
@ -199,7 +199,7 @@ Generates an internal object for the tag called \fIname\fR, given the attributes
This function should not be used in application code.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqstylesheet.html
.BR http://doc.trolltech.com/tqstylesheet.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t
.TH QStyleSheetItem 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.TH TQStyleSheetItem 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@ -7,34 +7,34 @@
.ad l
.nh
.SH NAME
QStyleSheetItem \- Encapsulation of a set of text styles
TQStyleSheetItem \- Encapsulation of a set of text styles
.SH SYNOPSIS
\fC#include <ntqstylesheet.h>\fR
\fC#include <tqstylesheet.h>\fR
.PP
Inherits Qt.
.PP
.SS "Public Members"
.in +1c
.ti -1c
.BI "\fBQStyleSheetItem\fR ( QStyleSheet * parent, const TQString & name )"
.BI "\fBTQStyleSheetItem\fR ( TQStyleSheet * parent, const TQString & name )"
.br
.ti -1c
.BI "\fBQStyleSheetItem\fR ( const QStyleSheetItem & other )"
.BI "\fBTQStyleSheetItem\fR ( const TQStyleSheetItem & other )"
.br
.ti -1c
.BI "\fB~QStyleSheetItem\fR ()"
.BI "\fB~TQStyleSheetItem\fR ()"
.br
.ti -1c
.BI "QStyleSheetItem & \fBoperator=\fR ( const QStyleSheetItem & other )"
.BI "TQStyleSheetItem & \fBoperator=\fR ( const TQStyleSheetItem & other )"
.br
.ti -1c
.BI "TQString \fBname\fR () const"
.br
.ti -1c
.BI "QStyleSheet * \fBstyleSheet\fR ()"
.BI "TQStyleSheet * \fBstyleSheet\fR ()"
.br
.ti -1c
.BI "const QStyleSheet * \fBstyleSheet\fR () const"
.BI "const TQStyleSheet * \fBstyleSheet\fR () const"
.br
.ti -1c
.BI "enum \fBDisplayMode\fR { DisplayBlock, DisplayInline, DisplayListItem, DisplayNone }"
@ -169,7 +169,7 @@ Inherits Qt.
.BI "void \fBsetContexts\fR ( const TQString & c )"
.br
.ti -1c
.BI "bool \fBallowedInContext\fR ( const QStyleSheetItem * s ) const"
.BI "bool \fBallowedInContext\fR ( const TQStyleSheetItem * s ) const"
.br
.ti -1c
.BI "bool \fBselfNesting\fR () const"
@ -182,7 +182,7 @@ Inherits Qt.
.br
.in -1c
.SH DESCRIPTION
The QStyleSheetItem class provides an encapsulation of a set of text styles.
The TQStyleSheetItem class provides an encapsulation of a set of text styles.
.PP
A style sheet item consists of a name and a set of attributes that specifiy its font, color, etc. When used in a style sheet (see styleSheet()), items define the name() of a rich text tag and the display property changes associated with it.
.PP
@ -190,276 +190,276 @@ The display mode attribute indicates whether the item is a block, an inline elem
.PP
See also Text Related Classes.
.SS "Member Type Documentation"
.SH "QStyleSheetItem::DisplayMode"
.SH "TQStyleSheetItem::DisplayMode"
This enum type defines the way adjacent elements are displayed.
.TP
\fCQStyleSheetItem::DisplayBlock\fR - elements are displayed as a rectangular block (e.g. \fC<p>...</p>\fR).
\fCTQStyleSheetItem::DisplayBlock\fR - elements are displayed as a rectangular block (e.g. \fC<p>...</p>\fR).
.TP
\fCQStyleSheetItem::DisplayInline\fR - elements are displayed in a horizontally flowing sequence (e.g. \fC<em>...</em>\fR).
\fCTQStyleSheetItem::DisplayInline\fR - elements are displayed in a horizontally flowing sequence (e.g. \fC<em>...</em>\fR).
.TP
\fCQStyleSheetItem::DisplayListItem\fR - elements are displayed in a vertical sequence (e.g. \fC<li>...</li>\fR).
\fCTQStyleSheetItem::DisplayListItem\fR - elements are displayed in a vertical sequence (e.g. \fC<li>...</li>\fR).
.TP
\fCQStyleSheetItem::DisplayNone\fR - elements are not displayed at all.
.SH "QStyleSheetItem::ListStyle"
\fCTQStyleSheetItem::DisplayNone\fR - elements are not displayed at all.
.SH "TQStyleSheetItem::ListStyle"
This enum type defines how the items in a list are prefixed when displayed.
.TP
\fCQStyleSheetItem::ListDisc\fR - a filled circle (i.e. a bullet)
\fCTQStyleSheetItem::ListDisc\fR - a filled circle (i.e. a bullet)
.TP
\fCQStyleSheetItem::ListCircle\fR - an unfilled circle
\fCTQStyleSheetItem::ListCircle\fR - an unfilled circle
.TP
\fCQStyleSheetItem::ListSquare\fR - a filled square
\fCTQStyleSheetItem::ListSquare\fR - a filled square
.TP
\fCQStyleSheetItem::ListDecimal\fR - an integer in base 10: \fI1\fR, \fI2\fR, \fI3\fR, ...
\fCTQStyleSheetItem::ListDecimal\fR - an integer in base 10: \fI1\fR, \fI2\fR, \fI3\fR, ...
.TP
\fCQStyleSheetItem::ListLowerAlpha\fR - a lowercase letter: \fIa\fR, \fIb\fR, \fIc\fR, ...
\fCTQStyleSheetItem::ListLowerAlpha\fR - a lowercase letter: \fIa\fR, \fIb\fR, \fIc\fR, ...
.TP
\fCQStyleSheetItem::ListUpperAlpha\fR - an uppercase letter: \fIA\fR, \fIB\fR, \fIC\fR, ...
.SH "QStyleSheetItem::Margin"
\fCTQStyleSheetItem::ListUpperAlpha\fR - an uppercase letter: \fIA\fR, \fIB\fR, \fIC\fR, ...
.SH "TQStyleSheetItem::Margin"
.TP
\fCQStyleSheetItem::MarginLeft\fR - left margin
\fCTQStyleSheetItem::MarginLeft\fR - left margin
.TP
\fCQStyleSheetItem::MarginRight\fR - right margin
\fCTQStyleSheetItem::MarginRight\fR - right margin
.TP
\fCQStyleSheetItem::MarginTop\fR - top margin
\fCTQStyleSheetItem::MarginTop\fR - top margin
.TP
\fCQStyleSheetItem::MarginBottom\fR - bottom margin
\fCTQStyleSheetItem::MarginBottom\fR - bottom margin
.TP
\fCQStyleSheetItem::MarginAll\fR - all margins (left, right, top and bottom)
\fCTQStyleSheetItem::MarginAll\fR - all margins (left, right, top and bottom)
.TP
\fCQStyleSheetItem::MarginVertical\fR - top and bottom margins
\fCTQStyleSheetItem::MarginVertical\fR - top and bottom margins
.TP
\fCQStyleSheetItem::MarginHorizontal\fR - left and right margins
\fCTQStyleSheetItem::MarginHorizontal\fR - left and right margins
.TP
\fCQStyleSheetItem::MarginFirstLine\fR - margin (indentation) of the first line of a paragarph (in addition to the MarginLeft of the paragraph)
.SH "QStyleSheetItem::VerticalAlignment"
\fCTQStyleSheetItem::MarginFirstLine\fR - margin (indentation) of the first line of a paragarph (in addition to the MarginLeft of the paragraph)
.SH "TQStyleSheetItem::VerticalAlignment"
This enum type defines the way elements are aligned vertically. This is only supported for text elements.
.TP
\fCQStyleSheetItem::VAlignBaseline\fR - align the baseline of the element (or the bottom, if the element doesn't have a baseline) with the baseline of the parent
\fCTQStyleSheetItem::VAlignBaseline\fR - align the baseline of the element (or the bottom, if the element doesn't have a baseline) with the baseline of the parent
.TP
\fCQStyleSheetItem::VAlignSub\fR - subscript the element
\fCTQStyleSheetItem::VAlignSub\fR - subscript the element
.TP
\fCQStyleSheetItem::VAlignSuper\fR - superscript the element
.SH "QStyleSheetItem::WhiteSpaceMode"
This enum defines the ways in which QStyleSheet can treat whitespace.
\fCTQStyleSheetItem::VAlignSuper\fR - superscript the element
.SH "TQStyleSheetItem::WhiteSpaceMode"
This enum defines the ways in which TQStyleSheet can treat whitespace.
.TP
\fCQStyleSheetItem::WhiteSpaceNormal\fR - any sequence of whitespace (including line-breaks) is equivalent to a single space.
\fCTQStyleSheetItem::WhiteSpaceNormal\fR - any sequence of whitespace (including line-breaks) is equivalent to a single space.
.TP
\fCQStyleSheetItem::WhiteSpacePre\fR - whitespace must be output exactly as given in the input.
\fCTQStyleSheetItem::WhiteSpacePre\fR - whitespace must be output exactly as given in the input.
.TP
\fCQStyleSheetItem::WhiteSpaceNoWrap\fR - multiple spaces are collapsed as with WhiteSpaceNormal, but no automatic line-breaks occur. To break lines manually, use the \fC<br>\fR tag.
\fCTQStyleSheetItem::WhiteSpaceNoWrap\fR - multiple spaces are collapsed as with WhiteSpaceNormal, but no automatic line-breaks occur. To break lines manually, use the \fC<br>\fR tag.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.SH "QStyleSheetItem::QStyleSheetItem ( QStyleSheet * parent, const TQString & name )"
.SH "TQStyleSheetItem::TQStyleSheetItem ( TQStyleSheet * parent, const TQString & name )"
Constructs a new style called \fIname\fR for the stylesheet \fIparent\fR.
.PP
All properties in QStyleSheetItem are initially in the "do not change" state, except display mode, which defaults to DisplayInline.
.SH "QStyleSheetItem::QStyleSheetItem ( const QStyleSheetItem & other )"
All properties in TQStyleSheetItem are initially in the "do not change" state, except display mode, which defaults to DisplayInline.
.SH "TQStyleSheetItem::TQStyleSheetItem ( const TQStyleSheetItem & other )"
Copy constructor. Constructs a copy of \fIother\fR that is not bound to any style sheet.
.SH "QStyleSheetItem::~QStyleSheetItem ()"
Destroys the style. Note that QStyleSheetItem objects become owned by QStyleSheet when they are created.
.SH "int QStyleSheetItem::alignment () const"
.SH "TQStyleSheetItem::~TQStyleSheetItem ()"
Destroys the style. Note that TQStyleSheetItem objects become owned by TQStyleSheet when they are created.
.SH "int TQStyleSheetItem::alignment () const"
Returns the alignment of this style. Possible values are AlignAuto, AlignLeft, AlignRight, AlignCenter or AlignJustify.
.PP
See also setAlignment() and TQt::AlignmentFlags.
.SH "bool QStyleSheetItem::allowedInContext ( const QStyleSheetItem * s ) const"
.SH "bool TQStyleSheetItem::allowedInContext ( const TQStyleSheetItem * s ) const"
Returns TRUE if this style can be nested into an element of style \fIs\fR; otherwise returns FALSE.
.PP
See also contexts() and setContexts().
.SH "TQColor QStyleSheetItem::color () const"
.SH "TQColor TQStyleSheetItem::color () const"
Returns the text color of this style or an invalid color if no color has been set.
.PP
See also setColor() and TQColor::isValid().
.SH "TQString QStyleSheetItem::contexts () const"
.SH "TQString TQStyleSheetItem::contexts () const"
Returns a space-separated list of names of styles that may contain elements of this style. If nothing has been set, contexts() returns an empty string, which indicates that this style can be nested everywhere.
.PP
See also setContexts().
.SH "bool QStyleSheetItem::definesFontItalic () const"
.SH "bool TQStyleSheetItem::definesFontItalic () const"
Returns TRUE if the style defines a font shape; otherwise returns FALSE. A style does not define any shape until setFontItalic() is called.
.PP
See also setFontItalic() and fontItalic().
.SH "bool QStyleSheetItem::definesFontStrikeOut () const"
.SH "bool TQStyleSheetItem::definesFontStrikeOut () const"
Returns TRUE if the style defines a setting for the strikeOut property of the font; otherwise returns FALSE. A style does not define this until setFontStrikeOut() is called.
.PP
See also setFontStrikeOut() and fontStrikeOut().
.SH "bool QStyleSheetItem::definesFontUnderline () const"
.SH "bool TQStyleSheetItem::definesFontUnderline () const"
Returns TRUE if the style defines a setting for the underline property of the font; otherwise returns FALSE. A style does not define this until setFontUnderline() is called.
.PP
See also setFontUnderline() and fontUnderline().
.SH "DisplayMode QStyleSheetItem::displayMode () const"
.SH "DisplayMode TQStyleSheetItem::displayMode () const"
Returns the display mode of the style.
.PP
See also setDisplayMode().
.SH "TQString QStyleSheetItem::fontFamily () const"
.SH "TQString TQStyleSheetItem::fontFamily () const"
Returns the font family setting of the style. This is either a valid font family or TQString::null if no family has been set.
.PP
See also setFontFamily(), QFont::family(), and QFont::setFamily().
.SH "bool QStyleSheetItem::fontItalic () const"
.SH "bool TQStyleSheetItem::fontItalic () const"
Returns TRUE if the style sets an italic font; otherwise returns FALSE.
.PP
See also setFontItalic() and definesFontItalic().
.SH "int QStyleSheetItem::fontSize () const"
Returns the font size setting of the style. This is either a valid point size or QStyleSheetItem::Undefined.
.SH "int TQStyleSheetItem::fontSize () const"
Returns the font size setting of the style. This is either a valid point size or TQStyleSheetItem::Undefined.
.PP
See also setFontSize(), QFont::pointSize(), and QFont::setPointSize().
.SH "bool QStyleSheetItem::fontStrikeOut () const"
.SH "bool TQStyleSheetItem::fontStrikeOut () const"
Returns TRUE if the style sets a strike out font; otherwise returns FALSE.
.PP
See also setFontStrikeOut() and definesFontStrikeOut().
.SH "bool QStyleSheetItem::fontUnderline () const"
.SH "bool TQStyleSheetItem::fontUnderline () const"
Returns TRUE if the style sets an underlined font; otherwise returns FALSE.
.PP
See also setFontUnderline() and definesFontUnderline().
.SH "int QStyleSheetItem::fontWeight () const"
Returns the font weight setting of the style. This is either a valid QFont::Weight or the value QStyleSheetItem::Undefined.
.SH "int TQStyleSheetItem::fontWeight () const"
Returns the font weight setting of the style. This is either a valid QFont::Weight or the value TQStyleSheetItem::Undefined.
.PP
See also setFontWeight() and QFont.
.SH "bool QStyleSheetItem::isAnchor () const"
.SH "bool TQStyleSheetItem::isAnchor () const"
Returns whether this style is an anchor.
.PP
See also setAnchor().
.SH "int QStyleSheetItem::lineSpacing () const"
.SH "int TQStyleSheetItem::lineSpacing () const"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Returns the linespacing
.SH "ListStyle QStyleSheetItem::listStyle () const"
.SH "ListStyle TQStyleSheetItem::listStyle () const"
Returns the list style of the style.
.PP
See also setListStyle() and ListStyle.
.SH "int QStyleSheetItem::logicalFontSize () const"
Returns the logical font size setting of the style. This is either a valid size between 1 and 7 or QStyleSheetItem::Undefined.
.SH "int TQStyleSheetItem::logicalFontSize () const"
Returns the logical font size setting of the style. This is either a valid size between 1 and 7 or TQStyleSheetItem::Undefined.
.PP
See also setLogicalFontSize(), setLogicalFontSizeStep(), QFont::pointSize(), and QFont::setPointSize().
.SH "int QStyleSheetItem::logicalFontSizeStep () const"
.SH "int TQStyleSheetItem::logicalFontSizeStep () const"
Returns the logical font size step of this style.
.PP
The default is 0. Tags such as \fCbig\fR define \fC+1\fR; \fCsmall\fR defines \fC-1\fR.
.PP
See also setLogicalFontSizeStep().
.SH "int QStyleSheetItem::margin ( Margin m ) const"
.SH "int TQStyleSheetItem::margin ( Margin m ) const"
Returns the width of margin \fIm\fR in pixels.
.PP
The margin, \fIm\fR, can be MarginLeft, MarginRight, MarginTop, MarginBottom, or MarginFirstLine.
.PP
See also setMargin() and Margin.
.SH "TQString QStyleSheetItem::name () const"
.SH "TQString TQStyleSheetItem::name () const"
Returns the name of the style item.
.SH "int QStyleSheetItem::numberOfColumns () const"
.SH "int TQStyleSheetItem::numberOfColumns () const"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Returns the number of columns for this style.
.PP
See also setNumberOfColumns(), displayMode(), and setDisplayMode().
.SH "QStyleSheetItem & QStyleSheetItem::operator= ( const QStyleSheetItem & other )"
.SH "TQStyleSheetItem & TQStyleSheetItem::operator= ( const TQStyleSheetItem & other )"
Assignment. Assings a copy of \fIother\fR that is not bound to any style sheet. Unbounds first from previous style sheet.
.SH "bool QStyleSheetItem::selfNesting () const"
.SH "bool TQStyleSheetItem::selfNesting () const"
Returns TRUE if this style has self-nesting enabled; otherwise returns FALSE.
.PP
See also setSelfNesting().
.SH "void QStyleSheetItem::setAlignment ( int f )"
.SH "void TQStyleSheetItem::setAlignment ( int f )"
Sets the alignment to \fIf\fR. This only makes sense for styles with a display mode of DisplayBlock. Possible values are AlignAuto, AlignLeft, AlignRight, AlignCenter or AlignJustify.
.PP
See also alignment(), displayMode(), and TQt::AlignmentFlags.
.SH "void QStyleSheetItem::setAnchor ( bool anc )"
.SH "void TQStyleSheetItem::setAnchor ( bool anc )"
If \fIanc\fR is TRUE, sets this style to be an anchor (hypertext link); otherwise sets it to not be an anchor. Elements in this style link to other documents or anchors.
.PP
See also isAnchor().
.SH "void QStyleSheetItem::setColor ( const TQColor & c )"
.SH "void TQStyleSheetItem::setColor ( const TQColor & c )"
Sets the text color of this style to \fIc\fR.
.PP
See also color().
.SH "void QStyleSheetItem::setContexts ( const TQString & c )"
.SH "void TQStyleSheetItem::setContexts ( const TQString & c )"
Sets a space-separated list of names of styles that may contain elements of this style. If \fIc\fR is empty, the style can be nested everywhere.
.PP
See also contexts().
.SH "void QStyleSheetItem::setDisplayMode ( DisplayMode m )"
.SH "void TQStyleSheetItem::setDisplayMode ( DisplayMode m )"
Sets the display mode of the style to \fIm\fR.
.PP
See also displayMode().
.SH "void QStyleSheetItem::setFontFamily ( const TQString & fam )"
.SH "void TQStyleSheetItem::setFontFamily ( const TQString & fam )"
Sets the font family setting of the style to \fIfam\fR.
.PP
See also fontFamily(), QFont::family(), and QFont::setFamily().
.SH "void QStyleSheetItem::setFontItalic ( bool italic )"
.SH "void TQStyleSheetItem::setFontItalic ( bool italic )"
If \fIitalic\fR is TRUE sets italic for the style; otherwise sets upright.
.PP
See also fontItalic() and definesFontItalic().
.SH "void QStyleSheetItem::setFontSize ( int s )"
.SH "void TQStyleSheetItem::setFontSize ( int s )"
Sets the font size setting of the style to \fIs\fR points.
.PP
See also fontSize(), QFont::pointSize(), and QFont::setPointSize().
.SH "void QStyleSheetItem::setFontStrikeOut ( bool strikeOut )"
.SH "void TQStyleSheetItem::setFontStrikeOut ( bool strikeOut )"
If \fIstrikeOut\fR is TRUE, sets strike out for the style; otherwise sets no strike out.
.PP
See also fontStrikeOut() and definesFontStrikeOut().
.SH "void QStyleSheetItem::setFontUnderline ( bool underline )"
.SH "void TQStyleSheetItem::setFontUnderline ( bool underline )"
If \fIunderline\fR is TRUE, sets underline for the style; otherwise sets no underline.
.PP
See also fontUnderline() and definesFontUnderline().
.SH "void QStyleSheetItem::setFontWeight ( int w )"
.SH "void TQStyleSheetItem::setFontWeight ( int w )"
Sets the font weight setting of the style to \fIw\fR. Valid values are those defined by QFont::Weight.
.PP
See also QFont and fontWeight().
.SH "void QStyleSheetItem::setListStyle ( ListStyle s )"
.SH "void TQStyleSheetItem::setListStyle ( ListStyle s )"
Sets the list style of the style to \fIs\fR.
.PP
This is used by nested elements that have a display mode of DisplayListItem.
.PP
See also listStyle(), DisplayMode, and ListStyle.
.SH "void QStyleSheetItem::setLogicalFontSize ( int s )"
.SH "void TQStyleSheetItem::setLogicalFontSize ( int s )"
Sets the logical font size setting of the style to \fIs\fR. Valid logical sizes are 1 to 7.
.PP
See also logicalFontSize(), QFont::pointSize(), and QFont::setPointSize().
.SH "void QStyleSheetItem::setLogicalFontSizeStep ( int s )"
.SH "void TQStyleSheetItem::setLogicalFontSizeStep ( int s )"
Sets the logical font size step of this style to \fIs\fR.
.PP
See also logicalFontSizeStep().
.SH "void QStyleSheetItem::setMargin ( Margin m, int v )"
.SH "void TQStyleSheetItem::setMargin ( Margin m, int v )"
Sets the width of margin \fIm\fR to \fIv\fR pixels.
.PP
The margin, \fIm\fR, can be MarginLeft, MarginRight, MarginTop, MarginBottom, MarginFirstLine, MarginAll, MarginVertical or MarginHorizontal. The value \fIv\fR must be >= 0.
.PP
See also margin().
.SH "void QStyleSheetItem::setNumberOfColumns ( int ncols )"
.SH "void TQStyleSheetItem::setNumberOfColumns ( int ncols )"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP
Sets the number of columns for this style. Elements in the style are divided into columns.
.PP
This makes sense only if the style uses a block display mode (see QStyleSheetItem::DisplayMode).
This makes sense only if the style uses a block display mode (see TQStyleSheetItem::DisplayMode).
.PP
See also numberOfColumns().
.SH "void QStyleSheetItem::setSelfNesting ( bool nesting )"
.SH "void TQStyleSheetItem::setSelfNesting ( bool nesting )"
Sets the self-nesting property for this style to \fInesting\fR.
.PP
In order to support "dirty" HTML, paragraphs \fC<p>\fR and list items \fC<li>\fR are not self-nesting. This means that starting a new paragraph or list item automatically closes the previous one.
.PP
See also selfNesting().
.SH "void QStyleSheetItem::setVerticalAlignment ( VerticalAlignment valign )"
.SH "void TQStyleSheetItem::setVerticalAlignment ( VerticalAlignment valign )"
Sets the vertical alignment to \fIvalign\fR. Possible values are VAlignBaseline, VAlignSub or VAlignSuper.
.PP
The vertical alignment property is not inherited.
.PP
See also verticalAlignment().
.SH "void QStyleSheetItem::setWhiteSpaceMode ( WhiteSpaceMode m )"
.SH "void TQStyleSheetItem::setWhiteSpaceMode ( WhiteSpaceMode m )"
Sets the whitespace mode to \fIm\fR.
.PP
See also WhiteSpaceMode.
.SH "QStyleSheet * QStyleSheetItem::styleSheet ()"
.SH "TQStyleSheet * TQStyleSheetItem::styleSheet ()"
Returns the style sheet this item is in.
.SH "const QStyleSheet * QStyleSheetItem::styleSheet () const"
.SH "const TQStyleSheet * TQStyleSheetItem::styleSheet () const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Returns the style sheet this item is in.
.SH "VerticalAlignment QStyleSheetItem::verticalAlignment () const"
.SH "VerticalAlignment TQStyleSheetItem::verticalAlignment () const"
Returns the vertical alignment of the style. Possible values are VAlignBaseline, VAlignSub or VAlignSuper.
.PP
See also setVerticalAlignment().
.SH "WhiteSpaceMode QStyleSheetItem::whiteSpaceMode () const"
.SH "WhiteSpaceMode TQStyleSheetItem::whiteSpaceMode () const"
Returns the whitespace mode.
.PP
See also setWhiteSpaceMode() and WhiteSpaceMode.
.SH "SEE ALSO"
.BR http://doc.trolltech.com/qstylesheetitem.html
.BR http://doc.trolltech.com/tqstylesheetitem.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -11,7 +11,7 @@ Qt \- Namespace for miscellaneous identifiers that need to be global-like
.SH SYNOPSIS
\fC#include <ntqnamespace.h>\fR
.PP
Inherited by TQObject, QPixmap, QBrush, TQCanvasItem, QCursor, QPainter, QEvent, TQIconViewItem, QKeySequence, QListViewItem, QCustomMenuItem, QPen, QStyleSheetItem, QSyntaxHighlighter, QTab, QTableItem, QThread, QToolTip, and QWhatsThis.
Inherited by TQObject, QPixmap, QBrush, TQCanvasItem, QCursor, QPainter, QEvent, TQIconViewItem, QKeySequence, QListViewItem, QCustomMenuItem, QPen, TQStyleSheetItem, QSyntaxHighlighter, QTab, QTableItem, QThread, QToolTip, and QWhatsThis.
.PP
.SS "Public Members"
.in +1c
@ -1216,9 +1216,9 @@ This enum is used in widgets that can display both plain text and rich text, e.g
.TP
\fCQt::PlainText\fR - The text string is interpreted as a plain text string.
.TP
\fCQt::RichText\fR - The text string is interpreted as a rich text string using the current QStyleSheet::defaultSheet().
\fCQt::RichText\fR - The text string is interpreted as a rich text string using the current TQStyleSheet::defaultSheet().
.TP
\fCQt::AutoText\fR - The text string is interpreted as for RichText if QStyleSheet::mightBeRichText() returns TRUE, otherwise as PlainText.
\fCQt::AutoText\fR - The text string is interpreted as for RichText if TQStyleSheet::mightBeRichText() returns TRUE, otherwise as PlainText.
.TP
\fCQt::LogText\fR - A special, limited text format which is only used by TQTextEdit in an optimized mode.
.SH "TQt::TimeSpec"

@ -106,7 +106,7 @@ If you intend using the mime factory to read the data directly from the file sys
.fi
This is to ensure that the factory is able to resolve the document names.
.PP
TQTextBrowser interprets the tags it processes in accordance with the default style sheet. Change the style sheet with setStyleSheet(); see QStyleSheet for details.
TQTextBrowser interprets the tags it processes in accordance with the default style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details.
.PP
If you want to provide your users with editable rich text use TQTextEdit. If you want a text browser without hypertext navigation use TQTextEdit, and use TQTextEdit::setReadOnly() to disable editing. If you just need to display a small piece of rich text use QSimpleRichText or QLabel.
.PP

@ -90,7 +90,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView.
.BI "int \fBparagraphLength\fR ( int para ) const"
.br
.ti -1c
.BI "QStyleSheet * \fBstyleSheet\fR () const"
.BI "TQStyleSheet * \fBstyleSheet\fR () const"
.br
.ti -1c
.BI "QMimeSourceFactory * \fBmimeSourceFactory\fR () const"
@ -201,7 +201,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView.
.BI "virtual void \fBsetMimeSourceFactory\fR ( QMimeSourceFactory * factory )"
.br
.ti -1c
.BI "virtual void \fBsetStyleSheet\fR ( QStyleSheet * styleSheet )"
.BI "virtual void \fBsetStyleSheet\fR ( TQStyleSheet * styleSheet )"
.br
.ti -1c
.BI "virtual void \fBscrollToAnchor\fR ( const TQString & name )"
@ -551,11 +551,11 @@ The text edit documentation uses the following concepts:
.TP
\fIcurrent paragraph\fR -- the paragraph which contains the cursor.
.PP
TQTextEdit can display images (using QMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see QStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's QMimeSourceFactory; see setMimeSourceFactory().
TQTextEdit can display images (using QMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's QMimeSourceFactory; see setMimeSourceFactory().
.PP
If you want a text browser with more navigation use TQTextBrowser. If you just need to display a small piece of rich text use QLabel or QSimpleRichText.
.PP
If you create a new TQTextEdit, and want to allow the user to edit rich text, call setTextFormat(TQt::RichText) to ensure that the text is treated as rich text. (Rich text uses HTML tags to set text formatting attributes. See QStyleSheet for information on the HTML tags that are supported.). If you don't call setTextFormat() explicitly the text edit will guess from the text itself whether it is rich text or plain text. This means that if the text looks like HTML or XML it will probably be interpreted as rich text, so you should call setTextFormat(TQt::PlainText) to preserve such text.
If you create a new TQTextEdit, and want to allow the user to edit rich text, call setTextFormat(TQt::RichText) to ensure that the text is treated as rich text. (Rich text uses HTML tags to set text formatting attributes. See TQStyleSheet for information on the HTML tags that are supported.). If you don't call setTextFormat() explicitly the text edit will guess from the text itself whether it is rich text or plain text. This means that if the text looks like HTML or XML it will probably be interpreted as rich text, so you should call setTextFormat(TQt::PlainText) to preserve such text.
.PP
Note that we do not intend to add a full-featured web browser widget to TQt (because that would easily double Qt's size and only a few applications would benefit from it). The rich text support in TQt is designed to provide a fast, portable and efficient way to add reasonable online help facilities to applications, and to provide a basis for rich text editors.
.SH "Using TQTextEdit as a Display Widget"
@ -641,7 +641,7 @@ Stylesheets can also be used in LogText mode. To create and use a custom tag, yo
.br
log->setTextFormat( TQt::LogText );
.br
QStyleSheetItem * item = new QStyleSheetItem( log->styleSheet(), "mytag" );
TQStyleSheetItem * item = new TQStyleSheetItem( log->styleSheet(), "mytag" );
.br
item->setColor( "red" );
.br
@ -652,7 +652,7 @@ Stylesheets can also be used in LogText mode. To create and use a custom tag, yo
log->append( "This is a <mytag>custom tag</mytag>!" );
.br
.fi
Note that only the color, bold, underline and italic attributes of a QStyleSheetItem is used in LogText mode.
Note that only the color, bold, underline and italic attributes of a TQStyleSheetItem is used in LogText mode.
.PP
Note that you can use setMaxLogLines() to limit the number of lines the widget can hold in LogText mode.
.PP
@ -1160,7 +1160,7 @@ See also getSelection() and selectedText.
Sets the background color of selection number \fIselNum\fR to \fIback\fR and specifies whether the text of this selection should be inverted with \fIinvertText\fR.
.PP
This only works for \fIselNum\fR > 0. The default selection (\fIselNum\fR == 0) gets its attributes from the text edit's colorGroup().
.SH "void TQTextEdit::setStyleSheet ( QStyleSheet * styleSheet )\fC [virtual slot]\fR"
.SH "void TQTextEdit::setStyleSheet ( TQStyleSheet * styleSheet )\fC [virtual slot]\fR"
Sets the stylesheet to use with this text edit to \fIstyleSheet\fR. Changes will only take effect for new text added with setText() or append().
.PP
See also styleSheet().
@ -1177,7 +1177,7 @@ Changes the text of the text edit to the string \fItext\fR and the context to \f
.PP
\fItext\fR may be interpreted either as plain text or as rich text, depending on the textFormat(). The default setting is AutoText, i.e. the text edit auto-detects the format from \fItext\fR.
.PP
For rich text the rendering style and available tags are defined by a styleSheet(); see QStyleSheet for details.
For rich text the rendering style and available tags are defined by a styleSheet(); see TQStyleSheet for details.
.PP
The optional \fIcontext\fR is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. (See TQTextEdit::TQTextEdit().) It is passed to the text edit's QMimeSourceFactory when quering data.
.PP
@ -1204,8 +1204,8 @@ Sets the word wrap mode to \fImode\fR. See the "wordWrap" property for details.
Sets the position (in pixels or columns depending on the wrap mode) where text will be wrapped. See the "wrapColumnOrWidth" property for details.
.SH "void TQTextEdit::setWrapPolicy ( WrapPolicy policy )\fC [virtual slot]\fR"
Sets the word wrap policy, at whitespace or anywhere to \fIpolicy\fR. See the "wrapPolicy" property for details.
.SH "QStyleSheet * TQTextEdit::styleSheet () const"
Returns the QStyleSheet which is being used by this text edit.
.SH "TQStyleSheet * TQTextEdit::styleSheet () const"
Returns the TQStyleSheet which is being used by this text edit.
.PP
See also setStyleSheet().
.PP
@ -1378,11 +1378,11 @@ The text format is one of the following:
.TP
PlainText - all characters, except newlines, are displayed verbatim, including spaces. Whenever a newline appears in the text the text edit inserts a hard line break and begins a new paragraph.
.TP
RichText - rich text rendering. The available styles are defined in the default stylesheet QStyleSheet::defaultSheet().
RichText - rich text rendering. The available styles are defined in the default stylesheet TQStyleSheet::defaultSheet().
.TP
LogText - optimized mode for very large texts. Supports a very limited set of formatting tags (color, bold, underline and italic settings).
.TP
AutoText - this is the default. The text edit autodetects which rendering style is best, PlainText or RichText. This is done by using the QStyleSheet::mightBeRichText() function.
AutoText - this is the default. The text edit autodetects which rendering style is best, PlainText or RichText. This is done by using the TQStyleSheet::mightBeRichText() function.
.PP
Set this property's value with setTextFormat() and get this property's value with textFormat().
.SH "int undoDepth"

@ -70,7 +70,7 @@ QWhatsThis provides a single window with an explanatory text that pops up when t
.PP
To add "What's this?" text to a widget you simply call QWhatsThis::add() for the widget. For example, to assign text to a menu item, call QMenuData::setWhatsThis(); for a global accelerator key, call QAccel::setWhatsThis() and If you're using actions, use QAction::setWhatsThis().
.PP
The text can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. This makes it possible to embed images. See QStyleSheet::defaultSheet() for details.
The text can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. This makes it possible to embed images. See TQStyleSheet::defaultSheet() for details.
.PP
.nf
.br
@ -114,7 +114,7 @@ When the widget is queried by the user the text() function of this QWhatsThis wi
.SH "QWhatsThis::~QWhatsThis ()\fC [virtual]\fR"
Destroys the object and frees any allocated resources.
.SH "void QWhatsThis::add ( TQWidget * widget, const TQString & text )\fC [static]\fR"
Adds \fItext\fR as "What's this" help for \fIwidget\fR. If the text is rich text formatted (i.e. it contains markup) it will be rendered with the default stylesheet QStyleSheet::defaultSheet().
Adds \fItext\fR as "What's this" help for \fIwidget\fR. If the text is rich text formatted (i.e. it contains markup) it will be rendered with the default stylesheet TQStyleSheet::defaultSheet().
.PP
The text is destroyed if the widget is later destroyed, so it need not be explicitly removed.
.PP

@ -27,13 +27,13 @@ Inherited by QAxWidget, QButton, QFrame, QDialog, QComboBox, TQDataBrowser, TQDa
.BI "WId \fBwinId\fR () const"
.br
.ti -1c
.BI "QStyle & \fBstyle\fR () const"
.BI "TQStyle & \fBstyle\fR () const"
.br
.ti -1c
.BI "void \fBsetStyle\fR ( QStyle * style )"
.BI "void \fBsetStyle\fR ( TQStyle * style )"
.br
.ti -1c
.BI "QStyle * \fBsetStyle\fR ( const TQString & style )"
.BI "TQStyle * \fBsetStyle\fR ( const TQString & style )"
.br
.ti -1c
.BI "bool \fBisTopLevel\fR () const"
@ -948,7 +948,7 @@ Inherited by QAxWidget, QButton, QFrame, QDialog, QComboBox, TQDataBrowser, TQDa
.BI "virtual void \fBupdateMask\fR ()"
.br
.ti -1c
.BI "virtual void \fBstyleChange\fR ( QStyle & oldStyle )"
.BI "virtual void \fBstyleChange\fR ( TQStyle & oldStyle )"
.br
.ti -1c
.BI "virtual void \fBenabledChange\fR ( bool oldEnabled )"
@ -2205,7 +2205,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
Sets the size policy of the widget to \fIhor\fR, \fIver\fR and \fIhfw\fR (height for width).
.PP
See also QSizePolicy::QSizePolicy().
.SH "void TQWidget::setStyle ( QStyle * style )"
.SH "void TQWidget::setStyle ( TQStyle * style )"
Sets the widget's GUI style to \fIstyle\fR. Ownership of the style object is not transferred.
.PP
If no style is set, the widget uses the application's style, QApplication::style() instead.
@ -2214,14 +2214,14 @@ Setting a widget's style has no effect on existing or future child widgets.
.PP
\fBWarning:\fR This function is particularly useful for demonstration purposes, where you want to show Qt's styling capabilities. Real applications should avoid it and use one consistent GUI style instead.
.PP
See also style(), QStyle, QApplication::style(), and QApplication::setStyle().
See also style(), TQStyle, QApplication::style(), and QApplication::setStyle().
.PP
Examples:
.)l grapher/grapher.cpp and progressbar/progressbar.cpp.
.SH "QStyle * TQWidget::setStyle ( const TQString & style )"
.SH "TQStyle * TQWidget::setStyle ( const TQString & style )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Sets the widget's GUI style to \fIstyle\fR using the QStyleFactory.
Sets the widget's GUI style to \fIstyle\fR using the TQStyleFactory.
.SH "void TQWidget::setTabOrder ( TQWidget * first, TQWidget * second )\fC [static]\fR"
Moves the \fIsecond\fR widget around the ring of focus widgets so that keyboard focus moves from the \fIfirst\fR widget to the \fIsecond\fR widget when the Tab key is pressed.
.PP
@ -2362,11 +2362,11 @@ Places the widget under \fIw\fR in the parent widget's stack.
To make this work, the widget itself and \fIw\fR must be siblings.
.PP
See also raise() and lower().
.SH "QStyle & TQWidget::style () const"
.SH "TQStyle & TQWidget::style () const"
Returns the GUI style for this widget
.PP
See also TQWidget::setStyle(), QApplication::setStyle(), and QApplication::style().
.SH "void TQWidget::styleChange ( QStyle & oldStyle )\fC [virtual protected]\fR"
.SH "void TQWidget::styleChange ( TQStyle & oldStyle )\fC [virtual protected]\fR"
This virtual function is called when the style of the widgets changes. \fIoldStyle\fR is the previous GUI style; you can get the new style from style().
.PP
Reimplement this function if your widget needs to know when its GUI style changes. You will almost certainly need to update the widget using update().

@ -42,7 +42,7 @@
\title Pictures of Most TQt Widgets
Most of these widgets are shown in either Motif or Windows style.
All widgets are supported in both styles (and other \link QStyle
All widgets are supported in both styles (and other \link TQStyle
styles\endlink), but for clarity we just present a selection.
Qt provides more widgets than the selection shown below. And extra Qt

@ -67,7 +67,7 @@ by default in the standard plugin directory.
\i \l TQSqlDriverPlugin
\i \c{pluginsbase/sqldrivers} <sup>*</sup>
\row
\i \l QStylePlugin
\i \l TQStylePlugin
\i \c{pluginsbase/styles} <sup>*</sup>
\row
\i \l TQTextCodecPlugin
@ -92,7 +92,7 @@ set your own path or paths you can use
Suppose that you have a new style class called 'MyStyle' that you want
to make available as a plugin. The required code is straightforward:
\code
class MyStylePlugin : public QStylePlugin
class MyStylePlugin : public TQStylePlugin
{
public:
MyStylePlugin() {}
@ -102,7 +102,7 @@ to make available as a plugin. The required code is straightforward:
return TQStringList() << "mystyle";
}
QStyle* create( const TQString& key ) {
TQStyle* create( const TQString& key ) {
if ( key == "mystyle" )
return new MyStyle;
return 0;
@ -112,7 +112,7 @@ to make available as a plugin. The required code is straightforward:
TQ_EXPORT_PLUGIN( MyStylePlugin )
\endcode
(Note that QStyleFactory is case-insensitive, and the lower case
(Note that TQStyleFactory is case-insensitive, and the lower case
version of the key is used; other factories, e.g. TQWidgetFactory, are
case sensitive.)
@ -122,19 +122,19 @@ The first is keys() which returns a string list of the classes
implemented in the plugin. (We've just implemented one class in the
example above.) The second is a function that returns an object of the
required class (or 0 if the plugin is asked to create an object of a
class that it doesn't implement). For QStylePlugin, this second
class that it doesn't implement). For TQStylePlugin, this second
function is called create().
It is possible to implement any number of plugin subclasses in a
single plugin, providing they are all derived from the same base
class, e.g. QStylePlugin.
class, e.g. TQStylePlugin.
For database drivers, image formats, custom widgets and text codecs,
no explicit object creation is required. TQt will find and create them
as required. Styles are an exception, since you might want to set a
style explicitly in code. To apply a style, use code like this:
\code
QApplication::setStyle( QStyleFactory::create( "MyStyle" ) );
QApplication::setStyle( TQStyleFactory::create( "MyStyle" ) );
\endcode
Some plugin classes require additional functions to be implemented.

@ -116,7 +116,7 @@ Header files that you might need to add #include directives for include:
\i \c <tqstringlist.h>
\i \c <ntqregexp.h>
\i \c <tqstrlist.h>
\i \c <ntqstyle.h>
\i \c <tqstyle.h>
\i \c <tqvaluelist.h>
\endlist
@ -218,8 +218,8 @@ All these functions have been removed in TQt 3.x:
\i QSpinBox::upButton()
\i TQString::basicDirection()
\i TQString::visual()
\i QStyle::set...() functions
\i QStyle::drawArrow()
\i TQStyle::set...() functions
\i TQStyle::drawArrow()
\i QThread::postEvent(TQObject *receiver, TQEvent *event). Use TQApplication::postEvent() instead.
\i QToolButton::iconSet(bool on) const
\i QToolButton::offIconSet() const
@ -321,9 +321,9 @@ new code.
\i TQString::ascii() const
\i TQString::data() const
\i TQString::setExpand( uint index, TQChar c )
\i QStyle::defaultFrameWidth() const
\i QStyle::scrollBarExtent() const
\i QStyle::tabbarMetrics( const TQWidget *t, int \& hf, int \& vf, int \& ov ) const
\i TQStyle::defaultFrameWidth() const
\i TQStyle::scrollBarExtent() const
\i TQStyle::tabbarMetrics( const TQWidget *t, int \& hf, int \& vf, int \& ov ) const
\i QTabDialog::isTabEnabled( const char *name ) const
\i QTabDialog::selected( const TQString \& )
\i QTabDialog::selected( const TQString \& tabLabel )
@ -452,7 +452,7 @@ might be removed in a future version.
The paintBranches() function in TQt 2.x had a GUIStyle parameter; this
has been dropped for TQt 3.x since GUI style is handled by the new
style engine (See \l QStyle.)
style engine (See \l TQStyle.)
\section1 QMoveEvent

@ -139,7 +139,7 @@
Example #2:
\code
TQStringList styleList = QStyleFactory::styles();
TQStringList styleList = TQStyleFactory::styles();
styleList.sort();
QDict<int> letterDict( 17, FALSE );
for ( TQStringList::Iterator it = styleList.begin(); it != styleList.end(); ++it ) {
@ -162,7 +162,7 @@
\endcode
In the example we are using the dictionary to provide fast random
access to the keys, and we don't care what the values are. The
example is used to generate a menu of QStyles, each with a unique
example is used to generate a menu of TQStyles, each with a unique
accelerator key (or no accelerator if there are no unused letters
left).

@ -374,7 +374,7 @@ themes
This examples demonstrates how to draw widgets in different styles
(themes). Example themes looking like wood and metal are
implemented. You can switch between the different styles at
runtime using the menu. Shows how to create a QStyle subclass. Not
runtime using the menu. Shows how to create a TQStyle subclass. Not
for the faint-hearted.
tictac

@ -41,7 +41,7 @@
#include <ntqpixmap.h>
#include <ntqapplication.h>
#include <ntqdragobject.h>
#include <ntqstyle.h>
#include <tqstyle.h>
StyledButton::StyledButton(TQWidget* parent, const char* name)
: TQButton( parent, name ), pix( 0 ), spix( 0 ), edit( ColorEditor ), s( 0 ), mousePressed( FALSE )

@ -16,7 +16,7 @@
#include <ntqtoolbox.h>
#include <ntqpainter.h>
#include <tqwidgetstack.h>
#include <ntqstylefactory.h>
#include <tqstylefactory.h>
#include <ntqaction.h>
#include <ntqsignalmapper.h>
#include <ntqdict.h>

@ -17,7 +17,7 @@
#include <tqiconset.h>
#include <ntqfile.h>
#include <tqtextstream.h>
#include <ntqstylesheet.h>
#include <tqstylesheet.h>
#include <ntqmessagebox.h>
#include <ntqfiledialog.h>
#include <ntqapplication.h>

@ -17,7 +17,7 @@
#include <tqiconset.h>
#include <ntqfile.h>
#include <tqtextstream.h>
#include <ntqstylesheet.h>
#include <tqstylesheet.h>
#include <ntqmessagebox.h>
#include <ntqfiledialog.h>
#include <ntqapplication.h>

@ -18,7 +18,7 @@
#include <ntqlabel.h>
#include <tqimage.h>
#include <ntqpainter.h>
#include <ntqstyle.h>
#include <tqstyle.h>
class MyListBoxItem : public TQListBoxItem

@ -25,7 +25,7 @@
#include <ntqmenubar.h>
#include <ntqmessagebox.h>
#include <ntqfont.h>
#include <ntqstylefactory.h>
#include <tqstylefactory.h>
#include <ntqaction.h>
#include <ntqsignalmapper.h>
#include <ntqdict.h>

@ -25,7 +25,7 @@
#include "ntqrangecontrol.h"
#include "ntqscrollbar.h"
#include <limits.h>
#include "ntqstylefactory.h"
#include "tqstylefactory.h"
/* XPM */
static const char *polish_xpm[] = {

@ -8,7 +8,7 @@
*****************************************************************************/
#include <ntqapplication.h>
#include <ntqstylefactory.h>
#include <tqstylefactory.h>
#include "widgets.h"
class MyWidgetView : public WidgetView

@ -1 +0,0 @@
../src/kernel/ntqstyle.h

@ -1 +0,0 @@
../src/styles/ntqstylefactory.h

@ -1 +0,0 @@
../src/styles/ntqstyleplugin.h

@ -1 +0,0 @@
../src/kernel/ntqstylesheet.h

@ -1 +0,0 @@
../../src/styles/qstyleinterface_p.h

@ -0,0 +1 @@
../../src/styles/tqstyleinterface_p.h

@ -0,0 +1 @@
../src/kernel/tqstyle.h

@ -0,0 +1 @@
../src/styles/tqstylefactory.h

@ -0,0 +1 @@
../src/styles/tqstyleplugin.h

@ -0,0 +1 @@
../src/kernel/tqstylesheet.h

@ -2,7 +2,7 @@
#include <ntqpopupmenu.h>
#include <ntqmenubar.h>
#include <ntqstyle.h>
#include <tqstyle.h>
class MyPopupMenu : public TQPopupMenu
{

@ -1,7 +1,7 @@
#include "qaccessiblewidget.h"
#include <ntqapplication.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <tqobjectlist.h>
#include <ntqpushbutton.h>
#include <ntqslider.h>

@ -1,4 +1,4 @@
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
#include <ntqcdestyle.h>
class CDEStyle : public TQStylePlugin

@ -1,4 +1,4 @@
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
#include <ntqcompactstyle.h>
class CompactStyle : public TQStylePlugin

@ -1,4 +1,4 @@
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
#include <ntqmotifstyle.h>
class MotifStyle : public TQStylePlugin

@ -1,4 +1,4 @@
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
#include <ntqmotifplusstyle.h>
class MotifPlusStyle : public TQStylePlugin

@ -1,5 +1,5 @@
#include <ntqplatinumstyle.h>
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
class PlatinumStyle : public TQStylePlugin
{

@ -1,4 +1,4 @@
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
#include <ntqsgistyle.h>
class SGIStyle : public TQStylePlugin

@ -1,4 +1,4 @@
#include <ntqstyleplugin.h>
#include <tqstyleplugin.h>
#include <ntqwindowsstyle.h>
class WindowsStyle : public TQStylePlugin

@ -54,7 +54,7 @@
#include "ntqdragobject.h"
#include "ntqgridview.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqsettings.h"
#include "ntqpopupmenu.h"

@ -50,7 +50,7 @@
#include "ntqmessagebox.h"
#include "ntqpushbutton.h"
#include "tqstringlist.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include "tqtextview.h"
#include <stdio.h>

@ -87,7 +87,7 @@
#include "ntqregexp.h"
#include "ntqsplitter.h"
#include "tqstrlist.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqtimer.h"
#include "ntqtoolbutton.h"
#include "ntqtooltip.h"

@ -55,7 +55,7 @@
#include "ntqlabel.h"
#include "ntqapplication.h"
#include "ntqfontdatabase.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include <private/qfontdata_p.h>
#include <ntqvalidator.h>

@ -47,7 +47,7 @@
#include "ntqpushbutton.h"
#include "tqimage.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "tqobjectlist.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"

@ -58,7 +58,7 @@
#include "ntqspinbox.h"
#include "ntqapplication.h"
#include "ntqheader.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "tqstring.h"
#include "ntqregexp.h"
#if !defined(TQT_NO_CUPS) || !defined(TQT_NO_NIS)

@ -47,7 +47,7 @@
#include "ntqdrawutil.h"
#include "ntqdatetime.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqpushbutton.h"
#include "ntqcursor.h"
#include "ntqtimer.h"

@ -317,7 +317,7 @@ public:
};
#endif
// documented in qstyle.cpp
// documented in tqstyle.cpp
#ifdef TQT_NO_COMPAT
enum GUIStyle {
WindowsStyle = 1, // ### TQt 4.0: either remove the obsolete enums or clean up compat vs.
@ -856,7 +856,7 @@ public:
WV_CE_based = 0x0f00
};
// documented in qstyle.cpp
// documented in tqstyle.cpp
enum UIEffect {
UI_General,
UI_AnimateMenu,

@ -71,7 +71,7 @@
#include "tqiconset.h"
#include "ntqbutton.h"
#include <ntqtoolbutton.h>
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqframe.h"
#include "ntqfile.h"
#include "ntqfileinfo.h"
@ -168,7 +168,7 @@
#include <ntqcleanuphandler.h>
#include <tqptrqueue.h>
#include <tqptrstack.h>
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include <ntqpushbutton.h>
#include <ntqradiobutton.h>
#include <ntqdial.h>
@ -222,8 +222,8 @@
#include "ntqtranslator.h"
#include <tqstrvec.h>
#include <ntqinterlacestyle.h>
#include <ntqstylefactory.h>
#include <ntqstyleplugin.h>
#include <tqstylefactory.h>
#include <tqstyleplugin.h>
#include "tqtextedit.h"
#include <ntqsyntaxhighlighter.h>
#include <ntqtabdialog.h>
@ -291,7 +291,7 @@
#include "private/tqsqlmanager_p.h"
#include "private/qlock_p.h"
#include "private/qcomponentfactory_p.h"
#include "private/qstyleinterface_p.h"
#include "private/tqstyleinterface_p.h"
#include "private/qrichtext_p.h"
#include "private/qsvgdevice_p.h"
#include "private/qfontcodecs_p.h"

@ -54,8 +54,8 @@
#include "ntqdragobject.h"
#include "ntqclipboard.h"
#include "ntqcursor.h"
#include "ntqstyle.h"
#include "ntqstylefactory.h"
#include "tqstyle.h"
#include "tqstylefactory.h"
#include "ntqfile.h"
#include "ntqmessagebox.h"
#include "ntqdir.h"

@ -85,7 +85,7 @@
#include "ntqclipboard.h"
#include "ntqwhatsthis.h" // ######## dependency
#include "ntqsettings.h"
#include "ntqstylefactory.h"
#include "tqstylefactory.h"
#include "ntqfileinfo.h"
// Input method stuff - UNFINISHED

@ -50,7 +50,7 @@
#include "ntqapplication.h"
#include "tqmap.h"
#include "ntqfileinfo.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include "ntqmime.h"
#include "tqimage.h"
#include "ntqdragobject.h"
@ -60,7 +60,7 @@
#include "ntqcursor.h"
#include "tqptrstack.h"
#include "tqptrdict.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqcleanuphandler.h"
#include "tqtextengine_p.h"
#include <private/qunicodetables_p.h>

@ -69,7 +69,7 @@
#include "tqobject.h"
#include "ntqdict.h"
#include "ntqpixmap.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include "tqptrvector.h"
#include "ntqpainter.h"
#include "ntqlayout.h"

@ -44,7 +44,7 @@
#include "ntqpainter.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(TQ_WS_X11)
#include "qt_x11_p.h"

@ -75,8 +75,8 @@ kernel {
$$KERNEL_H/ntqsizepolicy.h \
$$KERNEL_H/ntqsocketnotifier.h \
$$KERNEL_H/ntqsound.h \
$$KERNEL_H/ntqstyle.h \
$$KERNEL_H/ntqstylesheet.h \
$$KERNEL_H/tqstyle.h \
$$KERNEL_H/tqstylesheet.h \
$$KERNEL_H/ntqthread.h \
$$KERNEL_H/ntqtimer.h \
$$KERNEL_H/ntqurl.h \
@ -245,10 +245,10 @@ kernel {
$$KERNEL_CPP/qsignalmapper.cpp \
$$KERNEL_CPP/qsize.cpp \
$$KERNEL_CPP/qsizegrip.cpp \
$$KERNEL_CPP/qstyle.cpp \
$$KERNEL_CPP/tqstyle.cpp \
$$KERNEL_CPP/qsocketnotifier.cpp \
$$KERNEL_CPP/qsound.cpp \
$$KERNEL_CPP/qstylesheet.cpp \
$$KERNEL_CPP/tqstylesheet.cpp \
$$KERNEL_CPP/qthread.cpp \
$$KERNEL_CPP/qtimer.cpp \
$$KERNEL_CPP/qurl.cpp \

@ -37,7 +37,7 @@
#include <tqptrlist.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <ntqtimer.h>
#include <tqwidget.h>

@ -50,7 +50,7 @@
#include "tqptrvector.h"
// TQStyleControlElementData
#include "ntqstyle.h"
#include "tqstyle.h"
#ifdef TQT_THREAD_SUPPORT
#include "ntqmutex.h"

@ -38,7 +38,7 @@
**
**********************************************************************/
#include "ntqstyle.h"
#include "tqstyle.h"
#ifndef TQT_NO_STYLE
#include "ntqapplication.h"
#include "ntqpainter.h"
@ -251,7 +251,7 @@ TQStyleOption::TQStyleOption(TQWidget *w) :
}
/*!
\class TQStyleOption ntqstyle.h
\class TQStyleOption tqstyle.h
\brief The TQStyleOption class specifies optional parameters for TQStyle functions.
\ingroup appearance
@ -501,7 +501,7 @@ TQStyleOption::TQStyleOption(TQWidget *w) :
*/
/*!
\class TQStyle ntqstyle.h
\class TQStyle tqstyle.h
\brief The TQStyle class specifies the look and feel of a GUI.
\ingroup appearance

@ -38,7 +38,7 @@
**
**********************************************************************/
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#ifndef TQT_NO_RICHTEXT
@ -78,7 +78,7 @@ public:
};
/*!
\class TQStyleSheetItem ntqstylesheet.h
\class TQStyleSheetItem tqstylesheet.h
\brief The TQStyleSheetItem class provides an encapsulation of a set of text styles.
\ingroup text
@ -855,7 +855,7 @@ int TQStyleSheetItem::lineSpacing() const
/*!
\class TQStyleSheet ntqstylesheet.h
\class TQStyleSheet tqstylesheet.h
\ingroup text
\brief The TQStyleSheet class is a collection of styles for rich text
rendering and a generator of tags.

@ -51,9 +51,9 @@
#include "qapplication_p.h"
#include "ntqbrush.h"
#include "ntqlayout.h"
#include "ntqstylefactory.h"
#include "tqstylefactory.h"
#include "ntqcleanuphandler.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqmetaobject.h"
#include "ntqguardedptr.h"
#if defined(TQT_THREAD_SUPPORT)

@ -181,14 +181,14 @@ wince-* {
HEADERS -= $$TOOLS_CPP/qcomlibrary.h \
$$KERNEL_CPP/ntqgplugin.h \
$$KERNEL_CPP/tqimageformatplugin.h \
$$STYLES_CPP/ntqstyleplugin.h \
$$STYLES_CPP/tqstyleplugin.h \
$$CODECS_CPP/tqtextcodecplugin.h \
$$WIDGETS_CPP/tqwidgetplugin.h
SOURCES -= $$TOOLS_CPP/qcomlibrary.cpp \
$$KERNEL_CPP/qgplugin.cpp \
$$KERNEL_CPP/tqimageformatplugin.cpp \
$$STYLES_CPP/qstyleplugin.cpp \
$$STYLES_CPP/tqstyleplugin.cpp \
$$CODECS_CPP/tqtextcodecplugin.cpp \
$$WIDGETS_CPP/tqwidgetplugin.cpp
}

@ -42,7 +42,7 @@
#define TQCOMMONSTYLE_H
#ifndef QT_H
#include "ntqstyle.h"
#include "tqstyle.h"
#endif // QT_H
#ifndef TQT_NO_STYLE

@ -2,12 +2,12 @@
styles {
STYLES_P = styles
HEADERS +=$$STYLES_H/ntqstylefactory.h \
$$STYLES_P/qstyleinterface_p.h \
$$STYLES_H/ntqstyleplugin.h \
HEADERS +=$$STYLES_H/tqstylefactory.h \
$$STYLES_P/tqstyleinterface_p.h \
$$STYLES_H/tqstyleplugin.h \
$$STYLES_H/ntqcommonstyle.h
SOURCES +=$$STYLES_CPP/qstylefactory.cpp \
$$STYLES_CPP/qstyleplugin.cpp \
SOURCES +=$$STYLES_CPP/tqstylefactory.cpp \
$$STYLES_CPP/tqstyleplugin.cpp \
$$STYLES_CPP/qcommonstyle.cpp
contains( styles, all ) {

@ -38,8 +38,8 @@
**
**********************************************************************/
#include "qstyleinterface_p.h" // up here for GCC 2.7.* compatibility
#include "ntqstylefactory.h"
#include "tqstyleinterface_p.h" // up here for GCC 2.7.* compatibility
#include "tqstylefactory.h"
#ifndef TQT_NO_STYLE
@ -99,7 +99,7 @@ TQStyleFactoryPrivate::~TQStyleFactoryPrivate()
#endif //TQT_NO_COMPONENT
/*!
\class TQStyleFactory ntqstylefactory.h
\class TQStyleFactory tqstylefactory.h
\brief The TQStyleFactory class creates TQStyle objects.
The style factory creates a TQStyle object for a given key with

@ -38,17 +38,17 @@
**
**********************************************************************/
#include "ntqstyleplugin.h"
#include "tqstyleplugin.h"
#ifndef TQT_NO_STYLE
#ifndef TQT_NO_COMPONENT
#include "qstyleinterface_p.h"
#include "tqstyleinterface_p.h"
#include "tqobjectcleanuphandler.h"
#include "ntqstyle.h"
#include "tqstyle.h"
/*!
\class TQStylePlugin ntqstyleplugin.h
\class TQStylePlugin tqstyleplugin.h
\brief The TQStylePlugin class provides an abstract base for custom TQStyle plugins.
\ingroup plugins

@ -60,7 +60,7 @@
#include <ntqdragobject.h>
#include <ntqevent.h>
#include <ntqlistbox.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <tqdatatable.h>
#include <ntqvalidator.h>

@ -783,7 +783,7 @@ SeeAlso: ???
Feature: STYLE
Section: Widgets
Requires: DRAWUTIL
Name: QStyle
Name: TQStyle
SeeAlso: ???
Feature: WIDGET_TOPEXTRA

@ -47,7 +47,7 @@
#include "ntqbitmap.h"
#include "tqtextstream.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
/*!
\class TQCheckBox ntqcheckbox.h

@ -53,7 +53,7 @@
#include "qeffects_p.h"
#include "tqstringlist.h"
#include "ntqcombobox.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include <limits.h>
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"

@ -50,7 +50,7 @@
#include "ntqapplication.h"
#include "tqvaluelist.h"
#include "tqstring.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(TQ_WS_WIN)
#include "qt_windows.h"

@ -48,7 +48,7 @@
#include "ntqapplication.h"
#include "ntqregion.h"
#include "ntqbitmap.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"
#endif

@ -48,7 +48,7 @@
#include <ntqdialog.h>
#endif // TQT_NO_DIALOG
#include <ntqlayout.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <tqmap.h>
struct TQDialogButtonsPrivate

@ -55,7 +55,7 @@
#include "ntqtooltip.h"
#include "ntqguardedptr.h"
#include "ntqcursor.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(TQ_WS_MAC9)
#define MAC_DRAG_HACK

@ -44,7 +44,7 @@
#include "ntqdrawutil.h"
#include "ntqframe.h"
#include "ntqbitmap.h"
#include "ntqstyle.h"
#include "tqstyle.h"
/*!
\class TQFrame

@ -49,7 +49,7 @@
#include "tqobjectlist.h"
#include "ntqdrawutil.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqcheckbox.h"
#include "ntqbuttongroup.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)

@ -46,7 +46,7 @@
#include "ntqbitarray.h"
#include "tqptrvector.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
class TQHeaderData
{

@ -49,8 +49,8 @@
#include "ntqpicture.h"
#include "ntqapplication.h"
#include "ntqsimplerichtext.h"
#include "ntqstylesheet.h"
#include "ntqstyle.h"
#include "tqstylesheet.h"
#include "tqstyle.h"
class TQLabelPrivate
{

@ -58,7 +58,7 @@
#include "ntqpopupmenu.h"
#include "tqstringlist.h"
#include "ntqguardedptr.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqwhatsthis.h"
#include "../kernel/qinternal_p.h"
#include "private/tqtextlayout_p.h"

@ -55,7 +55,7 @@
#include "tqptrdict.h"
#include "ntqtimer.h"
#include "tqstringlist.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqpopupmenu.h"
#include "ntqguardedptr.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)

@ -61,8 +61,8 @@
#include "ntqlineedit.h"
#include "ntqvbox.h"
#include "ntqtooltip.h"
#include "ntqstyle.h"
#include "ntqstylesheet.h"
#include "tqstyle.h"
#include "tqstylesheet.h"
#include "../kernel/qinternal_p.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"

@ -61,7 +61,7 @@
#include "ntqbitmap.h"
#include "ntqdockarea.h"
#include "tqstringlist.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#ifdef TQ_WS_MACX
# include "qt_mac.h"
#endif

@ -53,7 +53,7 @@
#include "ntqlayout.h"
#include "ntqcleanuphandler.h"
#include "../kernel/qinternal_p.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqtimer.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"

@ -53,7 +53,7 @@
#include "ntqguardedptr.h"
#include "qeffects_p.h"
#include "ntqcursor.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqtimer.h"
#include "ntqdatetime.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)

@ -43,7 +43,7 @@
#include "ntqpainter.h"
#include "ntqdrawutil.h"
#include "ntqpixmap.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqwmatrix.h"
#include "../kernel/qinternal_p.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)

@ -50,7 +50,7 @@
#include "ntqguardedptr.h"
#include "ntqapplication.h"
#include "ntqtoolbar.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"
#endif

@ -48,7 +48,7 @@
#include "ntqbitmap.h"
#include "tqtextstream.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
/*!
\class TQRadioButton ntqradiobutton.h

@ -44,7 +44,7 @@
#include "ntqbitmap.h"
#include "ntqapplication.h"
#include "ntqtimer.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#ifndef TQT_NO_CURSOR
#include <ntqcursor.h>
#endif

@ -50,7 +50,7 @@
#include "tqptrdict.h"
#include "ntqapplication.h"
#include "ntqtimer.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqlistview.h"
#ifdef TQ_WS_MAC
# include "qt_mac.h"

@ -45,7 +45,7 @@
#include "ntqtimer.h"
#include "ntqbitmap.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"
#endif

@ -49,7 +49,7 @@
#include "ntqvalidator.h"
#include "ntqpixmapcache.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"
#endif

@ -42,7 +42,7 @@
#include "ntqrect.h"
#include "ntqtimer.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqpainter.h"
class TQSpinWidgetPrivate

@ -50,7 +50,7 @@
#include "tqobjectlist.h"
#include "ntqpainter.h"
#include "tqptrlist.h"
#include "ntqstyle.h"
#include "tqstyle.h"
const uint Default = QT_QSPLITTER_DEFAULT;

@ -46,7 +46,7 @@
#include "ntqpainter.h"
#include "ntqtimer.h"
#include "ntqdrawutil.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqsizegrip.h"
/*!

@ -43,7 +43,7 @@
#include "ntqtoolbutton.h"
#include "ntqtooltip.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqpainter.h"
#include "tqiconset.h"
#include "ntqcursor.h"

@ -46,7 +46,7 @@
#include "tqwidgetstack.h"
#include "ntqbitmap.h"
#include "ntqaccel.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqpainter.h"
#include "ntqtoolbutton.h"

@ -46,14 +46,14 @@
#include <ntqcursor.h>
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqdatetime.h"
#include "private/qapplication_p.h"
#include "ntqtooltip.h"
#include "tqimage.h"
#include "ntqtimer.h"
#include "ntqpainter.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "private/qinternal_p.h"
#ifndef TQT_NO_WORKSPACE
#include "ntqworkspace.h"

@ -54,7 +54,7 @@
#include "ntqcombobox.h"
#include "ntqtimer.h"
#include "tqwidgetlist.h"
#include "ntqstyle.h"
#include "tqstyle.h"
static const char * const arrow_v_xpm[] = {
"7 9 3 1",

@ -46,7 +46,7 @@
#include <ntqlayout.h>
#include <ntqscrollview.h>
#include <ntqpainter.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <tqobjectlist.h>
#include <ntqapplication.h>
#include <tqwidgetlist.h>

@ -46,7 +46,7 @@
#include "ntqpixmap.h"
#include "ntqwmatrix.h"
#include "ntqapplication.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqmainwindow.h"
#include "ntqtooltip.h"
#include "ntqtoolbar.h"

@ -50,7 +50,7 @@
#include "ntqbitmap.h"
#include "ntqtooltip.h"
#include "ntqsimplerichtext.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#if defined(QT_ACCESSIBILITY_SUPPORT)
#include "ntqaccessible.h"
#endif

@ -70,7 +70,7 @@
#include "tqstringlist.h"
#include "ntqcleanuphandler.h"
#include "private/qrichtext_p.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include <limits.h>
#include <stdlib.h>

@ -54,7 +54,7 @@
#include "ntqpixmap.h"
#include "ntqfont.h"
#include "ntqcolor.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqsize.h"
#include "ntqevent.h"
#include "ntqtimer.h"
@ -65,7 +65,7 @@
#include "ntqclipboard.h"
#include "ntqcolordialog.h"
#include "ntqfontdialog.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include "ntqdragobject.h"
#include "ntqurl.h"
#include "ntqcursor.h"

@ -43,7 +43,7 @@
#ifndef QT_H
#include "ntqscrollview.h"
#include "ntqstylesheet.h"
#include "tqstylesheet.h"
#include "tqptrvector.h"
#include "tqvaluelist.h"
#include "tqptrlist.h"

@ -60,7 +60,7 @@
#include "ntqwmatrix.h"
#include "tqimage.h"
#include "ntqscrollbar.h"
#include "ntqstyle.h"
#include "tqstyle.h"
#include "ntqbitmap.h"
// magic non-mdi things

@ -584,7 +584,7 @@
<include location="global" impldecl="in implementation">stdlib.h</include>
<include location="global" impldecl="in implementation">ntqmime.h</include>
<include location="local" impldecl="in implementation">helpwindow.h</include>
<include location="global" impldecl="in implementation">ntqstylesheet.h</include>
<include location="global" impldecl="in implementation">tqstylesheet.h</include>
<include location="global" impldecl="in implementation">ntqapplication.h</include>
<include location="local" impldecl="in implementation">helpdialogimpl.h</include>
<include location="global" impldecl="in implementation">ntqdir.h</include>

@ -81,7 +81,7 @@
<include location="global" impldecl="in declaration">ntqsettings.h</include>
<include location="local" impldecl="in implementation">helpwindow.h</include>
<include location="local" impldecl="in implementation">mainwindow.h</include>
<include location="global" impldecl="in implementation">ntqstylesheet.h</include>
<include location="global" impldecl="in implementation">tqstylesheet.h</include>
<include location="global" impldecl="in implementation">ntqmime.h</include>
<include location="local" impldecl="in implementation">tabbedbrowser.ui.h</include>
</includes>

@ -11,7 +11,7 @@
#include <ntqtoolbutton.h>
#include <ntqpixmap.h>
#include <tqiconset.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <ntqtimer.h>
#include "config.h"

@ -51,7 +51,7 @@
#include <ntqmessagebox.h>
#include <tqobjectlist.h>
#include <ntqpainter.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <ntqtimer.h>
TQAction *ActionDrag::the_action = 0;

@ -99,7 +99,7 @@
#include <ntqmessagebox.h>
#include <ntqbuffer.h>
#include <ntqdir.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <ntqlabel.h>
#include <ntqstatusbar.h>
#include <ntqfile.h>
@ -109,7 +109,7 @@
#include <ntqtimer.h>
#include <ntqlistbox.h>
#include <ntqdockwindow.h>
#include <ntqstylefactory.h>
#include <tqstylefactory.h>
#include <ntqvbox.h>
#include <ntqprocess.h>
#include <ntqsettings.h>

@ -42,7 +42,7 @@
#include <ntqtooltip.h>
#include <ntqapplication.h>
#include <ntqsignalmapper.h>
#include <ntqstylefactory.h>
#include <tqstylefactory.h>
#include <ntqworkspace.h>
#include <ntqmessagebox.h>
#include <ntqstatusbar.h>

@ -38,7 +38,7 @@
#include <ntqlineedit.h>
#include <ntqmainwindow.h>
#include <ntqpainter.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include "command.h"
#include "formwindow.h"
#include "menubareditor.h"

@ -41,7 +41,7 @@
#include <ntqpopupmenu.h>
#include <ntqrect.h>
#include <ntqsize.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <ntqtimer.h>
#include "actiondnd.h"
#include "actioneditorimpl.h"

@ -81,7 +81,7 @@
#include <ntqdragobject.h>
#include <tqdom.h>
#include <ntqprocess.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <ntqdatetimeedit.h>
#include <ntqassistantclient.h>
#include <ntqdrawutil.h>

@ -43,7 +43,7 @@
#include <ntqpixmap.h>
#include <ntqapplication.h>
#include <ntqdragobject.h>
#include <ntqstyle.h>
#include <tqstyle.h>
StyledButton::StyledButton(TQWidget* parent, const char* name)
: TQButton( parent, name ), pix( 0 ), spix( 0 ), s( 0 ), formWindow( 0 ), mousePressed( FALSE )

@ -35,8 +35,8 @@
#include <tqwidget.h>
#include <ntqtoolbutton.h>
#include "mainwindow.h"
#include <ntqstylefactory.h>
#include <ntqstyle.h>
#include <tqstylefactory.h>
#include <tqstyle.h>
static TQStyle *windowsStyle = 0;

@ -37,7 +37,7 @@
#include <ntqcolordialog.h>
#include <ntqpainter.h>
#include <ntqdragobject.h>
#include <ntqstyle.h>
#include <tqstyle.h>
ColorButton::ColorButton(TQWidget *parent, const char *name)

@ -39,7 +39,7 @@
#include <ntqlabel.h>
#include <ntqapplication.h>
#include <ntqcombobox.h>
#include <ntqstylefactory.h>
#include <tqstylefactory.h>
#include <ntqinputcontextfactory.h>
#include <tqobjectlist.h>
#include <ntqfontdatabase.h>
@ -53,7 +53,7 @@
#include <ntqsettings.h>
#include <ntqmessagebox.h>
#include <tqtextview.h>
#include <ntqstyle.h>
#include <tqstyle.h>
#include <stdlib.h>

Loading…
Cancel
Save