Rename style nt* related files to equivalent tq*

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/184/head
Michele Calgaro 6 months ago
parent ddce1c91f8
commit d35eedcd87
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -62,13 +62,13 @@
<area shape="rect" coords="34,344,154,363" href="tqcanvaspolygon.html"> <area shape="rect" coords="34,344,154,363" href="tqcanvaspolygon.html">
<area shape="rect" coords="38,363,154,381" href="tqcanvasspline.html"> <area shape="rect" coords="38,363,154,381" href="tqcanvasspline.html">
<area shape="rect" coords="37,381,155,406" href="tqcanvasrectangle.html"> <area shape="rect" coords="37,381,155,406" href="tqcanvasrectangle.html">
<area shape="rect" coords="37,411,153,434" href="ntqwindowsstyle.html"> <area shape="rect" coords="37,411,153,434" href="tqwindowsstyle.html">
<area shape="rect" coords="38,434,152,451" href="qwindowsxpstyle.html"> <area shape="rect" coords="38,434,152,451" href="tqwindowsxpstyle.html">
<area shape="rect" coords="40,452,150,471" href="qmacstyle.html"> <area shape="rect" coords="40,452,150,471" href="qmacstyle.html">
<area shape="rect" coords="40,472,150,486" href="ntqplatinumstyle.html"> <area shape="rect" coords="40,472,150,486" href="tqplatinumstyle.html">
<area shape="rect" coords="40,486,151,502" href="ntqsgistyle.html"> <area shape="rect" coords="40,486,151,502" href="tqsgistyle.html">
<area shape="rect" coords="40,502,152,523" href="ntqcdestyle.html"> <area shape="rect" coords="40,502,152,523" href="tqcdestyle.html">
<area shape="rect" coords="40,523,149,542" href="ntqmotifplusstyle.html"> <area shape="rect" coords="40,523,149,542" href="tqmotifplusstyle.html">
<area shape="rect" coords="40,542,150,565" href="tqstyleplugin.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="42,572,151,598" href="tqsqleditorfactory.html">
<area shape="rect" coords="41,595,149,612" href="tqsql.html"> <area shape="rect" coords="41,595,149,612" href="tqsql.html">
@ -92,8 +92,8 @@
<area shape="rect" coords="174,309,285,326" href="qresizeevent.html"> <area shape="rect" coords="174,309,285,326" href="qresizeevent.html">
<area shape="rect" coords="174,326,285,344" href="qcustomevent.html"> <area shape="rect" coords="174,326,285,344" href="qcustomevent.html">
<area shape="rect" coords="174,344,285,372" href="qcontextmenuevent.html"> <area shape="rect" coords="174,344,285,372" href="qcontextmenuevent.html">
<area shape="rect" coords="166,389,277,426" href="ntqcommonstyle.html"> <area shape="rect" coords="166,389,277,426" href="tqcommonstyle.html">
<area shape="rect" coords="166,427,273,462" href="ntqmotifstyle.html"> <area shape="rect" coords="166,427,273,462" href="tqmotifstyle.html">
<area shape="rect" coords="167,466,259,487" href="tqftp.html"> <area shape="rect" coords="167,466,259,487" href="tqftp.html">
<area shape="rect" coords="168,487,268,505" href="tqhttp.html"> <area shape="rect" coords="168,487,268,505" href="tqhttp.html">
<area shape="rect" coords="166,505,268,532" href="tqlocalfs.html"> <area shape="rect" coords="166,505,268,532" href="tqlocalfs.html">

@ -64,11 +64,11 @@ applications.
The first step is to pick one of the base styles provided with TQt to The first step is to pick one of the base styles provided with TQt to
build your custom style from. The choice will depend on what look and build your custom style from. The choice will depend on what look and
feel you are trying to achieve. We recommend that you choose from the feel you are trying to achieve. We recommend that you choose from the
QWindowsStyle derived classes or the QMotifStyle derived classes. TQWindowsStyle derived classes or the TQMotifStyle derived classes.
These are the two base look and feel classes in the TQt style engine. These are the two base look and feel classes in the TQt style engine.
Inheriting directly from QCommonStyle is also an option if you want to Inheriting directly from TQCommonStyle is also an option if you want to
start almost from scratch when implementing your style. In this simple start almost from scratch when implementing your style. In this simple
example we will inherit from QWindowsStyle. example we will inherit from TQWindowsStyle.
\section2 2. Re-implement the necessary functions in your derived class. \section2 2. Re-implement the necessary functions in your derived class.
@ -77,15 +77,15 @@ must re-implement the functions that are used to draw those parts
of the interface. If you take a look at the \l{TQStyle} 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 you will find a list of the different primitives, controls and complex
controls. In this example we will first change the look of the controls. In this example we will first change the look of the
standard arrows that are used in the QWindowsStyle. The arrows are standard arrows that are used in the TQWindowsStyle. The arrows are
PrimitiveElements that are drawn by the drawPrimitive() function, PrimitiveElements that are drawn by the drawPrimitive() function,
so we need to re-implement that function. We need the following class so we need to re-implement that function. We need the following class
declaration: declaration:
\code \code
#include <ntqwindowsstyle.h> #include <tqwindowsstyle.h>
class CustomStyle : public QWindowsStyle { class CustomStyle : public TQWindowsStyle {
TQ_OBJECT TQ_OBJECT
public: public:
CustomStyle(); CustomStyle();
@ -179,7 +179,7 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe,
p->drawPolygon( pa ); p->drawPolygon( pa );
} else { } else {
// let the base style handle the other primitives // let the base style handle the other primitives
QWindowsStyle::drawPrimitive( pe, p, r, cg, flags, data ); TQWindowsStyle::drawPrimitive( pe, p, r, cg, flags, data );
} }
} }
\endcode \endcode

@ -380,4 +380,4 @@ provided "as is" without express or implied warranty.
Modifications Copyright 1999 Matt Koss, under the same license as Modifications Copyright 1999 Matt Koss, under the same license as
above. above.
*/ // NOTE: That notice is from qmotifdnd_x11.cpp. */ // NOTE: That notice is from tqmotifdnd_x11.cpp.

@ -119,7 +119,7 @@ Editions.
<td width="100" align="center"><b>X</b></td> <td width="100" align="center"><b>X</b></td>
</tr> </tr>
<tr> <tr>
<td><a href="motif-extension.html"><b>QMotif extension</b></a><br> <td><a href="motif-extension.html"><b>TQMotif extension</b></a><br>
Motif co-existence and migration support.</td> Motif co-existence and migration support.</td>
<td width="100" align="center"><br> <td width="100" align="center"><br>
</td> </td>

@ -185,21 +185,21 @@ The available options are:
\header \i31 GUI Styles \header \i31 GUI Styles
\row \i TQT_NO_STYLE_WINDOWS \row \i TQT_NO_STYLE_WINDOWS
\i Microsoft Windows style (\l QWindowsStyle) \i Microsoft Windows style (\l TQWindowsStyle)
\i TQT_NO_WIDGETS \i TQT_NO_WIDGETS
\row \i TQT_NO_STYLE_MOTIF \row \i TQT_NO_STYLE_MOTIF
\i OSF Motif style (\l QMotifStyle) \i OSF Motif style (\l TQMotifStyle)
\i TQT_NO_WIDGETS \i TQT_NO_WIDGETS
\row \i TQT_NO_STYLE_CDE \row \i TQT_NO_STYLE_CDE
\i Open Group CDE style (\l QCDEStyle) \i Open Group CDE style (\l TQCDEStyle)
\i TQT_NO_STYLE_MOTIF \i TQT_NO_STYLE_MOTIF
\row \i TQT_NO_STYLE_AQUA \row \i TQT_NO_STYLE_AQUA
\i MacOS X style (\l QAquaStyle) \i MacOS X style (\l QAquaStyle)
\row \i TQT_NO_STYLE_PLATINUM \row \i TQT_NO_STYLE_PLATINUM
\i MacOS 9 style (\l QPlatinumStyle) \i MacOS 9 style (\l TQPlatinumStyle)
\i TQT_NO_WIDGETS \i TQT_NO_WIDGETS
\row \i TQT_NO_STYLE_SGI \row \i TQT_NO_STYLE_SGI
\i SGI style (\l QSGIStyle) \i SGI style (\l TQSGIStyle)
\i TQT_NO_STYLE_MOTIF \i TQT_NO_STYLE_MOTIF
\header \i31 Dialogs \header \i31 Dialogs

@ -58,7 +58,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqbutton.html">TQButton</a></b><td>The abstract base class of button widgets, providing functionality common to buttons <tr bgcolor=#f0f0f0><td><b><a href="tqbutton.html">TQButton</a></b><td>The abstract base class of button widgets, providing functionality common to buttons
<tr bgcolor=#f0f0f0><td><b><a href="tqbuttongroup.html">TQButtonGroup</a></b><td>Organizes TQButton widgets in a group <tr bgcolor=#f0f0f0><td><b><a href="tqbuttongroup.html">TQButtonGroup</a></b><td>Organizes TQButton widgets in a group
<tr bgcolor=#f0f0f0><td><b><a href="tqbytearray.html">TQByteArray</a></b><td>Array of bytes <tr bgcolor=#f0f0f0><td><b><a href="tqbytearray.html">TQByteArray</a></b><td>Array of bytes
<tr bgcolor=#f0f0f0><td><b><a href="ntqcdestyle.html">TQCDEStyle</a></b><td>CDE look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqcdestyle.html">TQCDEStyle</a></b><td>CDE look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqcstring.html">TQCString</a></b><td>Abstraction of the classic C zero-terminated char array (char *) <tr bgcolor=#f0f0f0><td><b><a href="tqcstring.html">TQCString</a></b><td>Abstraction of the classic C zero-terminated char array (char *)
<tr bgcolor=#f0f0f0><td><b><a href="tqcache.html">TQCache</a></b><td>Template class that provides a cache based on TQString keys <tr bgcolor=#f0f0f0><td><b><a href="tqcache.html">TQCache</a></b><td>Template class that provides a cache based on TQString keys
<tr bgcolor=#f0f0f0><td><b><a href="tqcacheiterator.html">TQCacheIterator</a></b><td>Iterator for TQCache collections <tr bgcolor=#f0f0f0><td><b><a href="tqcacheiterator.html">TQCacheIterator</a></b><td>Iterator for TQCache collections
@ -90,7 +90,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqcolorgroup.html">TQColorGroup</a></b><td>Group of widget colors <tr bgcolor=#f0f0f0><td><b><a href="tqcolorgroup.html">TQColorGroup</a></b><td>Group of widget colors
<tr bgcolor=#f0f0f0><td><b><a href="tqcombobox.html">TQComboBox</a></b><td>Combined button and popup list <tr bgcolor=#f0f0f0><td><b><a href="tqcombobox.html">TQComboBox</a></b><td>Combined button and popup list
<tr bgcolor=#f0f0f0><td><b><a href="tqcombotableitem.html">TQComboTableItem</a></b><td>Means of using comboboxes in TQTables <tr bgcolor=#f0f0f0><td><b><a href="tqcombotableitem.html">TQComboTableItem</a></b><td>Means of using comboboxes in TQTables
<tr bgcolor=#f0f0f0><td><b><a href="ntqcommonstyle.html">TQCommonStyle</a></b><td>Encapsulates the common Look and Feel of a GUI <tr bgcolor=#f0f0f0><td><b><a href="tqcommonstyle.html">TQCommonStyle</a></b><td>Encapsulates the common Look and Feel of a GUI
<tr bgcolor=#f0f0f0><td><b><a href="tqconststring.html">TQConstString</a></b><td>String objects using constant Unicode data <tr bgcolor=#f0f0f0><td><b><a href="tqconststring.html">TQConstString</a></b><td>String objects using constant Unicode data
<tr bgcolor=#f0f0f0><td><b><a href="qcontextmenuevent.html">TQContextMenuEvent</a></b><td>Parameters that describe a context menu event <tr bgcolor=#f0f0f0><td><b><a href="qcontextmenuevent.html">TQContextMenuEvent</a></b><td>Parameters that describe a context menu event
<tr bgcolor=#f0f0f0><td><b><a href="ntqcursor.html">TQCursor</a></b><td>Mouse cursor with an arbitrary shape <tr bgcolor=#f0f0f0><td><b><a href="ntqcursor.html">TQCursor</a></b><td>Mouse cursor with an arbitrary shape
@ -240,11 +240,11 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="qmetaproperty.html">TQMetaProperty</a></b><td>Stores meta data about a property <tr bgcolor=#f0f0f0><td><b><a href="qmetaproperty.html">TQMetaProperty</a></b><td>Stores meta data about a property
<tr bgcolor=#f0f0f0><td><b><a href="tqmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type <tr bgcolor=#f0f0f0><td><b><a href="tqmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type
<tr bgcolor=#f0f0f0><td><b><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data <tr bgcolor=#f0f0f0><td><b><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data
<tr bgcolor=#f0f0f0><td><b><a href="qmotif.html">TQMotif</a></b><td>The basis of the <a href="motif-extension.html#Motif">Motif</a> Extension <tr bgcolor=#f0f0f0><td><b><a href="tqmotif.html">TQMotif</a></b><td>The basis of the <a href="motif-extension.html#Motif">Motif</a> Extension
<tr bgcolor=#f0f0f0><td><b><a href="qmotifdialog.html">TQMotifDialog</a></b><td>The TQDialog API for Motif-based dialogs <tr bgcolor=#f0f0f0><td><b><a href="tqmotifdialog.html">TQMotifDialog</a></b><td>The TQDialog API for Motif-based dialogs
<tr bgcolor=#f0f0f0><td><b><a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a></b><td>More sophisticated Motif-ish look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqmotifplusstyle.html">TQMotifPlusStyle</a></b><td>More sophisticated Motif-ish look and feel
<tr bgcolor=#f0f0f0><td><b><a href="ntqmotifstyle.html">TQMotifStyle</a></b><td>Motif look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqmotifstyle.html">TQMotifStyle</a></b><td>Motif look and feel
<tr bgcolor=#f0f0f0><td><b><a href="qmotifwidget.html">TQMotifWidget</a></b><td>The TQWidget API for Xt/Motif widgets <tr bgcolor=#f0f0f0><td><b><a href="tqmotifwidget.html">TQMotifWidget</a></b><td>The TQWidget API for Xt/Motif widgets
<tr bgcolor=#f0f0f0><td><b><a href="qmouseevent.html">TQMouseEvent</a></b><td>Parameters that describe a mouse event <tr bgcolor=#f0f0f0><td><b><a href="qmouseevent.html">TQMouseEvent</a></b><td>Parameters that describe a mouse event
<tr bgcolor=#f0f0f0><td><b><a href="qmoveevent.html">TQMoveEvent</a></b><td>Event parameters for move events <tr bgcolor=#f0f0f0><td><b><a href="qmoveevent.html">TQMoveEvent</a></b><td>Event parameters for move events
<tr bgcolor=#f0f0f0><td><b><a href="tqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses <tr bgcolor=#f0f0f0><td><b><a href="tqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses
@ -271,7 +271,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqpicture.html">TQPicture</a></b><td>Paint device that records and replays TQPainter commands <tr bgcolor=#f0f0f0><td><b><a href="tqpicture.html">TQPicture</a></b><td>Paint device that records and replays TQPainter commands
<tr bgcolor=#f0f0f0><td><b><a href="tqpixmap.html">TQPixmap</a></b><td>Off-screen, pixel-based paint device <tr bgcolor=#f0f0f0><td><b><a href="tqpixmap.html">TQPixmap</a></b><td>Off-screen, pixel-based paint device
<tr bgcolor=#f0f0f0><td><b><a href="tqpixmapcache.html">TQPixmapCache</a></b><td>Application-global cache for pixmaps <tr bgcolor=#f0f0f0><td><b><a href="tqpixmapcache.html">TQPixmapCache</a></b><td>Application-global cache for pixmaps
<tr bgcolor=#f0f0f0><td><b><a href="ntqplatinumstyle.html">TQPlatinumStyle</a></b><td>Mac/Platinum look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqplatinumstyle.html">TQPlatinumStyle</a></b><td>Mac/Platinum look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqpoint.html">TQPoint</a></b><td>Defines a point in the plane <tr bgcolor=#f0f0f0><td><b><a href="tqpoint.html">TQPoint</a></b><td>Defines a point in the plane
<tr bgcolor=#f0f0f0><td><b><a href="tqpointarray.html">TQPointArray</a></b><td>Array of points <tr bgcolor=#f0f0f0><td><b><a href="tqpointarray.html">TQPointArray</a></b><td>Array of points
<tr bgcolor=#f0f0f0><td><b><a href="tqpopupmenu.html">TQPopupMenu</a></b><td>Popup menu widget <tr bgcolor=#f0f0f0><td><b><a href="tqpopupmenu.html">TQPopupMenu</a></b><td>Popup menu widget
@ -295,7 +295,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqregexpvalidator.html">TQRegExpValidator</a></b><td>Used to check a string against a <a href="tqregexp.html#regular-expression">regular expression</a> <tr bgcolor=#f0f0f0><td><b><a href="tqregexpvalidator.html">TQRegExpValidator</a></b><td>Used to check a string against a <a href="tqregexp.html#regular-expression">regular expression</a>
<tr bgcolor=#f0f0f0><td><b><a href="tqregion.html">TQRegion</a></b><td>Clip region for a painter <tr bgcolor=#f0f0f0><td><b><a href="tqregion.html">TQRegion</a></b><td>Clip region for a painter
<tr bgcolor=#f0f0f0><td><b><a href="qresizeevent.html">TQResizeEvent</a></b><td>Event parameters for resize events <tr bgcolor=#f0f0f0><td><b><a href="qresizeevent.html">TQResizeEvent</a></b><td>Event parameters for resize events
<tr bgcolor=#f0f0f0><td><b><a href="ntqsgistyle.html">TQSGIStyle</a></b><td>SGI/Irix look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqsgistyle.html">TQSGIStyle</a></b><td>SGI/Irix look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqscrollbar.html">TQScrollBar</a></b><td>Vertical or horizontal scroll bar <tr bgcolor=#f0f0f0><td><b><a href="tqscrollbar.html">TQScrollBar</a></b><td>Vertical or horizontal scroll bar
<tr bgcolor=#f0f0f0><td><b><a href="tqscrollview.html">TQScrollView</a></b><td>Scrolling area with on-demand scroll bars <tr bgcolor=#f0f0f0><td><b><a href="tqscrollview.html">TQScrollView</a></b><td>Scrolling area with on-demand scroll bars
<tr bgcolor=#f0f0f0><td><b><a href="tqsemaphore.html">TQSemaphore</a></b><td>Robust integer semaphore <tr bgcolor=#f0f0f0><td><b><a href="tqsemaphore.html">TQSemaphore</a></b><td>Robust integer semaphore
@ -408,7 +408,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetplugin.html">TQWidgetPlugin</a></b><td>Abstract base for custom TQWidget plugins <tr bgcolor=#f0f0f0><td><b><a href="tqwidgetplugin.html">TQWidgetPlugin</a></b><td>Abstract base for custom TQWidget plugins
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetstack.html">TQWidgetStack</a></b><td>Stack of widgets of which only the top widget is user-visible <tr bgcolor=#f0f0f0><td><b><a href="tqwidgetstack.html">TQWidgetStack</a></b><td>Stack of widgets of which only the top widget is user-visible
<tr bgcolor=#f0f0f0><td><b><a href="tqwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats
<tr bgcolor=#f0f0f0><td><b><a href="ntqwindowsstyle.html">TQWindowsStyle</a></b><td>Microsoft Windows-like look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsstyle.html">TQWindowsStyle</a></b><td>Microsoft Windows-like look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqwizard.html">TQWizard</a></b><td>Framework for wizard dialogs <tr bgcolor=#f0f0f0><td><b><a href="tqwizard.html">TQWizard</a></b><td>Framework for wizard dialogs
<tr bgcolor=#f0f0f0><td><b><a href="tqworkspace.html">TQWorkspace</a></b><td>Workspace window that can contain decorated windows, e.g. for MDI <tr bgcolor=#f0f0f0><td><b><a href="tqworkspace.html">TQWorkspace</a></b><td>Workspace window that can contain decorated windows, e.g. for MDI
<tr bgcolor=#f0f0f0><td><b><a href="tqxmlattributes.html">TQXmlAttributes</a></b><td>XML attributes <tr bgcolor=#f0f0f0><td><b><a href="tqxmlattributes.html">TQXmlAttributes</a></b><td>XML attributes

@ -38,10 +38,10 @@ style.
<p><table width="100%"> <p><table width="100%">
<tr bgcolor=#f0f0f0><td><b><a href="tqboxlayout.html">TQBoxLayout</a></b><td>Lines up child widgets horizontally or vertically <tr bgcolor=#f0f0f0><td><b><a href="tqboxlayout.html">TQBoxLayout</a></b><td>Lines up child widgets horizontally or vertically
<tr bgcolor=#f0f0f0><td><b><a href="tqbuttongroup.html">TQButtonGroup</a></b><td>Organizes TQButton widgets in a group <tr bgcolor=#f0f0f0><td><b><a href="tqbuttongroup.html">TQButtonGroup</a></b><td>Organizes TQButton widgets in a group
<tr bgcolor=#f0f0f0><td><b><a href="ntqcdestyle.html">TQCDEStyle</a></b><td>CDE look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqcdestyle.html">TQCDEStyle</a></b><td>CDE look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqcolor.html">TQColor</a></b><td>Colors based on RGB or HSV values <tr bgcolor=#f0f0f0><td><b><a href="tqcolor.html">TQColor</a></b><td>Colors based on RGB or HSV values
<tr bgcolor=#f0f0f0><td><b><a href="tqcolorgroup.html">TQColorGroup</a></b><td>Group of widget colors <tr bgcolor=#f0f0f0><td><b><a href="tqcolorgroup.html">TQColorGroup</a></b><td>Group of widget colors
<tr bgcolor=#f0f0f0><td><b><a href="ntqcommonstyle.html">TQCommonStyle</a></b><td>Encapsulates the common Look and Feel of a GUI <tr bgcolor=#f0f0f0><td><b><a href="tqcommonstyle.html">TQCommonStyle</a></b><td>Encapsulates the common Look and Feel of a GUI
<tr bgcolor=#f0f0f0><td><b><a href="ntqcursor.html">TQCursor</a></b><td>Mouse cursor with an arbitrary shape <tr bgcolor=#f0f0f0><td><b><a href="ntqcursor.html">TQCursor</a></b><td>Mouse cursor with an arbitrary shape
<tr bgcolor=#f0f0f0><td><b><a href="tqfont.html">TQFont</a></b><td>Font used for drawing text <tr bgcolor=#f0f0f0><td><b><a href="tqfont.html">TQFont</a></b><td>Font used for drawing text
<tr bgcolor=#f0f0f0><td><b><a href="tqglayoutiterator.html">TQGLayoutIterator</a></b><td>Abstract base class of internal layout iterators <tr bgcolor=#f0f0f0><td><b><a href="tqglayoutiterator.html">TQGLayoutIterator</a></b><td>Abstract base class of internal layout iterators
@ -56,11 +56,11 @@ style.
<tr bgcolor=#f0f0f0><td><b><a href="tqlayoutitem.html">TQLayoutItem</a></b><td>Abstract item that a TQLayout manipulates <tr bgcolor=#f0f0f0><td><b><a href="tqlayoutitem.html">TQLayoutItem</a></b><td>Abstract item that a TQLayout manipulates
<tr bgcolor=#f0f0f0><td><b><a href="tqlayoutiterator.html">TQLayoutIterator</a></b><td>Iterators over TQLayoutItem <tr bgcolor=#f0f0f0><td><b><a href="tqlayoutiterator.html">TQLayoutIterator</a></b><td>Iterators over TQLayoutItem
<tr bgcolor=#f0f0f0><td><b><a href="qmacstyle.html">TQMacStyle</a></b><td>Implements an Appearance Manager style <tr bgcolor=#f0f0f0><td><b><a href="qmacstyle.html">TQMacStyle</a></b><td>Implements an Appearance Manager style
<tr bgcolor=#f0f0f0><td><b><a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a></b><td>More sophisticated Motif-ish look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqmotifplusstyle.html">TQMotifPlusStyle</a></b><td>More sophisticated Motif-ish look and feel
<tr bgcolor=#f0f0f0><td><b><a href="ntqmotifstyle.html">TQMotifStyle</a></b><td>Motif look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqmotifstyle.html">TQMotifStyle</a></b><td>Motif look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqpalette.html">TQPalette</a></b><td>Color groups for each widget state <tr bgcolor=#f0f0f0><td><b><a href="tqpalette.html">TQPalette</a></b><td>Color groups for each widget state
<tr bgcolor=#f0f0f0><td><b><a href="ntqplatinumstyle.html">TQPlatinumStyle</a></b><td>Mac/Platinum look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqplatinumstyle.html">TQPlatinumStyle</a></b><td>Mac/Platinum look and feel
<tr bgcolor=#f0f0f0><td><b><a href="ntqsgistyle.html">TQSGIStyle</a></b><td>SGI/Irix look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqsgistyle.html">TQSGIStyle</a></b><td>SGI/Irix look and feel
<tr bgcolor=#f0f0f0><td><b><a href="tqsizegrip.html">TQSizeGrip</a></b><td>Corner-grip for resizing a top-level window <tr bgcolor=#f0f0f0><td><b><a href="tqsizegrip.html">TQSizeGrip</a></b><td>Corner-grip for resizing a top-level window
<tr bgcolor=#f0f0f0><td><b><a href="tqsizepolicy.html">TQSizePolicy</a></b><td>Layout attribute describing horizontal and vertical resizing policy <tr bgcolor=#f0f0f0><td><b><a href="tqsizepolicy.html">TQSizePolicy</a></b><td>Layout attribute describing horizontal and vertical resizing policy
<tr bgcolor=#f0f0f0><td><b><a href="tqspaceritem.html">TQSpacerItem</a></b><td>Blank space in a layout <tr bgcolor=#f0f0f0><td><b><a href="tqspaceritem.html">TQSpacerItem</a></b><td>Blank space in a layout
@ -71,7 +71,7 @@ style.
<tr bgcolor=#f0f0f0><td><b><a href="tqvbuttongroup.html">TQVButtonGroup</a></b><td>Organizes TQButton widgets in a vertical column <tr bgcolor=#f0f0f0><td><b><a href="tqvbuttongroup.html">TQVButtonGroup</a></b><td>Organizes TQButton widgets in a vertical column
<tr bgcolor=#f0f0f0><td><b><a href="tqvgroupbox.html">TQVGroupBox</a></b><td>Organizes a group of widgets in a vertical column <tr bgcolor=#f0f0f0><td><b><a href="tqvgroupbox.html">TQVGroupBox</a></b><td>Organizes a group of widgets in a vertical column
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetitem.html">TQWidgetItem</a></b><td>Layout item that represents a widget <tr bgcolor=#f0f0f0><td><b><a href="tqwidgetitem.html">TQWidgetItem</a></b><td>Layout item that represents a widget
<tr bgcolor=#f0f0f0><td><b><a href="ntqwindowsstyle.html">TQWindowsStyle</a></b><td>Microsoft Windows-like look and feel <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsstyle.html">TQWindowsStyle</a></b><td>Microsoft Windows-like look and feel
</table> </table>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -52,13 +52,13 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="34,344,154,363" href="tqcanvaspolygon.html"> <area shape="rect" coords="34,344,154,363" href="tqcanvaspolygon.html">
<area shape="rect" coords="38,363,154,381" href="tqcanvasspline.html"> <area shape="rect" coords="38,363,154,381" href="tqcanvasspline.html">
<area shape="rect" coords="37,381,155,406" href="tqcanvasrectangle.html"> <area shape="rect" coords="37,381,155,406" href="tqcanvasrectangle.html">
<area shape="rect" coords="37,411,153,434" href="ntqwindowsstyle.html"> <area shape="rect" coords="37,411,153,434" href="tqwindowsstyle.html">
<area shape="rect" coords="38,434,152,451" href="qwindowsxpstyle.html"> <area shape="rect" coords="38,434,152,451" href="tqwindowsxpstyle.html">
<area shape="rect" coords="40,452,150,471" href="qmacstyle.html"> <area shape="rect" coords="40,452,150,471" href="qmacstyle.html">
<area shape="rect" coords="40,472,150,486" href="ntqplatinumstyle.html"> <area shape="rect" coords="40,472,150,486" href="tqplatinumstyle.html">
<area shape="rect" coords="40,486,151,502" href="ntqsgistyle.html"> <area shape="rect" coords="40,486,151,502" href="tqsgistyle.html">
<area shape="rect" coords="40,502,152,523" href="ntqcdestyle.html"> <area shape="rect" coords="40,502,152,523" href="tqcdestyle.html">
<area shape="rect" coords="40,523,149,542" href="ntqmotifplusstyle.html"> <area shape="rect" coords="40,523,149,542" href="tqmotifplusstyle.html">
<area shape="rect" coords="40,542,150,565" href="tqstyleplugin.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="42,572,151,598" href="tqsqleditorfactory.html">
<area shape="rect" coords="41,595,149,612" href="tqsql.html"> <area shape="rect" coords="41,595,149,612" href="tqsql.html">
@ -82,8 +82,8 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="174,309,285,326" href="qresizeevent.html"> <area shape="rect" coords="174,309,285,326" href="qresizeevent.html">
<area shape="rect" coords="174,326,285,344" href="qcustomevent.html"> <area shape="rect" coords="174,326,285,344" href="qcustomevent.html">
<area shape="rect" coords="174,344,285,372" href="qcontextmenuevent.html"> <area shape="rect" coords="174,344,285,372" href="qcontextmenuevent.html">
<area shape="rect" coords="166,389,277,426" href="ntqcommonstyle.html"> <area shape="rect" coords="166,389,277,426" href="tqcommonstyle.html">
<area shape="rect" coords="166,427,273,462" href="ntqmotifstyle.html"> <area shape="rect" coords="166,427,273,462" href="tqmotifstyle.html">
<area shape="rect" coords="167,466,259,487" href="tqftp.html"> <area shape="rect" coords="167,466,259,487" href="tqftp.html">
<area shape="rect" coords="168,487,268,505" href="tqhttp.html"> <area shape="rect" coords="168,487,268,505" href="tqhttp.html">
<area shape="rect" coords="166,505,268,532" href="tqlocalfs.html"> <area shape="rect" coords="166,505,268,532" href="tqlocalfs.html">

@ -55,7 +55,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqiconviewitem.html">TQIconViewItem</a> <td><a href="tqiconviewitem.html">TQIconViewItem</a>
<td align="right"> <td align="right">
<td><a href="ntqplatinumstyle.html">TQPlatinumStyle</a> <td><a href="tqplatinumstyle.html">TQPlatinumStyle</a>
<td align="right"> <td align="right">
<td><a href="tqtabdialog.html">TQTabDialog</a> <td><a href="tqtabdialog.html">TQTabDialog</a>
<tr> <tr>
@ -407,7 +407,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqlistboxtext.html">TQListBoxText</a> <td><a href="tqlistboxtext.html">TQListBoxText</a>
<td align="right"> <td align="right">
<td><a href="ntqsgistyle.html">TQSGIStyle</a> <td><a href="tqsgistyle.html">TQSGIStyle</a>
<td align="right"> <td align="right">
<td><a href="tqurlinfo.html">TQUrlInfo</a> <td><a href="tqurlinfo.html">TQUrlInfo</a>
<tr> <tr>
@ -566,7 +566,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td><a href="tqwaitcondition.html">TQWaitCondition</a> <td><a href="tqwaitcondition.html">TQWaitCondition</a>
<tr> <tr>
<td align="right"> <td align="right">
<td><a href="ntqcdestyle.html">TQCDEStyle</a> <td><a href="tqcdestyle.html">TQCDEStyle</a>
<td align="right"> <td align="right">
<td><a href="tqfontmetrics.html">TQFontMetrics</a> <td><a href="tqfontmetrics.html">TQFontMetrics</a>
<td align="right"> <td align="right">
@ -625,7 +625,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqgbkcodec.html">TQGbkCodec</a> <td><a href="tqgbkcodec.html">TQGbkCodec</a>
<td align="right"> <td align="right">
<td><a href="qmotif.html">TQMotif</a> <td><a href="tqmotif.html">TQMotif</a>
*<td align="right"> *<td align="right">
<td><a href="tqsqldatabase.html">TQSqlDatabase</a> <td><a href="tqsqldatabase.html">TQSqlDatabase</a>
<td align="right"> <td align="right">
@ -636,7 +636,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td align="right"> <td align="right">
<td align="right"> <td align="right">
<td><a href="qmotifdialog.html">TQMotifDialog</a> <td><a href="tqmotifdialog.html">TQMotifDialog</a>
*<td align="right"> *<td align="right">
<td><a href="tqsqldriver.html">TQSqlDriver</a> <td><a href="tqsqldriver.html">TQSqlDriver</a>
<td align="right"> <td align="right">
@ -647,7 +647,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td align="right"> <td align="right">
<td align="right"> <td align="right">
<td><a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a> <td><a href="tqmotifplusstyle.html">TQMotifPlusStyle</a>
<td align="right"> <td align="right">
<td><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a> <td><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a>
<td align="right"> <td align="right">
@ -658,18 +658,18 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqgl.html">TQGL</a> <td><a href="tqgl.html">TQGL</a>
<td align="right"> <td align="right">
<td><a href="ntqmotifstyle.html">TQMotifStyle</a> <td><a href="tqmotifstyle.html">TQMotifStyle</a>
<td align="right"> <td align="right">
<td><a href="tqsqleditorfactory.html">TQSqlEditorFactory</a> <td><a href="tqsqleditorfactory.html">TQSqlEditorFactory</a>
<td align="right"> <td align="right">
<td><a href="ntqwindowsstyle.html">TQWindowsStyle</a> <td><a href="tqwindowsstyle.html">TQWindowsStyle</a>
<tr> <tr>
<td align="right"> <td align="right">
<td><a href="tqcolor.html">TQColor</a> <td><a href="tqcolor.html">TQColor</a>
<td align="right"> <td align="right">
<td><a href="tqglayoutiterator.html">TQGLayoutIterator</a> <td><a href="tqglayoutiterator.html">TQGLayoutIterator</a>
<td align="right"> <td align="right">
<td><a href="qmotifwidget.html">TQMotifWidget</a> <td><a href="tqmotifwidget.html">TQMotifWidget</a>
*<td align="right"> *<td align="right">
<td><a href="tqsqlerror.html">TQSqlError</a> <td><a href="tqsqlerror.html">TQSqlError</a>
<td align="right"> <td align="right">
@ -730,7 +730,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><tr> <td><tr>
<td align="right"> <td align="right">
<td><a href="ntqcommonstyle.html">TQCommonStyle</a> <td><a href="tqcommonstyle.html">TQCommonStyle</a>
<td align="right"> <td align="right">
<td><a href="tqgridlayout.html">TQGridLayout</a> <td><a href="tqgridlayout.html">TQGridLayout</a>
<td align="right"> <td align="right">

@ -54,9 +54,9 @@ applications.
<a name="1-1"></a><p> The first step is to pick one of the base styles provided with TQt to <a name="1-1"></a><p> The first step is to pick one of the base styles provided with TQt to
build your custom style from. The choice will depend on what look and build your custom style from. The choice will depend on what look and
feel you are trying to achieve. We recommend that you choose from the feel you are trying to achieve. We recommend that you choose from the
<a href="ntqwindowsstyle.html">TQWindowsStyle</a> derived classes or the <a href="ntqmotifstyle.html">TQMotifStyle</a> derived classes. <a href="tqwindowsstyle.html">TQWindowsStyle</a> derived classes or the <a href="tqmotifstyle.html">TQMotifStyle</a> derived classes.
These are the two base look and feel classes in the TQt style engine. These are the two base look and feel classes in the TQt style engine.
Inheriting directly from <a href="ntqcommonstyle.html">TQCommonStyle</a> is also an option if you want to Inheriting directly from <a href="tqcommonstyle.html">TQCommonStyle</a> is also an option if you want to
start almost from scratch when implementing your style. In this simple start almost from scratch when implementing your style. In this simple
example we will inherit from TQWindowsStyle. example we will inherit from TQWindowsStyle.
<p> <h3> 2. Re-implement the necessary functions in your derived class. <p> <h3> 2. Re-implement the necessary functions in your derived class.
@ -71,9 +71,9 @@ PrimitiveElements that are drawn by the drawPrimitive() function,
so we need to re-implement that function. We need the following class so we need to re-implement that function. We need the following class
declaration: declaration:
<p> <pre> <p> <pre>
#include &lt;<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>&gt; #include &lt;<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>&gt;
class CustomStyle : public <a href="ntqwindowsstyle.html">TQWindowsStyle</a> { class CustomStyle : public <a href="tqwindowsstyle.html">TQWindowsStyle</a> {
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
public: public:
CustomStyle(); CustomStyle();

@ -56,7 +56,7 @@ abort:
<a href="tqaction.html#accel">TQAction</a> <a href="tqbutton.html#accel">TQButton</a> <a href="tqbutton.html#accel">TQCheckBox</a> <a href="tqmenudata.html#accel">TQMenuData</a> <a href="tqmenudata.html#accel">TQPopupMenu</a> <a href="tqbutton.html#accel">TQPushButton</a> <a href="tqbutton.html#accel">TQRadioButton</a><li>accept: <a href="tqaction.html#accel">TQAction</a> <a href="tqbutton.html#accel">TQButton</a> <a href="tqbutton.html#accel">TQCheckBox</a> <a href="tqmenudata.html#accel">TQMenuData</a> <a href="tqmenudata.html#accel">TQPopupMenu</a> <a href="tqbutton.html#accel">TQPushButton</a> <a href="tqbutton.html#accel">TQRadioButton</a><li>accept:
<a href="qcloseevent.html#accept">TQCloseEvent</a> <a href="qcontextmenuevent.html#accept">TQContextMenuEvent</a> <a href="tqdialog.html#accept">TQDialog</a> <a href="tqdragmoveevent.html#accept">TQDragMoveEvent</a> <a href="tqdropevent.html#accept">TQDropEvent</a> <a href="qimevent.html#accept">TQIMEvent</a> <a href="tqicondragevent.html#accept">TQIconDragEvent</a> <a href="qkeyevent.html#accept">TQKeyEvent</a> <a href="qmouseevent.html#accept">TQMouseEvent</a> <a href="tqsocketdevice.html#accept">TQSocketDevice</a> <a href="tqtabletevent.html#accept">TQTabletEvent</a> <a href="qwheelevent.html#accept">TQWheelEvent</a><li>acceptAction: <a href="qcloseevent.html#accept">TQCloseEvent</a> <a href="qcontextmenuevent.html#accept">TQContextMenuEvent</a> <a href="tqdialog.html#accept">TQDialog</a> <a href="tqdragmoveevent.html#accept">TQDragMoveEvent</a> <a href="tqdropevent.html#accept">TQDropEvent</a> <a href="qimevent.html#accept">TQIMEvent</a> <a href="tqicondragevent.html#accept">TQIconDragEvent</a> <a href="qkeyevent.html#accept">TQKeyEvent</a> <a href="qmouseevent.html#accept">TQMouseEvent</a> <a href="tqsocketdevice.html#accept">TQSocketDevice</a> <a href="tqtabletevent.html#accept">TQTabletEvent</a> <a href="qwheelevent.html#accept">TQWheelEvent</a><li>acceptAction:
<a href="tqdropevent.html#acceptAction">TQDropEvent</a><li>acceptCallback: <a href="tqdropevent.html#acceptAction">TQDropEvent</a><li>acceptCallback:
<a href="qmotifdialog.html#acceptCallback">TQMotifDialog</a><li>acceptDrop: <a href="tqmotifdialog.html#acceptCallback">TQMotifDialog</a><li>acceptDrop:
<a href="tqiconviewitem.html#acceptDrop">TQIconViewItem</a> <a href="tqlistviewitem.html#acceptDrop">TQListViewItem</a><li>acceptDrops: <a href="tqiconviewitem.html#acceptDrop">TQIconViewItem</a> <a href="tqlistviewitem.html#acceptDrop">TQListViewItem</a><li>acceptDrops:
<a href="tqwidget.html#acceptDrops">TQWidget</a><li>accum: <a href="tqwidget.html#acceptDrops">TQWidget</a><li>accum:
<a href="tqglformat.html#accum">TQGLFormat</a><li>action: <a href="tqglformat.html#accum">TQGLFormat</a><li>action:
@ -155,7 +155,7 @@ abort:
<a href="tqcstring.html#append">TQCString</a> <a href="tqicondrag.html#append">TQIconDrag</a> <a href="tqptrlist.html#append">TQPtrList</a> <a href="tqsqlcursor.html#append">TQSqlCursor</a> <a href="tqsqlindex.html#append">TQSqlIndex</a> <a href="tqsqlrecord.html#append">TQSqlRecord</a> <a href="tqstring.html#append">TQString</a> <a href="tqtextedit.html#append">TQTextEdit</a> <a href="tqvaluelist.html#append">TQValueList</a> <a href="tqvaluevector.html#append">TQValueVector</a> <a href="tqxmlattributes.html#append">TQXmlAttributes</a><li>appendChild: <a href="tqcstring.html#append">TQCString</a> <a href="tqicondrag.html#append">TQIconDrag</a> <a href="tqptrlist.html#append">TQPtrList</a> <a href="tqsqlcursor.html#append">TQSqlCursor</a> <a href="tqsqlindex.html#append">TQSqlIndex</a> <a href="tqsqlrecord.html#append">TQSqlRecord</a> <a href="tqstring.html#append">TQString</a> <a href="tqtextedit.html#append">TQTextEdit</a> <a href="tqvaluelist.html#append">TQValueList</a> <a href="tqvaluevector.html#append">TQValueVector</a> <a href="tqxmlattributes.html#append">TQXmlAttributes</a><li>appendChild:
<a href="tqdomnode.html#appendChild">TQDomNode</a><li>appendData: <a href="tqdomnode.html#appendChild">TQDomNode</a><li>appendData:
<a href="tqdomcharacterdata.html#appendData">TQDomCharacterData</a><li>applicationContext: <a href="tqdomcharacterdata.html#appendData">TQDomCharacterData</a><li>applicationContext:
<a href="qmotif.html#applicationContext">TQMotif</a><li>applicationDirPath: <a href="tqmotif.html#applicationContext">TQMotif</a><li>applicationDirPath:
<a href="ntqapplication.html#applicationDirPath">TQApplication</a><li>applicationFilePath: <a href="ntqapplication.html#applicationDirPath">TQApplication</a><li>applicationFilePath:
<a href="ntqapplication.html#applicationFilePath">TQApplication</a><li>applyButtonPressed: <a href="ntqapplication.html#applicationFilePath">TQApplication</a><li>applyButtonPressed:
<a href="tqtabdialog.html#applyButtonPressed">TQTabDialog</a><li>appropriate: <a href="tqtabdialog.html#applyButtonPressed">TQTabDialog</a><li>appropriate:
@ -706,7 +706,7 @@ dark:
<a href="tqdial.html#dialMoved">TQDial</a><li>dialPressed: <a href="tqdial.html#dialMoved">TQDial</a><li>dialPressed:
<a href="tqdial.html#dialPressed">TQDial</a><li>dialReleased: <a href="tqdial.html#dialPressed">TQDial</a><li>dialReleased:
<a href="tqdial.html#dialReleased">TQDial</a><li>dialog: <a href="tqdial.html#dialReleased">TQDial</a><li>dialog:
<a href="qmotifdialog.html#dialog">TQMotifDialog</a><li>digitValue: <a href="tqmotifdialog.html#dialog">TQMotifDialog</a><li>digitValue:
<a href="tqchar.html#digitValue">TQChar</a><li>dimensionChange: <a href="tqchar.html#digitValue">TQChar</a><li>dimensionChange:
<a href="tqgridview.html#dimensionChange">TQGridView</a><li>dir: <a href="tqgridview.html#dimensionChange">TQGridView</a><li>dir:
<a href="tqfiledialog.html#dir">TQFileDialog</a> <a href="tqfileinfo.html#dir">TQFileInfo</a><li>dirEntered: <a href="tqfiledialog.html#dir">TQFileDialog</a> <a href="tqfileinfo.html#dir">TQFileInfo</a><li>dirEntered:
@ -793,7 +793,7 @@ dark:
<a href="tqpainter.html#drawPolyline">TQPainter</a><li>drawPrimitive: <a href="tqpainter.html#drawPolyline">TQPainter</a><li>drawPrimitive:
<a href="tqstyle.html#drawPrimitive">TQStyle</a><li>drawRect: <a href="tqstyle.html#drawPrimitive">TQStyle</a><li>drawRect:
<a href="tqpainter.html#drawRect">TQPainter</a><li>drawRiffles: <a href="tqpainter.html#drawRect">TQPainter</a><li>drawRiffles:
<a href="ntqplatinumstyle.html#drawRiffles">TQPlatinumStyle</a><li>drawRoundRect: <a href="tqplatinumstyle.html#drawRiffles">TQPlatinumStyle</a><li>drawRoundRect:
<a href="tqpainter.html#drawRoundRect">TQPainter</a><li>drawRubber: <a href="tqpainter.html#drawRoundRect">TQPainter</a><li>drawRubber:
<a href="tqiconview.html#drawRubber">TQIconView</a><li>drawShape: <a href="tqiconview.html#drawRubber">TQIconView</a><li>drawShape:
<a href="tqcanvasellipse.html#drawShape">TQCanvasEllipse</a> <a href="tqcanvaspolygon.html#drawShape">TQCanvasPolygon</a> <a href="tqcanvaspolygonalitem.html#drawShape">TQCanvasPolygonalItem</a> <a href="tqcanvasrectangle.html#drawShape">TQCanvasRectangle</a><li>drawText: <a href="tqcanvasellipse.html#drawShape">TQCanvasEllipse</a> <a href="tqcanvaspolygon.html#drawShape">TQCanvasPolygon</a> <a href="tqcanvaspolygonalitem.html#drawShape">TQCanvasPolygonalItem</a> <a href="tqcanvasrectangle.html#drawShape">TQCanvasRectangle</a><li>drawText:
@ -1664,12 +1664,12 @@ m11:
<a href="tqimage.html#mirror">TQImage</a><li>mirrored: <a href="tqimage.html#mirror">TQImage</a><li>mirrored:
<a href="tqchar.html#mirrored">TQChar</a><li>mirroredChar: <a href="tqchar.html#mirrored">TQChar</a><li>mirroredChar:
<a href="tqchar.html#mirroredChar">TQChar</a><li>mixedColor: <a href="tqchar.html#mirroredChar">TQChar</a><li>mixedColor:
<a href="ntqplatinumstyle.html#mixedColor">TQPlatinumStyle</a><li>mkdir: <a href="tqplatinumstyle.html#mixedColor">TQPlatinumStyle</a><li>mkdir:
<a href="tqdir.html#mkdir">TQDir</a> <a href="tqftp.html#mkdir">TQFtp</a> <a href="tqurloperator.html#mkdir">TQUrlOperator</a><li>mode: <a href="tqdir.html#mkdir">TQDir</a> <a href="tqftp.html#mkdir">TQFtp</a> <a href="tqurloperator.html#mkdir">TQUrlOperator</a><li>mode:
<a href="tqfiledialog.html#mode">TQFileDialog</a> <a href="tqiodevice.html#mode">TQIODevice</a> <a href="tqlcdnumber.html#mode">TQLCDNumber</a> <a href="qnpinstance.html#mode">TQNPInstance</a> <a href="tqsqlcursor.html#mode">TQSqlCursor</a><li>modificationChanged: <a href="tqfiledialog.html#mode">TQFileDialog</a> <a href="tqiodevice.html#mode">TQIODevice</a> <a href="tqlcdnumber.html#mode">TQLCDNumber</a> <a href="qnpinstance.html#mode">TQNPInstance</a> <a href="tqsqlcursor.html#mode">TQSqlCursor</a><li>modificationChanged:
<a href="tqtextedit.html#modificationChanged">TQTextEdit</a><li>month: <a href="tqtextedit.html#modificationChanged">TQTextEdit</a><li>month:
<a href="tqdate.html#month">TQDate</a><li>motifWidget: <a href="tqdate.html#month">TQDate</a><li>motifWidget:
<a href="qmotifwidget.html#motifWidget">TQMotifWidget</a><li>mouseButtonClicked: <a href="tqmotifwidget.html#motifWidget">TQMotifWidget</a><li>mouseButtonClicked:
<a href="tqiconview.html#mouseButtonClicked">TQIconView</a> <a href="tqlistbox.html#mouseButtonClicked">TQListBox</a> <a href="tqlistview.html#mouseButtonClicked">TQListView</a><li>mouseButtonPressed: <a href="tqiconview.html#mouseButtonClicked">TQIconView</a> <a href="tqlistbox.html#mouseButtonClicked">TQListBox</a> <a href="tqlistview.html#mouseButtonClicked">TQListView</a><li>mouseButtonPressed:
<a href="tqiconview.html#mouseButtonPressed">TQIconView</a> <a href="tqlistbox.html#mouseButtonPressed">TQListBox</a> <a href="tqlistview.html#mouseButtonPressed">TQListView</a><li>mouseDoubleClickEvent: <a href="tqiconview.html#mouseButtonPressed">TQIconView</a> <a href="tqlistbox.html#mouseButtonPressed">TQListBox</a> <a href="tqlistview.html#mouseButtonPressed">TQListView</a><li>mouseDoubleClickEvent:
<a href="tqwidget.html#mouseDoubleClickEvent">TQWidget</a><li>mouseGrabber: <a href="tqwidget.html#mouseDoubleClickEvent">TQWidget</a><li>mouseGrabber:
@ -2110,7 +2110,7 @@ rBottom:
<a href="tqsqldatabase.html#registerSqlDriver">TQSqlDatabase</a><li>rehighlight: <a href="tqsqldatabase.html#registerSqlDriver">TQSqlDatabase</a><li>rehighlight:
<a href="tqsyntaxhighlighter.html#rehighlight">TQSyntaxHighlighter</a><li>reject: <a href="tqsyntaxhighlighter.html#rehighlight">TQSyntaxHighlighter</a><li>reject:
<a href="tqdialog.html#reject">TQDialog</a><li>rejectCallback: <a href="tqdialog.html#reject">TQDialog</a><li>rejectCallback:
<a href="qmotifdialog.html#rejectCallback">TQMotifDialog</a><li>release: <a href="tqmotifdialog.html#rejectCallback">TQMotifDialog</a><li>release:
<a href="tqsessionmanager.html#release">TQSessionManager</a><li>releaseKeyboard: <a href="tqsessionmanager.html#release">TQSessionManager</a><li>releaseKeyboard:
<a href="tqwidget.html#releaseKeyboard">TQWidget</a><li>releaseMouse: <a href="tqwidget.html#releaseKeyboard">TQWidget</a><li>releaseMouse:
<a href="tqwidget.html#releaseMouse">TQWidget</a><li>released: <a href="tqwidget.html#releaseMouse">TQWidget</a><li>released:
@ -2967,7 +2967,7 @@ sRect:
<a href="tqwidget.html#setUpdatesEnabled">TQWidget</a><li>setUris: <a href="tqwidget.html#setUpdatesEnabled">TQWidget</a><li>setUris:
<a href="tquridrag.html#setUris">TQUriDrag</a><li>setUrl: <a href="tquridrag.html#setUris">TQUriDrag</a><li>setUrl:
<a href="tqfiledialog.html#setUrl">TQFileDialog</a> <a href="tqnetworkprotocol.html#setUrl">TQNetworkProtocol</a><li>setUseHighlightColors: <a href="tqfiledialog.html#setUrl">TQFileDialog</a> <a href="tqnetworkprotocol.html#setUrl">TQNetworkProtocol</a><li>setUseHighlightColors:
<a href="ntqmotifstyle.html#setUseHighlightColors">TQMotifStyle</a><li>setUser: <a href="tqmotifstyle.html#setUseHighlightColors">TQMotifStyle</a><li>setUser:
<a href="tqurl.html#setUser">TQUrl</a><li>setUserName: <a href="tqurl.html#setUser">TQUrl</a><li>setUserName:
<a href="tqsqldatabase.html#setUserName">TQSqlDatabase</a><li>setUsesBigPixmap: <a href="tqsqldatabase.html#setUserName">TQSqlDatabase</a><li>setUsesBigPixmap:
<a href="tqtoolbutton.html#setUsesBigPixmap">TQToolButton</a><li>setUsesBigPixmaps: <a href="tqtoolbutton.html#setUsesBigPixmap">TQToolButton</a><li>setUsesBigPixmaps:
@ -3027,7 +3027,7 @@ sRect:
<a href="tqcolorgroup.html#shadow">TQColorGroup</a><li>shape: <a href="tqcolorgroup.html#shadow">TQColorGroup</a><li>shape:
<a href="ntqcursor.html#shape">TQCursor</a> <a href="tqtabbar.html#shape">TQTabBar</a><li>shear: <a href="ntqcursor.html#shape">TQCursor</a> <a href="tqtabbar.html#shape">TQTabBar</a><li>shear:
<a href="tqpainter.html#shear">TQPainter</a> <a href="tqwmatrix.html#shear">TQWMatrix</a><li>shell: <a href="tqpainter.html#shear">TQPainter</a> <a href="tqwmatrix.html#shear">TQWMatrix</a><li>shell:
<a href="qmotifdialog.html#shell">TQMotifDialog</a><li>shortDayName: <a href="tqmotifdialog.html#shell">TQMotifDialog</a><li>shortDayName:
<a href="tqdate.html#shortDayName">TQDate</a><li>shortMonthName: <a href="tqdate.html#shortDayName">TQDate</a><li>shortMonthName:
<a href="tqdate.html#shortMonthName">TQDate</a><li>shortcutKey: <a href="tqdate.html#shortMonthName">TQDate</a><li>shortcutKey:
<a href="ntqaccel.html#shortcutKey">TQAccel</a><li>show: <a href="ntqaccel.html#shortcutKey">TQAccel</a><li>show:
@ -3396,7 +3396,7 @@ ucs2:
<a href="tquridrag.html#uriToLocalFile">TQUriDrag</a><li>uriToUnicodeUri: <a href="tquridrag.html#uriToLocalFile">TQUriDrag</a><li>uriToUnicodeUri:
<a href="tquridrag.html#uriToUnicodeUri">TQUriDrag</a><li>url: <a href="tquridrag.html#uriToUnicodeUri">TQUriDrag</a><li>url:
<a href="tqfiledialog.html#url">TQFileDialog</a> <a href="qnpstream.html#url">TQNPStream</a> <a href="tqnetworkprotocol.html#url">TQNetworkProtocol</a><li>useHighlightColors: <a href="tqfiledialog.html#url">TQFileDialog</a> <a href="qnpstream.html#url">TQNPStream</a> <a href="tqnetworkprotocol.html#url">TQNetworkProtocol</a><li>useHighlightColors:
<a href="ntqmotifstyle.html#useHighlightColors">TQMotifStyle</a><li>user: <a href="tqmotifstyle.html#useHighlightColors">TQMotifStyle</a><li>user:
<a href="tqurl.html#user">TQUrl</a><li>userAgent: <a href="tqurl.html#user">TQUrl</a><li>userAgent:
<a href="qnpinstance.html#userAgent">TQNPInstance</a><li>userName: <a href="qnpinstance.html#userAgent">TQNPInstance</a><li>userName:
<a href="tqsqldatabase.html#userName">TQSqlDatabase</a><li>uses3D: <a href="tqsqldatabase.html#userName">TQSqlDatabase</a><li>uses3D:
@ -3518,7 +3518,7 @@ x:
<a href="tqpaintdevice.html#x11DefaultColormap">TQPaintDevice</a><li>x11DefaultVisual: <a href="tqpaintdevice.html#x11DefaultColormap">TQPaintDevice</a><li>x11DefaultVisual:
<a href="tqpaintdevice.html#x11DefaultVisual">TQPaintDevice</a><li>x11Depth: <a href="tqpaintdevice.html#x11DefaultVisual">TQPaintDevice</a><li>x11Depth:
<a href="tqpaintdevice.html#x11Depth">TQPaintDevice</a><li>x11Display: <a href="tqpaintdevice.html#x11Depth">TQPaintDevice</a><li>x11Display:
<a href="qmotif.html#x11Display">TQMotif</a> <a href="tqpaintdevice.html#x11Display">TQPaintDevice</a><li>x11Event: <a href="tqmotif.html#x11Display">TQMotif</a> <a href="tqpaintdevice.html#x11Display">TQPaintDevice</a><li>x11Event:
<a href="tqwidget.html#x11Event">TQMotifWidget</a> <a href="tqwidget.html#x11Event">TQWidget</a> <a href="qxtwidget.html#x11Event">TQXtWidget</a><li>x11EventFilter: <a href="tqwidget.html#x11Event">TQMotifWidget</a> <a href="tqwidget.html#x11Event">TQWidget</a> <a href="qxtwidget.html#x11Event">TQXtWidget</a><li>x11EventFilter:
<a href="ntqapplication.html#x11EventFilter">TQApplication</a><li>x11ProcessEvent: <a href="ntqapplication.html#x11EventFilter">TQApplication</a><li>x11ProcessEvent:
<a href="ntqapplication.html#x11ProcessEvent">TQApplication</a><li>x11Screen: <a href="ntqapplication.html#x11ProcessEvent">TQApplication</a><li>x11Screen:

@ -53,13 +53,13 @@ body { background: #ffffff; color: black; }
<li><a href="tqbuttongroup-h.html">tqbuttongroup.h</a> <li><a href="tqbuttongroup-h.html">tqbuttongroup.h</a>
<li><a href="tqcache-h.html">tqcache.h</a> <li><a href="tqcache-h.html">tqcache.h</a>
<li><a href="tqcanvas-h.html">tqcanvas.h</a> <li><a href="tqcanvas-h.html">tqcanvas.h</a>
<li><a href="qcdestyle-h.html">ntqcdestyle.h</a> <li><a href="tqcdestyle-h.html">tqcdestyle.h</a>
<li><a href="tqcheckbox-h.html">tqcheckbox.h</a> <li><a href="tqcheckbox-h.html">tqcheckbox.h</a>
<li><a href="tqclipboard-h.html">tqclipboard.h</a> <li><a href="tqclipboard-h.html">tqclipboard.h</a>
<li><a href="tqcolor-h.html">tqcolor.h</a> <li><a href="tqcolor-h.html">tqcolor.h</a>
<li><a href="tqcolordialog-h.html">tqcolordialog.h</a> <li><a href="tqcolordialog-h.html">tqcolordialog.h</a>
<li><a href="tqcombobox-h.html">tqcombobox.h</a> <li><a href="tqcombobox-h.html">tqcombobox.h</a>
<li><a href="qcommonstyle-h.html">ntqcommonstyle.h</a> <li><a href="tqcommonstyle-h.html">tqcommonstyle.h</a>
<li><a href="tqcstring-h.html">tqcstring.h</a> <li><a href="tqcstring-h.html">tqcstring.h</a>
<li><a href="qcursor-h.html">ntqcursor.h</a> <li><a href="qcursor-h.html">ntqcursor.h</a>
<li><a href="tqdatabrowser-h.html">tqdatabrowser.h</a> <li><a href="tqdatabrowser-h.html">tqdatabrowser.h</a>
@ -140,11 +140,11 @@ body { background: #ffffff; color: black; }
<li><a href="qmessagebox-h.html">ntqmessagebox.h</a> <li><a href="qmessagebox-h.html">ntqmessagebox.h</a>
<li><a href="qmetaobject-h.html">ntqmetaobject.h</a> <li><a href="qmetaobject-h.html">ntqmetaobject.h</a>
<li><a href="tqmime-h.html">tqmime.h</a> <li><a href="tqmime-h.html">tqmime.h</a>
<li><a href="qmotif-h.html">qmotif.h</a> <li><a href="tqmotif-h.html">tqmotif.h</a>
<li><a href="qmotifdialog-h.html">qmotifdialog.h</a> <li><a href="tqmotifdialog-h.html">tqmotifdialog.h</a>
<li><a href="qmotifplusstyle-h.html">ntqmotifplusstyle.h</a> <li><a href="tqmotifplusstyle-h.html">tqmotifplusstyle.h</a>
<li><a href="qmotifstyle-h.html">ntqmotifstyle.h</a> <li><a href="tqmotifstyle-h.html">tqmotifstyle.h</a>
<li><a href="qmotifwidget-h.html">qmotifwidget.h</a> <li><a href="tqmotifwidget-h.html">tqmotifwidget.h</a>
<li><a href="tqmovie-h.html">tqmovie.h</a> <li><a href="tqmovie-h.html">tqmovie.h</a>
<li><a href="tqmultilineedit-h.html">tqmultilineedit.h</a> <li><a href="tqmultilineedit-h.html">tqmultilineedit.h</a>
<li><a href="tqmutex-h.html">tqmutex.h</a> <li><a href="tqmutex-h.html">tqmutex.h</a>
@ -163,7 +163,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqpicture-h.html">tqpicture.h</a> <li><a href="tqpicture-h.html">tqpicture.h</a>
<li><a href="tqpixmap-h.html">tqpixmap.h</a> <li><a href="tqpixmap-h.html">tqpixmap.h</a>
<li><a href="tqpixmapcache-h.html">tqpixmapcache.h</a> <li><a href="tqpixmapcache-h.html">tqpixmapcache.h</a>
<li><a href="qplatinumstyle-h.html">ntqplatinumstyle.h</a> <li><a href="tqplatinumstyle-h.html">tqplatinumstyle.h</a>
<li><a href="tqpngio-h.html">tqpngio.h</a> <li><a href="tqpngio-h.html">tqpngio.h</a>
<li><a href="tqpoint-h.html">tqpoint.h</a> <li><a href="tqpoint-h.html">tqpoint.h</a>
<li><a href="tqpointarray-h.html">tqpointarray.h</a> <li><a href="tqpointarray-h.html">tqpointarray.h</a>
@ -191,7 +191,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqserversocket-h.html">tqserversocket.h</a> <li><a href="tqserversocket-h.html">tqserversocket.h</a>
<li><a href="tqsessionmanager-h.html">tqsessionmanager.h</a> <li><a href="tqsessionmanager-h.html">tqsessionmanager.h</a>
<li><a href="tqsettings-h.html">tqsettings.h</a> <li><a href="tqsettings-h.html">tqsettings.h</a>
<li><a href="qsgistyle-h.html">ntqsgistyle.h</a> <li><a href="tqsgistyle-h.html">tqsgistyle.h</a>
<li><a href="tqsignal-h.html">tqsignal.h</a> <li><a href="tqsignal-h.html">tqsignal.h</a>
<li><a href="tqsignalmapper-h.html">tqsignalmapper.h</a> <li><a href="tqsignalmapper-h.html">tqsignalmapper.h</a>
<li><a href="tqsimplerichtext-h.html">tqsimplerichtext.h</a> <li><a href="tqsimplerichtext-h.html">tqsimplerichtext.h</a>
@ -269,7 +269,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqwidgetplugin-h.html">tqwidgetplugin.h</a> <li><a href="tqwidgetplugin-h.html">tqwidgetplugin.h</a>
<li><a href="tqwidgetstack-h.html">tqwidgetstack.h</a> <li><a href="tqwidgetstack-h.html">tqwidgetstack.h</a>
<li><a href="qwindowdefs-h.html">ntqwindowdefs.h</a> <li><a href="qwindowdefs-h.html">ntqwindowdefs.h</a>
<li><a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a> <li><a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>
<li><a href="tqwizard-h.html">tqwizard.h</a> <li><a href="tqwizard-h.html">tqwizard.h</a>
<li><a href="tqwmatrix-h.html">tqwmatrix.h</a> <li><a href="tqwmatrix-h.html">tqwmatrix.h</a>
<li><a href="tqworkspace-h.html">tqworkspace.h</a> <li><a href="tqworkspace-h.html">tqworkspace.h</a>

@ -325,7 +325,7 @@ classes in the TQt API.
</ul> </ul>
<li><a href="tqeventloop.html">TQEventLoop</a> <li><a href="tqeventloop.html">TQEventLoop</a>
<ul> <ul>
<li><a href="qmotif.html">TQMotif</a> <li><a href="tqmotif.html">TQMotif</a>
</ul> </ul>
<li><a href="tqfileiconprovider.html">TQFileIconProvider</a> <li><a href="tqfileiconprovider.html">TQFileIconProvider</a>
<li><a href="tqlayout.html">TQLayout</a> <li><a href="tqlayout.html">TQLayout</a>
@ -359,18 +359,18 @@ classes in the TQt API.
<li><a href="tqsqlform.html">TQSqlForm</a> <li><a href="tqsqlform.html">TQSqlForm</a>
<li><a href="tqstyle.html">TQStyle</a> <li><a href="tqstyle.html">TQStyle</a>
<ul> <ul>
<li><a href="ntqcommonstyle.html">TQCommonStyle</a> <li><a href="tqcommonstyle.html">TQCommonStyle</a>
<ul> <ul>
<li><a href="ntqmotifstyle.html">TQMotifStyle</a> <li><a href="tqmotifstyle.html">TQMotifStyle</a>
<ul> <ul>
<li><a href="ntqcdestyle.html">TQCDEStyle</a> <li><a href="tqcdestyle.html">TQCDEStyle</a>
<li><a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a> <li><a href="tqmotifplusstyle.html">TQMotifPlusStyle</a>
<li><a href="ntqsgistyle.html">TQSGIStyle</a> <li><a href="tqsgistyle.html">TQSGIStyle</a>
</ul> </ul>
<li><a href="ntqwindowsstyle.html">TQWindowsStyle</a> <li><a href="tqwindowsstyle.html">TQWindowsStyle</a>
<ul> <ul>
<li><a href="qmacstyle.html">TQMacStyle</a> <li><a href="qmacstyle.html">TQMacStyle</a>
<li><a href="ntqplatinumstyle.html">TQPlatinumStyle</a> <li><a href="tqplatinumstyle.html">TQPlatinumStyle</a>
</ul> </ul>
</ul> </ul>
</ul> </ul>
@ -413,7 +413,7 @@ classes in the TQt API.
<li><a href="tqfontdialog.html">TQFontDialog</a> <li><a href="tqfontdialog.html">TQFontDialog</a>
<li><a href="ntqinputdialog.html">TQInputDialog</a> <li><a href="ntqinputdialog.html">TQInputDialog</a>
<li><a href="ntqmessagebox.html">TQMessageBox</a> <li><a href="ntqmessagebox.html">TQMessageBox</a>
<li><a href="qmotifdialog.html">TQMotifDialog</a> <li><a href="tqmotifdialog.html">TQMotifDialog</a>
<li><a href="tqprogressdialog.html">TQProgressDialog</a> <li><a href="tqprogressdialog.html">TQProgressDialog</a>
<li><a href="tqtabdialog.html">TQTabDialog</a> <li><a href="tqtabdialog.html">TQTabDialog</a>
<li><a href="tqwizard.html">TQWizard</a> <li><a href="tqwizard.html">TQWizard</a>
@ -471,7 +471,7 @@ classes in the TQt API.
<li><a href="tqglwidget.html">TQGLWidget</a> <li><a href="tqglwidget.html">TQGLWidget</a>
<li><a href="tqheader.html">TQHeader</a> <li><a href="tqheader.html">TQHeader</a>
<li><a href="tqmainwindow.html">TQMainWindow</a> <li><a href="tqmainwindow.html">TQMainWindow</a>
<li><a href="qmotifwidget.html">TQMotifWidget</a> <li><a href="tqmotifwidget.html">TQMotifWidget</a>
<li><a href="qnpwidget.html">TQNPWidget</a> <li><a href="qnpwidget.html">TQNPWidget</a>
<li><a href="tqscrollbar.html">TQScrollBar</a> <li><a href="tqscrollbar.html">TQScrollBar</a>
<li><a href="tqsizegrip.html">TQSizeGrip</a> <li><a href="tqsizegrip.html">TQSizeGrip</a>

@ -530,8 +530,8 @@
"TQButtonGroup::setExclusive" tqbuttongroup.html#setExclusive "TQButtonGroup::setExclusive" tqbuttongroup.html#setExclusive
"TQButtonGroup::setRadioButtonExclusive" tqbuttongroup.html#setRadioButtonExclusive "TQButtonGroup::setRadioButtonExclusive" tqbuttongroup.html#setRadioButtonExclusive
"TQByteArray" tqbytearray.html "TQByteArray" tqbytearray.html
"QCDEStyle" ntqcdestyle.html "TQCDEStyle" tqcdestyle.html
"QCDEStyle::~QCDEStyle" ntqcdestyle.html#~QCDEStyle "TQCDEStyle::~TQCDEStyle" tqcdestyle.html#~TQCDEStyle
"TQCString" tqcstring.html "TQCString" tqcstring.html
"TQCString::append" tqcstring.html#append "TQCString::append" tqcstring.html#append
"TQCString::contains" tqcstring.html#contains "TQCString::contains" tqcstring.html#contains
@ -1020,7 +1020,7 @@
"TQComboTableItem::setStringList" tqcombotableitem.html#setStringList "TQComboTableItem::setStringList" tqcombotableitem.html#setStringList
"TQComboTableItem::text" tqcombotableitem.html#text "TQComboTableItem::text" tqcombotableitem.html#text
"TQComboTableItem::~TQComboTableItem" tqcombotableitem.html#~TQComboTableItem "TQComboTableItem::~TQComboTableItem" tqcombotableitem.html#~TQComboTableItem
"QCommonStyle" ntqcommonstyle.html "TQCommonStyle" tqcommonstyle.html
"QComponentFactory::createInstance" qcomponentfactory.html#createInstance "QComponentFactory::createInstance" qcomponentfactory.html#createInstance
"QComponentFactory::registerComponent" qcomponentfactory.html#registerComponent "QComponentFactory::registerComponent" qcomponentfactory.html#registerComponent
"QComponentFactory::registerServer" qcomponentfactory.html#registerServer "QComponentFactory::registerServer" qcomponentfactory.html#registerServer
@ -4041,23 +4041,23 @@
"TQMimeSourceFactory::setText" tqmimesourcefactory.html#setText "TQMimeSourceFactory::setText" tqmimesourcefactory.html#setText
"TQMimeSourceFactory::takeDefaultFactory" tqmimesourcefactory.html#takeDefaultFactory "TQMimeSourceFactory::takeDefaultFactory" tqmimesourcefactory.html#takeDefaultFactory
"TQMimeSourceFactory::~TQMimeSourceFactory" tqmimesourcefactory.html#~TQMimeSourceFactory "TQMimeSourceFactory::~TQMimeSourceFactory" tqmimesourcefactory.html#~TQMimeSourceFactory
"QMotif" qmotif.html "TQMotif" tqmotif.html
"QMotif::applicationContext" qmotif.html#applicationContext "TQMotif::applicationContext" tqmotif.html#applicationContext
"QMotif::x11Display" qmotif.html#x11Display "TQMotif::x11Display" tqmotif.html#x11Display
"QMotif::~QMotif" qmotif.html#~QMotif "TQMotif::~TQMotif" tqmotif.html#~TQMotif
"QMotifDialog" qmotifdialog.html "TQMotifDialog" tqmotifdialog.html
"QMotifDialog::acceptCallback" qmotifdialog.html#acceptCallback "TQMotifDialog::acceptCallback" tqmotifdialog.html#acceptCallback
"QMotifDialog::dialog" qmotifdialog.html#dialog "TQMotifDialog::dialog" tqmotifdialog.html#dialog
"QMotifDialog::rejectCallback" qmotifdialog.html#rejectCallback "TQMotifDialog::rejectCallback" tqmotifdialog.html#rejectCallback
"QMotifDialog::shell" qmotifdialog.html#shell "TQMotifDialog::shell" tqmotifdialog.html#shell
"QMotifDialog::~QMotifDialog" qmotifdialog.html#~QMotifDialog "TQMotifDialog::~TQMotifDialog" tqmotifdialog.html#~TQMotifDialog
"QMotifPlusStyle" ntqmotifplusstyle.html "TQMotifPlusStyle" tqmotifplusstyle.html
"QMotifStyle" ntqmotifstyle.html "TQMotifStyle" tqmotifstyle.html
"QMotifStyle::setUseHighlightColors" ntqmotifstyle.html#setUseHighlightColors "TQMotifStyle::setUseHighlightColors" tqmotifstyle.html#setUseHighlightColors
"QMotifStyle::useHighlightColors" ntqmotifstyle.html#useHighlightColors "TQMotifStyle::useHighlightColors" tqmotifstyle.html#useHighlightColors
"QMotifWidget" qmotifwidget.html "TQMotifWidget" tqmotifwidget.html
"QMotifWidget::motifWidget" qmotifwidget.html#motifWidget "TQMotifWidget::motifWidget" tqmotifwidget.html#motifWidget
"QMotifWidget::~QMotifWidget" qmotifwidget.html#~QMotifWidget "TQMotifWidget::~TQMotifWidget" tqmotifwidget.html#~TQMotifWidget
"QMouseEvent" qmouseevent.html "QMouseEvent" qmouseevent.html
"QMouseEvent::accept" qmouseevent.html#accept "QMouseEvent::accept" qmouseevent.html#accept
"QMouseEvent::button" qmouseevent.html#button "QMouseEvent::button" qmouseevent.html#button
@ -4538,9 +4538,9 @@
"TQPixmapCache::insert" tqpixmapcache.html#insert "TQPixmapCache::insert" tqpixmapcache.html#insert
"TQPixmapCache::remove" tqpixmapcache.html#remove "TQPixmapCache::remove" tqpixmapcache.html#remove
"TQPixmapCache::setCacheLimit" tqpixmapcache.html#setCacheLimit "TQPixmapCache::setCacheLimit" tqpixmapcache.html#setCacheLimit
"QPlatinumStyle" ntqplatinumstyle.html "TQPlatinumStyle" tqplatinumstyle.html
"QPlatinumStyle::drawRiffles" ntqplatinumstyle.html#drawRiffles "TQPlatinumStyle::drawRiffles" tqplatinumstyle.html#drawRiffles
"QPlatinumStyle::mixedColor" ntqplatinumstyle.html#mixedColor "TQPlatinumStyle::mixedColor" tqplatinumstyle.html#mixedColor
"QPluginManager::queryInterface" qpluginmanager.html#queryInterface "QPluginManager::queryInterface" qpluginmanager.html#queryInterface
"TQPoint" tqpoint.html "TQPoint" tqpoint.html
"TQPoint::isNull" tqpoint.html#isNull "TQPoint::isNull" tqpoint.html#isNull
@ -5061,8 +5061,8 @@
"QResizeEvent" qresizeevent.html "QResizeEvent" qresizeevent.html
"QResizeEvent::oldSize" qresizeevent.html#oldSize "QResizeEvent::oldSize" qresizeevent.html#oldSize
"QResizeEvent::size" qresizeevent.html#size "QResizeEvent::size" qresizeevent.html#size
"QSGIStyle" ntqsgistyle.html "TQSGIStyle" tqsgistyle.html
"QSGIStyle::~QSGIStyle" ntqsgistyle.html#~QSGIStyle "TQSGIStyle::~TQSGIStyle" tqsgistyle.html#~TQSGIStyle
"TQScrollBar" tqscrollbar.html "TQScrollBar" tqscrollbar.html
"TQScrollBar::doAutoRepeat" tqscrollbar.html#doAutoRepeat "TQScrollBar::doAutoRepeat" tqscrollbar.html#doAutoRepeat
"TQScrollBar::draggingSlider" tqscrollbar.html#draggingSlider "TQScrollBar::draggingSlider" tqscrollbar.html#draggingSlider
@ -7613,7 +7613,7 @@
"TQWindowsMime::initialize" tqwindowsmime.html#initialize "TQWindowsMime::initialize" tqwindowsmime.html#initialize
"TQWindowsMime::mimeFor" tqwindowsmime.html#mimeFor "TQWindowsMime::mimeFor" tqwindowsmime.html#mimeFor
"TQWindowsMime::~TQWindowsMime" tqwindowsmime.html#~TQWindowsMime "TQWindowsMime::~TQWindowsMime" tqwindowsmime.html#~TQWindowsMime
"QWindowsStyle" ntqwindowsstyle.html "TQWindowsStyle" tqwindowsstyle.html
"TQWizard" tqwizard.html "TQWizard" tqwizard.html
"TQWizard::addPage" tqwizard.html#addPage "TQWizard::addPage" tqwizard.html#addPage
"TQWizard::appropriate" tqwizard.html#appropriate "TQWizard::appropriate" tqwizard.html#appropriate
@ -7894,7 +7894,7 @@
"Tutorial #2" tutorial2.html "Tutorial #2" tutorial2.html
"User Interface Compiler (uic)" uic.html "User Interface Compiler (uic)" uic.html
"Using Custom TQDialogs" motif-walkthrough-4.html "Using Custom TQDialogs" motif-walkthrough-4.html
"Using Existing Dialogs with QMotifDialog" motif-walkthrough-5.html "Using Existing Dialogs with TQMotifDialog" motif-walkthrough-5.html
"Using TQt Main Window Classes" motif-walkthrough-6.html "Using TQt Main Window Classes" motif-walkthrough-6.html
"Using TQt Standard Dialogs" motif-walkthrough-3.html "Using TQt Standard Dialogs" motif-walkthrough-3.html
"Using menus" menu-example.html "Using menus" menu-example.html

@ -50,7 +50,7 @@ public:
MainWindow(); MainWindow();
private: private:
<a href="qmotifwidget.html">TQMotifWidget</a> *customwidget; <a href="tqmotifwidget.html">TQMotifWidget</a> *customwidget;
}; };
#endif // MAINWINDOW_H #endif // MAINWINDOW_H
@ -61,14 +61,14 @@ private:
<p> <pre>#include "mainwindow.h" <p> <pre>#include "mainwindow.h"
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qmotif-h.html">qmotif.h</a>&gt; #include &lt;<a href="tqmotif-h.html">tqmotif.h</a>&gt;
int main( int argc, char **argv ) int main( int argc, char **argv )
{ {
XtSetLanguageProc( NULL, NULL, NULL ); XtSetLanguageProc( NULL, NULL, NULL );
<a href="qmotif.html">TQMotif</a> integrator( "customwidget" ); <a href="tqmotif.html">TQMotif</a> integrator( "customwidget" );
<a href="ntqapplication.html">TQApplication</a> app( argc, argv ); <a href="ntqapplication.html">TQApplication</a> app( argc, argv );
MainWindow mainwindow; MainWindow mainwindow;
@ -86,7 +86,7 @@ int main( int argc, char **argv )
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt; #include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
#include &lt;<a href="tqstatusbar-h.html">tqstatusbar.h</a>&gt; #include &lt;<a href="tqstatusbar-h.html">tqstatusbar.h</a>&gt;
#include &lt;<a href="qmotifwidget-h.html">qmotifwidget.h</a>&gt; #include &lt;<a href="tqmotifwidget-h.html">tqmotifwidget.h</a>&gt;
#include &lt;Xm/Form.h&gt; #include &lt;Xm/Form.h&gt;
#include &lt;Xm/PushB.h&gt; #include &lt;Xm/PushB.h&gt;
@ -103,7 +103,7 @@ int main( int argc, char **argv )
<a href="tqmainwindow.html#statusBar">statusBar</a>()-&gt;message( <a href="tqobject.html#tr">tr</a>("This is a TQMainWindow with an XmText widget.") ); <a href="tqmainwindow.html#statusBar">statusBar</a>()-&gt;message( <a href="tqobject.html#tr">tr</a>("This is a TQMainWindow with an XmText widget.") );
customwidget = customwidget =
new <a href="qmotifwidget.html">TQMotifWidget</a>( this, xmFormWidgetClass, NULL, 0, "form" ); new <a href="tqmotifwidget.html">TQMotifWidget</a>( this, xmFormWidgetClass, NULL, 0, "form" );
XmString str; XmString str;
Arg args[6]; Arg args[6];

@ -39,10 +39,10 @@ body { background: #ffffff; color: black; }
<p> <pre>#ifndef MAINWINDOW_H <p> <pre>#ifndef MAINWINDOW_H
#define MAINWINDOW_H #define MAINWINDOW_H
#include &lt;<a href="qmotifwidget-h.html">qmotifwidget.h</a>&gt; #include &lt;<a href="tqmotifwidget-h.html">tqmotifwidget.h</a>&gt;
class MainWindow : public <a href="qmotifwidget.html">TQMotifWidget</a> class MainWindow : public <a href="tqmotifwidget.html">TQMotifWidget</a>
{ {
public: public:
MainWindow(); MainWindow();
@ -57,7 +57,7 @@ public:
<p> <hr> <p> <hr>
<p> Implementation: <p> Implementation:
<p> <pre>#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; <p> <pre>#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qmotif-h.html">qmotif.h</a>&gt; #include &lt;<a href="tqmotif-h.html">tqmotif.h</a>&gt;
#include "mainwindow.h" #include "mainwindow.h"
@ -66,7 +66,7 @@ int main( int argc, char **argv )
{ {
XtSetLanguageProc( NULL, NULL, NULL ); XtSetLanguageProc( NULL, NULL, NULL );
<a href="qmotif.html">TQMotif</a> integrator( "dialog" ); <a href="tqmotif.html">TQMotif</a> integrator( "dialog" );
<a href="ntqapplication.html">TQApplication</a> app( argc, argv ); <a href="ntqapplication.html">TQApplication</a> app( argc, argv );
MainWindow *mainwindow = new MainWindow; MainWindow *mainwindow = new MainWindow;
@ -114,9 +114,9 @@ static void quitCallback( Widget, XtPointer client_data, XtPointer )
<a name="f560"></a>MainWindow::MainWindow() <a name="f560"></a>MainWindow::MainWindow()
: <a href="qmotifwidget.html">TQMotifWidget</a>( 0, xmMainWindowWidgetClass, NULL, 0, "mainwindow" ) : <a href="tqmotifwidget.html">TQMotifWidget</a>( 0, xmMainWindowWidgetClass, NULL, 0, "mainwindow" )
{ {
Widget menubar = XmCreateMenuBar( <a href="qmotifwidget.html#motifWidget">motifWidget</a>(), "menubar", NULL, 0 ); Widget menubar = XmCreateMenuBar( <a href="tqmotifwidget.html#motifWidget">motifWidget</a>(), "menubar", NULL, 0 );
Widget filemenu = XmCreatePulldownMenu( menubar, "filemenu", NULL, 0 ); Widget filemenu = XmCreatePulldownMenu( menubar, "filemenu", NULL, 0 );
Widget item; Widget item;
@ -154,14 +154,14 @@ static void quitCallback( Widget, XtPointer client_data, XtPointer )
Arg args[2]; Arg args[2];
XtSetArg( args[0], XmNeditMode, XmMULTI_LINE_EDIT ); XtSetArg( args[0], XmNeditMode, XmMULTI_LINE_EDIT );
Widget texteditor = Widget texteditor =
XmCreateScrolledText( <a href="qmotifwidget.html#motifWidget">motifWidget</a>(), "texteditor", XmCreateScrolledText( <a href="tqmotifwidget.html#motifWidget">motifWidget</a>(), "texteditor",
args, 1 ); args, 1 );
XtManageChild( menubar ); XtManageChild( menubar );
XtManageChild( texteditor ); XtManageChild( texteditor );
// pick a nice default size // pick a nice default size
XtVaSetValues( <a href="qmotifwidget.html#motifWidget">motifWidget</a>(), XtVaSetValues( <a href="tqmotifwidget.html#motifWidget">motifWidget</a>(),
XmNwidth, 400, XmNwidth, 400,
XmNheight, 300, XmNheight, 300,
NULL ); NULL );
@ -172,10 +172,10 @@ static void quitCallback( Widget, XtPointer client_data, XtPointer )
void <a name="f561"></a>MainWindow::showMotifDialog() void <a name="f561"></a>MainWindow::showMotifDialog()
{ {
<a href="qmotifdialog.html">TQMotifDialog</a> dialog( this, "custom dialog", TRUE ); <a href="tqmotifdialog.html">TQMotifDialog</a> dialog( this, "custom dialog", TRUE );
dialog.<a href="tqwidget.html#setCaption">setCaption</a>( <a href="tqobject.html#tr">tr</a>("Custom <a href="motif-extension.html#Motif">Motif</a> Dialog") ); dialog.<a href="tqwidget.html#setCaption">setCaption</a>( <a href="tqobject.html#tr">tr</a>("Custom <a href="motif-extension.html#Motif">Motif</a> Dialog") );
<a name="x2707"></a> Widget form = XmCreateForm( dialog.<a href="qmotifdialog.html#shell">shell</a>(), "custom motif dialog", NULL, 0 ); <a name="x2707"></a> Widget form = XmCreateForm( dialog.<a href="tqmotifdialog.html#shell">shell</a>(), "custom motif dialog", NULL, 0 );
XmString str; XmString str;
Arg args[9]; Arg args[9];
@ -220,7 +220,7 @@ void <a name="f561"></a>MainWindow::showMotifDialog()
void <a name="f562"></a>MainWindow::showTQtDialog() void <a name="f562"></a>MainWindow::showTQtDialog()
{ {
// custom TQt-based dialog using a Motif-based parent // custom TQt-based dialog using a Motif-based parent
CustomDialog customdialog( <a href="qmotifwidget.html#motifWidget">motifWidget</a>(), "custom dialog", TRUE ); CustomDialog customdialog( <a href="tqmotifwidget.html#motifWidget">motifWidget</a>(), "custom dialog", TRUE );
customdialog.<a href="tqdialog.html#exec">exec</a>(); customdialog.<a href="tqdialog.html#exec">exec</a>();
} }
</pre> </pre>

@ -32,7 +32,7 @@ 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>TQMotif Support Extension</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>TQMotif Support Extension</h1>
<p> The following example programs illustrate the use of the <a href="qmotif.html">TQMotif</a> Extension <p> The following example programs illustrate the use of the <a href="tqmotif.html">TQMotif</a> Extension
assisting in the migration process of old Xt and <a href="motif-extension.html#Motif">Motif</a> based code assisting in the migration process of old Xt and <a href="motif-extension.html#Motif">Motif</a> based code
to the more comfortable TQt toolkit. to the more comfortable TQt toolkit.
<p> For more information see the <a href="motif-extension.html">TQMotif <p> For more information see the <a href="motif-extension.html">TQMotif

@ -44,9 +44,9 @@ replaces the older Xt/Motif Support Extension included with earlier
versions of TQt. versions of TQt.
<p> The TQt Motif Extension consists of the following classes: <p> The TQt Motif Extension consists of the following classes:
<p> <ul> <p> <ul>
<li> <a href="qmotif.html">TQMotif</a> - Provides the basis of the TQt Motif Extension. <li> <a href="tqmotif.html">TQMotif</a> - Provides the basis of the TQt Motif Extension.
<li> <a href="qmotifwidget.html">TQMotifWidget</a> - Provides the <a href="tqwidget.html">TQWidget</a> API for Motif widgets. <li> <a href="tqmotifwidget.html">TQMotifWidget</a> - Provides the <a href="tqwidget.html">TQWidget</a> API for Motif widgets.
<li> <a href="qmotifdialog.html">TQMotifDialog</a> - Provides the <a href="tqdialog.html">TQDialog</a> API for Motif dialogs. <li> <a href="tqmotifdialog.html">TQMotifDialog</a> - Provides the <a href="tqdialog.html">TQDialog</a> API for Motif dialogs.
<li> <a href="qxtwidget.html">TQXtWidget</a> - The Xt/Motif integration widget from the previous <li> <a href="qxtwidget.html">TQXtWidget</a> - The Xt/Motif integration widget from the previous
Xt/Motif extension. This class is unsupported and has many known Xt/Motif extension. This class is unsupported and has many known
problems and limitations. It is provided only to keep existing source problems and limitations. It is provided only to keep existing source
@ -63,7 +63,7 @@ complete migration of a Motif based program to the TQt toolkit.
</h2> </h2>
<a name="2"></a><p> <h3> Incorrect CDE Color Scheme <a name="2"></a><p> <h3> Incorrect CDE Color Scheme
</h3> </h3>
<a name="2-1"></a><p> <a href="qmotifwidget.html">TQMotifWidget</a> and <a href="qmotifdialog.html">TQMotifDialog</a> will use the same Visual, Colormap <a name="2-1"></a><p> <a href="tqmotifwidget.html">TQMotifWidget</a> and <a href="tqmotifdialog.html">TQMotifDialog</a> will use the same Visual, Colormap
and color depth that <a href="ntqapplication.html">TQApplication</a> uses. When using CDE, the color and color depth that <a href="ntqapplication.html">TQApplication</a> uses. When using CDE, the color
scheme may be incorrect when using a Visual, Colormap and color depth scheme may be incorrect when using a Visual, Colormap and color depth
that is not the default. To work around this problem, add the that is not the default. To work around this problem, add the
@ -87,9 +87,9 @@ For example:
... ...
// TQMotif* headers next // TQMotif* headers next
#include &lt;<a href="qmotif-h.html">qmotif.h</a>&gt; #include &lt;<a href="tqmotif-h.html">tqmotif.h</a>&gt;
#include &lt;<a href="qmotifdialog-h.html">qmotifdialog.h</a>&gt; #include &lt;<a href="tqmotifdialog-h.html">tqmotifdialog.h</a>&gt;
#include &lt;<a href="qmotifwidget-h.html">qmotifwidget.h</a>&gt; #include &lt;<a href="tqmotifwidget-h.html">tqmotifwidget.h</a>&gt;
// Xt/Motif and X11 headers last // Xt/Motif and X11 headers last
#include &lt;X11/Xlib.h&gt; #include &lt;X11/Xlib.h&gt;
@ -100,19 +100,19 @@ For example:
<p> <h3> Multiple Screen Support <p> <h3> Multiple Screen Support
</h3> </h3>
<a name="2-3"></a><p> <a href="qmotifwidget.html">TQMotifWidget</a> can be used together with <a href="tqdesktopwidget.html">TQDesktopWidget</a> to create <a name="2-3"></a><p> <a href="tqmotifwidget.html">TQMotifWidget</a> can be used together with <a href="tqdesktopwidget.html">TQDesktopWidget</a> to create
top-level windows on multiple screens. A common mistake is to create top-level windows on multiple screens. A common mistake is to create
a TQMotifWidget on a non-default screen while the Xt/Motif widgets are a TQMotifWidget on a non-default screen while the Xt/Motif widgets are
created on the default screen. The solution is to specify the screen created on the default screen. The solution is to specify the screen
to both TQMotifWidget and the Xt/Motif child. For example: to both TQMotifWidget and the Xt/Motif child. For example:
<p> <pre> <p> <pre>
Display *dpy = TQMotif::<a href="qmotif.html#x11Display">x11Display</a>(); Display *dpy = TQMotif::<a href="tqmotif.html#x11Display">x11Display</a>();
Arg args[1]; Arg args[1];
// make sure both TQMotifWidget and the XmMainWindow are on screen 1 // make sure both TQMotifWidget and the XmMainWindow are on screen 1
XtSetArg(args[0], XtNscreen, ScreenOfDisplay(dpy, 1)); XtSetArg(args[0], XtNscreen, ScreenOfDisplay(dpy, 1));
<a href="qmotifwidget.html">TQMotifWidget</a> *toplevel = <a href="tqmotifwidget.html">TQMotifWidget</a> *toplevel =
new <a href="qmotifwidget.html">TQMotifWidget</a>(TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()-&gt;screen(1), new <a href="tqmotifwidget.html">TQMotifWidget</a>(TQApplication::<a href="ntqapplication.html#desktop">desktop</a>()-&gt;screen(1),
xmMainWindowWidgetClass, args, 1, "mainwindow"); xmMainWindowWidgetClass, args, 1, "mainwindow");
</pre> </pre>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
[ <a href="motif-walkthrough.html">Home</a> ] [ <a href="motif-walkthrough.html">Home</a> ]
[ <a href="motif-walkthrough-2.html">Next: Preparing to Migrate the User Interface</a> ] [ <a href="motif-walkthrough-2.html">Next: Preparing to Migrate the User Interface</a> ]
<p> <h2> Starting with <a href="qmotif.html">TQMotif</a> and <a href="ntqapplication.html">TQApplication</a> <p> <h2> Starting with <a href="tqmotif.html">TQMotif</a> and <a href="ntqapplication.html">TQApplication</a>
</h2> </h2>
<a name="1"></a><p> To be able to use TQt, we need to create a TQApplication object. The <a name="1"></a><p> To be able to use TQt, we need to create a TQApplication object. The
TQApplication class controls all the event delivery and display TQApplication class controls all the event delivery and display

@ -48,7 +48,7 @@ provide useful static convenience functions.
<p> Each of these functions takes a <em>TQWidget *parent</em> argument. If we <p> Each of these functions takes a <em>TQWidget *parent</em> argument. If we
pass zero as the <em>parent</em> argument, then we will have dialogs that pass zero as the <em>parent</em> argument, then we will have dialogs that
are centered on the screen, instead of being centered over our main are centered on the screen, instead of being centered over our main
window. We can have <a href="qmotifwidget.html">TQMotifWidget</a> create our <tt>XmMainWindow</tt>, and we window. We can have <a href="tqmotifwidget.html">TQMotifWidget</a> create our <tt>XmMainWindow</tt>, and we
can then use this class as the parent for both <a href="motif-extension.html#Motif">Motif</a> dialogs and TQt can then use this class as the parent for both <a href="motif-extension.html#Motif">Motif</a> dialogs and TQt
dialogs. dialogs.
<p> We need to include the appropriate headers for TQMotifWidget and <p> We need to include the appropriate headers for TQMotifWidget and
@ -57,9 +57,9 @@ dialogs.
<pre></pre> <pre></pre>
<p> Next, we make a few modifications to how the application is <p> Next, we make a few modifications to how the application is
initialized. We could initialize Xt/Motif and create the <tt>XtAppContext</tt> ourselves, but <a href="qmotif.html">TQMotif</a> can do this for us. initialized. We could initialize Xt/Motif and create the <tt>XtAppContext</tt> ourselves, but <a href="tqmotif.html">TQMotif</a> can do this for us.
We also let <a href="ntqapplication.html">TQApplication</a> open the connection to the X server. Next, We also let <a href="ntqapplication.html">TQApplication</a> open the connection to the X server. Next,
we create a TQMotifWidget, passing <tt>xmMainWindowWidgetClass</tt> as the <em>widgetclass</em> argument. We can now use the <a href="qmotifwidget.html#motifWidget">TQMotifWidget::motifWidget</a>() we create a TQMotifWidget, passing <tt>xmMainWindowWidgetClass</tt> as the <em>widgetclass</em> argument. We can now use the <a href="tqmotifwidget.html#motifWidget">TQMotifWidget::motifWidget</a>()
function to access the Motif widget. The shell widget is created function to access the Motif widget. The shell widget is created
automatically by TQMotifWidget. We use <tt>XtParent()</tt> to access it. automatically by TQMotifWidget. We use <tt>XtParent()</tt> to access it.
The top-level window is now a TQMotifWidget, which means we can use it The top-level window is now a TQMotifWidget, which means we can use it
@ -79,7 +79,7 @@ and <tt>Save()</tt> functions.
<p> <pre></pre> <p> <pre></pre>
<p> We also change the arguments to the callbacks. We pass the top-level <p> We also change the arguments to the callbacks. We pass the top-level
<a href="qmotifwidget.html">TQMotifWidget</a> as the <tt>client_data</tt> to these functions, since we will <a href="tqmotifwidget.html">TQMotifWidget</a> as the <tt>client_data</tt> to these functions, since we will
be using it as the parent for the TQFileDialog. be using it as the parent for the TQFileDialog.
<p> <pre></pre> <p> <pre></pre>
<p> <pre> <p> <pre>
@ -123,7 +123,7 @@ the correct symbols for these functions.
<p> At this point in the code, the page should be deleted. The code to do <p> At this point in the code, the page should be deleted. The code to do
this is in the <tt>DoDeletePage()</tt> function. We move the contents of <tt>DoDeletePage()</tt> to this point and remove the <tt>DoDeletePage()</tt> function this is in the <tt>DoDeletePage()</tt> function. We move the contents of <tt>DoDeletePage()</tt> to this point and remove the <tt>DoDeletePage()</tt> function
completely. completely.
<p> Next, we change <tt>todo.cpp</tt> to pass the top-level <a href="qmotifwidget.html">TQMotifWidget</a> as the <p> Next, we change <tt>todo.cpp</tt> to pass the top-level <a href="tqmotifwidget.html">TQMotifWidget</a> as the
<tt>client_data</tt> tot he <tt>DeletePage()</tt> function. <tt>client_data</tt> tot he <tt>DeletePage()</tt> function.
<p> <p>

@ -56,7 +56,7 @@ to the <tt>.pro</tt> file, and regenerate the <tt>Makefile</tt>. The <em>uic</e
utility generates the code for our custom TQDialog, which is then utility generates the code for our custom TQDialog, which is then
compiled and linked into our application. (<em>uic</em> is invoked compiled and linked into our application. (<em>uic</em> is invoked
automatically from makefiles generated from <tt>.pro</tt> files.) automatically from makefiles generated from <tt>.pro</tt> files.)
<p> We need to pass the top-level <a href="qmotifwidget.html">TQMotifWidget</a> as the <em>client_data</em> <p> We need to pass the top-level <a href="tqmotifwidget.html">TQMotifWidget</a> as the <em>client_data</em>
argument to the <tt>EditPage</tt> function, which we will use as the parent argument to the <tt>EditPage</tt> function, which we will use as the parent
for our new <tt>PageEditDialog</tt>. We do this the same way as we have for our new <tt>PageEditDialog</tt>. We do this the same way as we have
done for the <em>Open</em> and <em>Save As</em> dialogs in <tt>todo.cpp</tt>. done for the <em>Open</em> and <em>Save As</em> dialogs in <tt>todo.cpp</tt>.

@ -41,7 +41,7 @@ have converted the <em>View</em> widget. The <em>Print</em> dialog will be
removed once we have finished our migration, since we will use removed once we have finished our migration, since we will use
<a href="tqprinter.html">TQPrinter</a> instead. Based on this information, we decide that it is not <a href="tqprinter.html">TQPrinter</a> instead. Based on this information, we decide that it is not
worth replacing the <em>Print</em> dialog with a custom <a href="tqdialog.html">TQDialog</a> replacement. worth replacing the <em>Print</em> dialog with a custom <a href="tqdialog.html">TQDialog</a> replacement.
Instead, we will keep the <a href="motif-extension.html#Motif">Motif</a> based dialog and use <a href="qmotifdialog.html">TQMotifDialog</a> to Instead, we will keep the <a href="motif-extension.html#Motif">Motif</a> based dialog and use <a href="tqmotifdialog.html">TQMotifDialog</a> to
integrate the dialog with the application. integrate the dialog with the application.
<p> <h2> Modality Requirements <p> <h2> Modality Requirements
</h2> </h2>
@ -74,7 +74,7 @@ function:
<p> <pre></pre> <p> <pre></pre>
<p> <h2> Integrating the <em>Print</em> Dialog <p> <h2> Integrating the <em>Print</em> Dialog
</h2> </h2>
<a name="2"></a><p> Now that the <em>Print</em> dialog has the appropriate <em>accept</em> and <em>reject</em> callbacks, we can use <a href="qmotifdialog.html">TQMotifDialog</a>. First we need to include <a name="2"></a><p> Now that the <em>Print</em> dialog has the appropriate <em>accept</em> and <em>reject</em> callbacks, we can use <a href="tqmotifdialog.html">TQMotifDialog</a>. First we need to include
the TQMotifDialog header in <tt>todo.cpp</tt>. the TQMotifDialog header in <tt>todo.cpp</tt>.
<p> <p>
@ -82,19 +82,19 @@ the TQMotifDialog header in <tt>todo.cpp</tt>.
<p> We add a <tt>ShowPrintDialog()</tt> function which will create and execute the <p> We add a <tt>ShowPrintDialog()</tt> function which will create and execute the
print dialog. print dialog.
<p> <pre></pre> <p> <pre></pre>
<p> We change the <em>Print</em> menu item callback to call the new <tt>ShowPrintDialog()</tt> function. We pass the top-level <a href="qmotifwidget.html">TQMotifWidget</a>, which <p> We change the <em>Print</em> menu item callback to call the new <tt>ShowPrintDialog()</tt> function. We pass the top-level <a href="tqmotifwidget.html">TQMotifWidget</a>, which
we will use as the parent for the dialog. we will use as the parent for the dialog.
<p> <pre></pre> <p> <pre></pre>
<p> The <tt>ShowPrintDialog()</tt> function creates the <em>Print</em> dialog and <p> The <tt>ShowPrintDialog()</tt> function creates the <em>Print</em> dialog and
executes it. We use the <tt>XmdNprintCallback</tt> callback to accept the executes it. We use the <tt>XmdNprintCallback</tt> callback to accept the
dialog and the <tt>XmNcancelCallback</tt> callback to reject the dialog. We dialog and the <tt>XmNcancelCallback</tt> callback to reject the dialog. We
can do this easily by using the <a href="qmotifdialog.html#acceptCallback">TQMotifDialog::acceptCallback</a>() and can do this easily by using the <a href="tqmotifdialog.html#acceptCallback">TQMotifDialog::acceptCallback</a>() and
<a href="qmotifdialog.html#rejectCallback">TQMotifDialog::rejectCallback</a>() functions, respectively. We also <a href="tqmotifdialog.html#rejectCallback">TQMotifDialog::rejectCallback</a>() functions, respectively. We also
ensure that the <em>print</em> callback continues to call the <tt>Print()</tt> function as before. ensure that the <em>print</em> callback continues to call the <tt>Print()</tt> function as before.
<p> <pre></pre> <p> <pre></pre>
<p> After we build the project, the application runs and operates as <p> After we build the project, the application runs and operates as
expected. There is no visual or behavioral difference, even though expected. There is no visual or behavioral difference, even though
the <em>Print</em> dialog is using <a href="qmotifdialog.html">TQMotifDialog</a>. the <em>Print</em> dialog is using <a href="tqmotifdialog.html">TQMotifDialog</a>.
<p> [ <a href="motif-walkthrough-4.html">Previous: Using Custom TQDialogs</a> ] <p> [ <a href="motif-walkthrough-4.html">Previous: Using Custom TQDialogs</a> ]
[ <a href="motif-walkthrough.html">Home</a> ] [ <a href="motif-walkthrough.html">Home</a> ]
[ <a href="motif-walkthrough-6.html">Next: Using TQt Main Window Classes</a> ] [ <a href="motif-walkthrough-6.html">Next: Using TQt Main Window Classes</a> ]

@ -53,7 +53,7 @@ is then compiled and linked into our application.
add the implementation for our <em>Main Window</em> to this skeleton add the implementation for our <em>Main Window</em> to this skeleton
implementation. implementation.
<p> We begin by adding the necessary includes for <a href="ntqapplication.html">TQApplication</a> <p> We begin by adding the necessary includes for <a href="ntqapplication.html">TQApplication</a>
and <a href="qmotifwidget.html">TQMotifWidget</a>. and <a href="tqmotifwidget.html">TQMotifWidget</a>.
<p> <p>
<p> <pre></pre> <p> <pre></pre>
@ -103,7 +103,7 @@ needed.
<p> The <tt>QuitAppl()</tt> and <tt>manageCB()</tt> callbacks are not needed any more, <p> The <tt>QuitAppl()</tt> and <tt>manageCB()</tt> callbacks are not needed any more,
so we remove them. We do not need the global <tt>shell</tt> variable so we remove them. We do not need the global <tt>shell</tt> variable
either. We remove it and all references to it in the <tt>New()</tt>, <tt>Save()</tt> and <tt>Open()</tt> callbacks. either. We remove it and all references to it in the <tt>New()</tt>, <tt>Save()</tt> and <tt>Open()</tt> callbacks.
<p> In <tt>main()</tt>, we make the large changes. First, we use our new <tt>MainWindow</tt> instead of <a href="qmotifwidget.html">TQMotifWidget</a> with <tt>XmMainWindow</tt>. <p> In <tt>main()</tt>, we make the large changes. First, we use our new <tt>MainWindow</tt> instead of <a href="tqmotifwidget.html">TQMotifWidget</a> with <tt>XmMainWindow</tt>.
<p> <p>
<p> <pre></pre> <p> <pre></pre>

@ -176,7 +176,7 @@ provides the <tt>TQMIN()</tt> and <tt>TQMAX()</tt> macros which we will use.
<p> Earlier modifications caused the <tt>fallback_resources</tt> array to become <p> Earlier modifications caused the <tt>fallback_resources</tt> array to become
redundant, so we remove it. redundant, so we remove it.
<p> In the near future, our program will not use <a href="motif-extension.html#Motif">Motif</a> any more, and we <p> In the near future, our program will not use <a href="motif-extension.html#Motif">Motif</a> any more, and we
will no longer need to use <a href="qmotif.html">TQMotif</a>. To prepare for this, we remove the will no longer need to use <a href="tqmotif.html">TQMotif</a>. To prepare for this, we remove the
<tt>resources</tt> and <tt>optionDesc</tt> arrays and create the TQMotif instance <tt>resources</tt> and <tt>optionDesc</tt> arrays and create the TQMotif instance
with just the <em>APP_CLASS</em> argument. with just the <em>APP_CLASS</em> argument.
<p> The <tt>#include</tt> statements in the source files are mostly incorrect <p> The <tt>#include</tt> statements in the source files are mostly incorrect

@ -182,14 +182,14 @@ it from our project file and regenerate our <tt>Makefile</tt>.
<p> <a name="todo-cpp-view-widget-modifications"></a> <p> <a name="todo-cpp-view-widget-modifications"></a>
<p> Now that we have implemented our new <em>View</em> widget, we need to remove <p> Now that we have implemented our new <em>View</em> widget, we need to remove
the old <a href="motif-extension.html#Motif">Motif</a> based view widget from <tt>todo.cpp</tt>. the old <a href="motif-extension.html#Motif">Motif</a> based view widget from <tt>todo.cpp</tt>.
<p> Since we will not be using any Motif widgets, we remove all Motif <tt>#include</tt> statements, including <a href="qmotifwidget-h.html">qmotifwidget.h</a>. <p> Since we will not be using any Motif widgets, we remove all Motif <tt>#include</tt> statements, including <a href="tqmotifwidget-h.html">tqmotifwidget.h</a>.
<p> <p>
<pre></pre><pre></pre> <pre></pre><pre></pre>
<p> We also remove the forward declarations of the <tt>ReadDB()</tt> function <p> We also remove the forward declarations of the <tt>ReadDB()</tt> function
and the <tt>notebook</tt>, <tt>textw</tt> and <tt>labelw</tt> global variables. and the <tt>notebook</tt>, <tt>textw</tt> and <tt>labelw</tt> global variables.
<p> <pre></pre> <p> <pre></pre>
<p> Next, we remove the <tt>center</tt> widget, which uses <a href="qmotifwidget.html">TQMotifWidget</a>. The <em>Main Window</em> widget and <em>View</em> widget are contained entirely in our <p> Next, we remove the <tt>center</tt> widget, which uses <a href="tqmotifwidget.html">TQMotifWidget</a>. The <em>Main Window</em> widget and <em>View</em> widget are contained entirely in our
<tt>MainWindow</tt> class, so no extra initialization is needed after <tt>MainWindow</tt> class, so no extra initialization is needed after
creating the <tt>mainwindow</tt> widget. creating the <tt>mainwindow</tt> widget.
<p> <pre></pre> <p> <pre></pre>

@ -81,8 +81,8 @@ finish removing the dependencies on Xt and Motif.
keywords from the Xt library. C++ has these built into the language, keywords from the Xt library. C++ has these built into the language,
so we use <tt>bool</tt> and <tt>false</tt> instead. so we use <tt>bool</tt> and <tt>false</tt> instead.
<p> The last modification needed to completely remove Xt and Motif from <p> The last modification needed to completely remove Xt and Motif from
our application is to stop using the <a href="qmotif.html">TQMotif</a> class. We remove the our application is to stop using the <a href="tqmotif.html">TQMotif</a> class. We remove the
qmotif.h <tt>#include</tt> statement from <tt>todo.cpp</tt>, and remove the tqmotif.h <tt>#include</tt> statement from <tt>todo.cpp</tt>, and remove the
instantiation from the <tt>main()</tt> function. instantiation from the <tt>main()</tt> function.
<p> After doing this, we can remove the <tt>-lXm</tt> and <tt>-lqmotif</tt> from the <p> After doing this, we can remove the <tt>-lXm</tt> and <tt>-lqmotif</tt> from the
<tt>LIBS</tt> variable in our project file. Our project file also contains <tt>LIBS</tt> variable in our project file. Our project file also contains

@ -1501,7 +1501,7 @@ object is transferred to TQApplication, so TQApplication will delete
the style object on application exit or when a new style is set. the style object on application exit or when a new style is set.
<p> Example usage: <p> Example usage:
<pre> <pre>
TQApplication::<a href="#setStyle">setStyle</a>( new <a href="ntqwindowsstyle.html">TQWindowsStyle</a> ); TQApplication::<a href="#setStyle">setStyle</a>( new <a href="tqwindowsstyle.html">TQWindowsStyle</a> );
</pre> </pre>
<p> When switching application styles, the color palette is set back to <p> When switching application styles, the color palette is set back to

@ -98,7 +98,7 @@ protected slots:
#include &lt;<a href="tqprogressbar-h.html">tqprogressbar.h</a>&gt; #include &lt;<a href="tqprogressbar-h.html">tqprogressbar.h</a>&gt;
#include &lt;<a href="tqlayout-h.html">tqlayout.h</a>&gt; #include &lt;<a href="tqlayout-h.html">tqlayout.h</a>&gt;
#include &lt;<a href="qmotifstyle-h.html">ntqmotifstyle.h</a>&gt; #include &lt;<a href="tqmotifstyle-h.html">tqmotifstyle.h</a>&gt;
/* /*
* Constructor * Constructor
@ -137,7 +137,7 @@ protected slots:
// Create the progressbar // Create the progressbar
progress = new <a href="tqprogressbar.html">TQProgressBar</a>( 100, this ); progress = new <a href="tqprogressbar.html">TQProgressBar</a>( 100, this );
<a name="x975"></a> // progress-&gt;<a href="tqwidget.html#setStyle">setStyle</a>( new <a href="ntqmotifstyle.html">TQMotifStyle</a>() ); <a name="x975"></a> // progress-&gt;<a href="tqwidget.html#setStyle">setStyle</a>( new <a href="tqmotifstyle.html">TQMotifStyle</a>() );
<a name="x965"></a> toplayout-&gt;<a href="tqgridlayout.html#addMultiCellWidget">addMultiCellWidget</a>( progress, 1, 1, 0, 1 ); <a name="x965"></a> toplayout-&gt;<a href="tqgridlayout.html#addMultiCellWidget">addMultiCellWidget</a>( progress, 1, 1, 0, 1 );
// connect the clicked() SIGNALs of the pushbuttons to SLOTs // connect the clicked() SIGNALs of the pushbuttons to SLOTs

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQMacStyle class implements an Appearance Manager style. <p>The TQMacStyle class implements an Appearance Manager style.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmacstyle_mac-h.html">qmacstyle_mac.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qmacstyle_mac-h.html">qmacstyle_mac.h</a>&gt;</tt>
<p>Inherits <a href="ntqwindowsstyle.html">TQWindowsStyle</a>. <p>Inherits <a href="tqwindowsstyle.html">TQWindowsStyle</a>.
<p><a href="qmacstyle-members.html">List of all member functions.</a> <p><a href="qmacstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

@ -78,7 +78,7 @@ body { background: #ffffff; color: black; }
#define TQMACSTYLE_MAC_H #define TQMACSTYLE_MAC_H
#ifndef QT_H #ifndef QT_H
#include "ntqwindowsstyle.h" #include "tqwindowsstyle.h"
#endif // QT_H #endif // QT_H
#if defined( TQ_WS_MAC ) &amp;&amp; !defined( TQT_NO_STYLE_MAC ) #if defined( TQ_WS_MAC ) &amp;&amp; !defined( TQT_NO_STYLE_MAC )

@ -663,7 +663,7 @@ public:
Key_unknown = 0xffff Key_unknown = 0xffff
}; };
// documented in qcommonstyle.cpp // documented in tqcommonstyle.cpp
enum ArrowType { enum ArrowType {
UpArrow, UpArrow,
DownArrow, DownArrow,

@ -819,11 +819,11 @@
<section ref="tqcanvasview-members.html" title="List of All Member Functions"/> <section ref="tqcanvasview-members.html" title="List of All Member Functions"/>
<section ref="tqcanvas-h.html" title="Header File"/> <section ref="tqcanvas-h.html" title="Header File"/>
</section> </section>
<section ref="ntqcdestyle.html" title="QCDEStyle Class Reference"> <section ref="tqcdestyle.html" title="TQCDEStyle Class Reference">
<keyword ref="ntqcdestyle.html">QCDEStyle</keyword> <keyword ref="tqcdestyle.html">TQCDEStyle</keyword>
<keyword ref="ntqcdestyle.html#~QCDEStyle">~QCDEStyle</keyword> <keyword ref="tqcdestyle.html#~TQCDEStyle">~TQCDEStyle</keyword>
<section ref="qcdestyle-members.html" title="List of All Member Functions"/> <section ref="tqcdestyle-members.html" title="List of All Member Functions"/>
<section ref="qcdestyle-h.html" title="Header File"/> <section ref="tqcdestyle-h.html" title="Header File"/>
</section> </section>
<section ref="tqchar.html" title="TQChar Class Reference"> <section ref="tqchar.html" title="TQChar Class Reference">
<keyword ref="tqchar.html">TQChar</keyword> <keyword ref="tqchar.html">TQChar</keyword>
@ -1124,10 +1124,10 @@
<section ref="tqcombotableitem-members.html" title="List of All Member Functions"/> <section ref="tqcombotableitem-members.html" title="List of All Member Functions"/>
<section ref="tqtable-h.html" title="Header File"/> <section ref="tqtable-h.html" title="Header File"/>
</section> </section>
<section ref="ntqcommonstyle.html" title="QCommonStyle Class Reference"> <section ref="tqcommonstyle.html" title="TQCommonStyle Class Reference">
<keyword ref="ntqcommonstyle.html">QCommonStyle</keyword> <keyword ref="tqcommonstyle.html">TQCommonStyle</keyword>
<section ref="qcommonstyle-members.html" title="List of All Member Functions"/> <section ref="tqcommonstyle-members.html" title="List of All Member Functions"/>
<section ref="qcommonstyle-h.html" title="Header File"/> <section ref="tqcommonstyle-h.html" title="Header File"/>
</section> </section>
<section ref="tqconststring.html" title="TQConstString Class Reference"> <section ref="tqconststring.html" title="TQConstString Class Reference">
<keyword ref="tqconststring.html">TQConstString</keyword> <keyword ref="tqconststring.html">TQConstString</keyword>
@ -4701,42 +4701,42 @@
<section ref="tqmimesourcefactory-members.html" title="List of All Member Functions"/> <section ref="tqmimesourcefactory-members.html" title="List of All Member Functions"/>
<section ref="tqmime-h.html" title="Header File"/> <section ref="tqmime-h.html" title="Header File"/>
</section> </section>
<section ref="qmotif.html" title="QMotif Class Reference"> <section ref="tqmotif.html" title="TQMotif Class Reference">
<keyword ref="qmotif.html">QMotif</keyword> <keyword ref="tqmotif.html">TQMotif</keyword>
<keyword ref="qmotif.html#applicationContext">applicationContext</keyword> <keyword ref="tqmotif.html#applicationContext">applicationContext</keyword>
<keyword ref="qmotif.html#x11Display">x11Display</keyword> <keyword ref="tqmotif.html#x11Display">x11Display</keyword>
<keyword ref="qmotif.html#~QMotif">~QMotif</keyword> <keyword ref="tqmotif.html#~TQMotif">~TQMotif</keyword>
<section ref="qmotif-members.html" title="List of All Member Functions"/> <section ref="tqmotif-members.html" title="List of All Member Functions"/>
<section ref="qmotif-h.html" title="Header File"/> <section ref="tqmotif-h.html" title="Header File"/>
</section> </section>
<section ref="qmotifdialog.html" title="QMotifDialog Class Reference"> <section ref="tqmotifdialog.html" title="TQMotifDialog Class Reference">
<keyword ref="qmotifdialog.html">QMotifDialog</keyword> <keyword ref="tqmotifdialog.html">TQMotifDialog</keyword>
<keyword ref="qmotifdialog.html#acceptCallback">acceptCallback</keyword> <keyword ref="tqmotifdialog.html#acceptCallback">acceptCallback</keyword>
<keyword ref="qmotifdialog.html#dialog">dialog</keyword> <keyword ref="tqmotifdialog.html#dialog">dialog</keyword>
<keyword ref="qmotifdialog.html#rejectCallback">rejectCallback</keyword> <keyword ref="tqmotifdialog.html#rejectCallback">rejectCallback</keyword>
<keyword ref="qmotifdialog.html#shell">shell</keyword> <keyword ref="tqmotifdialog.html#shell">shell</keyword>
<keyword ref="qmotifdialog.html#~QMotifDialog">~QMotifDialog</keyword> <keyword ref="tqmotifdialog.html#~TQMotifDialog">~TQMotifDialog</keyword>
<section ref="qmotifdialog-members.html" title="List of All Member Functions"/> <section ref="tqmotifdialog-members.html" title="List of All Member Functions"/>
<section ref="qmotifdialog-h.html" title="Header File"/> <section ref="tqmotifdialog-h.html" title="Header File"/>
</section> </section>
<section ref="ntqmotifplusstyle.html" title="QMotifPlusStyle Class Reference"> <section ref="tqmotifplusstyle.html" title="TQMotifPlusStyle Class Reference">
<keyword ref="ntqmotifplusstyle.html">QMotifPlusStyle</keyword> <keyword ref="tqmotifplusstyle.html">TQMotifPlusStyle</keyword>
<section ref="qmotifplusstyle-members.html" title="List of All Member Functions"/> <section ref="tqmotifplusstyle-members.html" title="List of All Member Functions"/>
<section ref="qmotifplusstyle-h.html" title="Header File"/> <section ref="tqmotifplusstyle-h.html" title="Header File"/>
</section> </section>
<section ref="ntqmotifstyle.html" title="QMotifStyle Class Reference"> <section ref="tqmotifstyle.html" title="TQMotifStyle Class Reference">
<keyword ref="ntqmotifstyle.html">QMotifStyle</keyword> <keyword ref="tqmotifstyle.html">TQMotifStyle</keyword>
<keyword ref="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</keyword> <keyword ref="tqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</keyword>
<keyword ref="ntqmotifstyle.html#useHighlightColors">useHighlightColors</keyword> <keyword ref="tqmotifstyle.html#useHighlightColors">useHighlightColors</keyword>
<section ref="qmotifstyle-members.html" title="List of All Member Functions"/> <section ref="tqmotifstyle-members.html" title="List of All Member Functions"/>
<section ref="qmotifstyle-h.html" title="Header File"/> <section ref="tqmotifstyle-h.html" title="Header File"/>
</section> </section>
<section ref="qmotifwidget.html" title="QMotifWidget Class Reference"> <section ref="tqmotifwidget.html" title="TQMotifWidget Class Reference">
<keyword ref="qmotifwidget.html">QMotifWidget</keyword> <keyword ref="tqmotifwidget.html">TQMotifWidget</keyword>
<keyword ref="qmotifwidget.html#motifWidget">motifWidget</keyword> <keyword ref="tqmotifwidget.html#motifWidget">motifWidget</keyword>
<keyword ref="qmotifwidget.html#~QMotifWidget">~QMotifWidget</keyword> <keyword ref="tqmotifwidget.html#~TQMotifWidget">~TQMotifWidget</keyword>
<section ref="qmotifwidget-members.html" title="List of All Member Functions"/> <section ref="tqmotifwidget-members.html" title="List of All Member Functions"/>
<section ref="qmotifwidget-h.html" title="Header File"/> <section ref="tqmotifwidget-h.html" title="Header File"/>
</section> </section>
<section ref="qmouseevent.html" title="QMouseEvent Class Reference"> <section ref="qmouseevent.html" title="QMouseEvent Class Reference">
<keyword ref="qmouseevent.html">QMouseEvent</keyword> <keyword ref="qmouseevent.html">QMouseEvent</keyword>
@ -5335,12 +5335,12 @@
<section ref="tqpixmapcache-members.html" title="List of All Member Functions"/> <section ref="tqpixmapcache-members.html" title="List of All Member Functions"/>
<section ref="tqpixmapcache-h.html" title="Header File"/> <section ref="tqpixmapcache-h.html" title="Header File"/>
</section> </section>
<section ref="ntqplatinumstyle.html" title="QPlatinumStyle Class Reference"> <section ref="tqplatinumstyle.html" title="TQPlatinumStyle Class Reference">
<keyword ref="ntqplatinumstyle.html">QPlatinumStyle</keyword> <keyword ref="tqplatinumstyle.html">TQPlatinumStyle</keyword>
<keyword ref="ntqplatinumstyle.html#drawRiffles">drawRiffles</keyword> <keyword ref="tqplatinumstyle.html#drawRiffles">drawRiffles</keyword>
<keyword ref="ntqplatinumstyle.html#mixedColor">mixedColor</keyword> <keyword ref="tqplatinumstyle.html#mixedColor">mixedColor</keyword>
<section ref="qplatinumstyle-members.html" title="List of All Member Functions"/> <section ref="tqplatinumstyle-members.html" title="List of All Member Functions"/>
<section ref="qplatinumstyle-h.html" title="Header File"/> <section ref="tqplatinumstyle-h.html" title="Header File"/>
</section> </section>
<section ref="tqpngimagepacker.html" title="TQPNGImagePacker Class Reference"> <section ref="tqpngimagepacker.html" title="TQPNGImagePacker Class Reference">
<keyword ref="tqpngimagepacker.html">TQPNGImagePacker</keyword> <keyword ref="tqpngimagepacker.html">TQPNGImagePacker</keyword>
@ -6173,11 +6173,11 @@
<section ref="tqsettings-members.html" title="List of All Member Functions"/> <section ref="tqsettings-members.html" title="List of All Member Functions"/>
<section ref="tqsettings-h.html" title="Header File"/> <section ref="tqsettings-h.html" title="Header File"/>
</section> </section>
<section ref="ntqsgistyle.html" title="QSGIStyle Class Reference"> <section ref="tqsgistyle.html" title="TQSGIStyle Class Reference">
<keyword ref="ntqsgistyle.html">QSGIStyle</keyword> <keyword ref="tqsgistyle.html">TQSGIStyle</keyword>
<keyword ref="ntqsgistyle.html#~QSGIStyle">~QSGIStyle</keyword> <keyword ref="tqsgistyle.html#~TQSGIStyle">~TQSGIStyle</keyword>
<section ref="qsgistyle-members.html" title="List of All Member Functions"/> <section ref="tqsgistyle-members.html" title="List of All Member Functions"/>
<section ref="qsgistyle-h.html" title="Header File"/> <section ref="tqsgistyle-h.html" title="Header File"/>
</section> </section>
<section ref="qshowevent.html" title="QShowEvent Class Reference"> <section ref="qshowevent.html" title="QShowEvent Class Reference">
<keyword ref="qshowevent.html">QShowEvent</keyword> <keyword ref="qshowevent.html">QShowEvent</keyword>
@ -8978,10 +8978,10 @@
<section ref="tqwindowsmime-members.html" title="List of All Member Functions"/> <section ref="tqwindowsmime-members.html" title="List of All Member Functions"/>
<section ref="tqmime-h.html" title="Header File"/> <section ref="tqmime-h.html" title="Header File"/>
</section> </section>
<section ref="ntqwindowsstyle.html" title="QWindowsStyle Class Reference"> <section ref="tqwindowsstyle.html" title="TQWindowsStyle Class Reference">
<keyword ref="ntqwindowsstyle.html">QWindowsStyle</keyword> <keyword ref="tqwindowsstyle.html">TQWindowsStyle</keyword>
<section ref="qwindowsstyle-members.html" title="List of All Member Functions"/> <section ref="tqwindowsstyle-members.html" title="List of All Member Functions"/>
<section ref="qwindowsstyle-h.html" title="Header File"/> <section ref="tqwindowsstyle-h.html" title="Header File"/>
</section> </section>
<section ref="tqwizard.html" title="TQWizard Class Reference"> <section ref="tqwizard.html" title="TQWizard Class Reference">
<keyword ref="tqwizard.html">TQWizard</keyword> <keyword ref="tqwizard.html">TQWizard</keyword>
@ -9665,7 +9665,7 @@
<section ref="qmag-example.html" title="QMag"> <section ref="qmag-example.html" title="QMag">
<keyword ref="qmag-example.html">QMag</keyword> <keyword ref="qmag-example.html">QMag</keyword>
</section> </section>
<section ref="motif-examples.html" title="QMotif Support Extension"> <section ref="motif-examples.html" title="TQMotif Support Extension">
<keyword ref="motif-examples.html">motif-examples</keyword> <keyword ref="motif-examples.html">motif-examples</keyword>
</section> </section>
<section ref="tqprocess-examples.html" title="TQProcess Examples"> <section ref="tqprocess-examples.html" title="TQProcess Examples">
@ -9950,8 +9950,8 @@
<section ref="motif-walkthrough-4.html" title="Using Custom TQDialogs"> <section ref="motif-walkthrough-4.html" title="Using Custom TQDialogs">
<keyword ref="motif-walkthrough-4.html">Using Custom TQDialogs</keyword> <keyword ref="motif-walkthrough-4.html">Using Custom TQDialogs</keyword>
</section> </section>
<section ref="motif-walkthrough-5.html" title="Using Existing Dialogs with QMotifDialog"> <section ref="motif-walkthrough-5.html" title="Using Existing Dialogs with TQMotifDialog">
<keyword ref="motif-walkthrough-5.html">Using Existing Dialogs with QMotifDialog</keyword> <keyword ref="motif-walkthrough-5.html">Using Existing Dialogs with TQMotifDialog</keyword>
</section> </section>
<section ref="menu-example.html" title="Using menus"> <section ref="menu-example.html" title="Using menus">
<keyword ref="menu-example.html">Using menus</keyword> <keyword ref="menu-example.html">Using menus</keyword>

@ -61,10 +61,10 @@ during runtime using the pulldown menu.
#ifndef TQT_NO_STYLE_WINDOWS #ifndef TQT_NO_STYLE_WINDOWS
#include &lt;<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>&gt; #include &lt;<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>&gt;
class NorwegianWoodStyle : public <a href="ntqwindowsstyle.html">TQWindowsStyle</a> class NorwegianWoodStyle : public <a href="tqwindowsstyle.html">TQWindowsStyle</a>
{ {
public: public:
NorwegianWoodStyle(); NorwegianWoodStyle();
@ -899,7 +899,7 @@ static int get_combo_extra_width( int h, int *return_awh = 0 );
enum { PointUp, PointDown, PointLeft, PointRight }; enum { PointUp, PointDown, PointLeft, PointRight };
<a name="f225"></a>NorwegianWoodStyle::NorwegianWoodStyle() : <a href="ntqwindowsstyle.html">TQWindowsStyle</a>() <a name="f225"></a>NorwegianWoodStyle::NorwegianWoodStyle() : <a href="tqwindowsstyle.html">TQWindowsStyle</a>()
{ {
} }
@ -1118,7 +1118,7 @@ void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="
drawSemicircleButton( p, r, PointUp, flags &amp; Style_Down, cg ); drawSemicircleButton( p, r, PointUp, flags &amp; Style_Down, cg );
break; break;
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt ); <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt );
break; break;
} }
} }
@ -1229,7 +1229,7 @@ void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="
break; break;
} }
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt ); <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt );
break; break;
} }
} }
@ -1250,7 +1250,7 @@ void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="
break; break;
} }
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControlMask">drawControlMask</a>( element, p, widget, r, opt ); <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControlMask">drawControlMask</a>( element, p, widget, r, opt );
break; break;
} }
} }
@ -1302,7 +1302,7 @@ void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="
break; break;
} }
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how, <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how,
sub, subActive, opt ); sub, subActive, opt );
break; break;
} }
@ -1324,7 +1324,7 @@ void NorwegianWoodStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="
break; break;
} }
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>( control, p, widget, r, opt ); <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControlMask">drawComplexControlMask</a>( control, p, widget, r, opt );
break; break;
} }
} }
@ -1575,10 +1575,10 @@ void <a name="f226"></a>NorwegianWoodStyle::drawSemicircleButton( <a href="tqpai
#ifndef TQT_NO_STYLE_WINDOWS #ifndef TQT_NO_STYLE_WINDOWS
#include &lt;<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>&gt; #include &lt;<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>&gt;
class MetalStyle : public <a href="ntqwindowsstyle.html">TQWindowsStyle</a> class MetalStyle : public <a href="tqwindowsstyle.html">TQWindowsStyle</a>
{ {
public: public:
MetalStyle(); MetalStyle();
@ -1669,7 +1669,7 @@ private:
<a name="f227"></a>MetalStyle::MetalStyle() : <a href="ntqwindowsstyle.html">TQWindowsStyle</a>() { } <a name="f227"></a>MetalStyle::MetalStyle() : <a href="tqwindowsstyle.html">TQWindowsStyle</a>() { }
/*! /*!
Reimplementation from TQStyle Reimplementation from TQStyle
@ -1818,7 +1818,7 @@ void MetalStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="tqwidget
flags &amp; Style_Horizontal ); flags &amp; Style_Horizontal );
break; break;
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt ); <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, opt );
break; break;
} }
} }
@ -1922,7 +1922,7 @@ void MetalStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="tqwidget
break; break;
} }
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt ); <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawControl">drawControl</a>( element, p, widget, r, cg, how, opt );
break; break;
} }
} }
@ -1970,7 +1970,7 @@ void MetalStyle::<a href="tqstyle.html#unPolish">unPolish</a>( <a href="tqwidget
break; break;
} }
default: default:
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how, sub, subActive, <a href="tqwindowsstyle.html">TQWindowsStyle</a>::<a href="tqstyle.html#drawComplexControl">drawComplexControl</a>( cc, p, widget, r, cg, how, sub, subActive,
opt ); opt );
break; break;
} }
@ -2344,7 +2344,7 @@ void <a name="f234"></a>Themes::aboutTQt()
*****************************************************************************/ *****************************************************************************/
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>&gt; #include &lt;<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>&gt;
#include "themes.h" #include "themes.h"
#include "metal.h" #include "metal.h"

@ -182,8 +182,8 @@ TQButtonGroup Class | tqbuttongroup.html
TQButtonGroup Member List | tqbuttongroup-members.html TQButtonGroup Member List | tqbuttongroup-members.html
TQByteArray Class | tqbytearray.html TQByteArray Class | tqbytearray.html
TQByteArray Member List | tqbytearray-members.html TQByteArray Member List | tqbytearray-members.html
QCDEStyle Class | ntqcdestyle.html TQCDEStyle Class | tqcdestyle.html
QCDEStyle Member List | qcdestyle-members.html TQCDEStyle Member List | tqcdestyle-members.html
TQCString Class | tqcstring.html TQCString Class | tqcstring.html
TQCString Member List | tqcstring-members.html TQCString Member List | tqcstring-members.html
TQCache Class | tqcache.html TQCache Class | tqcache.html
@ -246,8 +246,8 @@ TQComboBox Class | tqcombobox.html
TQComboBox Member List | tqcombobox-members.html TQComboBox Member List | tqcombobox-members.html
TQComboTableItem Class | tqcombotableitem.html TQComboTableItem Class | tqcombotableitem.html
TQComboTableItem Member List | tqcombotableitem-members.html TQComboTableItem Member List | tqcombotableitem-members.html
QCommonStyle Class | ntqcommonstyle.html TQCommonStyle Class | tqcommonstyle.html
QCommonStyle Member List | qcommonstyle-members.html TQCommonStyle Member List | tqcommonstyle-members.html
TQConstString Class | tqconststring.html TQConstString Class | tqconststring.html
TQConstString Member List | tqconststring-members.html TQConstString Member List | tqconststring-members.html
QContextMenuEvent Class | qcontextmenuevent.html QContextMenuEvent Class | qcontextmenuevent.html
@ -560,17 +560,17 @@ TQMimeSource Class | tqmimesource.html
TQMimeSource Member List | tqmimesource-members.html TQMimeSource Member List | tqmimesource-members.html
TQMimeSourceFactory Class | tqmimesourcefactory.html TQMimeSourceFactory Class | tqmimesourcefactory.html
TQMimeSourceFactory Member List | tqmimesourcefactory-members.html TQMimeSourceFactory Member List | tqmimesourcefactory-members.html
QMotif Class | qmotif.html TQMotif Class | tqmotif.html
QMotif Member List | qmotif-members.html TQMotif Member List | tqmotif-members.html
QMotif Support Extension | motif-examples.html TQMotif Support Extension | motif-examples.html
QMotifDialog Class | qmotifdialog.html TQMotifDialog Class | tqmotifdialog.html
QMotifDialog Member List | qmotifdialog-members.html TQMotifDialog Member List | tqmotifdialog-members.html
QMotifPlusStyle Class | ntqmotifplusstyle.html TQMotifPlusStyle Class | tqmotifplusstyle.html
QMotifPlusStyle Member List | qmotifplusstyle-members.html TQMotifPlusStyle Member List | tqmotifplusstyle-members.html
QMotifStyle Class | ntqmotifstyle.html TQMotifStyle Class | tqmotifstyle.html
QMotifStyle Member List | qmotifstyle-members.html TQMotifStyle Member List | tqmotifstyle-members.html
QMotifWidget Class | qmotifwidget.html TQMotifWidget Class | tqmotifwidget.html
QMotifWidget Member List | qmotifwidget-members.html TQMotifWidget Member List | tqmotifwidget-members.html
QMouseEvent Class | qmouseevent.html QMouseEvent Class | qmouseevent.html
QMouseEvent Member List | qmouseevent-members.html QMouseEvent Member List | qmouseevent-members.html
QMoveEvent Class | qmoveevent.html QMoveEvent Class | qmoveevent.html
@ -625,8 +625,8 @@ TQPixmap Class | tqpixmap.html
TQPixmap Member List | tqpixmap-members.html TQPixmap Member List | tqpixmap-members.html
TQPixmapCache Class | tqpixmapcache.html TQPixmapCache Class | tqpixmapcache.html
TQPixmapCache Member List | tqpixmapcache-members.html TQPixmapCache Member List | tqpixmapcache-members.html
QPlatinumStyle Class | ntqplatinumstyle.html TQPlatinumStyle Class | tqplatinumstyle.html
QPlatinumStyle Member List | qplatinumstyle-members.html TQPlatinumStyle Member List | tqplatinumstyle-members.html
TQPoint Class | tqpoint.html TQPoint Class | tqpoint.html
TQPoint Member List | tqpoint-members.html TQPoint Member List | tqpoint-members.html
TQPointArray Class | tqpointarray.html TQPointArray Class | tqpointarray.html
@ -674,8 +674,8 @@ TQRegion Class | tqregion.html
TQRegion Member List | tqregion-members.html TQRegion Member List | tqregion-members.html
QResizeEvent Class | qresizeevent.html QResizeEvent Class | qresizeevent.html
QResizeEvent Member List | qresizeevent-members.html QResizeEvent Member List | qresizeevent-members.html
QSGIStyle Class | ntqsgistyle.html TQSGIStyle Class | tqsgistyle.html
QSGIStyle Member List | qsgistyle-members.html TQSGIStyle Member List | tqsgistyle-members.html
TQScrollBar Class | tqscrollbar.html TQScrollBar Class | tqscrollbar.html
TQScrollBar Member List | tqscrollbar-members.html TQScrollBar Member List | tqscrollbar-members.html
TQScrollView Class | tqscrollview.html TQScrollView Class | tqscrollview.html
@ -902,8 +902,8 @@ TQWidgetStack Class | tqwidgetstack.html
TQWidgetStack Member List | tqwidgetstack-members.html TQWidgetStack Member List | tqwidgetstack-members.html
TQWindowsMime Class | tqwindowsmime.html TQWindowsMime Class | tqwindowsmime.html
TQWindowsMime Member List | tqwindowsmime-members.html TQWindowsMime Member List | tqwindowsmime-members.html
QWindowsStyle Class | ntqwindowsstyle.html TQWindowsStyle Class | tqwindowsstyle.html
QWindowsStyle Member List | qwindowsstyle-members.html TQWindowsStyle Member List | tqwindowsstyle-members.html
TQWizard Class | tqwizard.html TQWizard Class | tqwizard.html
TQWizard Member List | tqwizard-members.html TQWizard Member List | tqwizard-members.html
TQWorkspace Class | tqworkspace.html TQWorkspace Class | tqworkspace.html
@ -1033,7 +1033,7 @@ Trivial Example | trivial-nsplugin-example.html
Tutorial #2 | tutorial2.html Tutorial #2 | tutorial2.html
User Interface Compiler (uic) | uic.html User Interface Compiler (uic) | uic.html
Using Custom TQDialogs | motif-walkthrough-4.html Using Custom TQDialogs | motif-walkthrough-4.html
Using Existing Dialogs with QMotifDialog | motif-walkthrough-5.html Using Existing Dialogs with TQMotifDialog | motif-walkthrough-5.html
Using TQt Main Window Classes | motif-walkthrough-6.html Using TQt Main Window Classes | motif-walkthrough-6.html
Using TQt Standard Dialogs | motif-walkthrough-3.html Using TQt Standard Dialogs | motif-walkthrough-3.html
Using menus | menu-example.html Using menus | menu-example.html
@ -1089,13 +1089,13 @@ tqbutton.h Include File | tqbutton-h.html
tqbuttongroup.h Include File | tqbuttongroup-h.html tqbuttongroup.h Include File | tqbuttongroup-h.html
tqcache.h Include File | tqcache-h.html tqcache.h Include File | tqcache-h.html
tqcanvas.h Include File | tqcanvas-h.html tqcanvas.h Include File | tqcanvas-h.html
ntqcdestyle.h Include File | qcdestyle-h.html tqcdestyle.h Include File | tqcdestyle-h.html
tqcheckbox.h Include File | tqcheckbox-h.html tqcheckbox.h Include File | tqcheckbox-h.html
tqclipboard.h Include File | tqclipboard-h.html tqclipboard.h Include File | tqclipboard-h.html
tqcolor.h Include File | tqcolor-h.html tqcolor.h Include File | tqcolor-h.html
tqcolordialog.h Include File | tqcolordialog-h.html tqcolordialog.h Include File | tqcolordialog-h.html
tqcombobox.h Include File | tqcombobox-h.html tqcombobox.h Include File | tqcombobox-h.html
ntqcommonstyle.h Include File | qcommonstyle-h.html tqcommonstyle.h Include File | tqcommonstyle-h.html
tqcstring.h Include File | tqcstring-h.html tqcstring.h Include File | tqcstring-h.html
ntqcursor.h Include File | qcursor-h.html ntqcursor.h Include File | qcursor-h.html
tqdatabrowser.h Include File | tqdatabrowser-h.html tqdatabrowser.h Include File | tqdatabrowser-h.html
@ -1175,11 +1175,11 @@ tqmenudata.h Include File | tqmenudata-h.html
ntqmessagebox.h Include File | qmessagebox-h.html ntqmessagebox.h Include File | qmessagebox-h.html
ntqmetaobject.h Include File | qmetaobject-h.html ntqmetaobject.h Include File | qmetaobject-h.html
tqmime.h Include File | tqmime-h.html tqmime.h Include File | tqmime-h.html
qmotif.h Include File | qmotif-h.html tqmotif.h Include File | tqmotif-h.html
qmotifdialog.h Include File | qmotifdialog-h.html tqmotifdialog.h Include File | tqmotifdialog-h.html
ntqmotifplusstyle.h Include File | qmotifplusstyle-h.html tqmotifplusstyle.h Include File | tqmotifplusstyle-h.html
ntqmotifstyle.h Include File | qmotifstyle-h.html tqmotifstyle.h Include File | tqmotifstyle-h.html
qmotifwidget.h Include File | qmotifwidget-h.html tqmotifwidget.h Include File | tqmotifwidget-h.html
tqmovie.h Include File | tqmovie-h.html tqmovie.h Include File | tqmovie-h.html
tqmultilineedit.h Include File | tqmultilineedit-h.html tqmultilineedit.h Include File | tqmultilineedit-h.html
tqmutex.h Include File | tqmutex-h.html tqmutex.h Include File | tqmutex-h.html
@ -1199,7 +1199,7 @@ tqpen.h Include File | tqpen-h.html
tqpicture.h Include File | tqpicture-h.html tqpicture.h Include File | tqpicture-h.html
tqpixmap.h Include File | tqpixmap-h.html tqpixmap.h Include File | tqpixmap-h.html
tqpixmapcache.h Include File | tqpixmapcache-h.html tqpixmapcache.h Include File | tqpixmapcache-h.html
ntqplatinumstyle.h Include File | qplatinumstyle-h.html tqplatinumstyle.h Include File | tqplatinumstyle-h.html
tqpngio.h Include File | tqpngio-h.html tqpngio.h Include File | tqpngio-h.html
tqpoint.h Include File | tqpoint-h.html tqpoint.h Include File | tqpoint-h.html
tqpointarray.h Include File | tqpointarray-h.html tqpointarray.h Include File | tqpointarray-h.html
@ -1227,7 +1227,7 @@ tqsemaphore.h Include File | tqsemaphore-h.html
tqserversocket.h Include File | tqserversocket-h.html tqserversocket.h Include File | tqserversocket-h.html
tqsessionmanager.h Include File | tqsessionmanager-h.html tqsessionmanager.h Include File | tqsessionmanager-h.html
tqsettings.h Include File | tqsettings-h.html tqsettings.h Include File | tqsettings-h.html
ntqsgistyle.h Include File | qsgistyle-h.html tqsgistyle.h Include File | tqsgistyle-h.html
tqsignal.h Include File | tqsignal-h.html tqsignal.h Include File | tqsignal-h.html
tqsignalmapper.h Include File | tqsignalmapper-h.html tqsignalmapper.h Include File | tqsignalmapper-h.html
tqsimplerichtext.h Include File | tqsimplerichtext-h.html tqsimplerichtext.h Include File | tqsimplerichtext-h.html
@ -1305,7 +1305,7 @@ tqwidgetfactory.h Include File | tqwidgetfactory-h.html
tqwidgetplugin.h Include File | tqwidgetplugin-h.html tqwidgetplugin.h Include File | tqwidgetplugin-h.html
tqwidgetstack.h Include File | tqwidgetstack-h.html tqwidgetstack.h Include File | tqwidgetstack-h.html
ntqwindowdefs.h Include File | qwindowdefs-h.html ntqwindowdefs.h Include File | qwindowdefs-h.html
ntqwindowsstyle.h Include File | qwindowsstyle-h.html tqwindowsstyle.h Include File | tqwindowsstyle-h.html
tqwizard.h Include File | tqwizard-h.html tqwizard.h Include File | tqwizard-h.html
tqwmatrix.h Include File | tqwmatrix-h.html tqwmatrix.h Include File | tqwmatrix-h.html
tqworkspace.h Include File | tqworkspace-h.html tqworkspace.h Include File | tqworkspace-h.html

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqcdestyle.h:54 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqcdestyle.h:54 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <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 TQCDEStyle</h1> <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 TQCDEStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqcdestyle.html">TQCDEStyle</a>, including inherited members. <a href="tqcdestyle.html">TQCDEStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqcdestyle.html#TQCDEStyle">TQCDEStyle</a>() <li><a href="tqcdestyle.html#TQCDEStyle">TQCDEStyle</a>()
<li><a href="ntqcdestyle.html#~TQCDEStyle">~TQCDEStyle</a>() <li><a href="tqcdestyle.html#~TQCDEStyle">~TQCDEStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -88,7 +88,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>() <li><a href="tqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>() <li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
@ -100,7 +100,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>() <li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>() <li><a href="tqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>() <li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qcdestyle.cpp:47 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqcdestyle.cpp:47 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQCDEStyle class provides a CDE look and feel. <p>The TQCDEStyle class provides a CDE look and feel.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qcdestyle-h.html">ntqcdestyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqcdestyle-h.html">tqcdestyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqmotifstyle.html">TQMotifStyle</a>. <p>Inherits <a href="tqmotifstyle.html">TQMotifStyle</a>.
<p><a href="qcdestyle-members.html">List of all member functions.</a> <p><a href="tqcdestyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQCDEStyle"><b>TQCDEStyle</b></a> ( bool&nbsp;useHighlightCols = FALSE )</li> <li class=fn><a href="#TQCDEStyle"><b>TQCDEStyle</b></a> ( bool&nbsp;useHighlightCols = FALSE )</li>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqcommonstyle.h:47 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqcommonstyle.h:47 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,10 +32,10 @@ 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 TQCommonStyle</h1> <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 TQCommonStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqcommonstyle.html">TQCommonStyle</a>, including inherited members. <a href="tqcommonstyle.html">TQCommonStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqcommonstyle.html#TQCommonStyle">TQCommonStyle</a>() <li><a href="tqcommonstyle.html#TQCommonStyle">TQCommonStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qcommonstyle.cpp:69 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqcommonstyle.cpp:69 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,10 +33,10 @@ body { background: #ffffff; color: black; }
<p>The TQCommonStyle class encapsulates the common Look and Feel of a GUI. <p>The TQCommonStyle class encapsulates the common Look and Feel of a GUI.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qcommonstyle-h.html">ntqcommonstyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqcommonstyle-h.html">tqcommonstyle.h</a>&gt;</tt>
<p>Inherits <a href="tqstyle.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>Inherited by <a href="tqmotifstyle.html">TQMotifStyle</a> and <a href="tqwindowsstyle.html">TQWindowsStyle</a>.
<p><a href="qcommonstyle-members.html">List of all member functions.</a> <p><a href="tqcommonstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQCommonStyle"><b>TQCommonStyle</b></a> ()</li> <li class=fn><a href="#TQCommonStyle"><b>TQCommonStyle</b></a> ()</li>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqdialog-h.html">tqdialog.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdialog-h.html">tqdialog.h</a>&gt;</tt>
<p>Inherits <a href="tqwidget.html">TQWidget</a>. <p>Inherits <a href="tqwidget.html">TQWidget</a>.
<p>Inherited by <a href="tqcolordialog.html">TQColorDialog</a>, <a href="ntqerrormessage.html">TQErrorMessage</a>, <a href="tqfiledialog.html">TQFileDialog</a>, <a href="tqfontdialog.html">TQFontDialog</a>, <a href="ntqinputdialog.html">TQInputDialog</a>, <a href="ntqmessagebox.html">TQMessageBox</a>, <a href="qmotifdialog.html">TQMotifDialog</a>, <a href="tqprogressdialog.html">TQProgressDialog</a>, <a href="tqtabdialog.html">TQTabDialog</a>, and <a href="tqwizard.html">TQWizard</a>. <p>Inherited by <a href="tqcolordialog.html">TQColorDialog</a>, <a href="ntqerrormessage.html">TQErrorMessage</a>, <a href="tqfiledialog.html">TQFileDialog</a>, <a href="tqfontdialog.html">TQFontDialog</a>, <a href="ntqinputdialog.html">TQInputDialog</a>, <a href="ntqmessagebox.html">TQMessageBox</a>, <a href="tqmotifdialog.html">TQMotifDialog</a>, <a href="tqprogressdialog.html">TQProgressDialog</a>, <a href="tqtabdialog.html">TQTabDialog</a>, and <a href="tqwizard.html">TQWizard</a>.
<p><a href="tqdialog-members.html">List of all member functions.</a> <p><a href="tqdialog-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqeventloop-h.html">tqeventloop.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqeventloop-h.html">tqeventloop.h</a>&gt;</tt>
<p>Inherits <a href="tqobject.html">TQObject</a>. <p>Inherits <a href="tqobject.html">TQObject</a>.
<p>Inherited by <a href="qmotif.html">TQMotif</a>. <p>Inherited by <a href="tqmotif.html">TQMotif</a>.
<p><a href="tqeventloop-members.html">List of all member functions.</a> <p><a href="tqeventloop-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qmotif.h:37 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmotif.h:37 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,15 +32,15 @@ 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 TQMotif</h1> <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 TQMotif</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qmotif.html">TQMotif</a>, including inherited members. <a href="tqmotif.html">TQMotif</a>, including inherited members.
<ul> <ul>
<li><a href="qmotif.html#TQMotif">TQMotif</a>() <li><a href="tqmotif.html#TQMotif">TQMotif</a>()
<li><a href="qmotif.html#~TQMotif">~TQMotif</a>() <li><a href="tqmotif.html#~TQMotif">~TQMotif</a>()
<li><a href="tqeventloop.html#aboutToBlock">aboutToBlock</a>() <li><a href="tqeventloop.html#aboutToBlock">aboutToBlock</a>()
<li><a href="tqeventloop.html#activateSocketNotifiers">activateSocketNotifiers</a>() <li><a href="tqeventloop.html#activateSocketNotifiers">activateSocketNotifiers</a>()
<li><a href="tqeventloop.html#activateTimers">activateTimers</a>() <li><a href="tqeventloop.html#activateTimers">activateTimers</a>()
<li><a href="qmotif.html#applicationContext">applicationContext</a>() <li><a href="tqmotif.html#applicationContext">applicationContext</a>()
<li><a href="tqeventloop.html#awake">awake</a>() <li><a href="tqeventloop.html#awake">awake</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
@ -96,7 +96,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="tqeventloop.html#unregisterSocketNotifier">unregisterSocketNotifier</a>() <li><a href="tqeventloop.html#unregisterSocketNotifier">unregisterSocketNotifier</a>()
<li><a href="tqeventloop.html#wakeUp">wakeUp</a>() <li><a href="tqeventloop.html#wakeUp">wakeUp</a>()
<li><a href="qmotif.html#x11Display">x11Display</a>() <li><a href="tqmotif.html#x11Display">x11Display</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/extensions/motif/src/qmotif.cpp:351 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/extensions/motif/src/tqmotif.cpp:351 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQMotif class provides the basis of the Motif Extension. <p>The TQMotif class provides the basis of the Motif Extension.
<a href="#details">More...</a> <a href="#details">More...</a>
<p>This class is part of the <b>TQt Motif Extension</b>. <p>This class is part of the <b>TQt Motif Extension</b>.
<p><tt>#include &lt;<a href="qmotif-h.html">qmotif.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmotif-h.html">tqmotif.h</a>&gt;</tt>
<p>Inherits <a href="tqeventloop.html">TQEventLoop</a>. <p>Inherits <a href="tqeventloop.html">TQEventLoop</a>.
<p><a href="qmotif-members.html">List of all member functions.</a> <p><a href="tqmotif-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMotif"><b>TQMotif</b></a> ( const&nbsp;char&nbsp;*&nbsp;applicationClass, XtAppContext&nbsp;context = NULL, XrmOptionDescRec&nbsp;*&nbsp;options = 0, int&nbsp;numOptions = 0 )</li> <li class=fn><a href="#TQMotif"><b>TQMotif</b></a> ( const&nbsp;char&nbsp;*&nbsp;applicationClass, XtAppContext&nbsp;context = NULL, XrmOptionDescRec&nbsp;*&nbsp;options = 0, int&nbsp;numOptions = 0 )</li>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qmotifdialog.h:39 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmotifdialog.h:39 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <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 TQMotifDialog</h1> <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 TQMotifDialog</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qmotifdialog.html">TQMotifDialog</a>, including inherited members. <a href="tqmotifdialog.html">TQMotifDialog</a>, including inherited members.
<ul> <ul>
<li><a href="qmotifdialog.html#TQMotifDialog">TQMotifDialog</a>() <li><a href="tqmotifdialog.html#TQMotifDialog">TQMotifDialog</a>()
<li><a href="qmotifdialog.html#~TQMotifDialog">~TQMotifDialog</a>() <li><a href="tqmotifdialog.html#~TQMotifDialog">~TQMotifDialog</a>()
<li><a href="tqdialog.html#accept">accept</a>() <li><a href="tqdialog.html#accept">accept</a>()
<li><a href="qmotifdialog.html#acceptCallback">acceptCallback</a>() <li><a href="tqmotifdialog.html#acceptCallback">acceptCallback</a>()
<li><a href="tqwidget.html#acceptDrops">acceptDrops</a>() <li><a href="tqwidget.html#acceptDrops">acceptDrops</a>()
<li><a href="tqwidget.html#adjustSize">adjustSize</a>() <li><a href="tqwidget.html#adjustSize">adjustSize</a>()
<li><a href="tqwidget.html#autoMask">autoMask</a>() <li><a href="tqwidget.html#autoMask">autoMask</a>()
@ -77,7 +77,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#deleteLater">deleteLater</a>() <li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqwidget.html#destroy">destroy</a>() <li><a href="tqwidget.html#destroy">destroy</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="qmotifdialog.html#dialog">dialog</a>() <li><a href="tqmotifdialog.html#dialog">dialog</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="tqdialog.html#done">done</a>() <li><a href="tqdialog.html#done">done</a>()
@ -214,7 +214,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqwidget.html#recreate">recreate</a>() <li><a href="tqwidget.html#recreate">recreate</a>()
<li><a href="tqwidget.html#rect">rect</a>() <li><a href="tqwidget.html#rect">rect</a>()
<li><a href="tqdialog.html#reject">reject</a>() <li><a href="tqdialog.html#reject">reject</a>()
<li><a href="qmotifdialog.html#rejectCallback">rejectCallback</a>() <li><a href="tqmotifdialog.html#rejectCallback">rejectCallback</a>()
<li><a href="tqwidget.html#releaseKeyboard">releaseKeyboard</a>() <li><a href="tqwidget.html#releaseKeyboard">releaseKeyboard</a>()
<li><a href="tqwidget.html#releaseMouse">releaseMouse</a>() <li><a href="tqwidget.html#releaseMouse">releaseMouse</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
@ -283,7 +283,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqwidget.html#setWFlags">setWFlags</a>() <li><a href="tqwidget.html#setWFlags">setWFlags</a>()
<li><a href="tqwidget.html#setWindowOpacity">setWindowOpacity</a>() <li><a href="tqwidget.html#setWindowOpacity">setWindowOpacity</a>()
<li><a href="tqwidget.html#setWindowState">setWindowState</a>() <li><a href="tqwidget.html#setWindowState">setWindowState</a>()
<li><a href="qmotifdialog.html#shell">shell</a>() <li><a href="tqmotifdialog.html#shell">shell</a>()
<li><a href="tqdialog.html#show">show</a>() <li><a href="tqdialog.html#show">show</a>()
<li><a href="tqwidget.html#showEvent">showEvent</a>() <li><a href="tqwidget.html#showEvent">showEvent</a>()
<li><a href="tqdialog.html#showExtension">showExtension</a>() <li><a href="tqdialog.html#showExtension">showExtension</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/extensions/motif/src/qmotifdialog.cpp:167 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/extensions/motif/src/tqmotifdialog.cpp:167 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQMotifDialog class provides the TQDialog API for Motif-based dialogs. <p>The TQMotifDialog class provides the TQDialog API for Motif-based dialogs.
<a href="#details">More...</a> <a href="#details">More...</a>
<p>This class is part of the <b>TQt Motif Extension</b>. <p>This class is part of the <b>TQt Motif Extension</b>.
<p><tt>#include &lt;<a href="qmotifdialog-h.html">qmotifdialog.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmotifdialog-h.html">tqmotifdialog.h</a>&gt;</tt>
<p>Inherits <a href="tqdialog.html">TQDialog</a>. <p>Inherits <a href="tqdialog.html">TQDialog</a>.
<p><a href="qmotifdialog-members.html">List of all member functions.</a> <p><a href="tqmotifdialog-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn>enum DialogType { Prompt, Selection, Command, FileSelection, Template, Error, Information, Message, Question, Warning, Working } &nbsp;<em>(obsolete)</em></li> <li class=fn>enum DialogType { Prompt, Selection, Command, FileSelection, Template, Error, Information, Message, Question, Warning, Working } &nbsp;<em>(obsolete)</em></li>
@ -98,7 +98,7 @@ passed to the constructor, instead of a <a href="tqwidget.html">TQWidget</a> par
<li><tt>TQMotifDialog::Working</tt> <li><tt>TQMotifDialog::Working</tt>
</ul> </ul>
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQMotifDialog"></a>TQMotifDialog::TQMotifDialog ( <a href="qmotifdialog.html#DialogType-enum">DialogType</a>&nbsp;dialogtype, Widget&nbsp;parent, ArgList&nbsp;args = NULL, Cardinal&nbsp;argcount = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, bool&nbsp;modal = FALSE, WFlags&nbsp;flags = 0 ) <h3 class=fn><a name="TQMotifDialog"></a>TQMotifDialog::TQMotifDialog ( <a href="tqmotifdialog.html#DialogType-enum">DialogType</a>&nbsp;dialogtype, Widget&nbsp;parent, ArgList&nbsp;args = NULL, Cardinal&nbsp;argcount = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, bool&nbsp;modal = FALSE, WFlags&nbsp;flags = 0 )
</h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. </h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code.
<p> Creates a TQMotifDialog using one of the predefined <a href="motif-extension.html#Motif">Motif</a> dialog <p> Creates a TQMotifDialog using one of the predefined <a href="motif-extension.html#Motif">Motif</a> dialog
types. The <em>name</em>, <em>modal</em> and <em>flags</em> arguments are passed to types. The <em>name</em>, <em>modal</em> and <em>flags</em> arguments are passed to

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqmotifplusstyle.h:54 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmotifplusstyle.h:54 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,10 +32,10 @@ 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 TQMotifPlusStyle</h1> <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 TQMotifPlusStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a>, including inherited members. <a href="tqmotifplusstyle.html">TQMotifPlusStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqmotifplusstyle.html#TQMotifPlusStyle">TQMotifPlusStyle</a>() <li><a href="tqmotifplusstyle.html#TQMotifPlusStyle">TQMotifPlusStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -87,7 +87,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>() <li><a href="tqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>() <li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
@ -99,7 +99,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>() <li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>() <li><a href="tqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>() <li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qmotifplusstyle.cpp:131 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqmotifplusstyle.cpp:131 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQMotifPlusStyle class provides a more sophisticated Motif-ish look and feel. <p>The TQMotifPlusStyle class provides a more sophisticated Motif-ish look and feel.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmotifplusstyle-h.html">ntqmotifplusstyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmotifplusstyle-h.html">tqmotifplusstyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqmotifstyle.html">TQMotifStyle</a>. <p>Inherits <a href="tqmotifstyle.html">TQMotifStyle</a>.
<p><a href="qmotifplusstyle-members.html">List of all member functions.</a> <p><a href="tqmotifplusstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMotifPlusStyle"><b>TQMotifPlusStyle</b></a> ( bool&nbsp;hoveringHighlight = TRUE )</li> <li class=fn><a href="#TQMotifPlusStyle"><b>TQMotifPlusStyle</b></a> ( bool&nbsp;hoveringHighlight = TRUE )</li>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqmotifstyle.h:56 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmotifstyle.h:56 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,10 +32,10 @@ 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 TQMotifStyle</h1> <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 TQMotifStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqmotifstyle.html">TQMotifStyle</a>, including inherited members. <a href="tqmotifstyle.html">TQMotifStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqmotifstyle.html#TQMotifStyle">TQMotifStyle</a>() <li><a href="tqmotifstyle.html#TQMotifStyle">TQMotifStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -87,7 +87,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>() <li><a href="tqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>() <li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
@ -99,7 +99,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>() <li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>() <li><a href="tqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>() <li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qmotifstyle.cpp:76 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqmotifstyle.cpp:76 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,10 +33,10 @@ body { background: #ffffff; color: black; }
<p>The TQMotifStyle class provides Motif look and feel. <p>The TQMotifStyle class provides Motif look and feel.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmotifstyle-h.html">ntqmotifstyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmotifstyle-h.html">tqmotifstyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqcommonstyle.html">TQCommonStyle</a>. <p>Inherits <a href="tqcommonstyle.html">TQCommonStyle</a>.
<p>Inherited by <a href="ntqcdestyle.html">TQCDEStyle</a>, <a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a>, and <a href="ntqsgistyle.html">TQSGIStyle</a>. <p>Inherited by <a href="tqcdestyle.html">TQCDEStyle</a>, <a href="tqmotifplusstyle.html">TQMotifPlusStyle</a>, and <a href="tqsgistyle.html">TQSGIStyle</a>.
<p><a href="qmotifstyle-members.html">List of all member functions.</a> <p><a href="tqmotifstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMotifStyle"><b>TQMotifStyle</b></a> ( bool&nbsp;useHighlightCols = FALSE )</li> <li class=fn><a href="#TQMotifStyle"><b>TQMotifStyle</b></a> ( bool&nbsp;useHighlightCols = FALSE )</li>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qmotifwidget.h:38 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmotifwidget.h:38 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <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 TQMotifWidget</h1> <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 TQMotifWidget</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qmotifwidget.html">TQMotifWidget</a>, including inherited members. <a href="tqmotifwidget.html">TQMotifWidget</a>, including inherited members.
<ul> <ul>
<li><a href="qmotifwidget.html#TQMotifWidget">TQMotifWidget</a>() <li><a href="tqmotifwidget.html#TQMotifWidget">TQMotifWidget</a>()
<li><a href="qmotifwidget.html#~TQMotifWidget">~TQMotifWidget</a>() <li><a href="tqmotifwidget.html#~TQMotifWidget">~TQMotifWidget</a>()
<li><a href="tqwidget.html#acceptDrops">acceptDrops</a>() <li><a href="tqwidget.html#acceptDrops">acceptDrops</a>()
<li><a href="tqwidget.html#adjustSize">adjustSize</a>() <li><a href="tqwidget.html#adjustSize">adjustSize</a>()
<li><a href="tqwidget.html#autoMask">autoMask</a>() <li><a href="tqwidget.html#autoMask">autoMask</a>()
@ -176,7 +176,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqwidget.html#minimumSize">minimumSize</a>() <li><a href="tqwidget.html#minimumSize">minimumSize</a>()
<li><a href="tqwidget.html#minimumSizeHint">minimumSizeHint</a>() <li><a href="tqwidget.html#minimumSizeHint">minimumSizeHint</a>()
<li><a href="tqwidget.html#minimumWidth">minimumWidth</a>() <li><a href="tqwidget.html#minimumWidth">minimumWidth</a>()
<li><a href="qmotifwidget.html#motifWidget">motifWidget</a>() <li><a href="tqmotifwidget.html#motifWidget">motifWidget</a>()
<li><a href="tqwidget.html#mouseDoubleClickEvent">mouseDoubleClickEvent</a>() <li><a href="tqwidget.html#mouseDoubleClickEvent">mouseDoubleClickEvent</a>()
<li><a href="tqwidget.html#mouseGrabber">mouseGrabber</a>() <li><a href="tqwidget.html#mouseGrabber">mouseGrabber</a>()
<li><a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>() <li><a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/extensions/motif/src/qmotifwidget.cpp:272 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/extensions/motif/src/tqmotifwidget.cpp:272 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQMotifWidget class provides the TQWidget API for Xt/Motif widgets. <p>The TQMotifWidget class provides the TQWidget API for Xt/Motif widgets.
<a href="#details">More...</a> <a href="#details">More...</a>
<p>This class is part of the <b>TQt Motif Extension</b>. <p>This class is part of the <b>TQt Motif Extension</b>.
<p><tt>#include &lt;<a href="qmotifwidget-h.html">qmotifwidget.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmotifwidget-h.html">tqmotifwidget.h</a>&gt;</tt>
<p>Inherits <a href="tqwidget.html">TQWidget</a>. <p>Inherits <a href="tqwidget.html">TQWidget</a>.
<p><a href="qmotifwidget-members.html">List of all member functions.</a> <p><a href="tqmotifwidget-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMotifWidget"><b>TQMotifWidget</b></a> ( TQWidget&nbsp;*&nbsp;parent, WidgetClass&nbsp;widgetclass, ArgList&nbsp;args = NULL, Cardinal&nbsp;argcount = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, WFlags&nbsp;flags = 0 )</li> <li class=fn><a href="#TQMotifWidget"><b>TQMotifWidget</b></a> ( TQWidget&nbsp;*&nbsp;parent, WidgetClass&nbsp;widgetclass, ArgList&nbsp;args = NULL, Cardinal&nbsp;argcount = 0, const&nbsp;char&nbsp;*&nbsp;name = 0, WFlags&nbsp;flags = 0 )</li>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqplatinumstyle.h:55 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqplatinumstyle.h:55 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,10 +32,10 @@ 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 TQPlatinumStyle</h1> <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 TQPlatinumStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqplatinumstyle.html">TQPlatinumStyle</a>, including inherited members. <a href="tqplatinumstyle.html">TQPlatinumStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqplatinumstyle.html#TQPlatinumStyle">TQPlatinumStyle</a>() <li><a href="tqplatinumstyle.html#TQPlatinumStyle">TQPlatinumStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -56,7 +56,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqstyle.html#drawControlMask">drawControlMask</a>() <li><a href="tqstyle.html#drawControlMask">drawControlMask</a>()
<li><a href="tqstyle.html#drawItem">drawItem</a>() <li><a href="tqstyle.html#drawItem">drawItem</a>()
<li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>() <li><a href="tqstyle.html#drawPrimitive">drawPrimitive</a>()
<li><a href="ntqplatinumstyle.html#drawRiffles">drawRiffles</a>() <li><a href="tqplatinumstyle.html#drawRiffles">drawRiffles</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
@ -71,7 +71,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#killTimer">killTimer</a>() <li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>() <li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>() <li><a href="tqobject.html#metaObject">metaObject</a>()
<li><a href="ntqplatinumstyle.html#mixedColor">mixedColor</a>() <li><a href="tqplatinumstyle.html#mixedColor">mixedColor</a>()
<li><a href="tqobject.html#name">name</a>() <li><a href="tqobject.html#name">name</a>()
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qplatinumstyle.cpp:53 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqplatinumstyle.cpp:53 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQPlatinumStyle class provides Mac/Platinum look and feel. <p>The TQPlatinumStyle class provides Mac/Platinum look and feel.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qplatinumstyle-h.html">ntqplatinumstyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqplatinumstyle-h.html">tqplatinumstyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqwindowsstyle.html">TQWindowsStyle</a>. <p>Inherits <a href="tqwindowsstyle.html">TQWindowsStyle</a>.
<p><a href="qplatinumstyle-members.html">List of all member functions.</a> <p><a href="tqplatinumstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQPlatinumStyle"><b>TQPlatinumStyle</b></a> ()</li> <li class=fn><a href="#TQPlatinumStyle"><b>TQPlatinumStyle</b></a> ()</li>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqsgistyle.h:57 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqsgistyle.h:57 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <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 TQSGIStyle</h1> <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 TQSGIStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqsgistyle.html">TQSGIStyle</a>, including inherited members. <a href="tqsgistyle.html">TQSGIStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqsgistyle.html#TQSGIStyle">TQSGIStyle</a>() <li><a href="tqsgistyle.html#TQSGIStyle">TQSGIStyle</a>()
<li><a href="ntqsgistyle.html#~TQSGIStyle">~TQSGIStyle</a>() <li><a href="tqsgistyle.html#~TQSGIStyle">~TQSGIStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -88,7 +88,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="ntqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>() <li><a href="tqmotifstyle.html#setUseHighlightColors">setUseHighlightColors</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>() <li><a href="tqstyle.html#sizeFromContents">sizeFromContents</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
@ -100,7 +100,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="tqstyle.html#unPolish">unPolish</a>() <li><a href="tqstyle.html#unPolish">unPolish</a>()
<li><a href="ntqmotifstyle.html#useHighlightColors">useHighlightColors</a>() <li><a href="tqmotifstyle.html#useHighlightColors">useHighlightColors</a>()
<li><a href="tqstyle.html#visualRect">visualRect</a>() <li><a href="tqstyle.html#visualRect">visualRect</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qsgistyle.cpp:96 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqsgistyle.cpp:96 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQSGIStyle class provides SGI/Irix look and feel. <p>The TQSGIStyle class provides SGI/Irix look and feel.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qsgistyle-h.html">ntqsgistyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqsgistyle-h.html">tqsgistyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqmotifstyle.html">TQMotifStyle</a>. <p>Inherits <a href="tqmotifstyle.html">TQMotifStyle</a>.
<p><a href="qsgistyle-members.html">List of all member functions.</a> <p><a href="tqsgistyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQSGIStyle"><b>TQSGIStyle</b></a> ( bool&nbsp;useHighlightCols = FALSE )</li> <li class=fn><a href="#TQSGIStyle"><b>TQSGIStyle</b></a> ( bool&nbsp;useHighlightCols = FALSE )</li>
@ -58,7 +58,7 @@ Constructs a TQSGIStyle.
polish the application's color palette to emulate the <a href="motif-extension.html#Motif">Motif</a> way of polish the application's color palette to emulate the <a href="motif-extension.html#Motif">Motif</a> way of
highlighting, which is a simple inversion between the base and the highlighting, which is a simple inversion between the base and the
text color. text color.
<p> <p>See also <a href="ntqmotifstyle.html#useHighlightColors">TQMotifStyle::useHighlightColors</a>(). <p> <p>See also <a href="tqmotifstyle.html#useHighlightColors">TQMotifStyle::useHighlightColors</a>().
<h3 class=fn><a name="~TQSGIStyle"></a>TQSGIStyle::~TQSGIStyle ()<tt> [virtual]</tt> <h3 class=fn><a name="~TQSGIStyle"></a>TQSGIStyle::~TQSGIStyle ()<tt> [virtual]</tt>
</h3> </h3>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqstyle-h.html">tqstyle.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>Inherits <a href="tqobject.html">TQObject</a>.
<p>Inherited by <a href="ntqcommonstyle.html">TQCommonStyle</a>. <p>Inherited by <a href="tqcommonstyle.html">TQCommonStyle</a>.
<p><a href="tqstyle-members.html">List of all member functions.</a> <p><a href="tqstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt;</tt>
<p>Inherits <a href="tqobject.html">TQObject</a> and <a href="tqpaintdevice.html">TQPaintDevice</a>. <p>Inherits <a href="tqobject.html">TQObject</a> and <a href="tqpaintdevice.html">TQPaintDevice</a>.
-<p>Inherited by <a href="tqbutton.html">TQButton</a>, <a href="tqframe.html">TQFrame</a>, <a href="tqdialog.html">TQDialog</a>, <a href="tqcombobox.html">TQComboBox</a>, <a href="tqdatabrowser.html">TQDataBrowser</a>, <a href="tqdataview.html">TQDataView</a>, <a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, <a href="tqdesktopwidget.html">TQDesktopWidget</a>, <a href="tqdial.html">TQDial</a>, <a href="ntqdockarea.html">TQDockArea</a>, <a href="tqglwidget.html">TQGLWidget</a>, <a href="tqheader.html">TQHeader</a>, <a href="tqmainwindow.html">TQMainWindow</a>, <a href="qmotifwidget.html">TQMotifWidget</a>, <a href="qnpwidget.html">TQNPWidget</a>, <a href="tqscrollbar.html">TQScrollBar</a>, <a href="tqsizegrip.html">TQSizeGrip</a>, <a href="tqslider.html">TQSlider</a>, <a href="tqspinbox.html">TQSpinBox</a>, <a href="ntqsplashscreen.html">TQSplashScreen</a>, <a href="tqstatusbar.html">TQStatusBar</a>, <a href="tqtabbar.html">TQTabBar</a>, <a href="tqtabwidget.html">TQTabWidget</a>, <a href="tqworkspace.html">TQWorkspace</a>, and <a href="qxtwidget.html">TQXtWidget</a>. -<p>Inherited by <a href="tqbutton.html">TQButton</a>, <a href="tqframe.html">TQFrame</a>, <a href="tqdialog.html">TQDialog</a>, <a href="tqcombobox.html">TQComboBox</a>, <a href="tqdatabrowser.html">TQDataBrowser</a>, <a href="tqdataview.html">TQDataView</a>, <a href="tqdatetimeeditbase.html">TQDateTimeEditBase</a>, <a href="tqdatetimeedit.html">TQDateTimeEdit</a>, <a href="tqdesktopwidget.html">TQDesktopWidget</a>, <a href="tqdial.html">TQDial</a>, <a href="ntqdockarea.html">TQDockArea</a>, <a href="tqglwidget.html">TQGLWidget</a>, <a href="tqheader.html">TQHeader</a>, <a href="tqmainwindow.html">TQMainWindow</a>, <a href="tqmotifwidget.html">TQMotifWidget</a>, <a href="qnpwidget.html">TQNPWidget</a>, <a href="tqscrollbar.html">TQScrollBar</a>, <a href="tqsizegrip.html">TQSizeGrip</a>, <a href="tqslider.html">TQSlider</a>, <a href="tqspinbox.html">TQSpinBox</a>, <a href="ntqsplashscreen.html">TQSplashScreen</a>, <a href="tqstatusbar.html">TQStatusBar</a>, <a href="tqtabbar.html">TQTabBar</a>, <a href="tqtabwidget.html">TQTabWidget</a>, <a href="tqworkspace.html">TQWorkspace</a>, and <a href="qxtwidget.html">TQXtWidget</a>.
<p><a href="tqwidget-members.html">List of all member functions.</a> <p><a href="tqwidget-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

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

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/ntqwindowsstyle.h:54 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqwindowsstyle.h:54 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,10 +32,10 @@ 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 TQWindowsStyle</h1> <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 TQWindowsStyle</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqwindowsstyle.html">TQWindowsStyle</a>, including inherited members. <a href="tqwindowsstyle.html">TQWindowsStyle</a>, including inherited members.
<ul> <ul>
<li><a href="ntqwindowsstyle.html#TQWindowsStyle">TQWindowsStyle</a>() <li><a href="tqwindowsstyle.html#TQWindowsStyle">TQWindowsStyle</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!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/qwindowsstyle.cpp:208 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/styles/tqwindowsstyle.cpp:208 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,10 +33,10 @@ body { background: #ffffff; color: black; }
<p>The TQWindowsStyle class provides a Microsoft Windows-like look and feel. <p>The TQWindowsStyle class provides a Microsoft Windows-like look and feel.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>&gt;</tt>
<p>Inherits <a href="ntqcommonstyle.html">TQCommonStyle</a>. <p>Inherits <a href="tqcommonstyle.html">TQCommonStyle</a>.
<p>Inherited by <a href="qmacstyle.html">TQMacStyle</a> and <a href="ntqplatinumstyle.html">TQPlatinumStyle</a>. <p>Inherited by <a href="qmacstyle.html">TQMacStyle</a> and <a href="tqplatinumstyle.html">TQPlatinumStyle</a>.
<p><a href="qwindowsstyle-members.html">List of all member functions.</a> <p><a href="tqwindowsstyle-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQWindowsStyle"><b>TQWindowsStyle</b></a> ()</li> <li class=fn><a href="#TQWindowsStyle"><b>TQWindowsStyle</b></a> ()</li>

@ -43,7 +43,7 @@ Browsing and editing of SQL tables and views. | TQSqlCursor
Browsing of general SQL SELECT statements. | TQSqlSelectCursor Browsing of general SQL SELECT statements. | TQSqlSelectCursor
Buffered TCP connection. | TQSocket Buffered TCP connection. | TQSocket
Bundles signals from identifiable senders. | TQSignalMapper Bundles signals from identifiable senders. | TQSignalMapper
CDE look and feel. | QCDEStyle CDE look and feel. | TQCDEStyle
Can be used to send signals for classes that don't inherit TQObject. | TQSignal Can be used to send signals for classes that don't inherit TQObject. | TQSignal
Checkable list view items. | TQCheckListItem Checkable list view items. | TQCheckListItem
Checkbox with a text label. | TQCheckBox Checkbox with a text label. | TQCheckBox
@ -113,7 +113,7 @@ Encapsulates a drag item. | TQIconDragItem
Encapsulates a key sequence as used by accelerators. | QKeySequence Encapsulates a key sequence as used by accelerators. | QKeySequence
Encapsulates a set of database field meta data. | TQSqlRecordInfo Encapsulates a set of database field meta data. | TQSqlRecordInfo
Encapsulates an OpenGL rendering context. | TQGLContext Encapsulates an OpenGL rendering context. | TQGLContext
Encapsulates the common Look and Feel of a GUI. | QCommonStyle Encapsulates the common Look and Feel of a GUI. | TQCommonStyle
Encapsulation of a set of text styles. | TQStyleSheetItem Encapsulation of a set of text styles. | TQStyleSheetItem
Enums and static functions relating to accessibility. | QAccessible Enums and static functions relating to accessibility. | QAccessible
Error message display dialog. | QErrorMessage Error message display dialog. | QErrorMessage
@ -211,7 +211,7 @@ List of TQCanvasItems. | TQCanvasItemList
List of TQDomNode objects. | TQDomNodeList List of TQDomNode objects. | TQDomNodeList
List of selectable, read-only items. | TQListBox List of selectable, read-only items. | TQListBox
List of strings. | TQStringList List of strings. | TQStringList
Mac/Platinum look and feel. | QPlatinumStyle Mac/Platinum look and feel. | TQPlatinumStyle
Main application window, with a menu bar, dock windows (e.g. for toolbars), and a status bar. | TQMainWindow Main application window, with a menu bar, dock windows (e.g. for toolbars), and a status bar. | TQMainWindow
Maintains the list of widgets in the focus chain. | QFocusData Maintains the list of widgets in the focus chain. | QFocusData
Manages and lays out QDockWindows. | QDockArea Manages and lays out QDockWindows. | QDockArea
@ -224,11 +224,11 @@ Means of executing and manipulating SQL statements. | TQSqlQuery
Means of using TQt Assistant as an application's help tool. | QAssistantClient Means of using TQt Assistant as an application's help tool. | QAssistantClient
Means of using comboboxes in TQTables. | TQComboTableItem Means of using comboboxes in TQTables. | TQComboTableItem
Meta information about TQt objects. | QMetaObject Meta information about TQt objects. | QMetaObject
Microsoft Windows-like look and feel. | QWindowsStyle Microsoft Windows-like look and feel. | TQWindowsStyle
Modal dialog with a short message, an icon, and some buttons. | QMessageBox Modal dialog with a short message, an icon, and some buttons. | QMessageBox
Monochrome (1-bit depth) pixmaps. | TQBitmap Monochrome (1-bit depth) pixmaps. | TQBitmap
More sophisticated Motif-ish look and feel. | QMotifPlusStyle More sophisticated Motif-ish look and feel. | TQMotifPlusStyle
Motif look and feel. | QMotifStyle Motif look and feel. | TQMotifStyle
Mouse cursor with an arbitrary shape. | QCursor Mouse cursor with an arbitrary shape. | QCursor
Movable panel containing widgets such as tool buttons. | TQToolBar Movable panel containing widgets such as tool buttons. | TQToolBar
Multi-bezier splines on a TQCanvas. | TQCanvasSpline Multi-bezier splines on a TQCanvas. | TQCanvasSpline
@ -288,7 +288,7 @@ Response header information for HTTP. | TQHttpResponseHeader
Rich text browser with hypertext navigation. | TQTextBrowser Rich text browser with hypertext navigation. | TQTextBrowser
Robust integer semaphore. | TQSemaphore Robust integer semaphore. | TQSemaphore
Rounded range control (like a speedometer or potentiometer). | TQDial Rounded range control (like a speedometer or potentiometer). | TQDial
SGI/Irix look and feel. | QSGIStyle SGI/Irix look and feel. | TQSGIStyle
SQL database error information. | TQSqlError SQL database error information. | TQSqlError
Scrolling area with on-demand scroll bars. | TQScrollView Scrolling area with on-demand scroll bars. | TQScrollView
Serialization of binary data to a TQIODevice. | TQDataStream Serialization of binary data to a TQIODevice. | TQDataStream
@ -335,8 +335,8 @@ Template class which ensures that implicitly shared and explicitly shared classe
Template collection class that provides a vector (array). | TQPtrVector Template collection class that provides a vector (array). | TQPtrVector
Text object on a TQCanvas. | TQCanvasText Text object on a TQCanvas. | TQCanvasText
Text or image display. | TQLabel Text or image display. | TQLabel
The TQDialog API for Motif-based dialogs. | QMotifDialog The TQDialog API for Motif-based dialogs. | TQMotifDialog
The TQWidget API for Xt/Motif widgets. | QMotifWidget The TQWidget API for Xt/Motif widgets. | TQMotifWidget
The XML handler classes with information about the parsing position within a file. | TQXmlLocator The XML handler classes with information about the parsing position within a file. | TQXmlLocator
The abstract base class of button widgets, providing functionality common to buttons. | TQButton The abstract base class of button widgets, providing functionality common to buttons. | TQButton
The base class for all the nodes in a DOM tree. | TQDomNode The base class for all the nodes in a DOM tree. | TQDomNode
@ -350,7 +350,7 @@ The base class of geometry managers. | TQLayout
The base class of most pointer-based TQt collections. | TQPtrCollection The base class of most pointer-based TQt collections. | TQPtrCollection
The base class of objects that can be painted. | TQPaintDevice The base class of objects that can be painted. | TQPaintDevice
The base class of widgets that can have a frame. | TQFrame The base class of widgets that can have a frame. | TQFrame
The basis of the Motif Extension. | QMotif The basis of the Motif Extension. | TQMotif
The cell content for TQTable cells. | TQTableItem The cell content for TQTable cells. | TQTableItem
The display format of an OpenGL rendering context. | TQGLFormat The display format of an OpenGL rendering context. | TQGLFormat
The input data for the TQXmlReader subclasses. | TQXmlInputSource The input data for the TQXmlReader subclasses. | TQXmlInputSource

@ -358,7 +358,7 @@ in a line-by-line coverage please refer to the tutorials
\section1 TQt Extensions: Assorted Examples \section1 TQt Extensions: Assorted Examples
\list \list
\i \link motif-examples.html QMotif support extension \endlink \i \link motif-examples.html TQMotif support extension \endlink
\omit \i \link xt-motif-examples.html Xt/Motif support extension \endlink \endomit \omit \i \link xt-motif-examples.html Xt/Motif support extension \endlink \endomit
\i \link nsplugin-examples.html Qt-based plugins for web browsers \endlink \i \link nsplugin-examples.html Qt-based plugins for web browsers \endlink
\endlist \endlist
@ -452,13 +452,13 @@ For more information see the \link netscape-plugin.html Plugin Howto \endlink.
/*! \defgroup motif-examples /*! \defgroup motif-examples
\title QMotif Support Extension \title TQMotif Support Extension
The following example programs illustrate the use of the QMotif Extension The following example programs illustrate the use of the TQMotif Extension
assisting in the migration process of old Xt and Motif based code assisting in the migration process of old Xt and Motif based code
to the more comfortable TQt toolkit. to the more comfortable TQt toolkit.
For more information see the \link motif-extension.html QMotif For more information see the \link motif-extension.html TQMotif
Support Extension documentation. \endlink Support Extension documentation. \endlink
*/ */

@ -1431,7 +1431,7 @@ Example usage:
.PP .PP
.nf .nf
.br .br
QApplication::setStyle( new QWindowsStyle ); QApplication::setStyle( new TQWindowsStyle );
.br .br
.fi .fi
.PP .PP

@ -1,5 +1,5 @@
'\" t '\" t
.TH QCDEStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQCDEStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,39 +7,39 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QCDEStyle \- CDE look and feel TQCDEStyle \- CDE look and feel
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqcdestyle.h>\fR \fC#include <tqcdestyle.h>\fR
.PP .PP
Inherits QMotifStyle. Inherits TQMotifStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQCDEStyle\fR ( bool useHighlightCols = FALSE )" .BI "\fBTQCDEStyle\fR ( bool useHighlightCols = FALSE )"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QCDEStyle\fR ()" .BI "virtual \fB~TQCDEStyle\fR ()"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QCDEStyle class provides a CDE look and feel. The TQCDEStyle class provides a CDE look and feel.
.PP .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). 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 .PP
Note that the functions provided by QCDEStyle are reimplementations of TQStyle functions; see TQStyle for their documentation. Note that the functions provided by TQCDEStyle are reimplementations of TQStyle functions; see TQStyle for their documentation.
.PP .PP
See also Widget Appearance and Style. See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QCDEStyle::QCDEStyle ( bool useHighlightCols = FALSE )" .SH "TQCDEStyle::TQCDEStyle ( bool useHighlightCols = FALSE )"
Constructs a QCDEStyle. Constructs a TQCDEStyle.
.PP .PP
If \fIuseHighlightCols\fR is FALSE (the default), then the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color. If \fIuseHighlightCols\fR is FALSE (the default), then the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color.
.SH "QCDEStyle::~QCDEStyle ()\fC [virtual]\fR" .SH "TQCDEStyle::~TQCDEStyle ()\fC [virtual]\fR"
Destroys the style. Destroys the style.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqcdestyle.html .BR http://doc.trolltech.com/tqcdestyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QCommonStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQCommonStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,22 +7,22 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QCommonStyle \- Encapsulates the common Look and Feel of a GUI TQCommonStyle \- Encapsulates the common Look and Feel of a GUI
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqcommonstyle.h>\fR \fC#include <tqcommonstyle.h>\fR
.PP .PP
Inherits TQStyle. Inherits TQStyle.
.PP .PP
Inherited by QMotifStyle and QWindowsStyle. Inherited by TQMotifStyle and TQWindowsStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQCommonStyle\fR ()" .BI "\fBTQCommonStyle\fR ()"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QCommonStyle class encapsulates the common Look and Feel of a GUI. The TQCommonStyle class encapsulates the common Look and Feel of a GUI.
.PP .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. 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 .PP
@ -30,11 +30,11 @@ All the functions are documented in TQStyle.
.PP .PP
See also Widget Appearance and Style. See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QCommonStyle::QCommonStyle ()" .SH "TQCommonStyle::TQCommonStyle ()"
Constructs a QCommonStyle. Constructs a TQCommonStyle.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqcommonstyle.html .BR http://doc.trolltech.com/tqcommonstyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -13,7 +13,7 @@ TQDialog \- The base class of dialog windows
.PP .PP
Inherits TQWidget. Inherits TQWidget.
.PP .PP
Inherited by TQColorDialog, QErrorMessage, TQFileDialog, TQFontDialog, QInputDialog, QMessageBox, QMotifDialog, TQProgressDialog, TQTabDialog, and TQWizard. Inherited by TQColorDialog, QErrorMessage, TQFileDialog, TQFontDialog, QInputDialog, QMessageBox, TQMotifDialog, TQProgressDialog, TQTabDialog, and TQWizard.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -13,7 +13,7 @@ TQEventLoop \- Manages the event queue
.PP .PP
Inherits TQObject. Inherits TQObject.
.PP .PP
Inherited by QMotif. Inherited by TQMotif.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -11,7 +11,7 @@ QMacStyle \- Implements an Appearance Manager style
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <qmacstyle_mac.h>\fR \fC#include <qmacstyle_mac.h>\fR
.PP .PP
Inherits QWindowsStyle. Inherits TQWindowsStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMotif 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMotif 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,21 +7,21 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMotif \- The basis of the TQMotif \- The basis of the
.SH SYNOPSIS .SH SYNOPSIS
This class is part of the \fBQt Motif Extension\fR. This class is part of the \fBQt Motif Extension\fR.
.PP .PP
\fC#include <qmotif.h>\fR \fC#include <tqmotif.h>\fR
.PP .PP
Inherits TQEventLoop. Inherits TQEventLoop.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMotif\fR ( const char * applicationClass, XtAppContext context = NULL, XrmOptionDescRec * options = 0, int numOptions = 0 )" .BI "\fBTQMotif\fR ( const char * applicationClass, XtAppContext context = NULL, XrmOptionDescRec * options = 0, int numOptions = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QMotif\fR ()" .BI "\fB~TQMotif\fR ()"
.br .br
.ti -1c .ti -1c
.BI "XtAppContext \fBapplicationContext\fR () const" .BI "XtAppContext \fBapplicationContext\fR () const"
@ -36,13 +36,13 @@ Inherits TQEventLoop.
.SH DESCRIPTION .SH DESCRIPTION
This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API. This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API.
.PP .PP
The QMotif class provides the basis of the Motif Extension. The TQMotif class provides the basis of the Motif Extension.
.PP .PP
QMotif only provides a few public functions, but it is at the heart of the integration. QMotif is responsible for initializing the Xt toolkit and the Xt application context. It does not open a connection to the X server, that is done by QApplication. TQMotif only provides a few public functions, but it is at the heart of the integration. TQMotif is responsible for initializing the Xt toolkit and the Xt application context. It does not open a connection to the X server, that is done by QApplication.
.PP .PP
The only member function in QMotif that depends on an X server connection is QMotif::initialize(). QMotif must be created before QApplication. The only member function in TQMotif that depends on an X server connection is TQMotif::initialize(). TQMotif must be created before QApplication.
.PP .PP
Example usage of QMotif and QApplication: Example usage of TQMotif and QApplication:
.PP .PP
.nf .nf
.br .br
@ -57,7 +57,7 @@ Example usage of QMotif and QApplication:
.br .br
{ {
.br .br
QMotif integrator( "AppClass" ); TQMotif integrator( "AppClass" );
.br .br
XtAppSetFallbackResources( integrator.applicationContext(), XtAppSetFallbackResources( integrator.applicationContext(),
.br .br
@ -75,21 +75,21 @@ Example usage of QMotif and QApplication:
.br .br
.fi .fi
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMotif::QMotif ( const char * applicationClass, XtAppContext context = NULL, XrmOptionDescRec * options = 0, int numOptions = 0 )" .SH "TQMotif::TQMotif ( const char * applicationClass, XtAppContext context = NULL, XrmOptionDescRec * options = 0, int numOptions = 0 )"
Creates QMotif, which allows TQt and Xt/Motif integration. Creates TQMotif, which allows TQt and Xt/Motif integration.
.PP .PP
If \fIcontext\fR is 0, QMotif creates a default application context itself. The context is accessible through applicationContext(). If \fIcontext\fR is 0, TQMotif creates a default application context itself. The context is accessible through applicationContext().
.PP .PP
All arguments passed to this function (\fIapplicationClass\fR, \fIoptions\fR and \fInumOptions\fR) are used to call XtDisplayInitialize() after QApplication has been constructed. All arguments passed to this function (\fIapplicationClass\fR, \fIoptions\fR and \fInumOptions\fR) are used to call XtDisplayInitialize() after QApplication has been constructed.
.SH "QMotif::~QMotif ()" .SH "TQMotif::~TQMotif ()"
Destroys QMotif. Destroys TQMotif.
.SH "XtAppContext QMotif::applicationContext () const" .SH "XtAppContext TQMotif::applicationContext () const"
Returns the application context. Returns the application context.
.SH "Display * QMotif::x11Display ()\fC [static]\fR" .SH "Display * TQMotif::x11Display ()\fC [static]\fR"
Returns the X11 display connection used by the TQt Motif Extension. Returns the X11 display connection used by the TQt Motif Extension.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qmotif.html .BR http://doc.trolltech.com/tqmotif.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMotifDialog 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMotifDialog 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,11 +7,11 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMotifDialog \- The TQDialog API for Motif-based dialogs TQMotifDialog \- The TQDialog API for Motif-based dialogs
.SH SYNOPSIS .SH SYNOPSIS
This class is part of the \fBQt Motif Extension\fR. This class is part of the \fBQt Motif Extension\fR.
.PP .PP
\fC#include <qmotifdialog.h>\fR \fC#include <tqmotifdialog.h>\fR
.PP .PP
Inherits TQDialog. Inherits TQDialog.
.PP .PP
@ -21,19 +21,19 @@ Inherits TQDialog.
.BI "enum DialogType { Prompt, Selection, Command, FileSelection, Template, Error, Information, Message, Question, Warning, Working } \fI(obsolete)\fR" .BI "enum DialogType { Prompt, Selection, Command, FileSelection, Template, Error, Information, Message, Question, Warning, Working } \fI(obsolete)\fR"
.br .br
.ti -1c .ti -1c
.BI "QMotifDialog ( DialogType dialogtype, Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 ) \fI(obsolete)\fR" .BI "TQMotifDialog ( DialogType dialogtype, Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 ) \fI(obsolete)\fR"
.br .br
.ti -1c .ti -1c
.BI "QMotifDialog ( Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 ) \fI(obsolete)\fR" .BI "TQMotifDialog ( Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 ) \fI(obsolete)\fR"
.br .br
.ti -1c .ti -1c
.BI "\fBQMotifDialog\fR ( Widget parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )" .BI "\fBTQMotifDialog\fR ( Widget parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fBQMotifDialog\fR ( TQWidget * parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )" .BI "\fBTQMotifDialog\fR ( TQWidget * parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QMotifDialog\fR ()" .BI "virtual \fB~TQMotifDialog\fR ()"
.br .br
.ti -1c .ti -1c
.BI "Widget \fBshell\fR () const" .BI "Widget \fBshell\fR () const"
@ -54,106 +54,106 @@ Inherits TQDialog.
.SH DESCRIPTION .SH DESCRIPTION
This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API. This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API.
.PP .PP
The QMotifDialog class provides the TQDialog API for Motif-based dialogs. The TQMotifDialog class provides the TQDialog API for Motif-based dialogs.
.PP .PP
QMotifDialog provides two separate modes of operation. The application programmer can use QMotifDialog with an existing Motif-based dialog and a TQWidget parent, or the application programmer can use QMotifDialog with a custom Qt-based dialog and a Motif-based parent. Modality continues to work as expected. TQMotifDialog provides two separate modes of operation. The application programmer can use TQMotifDialog with an existing Motif-based dialog and a TQWidget parent, or the application programmer can use TQMotifDialog with a custom Qt-based dialog and a Motif-based parent. Modality continues to work as expected.
.PP .PP
Motif-based dialogs must have a \fCShell\fR widget parent with a single child, due to requirements of the Motif toolkit. The \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR, is created during construction. It can be accessed using the shell() member function. Motif-based dialogs must have a \fCShell\fR widget parent with a single child, due to requirements of the Motif toolkit. The \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR, is created during construction. It can be accessed using the shell() member function.
.PP .PP
The single child of the \fCShell\fR can be accessed using the dialog() member function \fIafter\fR it has been created. The single child of the \fCShell\fR can be accessed using the dialog() member function \fIafter\fR it has been created.
.PP .PP
The acceptCallback() and rejectCallback() functions provide a convenient way to call TQDialog::accept() and TQDialog::reject() through callbacks. A pointer to the QMotifDialog should be passed as the \fCclient_data\fR argument to the callback. The acceptCallback() and rejectCallback() functions provide a convenient way to call TQDialog::accept() and TQDialog::reject() through callbacks. A pointer to the TQMotifDialog should be passed as the \fCclient_data\fR argument to the callback.
.PP .PP
The API and behavior QMotifDialog is identical to that of TQDialog when using a custom Qt-based dialog with a Motif-based parent. The only difference is that a Motif-based \fIparent\fR argument is passed to the constructor, instead of a TQWidget parent. The API and behavior TQMotifDialog is identical to that of TQDialog when using a custom Qt-based dialog with a Motif-based parent. The only difference is that a Motif-based \fIparent\fR argument is passed to the constructor, instead of a TQWidget parent.
.SS "Member Type Documentation" .SS "Member Type Documentation"
.SH "QMotifDialog::DialogType" .SH "TQMotifDialog::DialogType"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP .PP
This enum lists the predefined Motif dialog types. This enum lists the predefined Motif dialog types.
.TP .TP
\fCQMotifDialog::Prompt\fR \fCTQMotifDialog::Prompt\fR
.TP .TP
\fCQMotifDialog::Selection\fR \fCTQMotifDialog::Selection\fR
.TP .TP
\fCQMotifDialog::Command\fR \fCTQMotifDialog::Command\fR
.TP .TP
\fCQMotifDialog::FileSelection\fR \fCTQMotifDialog::FileSelection\fR
.TP .TP
\fCQMotifDialog::Template\fR \fCTQMotifDialog::Template\fR
.TP .TP
\fCQMotifDialog::Error\fR \fCTQMotifDialog::Error\fR
.TP .TP
\fCQMotifDialog::Information\fR \fCTQMotifDialog::Information\fR
.TP .TP
\fCQMotifDialog::Message\fR \fCTQMotifDialog::Message\fR
.TP .TP
\fCQMotifDialog::Question\fR \fCTQMotifDialog::Question\fR
.TP .TP
\fCQMotifDialog::Warning\fR \fCTQMotifDialog::Warning\fR
.TP .TP
\fCQMotifDialog::Working\fR \fCTQMotifDialog::Working\fR
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMotifDialog::QMotifDialog ( DialogType dialogtype, Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )" .SH "TQMotifDialog::TQMotifDialog ( DialogType dialogtype, Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP .PP
Creates a QMotifDialog using one of the predefined Motif dialog types. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor. Creates a TQMotifDialog using one of the predefined Motif dialog types. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
.PP .PP
This constructor creates a Shell widget, which is a special subclass of XmDialogShell. The \fIparent\fR, \fIargs\fR and \fIargcount\fR arguments are passed to XtCreatePopupShell() when creating the subclass. You can access the Shell widget with the shell() member function. This constructor creates a Shell widget, which is a special subclass of XmDialogShell. The \fIparent\fR, \fIargs\fR and \fIargcount\fR arguments are passed to XtCreatePopupShell() when creating the subclass. You can access the Shell widget with the shell() member function.
.PP .PP
This constructor also creates the dialog widget with the Shell widget as its parent. The type of the dialog created is specified by the \fIdialogtype\fR argument. See the DialogType enum for a list of available dialog types. You can access the dialog widget with the dialog() member function. This constructor also creates the dialog widget with the Shell widget as its parent. The type of the dialog created is specified by the \fIdialogtype\fR argument. See the DialogType enum for a list of available dialog types. You can access the dialog widget with the dialog() member function.
.PP .PP
\fBWarning:\fR QMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself. \fBWarning:\fR TQMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself.
.PP .PP
See also DialogType, shell(), and dialog(). See also DialogType, shell(), and dialog().
.SH "QMotifDialog::QMotifDialog ( Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )" .SH "TQMotifDialog::TQMotifDialog ( Widget parent, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP .PP
Creates a QMotifDialog which allows the application programmer to use the Motif-based \fIparent\fR for a custom TQDialog. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor. Creates a TQMotifDialog which allows the application programmer to use the Motif-based \fIparent\fR for a custom TQDialog. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
.PP .PP
This constructor creates a Shell widget, which is a special subclass of XmDialogShell. The \fIargs\fR and \fIargcount\fR arguments are passed to XtCreatePopupShell() when creating the subclass. You can access the Shell widget with the shell() member function. This constructor creates a Shell widget, which is a special subclass of XmDialogShell. The \fIargs\fR and \fIargcount\fR arguments are passed to XtCreatePopupShell() when creating the subclass. You can access the Shell widget with the shell() member function.
.PP .PP
The dialog widget is not created by the constructor. You must create the dialog widget as a child of the the widget returned by shell(). You can access the child widget with the dialog() member function. The dialog widget is not created by the constructor. You must create the dialog widget as a child of the the widget returned by shell(). You can access the child widget with the dialog() member function.
.PP .PP
A dialog widget is not created by this constructor. Instead, you should create the dialog widget as a child of this dialog. QMotifDialog will take ownership of your custom dialog, and you can access it with the dialog() member function. A dialog widget is not created by this constructor. Instead, you should create the dialog widget as a child of this dialog. TQMotifDialog will take ownership of your custom dialog, and you can access it with the dialog() member function.
.PP .PP
\fBWarning:\fR QMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself. \fBWarning:\fR TQMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself.
.PP .PP
See also shell() and dialog(). See also shell() and dialog().
.SH "QMotifDialog::QMotifDialog ( Widget parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )" .SH "TQMotifDialog::TQMotifDialog ( Widget parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
Creates a QMotifDialog which allows the application programmer to use the Motif-based \fIparent\fR for a custom TQDialog. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor. Creates a TQMotifDialog which allows the application programmer to use the Motif-based \fIparent\fR for a custom TQDialog. The \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
.PP .PP
This constructor creates a \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR. You can access the \fCShell\fR widget with the shell() member function. This constructor creates a \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR. You can access the \fCShell\fR widget with the shell() member function.
.PP .PP
See also shell(). See also shell().
.SH "QMotifDialog::QMotifDialog ( TQWidget * parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )" .SH "TQMotifDialog::TQMotifDialog ( TQWidget * parent, const char * name = 0, bool modal = FALSE, WFlags flags = 0 )"
Creates a QMotifDialog which allows the application programmer to use a TQWidget parent for an existing Motif-based dialog. The \fIparent\fR, \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor. Creates a TQMotifDialog which allows the application programmer to use a TQWidget parent for an existing Motif-based dialog. The \fIparent\fR, \fIname\fR, \fImodal\fR and \fIflags\fR arguments are passed to the TQDialog constructor.
.PP .PP
This constructor creates a \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR. You can access the \fCShell\fR widget with the shell() member functon. This constructor creates a \fCShell\fR widget, which is a special subclass of \fCXmDialogShell\fR. You can access the \fCShell\fR widget with the shell() member functon.
.PP .PP
A dialog widget is not created by this constructor. Instead, you should create the dialog widget as a child of this dialog. QMotifDialog will take ownership of your custom dialog, and you can access it with the dialog() member function. A dialog widget is not created by this constructor. Instead, you should create the dialog widget as a child of this dialog. TQMotifDialog will take ownership of your custom dialog, and you can access it with the dialog() member function.
.PP .PP
\fBWarning:\fR QMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself. \fBWarning:\fR TQMotifDialog takes ownership of the child widget and destroys it during destruction. You should not destroy the dialog widget yourself.
.PP .PP
See also shell() and dialog(). See also shell() and dialog().
.SH "QMotifDialog::~QMotifDialog ()\fC [virtual]\fR" .SH "TQMotifDialog::~TQMotifDialog ()\fC [virtual]\fR"
Destroys the TQDialog, dialog widget and \fCShell\fR widget. Destroys the TQDialog, dialog widget and \fCShell\fR widget.
.SH "void QMotifDialog::acceptCallback ( Widget, XtPointer client_data, XtPointer )\fC [static]\fR" .SH "void TQMotifDialog::acceptCallback ( Widget, XtPointer client_data, XtPointer )\fC [static]\fR"
Convenient Xt/Motif callback to accept the QMotifDialog. Convenient Xt/Motif callback to accept the TQMotifDialog.
.PP .PP
The data is passed in \fIclient_data\fR. The data is passed in \fIclient_data\fR.
.SH "Widget QMotifDialog::dialog () const" .SH "Widget TQMotifDialog::dialog () const"
Returns the Motif widget embedded in this dialog. Returns the Motif widget embedded in this dialog.
.SH "void QMotifDialog::rejectCallback ( Widget, XtPointer client_data, XtPointer )\fC [static]\fR" .SH "void TQMotifDialog::rejectCallback ( Widget, XtPointer client_data, XtPointer )\fC [static]\fR"
Convenient Xt/Motif callback to reject the QMotifDialog. Convenient Xt/Motif callback to reject the TQMotifDialog.
.PP .PP
The data is passed in \fIclient_data\fR. The data is passed in \fIclient_data\fR.
.SH "Widget QMotifDialog::shell () const" .SH "Widget TQMotifDialog::shell () const"
Returns the \fCShell\fR widget embedded in this dialog. Returns the \fCShell\fR widget embedded in this dialog.
.PP .PP
Example: dialog/mainwindow.cpp. Example: dialog/mainwindow.cpp.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qmotifdialog.html .BR http://doc.trolltech.com/tqmotifdialog.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMotifPlusStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMotifPlusStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,34 +7,34 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMotifPlusStyle \- More sophisticated Motif-ish look and feel TQMotifPlusStyle \- More sophisticated Motif-ish look and feel
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqmotifplusstyle.h>\fR \fC#include <tqmotifplusstyle.h>\fR
.PP .PP
Inherits QMotifStyle. Inherits TQMotifStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMotifPlusStyle\fR ( bool hoveringHighlight = TRUE )" .BI "\fBTQMotifPlusStyle\fR ( bool hoveringHighlight = TRUE )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QMotifPlusStyle class provides a more sophisticated Motif-ish look and feel. The TQMotifPlusStyle class provides a more sophisticated Motif-ish look and feel.
.PP .PP
This class implements a Motif-ish look and feel with the more sophisticated bevelling as used by the GIMP Toolkit (GTK+) for Unix/X11. This class implements a Motif-ish look and feel with the more sophisticated bevelling as used by the GIMP Toolkit (GTK+) for Unix/X11.
.PP .PP
See also Widget Appearance and Style. See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMotifPlusStyle::QMotifPlusStyle ( bool hoveringHighlight = TRUE )" .SH "TQMotifPlusStyle::TQMotifPlusStyle ( bool hoveringHighlight = TRUE )"
Constructs a QMotifPlusStyle Constructs a TQMotifPlusStyle
.PP .PP
If \fIhoveringHighlight\fR is TRUE (the default), then the style will If \fIhoveringHighlight\fR is TRUE (the default), then the style will
not highlight push buttons, checkboxes, radiobuttons, comboboxes, not highlight push buttons, checkboxes, radiobuttons, comboboxes,
scrollbars or sliders. scrollbars or sliders.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqmotifplusstyle.html .BR http://doc.trolltech.com/tqmotifplusstyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMotifStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMotifStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,18 +7,18 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMotifStyle \- Motif look and feel TQMotifStyle \- Motif look and feel
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqmotifstyle.h>\fR \fC#include <tqmotifstyle.h>\fR
.PP .PP
Inherits QCommonStyle. Inherits TQCommonStyle.
.PP .PP
Inherited by QCDEStyle, QMotifPlusStyle, and QSGIStyle. Inherited by TQCDEStyle, TQMotifPlusStyle, and TQSGIStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMotifStyle\fR ( bool useHighlightCols = FALSE )" .BI "\fBTQMotifStyle\fR ( bool useHighlightCols = FALSE )"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetUseHighlightColors\fR ( bool arg )" .BI "void \fBsetUseHighlightColors\fR ( bool arg )"
@ -28,30 +28,30 @@ Inherited by QCDEStyle, QMotifPlusStyle, and QSGIStyle.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QMotifStyle class provides Motif look and feel. The TQMotifStyle class provides Motif look and feel.
.PP .PP
This class implements the Motif look and feel. It closely resembles the original Motif look as defined by the Open Group, but with some minor improvements. The Motif style is Qt's default GUI style on UNIX platforms. This class implements the Motif look and feel. It closely resembles the original Motif look as defined by the Open Group, but with some minor improvements. The Motif style is Qt's default GUI style on UNIX platforms.
.PP .PP
See also Widget Appearance and Style. See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMotifStyle::QMotifStyle ( bool useHighlightCols = FALSE )" .SH "TQMotifStyle::TQMotifStyle ( bool useHighlightCols = FALSE )"
Constructs a QMotifStyle. Constructs a TQMotifStyle.
.PP .PP
If \fIuseHighlightCols\fR is FALSE (the default), the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color. If \fIuseHighlightCols\fR is FALSE (the default), the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color.
.SH "void QMotifStyle::setUseHighlightColors ( bool arg )" .SH "void TQMotifStyle::setUseHighlightColors ( bool arg )"
If \fIarg\fR is FALSE, the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color. If \fIarg\fR is FALSE, the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color.
.PP .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. 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 .PP
See also TQStyle::polish(). See also TQStyle::polish().
.SH "bool QMotifStyle::useHighlightColors () const" .SH "bool TQMotifStyle::useHighlightColors () const"
Returns TRUE if the style treats the highlight colors of the Returns TRUE if the style treats the highlight colors of the
palette in a Motif-like manner, which is a simple inversion palette in a Motif-like manner, which is a simple inversion
between the base and the text color; otherwise returns FALSE. The between the base and the text color; otherwise returns FALSE. The
default is FALSE. default is FALSE.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqmotifstyle.html .BR http://doc.trolltech.com/tqmotifstyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMotifWidget 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMotifWidget 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,21 +7,21 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMotifWidget \- The TQWidget API for Xt/Motif widgets TQMotifWidget \- The TQWidget API for Xt/Motif widgets
.SH SYNOPSIS .SH SYNOPSIS
This class is part of the \fBQt Motif Extension\fR. This class is part of the \fBQt Motif Extension\fR.
.PP .PP
\fC#include <qmotifwidget.h>\fR \fC#include <tqmotifwidget.h>\fR
.PP .PP
Inherits TQWidget. Inherits TQWidget.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMotifWidget\fR ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )" .BI "\fBTQMotifWidget\fR ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QMotifWidget\fR ()" .BI "virtual \fB~TQMotifWidget\fR ()"
.br .br
.ti -1c .ti -1c
.BI "Widget \fBmotifWidget\fR () const" .BI "Widget \fBmotifWidget\fR () const"
@ -36,32 +36,32 @@ Inherits TQWidget.
.SH DESCRIPTION .SH DESCRIPTION
This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API. This class is defined in the \fBQt Motif Extension\fR, which can be found in the \fCqt/extensions\fR directory. It is not included in the main TQt API.
.PP .PP
The QMotifWidget class provides the TQWidget API for Xt/Motif widgets. The TQMotifWidget class provides the TQWidget API for Xt/Motif widgets.
.PP .PP
QMotifWidget exists to provide a TQWidget that can act as a parent for any Xt/Motif widget. Since the QMotifWidget is a proper TQWidget, it can be used as a top-level widget (e.g. 0 parent) or as a child of any other TQWidget. Note: Since QMotifWidget acts as a parent for Xt/Motif widgets, you should not create TQWidgets with a QMotifWidget parent. TQMotifWidget exists to provide a TQWidget that can act as a parent for any Xt/Motif widget. Since the TQMotifWidget is a proper TQWidget, it can be used as a top-level widget (e.g. 0 parent) or as a child of any other TQWidget. Note: Since TQMotifWidget acts as a parent for Xt/Motif widgets, you should not create TQWidgets with a TQMotifWidget parent.
.PP .PP
An Xt/Motif widget with a top-level QMotifWidget parent can begin using the standard TQt dialogs and custom TQDialogs while keeping the main Xt/Motif interface of the application. Using a QMotifWidget as the parent for the various TQDialogs will ensure that modality and stacking works properly throughout the entire application. An Xt/Motif widget with a top-level TQMotifWidget parent can begin using the standard TQt dialogs and custom TQDialogs while keeping the main Xt/Motif interface of the application. Using a TQMotifWidget as the parent for the various TQDialogs will ensure that modality and stacking works properly throughout the entire application.
.PP .PP
Applications moving to TQt may have custom Xt/Motif widgets that will take time to rewrite with Qt. Such applications can use these custom widgets as QMotifWidget with TQWidget parents. This allows the application's interface to be replaced gradually. Applications moving to TQt may have custom Xt/Motif widgets that will take time to rewrite with Qt. Such applications can use these custom widgets as TQMotifWidget with TQWidget parents. This allows the application's interface to be replaced gradually.
.PP .PP
\fBWarning:\fR QMotifWidget uses the X11 window ID of the Motif widget directly, instead of creating its own. Because ot this, TQWidget::reparent() will not work. This includes the functions TQWidget::showFullScreen() and TQWidget::showNormal(), which use TQWidget::reparent(). \fBWarning:\fR TQMotifWidget uses the X11 window ID of the Motif widget directly, instead of creating its own. Because ot this, TQWidget::reparent() will not work. This includes the functions TQWidget::showFullScreen() and TQWidget::showNormal(), which use TQWidget::reparent().
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMotifWidget::QMotifWidget ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )" .SH "TQMotifWidget::TQMotifWidget ( TQWidget * parent, WidgetClass widgetclass, ArgList args = NULL, Cardinal argcount = 0, const char * name = 0, WFlags flags = 0 )"
Creates a QMotifWidget of the given \fIwidgetclass\fR as a child of \fIparent\fR, with the name \fIname\fR and widget flags \fIflags\fR. Creates a TQMotifWidget of the given \fIwidgetclass\fR as a child of \fIparent\fR, with the name \fIname\fR and widget flags \fIflags\fR.
.PP .PP
The \fIargs\fR and \fIargcount\fR arguments are passed on to XtCreateWidget. The \fIargs\fR and \fIargcount\fR arguments are passed on to XtCreateWidget.
.PP .PP
The motifWidget() function returns the resulting Xt/Motif widget. This widget can be used as a parent for any other Xt/Motif widget. The motifWidget() function returns the resulting Xt/Motif widget. This widget can be used as a parent for any other Xt/Motif widget.
.PP .PP
If \fIparent\fR is a QMotifWidget, the Xt/Motif widget is created as a child of the parent's motifWidget(). If &#92; parent is 0 or a normal TQWidget, the Xt/Motif widget is created as a child of a special TopLevelShell widget. Xt/Motif widgets can use this special TopLevelShell parent as the parent for existing Xt/Motif dialogs or QMotifDialogs. If \fIparent\fR is a TQMotifWidget, the Xt/Motif widget is created as a child of the parent's motifWidget(). If &#92; parent is 0 or a normal TQWidget, the Xt/Motif widget is created as a child of a special TopLevelShell widget. Xt/Motif widgets can use this special TopLevelShell parent as the parent for existing Xt/Motif dialogs or TQMotifDialogs.
.SH "QMotifWidget::~QMotifWidget ()\fC [virtual]\fR" .SH "TQMotifWidget::~TQMotifWidget ()\fC [virtual]\fR"
Destroys the QMotifWidget. The special TopLevelShell is also destroyed, if it was created during construction. Destroys the TQMotifWidget. The special TopLevelShell is also destroyed, if it was created during construction.
.SH "Widget QMotifWidget::motifWidget () const" .SH "Widget TQMotifWidget::motifWidget () const"
Returns the embedded Xt/Motif widget. If a Shell widget was Returns the embedded Xt/Motif widget. If a Shell widget was
created by the constructor, you can access it with XtParent(). created by the constructor, you can access it with XtParent().
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qmotifwidget.html .BR http://doc.trolltech.com/tqmotifwidget.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QPlatinumStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQPlatinumStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,16 +7,16 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QPlatinumStyle \- Mac/Platinum look and feel TQPlatinumStyle \- Mac/Platinum look and feel
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqplatinumstyle.h>\fR \fC#include <tqplatinumstyle.h>\fR
.PP .PP
Inherits QWindowsStyle. Inherits TQWindowsStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQPlatinumStyle\fR ()" .BI "\fBTQPlatinumStyle\fR ()"
.br .br
.in -1c .in -1c
.SS "Protected Members" .SS "Protected Members"
@ -29,21 +29,21 @@ Inherits QWindowsStyle.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QPlatinumStyle class provides Mac/Platinum look and feel. The TQPlatinumStyle class provides Mac/Platinum look and feel.
.PP .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 TQStyle 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 .PP
See also QAquaStyle and Widget Appearance and Style. See also QAquaStyle and Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QPlatinumStyle::QPlatinumStyle ()" .SH "TQPlatinumStyle::TQPlatinumStyle ()"
Constructs a QPlatinumStyle Constructs a TQPlatinumStyle
.SH "void QPlatinumStyle::drawRiffles ( TQPainter * p, int x, int y, int w, int h, const TQColorGroup & g, bool horizontal ) const\fC [protected]\fR" .SH "void TQPlatinumStyle::drawRiffles ( TQPainter * p, int x, int y, int w, int h, const TQColorGroup & g, bool horizontal ) const\fC [protected]\fR"
Draws the nifty Macintosh decoration used on sliders using painter \fIp\fR and colorgroup \fIg\fR. \fIx\fR, \fIy\fR, \fIw\fR, \fIh\fR and \fIhorizontal\fR specify the geometry and orientation of the riffles. Draws the nifty Macintosh decoration used on sliders using painter \fIp\fR and colorgroup \fIg\fR. \fIx\fR, \fIy\fR, \fIw\fR, \fIh\fR and \fIhorizontal\fR specify the geometry and orientation of the riffles.
.SH "TQColor QPlatinumStyle::mixedColor ( const TQColor & c1, const TQColor & c2 ) const\fC [protected]\fR" .SH "TQColor TQPlatinumStyle::mixedColor ( const TQColor & c1, const TQColor & c2 ) const\fC [protected]\fR"
Mixes two colors \fIc1\fR and \fIc2\fR to a new color. Mixes two colors \fIc1\fR and \fIc2\fR to a new color.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqplatinumstyle.html .BR http://doc.trolltech.com/tqplatinumstyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QSGIStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQSGIStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,39 +7,39 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QSGIStyle \- SGI/Irix look and feel TQSGIStyle \- SGI/Irix look and feel
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqsgistyle.h>\fR \fC#include <tqsgistyle.h>\fR
.PP .PP
Inherits QMotifStyle. Inherits TQMotifStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQSGIStyle\fR ( bool useHighlightCols = FALSE )" .BI "\fBTQSGIStyle\fR ( bool useHighlightCols = FALSE )"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QSGIStyle\fR ()" .BI "virtual \fB~TQSGIStyle\fR ()"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QSGIStyle class provides SGI/Irix look and feel. The TQSGIStyle class provides SGI/Irix look and feel.
.PP .PP
This class implements the SGI look and feel. It resembles the SGI/Irix Motif GUI style as closely as TQStyle allows. This class implements the SGI look and feel. It resembles the SGI/Irix Motif GUI style as closely as TQStyle allows.
.PP .PP
See also Widget Appearance and Style. See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QSGIStyle::QSGIStyle ( bool useHighlightCols = FALSE )" .SH "TQSGIStyle::TQSGIStyle ( bool useHighlightCols = FALSE )"
Constructs a QSGIStyle. Constructs a TQSGIStyle.
.PP .PP
If \fIuseHighlightCols\fR is FALSE (default value), the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color. If \fIuseHighlightCols\fR is FALSE (default value), the style will polish the application's color palette to emulate the Motif way of highlighting, which is a simple inversion between the base and the text color.
.PP .PP
See also QMotifStyle::useHighlightColors(). See also TQMotifStyle::useHighlightColors().
.SH "QSGIStyle::~QSGIStyle ()\fC [virtual]\fR" .SH "TQSGIStyle::~TQSGIStyle ()\fC [virtual]\fR"
Destroys the style. Destroys the style.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqsgistyle.html .BR http://doc.trolltech.com/tqsgistyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -13,7 +13,7 @@ TQStyle \- The look and feel of a GUI
.PP .PP
Inherits TQObject. Inherits TQObject.
.PP .PP
Inherited by QCommonStyle. Inherited by TQCommonStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -344,7 +344,7 @@ Finally, you must implement:
.fi .fi
Gives a value indicating how likely it is that \fIlen\fR characters from \fIchars\fR are in the encoding. Gives a value indicating how likely it is that \fIlen\fR characters from \fIchars\fR are in the encoding.
.PP .PP
A good model for this function is the QWindowsLocalCodec::heuristicContentMatch function found in the TQt sources. A good model for this function is the TQWindowsLocalCodec::heuristicContentMatch function found in the TQt sources.
.PP .PP
A TQTextCodec subclass might have improved performance if you also re-implement: A TQTextCodec subclass might have improved performance if you also re-implement:
.PP .PP

@ -13,7 +13,7 @@ TQWidget \- The base class of all user interface objects
.PP .PP
Inherits TQObject and TQPaintDevice. Inherits TQObject and TQPaintDevice.
.PP .PP
Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, TQDateTimeEditBase, TQDateTimeEdit, TQDesktopWidget, TQDial, QDockArea, TQGLWidget, TQHeader, TQMainWindow, QMotifWidget, QNPWidget, TQScrollBar, TQSizeGrip, TQSlider, TQSpinBox, QSplashScreen, TQStatusBar, TQTabBar, TQTabWidget, TQWorkspace, and QXtWidget. Inherited by TQButton, TQFrame, TQDialog, TQComboBox, TQDataBrowser, TQDataView, TQDateTimeEditBase, TQDateTimeEdit, TQDesktopWidget, TQDial, QDockArea, TQGLWidget, TQHeader, TQMainWindow, TQMotifWidget, QNPWidget, TQScrollBar, TQSizeGrip, TQSlider, TQSpinBox, QSplashScreen, TQStatusBar, TQTabBar, TQTabWidget, TQWorkspace, and QXtWidget.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -1,5 +1,5 @@
'\" t '\" t
.TH QWindowsStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQWindowsStyle 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,32 +7,32 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QWindowsStyle \- Microsoft Windows-like look and feel TQWindowsStyle \- Microsoft Windows-like look and feel
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqwindowsstyle.h>\fR \fC#include <tqwindowsstyle.h>\fR
.PP .PP
Inherits QCommonStyle. Inherits TQCommonStyle.
.PP .PP
Inherited by QMacStyle and QPlatinumStyle. Inherited by QMacStyle and TQPlatinumStyle.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQWindowsStyle\fR ()" .BI "\fBTQWindowsStyle\fR ()"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QWindowsStyle class provides a Microsoft Windows-like look and feel. The TQWindowsStyle class provides a Microsoft Windows-like look and feel.
.PP .PP
This style is Qt's default GUI style on Windows. This style is Qt's default GUI style on Windows.
.PP .PP
See also Widget Appearance and Style. See also Widget Appearance and Style.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QWindowsStyle::QWindowsStyle ()" .SH "TQWindowsStyle::TQWindowsStyle ()"
Constructs a QWindowsStyle Constructs a TQWindowsStyle
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqwindowsstyle.html .BR http://doc.trolltech.com/tqwindowsstyle.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -60,7 +60,7 @@ with each Edition.
\i \link table.html Table Module\endlink \i \link table.html Table Module\endlink
\i \link workspace.html Workspace (MDI) Module\endlink \i \link workspace.html Workspace (MDI) Module\endlink
\i \link xml.html XML Module\endlink \i \link xml.html XML Module\endlink
\i \link motif-extension.html QMotif Extension\endlink \i \link motif-extension.html TQMotif Extension\endlink
\i \link netscape-plugin.html Netscape Plugin Extension\endlink \i \link netscape-plugin.html Netscape Plugin Extension\endlink
\endlist \endlist

@ -14,7 +14,7 @@
#include <tqprogressbar.h> #include <tqprogressbar.h>
#include <tqlayout.h> #include <tqlayout.h>
#include <ntqmotifstyle.h> #include <tqmotifstyle.h>
/* /*
* Constructor * Constructor

@ -8,7 +8,7 @@
*****************************************************************************/ *****************************************************************************/
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqwindowsstyle.h> #include <tqwindowsstyle.h>
#include "themes.h" #include "themes.h"
#include "metal.h" #include "metal.h"

@ -19,7 +19,7 @@
#ifndef TQT_NO_STYLE_WINDOWS #ifndef TQT_NO_STYLE_WINDOWS
#include <ntqwindowsstyle.h> #include <tqwindowsstyle.h>
class MetalStyle : public TQWindowsStyle class MetalStyle : public TQWindowsStyle

@ -19,7 +19,7 @@
#ifndef TQT_NO_STYLE_WINDOWS #ifndef TQT_NO_STYLE_WINDOWS
#include <ntqwindowsstyle.h> #include <tqwindowsstyle.h>
class NorwegianWoodStyle : public TQWindowsStyle class NorwegianWoodStyle : public TQWindowsStyle

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -1,16 +1,16 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qcdestyle TARGET = tqcdestyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqcdestyle.h HEADERS = ../../../../include/tqcdestyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qcdestyle.cpp ../../../../src/styles/tqcdestyle.cpp
!contains(styles, motif) { !contains(styles, motif) {
HEADERS += ../../../../include/ntqmotifstyle.h HEADERS += ../../../../include/tqmotifstyle.h
SOURCES += ../../../../src/styles/qmotifstyle.cpp SOURCES += ../../../../src/styles/tqmotifstyle.cpp
} }
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj

@ -1,5 +1,5 @@
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include <ntqcdestyle.h> #include <tqcdestyle.h>
class CDEStyle : public TQStylePlugin class CDEStyle : public TQStylePlugin
{ {

@ -1,17 +1,17 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qcompactstyle TARGET = tqcompactstyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqcompactstyle.h HEADERS = ../../../../include/tqcompactstyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qcompactstyle.cpp ../../../../src/styles/tqcompactstyle.cpp
!contains(styles, windows) { !contains(styles, windows) {
HEADERS += ../../../../include/ntqwindowsstyle.h HEADERS += ../../../../include/tqwindowsstyle.h
SOURCES += ../../../../src/styles/qwindowsstyle.cpp SOURCES += ../../../../src/styles/tqwindowsstyle.cpp
} }
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj

@ -1,5 +1,5 @@
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include <ntqcompactstyle.h> #include <tqcompactstyle.h>
class CompactStyle : public TQStylePlugin class CompactStyle : public TQStylePlugin
{ {

@ -1,5 +1,5 @@
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include <ntqmotifstyle.h> #include <tqmotifstyle.h>
class MotifStyle : public TQStylePlugin class MotifStyle : public TQStylePlugin
{ {

@ -1,12 +1,12 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qmotifstyle TARGET = tqmotifstyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqmotifstyle.h HEADERS = ../../../../include/tqmotifstyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qmotifstyle.cpp ../../../../src/styles/tqmotifstyle.cpp
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj
win32:OBJECTS_DIR = obj win32:OBJECTS_DIR = obj

@ -1,5 +1,5 @@
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include <ntqmotifplusstyle.h> #include <tqmotifplusstyle.h>
class MotifPlusStyle : public TQStylePlugin class MotifPlusStyle : public TQStylePlugin
{ {

@ -1,16 +1,16 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qmotifplusstyle TARGET = tqmotifplusstyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqmotifplusstyle.h HEADERS = ../../../../include/tqmotifplusstyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qmotifplusstyle.cpp ../../../../src/styles/tqmotifplusstyle.cpp
!contains(styles, motif) { !contains(styles, motif) {
HEADERS += ../../../../include/ntqmotifstyle.h HEADERS += ../../../../include/tqmotifstyle.h
SOURCES += ../../../../src/styles/qmotifstyle.cpp SOURCES += ../../../../src/styles/tqmotifstyle.cpp
} }
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj

@ -1,4 +1,4 @@
#include <ntqplatinumstyle.h> #include <tqplatinumstyle.h>
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
class PlatinumStyle : public TQStylePlugin class PlatinumStyle : public TQStylePlugin

@ -1,16 +1,16 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qplatinumstyle TARGET = tqplatinumstyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqplatinumstyle.h HEADERS = ../../../../include/tqplatinumstyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qplatinumstyle.cpp ../../../../src/styles/tqplatinumstyle.cpp
!contains(styles, windows) { !contains(styles, windows) {
HEADERS += ../../../../include/ntqwindowsstyle.h HEADERS += ../../../../include/tqwindowsstyle.h
SOURCES += ../../../../src/styles/qwindowsstyle.cpp SOURCES += ../../../../src/styles/tqwindowsstyle.cpp
} }
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj

@ -1,5 +1,5 @@
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include <ntqsgistyle.h> #include <tqsgistyle.h>
class SGIStyle : public TQStylePlugin class SGIStyle : public TQStylePlugin
{ {

@ -1,16 +1,16 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qsgistyle TARGET = tqsgistyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqsgistyle.h HEADERS = ../../../../include/tqsgistyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qsgistyle.cpp ../../../../src/styles/tqsgistyle.cpp
!contains(styles, motif) { !contains(styles, motif) {
HEADERS += ../../../../include/ntqmotifstyle.h HEADERS += ../../../../include/tqmotifstyle.h
SOURCES += ../../../../src/styles/qmotifstyle.cpp SOURCES += ../../../../src/styles/tqmotifstyle.cpp
} }
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj

@ -1,5 +1,5 @@
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include <ntqwindowsstyle.h> #include <tqwindowsstyle.h>
class WindowsStyle : public TQStylePlugin class WindowsStyle : public TQStylePlugin
{ {

@ -1,12 +1,12 @@
TEMPLATE = lib TEMPLATE = lib
TARGET = qwindowsstyle TARGET = tqwindowsstyle
CONFIG += qt warn_off release plugin CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqwindowsstyle.h HEADERS = ../../../../include/tqwindowsstyle.h
SOURCES = main.cpp \ SOURCES = main.cpp \
../../../../src/styles/qwindowsstyle.cpp ../../../../src/styles/tqwindowsstyle.cpp
unix:OBJECTS_DIR = .obj unix:OBJECTS_DIR = .obj
win32:OBJECTS_DIR = obj win32:OBJECTS_DIR = obj

@ -738,7 +738,7 @@ public:
Key_unknown = 0xffff Key_unknown = 0xffff
}; };
// documented in qcommonstyle.cpp // documented in tqcommonstyle.cpp
enum ArrowType { enum ArrowType {
UpArrow, UpArrow,
DownArrow, DownArrow,

@ -82,7 +82,7 @@
#include "tqdialog.h" #include "tqdialog.h"
#include <tqdataview.h> #include <tqdataview.h>
#include "ntqdockwindow.h" #include "ntqdockwindow.h"
#include "ntqcommonstyle.h" #include "tqcommonstyle.h"
#include "tqnetworkprotocol.h" #include "tqnetworkprotocol.h"
#include <tqeuckrcodec.h> #include <tqeuckrcodec.h>
#include <tqgb18030codec.h> #include <tqgb18030codec.h>
@ -110,7 +110,7 @@
#include "tqlineedit.h" #include "tqlineedit.h"
#include <tqintcache.h> #include <tqintcache.h>
#include "tqintdict.h" #include "tqintdict.h"
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#include "tqpicture.h" #include "tqpicture.h"
#include <tqjiscodec.h> #include <tqjiscodec.h>
#include <tqeucjpcodec.h> #include <tqeucjpcodec.h>
@ -124,7 +124,7 @@
#include "tqscrollbar.h" #include "tqscrollbar.h"
#include "tqscrollview.h" #include "tqscrollview.h"
#include "tqdir.h" #include "tqdir.h"
#include "ntqwindowsstyle.h" #include "tqwindowsstyle.h"
#include "ntqconnection.h" #include "ntqconnection.h"
#include "tqbitmap.h" #include "tqbitmap.h"
#include "ntqvariant.h" #include "ntqvariant.h"
@ -132,8 +132,8 @@
#include <ntqmessagebox.h> #include <ntqmessagebox.h>
#include "ntqmetaobject.h" #include "ntqmetaobject.h"
#include "tqheader.h" #include "tqheader.h"
#include <ntqmotifplusstyle.h> #include <tqmotifplusstyle.h>
#include <ntqcdestyle.h> #include <tqcdestyle.h>
#include <tqmovie.h> #include <tqmovie.h>
#include "tqptrvector.h" #include "tqptrvector.h"
#include "tqmutex.h" #include "tqmutex.h"
@ -153,7 +153,7 @@
#include "tqdragobject.h" #include "tqdragobject.h"
#include <tqiconview.h> #include <tqiconview.h>
#include <tqpixmapcache.h> #include <tqpixmapcache.h>
#include <ntqplatinumstyle.h> #include <tqplatinumstyle.h>
#include <tqpngio.h> #include <tqpngio.h>
#include <ntqcursor.h> #include <ntqcursor.h>
#include <ntqerrormessage.h> #include <ntqerrormessage.h>
@ -183,7 +183,7 @@
#include "tqsocketdevice.h" #include "tqsocketdevice.h"
#include <tqsessionmanager.h> #include <tqsessionmanager.h>
#include <tqsettings.h> #include <tqsettings.h>
#include <ntqsgistyle.h> #include <tqsgistyle.h>
#include <tqfontdialog.h> #include <tqfontdialog.h>
#include "tqtimer.h" #include "tqtimer.h"
#include <tqsignalmapper.h> #include <tqsignalmapper.h>
@ -221,7 +221,7 @@
#include <tqcanvas.h> #include <tqcanvas.h>
#include "tqtranslator.h" #include "tqtranslator.h"
#include <tqstrvec.h> #include <tqstrvec.h>
#include <ntqinterlacestyle.h> #include <tqinterlacestyle.h>
#include <tqstylefactory.h> #include <tqstylefactory.h>
#include <tqstyleplugin.h> #include <tqstyleplugin.h>
#include "tqtextedit.h" #include "tqtextedit.h"
@ -265,7 +265,7 @@
#include <tqwidgetplugin.h> #include <tqwidgetplugin.h>
#include <tqwidgetstack.h> #include <tqwidgetstack.h>
#include <tqcheckbox.h> #include <tqcheckbox.h>
#include <ntqcompactstyle.h> #include <tqcompactstyle.h>
#include <tqwizard.h> #include <tqwizard.h>
#include <tqpainter.h> #include <tqpainter.h>
#include <tqworkspace.h> #include <tqworkspace.h>
@ -317,7 +317,7 @@
#endif // TQ_WS_MAC #endif // TQ_WS_MAC
#ifdef TQ_WS_WIN #ifdef TQ_WS_WIN
#include <qwindowsxpstyle.h> #include <tqwindowsxpstyle.h>
#endif #endif
#ifdef TQ_WS_WCE #ifdef TQ_WS_WCE

@ -142,7 +142,7 @@ kernel {
$$KERNEL_CPP/tqfont_x11.cpp \ $$KERNEL_CPP/tqfont_x11.cpp \
$$KERNEL_CPP/qinputcontext.cpp \ $$KERNEL_CPP/qinputcontext.cpp \
$$KERNEL_CPP/qinputcontext_x11.cpp \ $$KERNEL_CPP/qinputcontext_x11.cpp \
$$KERNEL_CPP/qmotifdnd_x11.cpp \ $$KERNEL_CPP/tqmotifdnd_x11.cpp \
$$KERNEL_CPP/tqpixmap_x11.cpp \ $$KERNEL_CPP/tqpixmap_x11.cpp \
$$KERNEL_CPP/tqpaintdevice_x11.cpp \ $$KERNEL_CPP/tqpaintdevice_x11.cpp \
$$KERNEL_CPP/tqpainter_x11.cpp \ $$KERNEL_CPP/tqpainter_x11.cpp \

@ -49,7 +49,7 @@
// //
// This file is not part of the TQt API. It exists for the convenience // This file is not part of the TQt API. It exists for the convenience
// of tqmenudata.cpp, tqmenubar.cpp, tqmenubar.cpp, tqpopupmenu.cpp, // of tqmenudata.cpp, tqmenubar.cpp, tqmenubar.cpp, tqpopupmenu.cpp,
// qmotifstyle.cpp and qwindowssstyle.cpp. This header file may change // tqmotifstyle.cpp and tqwindowssstyle.cpp. This header file may change
// from version to version without notice, or even be removed. // from version to version without notice, or even be removed.
// //
// We mean it. // We mean it.

@ -61,7 +61,7 @@
#include <ctype.h> #include <ctype.h>
#include <stdlib.h> #include <stdlib.h>
// Keep in sync with duplicate definition in qcommonstyle.cpp // Keep in sync with duplicate definition in tqcommonstyle.cpp
class TQStyleControlElementDataPrivate { class TQStyleControlElementDataPrivate {
public: public:
bool isTQPushButton; bool isTQPushButton;

@ -5,10 +5,10 @@ styles {
HEADERS +=$$STYLES_H/tqstylefactory.h \ HEADERS +=$$STYLES_H/tqstylefactory.h \
$$STYLES_P/tqstyleinterface_p.h \ $$STYLES_P/tqstyleinterface_p.h \
$$STYLES_H/tqstyleplugin.h \ $$STYLES_H/tqstyleplugin.h \
$$STYLES_H/ntqcommonstyle.h $$STYLES_H/tqcommonstyle.h
SOURCES +=$$STYLES_CPP/tqstylefactory.cpp \ SOURCES +=$$STYLES_CPP/tqstylefactory.cpp \
$$STYLES_CPP/tqstyleplugin.cpp \ $$STYLES_CPP/tqstyleplugin.cpp \
$$STYLES_CPP/qcommonstyle.cpp $$STYLES_CPP/tqcommonstyle.cpp
contains( styles, all ) { contains( styles, all ) {
styles += mac cde motifplus sgi platinum compact interlace windows motif styles += mac cde motifplus sgi platinum compact interlace windows motif
@ -44,8 +44,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_AQUA else:DEFINES += TQT_NO_STYLE_AQUA
contains( styles, cde ) { contains( styles, cde ) {
HEADERS +=$$STYLES_H/ntqcdestyle.h HEADERS +=$$STYLES_H/tqcdestyle.h
SOURCES +=$$STYLES_CPP/qcdestyle.cpp SOURCES +=$$STYLES_CPP/tqcdestyle.cpp
!contains( styles, motif ) { !contains( styles, motif ) {
message( cde requires motif ) message( cde requires motif )
@ -55,8 +55,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_CDE else:DEFINES += TQT_NO_STYLE_CDE
contains( styles, motifplus ) { contains( styles, motifplus ) {
HEADERS +=$$STYLES_H/ntqmotifplusstyle.h HEADERS +=$$STYLES_H/tqmotifplusstyle.h
SOURCES +=$$STYLES_CPP/qmotifplusstyle.cpp SOURCES +=$$STYLES_CPP/tqmotifplusstyle.cpp
!contains( styles, motif ) { !contains( styles, motif ) {
message( motifplus requires motif ) message( motifplus requires motif )
styles += motif styles += motif
@ -65,8 +65,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_MOTIFPLUS else:DEFINES += TQT_NO_STYLE_MOTIFPLUS
contains( styles, interlace ) { contains( styles, interlace ) {
HEADERS +=$$STYLES_H/ntqinterlacestyle.h HEADERS +=$$STYLES_H/tqinterlacestyle.h
SOURCES +=$$STYLES_CPP/qinterlacestyle.cpp SOURCES +=$$STYLES_CPP/tqinterlacestyle.cpp
!contains( styles, windows ) { !contains( styles, windows ) {
message( interlace requires windows ) message( interlace requires windows )
styles += windows styles += windows
@ -75,8 +75,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_INTERLACE else:DEFINES += TQT_NO_STYLE_INTERLACE
contains( styles, platinum ) { contains( styles, platinum ) {
HEADERS +=$$STYLES_H/ntqplatinumstyle.h HEADERS +=$$STYLES_H/tqplatinumstyle.h
SOURCES +=$$STYLES_CPP/qplatinumstyle.cpp SOURCES +=$$STYLES_CPP/tqplatinumstyle.cpp
!contains( styles, windows ) { !contains( styles, windows ) {
message( platinum requires windows ) message( platinum requires windows )
styles += windows styles += windows
@ -85,8 +85,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_PLATINUM else:DEFINES += TQT_NO_STYLE_PLATINUM
contains( styles, windowsxp ) { contains( styles, windowsxp ) {
HEADERS +=$$STYLES_H/qwindowsxpstyle.h HEADERS +=$$STYLES_H/tqwindowsxpstyle.h
SOURCES +=$$STYLES_CPP/qwindowsxpstyle.cpp SOURCES +=$$STYLES_CPP/tqwindowsxpstyle.cpp
!contains( styles, windowsxp ) { !contains( styles, windowsxp ) {
message( windowsxp requires windows ) message( windowsxp requires windows )
styles += windows styles += windows
@ -95,8 +95,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_WINDOWSXP else:DEFINES += TQT_NO_STYLE_WINDOWSXP
contains( styles, sgi ) { contains( styles, sgi ) {
HEADERS +=$$STYLES_H/ntqsgistyle.h HEADERS +=$$STYLES_H/tqsgistyle.h
SOURCES +=$$STYLES_CPP/qsgistyle.cpp SOURCES +=$$STYLES_CPP/tqsgistyle.cpp
!contains( styles, motif ) { !contains( styles, motif ) {
message( sgi requires motif ) message( sgi requires motif )
styles += motif styles += motif
@ -105,8 +105,8 @@ styles {
else:DEFINES += TQT_NO_STYLE_SGI else:DEFINES += TQT_NO_STYLE_SGI
contains( styles, compact ) { contains( styles, compact ) {
HEADERS +=$$STYLES_H/ntqcompactstyle.h HEADERS +=$$STYLES_H/tqcompactstyle.h
SOURCES +=$$STYLES_CPP/qcompactstyle.cpp SOURCES +=$$STYLES_CPP/tqcompactstyle.cpp
!contains( styles, windows ) { !contains( styles, windows ) {
message( compact requires windows ) message( compact requires windows )
styles += windows styles += windows
@ -127,14 +127,14 @@ styles {
else:DEFINES += TQT_NO_STYLE_POCKETPC else:DEFINES += TQT_NO_STYLE_POCKETPC
contains( styles, windows ) { contains( styles, windows ) {
HEADERS +=$$STYLES_H/ntqwindowsstyle.h HEADERS +=$$STYLES_H/tqwindowsstyle.h
SOURCES +=$$STYLES_CPP/qwindowsstyle.cpp SOURCES +=$$STYLES_CPP/tqwindowsstyle.cpp
} }
else:DEFINES += TQT_NO_STYLE_WINDOWS else:DEFINES += TQT_NO_STYLE_WINDOWS
contains( styles, motif ) { contains( styles, motif ) {
HEADERS +=$$STYLES_H/ntqmotifstyle.h HEADERS +=$$STYLES_H/tqmotifstyle.h
SOURCES +=$$STYLES_CPP/qmotifstyle.cpp SOURCES +=$$STYLES_CPP/tqmotifstyle.cpp
} }
else:DEFINES += TQT_NO_STYLE_MOTIF else:DEFINES += TQT_NO_STYLE_MOTIF
} }

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqcdestyle.h" #include "tqcdestyle.h"
#if !defined(TQT_NO_STYLE_CDE) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_CDE) || defined(QT_PLUGIN)
@ -48,7 +48,7 @@
#include <limits.h> #include <limits.h>
/*! /*!
\class TQCDEStyle ntqcdestyle.h \class TQCDEStyle tqcdestyle.h
\brief The TQCDEStyle class provides a CDE look and feel. \brief The TQCDEStyle class provides a CDE look and feel.
\ingroup appearance \ingroup appearance

@ -43,7 +43,7 @@
#define TQCDESTYLE_H #define TQCDESTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_CDE) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_CDE) || defined(QT_PLUGIN)

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqcommonstyle.h" #include "tqcommonstyle.h"
#ifndef TQT_NO_STYLE #ifndef TQT_NO_STYLE
@ -75,7 +75,7 @@
#include <tqtoolbox.h> #include <tqtoolbox.h>
/*! /*!
\class TQCommonStyle ntqcommonstyle.h \class TQCommonStyle tqcommonstyle.h
\brief The TQCommonStyle class encapsulates the common Look and Feel of a GUI. \brief The TQCommonStyle class encapsulates the common Look and Feel of a GUI.
\ingroup appearance \ingroup appearance

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqcompactstyle.h" #include "tqcompactstyle.h"
#if !defined(TQT_NO_STYLE_COMPACT) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_COMPACT) || defined(QT_PLUGIN)

@ -42,7 +42,7 @@
#define TQCOMPACTSTYLE_H #define TQCOMPACTSTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqwindowsstyle.h" #include "tqwindowsstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_COMPACT) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_COMPACT) || defined(QT_PLUGIN)

@ -40,7 +40,7 @@
#if 0 // ###### not ported to new API yet #if 0 // ###### not ported to new API yet
#include "ntqinterlacestyle.h" #include "tqinterlacestyle.h"
#if !defined(TQT_NO_STYLE_INTERLACE) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_INTERLACE) || defined(QT_PLUGIN)
@ -59,7 +59,7 @@
#include <limits.h> #include <limits.h>
/*! /*!
\class TQInterlaceStyle ntqinterlacestyle.h \class TQInterlaceStyle tqinterlacestyle.h
\brief The TQInterlaceStyle class provides a Look and Feel suitable for interlaced displays. \brief The TQInterlaceStyle class provides a Look and Feel suitable for interlaced displays.
\ingroup appearance \ingroup appearance

@ -43,7 +43,7 @@
#define TQINTERLACESTYLE_H #define TQINTERLACESTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_INTERLACE) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_INTERLACE) || defined(QT_PLUGIN)

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqmotifplusstyle.h" #include "tqmotifplusstyle.h"
#if !defined(TQT_NO_STYLE_MOTIFPLUS) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_MOTIFPLUS) || defined(QT_PLUGIN)
@ -131,7 +131,7 @@ static void drawMotifPlusShade(TQPainter *p,
/*! /*!
\class TQMotifPlusStyle ntqmotifplusstyle.h \class TQMotifPlusStyle tqmotifplusstyle.h
\brief The TQMotifPlusStyle class provides a more sophisticated Motif-ish look and feel. \brief The TQMotifPlusStyle class provides a more sophisticated Motif-ish look and feel.
\ingroup appearance \ingroup appearance

@ -43,7 +43,7 @@
#ifndef QT_H #ifndef QT_H
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_MOTIFPLUS) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_MOTIFPLUS) || defined(QT_PLUGIN)

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#if !defined(TQT_NO_STYLE_MOTIF) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_MOTIF) || defined(QT_PLUGIN)
@ -77,7 +77,7 @@ static const int motifCheckMarkSpace = 12;
/*! /*!
\class TQMotifStyle ntqmotifstyle.h \class TQMotifStyle tqmotifstyle.h
\brief The TQMotifStyle class provides Motif look and feel. \brief The TQMotifStyle class provides Motif look and feel.
\ingroup appearance \ingroup appearance

@ -42,7 +42,7 @@
#define TQMOTIFSTYLE_H #define TQMOTIFSTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqcommonstyle.h" #include "tqcommonstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_MOTIF) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_MOTIF) || defined(QT_PLUGIN)

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqplatinumstyle.h" #include "tqplatinumstyle.h"
#if !defined(TQT_NO_STYLE_PLATINUM) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_PLATINUM) || defined(QT_PLUGIN)
@ -54,7 +54,7 @@
#include <limits.h> #include <limits.h>
/*! /*!
\class TQPlatinumStyle ntqplatinumstyle.h \class TQPlatinumStyle tqplatinumstyle.h
\brief The TQPlatinumStyle class provides Mac/Platinum look and feel. \brief The TQPlatinumStyle class provides Mac/Platinum look and feel.
\ingroup appearance \ingroup appearance

@ -42,7 +42,7 @@
#define TQPLATINUMSTYLE_H #define TQPLATINUMSTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqwindowsstyle.h" #include "tqwindowsstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_PLATINUM) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_PLATINUM) || defined(QT_PLUGIN)

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqsgistyle.h" #include "tqsgistyle.h"
#if !defined(TQT_NO_STYLE_SGI) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_SGI) || defined(QT_PLUGIN)
@ -97,7 +97,7 @@ public:
}; };
/*! /*!
\class TQSGIStyle ntqsgistyle.h \class TQSGIStyle tqsgistyle.h
\brief The TQSGIStyle class provides SGI/Irix look and feel. \brief The TQSGIStyle class provides SGI/Irix look and feel.
\ingroup appearance \ingroup appearance

@ -42,7 +42,7 @@
#define TQSGISTYLE_H #define TQSGISTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#include "ntqguardedptr.h" #include "ntqguardedptr.h"
#include "tqwidget.h" #include "tqwidget.h"
#endif // QT_H #endif // QT_H

@ -44,15 +44,15 @@
#ifndef TQT_NO_STYLE #ifndef TQT_NO_STYLE
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqwindowsstyle.h" #include "tqwindowsstyle.h"
#include "ntqmotifstyle.h" #include "tqmotifstyle.h"
#include "ntqcdestyle.h" #include "tqcdestyle.h"
#include "ntqmotifplusstyle.h" #include "tqmotifplusstyle.h"
#include "ntqplatinumstyle.h" #include "tqplatinumstyle.h"
#include "ntqsgistyle.h" #include "tqsgistyle.h"
#include "ntqcompactstyle.h" #include "tqcompactstyle.h"
#ifndef TQT_NO_STYLE_WINDOWSXP #ifndef TQT_NO_STYLE_WINDOWSXP
#include "qwindowsxpstyle.h" #include "tqwindowsxpstyle.h"
#endif #endif
#ifndef TQT_NO_STYLE_AQUA #ifndef TQT_NO_STYLE_AQUA
#include "qaquastyle.h" #include "qaquastyle.h"

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqwindowsstyle.h" #include "tqwindowsstyle.h"
#if !defined(TQT_NO_STYLE_WINDOWS) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_WINDOWS) || defined(QT_PLUGIN)
@ -148,7 +148,7 @@ bool TQWindowsStyle::Private::objectEventHandler( const TQStyleControlElementDat
} }
/*! /*!
\class TQWindowsStyle ntqwindowsstyle.h \class TQWindowsStyle tqwindowsstyle.h
\brief The TQWindowsStyle class provides a Microsoft Windows-like look and feel. \brief The TQWindowsStyle class provides a Microsoft Windows-like look and feel.
\ingroup appearance \ingroup appearance

@ -42,7 +42,7 @@
#define TQWINDOWSSTYLE_H #define TQWINDOWSSTYLE_H
#ifndef QT_H #ifndef QT_H
#include "ntqcommonstyle.h" #include "tqcommonstyle.h"
#endif // QT_H #endif // QT_H
#if !defined(TQT_NO_STYLE_WINDOWS) || defined(QT_PLUGIN) #if !defined(TQT_NO_STYLE_WINDOWS) || defined(QT_PLUGIN)

@ -96,7 +96,7 @@ static TQFontDatabase *fontDataBase = 0;
TQString assistantPath(); TQString assistantPath();
#ifdef TQ_WS_MAC #ifdef TQ_WS_MAC
#include <ntqwindowsstyle.h> #include <tqwindowsstyle.h>
static void setupStyle(TQWidget *w) static void setupStyle(TQWidget *w)
{ {
static TQStyle *windowsStyle = 0; static TQStyle *windowsStyle = 0;

Loading…
Cancel
Save