Rename image nt* related files to equivalent tq*

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/159/head
Michele Calgaro 6 months ago
parent 0881ed5059
commit 8c029298d9
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -260,9 +260,9 @@
<area shape="rect" coords="785,398,884,416" href="ntqhostaddress.html"> <area shape="rect" coords="785,398,884,416" href="ntqhostaddress.html">
<area shape="rect" coords="786,417,884,434" href="qhttpheader.html"> <area shape="rect" coords="786,417,884,434" href="qhttpheader.html">
<area shape="rect" coords="786,434,885,452" href="ntqiconset.html"> <area shape="rect" coords="786,434,885,452" href="ntqiconset.html">
<area shape="rect" coords="789,452,885,473" href="ntqimage.html"> <area shape="rect" coords="789,452,885,473" href="tqimage.html">
<area shape="rect" coords="789,468,895,489" href="ntqimageformatplugin.html"> <area shape="rect" coords="789,468,895,489" href="tqimageformatplugin.html">
<area shape="rect" coords="789,489,895,505" href="qimageio.html"> <area shape="rect" coords="789,489,895,505" href="tqimageio.html">
<area shape="rect" coords="789,505,869,523" href="ntqintcache.html"> <area shape="rect" coords="789,505,869,523" href="ntqintcache.html">
<area shape="rect" coords="785,524,868,542" href="ntqiodevice.html"> <area shape="rect" coords="785,524,868,542" href="ntqiodevice.html">
<area shape="rect" coords="785,542,872,558" href="ntqlibrary.html"> <area shape="rect" coords="785,542,872,558" href="ntqlibrary.html">

@ -156,7 +156,7 @@ and to read back into the same TQt integer type when reading.
\i If the image is null a "null image" marker is saved; \i If the image is null a "null image" marker is saved;
otherwise the image is saved in PNG or BMP format (depending otherwise the image is saved in PNG or BMP format (depending
on the stream version). If you want control of the format, on the stream version). If you want control of the format,
stream the image into a QBuffer (using QImageIO) and stream stream the image into a QBuffer (using TQImageIO) and stream
that. that.
\endlist \endlist
\row \i TQMap \row \i TQMap

@ -60,7 +60,7 @@ QTextEdit widget source code.
To start a drag, for example in a \link TQWidget::mouseMoveEvent() To start a drag, for example in a \link TQWidget::mouseMoveEvent()
mouse motion event\endlink, create an object of the QDragObject mouse motion event\endlink, create an object of the QDragObject
subclass appropriate for your media, such as QTextDrag for text and subclass appropriate for your media, such as QTextDrag for text and
QImageDrag for images. Then call the drag() method. This is all you TQImageDrag for images. Then call the drag() method. This is all you
need for simple dragging of existing types. need for simple dragging of existing types.
For example, to start dragging some text from a widget: For example, to start dragging some text from a widget:
@ -107,7 +107,7 @@ void MyWidget::dragEnterEvent(QDragEnterEvent* event)
{ {
event->accept( event->accept(
QTextDrag::canDecode(event) || QTextDrag::canDecode(event) ||
QImageDrag::canDecode(event) TQImageDrag::canDecode(event)
); );
} }
@ -116,7 +116,7 @@ void MyWidget::dropEvent(QDropEvent* event)
TQImage image; TQImage image;
TQString text; TQString text;
if ( QImageDrag::decode(event, image) ) { if ( TQImageDrag::decode(event, image) ) {
insertImageAt(image, event->pos()); insertImageAt(image, event->pos());
} else if ( QTextDrag::decode(event, text) ) { } else if ( QTextDrag::decode(event, text) ) {
insertTextAt(text, event->pos()); insertTextAt(text, event->pos());
@ -213,9 +213,9 @@ source provides a list of MIME types that it can produce (ordered from
most appropriate to least appropriate), and the drop target chooses most appropriate to least appropriate), and the drop target chooses
which of those it can accept. For example, QTextDrag provides support which of those it can accept. For example, QTextDrag provides support
for the "\c{text/plain}" MIME type (ordinary unformatted text), and for the "\c{text/plain}" MIME type (ordinary unformatted text), and
the Unicode formats "\c{text/utf16}" and "\c{text/utf8}"; QImageDrag the Unicode formats "\c{text/utf16}" and "\c{text/utf8}"; TQImageDrag
provides for "\c{image/*}", where \c{*} is any image format that provides for "\c{image/*}", where \c{*} is any image format that
\l QImageIO supports; and the QUriDrag subclass provides \l TQImageIO supports; and the QUriDrag subclass provides
"\c{text/uri-list}", a standard format for transferring a list of "\c{text/uri-list}", a standard format for transferring a list of
filenames (or URLs). filenames (or URLs).
@ -244,13 +244,13 @@ QByteArray encodedData(const char* mimetype) const
\endlink \endlink
members, and provide a set-method to encode the media data and static members, and provide a set-method to encode the media data and static
members canDecode() and decode() to decode incoming data, similar to members canDecode() and decode() to decode incoming data, similar to
\link QImageDrag::canDecode() \link TQImageDrag::canDecode()
bool canDecode(QMimeSource*) const bool canDecode(QMimeSource*) const
\endlink and \endlink and
\link QImageDrag::decode() \link TQImageDrag::decode()
QByteArray decode(QMimeSource*) const QByteArray decode(QMimeSource*) const
\endlink \endlink
of QImageDrag. of TQImageDrag.
Of course, you can provide drag-only or drop-only support for a media Of course, you can provide drag-only or drop-only support for a media
type by omitting some of these methods. type by omitting some of these methods.

@ -59,7 +59,7 @@ The available options are:
\table \table
\header \i Macro \i Disables \i Set automatically by \header \i Macro \i Disables \i Set automatically by
\header \i31 Images (\l QImageIO) \header \i31 Images (\l TQImageIO)
\row \i TQT_NO_IMAGEIO_BMP \row \i TQT_NO_IMAGEIO_BMP
\i Microsoft Bitmap image file format. \i Microsoft Bitmap image file format.
\i &nbsp; \i &nbsp;
@ -81,7 +81,7 @@ The available options are:
\i Asynchronous I/O (\l QAsyncIO) \i Asynchronous I/O (\l QAsyncIO)
\i &nbsp; \i &nbsp;
\row \i TQT_NO_ASYNC_IMAGE_IO \row \i TQT_NO_ASYNC_IMAGE_IO
\i Asynchronous Image I/O and GIF image support (\l QImageDecoder, ...) \i Asynchronous Image I/O and GIF image support (\l TQImageDecoder, ...)
\i &nbsp; \i &nbsp;
\row \i TQT_NO_MOVIE \row \i TQT_NO_MOVIE
\i Animation support (\l QMovie) \i Animation support (\l QMovie)

@ -207,14 +207,14 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes <tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes
<tr bgcolor=#f0f0f0><td><b><a href="ntqiconview.html">TQIconView</a></b><td>Area with movable labelled icons <tr bgcolor=#f0f0f0><td><b><a href="ntqiconview.html">TQIconView</a></b><td>Area with movable labelled icons
<tr bgcolor=#f0f0f0><td><b><a href="qiconviewitem.html">TQIconViewItem</a></b><td>Single item in a TQIconView <tr bgcolor=#f0f0f0><td><b><a href="qiconviewitem.html">TQIconViewItem</a></b><td>Single item in a TQIconView
<tr bgcolor=#f0f0f0><td><b><a href="ntqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data <tr bgcolor=#f0f0f0><td><b><a href="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data
<tr bgcolor=#f0f0f0><td><b><a href="qimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder <tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder
<tr bgcolor=#f0f0f0><td><b><a href="qimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats <tr bgcolor=#f0f0f0><td><b><a href="tqimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats
<tr bgcolor=#f0f0f0><td><b><a href="qimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images <tr bgcolor=#f0f0f0><td><b><a href="tqimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images
<tr bgcolor=#f0f0f0><td><b><a href="qimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format <tr bgcolor=#f0f0f0><td><b><a href="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format
<tr bgcolor=#f0f0f0><td><b><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a></b><td>Abstract base for custom image format plugins <tr bgcolor=#f0f0f0><td><b><a href="tqimageformatplugin.html">TQImageFormatPlugin</a></b><td>Abstract base for custom image format plugins
<tr bgcolor=#f0f0f0><td><b><a href="qimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects <tr bgcolor=#f0f0f0><td><b><a href="tqimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects
<tr bgcolor=#f0f0f0><td><b><a href="qimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images <tr bgcolor=#f0f0f0><td><b><a href="tqimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images
<tr bgcolor=#f0f0f0><td><b><a href="ntqinputdialog.html">TQInputDialog</a></b><td>Simple convenience dialog to get a single value from the user <tr bgcolor=#f0f0f0><td><b><a href="ntqinputdialog.html">TQInputDialog</a></b><td>Simple convenience dialog to get a single value from the user
<tr bgcolor=#f0f0f0><td><b><a href="ntqintcache.html">TQIntCache</a></b><td>Template class that provides a cache based on long keys <tr bgcolor=#f0f0f0><td><b><a href="ntqintcache.html">TQIntCache</a></b><td>Template class that provides a cache based on long keys
<tr bgcolor=#f0f0f0><td><b><a href="qintcacheiterator.html">TQIntCacheIterator</a></b><td>Iterator for TQIntCache collections <tr bgcolor=#f0f0f0><td><b><a href="qintcacheiterator.html">TQIntCacheIterator</a></b><td>Iterator for TQIntCache collections

@ -147,9 +147,9 @@ how two images (<em>hasmail_bmp_data</em> and <em>nomail_bmp_data</em>, both fro
void Biff::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * ) void Biff::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * )
{ {
if ( gotMail ) if ( gotMail )
<a href="ntqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &amp;hasNewMail ); <a href="tqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &amp;hasNewMail );
else else
<a href="ntqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &amp;noNewMail ); <a href="tqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &amp;noNewMail );
} }

@ -142,7 +142,7 @@ private:
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt; #include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="qprinter-h.html">ntqprinter.h</a>&gt; #include &lt;<a href="qprinter-h.html">ntqprinter.h</a>&gt;
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt; #include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qprogressdialog-h.html">ntqprogressdialog.h</a>&gt; #include &lt;<a href="qprogressdialog-h.html">ntqprogressdialog.h</a>&gt;
#include "canvas.h" #include "canvas.h"
@ -174,21 +174,21 @@ static const int imageRTTI = 984376;
class ImageItem: public <a href="tqcanvasrectangle.html">TQCanvasRectangle</a> class ImageItem: public <a href="tqcanvasrectangle.html">TQCanvasRectangle</a>
{ {
public: public:
ImageItem( <a href="ntqimage.html">TQImage</a> img, TQCanvas *canvas ); ImageItem( <a href="tqimage.html">TQImage</a> img, TQCanvas *canvas );
int rtti () const { return imageRTTI; } int rtti () const { return imageRTTI; }
bool hit( const <a href="ntqpoint.html">TQPoint</a>&amp;) const; bool hit( const <a href="ntqpoint.html">TQPoint</a>&amp;) const;
protected: protected:
void drawShape( <a href="ntqpainter.html">TQPainter</a> &amp; ); void drawShape( <a href="ntqpainter.html">TQPainter</a> &amp; );
private: private:
<a href="ntqimage.html">TQImage</a> image; <a href="tqimage.html">TQImage</a> image;
<a href="ntqpixmap.html">TQPixmap</a> pixmap; <a href="ntqpixmap.html">TQPixmap</a> pixmap;
}; };
<a name="f623"></a>ImageItem::ImageItem( <a href="ntqimage.html">TQImage</a> img, TQCanvas *canvas ) <a name="f623"></a>ImageItem::ImageItem( <a href="tqimage.html">TQImage</a> img, TQCanvas *canvas )
: <a href="tqcanvasrectangle.html">TQCanvasRectangle</a>( canvas ), image(img) : <a href="tqcanvasrectangle.html">TQCanvasRectangle</a>( canvas ), image(img)
{ {
<a name="x2935"></a><a name="x2932"></a> <a href="tqcanvasrectangle.html#setSize">setSize</a>( image.<a href="ntqimage.html#width">width</a>(), image.<a href="ntqimage.html#height">height</a>() ); <a name="x2935"></a><a name="x2932"></a> <a href="tqcanvasrectangle.html#setSize">setSize</a>( image.<a href="tqimage.html#width">width</a>(), image.<a href="tqimage.html#height">height</a>() );
#if !defined(TQ_WS_QWS) #if !defined(TQ_WS_QWS)
<a name="x2943"></a> pixmap.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(image, OrderedAlphaDither); <a name="x2943"></a> pixmap.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(image, OrderedAlphaDither);
@ -211,9 +211,9 @@ bool <a name="f624"></a>ImageItem::hit( const <a href="ntqpoint.html">TQPoint</a
{ {
<a name="x2944"></a> int ix = p.<a href="ntqpoint.html#x">x</a>()-int(<a href="tqcanvasitem.html#x">x</a>()); <a name="x2944"></a> int ix = p.<a href="ntqpoint.html#x">x</a>()-int(<a href="tqcanvasitem.html#x">x</a>());
<a name="x2945"></a> int iy = p.<a href="ntqpoint.html#y">y</a>()-int(<a href="tqcanvasitem.html#y">y</a>()); <a name="x2945"></a> int iy = p.<a href="ntqpoint.html#y">y</a>()-int(<a href="tqcanvasitem.html#y">y</a>());
<a name="x2934"></a> if ( !image.<a href="ntqimage.html#valid">valid</a>( ix , iy ) ) <a name="x2934"></a> if ( !image.<a href="tqimage.html#valid">valid</a>( ix , iy ) )
return FALSE; return FALSE;
<a name="x2933"></a> TQRgb pixel = image.<a href="ntqimage.html#pixel">pixel</a>( ix, iy ); <a name="x2933"></a> TQRgb pixel = image.<a href="tqimage.html#pixel">pixel</a>( ix, iy );
return tqAlpha( pixel ) != 0; return tqAlpha( pixel ) != 0;
} }
@ -680,7 +680,7 @@ void <a name="f645"></a>Main::addButterfly()
if ( butterfly_fn.isEmpty() ) if ( butterfly_fn.isEmpty() )
return; return;
if ( !butterflyimg ) { if ( !butterflyimg ) {
butterflyimg = new <a href="ntqimage.html">TQImage</a>[4]; butterflyimg = new <a href="tqimage.html">TQImage</a>[4];
butterflyimg[0].load( butterfly_fn ); butterflyimg[0].load( butterfly_fn );
butterflyimg[1] = butterflyimg[0].smoothScale( int(butterflyimg[0].width()*0.75), butterflyimg[1] = butterflyimg[0].smoothScale( int(butterflyimg[0].width()*0.75),
int(butterflyimg[0].height()*0.75) ); int(butterflyimg[0].height()*0.75) );
@ -690,8 +690,8 @@ void <a name="f645"></a>Main::addButterfly()
int(butterflyimg[0].height()*0.25) ); int(butterflyimg[0].height()*0.25) );
} }
<a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>* i = new ImageItem(butterflyimg[rand()%4],&amp;canvas); <a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>* i = new ImageItem(butterflyimg[rand()%4],&amp;canvas);
<a name="x2915"></a> i-&gt;<a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-butterflyimg-&gt;<a href="ntqimage.html#width">width</a>()), <a name="x2915"></a> i-&gt;<a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-butterflyimg-&gt;<a href="tqimage.html#width">width</a>()),
rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-butterflyimg-&gt;<a href="ntqimage.html#height">height</a>())); rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-butterflyimg-&gt;<a href="tqimage.html#height">height</a>()));
i-&gt;<a href="tqcanvasitem.html#setZ">setZ</a>(rand()%256+250); i-&gt;<a href="tqcanvasitem.html#setZ">setZ</a>(rand()%256+250);
i-&gt;<a href="tqcanvasitem.html#show">show</a>(); i-&gt;<a href="tqcanvasitem.html#show">show</a>();
} }
@ -701,7 +701,7 @@ void <a name="f646"></a>Main::addLogo()
if ( logo_fn.isEmpty() ) if ( logo_fn.isEmpty() )
return; return;
if ( !logoimg ) { if ( !logoimg ) {
logoimg = new <a href="ntqimage.html">TQImage</a>[4]; logoimg = new <a href="tqimage.html">TQImage</a>[4];
logoimg[0].load( logo_fn ); logoimg[0].load( logo_fn );
logoimg[1] = logoimg[0].smoothScale( int(logoimg[0].width()*0.75), logoimg[1] = logoimg[0].smoothScale( int(logoimg[0].width()*0.75),
int(logoimg[0].height()*0.75) ); int(logoimg[0].height()*0.75) );
@ -711,8 +711,8 @@ void <a name="f646"></a>Main::addLogo()
int(logoimg[0].height()*0.25) ); int(logoimg[0].height()*0.25) );
} }
<a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>* i = new ImageItem(logoimg[rand()%4],&amp;canvas); <a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>* i = new ImageItem(logoimg[rand()%4],&amp;canvas);
i-&gt;<a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-logoimg-&gt;<a href="ntqimage.html#width">width</a>()), i-&gt;<a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-logoimg-&gt;<a href="tqimage.html#width">width</a>()),
rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-logoimg-&gt;<a href="ntqimage.html#width">width</a>())); rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-logoimg-&gt;<a href="tqimage.html#width">width</a>()));
i-&gt;<a href="tqcanvasitem.html#setZ">setZ</a>(rand()%256+256); i-&gt;<a href="tqcanvasitem.html#setZ">setZ</a>(rand()%256+256);
i-&gt;<a href="tqcanvasitem.html#show">show</a>(); i-&gt;<a href="tqcanvasitem.html#show">show</a>();
} }
@ -888,7 +888,7 @@ void <a name="f654"></a>Main::addRectangle()
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt; #include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="qmenubar-h.html">ntqmenubar.h</a>&gt; #include &lt;<a href="qmenubar-h.html">ntqmenubar.h</a>&gt;
#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="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include "canvas.h" #include "canvas.h"

@ -38,7 +38,7 @@ body { background: #ffffff; color: black; }
#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt; #include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
#include &lt;<a href="qfontdialog-h.html">ntqfontdialog.h</a>&gt; #include &lt;<a href="qfontdialog-h.html">ntqfontdialog.h</a>&gt;
#include &lt;<a href="qframe-h.html">ntqframe.h</a>&gt; #include &lt;<a href="qframe-h.html">ntqframe.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt; #include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt; #include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt; #include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;

@ -250,9 +250,9 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="785,398,884,416" href="ntqhostaddress.html"> <area shape="rect" coords="785,398,884,416" href="ntqhostaddress.html">
<area shape="rect" coords="786,417,884,434" href="qhttpheader.html"> <area shape="rect" coords="786,417,884,434" href="qhttpheader.html">
<area shape="rect" coords="786,434,885,452" href="ntqiconset.html"> <area shape="rect" coords="786,434,885,452" href="ntqiconset.html">
<area shape="rect" coords="789,452,885,473" href="ntqimage.html"> <area shape="rect" coords="789,452,885,473" href="tqimage.html">
<area shape="rect" coords="789,468,895,489" href="ntqimageformatplugin.html"> <area shape="rect" coords="789,468,895,489" href="tqimageformatplugin.html">
<area shape="rect" coords="789,489,895,505" href="qimageio.html"> <area shape="rect" coords="789,489,895,505" href="tqimageio.html">
<area shape="rect" coords="789,505,869,523" href="ntqintcache.html"> <area shape="rect" coords="789,505,869,523" href="ntqintcache.html">
<area shape="rect" coords="785,524,868,542" href="ntqiodevice.html"> <area shape="rect" coords="785,524,868,542" href="ntqiodevice.html">
<area shape="rect" coords="785,542,872,558" href="ntqlibrary.html"> <area shape="rect" coords="785,542,872,558" href="ntqlibrary.html">

@ -64,7 +64,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqdir.html">TQDir</a> <td><a href="ntqdir.html">TQDir</a>
<td align="right"> <td align="right">
<td><a href="ntqimage.html">TQImage</a> <td><a href="tqimage.html">TQImage</a>
<td align="right"> <td align="right">
<td><a href="qpngimagepacker.html">TQPNGImagePacker</a> <td><a href="qpngimagepacker.html">TQPNGImagePacker</a>
<td align="right"> <td align="right">
@ -75,7 +75,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="qdirectpainter.html">TQDirectPainter</a> <td><a href="qdirectpainter.html">TQDirectPainter</a>
<td align="right"> <td align="right">
<td><a href="qimageconsumer.html">TQImageConsumer</a> <td><a href="tqimageconsumer.html">TQImageConsumer</a>
<td align="right"> <td align="right">
<td><a href="ntqpoint.html">TQPoint</a> <td><a href="ntqpoint.html">TQPoint</a>
<td align="right"> <td align="right">
@ -86,7 +86,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqdns.html">TQDns</a> <td><a href="ntqdns.html">TQDns</a>
<td align="right"> <td align="right">
<td><a href="qimagedecoder.html">TQImageDecoder</a> <td><a href="tqimagedecoder.html">TQImageDecoder</a>
<td align="right"> <td align="right">
<td><a href="ntqpointarray.html">TQPointArray</a> <td><a href="ntqpointarray.html">TQPointArray</a>
<td align="right"> <td align="right">
@ -97,7 +97,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqdockarea.html">TQDockArea</a> <td><a href="ntqdockarea.html">TQDockArea</a>
<td align="right"> <td align="right">
<td><a href="qimagedrag.html">TQImageDrag</a> <td><a href="tqimagedrag.html">TQImageDrag</a>
<td align="right"> <td align="right">
<td><a href="ntqpopupmenu.html">TQPopupMenu</a> <td><a href="ntqpopupmenu.html">TQPopupMenu</a>
<td align="right"> <td align="right">
@ -108,7 +108,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqdockwindow.html">TQDockWindow</a> <td><a href="ntqdockwindow.html">TQDockWindow</a>
<td align="right"> <td align="right">
<td><a href="qimageformat.html">TQImageFormat</a> <td><a href="tqimageformat.html">TQImageFormat</a>
<td align="right"> <td align="right">
<td><a href="ntqprinter.html">TQPrinter</a> <td><a href="ntqprinter.html">TQPrinter</a>
<td align="right"> <td align="right">
@ -119,7 +119,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqdomattr.html">TQDomAttr</a> <td><a href="tqdomattr.html">TQDomAttr</a>
<td align="right"> <td align="right">
<td><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a> <td><a href="tqimageformatplugin.html">TQImageFormatPlugin</a>
<td align="right"> <td align="right">
<td><a href="ntqprocess.html">TQProcess</a> <td><a href="ntqprocess.html">TQProcess</a>
<td align="right"> <td align="right">
@ -130,7 +130,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqdomcdatasection.html">TQDomCDATASection</a> <td><a href="tqdomcdatasection.html">TQDomCDATASection</a>
<td align="right"> <td align="right">
<td><a href="qimageformattype.html">TQImageFormatType</a> <td><a href="tqimageformattype.html">TQImageFormatType</a>
<td align="right"> <td align="right">
<td><a href="ntqprogressbar.html">TQProgressBar</a> <td><a href="ntqprogressbar.html">TQProgressBar</a>
<td align="right"> <td align="right">
@ -141,7 +141,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqdomcharacterdata.html">TQDomCharacterData</a> <td><a href="tqdomcharacterdata.html">TQDomCharacterData</a>
<td align="right"> <td align="right">
<td><a href="qimageio.html">TQImageIO</a> <td><a href="tqimageio.html">TQImageIO</a>
<td align="right"> <td align="right">
<td><a href="ntqprogressdialog.html">TQProgressDialog</a> <td><a href="ntqprogressdialog.html">TQProgressDialog</a>
<td align="right"> <td align="right">

@ -146,7 +146,7 @@ The null string is represented as <tt>(TQ_UINT32) 0</tt>.
<li> If the image is null a "null image" marker is saved; <li> If the image is null a "null image" marker is saved;
otherwise the image is saved in PNG or BMP format (depending otherwise the image is saved in PNG or BMP format (depending
on the stream version). If you want control of the format, on the stream version). If you want control of the format,
stream the image into a <a href="ntqbuffer.html">TQBuffer</a> (using <a href="qimageio.html">TQImageIO</a>) and stream stream the image into a <a href="ntqbuffer.html">TQBuffer</a> (using <a href="tqimageio.html">TQImageIO</a>) and stream
that. that.
</ul> </ul>
<tr bgcolor="#f0f0f0"> <td valign="top">TQMap <tr bgcolor="#f0f0f0"> <td valign="top">TQMap

@ -228,7 +228,7 @@ body { background: #ffffff; color: black; }
&lt;include location="local" impldecl="in implementation"&gt;pixmapchooser.h&lt;/include&gt; &lt;include location="local" impldecl="in implementation"&gt;pixmapchooser.h&lt;/include&gt;
&lt;include location="local" impldecl="in implementation"&gt;project.h&lt;/include&gt; &lt;include location="local" impldecl="in implementation"&gt;project.h&lt;/include&gt;
&lt;include location="global" impldecl="in implementation"&gt;ntqfileinfo.h&lt;/include&gt; &lt;include location="global" impldecl="in implementation"&gt;ntqfileinfo.h&lt;/include&gt;
&lt;include location="global" impldecl="in implementation"&gt;ntqimage.h&lt;/include&gt; &lt;include location="global" impldecl="in implementation"&gt;tqimage.h&lt;/include&gt;
&lt;include location="global" impldecl="in declaration"&gt;ntqpixmap.h&lt;/include&gt; &lt;include location="global" impldecl="in declaration"&gt;ntqpixmap.h&lt;/include&gt;
&lt;include location="local" impldecl="in implementation"&gt;pixmapcollectioneditor.ui.h&lt;/include&gt; &lt;include location="local" impldecl="in implementation"&gt;pixmapcollectioneditor.ui.h&lt;/include&gt;
&lt;/includes&gt; &lt;/includes&gt;

@ -49,7 +49,7 @@ any other.
** **
*****************************************************************************/ *****************************************************************************/
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qbitmap-h.html">ntqbitmap.h</a>&gt; #include &lt;<a href="qbitmap-h.html">ntqbitmap.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt; #include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
@ -161,11 +161,11 @@ void rotate()
int i; int i;
const int w = 64; const int w = 64;
const int h = 64; const int h = 64;
<a href="ntqimage.html">TQImage</a> image( w, h, 8, 128 ); // create image <a href="tqimage.html">TQImage</a> image( w, h, 8, 128 ); // create image
for ( i=0; i&lt;128; i++ ) // build color table for ( i=0; i&lt;128; i++ ) // build color table
<a name="x1730"></a> image.<a href="ntqimage.html#setColor">setColor</a>( i, tqRgb(i,0,0) ); <a name="x1730"></a> image.<a href="tqimage.html#setColor">setColor</a>( i, tqRgb(i,0,0) );
for ( int y=0; y&lt;h; y++ ) { // set image pixels for ( int y=0; y&lt;h; y++ ) { // set image pixels
<a name="x1729"></a> uchar *p = image.<a href="ntqimage.html#scanLine">scanLine</a>(y); <a name="x1729"></a> uchar *p = image.<a href="tqimage.html#scanLine">scanLine</a>(y);
for ( int x=0; x&lt;w; x++ ) for ( int x=0; x&lt;w; x++ )
*p++ = (x+y)%128; *p++ = (x+y)%128;
} }
@ -236,7 +236,7 @@ public:
void dragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *e ) void dragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *e )
{ {
<a name="x1731"></a> if ( TQImageDrag::<a href="qimagedrag.html#canDecode">canDecode</a>(e) ) <a name="x1731"></a> if ( TQImageDrag::<a href="tqimagedrag.html#canDecode">canDecode</a>(e) )
<a name="x1727"></a> e-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); <a name="x1727"></a> e-&gt;<a href="qdragmoveevent.html#accept">accept</a>();
} }
@ -252,7 +252,7 @@ public:
void dropEvent( <a href="qdropevent.html">TQDropEvent</a> * e ) void dropEvent( <a href="qdropevent.html">TQDropEvent</a> * e )
{ {
<a href="ntqpixmap.html">TQPixmap</a> pmp; <a href="ntqpixmap.html">TQPixmap</a> pmp;
<a name="x1732"></a> if ( TQImageDrag::<a href="qimagedrag.html#decode">decode</a>( e, pmp ) ) { <a name="x1732"></a> if ( TQImageDrag::<a href="tqimagedrag.html#decode">decode</a>( e, pmp ) ) {
<a href="tqwidget.html#setBackgroundPixmap">setBackgroundPixmap</a>( pmp ); <a href="tqwidget.html#setBackgroundPixmap">setBackgroundPixmap</a>( pmp );
<a href="tqwidget.html#update">update</a>(); <a href="tqwidget.html#update">update</a>();
} }
@ -296,7 +296,7 @@ void DesktopWidget::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="
p.<a href="ntqpainter.html#begin">begin</a>( &amp;offscreen ); p.<a href="ntqpainter.html#begin">begin</a>( &amp;offscreen );
<a name="x1758"></a><a name="x1757"></a> drawShadeText( &amp;p, -br.<a href="ntqrect.html#x">x</a>(), -br.<a href="ntqrect.html#y">y</a>(), text, c2, c3, 3 ); <a name="x1758"></a><a name="x1757"></a> drawShadeText( &amp;p, -br.<a href="ntqrect.html#x">x</a>(), -br.<a href="ntqrect.html#y">y</a>(), text, c2, c3, 3 );
p.<a href="ntqpainter.html#end">end</a>(); p.<a href="ntqpainter.html#end">end</a>();
<a href="ntqimage.html#bitBlt">bitBlt</a>( this, x, y, &amp;offscreen ); <a href="tqimage.html#bitBlt">bitBlt</a>( this, x, y, &amp;offscreen );
} }
void desktopWidget( const char *s = "Trolltech" ) void desktopWidget( const char *s = "Trolltech" )

@ -64,7 +64,7 @@ sophistication): <tt>qt/examples/iconview/simple_dd</tt>, <tt>qt/examples/dragdr
</h2> </h2>
<a name="1"></a><p> To start a drag, for example in a <a href="tqwidget.html#mouseMoveEvent">mouse motion event</a>, create an object of the <a href="ntqdragobject.html">TQDragObject</a> <a name="1"></a><p> To start a drag, for example in a <a href="tqwidget.html#mouseMoveEvent">mouse motion event</a>, create an object of the <a href="ntqdragobject.html">TQDragObject</a>
subclass appropriate for your media, such as <a href="qtextdrag.html">TQTextDrag</a> for text and subclass appropriate for your media, such as <a href="qtextdrag.html">TQTextDrag</a> for text and
<a href="qimagedrag.html">TQImageDrag</a> for images. Then call the drag() method. This is all you <a href="tqimagedrag.html">TQImageDrag</a> for images. Then call the drag() method. This is all you
need for simple dragging of existing types. need for simple dragging of existing types.
<p> For example, to start dragging some text from a widget: <p> For example, to start dragging some text from a widget:
<pre> <pre>
@ -108,16 +108,16 @@ void MyWidget::dragEnterEvent(TQDragEnterEvent* event)
{ {
event-&gt;accept( event-&gt;accept(
TQTextDrag::<a href="qtextdrag.html#canDecode">canDecode</a>(event) || TQTextDrag::<a href="qtextdrag.html#canDecode">canDecode</a>(event) ||
TQImageDrag::<a href="qimagedrag.html#canDecode">canDecode</a>(event) TQImageDrag::<a href="tqimagedrag.html#canDecode">canDecode</a>(event)
); );
} }
void MyWidget::dropEvent(TQDropEvent* event) void MyWidget::dropEvent(TQDropEvent* event)
{ {
<a href="ntqimage.html">TQImage</a> image; <a href="tqimage.html">TQImage</a> image;
<a href="ntqstring.html">TQString</a> text; <a href="ntqstring.html">TQString</a> text;
if ( TQImageDrag::<a href="qimagedrag.html#decode">decode</a>(event, image) ) { if ( TQImageDrag::<a href="tqimagedrag.html#decode">decode</a>(event, image) ) {
insertImageAt(image, event-&gt;pos()); insertImageAt(image, event-&gt;pos());
} else if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(event, text) ) { } else if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(event, text) ) {
insertTextAt(text, event-&gt;pos()); insertTextAt(text, event-&gt;pos());
@ -212,9 +212,9 @@ source provides a list of MIME types that it can produce (ordered from
most appropriate to least appropriate), and the drop target chooses most appropriate to least appropriate), and the drop target chooses
which of those it can accept. For example, <a href="qtextdrag.html">TQTextDrag</a> provides support which of those it can accept. For example, <a href="qtextdrag.html">TQTextDrag</a> provides support
for the "<tt>text/plain</tt>" MIME type (ordinary unformatted text), and for the "<tt>text/plain</tt>" MIME type (ordinary unformatted text), and
the Unicode formats "<tt>text/utf16</tt>" and "<tt>text/utf8</tt>"; <a href="qimagedrag.html">TQImageDrag</a> the Unicode formats "<tt>text/utf16</tt>" and "<tt>text/utf8</tt>"; <a href="tqimagedrag.html">TQImageDrag</a>
provides for "<tt>image/*</tt>", where <tt>*</tt> is any image format that provides for "<tt>image/*</tt>", where <tt>*</tt> is any image format that
<a href="qimageio.html">TQImageIO</a> supports; and the <a href="quridrag.html">TQUriDrag</a> subclass provides <a href="tqimageio.html">TQImageIO</a> supports; and the <a href="quridrag.html">TQUriDrag</a> subclass provides
"<tt>text/uri-list</tt>", a standard format for transferring a list of "<tt>text/uri-list</tt>", a standard format for transferring a list of
filenames (or URLs). filenames (or URLs).
<p> To implement drag-and-drop of some type of information for which there <p> To implement drag-and-drop of some type of information for which there
@ -234,9 +234,9 @@ is sufficient.
<a href="qmimesource.html#encodedData">TQByteArray encodedData(const char* mimetype) const</a> <a href="qmimesource.html#encodedData">TQByteArray encodedData(const char* mimetype) const</a>
members, and provide a set-method to encode the media data and static members, and provide a set-method to encode the media data and static
members canDecode() and decode() to decode incoming data, similar to members canDecode() and decode() to decode incoming data, similar to
<a href="qimagedrag.html#canDecode">bool canDecode(TQMimeSource*) const</a> and <a href="tqimagedrag.html#canDecode">bool canDecode(TQMimeSource*) const</a> and
<a href="qimagedrag.html#decode">TQByteArray decode(TQMimeSource*) const</a> <a href="tqimagedrag.html#decode">TQByteArray decode(TQMimeSource*) const</a>
of <a href="qimagedrag.html">TQImageDrag</a>. of <a href="tqimagedrag.html">TQImageDrag</a>.
Of course, you can provide drag-only or drop-only support for a media Of course, you can provide drag-only or drop-only support for a media
type by omitting some of these methods. type by omitting some of these methods.
<p> Subclasses of TQStoredDrag provide a set-method to encode the media <p> Subclasses of TQStoredDrag provide a set-method to encode the media

@ -45,7 +45,7 @@ TQt.</a>
<tr bgcolor=#f0f0f0><td><b><a href="qdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed <tr bgcolor=#f0f0f0><td><b><a href="qdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed
<tr bgcolor=#f0f0f0><td><b><a href="qicondrag.html">TQIconDrag</a></b><td>Supports drag and drop operations within a TQIconView <tr bgcolor=#f0f0f0><td><b><a href="qicondrag.html">TQIconDrag</a></b><td>Supports drag and drop operations within a TQIconView
<tr bgcolor=#f0f0f0><td><b><a href="qicondragitem.html">TQIconDragItem</a></b><td>Encapsulates a drag item <tr bgcolor=#f0f0f0><td><b><a href="qicondragitem.html">TQIconDragItem</a></b><td>Encapsulates a drag item
<tr bgcolor=#f0f0f0><td><b><a href="qimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images <tr bgcolor=#f0f0f0><td><b><a href="tqimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images
<tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors <tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors
<tr bgcolor=#f0f0f0><td><b><a href="qmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type <tr bgcolor=#f0f0f0><td><b><a href="qmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type
<tr bgcolor=#f0f0f0><td><b><a href="qstoreddrag.html">TQStoredDrag</a></b><td>Simple stored-value drag object for arbitrary MIME data <tr bgcolor=#f0f0f0><td><b><a href="qstoreddrag.html">TQStoredDrag</a></b><td>Simple stored-value drag object for arbitrary MIME data

@ -46,7 +46,7 @@ dependencies are expressed in <tt>ntqfeatures.h</tt>.
<p> The available options are: <p> The available options are:
<p> <center><table cellpadding="4" cellspacing="2" border="0"> <p> <center><table cellpadding="4" cellspacing="2" border="0">
<tr bgcolor="#a2c511"> <th valign="top">Macro <th valign="top">Disables <th valign="top">Set automatically by <tr bgcolor="#a2c511"> <th valign="top">Macro <th valign="top">Disables <th valign="top">Set automatically by
<tr bgcolor="#a2c511"> <th valign="top" colspan="3" rowspan="1"> Images (<a href="qimageio.html">TQImageIO</a>) <tr bgcolor="#a2c511"> <th valign="top" colspan="3" rowspan="1"> Images (<a href="tqimageio.html">TQImageIO</a>)
<tr bgcolor="#f0f0f0"> <td valign="top">TQT_NO_IMAGEIO_BMP <tr bgcolor="#f0f0f0"> <td valign="top">TQT_NO_IMAGEIO_BMP
<td valign="top">Microsoft Bitmap image file format. <td valign="top">Microsoft Bitmap image file format.
<td valign="top">&nbsp; <td valign="top">&nbsp;
@ -67,7 +67,7 @@ dependencies are expressed in <tt>ntqfeatures.h</tt>.
<td valign="top">Asynchronous I/O (<a href="ntqasyncio.html">TQAsyncIO</a>) <td valign="top">Asynchronous I/O (<a href="ntqasyncio.html">TQAsyncIO</a>)
<td valign="top">&nbsp; <td valign="top">&nbsp;
<tr bgcolor="#f0f0f0"> <td valign="top">TQT_NO_ASYNC_IMAGE_IO <tr bgcolor="#f0f0f0"> <td valign="top">TQT_NO_ASYNC_IMAGE_IO
<td valign="top">Asynchronous Image I/O and GIF image support (<a href="qimagedecoder.html">TQImageDecoder</a>, ...) <td valign="top">Asynchronous Image I/O and GIF image support (<a href="tqimagedecoder.html">TQImageDecoder</a>, ...)
<td valign="top">&nbsp; <td valign="top">&nbsp;
<tr bgcolor="#d0d0d0"> <td valign="top">TQT_NO_MOVIE <tr bgcolor="#d0d0d0"> <td valign="top">TQT_NO_MOVIE
<td valign="top">Animation support (<a href="ntqmovie.html">TQMovie</a>) <td valign="top">Animation support (<a href="ntqmovie.html">TQMovie</a>)

@ -136,7 +136,7 @@ abort:
<a href="ntqlayout.html#alignmentRect">TQLayout</a><li>all: <a href="ntqlayout.html#alignmentRect">TQLayout</a><li>all:
<a href="qmacmime.html#all">TQMacMime</a> <a href="qwindowsmime.html#all">TQWindowsMime</a><li>allColumnsShowFocus: <a href="qmacmime.html#all">TQMacMime</a> <a href="qwindowsmime.html#all">TQWindowsMime</a><li>allColumnsShowFocus:
<a href="ntqlistview.html#allColumnsShowFocus">TQListView</a><li>allGray: <a href="ntqlistview.html#allColumnsShowFocus">TQListView</a><li>allGray:
<a href="ntqimage.html#allGray">TQImage</a><li>allItems: <a href="tqimage.html#allGray">TQImage</a><li>allItems:
<a href="tqcanvas.html#allItems">TQCanvas</a><li>allWidgets: <a href="tqcanvas.html#allItems">TQCanvas</a><li>allWidgets:
<a href="ntqapplication.html#allWidgets">TQApplication</a><li>alloc: <a href="ntqapplication.html#allWidgets">TQApplication</a><li>alloc:
<a href="ntqcolor.html#alloc">TQColor</a> <a href="qscreen.html#alloc">TQScreen</a><li>allocation: <a href="ntqcolor.html#alloc">TQColor</a> <a href="qscreen.html#alloc">TQScreen</a><li>allocation:
@ -271,10 +271,10 @@ back:
<a href="tqdatatable.html#beginUpdate">TQDataTable</a><li>bind: <a href="tqdatatable.html#beginUpdate">TQDataTable</a><li>bind:
<a href="ntqsocketdevice.html#bind">TQSocketDevice</a><li>bindValue: <a href="ntqsocketdevice.html#bind">TQSocketDevice</a><li>bindValue:
<a href="tqsqlquery.html#bindValue">TQSqlQuery</a><li>bitBlt: <a href="tqsqlquery.html#bindValue">TQSqlQuery</a><li>bitBlt:
<a href="ntqimage.html#bitBlt">TQImage</a> <a href="ntqpaintdevice.html#bitBlt">TQPaintDevice</a><li>bitOrder: <a href="tqimage.html#bitBlt">TQImage</a> <a href="ntqpaintdevice.html#bitBlt">TQPaintDevice</a><li>bitOrder:
<a href="ntqimage.html#bitOrder">TQImage</a><li>bitmap: <a href="tqimage.html#bitOrder">TQImage</a><li>bitmap:
<a href="ntqcursor.html#bitmap">TQCursor</a><li>bits: <a href="ntqcursor.html#bitmap">TQCursor</a><li>bits:
<a href="ntqimage.html#bits">TQImage</a><li>blank: <a href="tqimage.html#bits">TQImage</a><li>blank:
<a href="qscreen.html#blank">TQScreen</a><li>blockSignals: <a href="qscreen.html#blank">TQScreen</a><li>blockSignals:
<a href="tqobject.html#blockSignals">TQObject</a><li>blocking: <a href="tqobject.html#blockSignals">TQObject</a><li>blocking:
<a href="ntqsocketdevice.html#blocking">TQSocketDevice</a><li>blue: <a href="ntqsocketdevice.html#blocking">TQSocketDevice</a><li>blue:
@ -307,7 +307,7 @@ back:
<a href="qcolorgroup.html#buttonText">TQColorGroup</a> <a href="ntqmessagebox.html#buttonText">TQMessageBox</a><li>byteOrder: <a href="qcolorgroup.html#buttonText">TQColorGroup</a> <a href="ntqmessagebox.html#buttonText">TQMessageBox</a><li>byteOrder:
<a href="ntqdatastream.html#byteOrder">TQDataStream</a><li>bytesAvailable: <a href="ntqdatastream.html#byteOrder">TQDataStream</a><li>bytesAvailable:
<a href="ntqftp.html#bytesAvailable">TQFtp</a> <a href="ntqhttp.html#bytesAvailable">TQHttp</a> <a href="ntqsocket.html#bytesAvailable">TQSocket</a> <a href="ntqsocketdevice.html#bytesAvailable">TQSocketDevice</a><li>bytesPerLine: <a href="ntqftp.html#bytesAvailable">TQFtp</a> <a href="ntqhttp.html#bytesAvailable">TQHttp</a> <a href="ntqsocket.html#bytesAvailable">TQSocket</a> <a href="ntqsocketdevice.html#bytesAvailable">TQSocketDevice</a><li>bytesPerLine:
<a href="ntqimage.html#bytesPerLine">TQImage</a><li>bytesToWrite: <a href="tqimage.html#bytesPerLine">TQImage</a><li>bytesToWrite:
<a href="ntqsocket.html#bytesToWrite">TQSocket</a><li>bytesWritten: <a href="ntqsocket.html#bytesToWrite">TQSocket</a><li>bytesWritten:
<a href="ntqsocket.html#bytesWritten">TQSocket</a><li><a name="c"></a> <a href="ntqsocket.html#bytesWritten">TQSocket</a><li><a name="c"></a>
c: c:
@ -321,7 +321,7 @@ c:
<a href="qaxscript.html#call">TQAxScript</a> <a href="qaxscriptmanager.html#call">TQAxScriptManager</a><li>canCast: <a href="qaxscript.html#call">TQAxScript</a> <a href="qaxscriptmanager.html#call">TQAxScriptManager</a><li>canCast:
<a href="ntqvariant.html#canCast">TQVariant</a><li>canConvert: <a href="ntqvariant.html#canCast">TQVariant</a><li>canConvert:
<a href="qmacmime.html#canConvert">TQMacMime</a> <a href="qwindowsmime.html#canConvert">TQWindowsMime</a><li>canDecode: <a href="qmacmime.html#canConvert">TQMacMime</a> <a href="qwindowsmime.html#canConvert">TQWindowsMime</a><li>canDecode:
<a href="qcolordrag.html#canDecode">TQColorDrag</a> <a href="qicondrag.html#canDecode">TQIconDrag</a> <a href="qimagedrag.html#canDecode">TQImageDrag</a> <a href="qtextdrag.html#canDecode">TQTextDrag</a> <a href="quridrag.html#canDecode">TQUriDrag</a><li>canDelete: <a href="qcolordrag.html#canDecode">TQColorDrag</a> <a href="qicondrag.html#canDecode">TQIconDrag</a> <a href="tqimagedrag.html#canDecode">TQImageDrag</a> <a href="qtextdrag.html#canDecode">TQTextDrag</a> <a href="quridrag.html#canDecode">TQUriDrag</a><li>canDelete:
<a href="tqsqlcursor.html#canDelete">TQSqlCursor</a><li>canEncode: <a href="tqsqlcursor.html#canDelete">TQSqlCursor</a><li>canEncode:
<a href="ntqtextcodec.html#canEncode">TQTextCodec</a><li>canInsert: <a href="ntqtextcodec.html#canEncode">TQTextCodec</a><li>canInsert:
<a href="tqsqlcursor.html#canInsert">TQSqlCursor</a><li>canReadLine: <a href="tqsqlcursor.html#canInsert">TQSqlCursor</a><li>canReadLine:
@ -364,7 +364,7 @@ c:
<a href="ntqcombobox.html#changeItem">TQComboBox</a> <a href="ntqlistbox.html#changeItem">TQListBox</a> <a href="ntqmenudata.html#changeItem">TQMenuData</a> <a href="ntqmenudata.html#changeItem">TQPopupMenu</a><li>changeSize: <a href="ntqcombobox.html#changeItem">TQComboBox</a> <a href="ntqlistbox.html#changeItem">TQListBox</a> <a href="ntqmenudata.html#changeItem">TQMenuData</a> <a href="ntqmenudata.html#changeItem">TQPopupMenu</a><li>changeSize:
<a href="qspaceritem.html#changeSize">TQSpacerItem</a><li>changeTab: <a href="qspaceritem.html#changeSize">TQSpacerItem</a><li>changeTab:
<a href="ntqtabdialog.html#changeTab">TQTabDialog</a> <a href="ntqtabwidget.html#changeTab">TQTabWidget</a><li>changed: <a href="ntqtabdialog.html#changeTab">TQTabDialog</a> <a href="ntqtabwidget.html#changeTab">TQTabWidget</a><li>changed:
<a href="qimageconsumer.html#changed">TQImageConsumer</a><li>channel: <a href="tqimageconsumer.html#changed">TQImageConsumer</a><li>channel:
<a href="qcopchannel.html#channel">TQCopChannel</a><li>charAt: <a href="qcopchannel.html#channel">TQCopChannel</a><li>charAt:
<a href="ntqtextedit.html#charAt">TQTextEdit</a><li>charWidth: <a href="ntqtextedit.html#charAt">TQTextEdit</a><li>charWidth:
<a href="ntqfontmetrics.html#charWidth">TQFontMetrics</a><li>characters: <a href="ntqfontmetrics.html#charWidth">TQFontMetrics</a><li>characters:
@ -454,12 +454,12 @@ c:
<a href="ntqlistview.html#collapsed">TQListView</a><li>collidesWith: <a href="ntqlistview.html#collapsed">TQListView</a><li>collidesWith:
<a href="tqcanvasitem.html#collidesWith">TQCanvasItem</a><li>collisions: <a href="tqcanvasitem.html#collidesWith">TQCanvasItem</a><li>collisions:
<a href="tqcanvas.html#collisions">TQCanvas</a> <a href="tqcanvasitem.html#collisions">TQCanvasItem</a><li>color: <a href="tqcanvas.html#collisions">TQCanvas</a> <a href="tqcanvasitem.html#collisions">TQCanvasItem</a><li>color:
<a href="ntqbrush.html#color">TQBrush</a> <a href="tqcanvastext.html#color">TQCanvasText</a> <a href="qcolorgroup.html#color">TQColorGroup</a> <a href="ntqimage.html#color">TQImage</a> <a href="ntqpalette.html#color">TQPalette</a> <a href="ntqpen.html#color">TQPen</a> <a href="qstyleoption.html#color">TQStyleOption</a> <a href="qstylesheetitem.html#color">TQStyleSheetItem</a> <a href="ntqtextedit.html#color">TQTextEdit</a><li>colorGroup: <a href="ntqbrush.html#color">TQBrush</a> <a href="tqcanvastext.html#color">TQCanvasText</a> <a href="qcolorgroup.html#color">TQColorGroup</a> <a href="tqimage.html#color">TQImage</a> <a href="ntqpalette.html#color">TQPalette</a> <a href="ntqpen.html#color">TQPen</a> <a href="qstyleoption.html#color">TQStyleOption</a> <a href="qstylesheetitem.html#color">TQStyleSheetItem</a> <a href="ntqtextedit.html#color">TQTextEdit</a><li>colorGroup:
<a href="tqwidget.html#colorGroup">TQWidget</a><li>colorMode: <a href="tqwidget.html#colorGroup">TQWidget</a><li>colorMode:
<a href="ntqprinter.html#colorMode">TQPrinter</a><li>colorNames: <a href="ntqprinter.html#colorMode">TQPrinter</a><li>colorNames:
<a href="ntqcolor.html#colorNames">TQColor</a><li>colorSpec: <a href="ntqcolor.html#colorNames">TQColor</a><li>colorSpec:
<a href="ntqapplication.html#colorSpec">TQApplication</a><li>colorTable: <a href="ntqapplication.html#colorSpec">TQApplication</a><li>colorTable:
<a href="ntqimage.html#colorTable">TQImage</a><li>colormap: <a href="tqimage.html#colorTable">TQImage</a><li>colormap:
<a href="qglwidget.html#colormap">TQGLWidget</a><li>columnAlignment: <a href="qglwidget.html#colormap">TQGLWidget</a><li>columnAlignment:
<a href="ntqlistview.html#columnAlignment">TQListView</a><li>columnAt: <a href="ntqlistview.html#columnAlignment">TQListView</a><li>columnAt:
<a href="ntqgridview.html#columnAt">TQGridView</a> <a href="ntqtable.html#columnAt">TQTable</a><li>columnClicked: <a href="ntqgridview.html#columnAt">TQGridView</a> <a href="ntqtable.html#columnAt">TQTable</a><li>columnClicked:
@ -540,9 +540,9 @@ c:
<a href="qaccessibleinterface.html#controlAt">TQAccessibleInterface</a><li>controlPoints: <a href="qaccessibleinterface.html#controlAt">TQAccessibleInterface</a><li>controlPoints:
<a href="tqcanvasspline.html#controlPoints">TQCanvasSpline</a><li>controllingUnknown: <a href="tqcanvasspline.html#controlPoints">TQCanvasSpline</a><li>controllingUnknown:
<a href="qaxaggregated.html#controllingUnknown">TQAxAggregated</a><li>convertBitOrder: <a href="qaxaggregated.html#controllingUnknown">TQAxAggregated</a><li>convertBitOrder:
<a href="ntqimage.html#convertBitOrder">TQImage</a><li>convertDepth: <a href="tqimage.html#convertBitOrder">TQImage</a><li>convertDepth:
<a href="ntqimage.html#convertDepth">TQImage</a><li>convertDepthWithPalette: <a href="tqimage.html#convertDepth">TQImage</a><li>convertDepthWithPalette:
<a href="ntqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage: <a href="tqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage:
<a href="ntqpixmap.html#convertFromImage">TQPixmap</a><li>convertFromMime: <a href="ntqpixmap.html#convertFromImage">TQPixmap</a><li>convertFromMime:
<a href="qmacmime.html#convertFromMime">TQMacMime</a> <a href="qwindowsmime.html#convertFromMime">TQWindowsMime</a><li>convertFromPlainText: <a href="qmacmime.html#convertFromMime">TQMacMime</a> <a href="qwindowsmime.html#convertFromMime">TQWindowsMime</a><li>convertFromPlainText:
<a href="ntqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators: <a href="ntqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators:
@ -554,7 +554,7 @@ c:
<a href="qmacmime.html#convertor">TQMacMime</a> <a href="qwindowsmime.html#convertor">TQWindowsMime</a><li>convertorName: <a href="qmacmime.html#convertor">TQMacMime</a> <a href="qwindowsmime.html#convertor">TQWindowsMime</a><li>convertorName:
<a href="qmacmime.html#convertorName">TQMacMime</a> <a href="qwindowsmime.html#convertorName">TQWindowsMime</a><li>coords: <a href="qmacmime.html#convertorName">TQMacMime</a> <a href="qwindowsmime.html#convertorName">TQWindowsMime</a><li>coords:
<a href="ntqrect.html#coords">TQRect</a><li>copy: <a href="ntqrect.html#coords">TQRect</a><li>copy:
<a href="ntqbitarray.html#copy">TQBitArray</a> <a href="ntqcstring.html#copy">TQCString</a> <a href="ntqimage.html#copy">TQImage</a> <a href="ntqlineedit.html#copy">TQLineEdit</a> <a href="ntqmemarray.html#copy">TQMemArray</a> <a href="ntqpalette.html#copy">TQPalette</a> <a href="ntqpicture.html#copy">TQPicture</a> <a href="ntqpointarray.html#copy">TQPointArray</a> <a href="ntqtextedit.html#copy">TQTextEdit</a> <a href="ntqurloperator.html#copy">TQUrlOperator</a><li>copyAvailable: <a href="ntqbitarray.html#copy">TQBitArray</a> <a href="ntqcstring.html#copy">TQCString</a> <a href="tqimage.html#copy">TQImage</a> <a href="ntqlineedit.html#copy">TQLineEdit</a> <a href="ntqmemarray.html#copy">TQMemArray</a> <a href="ntqpalette.html#copy">TQPalette</a> <a href="ntqpicture.html#copy">TQPicture</a> <a href="ntqpointarray.html#copy">TQPointArray</a> <a href="ntqtextedit.html#copy">TQTextEdit</a> <a href="ntqurloperator.html#copy">TQUrlOperator</a><li>copyAvailable:
<a href="ntqtextedit.html#copyAvailable">TQTextEdit</a><li>copyBlt: <a href="ntqtextedit.html#copyAvailable">TQTextEdit</a><li>copyBlt:
<a href="ntqpixmap.html#copyBlt">TQPixmap</a><li>cornerWidget: <a href="ntqpixmap.html#copyBlt">TQPixmap</a><li>cornerWidget:
<a href="ntqscrollview.html#cornerWidget">TQScrollView</a> <a href="ntqtabwidget.html#cornerWidget">TQTabWidget</a><li>count: <a href="ntqscrollview.html#cornerWidget">TQScrollView</a> <a href="ntqtabwidget.html#cornerWidget">TQTabWidget</a><li>count:
@ -563,9 +563,9 @@ c:
<a href="qmacmime.html#countFlavors">TQMacMime</a><li>country: <a href="qmacmime.html#countFlavors">TQMacMime</a><li>country:
<a href="ntqlocale.html#country">TQLocale</a><li>countryToString: <a href="ntqlocale.html#country">TQLocale</a><li>countryToString:
<a href="ntqlocale.html#countryToString">TQLocale</a><li>create: <a href="ntqlocale.html#countryToString">TQLocale</a><li>create:
<a href="qaxfactory.html#create">TQAxFactory</a> <a href="qglcontext.html#create">TQGLContext</a> <a href="qgfxdriverfactory.html#create">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#create">TQGfxDriverPlugin</a> <a href="ntqimage.html#create">TQImage</a> <a href="qkbddriverfactory.html#create">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#create">TQKbdDriverPlugin</a> <a href="qmousedriverfactory.html#create">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#create">TQMouseDriverPlugin</a> <a href="qnplugin.html#create">TQNPlugin</a> <a href="tqsqldriverplugin.html#create">TQSqlDriverPlugin</a> <a href="ntqstylefactory.html#create">TQStyleFactory</a> <a href="ntqstyleplugin.html#create">TQStylePlugin</a> <a href="tqwidget.html#create">TQWidget</a> <a href="tqwidgetfactory.html#create">TQWidgetFactory</a> <a href="tqwidgetplugin.html#create">TQWidgetPlugin</a><li>createAggregate: <a href="qaxfactory.html#create">TQAxFactory</a> <a href="qglcontext.html#create">TQGLContext</a> <a href="qgfxdriverfactory.html#create">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#create">TQGfxDriverPlugin</a> <a href="tqimage.html#create">TQImage</a> <a href="qkbddriverfactory.html#create">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#create">TQKbdDriverPlugin</a> <a href="qmousedriverfactory.html#create">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#create">TQMouseDriverPlugin</a> <a href="qnplugin.html#create">TQNPlugin</a> <a href="tqsqldriverplugin.html#create">TQSqlDriverPlugin</a> <a href="ntqstylefactory.html#create">TQStyleFactory</a> <a href="ntqstyleplugin.html#create">TQStylePlugin</a> <a href="tqwidget.html#create">TQWidget</a> <a href="tqwidgetfactory.html#create">TQWidgetFactory</a> <a href="tqwidgetplugin.html#create">TQWidgetPlugin</a><li>createAggregate:
<a href="qaxbindable.html#createAggregate">TQAxBindable</a><li>createAlphaMask: <a href="qaxbindable.html#createAggregate">TQAxBindable</a><li>createAlphaMask:
<a href="ntqimage.html#createAlphaMask">TQImage</a><li>createAttribute: <a href="tqimage.html#createAlphaMask">TQImage</a><li>createAttribute:
<a href="tqdomdocument.html#createAttribute">TQDomDocument</a><li>createAttributeNS: <a href="tqdomdocument.html#createAttribute">TQDomDocument</a><li>createAttributeNS:
<a href="tqdomdocument.html#createAttributeNS">TQDomDocument</a><li>createCDATASection: <a href="tqdomdocument.html#createAttributeNS">TQDomDocument</a><li>createCDATASection:
<a href="tqdomdocument.html#createCDATASection">TQDomDocument</a><li>createComment: <a href="tqdomdocument.html#createCDATASection">TQDomDocument</a><li>createComment:
@ -581,7 +581,7 @@ c:
<a href="ntqtextcodecplugin.html#createForMib">TQTextCodecPlugin</a><li>createForName: <a href="ntqtextcodecplugin.html#createForMib">TQTextCodecPlugin</a><li>createForName:
<a href="ntqtextcodecplugin.html#createForName">TQTextCodecPlugin</a><li>createGfx: <a href="ntqtextcodecplugin.html#createForName">TQTextCodecPlugin</a><li>createGfx:
<a href="qscreen.html#createGfx">TQScreen</a><li>createHeuristicMask: <a href="qscreen.html#createGfx">TQScreen</a><li>createHeuristicMask:
<a href="ntqimage.html#createHeuristicMask">TQImage</a> <a href="ntqpixmap.html#createHeuristicMask">TQPixmap</a><li>createHostWindow: <a href="tqimage.html#createHeuristicMask">TQImage</a> <a href="ntqpixmap.html#createHeuristicMask">TQPixmap</a><li>createHostWindow:
<a href="qaxwidget.html#createHostWindow">TQAxWidget</a><li>createObject: <a href="qaxwidget.html#createHostWindow">TQAxWidget</a><li>createObject:
<a href="qaxfactory.html#createObject">TQAxFactory</a><li>createObjectWrapper: <a href="qaxfactory.html#createObject">TQAxFactory</a><li>createObjectWrapper:
<a href="qaxfactory.html#createObjectWrapper">TQAxFactory</a><li>createPixmap: <a href="qaxfactory.html#createObjectWrapper">TQAxFactory</a><li>createPixmap:
@ -679,11 +679,11 @@ dark:
<a href="ntqfont.html#deciPointSize">TQFont</a><li>decimals: <a href="ntqfont.html#deciPointSize">TQFont</a><li>decimals:
<a href="qdoublevalidator.html#decimals">TQDoubleValidator</a><li>declHandler: <a href="qdoublevalidator.html#decimals">TQDoubleValidator</a><li>declHandler:
<a href="tqxmlreader.html#declHandler">TQXmlReader</a><li>decode: <a href="tqxmlreader.html#declHandler">TQXmlReader</a><li>decode:
<a href="qcolordrag.html#decode">TQColorDrag</a> <a href="qimagedecoder.html#decode">TQImageDecoder</a> <a href="qimagedrag.html#decode">TQImageDrag</a> <a href="qimageformat.html#decode">TQImageFormat</a> <a href="qtextdrag.html#decode">TQTextDrag</a> <a href="quridrag.html#decode">TQUriDrag</a> <a href="ntqurl.html#decode">TQUrl</a><li>decodeLocalFiles: <a href="qcolordrag.html#decode">TQColorDrag</a> <a href="tqimagedecoder.html#decode">TQImageDecoder</a> <a href="tqimagedrag.html#decode">TQImageDrag</a> <a href="tqimageformat.html#decode">TQImageFormat</a> <a href="qtextdrag.html#decode">TQTextDrag</a> <a href="quridrag.html#decode">TQUriDrag</a> <a href="ntqurl.html#decode">TQUrl</a><li>decodeLocalFiles:
<a href="quridrag.html#decodeLocalFiles">TQUriDrag</a><li>decodeName: <a href="quridrag.html#decodeLocalFiles">TQUriDrag</a><li>decodeName:
<a href="ntqfile.html#decodeName">TQFile</a><li>decodeToUnicodeUris: <a href="ntqfile.html#decodeName">TQFile</a><li>decodeToUnicodeUris:
<a href="quridrag.html#decodeToUnicodeUris">TQUriDrag</a><li>decoderFor: <a href="quridrag.html#decodeToUnicodeUris">TQUriDrag</a><li>decoderFor:
<a href="qimageformattype.html#decoderFor">TQImageFormatType</a><li>decomposition: <a href="tqimageformattype.html#decoderFor">TQImageFormatType</a><li>decomposition:
<a href="qchar.html#decomposition">TQChar</a><li>decompositionTag: <a href="qchar.html#decomposition">TQChar</a><li>decompositionTag:
<a href="qchar.html#decompositionTag">TQChar</a><li>defaultButtonPressed: <a href="qchar.html#decompositionTag">TQChar</a><li>defaultButtonPressed:
<a href="ntqtabdialog.html#defaultButtonPressed">TQTabDialog</a><li>defaultDepth: <a href="ntqtabdialog.html#defaultButtonPressed">TQTabDialog</a><li>defaultDepth:
@ -697,7 +697,7 @@ dark:
<a href="ntqlistview.html#defaultRenameAction">TQListView</a><li>defaultSheet: <a href="ntqlistview.html#defaultRenameAction">TQListView</a><li>defaultSheet:
<a href="ntqstylesheet.html#defaultSheet">TQStyleSheet</a><li>defaultValue: <a href="ntqstylesheet.html#defaultSheet">TQStyleSheet</a><li>defaultValue:
<a href="tqsqlfieldinfo.html#defaultValue">TQSqlFieldInfo</a><li>defineIOHandler: <a href="tqsqlfieldinfo.html#defaultValue">TQSqlFieldInfo</a><li>defineIOHandler:
<a href="qimageio.html#defineIOHandler">TQImageIO</a><li>definesFontItalic: <a href="tqimageio.html#defineIOHandler">TQImageIO</a><li>definesFontItalic:
<a href="qstylesheetitem.html#definesFontItalic">TQStyleSheetItem</a><li>definesFontStrikeOut: <a href="qstylesheetitem.html#definesFontItalic">TQStyleSheetItem</a><li>definesFontStrikeOut:
<a href="qstylesheetitem.html#definesFontStrikeOut">TQStyleSheetItem</a><li>definesFontUnderline: <a href="qstylesheetitem.html#definesFontStrikeOut">TQStyleSheetItem</a><li>definesFontUnderline:
<a href="qstylesheetitem.html#definesFontUnderline">TQStyleSheetItem</a><li>del: <a href="qstylesheetitem.html#definesFontUnderline">TQStyleSheetItem</a><li>del:
@ -712,10 +712,10 @@ dark:
<a href="tqobject.html#deleteLater">TQObject</a><li>deleteNetworkProtocol: <a href="tqobject.html#deleteLater">TQObject</a><li>deleteNetworkProtocol:
<a href="ntqurloperator.html#deleteNetworkProtocol">TQUrlOperator</a><li>delta: <a href="ntqurloperator.html#deleteNetworkProtocol">TQUrlOperator</a><li>delta:
<a href="qwheelevent.html#delta">TQWheelEvent</a><li>depth: <a href="qwheelevent.html#delta">TQWheelEvent</a><li>depth:
<a href="qdirectpainter.html#depth">TQDirectPainter</a> <a href="qglformat.html#depth">TQGLFormat</a> <a href="ntqimage.html#depth">TQImage</a> <a href="qlistviewitem.html#depth">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#depth">TQPaintDeviceMetrics</a> <a href="ntqpixmap.html#depth">TQPixmap</a> <a href="qscreen.html#depth">TQScreen</a><li>dequeue: <a href="qdirectpainter.html#depth">TQDirectPainter</a> <a href="qglformat.html#depth">TQGLFormat</a> <a href="tqimage.html#depth">TQImage</a> <a href="qlistviewitem.html#depth">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#depth">TQPaintDeviceMetrics</a> <a href="ntqpixmap.html#depth">TQPixmap</a> <a href="qscreen.html#depth">TQScreen</a><li>dequeue:
<a href="tqptrqueue.html#dequeue">TQPtrQueue</a><li>descent: <a href="tqptrqueue.html#dequeue">TQPtrQueue</a><li>descent:
<a href="ntqfontmetrics.html#descent">TQFontMetrics</a><li>description: <a href="ntqfontmetrics.html#descent">TQFontMetrics</a><li>description:
<a href="qimageio.html#description">TQImageIO</a><li>deselect: <a href="tqimageio.html#description">TQImageIO</a><li>deselect:
<a href="ntqlineedit.html#deselect">TQLineEdit</a><li>designable: <a href="ntqlineedit.html#deselect">TQLineEdit</a><li>designable:
<a href="qmetaproperty.html#designable">TQMetaProperty</a><li>desktop: <a href="qmetaproperty.html#designable">TQMetaProperty</a><li>desktop:
<a href="ntqapplication.html#desktop">TQApplication</a><li>desktopSettingsAware: <a href="ntqapplication.html#desktop">TQApplication</a><li>desktopSettingsAware:
@ -724,7 +724,7 @@ dark:
<a href="ntqcolor.html#destroyAllocContext">TQColor</a><li>destroyed: <a href="ntqcolor.html#destroyAllocContext">TQColor</a><li>destroyed:
<a href="tqobject.html#destroyed">TQObject</a><li>det: <a href="tqobject.html#destroyed">TQObject</a><li>det:
<a href="ntqwmatrix.html#det">TQWMatrix</a><li>detach: <a href="ntqwmatrix.html#det">TQWMatrix</a><li>detach:
<a href="ntqbitarray.html#detach">TQBitArray</a> <a href="ntqglcolormap.html#detach">TQGLColormap</a> <a href="ntqiconset.html#detach">TQIconSet</a> <a href="ntqimage.html#detach">TQImage</a> <a href="tqmap.html#detach">TQMap</a> <a href="ntqmemarray.html#detach">TQMemArray</a> <a href="ntqpicture.html#detach">TQPicture</a> <a href="ntqpixmap.html#detach">TQPixmap</a><li>device: <a href="ntqbitarray.html#detach">TQBitArray</a> <a href="ntqglcolormap.html#detach">TQGLColormap</a> <a href="ntqiconset.html#detach">TQIconSet</a> <a href="tqimage.html#detach">TQImage</a> <a href="tqmap.html#detach">TQMap</a> <a href="ntqmemarray.html#detach">TQMemArray</a> <a href="ntqpicture.html#detach">TQPicture</a> <a href="ntqpixmap.html#detach">TQPixmap</a><li>device:
<a href="ntqdatastream.html#device">TQDataStream</a> <a href="qglcontext.html#device">TQGLContext</a> <a href="ntqpainter.html#device">TQPainter</a> <a href="qtabletevent.html#device">TQTabletEvent</a> <a href="ntqtextstream.html#device">TQTextStream</a><li>deviceHeight: <a href="ntqdatastream.html#device">TQDataStream</a> <a href="qglcontext.html#device">TQGLContext</a> <a href="ntqpainter.html#device">TQPainter</a> <a href="qtabletevent.html#device">TQTabletEvent</a> <a href="ntqtextstream.html#device">TQTextStream</a><li>deviceHeight:
<a href="qscreen.html#deviceHeight">TQScreen</a><li>deviceIsPixmap: <a href="qscreen.html#deviceHeight">TQScreen</a><li>deviceIsPixmap:
<a href="qglcontext.html#deviceIsPixmap">TQGLContext</a><li>deviceWidth: <a href="qglcontext.html#deviceIsPixmap">TQGLContext</a><li>deviceWidth:
@ -772,8 +772,8 @@ dark:
<a href="ntqtextedit.html#documentTitle">TQTextEdit</a><li>done: <a href="ntqtextedit.html#documentTitle">TQTextEdit</a><li>done:
<a href="ntqdialog.html#done">TQDialog</a> <a href="ntqftp.html#done">TQFtp</a> <a href="ntqhttp.html#done">TQHttp</a><li>doneCurrent: <a href="ntqdialog.html#done">TQDialog</a> <a href="ntqftp.html#done">TQFtp</a> <a href="ntqhttp.html#done">TQHttp</a><li>doneCurrent:
<a href="qglcontext.html#doneCurrent">TQGLContext</a> <a href="qglwidget.html#doneCurrent">TQGLWidget</a><li>dotsPerMeterX: <a href="qglcontext.html#doneCurrent">TQGLContext</a> <a href="qglwidget.html#doneCurrent">TQGLWidget</a><li>dotsPerMeterX:
<a href="ntqimage.html#dotsPerMeterX">TQImage</a><li>dotsPerMeterY: <a href="tqimage.html#dotsPerMeterX">TQImage</a><li>dotsPerMeterY:
<a href="ntqimage.html#dotsPerMeterY">TQImage</a><li>doubleBuffer: <a href="tqimage.html#dotsPerMeterY">TQImage</a><li>doubleBuffer:
<a href="qglformat.html#doubleBuffer">TQGLFormat</a> <a href="qglwidget.html#doubleBuffer">TQGLWidget</a><li>doubleClickInterval: <a href="qglformat.html#doubleBuffer">TQGLFormat</a> <a href="qglwidget.html#doubleBuffer">TQGLWidget</a><li>doubleClickInterval:
<a href="ntqapplication.html#doubleClickInterval">TQApplication</a><li>doubleClicked: <a href="ntqapplication.html#doubleClickInterval">TQApplication</a><li>doubleClicked:
<a href="ntqiconview.html#doubleClicked">TQIconView</a> <a href="ntqlistbox.html#doubleClicked">TQListBox</a> <a href="ntqlistview.html#doubleClicked">TQListView</a> <a href="ntqtable.html#doubleClicked">TQTable</a> <a href="ntqtextedit.html#doubleClicked">TQTextEdit</a><li>downRect: <a href="ntqiconview.html#doubleClicked">TQIconView</a> <a href="ntqlistbox.html#doubleClicked">TQListBox</a> <a href="ntqlistview.html#doubleClicked">TQListView</a> <a href="ntqtable.html#doubleClicked">TQTable</a> <a href="ntqtextedit.html#doubleClicked">TQTextEdit</a><li>downRect:
@ -868,7 +868,7 @@ echoMode:
<a href="ntqfile.html#encodeName">TQFile</a><li>encodedData: <a href="ntqfile.html#encodeName">TQFile</a><li>encodedData:
<a href="qdropevent.html#encodedData">TQDropEvent</a> <a href="qicondrag.html#encodedData">TQIconDrag</a> <a href="qmimesource.html#encodedData">TQMimeSource</a> <a href="qstoreddrag.html#encodedData">TQStoredDrag</a><li>encodedPathAndQuery: <a href="qdropevent.html#encodedData">TQDropEvent</a> <a href="qicondrag.html#encodedData">TQIconDrag</a> <a href="qmimesource.html#encodedData">TQMimeSource</a> <a href="qstoreddrag.html#encodedData">TQStoredDrag</a><li>encodedPathAndQuery:
<a href="ntqurl.html#encodedPathAndQuery">TQUrl</a><li>end: <a href="ntqurl.html#encodedPathAndQuery">TQUrl</a><li>end:
<a href="qimageconsumer.html#end">TQImageConsumer</a> <a href="ntqlineedit.html#end">TQLineEdit</a> <a href="tqmap.html#end">TQMap</a> <a href="ntqmemarray.html#end">TQMemArray</a> <a href="ntqmultilineedit.html#end">TQMultiLineEdit</a> <a href="qnpstream.html#end">TQNPStream</a> <a href="ntqpainter.html#end">TQPainter</a> <a href="tqvaluelist.html#end">TQValueList</a> <a href="tqvaluevector.html#end">TQValueVector</a><li>endCDATA: <a href="tqimageconsumer.html#end">TQImageConsumer</a> <a href="ntqlineedit.html#end">TQLineEdit</a> <a href="tqmap.html#end">TQMap</a> <a href="ntqmemarray.html#end">TQMemArray</a> <a href="ntqmultilineedit.html#end">TQMultiLineEdit</a> <a href="qnpstream.html#end">TQNPStream</a> <a href="ntqpainter.html#end">TQPainter</a> <a href="tqvaluelist.html#end">TQValueList</a> <a href="tqvaluevector.html#end">TQValueVector</a><li>endCDATA:
<a href="tqxmllexicalhandler.html#endCDATA">TQXmlLexicalHandler</a><li>endDTD: <a href="tqxmllexicalhandler.html#endCDATA">TQXmlLexicalHandler</a><li>endDTD:
<a href="tqxmllexicalhandler.html#endDTD">TQXmlLexicalHandler</a><li>endDocument: <a href="tqxmllexicalhandler.html#endDTD">TQXmlLexicalHandler</a><li>endDocument:
<a href="tqxmlcontenthandler.html#endDocument">TQXmlContentHandler</a><li>endEdit: <a href="tqxmlcontenthandler.html#endDocument">TQXmlContentHandler</a><li>endEdit:
@ -950,11 +950,11 @@ falseText:
<a href="tqsqlrecord.html#fieldName">TQSqlRecord</a><li>fieldToWidget: <a href="tqsqlrecord.html#fieldName">TQSqlRecord</a><li>fieldToWidget:
<a href="tqsqlform.html#fieldToWidget">TQSqlForm</a><li>fileHighlighted: <a href="tqsqlform.html#fieldToWidget">TQSqlForm</a><li>fileHighlighted:
<a href="ntqfiledialog.html#fileHighlighted">TQFileDialog</a><li>fileName: <a href="ntqfiledialog.html#fileHighlighted">TQFileDialog</a><li>fileName:
<a href="ntqfileinfo.html#fileName">TQFileInfo</a> <a href="qimageio.html#fileName">TQImageIO</a> <a href="ntqsound.html#fileName">TQSound</a> <a href="ntqurl.html#fileName">TQUrl</a><li>filePath: <a href="ntqfileinfo.html#fileName">TQFileInfo</a> <a href="tqimageio.html#fileName">TQImageIO</a> <a href="ntqsound.html#fileName">TQSound</a> <a href="ntqurl.html#fileName">TQUrl</a><li>filePath:
<a href="ntqdir.html#filePath">TQDir</a> <a href="ntqfileinfo.html#filePath">TQFileInfo</a> <a href="qmimesourcefactory.html#filePath">TQMimeSourceFactory</a><li>fileSelected: <a href="ntqdir.html#filePath">TQDir</a> <a href="ntqfileinfo.html#filePath">TQFileInfo</a> <a href="qmimesourcefactory.html#filePath">TQMimeSourceFactory</a><li>fileSelected:
<a href="ntqfiledialog.html#fileSelected">TQFileDialog</a><li>filesSelected: <a href="ntqfiledialog.html#fileSelected">TQFileDialog</a><li>filesSelected:
<a href="ntqfiledialog.html#filesSelected">TQFileDialog</a><li>fill: <a href="ntqfiledialog.html#filesSelected">TQFileDialog</a><li>fill:
<a href="ntqbitarray.html#fill">TQBitArray</a> <a href="ntqcstring.html#fill">TQCString</a> <a href="ntqimage.html#fill">TQImage</a> <a href="ntqmemarray.html#fill">TQMemArray</a> <a href="ntqpixmap.html#fill">TQPixmap</a> <a href="tqptrvector.html#fill">TQPtrVector</a> <a href="ntqstring.html#fill">TQString</a> <a href="ntqtextstream.html#fill">TQTextStream</a><li>fillRect: <a href="ntqbitarray.html#fill">TQBitArray</a> <a href="ntqcstring.html#fill">TQCString</a> <a href="tqimage.html#fill">TQImage</a> <a href="ntqmemarray.html#fill">TQMemArray</a> <a href="ntqpixmap.html#fill">TQPixmap</a> <a href="tqptrvector.html#fill">TQPtrVector</a> <a href="ntqstring.html#fill">TQString</a> <a href="ntqtextstream.html#fill">TQTextStream</a><li>fillRect:
<a href="ntqpainter.html#fillRect">TQPainter</a><li>filter: <a href="ntqpainter.html#fillRect">TQPainter</a><li>filter:
<a href="tqdatabrowser.html#filter">TQDataBrowser</a> <a href="tqdatatable.html#filter">TQDataTable</a> <a href="ntqdir.html#filter">TQDir</a> <a href="tqsqlcursor.html#filter">TQSqlCursor</a> <a href="qwsinputmethod.html#filter">TQWSInputMethod</a><li>filterSelected: <a href="tqdatabrowser.html#filter">TQDataBrowser</a> <a href="tqdatatable.html#filter">TQDataTable</a> <a href="ntqdir.html#filter">TQDir</a> <a href="tqsqlcursor.html#filter">TQSqlCursor</a> <a href="qwsinputmethod.html#filter">TQWSInputMethod</a><li>filterSelected:
<a href="ntqfiledialog.html#filterSelected">TQFileDialog</a><li>find: <a href="ntqfiledialog.html#filterSelected">TQFileDialog</a><li>find:
@ -1012,8 +1012,8 @@ falseText:
<a href="qcolorgroup.html#foreground">TQColorGroup</a><li>foregroundColor: <a href="qcolorgroup.html#foreground">TQColorGroup</a><li>foregroundColor:
<a href="tqwidget.html#foregroundColor">TQWidget</a><li>form: <a href="tqwidget.html#foregroundColor">TQWidget</a><li>form:
<a href="tqdatabrowser.html#form">TQDataBrowser</a> <a href="tqdataview.html#form">TQDataView</a><li>format: <a href="tqdatabrowser.html#form">TQDataBrowser</a> <a href="tqdataview.html#form">TQDataView</a><li>format:
<a href="qdropevent.html#format">TQDropEvent</a> <a href="qglcontext.html#format">TQGLContext</a> <a href="qglwidget.html#format">TQGLWidget</a> <a href="qimagedecoder.html#format">TQImageDecoder</a> <a href="qimageio.html#format">TQImageIO</a> <a href="qmimesource.html#format">TQMimeSource</a><li>formatName: <a href="qdropevent.html#format">TQDropEvent</a> <a href="qglcontext.html#format">TQGLContext</a> <a href="qglwidget.html#format">TQGLWidget</a> <a href="tqimagedecoder.html#format">TQImageDecoder</a> <a href="tqimageio.html#format">TQImageIO</a> <a href="qmimesource.html#format">TQMimeSource</a><li>formatName:
<a href="qimagedecoder.html#formatName">TQImageDecoder</a> <a href="qimageformattype.html#formatName">TQImageFormatType</a><li>formatValue: <a href="tqimagedecoder.html#formatName">TQImageDecoder</a> <a href="tqimageformattype.html#formatName">TQImageFormatType</a><li>formatValue:
<a href="tqsqldriver.html#formatValue">TQSqlDriver</a><li>forward: <a href="tqsqldriver.html#formatValue">TQSqlDriver</a><li>forward:
<a href="ntqtextbrowser.html#forward">TQTextBrowser</a><li>forwardAvailable: <a href="ntqtextbrowser.html#forward">TQTextBrowser</a><li>forwardAvailable:
<a href="ntqtextbrowser.html#forwardAvailable">TQTextBrowser</a><li>frame: <a href="ntqtextbrowser.html#forwardAvailable">TQTextBrowser</a><li>frame:
@ -1021,7 +1021,7 @@ falseText:
<a href="qdirectpainter.html#frameBuffer">TQDirectPainter</a><li>frameChanged: <a href="qdirectpainter.html#frameBuffer">TQDirectPainter</a><li>frameChanged:
<a href="ntqframe.html#frameChanged">TQFrame</a><li>frameCount: <a href="ntqframe.html#frameChanged">TQFrame</a><li>frameCount:
<a href="tqcanvassprite.html#frameCount">TQCanvasSprite</a><li>frameDone: <a href="tqcanvassprite.html#frameCount">TQCanvasSprite</a><li>frameDone:
<a href="qimageconsumer.html#frameDone">TQImageConsumer</a><li>frameGeometry: <a href="tqimageconsumer.html#frameDone">TQImageConsumer</a><li>frameGeometry:
<a href="tqwidget.html#frameGeometry">TQWidget</a><li>frameImage: <a href="tqwidget.html#frameGeometry">TQWidget</a><li>frameImage:
<a href="ntqmovie.html#frameImage">TQMovie</a><li>frameNumber: <a href="ntqmovie.html#frameImage">TQMovie</a><li>frameNumber:
<a href="ntqmovie.html#frameNumber">TQMovie</a><li>framePixmap: <a href="ntqmovie.html#frameNumber">TQMovie</a><li>framePixmap:
@ -1037,7 +1037,7 @@ falseText:
<a href="tqvaluelist.html#fromLast">TQValueList</a><li>fromLatin1: <a href="tqvaluelist.html#fromLast">TQValueList</a><li>fromLatin1:
<a href="ntqstring.html#fromLatin1">TQString</a><li>fromLocal8Bit: <a href="ntqstring.html#fromLatin1">TQString</a><li>fromLocal8Bit:
<a href="ntqstring.html#fromLocal8Bit">TQString</a><li>fromMimeSource: <a href="ntqstring.html#fromLocal8Bit">TQString</a><li>fromMimeSource:
<a href="ntqimage.html#fromMimeSource">TQImage</a> <a href="ntqpixmap.html#fromMimeSource">TQPixmap</a><li>fromPage: <a href="tqimage.html#fromMimeSource">TQImage</a> <a href="ntqpixmap.html#fromMimeSource">TQPixmap</a><li>fromPage:
<a href="ntqprinter.html#fromPage">TQPrinter</a><li>fromRawData: <a href="ntqprinter.html#fromPage">TQPrinter</a><li>fromRawData:
<a href="tqxmlinputsource.html#fromRawData">TQXmlInputSource</a><li>fromStrList: <a href="tqxmlinputsource.html#fromRawData">TQXmlInputSource</a><li>fromStrList:
<a href="ntqstringlist.html#fromStrList">TQStringList</a><li>fromString: <a href="ntqstringlist.html#fromStrList">TQStringList</a><li>fromString:
@ -1051,7 +1051,7 @@ falseText:
<a href="qcustommenuitem.html#fullSpan">TQCustomMenuItem</a><li>functions: <a href="qcustommenuitem.html#fullSpan">TQCustomMenuItem</a><li>functions:
<a href="qaxscript.html#functions">TQAxScript</a> <a href="qaxscriptmanager.html#functions">TQAxScriptManager</a><li><a name="g"></a> <a href="qaxscript.html#functions">TQAxScript</a> <a href="qaxscriptmanager.html#functions">TQAxScriptManager</a><li><a name="g"></a>
gamma: gamma:
<a href="qimageio.html#gamma">TQImageIO</a><li>generateDocumentation: <a href="tqimageio.html#gamma">TQImageIO</a><li>generateDocumentation:
<a href="qaxbase.html#generateDocumentation">TQAxBase</a><li>generateFontDisplayLists: <a href="qaxbase.html#generateDocumentation">TQAxBase</a><li>generateFontDisplayLists:
<a href="qglcontext.html#generateFontDisplayLists">TQGLContext</a><li>geometry: <a href="qglcontext.html#generateFontDisplayLists">TQGLContext</a><li>geometry:
<a href="qlayoutitem.html#geometry">TQLayoutItem</a> <a href="tqwidget.html#geometry">TQWidget</a><li>get: <a href="qlayoutitem.html#geometry">TQLayoutItem</a> <a href="tqwidget.html#geometry">TQWidget</a><li>get:
@ -1119,7 +1119,7 @@ hScrollBarMode:
<a href="ntqsplitter.html#handleWidth">TQSplitter</a><li>hasAcceptableInput: <a href="ntqsplitter.html#handleWidth">TQSplitter</a><li>hasAcceptableInput:
<a href="ntqlineedit.html#hasAcceptableInput">TQLineEdit</a><li>hasAlpha: <a href="ntqlineedit.html#hasAcceptableInput">TQLineEdit</a><li>hasAlpha:
<a href="ntqpixmap.html#hasAlpha">TQPixmap</a><li>hasAlphaBuffer: <a href="ntqpixmap.html#hasAlpha">TQPixmap</a><li>hasAlphaBuffer:
<a href="ntqimage.html#hasAlphaBuffer">TQImage</a><li>hasAlphaChannel: <a href="tqimage.html#hasAlphaBuffer">TQImage</a><li>hasAlphaChannel:
<a href="ntqpixmap.html#hasAlphaChannel">TQPixmap</a><li>hasApplyButton: <a href="ntqpixmap.html#hasAlphaChannel">TQPixmap</a><li>hasApplyButton:
<a href="ntqtabdialog.html#hasApplyButton">TQTabDialog</a><li>hasAttribute: <a href="ntqtabdialog.html#hasApplyButton">TQTabDialog</a><li>hasAttribute:
<a href="tqdomelement.html#hasAttribute">TQDomElement</a><li>hasAttributeNS: <a href="tqdomelement.html#hasAttribute">TQDomElement</a><li>hasAttributeNS:
@ -1169,7 +1169,7 @@ hScrollBarMode:
<a href="ntqlistview.html#header">TQListView</a><li>headerSection: <a href="ntqlistview.html#header">TQListView</a><li>headerSection:
<a href="qstyleoption.html#headerSection">TQStyleOption</a><li>headerWidth: <a href="qstyleoption.html#headerSection">TQStyleOption</a><li>headerWidth:
<a href="ntqheader.html#headerWidth">TQHeader</a><li>height: <a href="ntqheader.html#headerWidth">TQHeader</a><li>height:
<a href="tqcanvas.html#height">TQCanvas</a> <a href="tqcanvasellipse.html#height">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#height">TQCanvasRectangle</a> <a href="tqcanvassprite.html#height">TQCanvasSprite</a> <a href="qdirectpainter.html#height">TQDirectPainter</a> <a href="ntqfontmetrics.html#height">TQFontMetrics</a> <a href="qiconviewitem.html#height">TQIconViewItem</a> <a href="ntqimage.html#height">TQImage</a> <a href="qlistboxitem.html#height">TQListBoxItem</a> <a href="qlistboxpixmap.html#height">TQListBoxPixmap</a> <a href="qlistboxtext.html#height">TQListBoxText</a> <a href="qlistviewitem.html#height">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#height">TQPaintDeviceMetrics</a> <a href="ntqpixmap.html#height">TQPixmap</a> <a href="ntqrect.html#height">TQRect</a> <a href="qscreen.html#height">TQScreen</a> <a href="ntqsimplerichtext.html#height">TQSimpleRichText</a> <a href="ntqsize.html#height">TQSize</a> <a href="tqwidget.html#height">TQWidget</a><li>heightForWidth: <a href="tqcanvas.html#height">TQCanvas</a> <a href="tqcanvasellipse.html#height">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#height">TQCanvasRectangle</a> <a href="tqcanvassprite.html#height">TQCanvasSprite</a> <a href="qdirectpainter.html#height">TQDirectPainter</a> <a href="ntqfontmetrics.html#height">TQFontMetrics</a> <a href="qiconviewitem.html#height">TQIconViewItem</a> <a href="tqimage.html#height">TQImage</a> <a href="qlistboxitem.html#height">TQListBoxItem</a> <a href="qlistboxpixmap.html#height">TQListBoxPixmap</a> <a href="qlistboxtext.html#height">TQListBoxText</a> <a href="qlistviewitem.html#height">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#height">TQPaintDeviceMetrics</a> <a href="ntqpixmap.html#height">TQPixmap</a> <a href="ntqrect.html#height">TQRect</a> <a href="qscreen.html#height">TQScreen</a> <a href="ntqsimplerichtext.html#height">TQSimpleRichText</a> <a href="ntqsize.html#height">TQSize</a> <a href="tqwidget.html#height">TQWidget</a><li>heightForWidth:
<a href="qboxlayout.html#heightForWidth">TQBoxLayout</a> <a href="qgridlayout.html#heightForWidth">TQGridLayout</a> <a href="qlayoutitem.html#heightForWidth">TQLayoutItem</a> <a href="ntqmenubar.html#heightForWidth">TQMenuBar</a> <a href="ntqtextedit.html#heightForWidth">TQTextEdit</a> <a href="tqwidget.html#heightForWidth">TQWidget</a><li>heightMM: <a href="qboxlayout.html#heightForWidth">TQBoxLayout</a> <a href="qgridlayout.html#heightForWidth">TQGridLayout</a> <a href="qlayoutitem.html#heightForWidth">TQLayoutItem</a> <a href="ntqmenubar.html#heightForWidth">TQMenuBar</a> <a href="ntqtextedit.html#heightForWidth">TQTextEdit</a> <a href="tqwidget.html#heightForWidth">TQWidget</a><li>heightMM:
<a href="ntqpaintdevicemetrics.html#heightMM">TQPaintDeviceMetrics</a><li>help: <a href="ntqpaintdevicemetrics.html#heightMM">TQPaintDeviceMetrics</a><li>help:
<a href="ntqwizard.html#help">TQWizard</a><li>helpButton: <a href="ntqwizard.html#help">TQWizard</a><li>helpButton:
@ -1221,9 +1221,9 @@ icon:
<a href="tqwidget.html#imComposeEvent">TQWidget</a><li>imEndEvent: <a href="tqwidget.html#imComposeEvent">TQWidget</a><li>imEndEvent:
<a href="tqwidget.html#imEndEvent">TQWidget</a><li>imStartEvent: <a href="tqwidget.html#imEndEvent">TQWidget</a><li>imStartEvent:
<a href="tqwidget.html#imStartEvent">TQWidget</a><li>image: <a href="tqwidget.html#imStartEvent">TQWidget</a><li>image:
<a href="tqcanvaspixmaparray.html#image">TQCanvasPixmapArray</a> <a href="tqcanvassprite.html#image">TQCanvasSprite</a> <a href="ntqclipboard.html#image">TQClipboard</a> <a href="qimagedecoder.html#image">TQImageDecoder</a> <a href="qimageio.html#image">TQImageIO</a><li>imageAdvanced: <a href="tqcanvaspixmaparray.html#image">TQCanvasPixmapArray</a> <a href="tqcanvassprite.html#image">TQCanvasSprite</a> <a href="ntqclipboard.html#image">TQClipboard</a> <a href="tqimagedecoder.html#image">TQImageDecoder</a> <a href="tqimageio.html#image">TQImageIO</a><li>imageAdvanced:
<a href="tqcanvassprite.html#imageAdvanced">TQCanvasSprite</a><li>imageFormat: <a href="tqcanvassprite.html#imageAdvanced">TQCanvasSprite</a><li>imageFormat:
<a href="ntqimage.html#imageFormat">TQImage</a> <a href="qimageio.html#imageFormat">TQImageIO</a> <a href="ntqpixmap.html#imageFormat">TQPixmap</a><li>implementation: <a href="tqimage.html#imageFormat">TQImage</a> <a href="tqimageio.html#imageFormat">TQImageIO</a> <a href="ntqpixmap.html#imageFormat">TQPixmap</a><li>implementation:
<a href="tqdomdocument.html#implementation">TQDomDocument</a><li>importNode: <a href="tqdomdocument.html#implementation">TQDomDocument</a><li>importNode:
<a href="tqdomdocument.html#importNode">TQDomDocument</a><li>inFont: <a href="tqdomdocument.html#importNode">TQDomDocument</a><li>inFont:
<a href="ntqfontmetrics.html#inFont">TQFontMetrics</a><li>inSort: <a href="ntqfontmetrics.html#inFont">TQFontMetrics</a><li>inSort:
@ -1250,8 +1250,8 @@ icon:
<a href="qglwidget.html#initializeOverlayGL">TQGLWidget</a><li>initializeRemote: <a href="qglwidget.html#initializeOverlayGL">TQGLWidget</a><li>initializeRemote:
<a href="qaxbase.html#initializeRemote">TQAxBase</a><li>initialized: <a href="qaxbase.html#initializeRemote">TQAxBase</a><li>initialized:
<a href="qglcontext.html#initialized">TQGLContext</a><li>inputFormatList: <a href="qglcontext.html#initialized">TQGLContext</a><li>inputFormatList:
<a href="ntqimage.html#inputFormatList">TQImage</a><li>inputFormats: <a href="tqimage.html#inputFormatList">TQImage</a><li>inputFormats:
<a href="ntqimage.html#inputFormats">TQImage</a> <a href="qimagedecoder.html#inputFormats">TQImageDecoder</a> <a href="qimageio.html#inputFormats">TQImageIO</a><li>inputMask: <a href="tqimage.html#inputFormats">TQImage</a> <a href="tqimagedecoder.html#inputFormats">TQImageDecoder</a> <a href="tqimageio.html#inputFormats">TQImageIO</a><li>inputMask:
<a href="ntqlineedit.html#inputMask">TQLineEdit</a><li>insert: <a href="ntqlineedit.html#inputMask">TQLineEdit</a><li>insert:
<a href="ntqasciicache.html#insert">TQAsciiCache</a> <a href="ntqasciidict.html#insert">TQAsciiDict</a> <a href="ntqbuttongroup.html#insert">TQButtonGroup</a> <a href="ntqcstring.html#insert">TQCString</a> <a href="ntqcache.html#insert">TQCache</a> <a href="tqdatabrowser.html#insert">TQDataBrowser</a> <a href="ntqdict.html#insert">TQDict</a> <a href="ntqintcache.html#insert">TQIntCache</a> <a href="ntqintdict.html#insert">TQIntDict</a> <a href="ntqlineedit.html#insert">TQLineEdit</a> <a href="tqmap.html#insert">TQMap</a> <a href="ntqpixmapcache.html#insert">TQPixmapCache</a> <a href="tqptrdict.html#insert">TQPtrDict</a> <a href="tqptrlist.html#insert">TQPtrList</a> <a href="tqptrvector.html#insert">TQPtrVector</a> <a href="tqsqlcursor.html#insert">TQSqlCursor</a> <a href="tqsqlform.html#insert">TQSqlForm</a> <a href="tqsqlpropertymap.html#insert">TQSqlPropertyMap</a> <a href="tqsqlrecord.html#insert">TQSqlRecord</a> <a href="ntqstring.html#insert">TQString</a> <a href="ntqtextedit.html#insert">TQTextEdit</a> <a href="ntqtranslator.html#insert">TQTranslator</a> <a href="tqvaluelist.html#insert">TQValueList</a> <a href="tqvaluevector.html#insert">TQValueVector</a><li>insertAfter: <a href="ntqasciicache.html#insert">TQAsciiCache</a> <a href="ntqasciidict.html#insert">TQAsciiDict</a> <a href="ntqbuttongroup.html#insert">TQButtonGroup</a> <a href="ntqcstring.html#insert">TQCString</a> <a href="ntqcache.html#insert">TQCache</a> <a href="tqdatabrowser.html#insert">TQDataBrowser</a> <a href="ntqdict.html#insert">TQDict</a> <a href="ntqintcache.html#insert">TQIntCache</a> <a href="ntqintdict.html#insert">TQIntDict</a> <a href="ntqlineedit.html#insert">TQLineEdit</a> <a href="tqmap.html#insert">TQMap</a> <a href="ntqpixmapcache.html#insert">TQPixmapCache</a> <a href="tqptrdict.html#insert">TQPtrDict</a> <a href="tqptrlist.html#insert">TQPtrList</a> <a href="tqptrvector.html#insert">TQPtrVector</a> <a href="tqsqlcursor.html#insert">TQSqlCursor</a> <a href="tqsqlform.html#insert">TQSqlForm</a> <a href="tqsqlpropertymap.html#insert">TQSqlPropertyMap</a> <a href="tqsqlrecord.html#insert">TQSqlRecord</a> <a href="ntqstring.html#insert">TQString</a> <a href="ntqtextedit.html#insert">TQTextEdit</a> <a href="ntqtranslator.html#insert">TQTranslator</a> <a href="tqvaluelist.html#insert">TQValueList</a> <a href="tqvaluevector.html#insert">TQValueVector</a><li>insertAfter:
<a href="tqdomnode.html#insertAfter">TQDomNode</a><li>insertAndMark: <a href="tqdomnode.html#insertAfter">TQDomNode</a><li>insertAndMark:
@ -1288,7 +1288,7 @@ icon:
<a href="tqsqlpropertymap.html#installDefaultMap">TQSqlPropertyMap</a><li>installEditorFactory: <a href="tqsqlpropertymap.html#installDefaultMap">TQSqlPropertyMap</a><li>installEditorFactory:
<a href="tqdatatable.html#installEditorFactory">TQDataTable</a><li>installEventFilter: <a href="tqdatatable.html#installEditorFactory">TQDataTable</a><li>installEventFilter:
<a href="tqobject.html#installEventFilter">TQObject</a><li>installIOHandler: <a href="tqobject.html#installEventFilter">TQObject</a><li>installIOHandler:
<a href="ntqimageformatplugin.html#installIOHandler">TQImageFormatPlugin</a><li>installIconFactory: <a href="tqimageformatplugin.html#installIOHandler">TQImageFormatPlugin</a><li>installIconFactory:
<a href="ntqiconset.html#installIconFactory">TQIconSet</a><li>installPropertyMap: <a href="ntqiconset.html#installIconFactory">TQIconSet</a><li>installPropertyMap:
<a href="tqdatatable.html#installPropertyMap">TQDataTable</a> <a href="tqsqlform.html#installPropertyMap">TQSqlForm</a><li>installTranslator: <a href="tqdatatable.html#installPropertyMap">TQDataTable</a> <a href="tqsqlform.html#installPropertyMap">TQSqlForm</a><li>installTranslator:
<a href="ntqapplication.html#installTranslator">TQApplication</a><li>instance: <a href="ntqapplication.html#installTranslator">TQApplication</a><li>instance:
@ -1304,9 +1304,9 @@ icon:
<a href="qlistviewitem.html#invalidateHeight">TQListViewItem</a><li>inverseWorldMatrix: <a href="qlistviewitem.html#invalidateHeight">TQListViewItem</a><li>inverseWorldMatrix:
<a href="tqcanvasview.html#inverseWorldMatrix">TQCanvasView</a><li>invert: <a href="tqcanvasview.html#inverseWorldMatrix">TQCanvasView</a><li>invert:
<a href="ntqwmatrix.html#invert">TQWMatrix</a><li>invertPixels: <a href="ntqwmatrix.html#invert">TQWMatrix</a><li>invertPixels:
<a href="ntqimage.html#invertPixels">TQImage</a><li>invertSelection: <a href="tqimage.html#invertPixels">TQImage</a><li>invertSelection:
<a href="ntqiconview.html#invertSelection">TQIconView</a> <a href="ntqlistbox.html#invertSelection">TQListBox</a> <a href="ntqlistview.html#invertSelection">TQListView</a><li>ioDevice: <a href="ntqiconview.html#invertSelection">TQIconView</a> <a href="ntqlistbox.html#invertSelection">TQListBox</a> <a href="ntqlistview.html#invertSelection">TQListView</a><li>ioDevice:
<a href="qimageio.html#ioDevice">TQImageIO</a><li>isA: <a href="tqimageio.html#ioDevice">TQImageIO</a><li>isA:
<a href="tqobject.html#isA">TQObject</a><li>isAccepted: <a href="tqobject.html#isA">TQObject</a><li>isAccepted:
<a href="qcloseevent.html#isAccepted">TQCloseEvent</a> <a href="qcontextmenuevent.html#isAccepted">TQContextMenuEvent</a> <a href="qdropevent.html#isAccepted">TQDropEvent</a> <a href="qimevent.html#isAccepted">TQIMEvent</a> <a href="qicondragevent.html#isAccepted">TQIconDragEvent</a> <a href="qkeyevent.html#isAccepted">TQKeyEvent</a> <a href="qmouseevent.html#isAccepted">TQMouseEvent</a> <a href="qtabletevent.html#isAccepted">TQTabletEvent</a> <a href="qwheelevent.html#isAccepted">TQWheelEvent</a><li>isActionAccepted: <a href="qcloseevent.html#isAccepted">TQCloseEvent</a> <a href="qcontextmenuevent.html#isAccepted">TQContextMenuEvent</a> <a href="qdropevent.html#isAccepted">TQDropEvent</a> <a href="qimevent.html#isAccepted">TQIMEvent</a> <a href="qicondragevent.html#isAccepted">TQIconDragEvent</a> <a href="qkeyevent.html#isAccepted">TQKeyEvent</a> <a href="qmouseevent.html#isAccepted">TQMouseEvent</a> <a href="qtabletevent.html#isAccepted">TQTabletEvent</a> <a href="qwheelevent.html#isAccepted">TQWheelEvent</a><li>isActionAccepted:
<a href="qdropevent.html#isActionAccepted">TQDropEvent</a><li>isActive: <a href="qdropevent.html#isActionAccepted">TQDropEvent</a><li>isActive:
@ -1380,7 +1380,7 @@ icon:
<a href="qwswindow.html#isFullyObscured">TQWSWindow</a><li>isGenerated: <a href="qwswindow.html#isFullyObscured">TQWSWindow</a><li>isGenerated:
<a href="ntqiconset.html#isGenerated">TQIconSet</a> <a href="tqsqlfieldinfo.html#isGenerated">TQSqlFieldInfo</a> <a href="tqsqlrecord.html#isGenerated">TQSqlRecord</a><li>isGloballyEnabled: <a href="ntqiconset.html#isGenerated">TQIconSet</a> <a href="tqsqlfieldinfo.html#isGenerated">TQSqlFieldInfo</a> <a href="tqsqlrecord.html#isGenerated">TQSqlRecord</a><li>isGloballyEnabled:
<a href="ntqtooltip.html#isGloballyEnabled">TQToolTip</a><li>isGrayscale: <a href="ntqtooltip.html#isGloballyEnabled">TQToolTip</a><li>isGrayscale:
<a href="ntqimage.html#isGrayscale">TQImage</a><li>isHidden: <a href="tqimage.html#isGrayscale">TQImage</a><li>isHidden:
<a href="ntqfileinfo.html#isHidden">TQFileInfo</a> <a href="tqwidget.html#isHidden">TQWidget</a><li>isHorizontalSliderPressed: <a href="ntqfileinfo.html#isHidden">TQFileInfo</a> <a href="tqwidget.html#isHidden">TQWidget</a><li>isHorizontalSliderPressed:
<a href="ntqscrollview.html#isHorizontalSliderPressed">TQScrollView</a><li>isHorizontallyStretchable: <a href="ntqscrollview.html#isHorizontalSliderPressed">TQScrollView</a><li>isHorizontallyStretchable:
<a href="ntqdockwindow.html#isHorizontallyStretchable">TQDockWindow</a><li>isIPv4Address: <a href="ntqdockwindow.html#isHorizontallyStretchable">TQDockWindow</a><li>isIPv4Address:
@ -1407,7 +1407,7 @@ icon:
<a href="ntqlineedit.html#isModified">TQLineEdit</a> <a href="ntqtextedit.html#isModified">TQTextEdit</a><li>isMovingEnabled: <a href="ntqlineedit.html#isModified">TQLineEdit</a> <a href="ntqtextedit.html#isModified">TQTextEdit</a><li>isMovingEnabled:
<a href="ntqdockwindow.html#isMovingEnabled">TQDockWindow</a> <a href="ntqheader.html#isMovingEnabled">TQHeader</a><li>isNotation: <a href="ntqdockwindow.html#isMovingEnabled">TQDockWindow</a> <a href="ntqheader.html#isMovingEnabled">TQHeader</a><li>isNotation:
<a href="tqdomnode.html#isNotation">TQDomNode</a> <a href="tqdomnotation.html#isNotation">TQDomNotation</a><li>isNull: <a href="tqdomnode.html#isNotation">TQDomNode</a> <a href="tqdomnotation.html#isNotation">TQDomNotation</a><li>isNull:
<a href="qaxbase.html#isNull">TQAxBase</a> <a href="ntqcstring.html#isNull">TQCString</a> <a href="qchar.html#isNull">TQChar</a> <a href="qdate.html#isNull">TQDate</a> <a href="ntqdatetime.html#isNull">TQDateTime</a> <a href="tqdomimplementation.html#isNull">TQDomImplementation</a> <a href="tqdomnode.html#isNull">TQDomNode</a> <a href="ntqguardedptr.html#isNull">TQGuardedPtr</a> <a href="ntqhostaddress.html#isNull">TQHostAddress</a> <a href="ntqiconset.html#isNull">TQIconSet</a> <a href="ntqimage.html#isNull">TQImage</a> <a href="ntqmemarray.html#isNull">TQMemArray</a> <a href="ntqmovie.html#isNull">TQMovie</a> <a href="ntqpicture.html#isNull">TQPicture</a> <a href="ntqpixmap.html#isNull">TQPixmap</a> <a href="ntqpoint.html#isNull">TQPoint</a> <a href="tqptrvector.html#isNull">TQPtrVector</a> <a href="ntqrect.html#isNull">TQRect</a> <a href="ntqregion.html#isNull">TQRegion</a> <a href="ntqsize.html#isNull">TQSize</a> <a href="tqsqlcursor.html#isNull">TQSqlCursor</a> <a href="tqsqlfield.html#isNull">TQSqlField</a> <a href="tqsqlquery.html#isNull">TQSqlQuery</a> <a href="tqsqlrecord.html#isNull">TQSqlRecord</a> <a href="tqsqlresult.html#isNull">TQSqlResult</a> <a href="ntqstring.html#isNull">TQString</a> <a href="qtime.html#isNull">TQTime</a> <a href="ntquuid.html#isNull">TQUuid</a> <a href="ntqvariant.html#isNull">TQVariant</a><li>isNumber: <a href="qaxbase.html#isNull">TQAxBase</a> <a href="ntqcstring.html#isNull">TQCString</a> <a href="qchar.html#isNull">TQChar</a> <a href="qdate.html#isNull">TQDate</a> <a href="ntqdatetime.html#isNull">TQDateTime</a> <a href="tqdomimplementation.html#isNull">TQDomImplementation</a> <a href="tqdomnode.html#isNull">TQDomNode</a> <a href="ntqguardedptr.html#isNull">TQGuardedPtr</a> <a href="ntqhostaddress.html#isNull">TQHostAddress</a> <a href="ntqiconset.html#isNull">TQIconSet</a> <a href="tqimage.html#isNull">TQImage</a> <a href="ntqmemarray.html#isNull">TQMemArray</a> <a href="ntqmovie.html#isNull">TQMovie</a> <a href="ntqpicture.html#isNull">TQPicture</a> <a href="ntqpixmap.html#isNull">TQPixmap</a> <a href="ntqpoint.html#isNull">TQPoint</a> <a href="tqptrvector.html#isNull">TQPtrVector</a> <a href="ntqrect.html#isNull">TQRect</a> <a href="ntqregion.html#isNull">TQRegion</a> <a href="ntqsize.html#isNull">TQSize</a> <a href="tqsqlcursor.html#isNull">TQSqlCursor</a> <a href="tqsqlfield.html#isNull">TQSqlField</a> <a href="tqsqlquery.html#isNull">TQSqlQuery</a> <a href="tqsqlrecord.html#isNull">TQSqlRecord</a> <a href="tqsqlresult.html#isNull">TQSqlResult</a> <a href="ntqstring.html#isNull">TQString</a> <a href="qtime.html#isNull">TQTime</a> <a href="ntquuid.html#isNull">TQUuid</a> <a href="ntqvariant.html#isNull">TQVariant</a><li>isNumber:
<a href="qchar.html#isNumber">TQChar</a><li>isOn: <a href="qchar.html#isNumber">TQChar</a><li>isOn:
<a href="ntqaction.html#isOn">TQAction</a> <a href="ntqbutton.html#isOn">TQButton</a> <a href="ntqbutton.html#isOn">TQCheckBox</a> <a href="qchecklistitem.html#isOn">TQCheckListItem</a> <a href="ntqbutton.html#isOn">TQPushButton</a> <a href="ntqbutton.html#isOn">TQRadioButton</a><li>isOpen: <a href="ntqaction.html#isOn">TQAction</a> <a href="ntqbutton.html#isOn">TQButton</a> <a href="ntqbutton.html#isOn">TQCheckBox</a> <a href="qchecklistitem.html#isOn">TQCheckListItem</a> <a href="ntqbutton.html#isOn">TQPushButton</a> <a href="ntqbutton.html#isOn">TQRadioButton</a><li>isOpen:
<a href="ntqassistantclient.html#isOpen">TQAssistantClient</a> <a href="ntqiodevice.html#isOpen">TQIODevice</a> <a href="ntqlistview.html#isOpen">TQListView</a> <a href="qlistviewitem.html#isOpen">TQListViewItem</a> <a href="tqsqldatabase.html#isOpen">TQSqlDatabase</a> <a href="tqsqldriver.html#isOpen">TQSqlDriver</a><li>isOpenError: <a href="ntqassistantclient.html#isOpen">TQAssistantClient</a> <a href="ntqiodevice.html#isOpen">TQIODevice</a> <a href="ntqlistview.html#isOpen">TQListView</a> <a href="qlistviewitem.html#isOpen">TQListViewItem</a> <a href="tqsqldatabase.html#isOpen">TQSqlDatabase</a> <a href="tqsqldriver.html#isOpen">TQSqlDriver</a><li>isOpenError:
@ -1512,7 +1512,7 @@ join:
<a href="ntqstringlist.html#join">TQStringList</a><li>joinStyle: <a href="ntqstringlist.html#join">TQStringList</a><li>joinStyle:
<a href="ntqpen.html#joinStyle">TQPen</a><li>joining: <a href="ntqpen.html#joinStyle">TQPen</a><li>joining:
<a href="qchar.html#joining">TQChar</a><li>jumpTable: <a href="qchar.html#joining">TQChar</a><li>jumpTable:
<a href="ntqimage.html#jumpTable">TQImage</a><li><a name="k"></a> <a href="tqimage.html#jumpTable">TQImage</a><li><a name="k"></a>
key: key:
<a href="ntqaccel.html#key">TQAccel</a> <a href="ntqfont.html#key">TQFont</a> <a href="qiconviewitem.html#key">TQIconViewItem</a> <a href="qkeyevent.html#key">TQKeyEvent</a> <a href="qlistviewitem.html#key">TQListViewItem</a> <a href="tqmapconstiterator.html#key">TQMapConstIterator</a> <a href="tqmapiterator.html#key">TQMapIterator</a> <a href="qtableitem.html#key">TQTableItem</a><li>keyMap: <a href="ntqaccel.html#key">TQAccel</a> <a href="ntqfont.html#key">TQFont</a> <a href="qiconviewitem.html#key">TQIconViewItem</a> <a href="qkeyevent.html#key">TQKeyEvent</a> <a href="qlistviewitem.html#key">TQListViewItem</a> <a href="tqmapconstiterator.html#key">TQMapConstIterator</a> <a href="tqmapiterator.html#key">TQMapIterator</a> <a href="qtableitem.html#key">TQTableItem</a><li>keyMap:
<a href="qwsserver.html#keyMap">TQWSServer</a><li>keyPressEvent: <a href="qwsserver.html#keyMap">TQWSServer</a><li>keyPressEvent:
@ -1522,7 +1522,7 @@ key:
<a href="ntqtabbar.html#keyboardFocusTab">TQTabBar</a><li>keyboardGrabber: <a href="ntqtabbar.html#keyboardFocusTab">TQTabBar</a><li>keyboardGrabber:
<a href="tqwidget.html#keyboardGrabber">TQWidget</a><li>keyboardHandler: <a href="tqwidget.html#keyboardGrabber">TQWidget</a><li>keyboardHandler:
<a href="qwsserver.html#keyboardHandler">TQWSServer</a><li>keys: <a href="qwsserver.html#keyboardHandler">TQWSServer</a><li>keys:
<a href="qgfxdriverfactory.html#keys">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#keys">TQGfxDriverPlugin</a> <a href="qhttpheader.html#keys">TQHttpHeader</a> <a href="ntqimageformatplugin.html#keys">TQImageFormatPlugin</a> <a href="qkbddriverfactory.html#keys">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#keys">TQKbdDriverPlugin</a> <a href="tqmap.html#keys">TQMap</a> <a href="qmousedriverfactory.html#keys">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#keys">TQMouseDriverPlugin</a> <a href="tqsqldriverplugin.html#keys">TQSqlDriverPlugin</a> <a href="ntqstylefactory.html#keys">TQStyleFactory</a> <a href="ntqstyleplugin.html#keys">TQStylePlugin</a> <a href="tqwidgetplugin.html#keys">TQWidgetPlugin</a><li>keysToValue: <a href="qgfxdriverfactory.html#keys">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#keys">TQGfxDriverPlugin</a> <a href="qhttpheader.html#keys">TQHttpHeader</a> <a href="tqimageformatplugin.html#keys">TQImageFormatPlugin</a> <a href="qkbddriverfactory.html#keys">TQKbdDriverFactory</a> <a href="qkbddriverplugin.html#keys">TQKbdDriverPlugin</a> <a href="tqmap.html#keys">TQMap</a> <a href="qmousedriverfactory.html#keys">TQMouseDriverFactory</a> <a href="qmousedriverplugin.html#keys">TQMouseDriverPlugin</a> <a href="tqsqldriverplugin.html#keys">TQSqlDriverPlugin</a> <a href="ntqstylefactory.html#keys">TQStyleFactory</a> <a href="ntqstyleplugin.html#keys">TQStylePlugin</a> <a href="tqwidgetplugin.html#keys">TQWidgetPlugin</a><li>keysToValue:
<a href="qmetaproperty.html#keysToValue">TQMetaProperty</a><li>kill: <a href="qmetaproperty.html#keysToValue">TQMetaProperty</a><li>kill:
<a href="ntqprocess.html#kill">TQProcess</a><li>killLine: <a href="ntqprocess.html#kill">TQProcess</a><li>killLine:
<a href="ntqmultilineedit.html#killLine">TQMultiLineEdit</a><li>killTimer: <a href="ntqmultilineedit.html#killLine">TQMultiLineEdit</a><li>killTimer:
@ -1597,10 +1597,10 @@ label:
<a href="qlistviewitem.html#listView">TQListViewItem</a><li>listViewItem: <a href="qlistviewitem.html#listView">TQListViewItem</a><li>listViewItem:
<a href="qstyleoption.html#listViewItem">TQStyleOption</a><li>listen: <a href="qstyleoption.html#listViewItem">TQStyleOption</a><li>listen:
<a href="ntqsocketdevice.html#listen">TQSocketDevice</a><li>load: <a href="ntqsocketdevice.html#listen">TQSocketDevice</a><li>load:
<a href="qaxscript.html#load">TQAxScript</a> <a href="qaxscriptmanager.html#load">TQAxScriptManager</a> <a href="ntqimage.html#load">TQImage</a> <a href="ntqlibrary.html#load">TQLibrary</a> <a href="ntqpicture.html#load">TQPicture</a> <a href="ntqpixmap.html#load">TQPixmap</a> <a href="ntqtranslator.html#load">TQTranslator</a><li>loadCharmap: <a href="qaxscript.html#load">TQAxScript</a> <a href="qaxscriptmanager.html#load">TQAxScriptManager</a> <a href="tqimage.html#load">TQImage</a> <a href="ntqlibrary.html#load">TQLibrary</a> <a href="ntqpicture.html#load">TQPicture</a> <a href="ntqpixmap.html#load">TQPixmap</a> <a href="ntqtranslator.html#load">TQTranslator</a><li>loadCharmap:
<a href="ntqtextcodec.html#loadCharmap">TQTextCodec</a><li>loadCharmapFile: <a href="ntqtextcodec.html#loadCharmap">TQTextCodec</a><li>loadCharmapFile:
<a href="ntqtextcodec.html#loadCharmapFile">TQTextCodec</a><li>loadFromData: <a href="ntqtextcodec.html#loadCharmapFile">TQTextCodec</a><li>loadFromData:
<a href="ntqimage.html#loadFromData">TQImage</a> <a href="ntqpixmap.html#loadFromData">TQPixmap</a><li>loadImages: <a href="tqimage.html#loadFromData">TQImage</a> <a href="ntqpixmap.html#loadFromData">TQPixmap</a><li>loadImages:
<a href="tqwidgetfactory.html#loadImages">TQWidgetFactory</a><li>local8Bit: <a href="tqwidgetfactory.html#loadImages">TQWidgetFactory</a><li>local8Bit:
<a href="ntqstring.html#local8Bit">TQString</a><li>localData: <a href="ntqstring.html#local8Bit">TQString</a><li>localData:
<a href="ntqthreadstorage.html#localData">TQThreadStorage</a><li>localFileToUri: <a href="ntqthreadstorage.html#localData">TQThreadStorage</a><li>localFileToUri:
@ -1727,7 +1727,7 @@ m11:
<a href="tqwidget.html#minimumWidth">TQWidget</a><li>minorVersion: <a href="tqwidget.html#minimumWidth">TQWidget</a><li>minorVersion:
<a href="qhttpheader.html#minorVersion">TQHttpHeader</a> <a href="qhttprequestheader.html#minorVersion">TQHttpRequestHeader</a> <a href="qhttpresponseheader.html#minorVersion">TQHttpResponseHeader</a><li>minute: <a href="qhttpheader.html#minorVersion">TQHttpHeader</a> <a href="qhttprequestheader.html#minorVersion">TQHttpRequestHeader</a> <a href="qhttpresponseheader.html#minorVersion">TQHttpResponseHeader</a><li>minute:
<a href="qtime.html#minute">TQTime</a><li>mirror: <a href="qtime.html#minute">TQTime</a><li>mirror:
<a href="ntqimage.html#mirror">TQImage</a><li>mirrored: <a href="tqimage.html#mirror">TQImage</a><li>mirrored:
<a href="qchar.html#mirrored">TQChar</a><li>mirroredChar: <a href="qchar.html#mirrored">TQChar</a><li>mirroredChar:
<a href="qchar.html#mirroredChar">TQChar</a><li>mixedColor: <a href="qchar.html#mirroredChar">TQChar</a><li>mixedColor:
<a href="ntqplatinumstyle.html#mixedColor">TQPlatinumStyle</a><li>mkdir: <a href="ntqplatinumstyle.html#mixedColor">TQPlatinumStyle</a><li>mkdir:
@ -1817,10 +1817,10 @@ name:
<a href="ntqmemarray.html#nrefs">TQMemArray</a><li>nullText: <a href="ntqmemarray.html#nrefs">TQMemArray</a><li>nullText:
<a href="tqdatatable.html#nullText">TQDataTable</a> <a href="tqsqldriver.html#nullText">TQSqlDriver</a><li>numBitPlanes: <a href="tqdatatable.html#nullText">TQDataTable</a> <a href="tqsqldriver.html#nullText">TQSqlDriver</a><li>numBitPlanes:
<a href="ntqcolor.html#numBitPlanes">TQColor</a><li>numBytes: <a href="ntqcolor.html#numBitPlanes">TQColor</a><li>numBytes:
<a href="ntqimage.html#numBytes">TQImage</a><li>numCaptures: <a href="tqimage.html#numBytes">TQImage</a><li>numCaptures:
<a href="ntqregexp.html#numCaptures">TQRegExp</a><li>numClassInfo: <a href="ntqregexp.html#numCaptures">TQRegExp</a><li>numClassInfo:
<a href="ntqmetaobject.html#numClassInfo">TQMetaObject</a><li>numColors: <a href="ntqmetaobject.html#numClassInfo">TQMetaObject</a><li>numColors:
<a href="ntqimage.html#numColors">TQImage</a> <a href="ntqpaintdevicemetrics.html#numColors">TQPaintDeviceMetrics</a><li>numCols: <a href="tqimage.html#numColors">TQImage</a> <a href="ntqpaintdevicemetrics.html#numColors">TQPaintDeviceMetrics</a><li>numCols:
<a href="tqdatatable.html#numCols">TQDataTable</a> <a href="qgridlayout.html#numCols">TQGridLayout</a> <a href="ntqgridview.html#numCols">TQGridView</a> <a href="qscreen.html#numCols">TQScreen</a> <a href="ntqtable.html#numCols">TQTable</a> <a href="qtableselection.html#numCols">TQTableSelection</a><li>numColumns: <a href="tqdatatable.html#numCols">TQDataTable</a> <a href="qgridlayout.html#numCols">TQGridLayout</a> <a href="ntqgridview.html#numCols">TQGridView</a> <a href="qscreen.html#numCols">TQScreen</a> <a href="ntqtable.html#numCols">TQTable</a> <a href="qtableselection.html#numCols">TQTableSelection</a><li>numColumns:
<a href="ntqlistbox.html#numColumns">TQListBox</a><li>numCopies: <a href="ntqlistbox.html#numColumns">TQListBox</a><li>numCopies:
<a href="ntqprinter.html#numCopies">TQPrinter</a><li>numDigits: <a href="ntqprinter.html#numCopies">TQPrinter</a><li>numDigits:
@ -1839,7 +1839,7 @@ name:
object: object:
<a href="qaccessibleobject.html#object">TQAccessibleObject</a> <a href="qaxaggregated.html#object">TQAxAggregated</a><li>objectTrees: <a href="qaccessibleobject.html#object">TQAccessibleObject</a> <a href="qaxaggregated.html#object">TQAxAggregated</a><li>objectTrees:
<a href="tqobject.html#objectTrees">TQObject</a><li>offset: <a href="tqobject.html#objectTrees">TQObject</a><li>offset:
<a href="qdirectpainter.html#offset">TQDirectPainter</a> <a href="ntqdockwindow.html#offset">TQDockWindow</a> <a href="ntqheader.html#offset">TQHeader</a> <a href="ntqimage.html#offset">TQImage</a><li>offsetX: <a href="qdirectpainter.html#offset">TQDirectPainter</a> <a href="ntqdockwindow.html#offset">TQDockWindow</a> <a href="ntqheader.html#offset">TQHeader</a> <a href="tqimage.html#offset">TQImage</a><li>offsetX:
<a href="tqcanvaspixmap.html#offsetX">TQCanvasPixmap</a><li>offsetY: <a href="tqcanvaspixmap.html#offsetX">TQCanvasPixmap</a><li>offsetY:
<a href="tqcanvaspixmap.html#offsetY">TQCanvasPixmap</a><li>ok: <a href="tqcanvaspixmap.html#offsetY">TQCanvasPixmap</a><li>ok:
<a href="ntqserversocket.html#ok">TQServerSocket</a><li>okRename: <a href="ntqserversocket.html#ok">TQServerSocket</a><li>okRename:
@ -1877,7 +1877,7 @@ object:
<a href="ntqstring.html#operator-std::string">TQString</a><li>operator type *: <a href="ntqstring.html#operator-std::string">TQString</a><li>operator type *:
<a href="qasciicacheiterator.html#operator-type-*">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator-type-*">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator-type-*">TQCacheIterator</a> <a href="qdictiterator.html#operator-type-*">TQDictIterator</a> <a href="qintcacheiterator.html#operator-type-*">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator-type-*">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator-type-*">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator-type-*">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-type-*">TQPtrQueue</a> <a href="tqptrstack.html#operator-type-*">TQPtrStack</a><li>operator!: <a href="qasciicacheiterator.html#operator-type-*">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator-type-*">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator-type-*">TQCacheIterator</a> <a href="qdictiterator.html#operator-type-*">TQDictIterator</a> <a href="qintcacheiterator.html#operator-type-*">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator-type-*">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator-type-*">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator-type-*">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-type-*">TQPtrQueue</a> <a href="tqptrstack.html#operator-type-*">TQPtrStack</a><li>operator!:
<a href="ntqstring.html#operator!">TQString</a><li>operator!=: <a href="ntqstring.html#operator!">TQString</a><li>operator!=:
<a href="ntqbrush.html#operator!-eq">TQBrush</a> <a href="ntqcstring.html#operator!-eq">TQCString</a> <a href="qchar.html#operator!-eq">TQChar</a> <a href="ntqcolor.html#operator!-eq">TQColor</a> <a href="qcolorgroup.html#operator!-eq">TQColorGroup</a> <a href="qdate.html#operator!-eq">TQDate</a> <a href="ntqdatetime.html#operator!-eq">TQDateTime</a> <a href="ntqdir.html#operator!-eq">TQDir</a> <a href="tqdomimplementation.html#operator!-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator!-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator!-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator!-eq">TQDomNodeList</a> <a href="ntqfont.html#operator!-eq">TQFont</a> <a href="ntqguardedptr.html#operator!-eq">TQGuardedPtr</a> <a href="ntqimage.html#operator!-eq">TQImage</a> <a href="ntqkeysequence.html#operator!-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator!-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator!-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator!-eq">TQMemArray</a> <a href="ntqpalette.html#operator!-eq">TQPalette</a> <a href="ntqpen.html#operator!-eq">TQPen</a> <a href="ntqpoint.html#operator!-eq">TQPoint</a> <a href="tqptrlist.html#operator!-eq">TQPtrList</a> <a href="ntqrect.html#operator!-eq">TQRect</a> <a href="ntqregexp.html#operator!-eq">TQRegExp</a> <a href="ntqregion.html#operator!-eq">TQRegion</a> <a href="ntqsize.html#operator!-eq">TQSize</a> <a href="ntqsizepolicy.html#operator!-eq">TQSizePolicy</a> <a href="ntqstring.html#operator!-eq">TQString</a> <a href="qtableselection.html#operator!-eq">TQTableSelection</a> <a href="qtime.html#operator!-eq">TQTime</a> <a href="qtranslatormessage.html#operator!-eq">TQTranslatorMessage</a> <a href="ntquuid.html#operator!-eq">TQUuid</a> <a href="tqvaluelist.html#operator!-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator!-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator!-eq">TQValueListIterator</a> <a href="ntqvariant.html#operator!-eq">TQVariant</a> <a href="ntqwmatrix.html#operator!-eq">TQWMatrix</a><li>operator&amp;: <a href="ntqbrush.html#operator!-eq">TQBrush</a> <a href="ntqcstring.html#operator!-eq">TQCString</a> <a href="qchar.html#operator!-eq">TQChar</a> <a href="ntqcolor.html#operator!-eq">TQColor</a> <a href="qcolorgroup.html#operator!-eq">TQColorGroup</a> <a href="qdate.html#operator!-eq">TQDate</a> <a href="ntqdatetime.html#operator!-eq">TQDateTime</a> <a href="ntqdir.html#operator!-eq">TQDir</a> <a href="tqdomimplementation.html#operator!-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator!-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator!-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator!-eq">TQDomNodeList</a> <a href="ntqfont.html#operator!-eq">TQFont</a> <a href="ntqguardedptr.html#operator!-eq">TQGuardedPtr</a> <a href="tqimage.html#operator!-eq">TQImage</a> <a href="ntqkeysequence.html#operator!-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator!-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator!-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator!-eq">TQMemArray</a> <a href="ntqpalette.html#operator!-eq">TQPalette</a> <a href="ntqpen.html#operator!-eq">TQPen</a> <a href="ntqpoint.html#operator!-eq">TQPoint</a> <a href="tqptrlist.html#operator!-eq">TQPtrList</a> <a href="ntqrect.html#operator!-eq">TQRect</a> <a href="ntqregexp.html#operator!-eq">TQRegExp</a> <a href="ntqregion.html#operator!-eq">TQRegion</a> <a href="ntqsize.html#operator!-eq">TQSize</a> <a href="ntqsizepolicy.html#operator!-eq">TQSizePolicy</a> <a href="ntqstring.html#operator!-eq">TQString</a> <a href="qtableselection.html#operator!-eq">TQTableSelection</a> <a href="qtime.html#operator!-eq">TQTime</a> <a href="qtranslatormessage.html#operator!-eq">TQTranslatorMessage</a> <a href="ntquuid.html#operator!-eq">TQUuid</a> <a href="tqvaluelist.html#operator!-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator!-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator!-eq">TQValueListIterator</a> <a href="ntqvariant.html#operator!-eq">TQVariant</a> <a href="ntqwmatrix.html#operator!-eq">TQWMatrix</a><li>operator&amp;:
<a href="ntqbitarray.html#operator-and">TQBitArray</a> <a href="ntqrect.html#operator-and">TQRect</a> <a href="ntqregion.html#operator-and">TQRegion</a><li>operator&amp;=: <a href="ntqbitarray.html#operator-and">TQBitArray</a> <a href="ntqrect.html#operator-and">TQRect</a> <a href="ntqregion.html#operator-and">TQRegion</a><li>operator&amp;=:
<a href="ntqbitarray.html#operator-and-eq">TQBitArray</a> <a href="ntqrect.html#operator-and-eq">TQRect</a> <a href="ntqregion.html#operator-and-eq">TQRegion</a><li>operator(): <a href="ntqbitarray.html#operator-and-eq">TQBitArray</a> <a href="ntqrect.html#operator-and-eq">TQRect</a> <a href="ntqregion.html#operator-and-eq">TQRegion</a><li>operator():
<a href="qasciicacheiterator.html#operator()">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator()">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator()">TQCacheIterator</a> <a href="qdictiterator.html#operator()">TQDictIterator</a> <a href="qintcacheiterator.html#operator()">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator()">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator()">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator()">TQPtrListIterator</a><li>operator*: <a href="qasciicacheiterator.html#operator()">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator()">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator()">TQCacheIterator</a> <a href="qdictiterator.html#operator()">TQDictIterator</a> <a href="qintcacheiterator.html#operator()">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator()">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator()">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator()">TQPtrListIterator</a><li>operator*:
@ -1893,13 +1893,13 @@ object:
<a href="ntqpoint.html#operator/">TQPoint</a> <a href="ntqsize.html#operator/">TQSize</a><li>operator/=: <a href="ntqpoint.html#operator/">TQPoint</a> <a href="ntqsize.html#operator/">TQSize</a><li>operator/=:
<a href="ntqpoint.html#operator/-eq">TQPoint</a> <a href="ntqsize.html#operator/-eq">TQSize</a><li>operator&lt;: <a href="ntqpoint.html#operator/-eq">TQPoint</a> <a href="ntqsize.html#operator/-eq">TQSize</a><li>operator&lt;:
<a href="ntqcstring.html#operator-lt">TQCString</a> <a href="qchar.html#operator-lt">TQChar</a> <a href="qdate.html#operator-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt">TQDateTime</a> <a href="ntqstring.html#operator-lt">TQString</a> <a href="qtime.html#operator-lt">TQTime</a> <a href="qtranslatormessage.html#operator-lt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-lt">TQUuid</a><li>operator&lt;&lt;: <a href="ntqcstring.html#operator-lt">TQCString</a> <a href="qchar.html#operator-lt">TQChar</a> <a href="qdate.html#operator-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt">TQDateTime</a> <a href="ntqstring.html#operator-lt">TQString</a> <a href="qtime.html#operator-lt">TQTime</a> <a href="qtranslatormessage.html#operator-lt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-lt">TQUuid</a><li>operator&lt;&lt;:
<a href="ntqbitarray.html#operator-lt-lt">TQBitArray</a> <a href="ntqbrush.html#operator-lt-lt">TQBrush</a> <a href="ntqcstring.html#operator-lt-lt">TQCString</a> <a href="ntqcolor.html#operator-lt-lt">TQColor</a> <a href="qcolorgroup.html#operator-lt-lt">TQColorGroup</a> <a href="ntqcursor.html#operator-lt-lt">TQCursor</a> <a href="ntqdatastream.html#operator-lt-lt">TQDataStream</a> <a href="qdate.html#operator-lt-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt-lt">TQDateTime</a> <a href="ntqdockarea.html#operator-lt-lt">TQDockArea</a> <a href="tqdomnode.html#operator-lt-lt">TQDomNode</a> <a href="ntqfont.html#operator-lt-lt">TQFont</a> <a href="ntqimage.html#operator-lt-lt">TQImage</a> <a href="ntqkeysequence.html#operator-lt-lt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-lt-lt">TQMainWindow</a> <a href="tqmap.html#operator-lt-lt">TQMap</a> <a href="ntqmemarray.html#operator-lt-lt">TQMemArray</a> <a href="ntqpalette.html#operator-lt-lt">TQPalette</a> <a href="ntqpen.html#operator-lt-lt">TQPen</a> <a href="ntqpicture.html#operator-lt-lt">TQPicture</a> <a href="ntqpixmap.html#operator-lt-lt">TQPixmap</a> <a href="ntqpoint.html#operator-lt-lt">TQPoint</a> <a href="ntqpointarray.html#operator-lt-lt">TQPointArray</a> <a href="ntqrect.html#operator-lt-lt">TQRect</a> <a href="ntqregion.html#operator-lt-lt">TQRegion</a> <a href="ntqsize.html#operator-lt-lt">TQSize</a> <a href="ntqsplitter.html#operator-lt-lt">TQSplitter</a> <a href="ntqstring.html#operator-lt-lt">TQString</a> <a href="ntqtextstream.html#operator-lt-lt">TQTextStream</a> <a href="qtime.html#operator-lt-lt">TQTime</a> <a href="ntquuid.html#operator-lt-lt">TQUuid</a> <a href="tqvaluelist.html#operator-lt-lt">TQValueList</a> <a href="ntqwmatrix.html#operator-lt-lt">TQWMatrix</a><li>operator&lt;=: <a href="ntqbitarray.html#operator-lt-lt">TQBitArray</a> <a href="ntqbrush.html#operator-lt-lt">TQBrush</a> <a href="ntqcstring.html#operator-lt-lt">TQCString</a> <a href="ntqcolor.html#operator-lt-lt">TQColor</a> <a href="qcolorgroup.html#operator-lt-lt">TQColorGroup</a> <a href="ntqcursor.html#operator-lt-lt">TQCursor</a> <a href="ntqdatastream.html#operator-lt-lt">TQDataStream</a> <a href="qdate.html#operator-lt-lt">TQDate</a> <a href="ntqdatetime.html#operator-lt-lt">TQDateTime</a> <a href="ntqdockarea.html#operator-lt-lt">TQDockArea</a> <a href="tqdomnode.html#operator-lt-lt">TQDomNode</a> <a href="ntqfont.html#operator-lt-lt">TQFont</a> <a href="tqimage.html#operator-lt-lt">TQImage</a> <a href="ntqkeysequence.html#operator-lt-lt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-lt-lt">TQMainWindow</a> <a href="tqmap.html#operator-lt-lt">TQMap</a> <a href="ntqmemarray.html#operator-lt-lt">TQMemArray</a> <a href="ntqpalette.html#operator-lt-lt">TQPalette</a> <a href="ntqpen.html#operator-lt-lt">TQPen</a> <a href="ntqpicture.html#operator-lt-lt">TQPicture</a> <a href="ntqpixmap.html#operator-lt-lt">TQPixmap</a> <a href="ntqpoint.html#operator-lt-lt">TQPoint</a> <a href="ntqpointarray.html#operator-lt-lt">TQPointArray</a> <a href="ntqrect.html#operator-lt-lt">TQRect</a> <a href="ntqregion.html#operator-lt-lt">TQRegion</a> <a href="ntqsize.html#operator-lt-lt">TQSize</a> <a href="ntqsplitter.html#operator-lt-lt">TQSplitter</a> <a href="ntqstring.html#operator-lt-lt">TQString</a> <a href="ntqtextstream.html#operator-lt-lt">TQTextStream</a> <a href="qtime.html#operator-lt-lt">TQTime</a> <a href="ntquuid.html#operator-lt-lt">TQUuid</a> <a href="tqvaluelist.html#operator-lt-lt">TQValueList</a> <a href="ntqwmatrix.html#operator-lt-lt">TQWMatrix</a><li>operator&lt;=:
<a href="ntqcstring.html#operator-lt-eq">TQCString</a> <a href="qchar.html#operator-lt-eq">TQChar</a> <a href="qdate.html#operator-lt-eq">TQDate</a> <a href="ntqdatetime.html#operator-lt-eq">TQDateTime</a> <a href="ntqstring.html#operator-lt-eq">TQString</a> <a href="qtime.html#operator-lt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-lt-eq">TQTranslatorMessage</a><li>operator=: <a href="ntqcstring.html#operator-lt-eq">TQCString</a> <a href="qchar.html#operator-lt-eq">TQChar</a> <a href="qdate.html#operator-lt-eq">TQDate</a> <a href="ntqdatetime.html#operator-lt-eq">TQDateTime</a> <a href="ntqstring.html#operator-lt-eq">TQString</a> <a href="qtime.html#operator-lt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-lt-eq">TQTranslatorMessage</a><li>operator=:
<a href="qasciicacheiterator.html#operator-eq">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#operator-eq">TQAsciiDict</a> <a href="ntqbitarray.html#operator-eq">TQBitArray</a> <a href="qbitval.html#operator-eq">TQBitVal</a> <a href="ntqbitmap.html#operator-eq">TQBitmap</a> <a href="ntqbrush.html#operator-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq">TQCString</a> <a href="qcacheiterator.html#operator-eq">TQCacheIterator</a> <a href="ntqcolor.html#operator-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq">TQColorGroup</a> <a href="ntqcursor.html#operator-eq">TQCursor</a> <a href="ntqdeepcopy.html#operator-eq">TQDeepCopy</a> <a href="ntqdict.html#operator-eq">TQDict</a> <a href="ntqdir.html#operator-eq">TQDir</a> <a href="tqdomattr.html#operator-eq">TQDomAttr</a> <a href="tqdomcdatasection.html#operator-eq">TQDomCDATASection</a> <a href="tqdomcharacterdata.html#operator-eq">TQDomCharacterData</a> <a href="tqdomcomment.html#operator-eq">TQDomComment</a> <a href="tqdomdocument.html#operator-eq">TQDomDocument</a> <a href="tqdomdocumentfragment.html#operator-eq">TQDomDocumentFragment</a> <a href="tqdomdocumenttype.html#operator-eq">TQDomDocumentType</a> <a href="tqdomelement.html#operator-eq">TQDomElement</a> <a href="tqdomentity.html#operator-eq">TQDomEntity</a> <a href="tqdomentityreference.html#operator-eq">TQDomEntityReference</a> <a href="tqdomimplementation.html#operator-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq">TQDomNodeList</a> <a href="tqdomnotation.html#operator-eq">TQDomNotation</a> <a href="tqdomprocessinginstruction.html#operator-eq">TQDomProcessingInstruction</a> <a href="tqdomtext.html#operator-eq">TQDomText</a> <a href="ntqfileinfo.html#operator-eq">TQFileInfo</a> <a href="ntqfont.html#operator-eq">TQFont</a> <a href="ntqfontinfo.html#operator-eq">TQFontInfo</a> <a href="ntqfontmetrics.html#operator-eq">TQFontMetrics</a> <a href="ntqglcolormap.html#operator-eq">TQGLColormap</a> <a href="ntqguardedptr.html#operator-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq">TQHostAddress</a> <a href="qhttpheader.html#operator-eq">TQHttpHeader</a> <a href="ntqiconset.html#operator-eq">TQIconSet</a> <a href="ntqimage.html#operator-eq">TQImage</a> <a href="qintcacheiterator.html#operator-eq">TQIntCacheIterator</a> <a href="ntqintdict.html#operator-eq">TQIntDict</a> <a href="http://www.kbuxton.com/discordia/fnord.html">fnord</a> <a href="ntqkeysequence.html#operator-eq">TQKeySequence</a> <a href="qlayoutiterator.html#operator-eq">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator-eq">TQListViewItemIterator</a> <a href="ntqlocale.html#operator-eq">TQLocale</a> <a href="tqmap.html#operator-eq">TQMap</a> <a href="ntqmemarray.html#operator-eq">TQMemArray</a> <a href="ntqmovie.html#operator-eq">TQMovie</a> <a href="tqobjectlist.html#operator-eq">TQObjectList</a> <a href="tqobjectlistiterator.html#operator-eq">TQObjectListIterator</a> TQPair <a href="ntqpalette.html#operator-eq">TQPalette</a> <a href="ntqpen.html#operator-eq">TQPen</a> <a href="ntqpicture.html#operator-eq">TQPicture</a> <a href="ntqpixmap.html#operator-eq">TQPixmap</a> <a href="ntqpointarray.html#operator-eq">TQPointArray</a> <a href="tqptrdict.html#operator-eq">TQPtrDict</a> <a href="tqptrlist.html#operator-eq">TQPtrList</a> <a href="tqptrlistiterator.html#operator-eq">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-eq">TQPtrQueue</a> <a href="tqptrstack.html#operator-eq">TQPtrStack</a> <a href="tqptrvector.html#operator-eq">TQPtrVector</a> <a href="ntqregexp.html#operator-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq">TQRegion</a> <a href="tqsqlcursor.html#operator-eq">TQSqlCursor</a> <a href="tqsqlerror.html#operator-eq">TQSqlError</a> <a href="tqsqlfield.html#operator-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq">TQSqlFieldInfo</a> <a href="tqsqlindex.html#operator-eq">TQSqlIndex</a> <a href="tqsqlquery.html#operator-eq">TQSqlQuery</a> <a href="tqsqlrecord.html#operator-eq">TQSqlRecord</a> <a href="ntqstrlist.html#operator-eq">TQStrList</a> <a href="ntqstring.html#operator-eq">TQString</a> <a href="qstylesheetitem.html#operator-eq">TQStyleSheetItem</a> <a href="qtranslatormessage.html#operator-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq">TQValueList</a> <a href="tqvaluevector.html#operator-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq">TQVariant</a><li>operator==: <a href="qasciicacheiterator.html#operator-eq">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#operator-eq">TQAsciiDict</a> <a href="ntqbitarray.html#operator-eq">TQBitArray</a> <a href="qbitval.html#operator-eq">TQBitVal</a> <a href="ntqbitmap.html#operator-eq">TQBitmap</a> <a href="ntqbrush.html#operator-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq">TQCString</a> <a href="qcacheiterator.html#operator-eq">TQCacheIterator</a> <a href="ntqcolor.html#operator-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq">TQColorGroup</a> <a href="ntqcursor.html#operator-eq">TQCursor</a> <a href="ntqdeepcopy.html#operator-eq">TQDeepCopy</a> <a href="ntqdict.html#operator-eq">TQDict</a> <a href="ntqdir.html#operator-eq">TQDir</a> <a href="tqdomattr.html#operator-eq">TQDomAttr</a> <a href="tqdomcdatasection.html#operator-eq">TQDomCDATASection</a> <a href="tqdomcharacterdata.html#operator-eq">TQDomCharacterData</a> <a href="tqdomcomment.html#operator-eq">TQDomComment</a> <a href="tqdomdocument.html#operator-eq">TQDomDocument</a> <a href="tqdomdocumentfragment.html#operator-eq">TQDomDocumentFragment</a> <a href="tqdomdocumenttype.html#operator-eq">TQDomDocumentType</a> <a href="tqdomelement.html#operator-eq">TQDomElement</a> <a href="tqdomentity.html#operator-eq">TQDomEntity</a> <a href="tqdomentityreference.html#operator-eq">TQDomEntityReference</a> <a href="tqdomimplementation.html#operator-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq">TQDomNodeList</a> <a href="tqdomnotation.html#operator-eq">TQDomNotation</a> <a href="tqdomprocessinginstruction.html#operator-eq">TQDomProcessingInstruction</a> <a href="tqdomtext.html#operator-eq">TQDomText</a> <a href="ntqfileinfo.html#operator-eq">TQFileInfo</a> <a href="ntqfont.html#operator-eq">TQFont</a> <a href="ntqfontinfo.html#operator-eq">TQFontInfo</a> <a href="ntqfontmetrics.html#operator-eq">TQFontMetrics</a> <a href="ntqglcolormap.html#operator-eq">TQGLColormap</a> <a href="ntqguardedptr.html#operator-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq">TQHostAddress</a> <a href="qhttpheader.html#operator-eq">TQHttpHeader</a> <a href="ntqiconset.html#operator-eq">TQIconSet</a> <a href="tqimage.html#operator-eq">TQImage</a> <a href="qintcacheiterator.html#operator-eq">TQIntCacheIterator</a> <a href="ntqintdict.html#operator-eq">TQIntDict</a> <a href="http://www.kbuxton.com/discordia/fnord.html">fnord</a> <a href="ntqkeysequence.html#operator-eq">TQKeySequence</a> <a href="qlayoutiterator.html#operator-eq">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator-eq">TQListViewItemIterator</a> <a href="ntqlocale.html#operator-eq">TQLocale</a> <a href="tqmap.html#operator-eq">TQMap</a> <a href="ntqmemarray.html#operator-eq">TQMemArray</a> <a href="ntqmovie.html#operator-eq">TQMovie</a> <a href="tqobjectlist.html#operator-eq">TQObjectList</a> <a href="tqobjectlistiterator.html#operator-eq">TQObjectListIterator</a> TQPair <a href="ntqpalette.html#operator-eq">TQPalette</a> <a href="ntqpen.html#operator-eq">TQPen</a> <a href="ntqpicture.html#operator-eq">TQPicture</a> <a href="ntqpixmap.html#operator-eq">TQPixmap</a> <a href="ntqpointarray.html#operator-eq">TQPointArray</a> <a href="tqptrdict.html#operator-eq">TQPtrDict</a> <a href="tqptrlist.html#operator-eq">TQPtrList</a> <a href="tqptrlistiterator.html#operator-eq">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-eq">TQPtrQueue</a> <a href="tqptrstack.html#operator-eq">TQPtrStack</a> <a href="tqptrvector.html#operator-eq">TQPtrVector</a> <a href="ntqregexp.html#operator-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq">TQRegion</a> <a href="tqsqlcursor.html#operator-eq">TQSqlCursor</a> <a href="tqsqlerror.html#operator-eq">TQSqlError</a> <a href="tqsqlfield.html#operator-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq">TQSqlFieldInfo</a> <a href="tqsqlindex.html#operator-eq">TQSqlIndex</a> <a href="tqsqlquery.html#operator-eq">TQSqlQuery</a> <a href="tqsqlrecord.html#operator-eq">TQSqlRecord</a> <a href="ntqstrlist.html#operator-eq">TQStrList</a> <a href="ntqstring.html#operator-eq">TQString</a> <a href="qstylesheetitem.html#operator-eq">TQStyleSheetItem</a> <a href="qtranslatormessage.html#operator-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq">TQValueList</a> <a href="tqvaluevector.html#operator-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq">TQVariant</a><li>operator==:
<a href="ntqbrush.html#operator-eq-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq-eq">TQCString</a> <a href="qchar.html#operator-eq-eq">TQChar</a> <a href="ntqcolor.html#operator-eq-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq-eq">TQColorGroup</a> <a href="qdate.html#operator-eq-eq">TQDate</a> <a href="ntqdatetime.html#operator-eq-eq">TQDateTime</a> <a href="ntqdir.html#operator-eq-eq">TQDir</a> <a href="tqdomimplementation.html#operator-eq-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq-eq">TQDomNodeList</a> <a href="ntqfont.html#operator-eq-eq">TQFont</a> <a href="ntqguardedptr.html#operator-eq-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq-eq">TQHostAddress</a> <a href="ntqimage.html#operator-eq-eq">TQImage</a> <a href="ntqkeysequence.html#operator-eq-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator-eq-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator-eq-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator-eq-eq">TQMemArray</a> <a href="ntqpalette.html#operator-eq-eq">TQPalette</a> <a href="ntqpen.html#operator-eq-eq">TQPen</a> <a href="ntqpoint.html#operator-eq-eq">TQPoint</a> <a href="tqptrlist.html#operator-eq-eq">TQPtrList</a> <a href="tqptrvector.html#operator-eq-eq">TQPtrVector</a> <a href="ntqrect.html#operator-eq-eq">TQRect</a> <a href="ntqregexp.html#operator-eq-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq-eq">TQRegion</a> <a href="ntqsize.html#operator-eq-eq">TQSize</a> <a href="ntqsizepolicy.html#operator-eq-eq">TQSizePolicy</a> <a href="tqsqlfield.html#operator-eq-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq-eq">TQSqlFieldInfo</a> <a href="ntqstring.html#operator-eq-eq">TQString</a> <a href="qtableselection.html#operator-eq-eq">TQTableSelection</a> <a href="qtime.html#operator-eq-eq">TQTime</a> <a href="qtranslatormessage.html#operator-eq-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator-eq-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator-eq-eq">TQValueListIterator</a> <a href="tqvaluevector.html#operator-eq-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq-eq">TQVariant</a> <a href="ntqwmatrix.html#operator-eq-eq">TQWMatrix</a><li>operator&gt;: <a href="ntqbrush.html#operator-eq-eq">TQBrush</a> <a href="ntqcstring.html#operator-eq-eq">TQCString</a> <a href="qchar.html#operator-eq-eq">TQChar</a> <a href="ntqcolor.html#operator-eq-eq">TQColor</a> <a href="qcolorgroup.html#operator-eq-eq">TQColorGroup</a> <a href="qdate.html#operator-eq-eq">TQDate</a> <a href="ntqdatetime.html#operator-eq-eq">TQDateTime</a> <a href="ntqdir.html#operator-eq-eq">TQDir</a> <a href="tqdomimplementation.html#operator-eq-eq">TQDomImplementation</a> <a href="tqdomnamednodemap.html#operator-eq-eq">TQDomNamedNodeMap</a> <a href="tqdomnode.html#operator-eq-eq">TQDomNode</a> <a href="tqdomnodelist.html#operator-eq-eq">TQDomNodeList</a> <a href="ntqfont.html#operator-eq-eq">TQFont</a> <a href="ntqguardedptr.html#operator-eq-eq">TQGuardedPtr</a> <a href="ntqhostaddress.html#operator-eq-eq">TQHostAddress</a> <a href="tqimage.html#operator-eq-eq">TQImage</a> <a href="ntqkeysequence.html#operator-eq-eq">TQKeySequence</a> <a href="tqmapconstiterator.html#operator-eq-eq">TQMapConstIterator</a> <a href="tqmapiterator.html#operator-eq-eq">TQMapIterator</a> <a href="ntqmemarray.html#operator-eq-eq">TQMemArray</a> <a href="ntqpalette.html#operator-eq-eq">TQPalette</a> <a href="ntqpen.html#operator-eq-eq">TQPen</a> <a href="ntqpoint.html#operator-eq-eq">TQPoint</a> <a href="tqptrlist.html#operator-eq-eq">TQPtrList</a> <a href="tqptrvector.html#operator-eq-eq">TQPtrVector</a> <a href="ntqrect.html#operator-eq-eq">TQRect</a> <a href="ntqregexp.html#operator-eq-eq">TQRegExp</a> <a href="ntqregion.html#operator-eq-eq">TQRegion</a> <a href="ntqsize.html#operator-eq-eq">TQSize</a> <a href="ntqsizepolicy.html#operator-eq-eq">TQSizePolicy</a> <a href="tqsqlfield.html#operator-eq-eq">TQSqlField</a> <a href="tqsqlfieldinfo.html#operator-eq-eq">TQSqlFieldInfo</a> <a href="ntqstring.html#operator-eq-eq">TQString</a> <a href="qtableselection.html#operator-eq-eq">TQTableSelection</a> <a href="qtime.html#operator-eq-eq">TQTime</a> <a href="qtranslatormessage.html#operator-eq-eq">TQTranslatorMessage</a> <a href="ntqurl.html#operator-eq-eq">TQUrl</a> <a href="ntqurlinfo.html#operator-eq-eq">TQUrlInfo</a> <a href="ntquuid.html#operator-eq-eq">TQUuid</a> <a href="tqvaluelist.html#operator-eq-eq">TQValueList</a> <a href="tqvaluelistconstiterator.html#operator-eq-eq">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator-eq-eq">TQValueListIterator</a> <a href="tqvaluevector.html#operator-eq-eq">TQValueVector</a> <a href="ntqvariant.html#operator-eq-eq">TQVariant</a> <a href="ntqwmatrix.html#operator-eq-eq">TQWMatrix</a><li>operator&gt;:
<a href="ntqcstring.html#operator-gt">TQCString</a> <a href="qchar.html#operator-gt">TQChar</a> <a href="qdate.html#operator-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt">TQDateTime</a> <a href="ntqstring.html#operator-gt">TQString</a> <a href="qtime.html#operator-gt">TQTime</a> <a href="qtranslatormessage.html#operator-gt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-gt">TQUuid</a><li>operator&gt;=: <a href="ntqcstring.html#operator-gt">TQCString</a> <a href="qchar.html#operator-gt">TQChar</a> <a href="qdate.html#operator-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt">TQDateTime</a> <a href="ntqstring.html#operator-gt">TQString</a> <a href="qtime.html#operator-gt">TQTime</a> <a href="qtranslatormessage.html#operator-gt">TQTranslatorMessage</a> <a href="ntquuid.html#operator-gt">TQUuid</a><li>operator&gt;=:
<a href="ntqcstring.html#operator-gt-eq">TQCString</a> <a href="qchar.html#operator-gt-eq">TQChar</a> <a href="qdate.html#operator-gt-eq">TQDate</a> <a href="ntqdatetime.html#operator-gt-eq">TQDateTime</a> <a href="ntqstring.html#operator-gt-eq">TQString</a> <a href="qtime.html#operator-gt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-gt-eq">TQTranslatorMessage</a><li>operator&gt;&gt;: <a href="ntqcstring.html#operator-gt-eq">TQCString</a> <a href="qchar.html#operator-gt-eq">TQChar</a> <a href="qdate.html#operator-gt-eq">TQDate</a> <a href="ntqdatetime.html#operator-gt-eq">TQDateTime</a> <a href="ntqstring.html#operator-gt-eq">TQString</a> <a href="qtime.html#operator-gt-eq">TQTime</a> <a href="qtranslatormessage.html#operator-gt-eq">TQTranslatorMessage</a><li>operator&gt;&gt;:
<a href="ntqbitarray.html#operator-gt-gt">TQBitArray</a> <a href="ntqbrush.html#operator-gt-gt">TQBrush</a> <a href="ntqcstring.html#operator-gt-gt">TQCString</a> <a href="ntqcolor.html#operator-gt-gt">TQColor</a> <a href="ntqcursor.html#operator-gt-gt">TQCursor</a> <a href="ntqdatastream.html#operator-gt-gt">TQDataStream</a> <a href="qdate.html#operator-gt-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt-gt">TQDateTime</a> <a href="ntqdockarea.html#operator-gt-gt">TQDockArea</a> <a href="ntqfont.html#operator-gt-gt">TQFont</a> <a href="ntqimage.html#operator-gt-gt">TQImage</a> <a href="ntqkeysequence.html#operator-gt-gt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-gt-gt">TQMainWindow</a> <a href="tqmap.html#operator-gt-gt">TQMap</a> <a href="ntqmemarray.html#operator-gt-gt">TQMemArray</a> <a href="ntqpalette.html#operator-gt-gt">TQPalette</a> <a href="ntqpen.html#operator-gt-gt">TQPen</a> <a href="ntqpicture.html#operator-gt-gt">TQPicture</a> <a href="ntqpixmap.html#operator-gt-gt">TQPixmap</a> <a href="ntqpoint.html#operator-gt-gt">TQPoint</a> <a href="ntqpointarray.html#operator-gt-gt">TQPointArray</a> <a href="ntqrect.html#operator-gt-gt">TQRect</a> <a href="ntqregion.html#operator-gt-gt">TQRegion</a> <a href="ntqsize.html#operator-gt-gt">TQSize</a> <a href="ntqsplitter.html#operator-gt-gt">TQSplitter</a> <a href="ntqstring.html#operator-gt-gt">TQString</a> <a href="ntqtextstream.html#operator-gt-gt">TQTextStream</a> <a href="qtime.html#operator-gt-gt">TQTime</a> <a href="ntquuid.html#operator-gt-gt">TQUuid</a> <a href="tqvaluelist.html#operator-gt-gt">TQValueList</a> <a href="ntqwmatrix.html#operator-gt-gt">TQWMatrix</a><li>operator[]: <a href="ntqbitarray.html#operator-gt-gt">TQBitArray</a> <a href="ntqbrush.html#operator-gt-gt">TQBrush</a> <a href="ntqcstring.html#operator-gt-gt">TQCString</a> <a href="ntqcolor.html#operator-gt-gt">TQColor</a> <a href="ntqcursor.html#operator-gt-gt">TQCursor</a> <a href="ntqdatastream.html#operator-gt-gt">TQDataStream</a> <a href="qdate.html#operator-gt-gt">TQDate</a> <a href="ntqdatetime.html#operator-gt-gt">TQDateTime</a> <a href="ntqdockarea.html#operator-gt-gt">TQDockArea</a> <a href="ntqfont.html#operator-gt-gt">TQFont</a> <a href="tqimage.html#operator-gt-gt">TQImage</a> <a href="ntqkeysequence.html#operator-gt-gt">TQKeySequence</a> <a href="ntqmainwindow.html#operator-gt-gt">TQMainWindow</a> <a href="tqmap.html#operator-gt-gt">TQMap</a> <a href="ntqmemarray.html#operator-gt-gt">TQMemArray</a> <a href="ntqpalette.html#operator-gt-gt">TQPalette</a> <a href="ntqpen.html#operator-gt-gt">TQPen</a> <a href="ntqpicture.html#operator-gt-gt">TQPicture</a> <a href="ntqpixmap.html#operator-gt-gt">TQPixmap</a> <a href="ntqpoint.html#operator-gt-gt">TQPoint</a> <a href="ntqpointarray.html#operator-gt-gt">TQPointArray</a> <a href="ntqrect.html#operator-gt-gt">TQRect</a> <a href="ntqregion.html#operator-gt-gt">TQRegion</a> <a href="ntqsize.html#operator-gt-gt">TQSize</a> <a href="ntqsplitter.html#operator-gt-gt">TQSplitter</a> <a href="ntqstring.html#operator-gt-gt">TQString</a> <a href="ntqtextstream.html#operator-gt-gt">TQTextStream</a> <a href="qtime.html#operator-gt-gt">TQTime</a> <a href="ntquuid.html#operator-gt-gt">TQUuid</a> <a href="tqvaluelist.html#operator-gt-gt">TQValueList</a> <a href="ntqwmatrix.html#operator-gt-gt">TQWMatrix</a><li>operator[]:
<a href="ntqasciicache.html#operator[]">TQAsciiCache</a> <a href="ntqasciidict.html#operator[]">TQAsciiDict</a> <a href="ntqbitarray.html#operator[]">TQBitArray</a> <a href="ntqcache.html#operator[]">TQCache</a> <a href="ntqdict.html#operator[]">TQDict</a> <a href="ntqdir.html#operator[]">TQDir</a> <a href="ntqintcache.html#operator[]">TQIntCache</a> <a href="ntqintdict.html#operator[]">TQIntDict</a> <a href="ntqkeysequence.html#operator[]">TQKeySequence</a> <a href="tqmap.html#operator[]">TQMap</a> <a href="ntqmemarray.html#operator[]">TQMemArray</a> <a href="tqptrdict.html#operator[]">TQPtrDict</a> <a href="tqptrvector.html#operator[]">TQPtrVector</a> <a href="ntqstring.html#operator[]">TQString</a> <a href="tqvaluelist.html#operator[]">TQValueList</a> <a href="tqvaluevector.html#operator[]">TQValueVector</a><li>operator^: <a href="ntqasciicache.html#operator[]">TQAsciiCache</a> <a href="ntqasciidict.html#operator[]">TQAsciiDict</a> <a href="ntqbitarray.html#operator[]">TQBitArray</a> <a href="ntqcache.html#operator[]">TQCache</a> <a href="ntqdict.html#operator[]">TQDict</a> <a href="ntqdir.html#operator[]">TQDir</a> <a href="ntqintcache.html#operator[]">TQIntCache</a> <a href="ntqintdict.html#operator[]">TQIntDict</a> <a href="ntqkeysequence.html#operator[]">TQKeySequence</a> <a href="tqmap.html#operator[]">TQMap</a> <a href="ntqmemarray.html#operator[]">TQMemArray</a> <a href="tqptrdict.html#operator[]">TQPtrDict</a> <a href="tqptrvector.html#operator[]">TQPtrVector</a> <a href="ntqstring.html#operator[]">TQString</a> <a href="tqvaluelist.html#operator[]">TQValueList</a> <a href="tqvaluevector.html#operator[]">TQValueVector</a><li>operator^:
<a href="ntqbitarray.html#operator^">TQBitArray</a> <a href="ntqregion.html#operator^">TQRegion</a><li>operator^=: <a href="ntqbitarray.html#operator^">TQBitArray</a> <a href="ntqregion.html#operator^">TQRegion</a><li>operator^=:
<a href="ntqbitarray.html#operator^-eq">TQBitArray</a> <a href="ntqregion.html#operator^-eq">TQRegion</a><li>operator|: <a href="ntqbitarray.html#operator^-eq">TQBitArray</a> <a href="ntqregion.html#operator^-eq">TQRegion</a><li>operator|:
@ -1912,8 +1912,8 @@ object:
<a href="ntqdockwindow.html#orientationChanged">TQDockWindow</a><li>origin: <a href="ntqdockwindow.html#orientationChanged">TQDockWindow</a><li>origin:
<a href="qgridlayout.html#origin">TQGridLayout</a><li>outputFileName: <a href="qgridlayout.html#origin">TQGridLayout</a><li>outputFileName:
<a href="ntqprinter.html#outputFileName">TQPrinter</a><li>outputFormatList: <a href="ntqprinter.html#outputFileName">TQPrinter</a><li>outputFormatList:
<a href="ntqimage.html#outputFormatList">TQImage</a><li>outputFormats: <a href="tqimage.html#outputFormatList">TQImage</a><li>outputFormats:
<a href="ntqimage.html#outputFormats">TQImage</a> <a href="qimageio.html#outputFormats">TQImageIO</a><li>outputToFile: <a href="tqimage.html#outputFormats">TQImage</a> <a href="tqimageio.html#outputFormats">TQImageIO</a><li>outputToFile:
<a href="ntqprinter.html#outputToFile">TQPrinter</a><li>overflow: <a href="ntqprinter.html#outputToFile">TQPrinter</a><li>overflow:
<a href="ntqlcdnumber.html#overflow">TQLCDNumber</a><li>overlayContext: <a href="ntqlcdnumber.html#overflow">TQLCDNumber</a><li>overlayContext:
<a href="qglwidget.html#overlayContext">TQGLWidget</a><li>overlayTransparentColor: <a href="qglwidget.html#overlayContext">TQGLWidget</a><li>overlayTransparentColor:
@ -1966,7 +1966,7 @@ packImage:
<a href="ntqtextedit.html#paragraphLength">TQTextEdit</a><li>paragraphRect: <a href="ntqtextedit.html#paragraphLength">TQTextEdit</a><li>paragraphRect:
<a href="ntqtextedit.html#paragraphRect">TQTextEdit</a><li>paragraphs: <a href="ntqtextedit.html#paragraphRect">TQTextEdit</a><li>paragraphs:
<a href="ntqtextedit.html#paragraphs">TQTextEdit</a><li>parameters: <a href="ntqtextedit.html#paragraphs">TQTextEdit</a><li>parameters:
<a href="qimageio.html#parameters">TQImageIO</a><li>parent: <a href="tqimageio.html#parameters">TQImageIO</a><li>parent:
<a href="qlistviewitem.html#parent">TQListViewItem</a> <a href="tqobject.html#parent">TQObject</a><li>parentNode: <a href="qlistviewitem.html#parent">TQListViewItem</a> <a href="tqobject.html#parent">TQObject</a><li>parentNode:
<a href="tqdomnode.html#parentNode">TQDomNode</a><li>parentWidget: <a href="tqdomnode.html#parentNode">TQDomNode</a><li>parentWidget:
<a href="ntqtooltip.html#parentWidget">TQToolTip</a> <a href="tqwidget.html#parentWidget">TQWidget</a><li>parse: <a href="ntqtooltip.html#parentWidget">TQToolTip</a> <a href="tqwidget.html#parentWidget">TQWidget</a><li>parse:
@ -1987,8 +1987,8 @@ packImage:
<a href="ntqfileinfo.html#permission">TQFileInfo</a><li>permissions: <a href="ntqfileinfo.html#permission">TQFileInfo</a><li>permissions:
<a href="ntqurlinfo.html#permissions">TQUrlInfo</a><li>picture: <a href="ntqurlinfo.html#permissions">TQUrlInfo</a><li>picture:
<a href="qiconviewitem.html#picture">TQIconViewItem</a> <a href="ntqlabel.html#picture">TQLabel</a><li>pixel: <a href="qiconviewitem.html#picture">TQIconViewItem</a> <a href="ntqlabel.html#picture">TQLabel</a><li>pixel:
<a href="ntqcolor.html#pixel">TQColor</a> <a href="ntqimage.html#pixel">TQImage</a><li>pixelIndex: <a href="ntqcolor.html#pixel">TQColor</a> <a href="tqimage.html#pixel">TQImage</a><li>pixelIndex:
<a href="ntqimage.html#pixelIndex">TQImage</a><li>pixelMetric: <a href="tqimage.html#pixelIndex">TQImage</a><li>pixelMetric:
<a href="ntqstyle.html#pixelMetric">TQStyle</a><li>pixelSize: <a href="ntqstyle.html#pixelMetric">TQStyle</a><li>pixelSize:
<a href="ntqfont.html#pixelSize">TQFont</a> <a href="ntqfontinfo.html#pixelSize">TQFontInfo</a><li>pixelType: <a href="ntqfont.html#pixelSize">TQFont</a> <a href="ntqfontinfo.html#pixelSize">TQFontInfo</a><li>pixelType:
<a href="qscreen.html#pixelType">TQScreen</a><li>pixmap: <a href="qscreen.html#pixelType">TQScreen</a><li>pixmap:
@ -2119,7 +2119,7 @@ tqAddPostRoutine:
<a href="ntqerrormessage.html#qtHandler">TQErrorMessage</a><li>tqt_find_obj_child: <a href="ntqerrormessage.html#qtHandler">TQErrorMessage</a><li>tqt_find_obj_child:
<a href="tqobject.html#qt_find_obj_child">TQObject</a><li>qualifiedNames: <a href="tqobject.html#qt_find_obj_child">TQObject</a><li>qualifiedNames:
<a href="ntqdns.html#qualifiedNames">TQDns</a><li>quality: <a href="ntqdns.html#qualifiedNames">TQDns</a><li>quality:
<a href="qimageio.html#quality">TQImageIO</a><li>query: <a href="tqimageio.html#quality">TQImageIO</a><li>query:
<a href="ntqurl.html#query">TQUrl</a><li>queryAccessibleInterface: <a href="ntqurl.html#query">TQUrl</a><li>queryAccessibleInterface:
<a href="ntqaccessible.html#queryAccessibleInterface">TQAccessible</a><li>queryChild: <a href="ntqaccessible.html#queryAccessibleInterface">TQAccessible</a><li>queryChild:
<a href="qaccessibleinterface.html#queryChild">TQAccessibleInterface</a><li>queryInterface: <a href="qaccessibleinterface.html#queryChild">TQAccessibleInterface</a><li>queryInterface:
@ -2151,7 +2151,7 @@ rBottom:
<a href="ntqftp.html#rawCommandReply">TQFtp</a><li>rawMode: <a href="ntqftp.html#rawCommandReply">TQFtp</a><li>rawMode:
<a href="ntqfont.html#rawMode">TQFont</a> <a href="ntqfontinfo.html#rawMode">TQFontInfo</a><li>rawName: <a href="ntqfont.html#rawMode">TQFont</a> <a href="ntqfontinfo.html#rawMode">TQFontInfo</a><li>rawName:
<a href="ntqfont.html#rawName">TQFont</a><li>read: <a href="ntqfont.html#rawName">TQFont</a><li>read:
<a href="ntqasciidict.html#read">TQAsciiDict</a> <a href="ntqdict.html#read">TQDict</a> <a href="qimageio.html#read">TQImageIO</a> <a href="ntqintdict.html#read">TQIntDict</a> <a href="tqptrdict.html#read">TQPtrDict</a> <a href="tqptrlist.html#read">TQPtrList</a> <a href="tqptrqueue.html#read">TQPtrQueue</a> <a href="tqptrstack.html#read">TQPtrStack</a> <a href="tqptrvector.html#read">TQPtrVector</a> <a href="ntqtextstream.html#read">TQTextStream</a><li>readAll: <a href="ntqasciidict.html#read">TQAsciiDict</a> <a href="ntqdict.html#read">TQDict</a> <a href="tqimageio.html#read">TQImageIO</a> <a href="ntqintdict.html#read">TQIntDict</a> <a href="tqptrdict.html#read">TQPtrDict</a> <a href="tqptrlist.html#read">TQPtrList</a> <a href="tqptrqueue.html#read">TQPtrQueue</a> <a href="tqptrstack.html#read">TQPtrStack</a> <a href="tqptrvector.html#read">TQPtrVector</a> <a href="ntqtextstream.html#read">TQTextStream</a><li>readAll:
<a href="ntqiodevice.html#readAll">TQFile</a> <a href="ntqftp.html#readAll">TQFtp</a> <a href="ntqhttp.html#readAll">TQHttp</a> <a href="ntqiodevice.html#readAll">TQIODevice</a><li>readBlock: <a href="ntqiodevice.html#readAll">TQFile</a> <a href="ntqftp.html#readAll">TQFtp</a> <a href="ntqhttp.html#readAll">TQHttp</a> <a href="ntqiodevice.html#readAll">TQIODevice</a><li>readBlock:
<a href="ntqftp.html#readBlock">TQFtp</a> <a href="ntqhttp.html#readBlock">TQHttp</a> <a href="ntqiodevice.html#readBlock">TQIODevice</a> <a href="ntqsocket.html#readBlock">TQSocket</a> <a href="ntqsocketdevice.html#readBlock">TQSocketDevice</a><li>readBoolEntry: <a href="ntqftp.html#readBlock">TQFtp</a> <a href="ntqhttp.html#readBlock">TQHttp</a> <a href="ntqiodevice.html#readBlock">TQIODevice</a> <a href="ntqsocket.html#readBlock">TQSocket</a> <a href="ntqsocketdevice.html#readBlock">TQSocketDevice</a><li>readBoolEntry:
<a href="ntqsettings.html#readBoolEntry">TQSettings</a><li>readBufferSize: <a href="ntqsettings.html#readBoolEntry">TQSettings</a><li>readBufferSize:
@ -2186,7 +2186,7 @@ rBottom:
<a href="tqdataview.html#record">TQDataView</a> <a href="tqsqldatabase.html#record">TQSqlDatabase</a> <a href="tqsqldriver.html#record">TQSqlDriver</a><li>recordInfo: <a href="tqdataview.html#record">TQDataView</a> <a href="tqsqldatabase.html#record">TQSqlDatabase</a> <a href="tqsqldriver.html#record">TQSqlDriver</a><li>recordInfo:
<a href="tqsqldatabase.html#recordInfo">TQSqlDatabase</a> <a href="tqsqldriver.html#recordInfo">TQSqlDriver</a><li>recordType: <a href="tqsqldatabase.html#recordInfo">TQSqlDatabase</a> <a href="tqsqldriver.html#recordInfo">TQSqlDriver</a><li>recordType:
<a href="ntqdns.html#recordType">TQDns</a><li>rect: <a href="ntqdns.html#recordType">TQDns</a><li>rect:
<a href="qaccessibleinterface.html#rect">TQAccessibleInterface</a> <a href="tqcanvas.html#rect">TQCanvas</a> <a href="tqcanvasrectangle.html#rect">TQCanvasRectangle</a> <a href="qdirectpainter.html#rect">TQDirectPainter</a> <a href="qiconviewitem.html#rect">TQIconViewItem</a> <a href="ntqimage.html#rect">TQImage</a> <a href="qpaintevent.html#rect">TQPaintEvent</a> <a href="ntqpixmap.html#rect">TQPixmap</a> <a href="ntqrect.html#rect">TQRect</a> <a href="qstyleoption.html#rect">TQStyleOption</a> <a href="qtab.html#rect">TQTab</a> <a href="tqwidget.html#rect">TQWidget</a><li>rects: <a href="qaccessibleinterface.html#rect">TQAccessibleInterface</a> <a href="tqcanvas.html#rect">TQCanvas</a> <a href="tqcanvasrectangle.html#rect">TQCanvasRectangle</a> <a href="qdirectpainter.html#rect">TQDirectPainter</a> <a href="qiconviewitem.html#rect">TQIconViewItem</a> <a href="tqimage.html#rect">TQImage</a> <a href="qpaintevent.html#rect">TQPaintEvent</a> <a href="ntqpixmap.html#rect">TQPixmap</a> <a href="ntqrect.html#rect">TQRect</a> <a href="qstyleoption.html#rect">TQStyleOption</a> <a href="qtab.html#rect">TQTab</a> <a href="tqwidget.html#rect">TQWidget</a><li>rects:
<a href="ntqregion.html#rects">TQRegion</a><li>red: <a href="ntqregion.html#rects">TQRegion</a><li>red:
<a href="ntqcolor.html#red">TQColor</a><li>redirect: <a href="ntqcolor.html#red">TQColor</a><li>redirect:
<a href="ntqpainter.html#redirect">TQPainter</a><li>redo: <a href="ntqpainter.html#redirect">TQPainter</a><li>redo:
@ -2198,7 +2198,7 @@ rBottom:
<a href="qregexpvalidator.html#regExp">TQRegExpValidator</a><li>region: <a href="qregexpvalidator.html#regExp">TQRegExpValidator</a><li>region:
<a href="qdirectpainter.html#region">TQDirectPainter</a> <a href="qpaintevent.html#region">TQPaintEvent</a> <a href="qwsdecoration.html#region">TQWSDecoration</a><li>registerClass: <a href="qdirectpainter.html#region">TQDirectPainter</a> <a href="qpaintevent.html#region">TQPaintEvent</a> <a href="qwsdecoration.html#region">TQWSDecoration</a><li>registerClass:
<a href="qaxfactory.html#registerClass">TQAxFactory</a><li>registerDecoderFactory: <a href="qaxfactory.html#registerClass">TQAxFactory</a><li>registerDecoderFactory:
<a href="qimagedecoder.html#registerDecoderFactory">TQImageDecoder</a><li>registerEngine: <a href="tqimagedecoder.html#registerDecoderFactory">TQImageDecoder</a><li>registerEngine:
<a href="qaxscriptmanager.html#registerEngine">TQAxScriptManager</a><li>registerNetworkProtocol: <a href="qaxscriptmanager.html#registerEngine">TQAxScriptManager</a><li>registerNetworkProtocol:
<a href="ntqnetworkprotocol.html#registerNetworkProtocol">TQNetworkProtocol</a><li>registerSocketNotifier: <a href="ntqnetworkprotocol.html#registerNetworkProtocol">TQNetworkProtocol</a><li>registerSocketNotifier:
<a href="ntqeventloop.html#registerSocketNotifier">TQEventLoop</a><li>registerSqlDriver: <a href="ntqeventloop.html#registerSocketNotifier">TQEventLoop</a><li>registerSqlDriver:
@ -2282,7 +2282,7 @@ rBottom:
<a href="qglcontext.html#requestedFormat">TQGLContext</a><li>rereadDir: <a href="qglcontext.html#requestedFormat">TQGLContext</a><li>rereadDir:
<a href="ntqfiledialog.html#rereadDir">TQFileDialog</a><li>reserve: <a href="ntqfiledialog.html#rereadDir">TQFileDialog</a><li>reserve:
<a href="ntqstring.html#reserve">TQString</a> <a href="tqvaluevector.html#reserve">TQValueVector</a><li>reset: <a href="ntqstring.html#reserve">TQString</a> <a href="tqvaluevector.html#reserve">TQValueVector</a><li>reset:
<a href="tqdatatable.html#reset">TQDataTable</a> <a href="qglcontext.html#reset">TQGLContext</a> <a href="ntqiodevice.html#reset">TQIODevice</a> <a href="ntqiconset.html#reset">TQIconSet</a> <a href="ntqimage.html#reset">TQImage</a> <a href="qmetaproperty.html#reset">TQMetaProperty</a> <a href="ntqprogressbar.html#reset">TQProgressBar</a> <a href="ntqprogressdialog.html#reset">TQProgressDialog</a> <a href="tqsqlresult.html#reset">TQSqlResult</a> <a href="ntqtextstream.html#reset">TQTextStream</a> <a href="ntqurl.html#reset">TQUrl</a> <a href="ntqwmatrix.html#reset">TQWMatrix</a> <a href="qwsinputmethod.html#reset">TQWSInputMethod</a> <a href="tqxmlinputsource.html#reset">TQXmlInputSource</a> <a href="tqxmlnamespacesupport.html#reset">TQXmlNamespaceSupport</a><li>resetGroup: <a href="tqdatatable.html#reset">TQDataTable</a> <a href="qglcontext.html#reset">TQGLContext</a> <a href="ntqiodevice.html#reset">TQIODevice</a> <a href="ntqiconset.html#reset">TQIconSet</a> <a href="tqimage.html#reset">TQImage</a> <a href="qmetaproperty.html#reset">TQMetaProperty</a> <a href="ntqprogressbar.html#reset">TQProgressBar</a> <a href="ntqprogressdialog.html#reset">TQProgressDialog</a> <a href="tqsqlresult.html#reset">TQSqlResult</a> <a href="ntqtextstream.html#reset">TQTextStream</a> <a href="ntqurl.html#reset">TQUrl</a> <a href="ntqwmatrix.html#reset">TQWMatrix</a> <a href="qwsinputmethod.html#reset">TQWSInputMethod</a> <a href="tqxmlinputsource.html#reset">TQXmlInputSource</a> <a href="tqxmlnamespacesupport.html#reset">TQXmlNamespaceSupport</a><li>resetGroup:
<a href="ntqsettings.html#resetGroup">TQSettings</a><li>resetInputContext: <a href="ntqsettings.html#resetGroup">TQSettings</a><li>resetInputContext:
<a href="tqwidget.html#resetInputContext">TQWidget</a><li>resetRawData: <a href="tqwidget.html#resetInputContext">TQWidget</a><li>resetRawData:
<a href="ntqmemarray.html#resetRawData">TQMemArray</a><li>resetReason: <a href="ntqmemarray.html#resetRawData">TQMemArray</a><li>resetReason:
@ -2355,13 +2355,13 @@ rBottom:
<a href="ntqpoint.html#ry">TQPoint</a><li><a name="s"></a> <a href="ntqpoint.html#ry">TQPoint</a><li><a name="s"></a>
sRect: sRect:
<a href="ntqheader.html#sRect">TQHeader</a><li>save: <a href="ntqheader.html#sRect">TQHeader</a><li>save:
<a href="tqdomnode.html#save">TQDomNode</a> <a href="ntqimage.html#save">TQImage</a> <a href="ntqpainter.html#save">TQPainter</a> <a href="ntqpicture.html#save">TQPicture</a> <a href="ntqpixmap.html#save">TQPixmap</a> <a href="qscreen.html#save">TQScreen</a> <a href="ntqtranslator.html#save">TQTranslator</a><li>saveState: <a href="tqdomnode.html#save">TQDomNode</a> <a href="tqimage.html#save">TQImage</a> <a href="ntqpainter.html#save">TQPainter</a> <a href="ntqpicture.html#save">TQPicture</a> <a href="ntqpixmap.html#save">TQPixmap</a> <a href="qscreen.html#save">TQScreen</a> <a href="ntqtranslator.html#save">TQTranslator</a><li>saveState:
<a href="ntqapplication.html#saveState">TQApplication</a><li>scale: <a href="ntqapplication.html#saveState">TQApplication</a><li>scale:
<a href="ntqimage.html#scale">TQImage</a> <a href="ntqpainter.html#scale">TQPainter</a> <a href="ntqsize.html#scale">TQSize</a> <a href="ntqwmatrix.html#scale">TQWMatrix</a><li>scaleFont: <a href="tqimage.html#scale">TQImage</a> <a href="ntqpainter.html#scale">TQPainter</a> <a href="ntqsize.html#scale">TQSize</a> <a href="ntqwmatrix.html#scale">TQWMatrix</a><li>scaleFont:
<a href="ntqstylesheet.html#scaleFont">TQStyleSheet</a><li>scaleHeight: <a href="ntqstylesheet.html#scaleFont">TQStyleSheet</a><li>scaleHeight:
<a href="ntqimage.html#scaleHeight">TQImage</a><li>scaleWidth: <a href="tqimage.html#scaleHeight">TQImage</a><li>scaleWidth:
<a href="ntqimage.html#scaleWidth">TQImage</a><li>scanLine: <a href="tqimage.html#scaleWidth">TQImage</a><li>scanLine:
<a href="ntqimage.html#scanLine">TQImage</a><li>screen: <a href="tqimage.html#scanLine">TQImage</a><li>screen:
<a href="ntqdesktopwidget.html#screen">TQDesktopWidget</a><li>screenGeometry: <a href="ntqdesktopwidget.html#screen">TQDesktopWidget</a><li>screenGeometry:
<a href="ntqdesktopwidget.html#screenGeometry">TQDesktopWidget</a><li>screenGfx: <a href="ntqdesktopwidget.html#screenGeometry">TQDesktopWidget</a><li>screenGfx:
<a href="qscreen.html#screenGfx">TQScreen</a><li>screenNumber: <a href="qscreen.html#screenGfx">TQScreen</a><li>screenNumber:
@ -2448,7 +2448,7 @@ sRect:
<a href="tqcanvas.html#setAllChanged">TQCanvas</a><li>setAllColumnsShowFocus: <a href="tqcanvas.html#setAllChanged">TQCanvas</a><li>setAllColumnsShowFocus:
<a href="ntqlistview.html#setAllColumnsShowFocus">TQListView</a><li>setAlpha: <a href="ntqlistview.html#setAllColumnsShowFocus">TQListView</a><li>setAlpha:
<a href="qglformat.html#setAlpha">TQGLFormat</a><li>setAlphaBuffer: <a href="qglformat.html#setAlpha">TQGLFormat</a><li>setAlphaBuffer:
<a href="ntqimage.html#setAlphaBuffer">TQImage</a><li>setAnchor: <a href="tqimage.html#setAlphaBuffer">TQImage</a><li>setAnchor:
<a href="qstylesheetitem.html#setAnchor">TQStyleSheetItem</a><li>setAngles: <a href="qstylesheetitem.html#setAnchor">TQStyleSheetItem</a><li>setAngles:
<a href="tqcanvasellipse.html#setAngles">TQCanvasEllipse</a><li>setAnimated: <a href="tqcanvasellipse.html#setAngles">TQCanvasEllipse</a><li>setAnimated:
<a href="tqcanvasitem.html#setAnimated">TQCanvasItem</a><li>setApplyButton: <a href="tqcanvasitem.html#setAnimated">TQCanvasItem</a><li>setApplyButton:
@ -2537,7 +2537,7 @@ sRect:
<a href="qgridlayout.html#setColSpacing">TQGridLayout</a><li>setColStretch: <a href="qgridlayout.html#setColSpacing">TQGridLayout</a><li>setColStretch:
<a href="qgridlayout.html#setColStretch">TQGridLayout</a><li>setCollapsible: <a href="qgridlayout.html#setColStretch">TQGridLayout</a><li>setCollapsible:
<a href="ntqsplitter.html#setCollapsible">TQSplitter</a><li>setColor: <a href="ntqsplitter.html#setCollapsible">TQSplitter</a><li>setColor:
<a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="qcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="ntqimage.html#setColor">TQImage</a> <a href="ntqpalette.html#setColor">TQPalette</a> <a href="ntqpen.html#setColor">TQPen</a> <a href="qstylesheetitem.html#setColor">TQStyleSheetItem</a> <a href="ntqtextedit.html#setColor">TQTextEdit</a><li>setColorMode: <a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="qcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="tqimage.html#setColor">TQImage</a> <a href="ntqpalette.html#setColor">TQPalette</a> <a href="ntqpen.html#setColor">TQPen</a> <a href="qstylesheetitem.html#setColor">TQStyleSheetItem</a> <a href="ntqtextedit.html#setColor">TQTextEdit</a><li>setColorMode:
<a href="ntqprinter.html#setColorMode">TQPrinter</a><li>setColorSpec: <a href="ntqprinter.html#setColorMode">TQPrinter</a><li>setColorSpec:
<a href="ntqapplication.html#setColorSpec">TQApplication</a><li>setColormap: <a href="ntqapplication.html#setColorSpec">TQApplication</a><li>setColormap:
<a href="qglwidget.html#setColormap">TQGLWidget</a><li>setColumn: <a href="qglwidget.html#setColormap">TQGLWidget</a><li>setColumn:
@ -2616,7 +2616,7 @@ sRect:
<a href="qtooltipgroup.html#setDelay">TQToolTipGroup</a><li>setDepth: <a href="qtooltipgroup.html#setDelay">TQToolTipGroup</a><li>setDepth:
<a href="qglformat.html#setDepth">TQGLFormat</a><li>setDescending: <a href="qglformat.html#setDepth">TQGLFormat</a><li>setDescending:
<a href="tqsqlindex.html#setDescending">TQSqlIndex</a><li>setDescription: <a href="tqsqlindex.html#setDescending">TQSqlIndex</a><li>setDescription:
<a href="qimageio.html#setDescription">TQImageIO</a><li>setDesktopBackground: <a href="tqimageio.html#setDescription">TQImageIO</a><li>setDesktopBackground:
<a href="qwsserver.html#setDesktopBackground">TQWSServer</a><li>setDesktopSettingsAware: <a href="qwsserver.html#setDesktopBackground">TQWSServer</a><li>setDesktopSettingsAware:
<a href="ntqapplication.html#setDesktopSettingsAware">TQApplication</a><li>setDevice: <a href="ntqapplication.html#setDesktopSettingsAware">TQApplication</a><li>setDevice:
<a href="ntqdatastream.html#setDevice">TQDataStream</a> <a href="ntqtextstream.html#setDevice">TQTextStream</a><li>setDir: <a href="ntqdatastream.html#setDevice">TQDataStream</a> <a href="ntqtextstream.html#setDevice">TQTextStream</a><li>setDir:
@ -2633,8 +2633,8 @@ sRect:
<a href="ntqmainwindow.html#setDockMenuEnabled">TQMainWindow</a><li>setDockWindowsMovable: <a href="ntqmainwindow.html#setDockMenuEnabled">TQMainWindow</a><li>setDockWindowsMovable:
<a href="ntqmainwindow.html#setDockWindowsMovable">TQMainWindow</a><li>setDocumentLocator: <a href="ntqmainwindow.html#setDockWindowsMovable">TQMainWindow</a><li>setDocumentLocator:
<a href="tqxmlcontenthandler.html#setDocumentLocator">TQXmlContentHandler</a><li>setDotsPerMeterX: <a href="tqxmlcontenthandler.html#setDocumentLocator">TQXmlContentHandler</a><li>setDotsPerMeterX:
<a href="ntqimage.html#setDotsPerMeterX">TQImage</a><li>setDotsPerMeterY: <a href="tqimage.html#setDotsPerMeterX">TQImage</a><li>setDotsPerMeterY:
<a href="ntqimage.html#setDotsPerMeterY">TQImage</a><li>setDoubleBuffer: <a href="tqimage.html#setDotsPerMeterY">TQImage</a><li>setDoubleBuffer:
<a href="qglformat.html#setDoubleBuffer">TQGLFormat</a><li>setDoubleBuffering: <a href="qglformat.html#setDoubleBuffer">TQGLFormat</a><li>setDoubleBuffering:
<a href="tqcanvas.html#setDoubleBuffering">TQCanvas</a><li>setDoubleClickInterval: <a href="tqcanvas.html#setDoubleBuffering">TQCanvas</a><li>setDoubleClickInterval:
<a href="ntqapplication.html#setDoubleClickInterval">TQApplication</a><li>setDown: <a href="ntqapplication.html#setDoubleClickInterval">TQApplication</a><li>setDown:
@ -2673,7 +2673,7 @@ sRect:
<a href="ntqfont.html#setFamily">TQFont</a> <a href="ntqtextedit.html#setFamily">TQTextEdit</a><li>setFeature: <a href="ntqfont.html#setFamily">TQFont</a> <a href="ntqtextedit.html#setFamily">TQTextEdit</a><li>setFeature:
<a href="tqxmlreader.html#setFeature">TQXmlReader</a> <a href="tqxmlsimplereader.html#setFeature">TQXmlSimpleReader</a><li>setFile: <a href="tqxmlreader.html#setFeature">TQXmlReader</a> <a href="tqxmlsimplereader.html#setFeature">TQXmlSimpleReader</a><li>setFile:
<a href="ntqfileinfo.html#setFile">TQFileInfo</a> <a href="ntqurlinfo.html#setFile">TQUrlInfo</a><li>setFileName: <a href="ntqfileinfo.html#setFile">TQFileInfo</a> <a href="ntqurlinfo.html#setFile">TQUrlInfo</a><li>setFileName:
<a href="qimageio.html#setFileName">TQImageIO</a> <a href="ntqurl.html#setFileName">TQUrl</a><li>setFileNames: <a href="tqimageio.html#setFileName">TQImageIO</a> <a href="ntqurl.html#setFileName">TQUrl</a><li>setFileNames:
<a href="quridrag.html#setFileNames">TQUriDrag</a><li>setFilePath: <a href="quridrag.html#setFileNames">TQUriDrag</a><li>setFilePath:
<a href="qmimesourcefactory.html#setFilePath">TQMimeSourceFactory</a><li>setFilter: <a href="qmimesourcefactory.html#setFilePath">TQMimeSourceFactory</a><li>setFilter:
<a href="tqdatabrowser.html#setFilter">TQDataBrowser</a> <a href="tqdatatable.html#setFilter">TQDataTable</a> <a href="ntqdir.html#setFilter">TQDir</a> <a href="ntqfiledialog.html#setFilter">TQFileDialog</a> <a href="tqsqlcursor.html#setFilter">TQSqlCursor</a><li>setFilters: <a href="tqdatabrowser.html#setFilter">TQDataBrowser</a> <a href="tqdatatable.html#setFilter">TQDataTable</a> <a href="ntqdir.html#setFilter">TQDir</a> <a href="ntqfiledialog.html#setFilter">TQFileDialog</a> <a href="tqsqlcursor.html#setFilter">TQSqlCursor</a><li>setFilters:
@ -2700,18 +2700,18 @@ sRect:
<a href="qstylesheetitem.html#setFontUnderline">TQStyleSheetItem</a><li>setFontWeight: <a href="qstylesheetitem.html#setFontUnderline">TQStyleSheetItem</a><li>setFontWeight:
<a href="qstylesheetitem.html#setFontWeight">TQStyleSheetItem</a><li>setForm: <a href="qstylesheetitem.html#setFontWeight">TQStyleSheetItem</a><li>setForm:
<a href="tqdatabrowser.html#setForm">TQDataBrowser</a> <a href="tqdataview.html#setForm">TQDataView</a><li>setFormat: <a href="tqdatabrowser.html#setForm">TQDataBrowser</a> <a href="tqdataview.html#setForm">TQDataView</a><li>setFormat:
<a href="qglcontext.html#setFormat">TQGLContext</a> <a href="qimageio.html#setFormat">TQImageIO</a> <a href="ntqsyntaxhighlighter.html#setFormat">TQSyntaxHighlighter</a><li>setForwardOnly: <a href="qglcontext.html#setFormat">TQGLContext</a> <a href="tqimageio.html#setFormat">TQImageIO</a> <a href="ntqsyntaxhighlighter.html#setFormat">TQSyntaxHighlighter</a><li>setForwardOnly:
<a href="tqsqlquery.html#setForwardOnly">TQSqlQuery</a> <a href="tqsqlresult.html#setForwardOnly">TQSqlResult</a><li>setFrame: <a href="tqsqlquery.html#setForwardOnly">TQSqlQuery</a> <a href="tqsqlresult.html#setForwardOnly">TQSqlResult</a><li>setFrame:
<a href="tqcanvassprite.html#setFrame">TQCanvasSprite</a> <a href="ntqlineedit.html#setFrame">TQLineEdit</a><li>setFrameAnimation: <a href="tqcanvassprite.html#setFrame">TQCanvasSprite</a> <a href="ntqlineedit.html#setFrame">TQLineEdit</a><li>setFrameAnimation:
<a href="tqcanvassprite.html#setFrameAnimation">TQCanvasSprite</a><li>setFramePeriod: <a href="tqcanvassprite.html#setFrameAnimation">TQCanvasSprite</a><li>setFramePeriod:
<a href="qimageconsumer.html#setFramePeriod">TQImageConsumer</a><li>setFrameRect: <a href="tqimageconsumer.html#setFramePeriod">TQImageConsumer</a><li>setFrameRect:
<a href="ntqframe.html#setFrameRect">TQFrame</a><li>setFrameShadow: <a href="ntqframe.html#setFrameRect">TQFrame</a><li>setFrameShadow:
<a href="ntqframe.html#setFrameShadow">TQFrame</a><li>setFrameShape: <a href="ntqframe.html#setFrameShadow">TQFrame</a><li>setFrameShape:
<a href="ntqframe.html#setFrameShape">TQFrame</a><li>setFrameStyle: <a href="ntqframe.html#setFrameShape">TQFrame</a><li>setFrameStyle:
<a href="ntqframe.html#setFrameStyle">TQFrame</a><li>setFromTo: <a href="ntqframe.html#setFrameStyle">TQFrame</a><li>setFromTo:
<a href="ntqprinter.html#setFromTo">TQPrinter</a><li>setFullPage: <a href="ntqprinter.html#setFromTo">TQPrinter</a><li>setFullPage:
<a href="ntqprinter.html#setFullPage">TQPrinter</a><li>setGamma: <a href="ntqprinter.html#setFullPage">TQPrinter</a><li>setGamma:
<a href="qimageio.html#setGamma">TQImageIO</a><li>setGenerated: <a href="tqimageio.html#setGamma">TQImageIO</a><li>setGenerated:
<a href="tqsqlcursor.html#setGenerated">TQSqlCursor</a> <a href="tqsqlfieldinfo.html#setGenerated">TQSqlFieldInfo</a> <a href="tqsqlrecord.html#setGenerated">TQSqlRecord</a><li>setGeometry: <a href="tqsqlcursor.html#setGenerated">TQSqlCursor</a> <a href="tqsqlfieldinfo.html#setGenerated">TQSqlFieldInfo</a> <a href="tqsqlrecord.html#setGenerated">TQSqlRecord</a><li>setGeometry:
<a href="qboxlayout.html#setGeometry">TQBoxLayout</a> <a href="qgridlayout.html#setGeometry">TQGridLayout</a> <a href="ntqlayout.html#setGeometry">TQLayout</a> <a href="qlayoutitem.html#setGeometry">TQLayoutItem</a> <a href="qspaceritem.html#setGeometry">TQSpacerItem</a> <a href="tqwidget.html#setGeometry">TQWidget</a> <a href="tqwidgetitem.html#setGeometry">TQWidgetItem</a><li>setGlobalMouseTracking: <a href="qboxlayout.html#setGeometry">TQBoxLayout</a> <a href="qgridlayout.html#setGeometry">TQGridLayout</a> <a href="ntqlayout.html#setGeometry">TQLayout</a> <a href="qlayoutitem.html#setGeometry">TQLayoutItem</a> <a href="qspaceritem.html#setGeometry">TQSpacerItem</a> <a href="tqwidget.html#setGeometry">TQWidget</a> <a href="tqwidgetitem.html#setGeometry">TQWidgetItem</a><li>setGlobalMouseTracking:
<a href="ntqapplication.html#setGlobalMouseTracking">TQApplication</a><li>setGlobalStrut: <a href="ntqapplication.html#setGlobalMouseTracking">TQApplication</a><li>setGlobalStrut:
@ -2737,7 +2737,7 @@ sRect:
<a href="tqsqldatabase.html#setHostName">TQSqlDatabase</a><li>setHour: <a href="tqsqldatabase.html#setHostName">TQSqlDatabase</a><li>setHour:
<a href="qtimeedit.html#setHour">TQTimeEdit</a><li>setHsv: <a href="qtimeedit.html#setHour">TQTimeEdit</a><li>setHsv:
<a href="ntqcolor.html#setHsv">TQColor</a><li>setIODevice: <a href="ntqcolor.html#setHsv">TQColor</a><li>setIODevice:
<a href="qimageio.html#setIODevice">TQImageIO</a><li>setIcon: <a href="tqimageio.html#setIODevice">TQImageIO</a><li>setIcon:
<a href="ntqmessagebox.html#setIcon">TQMessageBox</a> <a href="tqwidget.html#setIcon">TQWidget</a><li>setIconPixmap: <a href="ntqmessagebox.html#setIcon">TQMessageBox</a> <a href="tqwidget.html#setIcon">TQWidget</a><li>setIconPixmap:
<a href="ntqmessagebox.html#setIconPixmap">TQMessageBox</a><li>setIconProvider: <a href="ntqmessagebox.html#setIconPixmap">TQMessageBox</a><li>setIconProvider:
<a href="ntqfiledialog.html#setIconProvider">TQFileDialog</a><li>setIconSet: <a href="ntqfiledialog.html#setIconProvider">TQFileDialog</a><li>setIconSet:
@ -2746,7 +2746,7 @@ sRect:
<a href="tqwidget.html#setIconText">TQWidget</a><li>setId: <a href="tqwidget.html#setIconText">TQWidget</a><li>setId:
<a href="ntqmenudata.html#setId">TQMenuData</a><li>setIdentifier: <a href="ntqmenudata.html#setId">TQMenuData</a><li>setIdentifier:
<a href="qtab.html#setIdentifier">TQTab</a><li>setImage: <a href="qtab.html#setIdentifier">TQTab</a><li>setImage:
<a href="tqcanvaspixmaparray.html#setImage">TQCanvasPixmapArray</a> <a href="ntqclipboard.html#setImage">TQClipboard</a> <a href="qimagedrag.html#setImage">TQImageDrag</a> <a href="qimageio.html#setImage">TQImageIO</a> <a href="qmimesourcefactory.html#setImage">TQMimeSourceFactory</a><li>setInactive: <a href="tqcanvaspixmaparray.html#setImage">TQCanvasPixmapArray</a> <a href="ntqclipboard.html#setImage">TQClipboard</a> <a href="tqimagedrag.html#setImage">TQImageDrag</a> <a href="tqimageio.html#setImage">TQImageIO</a> <a href="qmimesourcefactory.html#setImage">TQMimeSourceFactory</a><li>setInactive:
<a href="ntqpalette.html#setInactive">TQPalette</a><li>setIndent: <a href="ntqpalette.html#setInactive">TQPalette</a><li>setIndent:
<a href="ntqlabel.html#setIndent">TQLabel</a><li>setIndicator: <a href="ntqlabel.html#setIndent">TQLabel</a><li>setIndicator:
<a href="ntqprogressbar.html#setIndicator">TQProgressBar</a><li>setIndicatorFollowsStyle: <a href="ntqprogressbar.html#setIndicator">TQProgressBar</a><li>setIndicatorFollowsStyle:
@ -2797,7 +2797,7 @@ sRect:
<a href="ntqthreadstorage.html#setLocalData">TQThreadStorage</a><li>setLogicalFontSize: <a href="ntqthreadstorage.html#setLocalData">TQThreadStorage</a><li>setLogicalFontSize:
<a href="qstylesheetitem.html#setLogicalFontSize">TQStyleSheetItem</a><li>setLogicalFontSizeStep: <a href="qstylesheetitem.html#setLogicalFontSize">TQStyleSheetItem</a><li>setLogicalFontSizeStep:
<a href="qstylesheetitem.html#setLogicalFontSizeStep">TQStyleSheetItem</a><li>setLooping: <a href="qstylesheetitem.html#setLogicalFontSizeStep">TQStyleSheetItem</a><li>setLooping:
<a href="qimageconsumer.html#setLooping">TQImageConsumer</a><li>setLoops: <a href="tqimageconsumer.html#setLooping">TQImageConsumer</a><li>setLoops:
<a href="ntqsound.html#setLoops">TQSound</a><li>setMainWidget: <a href="ntqsound.html#setLoops">TQSound</a><li>setMainWidget:
<a href="ntqapplication.html#setMainWidget">TQApplication</a><li>setManagerProperty: <a href="ntqapplication.html#setMainWidget">TQApplication</a><li>setManagerProperty:
<a href="ntqsessionmanager.html#setManagerProperty">TQSessionManager</a><li>setMapping: <a href="ntqsessionmanager.html#setManagerProperty">TQSessionManager</a><li>setMapping:
@ -2854,14 +2854,14 @@ sRect:
<a href="tqsqlfield.html#setNull">TQSqlField</a> <a href="tqsqlrecord.html#setNull">TQSqlRecord</a><li>setNullText: <a href="tqsqlfield.html#setNull">TQSqlField</a> <a href="tqsqlrecord.html#setNull">TQSqlRecord</a><li>setNullText:
<a href="tqdatatable.html#setNullText">TQDataTable</a><li>setNum: <a href="tqdatatable.html#setNullText">TQDataTable</a><li>setNum:
<a href="ntqcstring.html#setNum">TQCString</a> <a href="ntqlabel.html#setNum">TQLabel</a> <a href="ntqstring.html#setNum">TQString</a><li>setNumColors: <a href="ntqcstring.html#setNum">TQCString</a> <a href="ntqlabel.html#setNum">TQLabel</a> <a href="ntqstring.html#setNum">TQString</a><li>setNumColors:
<a href="ntqimage.html#setNumColors">TQImage</a><li>setNumCols: <a href="tqimage.html#setNumColors">TQImage</a><li>setNumCols:
<a href="ntqgridview.html#setNumCols">TQGridView</a> <a href="ntqtable.html#setNumCols">TQTable</a><li>setNumCopies: <a href="ntqgridview.html#setNumCols">TQGridView</a> <a href="ntqtable.html#setNumCols">TQTable</a><li>setNumCopies:
<a href="ntqprinter.html#setNumCopies">TQPrinter</a><li>setNumDigits: <a href="ntqprinter.html#setNumCopies">TQPrinter</a><li>setNumDigits:
<a href="ntqlcdnumber.html#setNumDigits">TQLCDNumber</a><li>setNumRows: <a href="ntqlcdnumber.html#setNumDigits">TQLCDNumber</a><li>setNumRows:
<a href="ntqgridview.html#setNumRows">TQGridView</a> <a href="ntqtable.html#setNumRows">TQTable</a><li>setNumber: <a href="ntqgridview.html#setNumRows">TQGridView</a> <a href="ntqtable.html#setNumRows">TQTable</a><li>setNumber:
<a href="tqsqlerror.html#setNumber">TQSqlError</a><li>setOctMode: <a href="tqsqlerror.html#setNumber">TQSqlError</a><li>setOctMode:
<a href="ntqlcdnumber.html#setOctMode">TQLCDNumber</a><li>setOffset: <a href="ntqlcdnumber.html#setOctMode">TQLCDNumber</a><li>setOffset:
<a href="tqcanvaspixmap.html#setOffset">TQCanvasPixmap</a> <a href="ntqdockwindow.html#setOffset">TQDockWindow</a> <a href="ntqheader.html#setOffset">TQHeader</a> <a href="ntqimage.html#setOffset">TQImage</a><li>setOkButton: <a href="tqcanvaspixmap.html#setOffset">TQCanvasPixmap</a> <a href="ntqdockwindow.html#setOffset">TQDockWindow</a> <a href="ntqheader.html#setOffset">TQHeader</a> <a href="tqimage.html#setOffset">TQImage</a><li>setOkButton:
<a href="ntqtabdialog.html#setOkButton">TQTabDialog</a><li>setOn: <a href="ntqtabdialog.html#setOkButton">TQTabDialog</a><li>setOn:
<a href="ntqaction.html#setOn">TQAction</a> <a href="ntqbutton.html#setOn">TQButton</a> <a href="qchecklistitem.html#setOn">TQCheckListItem</a> <a href="ntqpushbutton.html#setOn">TQPushButton</a> <a href="ntqtoolbutton.html#setOn">TQToolButton</a><li>setOpaqueMoving: <a href="ntqaction.html#setOn">TQAction</a> <a href="ntqbutton.html#setOn">TQButton</a> <a href="qchecklistitem.html#setOn">TQCheckListItem</a> <a href="ntqpushbutton.html#setOn">TQPushButton</a> <a href="ntqtoolbutton.html#setOn">TQToolButton</a><li>setOpaqueMoving:
<a href="ntqdockwindow.html#setOpaqueMoving">TQDockWindow</a> <a href="ntqmainwindow.html#setOpaqueMoving">TQMainWindow</a><li>setOpaqueResize: <a href="ntqdockwindow.html#setOpaqueMoving">TQDockWindow</a> <a href="ntqmainwindow.html#setOpaqueMoving">TQMainWindow</a><li>setOpaqueResize:
@ -2892,7 +2892,7 @@ sRect:
<a href="ntqtextedit.html#setPaper">TQTextEdit</a><li>setPaperSource: <a href="ntqtextedit.html#setPaper">TQTextEdit</a><li>setPaperSource:
<a href="ntqprinter.html#setPaperSource">TQPrinter</a><li>setParagraphBackgroundColor: <a href="ntqprinter.html#setPaperSource">TQPrinter</a><li>setParagraphBackgroundColor:
<a href="ntqtextedit.html#setParagraphBackgroundColor">TQTextEdit</a><li>setParameters: <a href="ntqtextedit.html#setParagraphBackgroundColor">TQTextEdit</a><li>setParameters:
<a href="qimageio.html#setParameters">TQImageIO</a><li>setPassword: <a href="tqimageio.html#setParameters">TQImageIO</a><li>setPassword:
<a href="tqsqldatabase.html#setPassword">TQSqlDatabase</a> <a href="ntqurl.html#setPassword">TQUrl</a><li>setPath: <a href="tqsqldatabase.html#setPassword">TQSqlDatabase</a> <a href="ntqurl.html#setPassword">TQUrl</a><li>setPath:
<a href="ntqdir.html#setPath">TQDir</a> <a href="ntqsettings.html#setPath">TQSettings</a> <a href="ntqurl.html#setPath">TQUrl</a><li>setPattern: <a href="ntqdir.html#setPath">TQDir</a> <a href="ntqsettings.html#setPath">TQSettings</a> <a href="ntqurl.html#setPath">TQUrl</a><li>setPattern:
<a href="ntqregexp.html#setPattern">TQRegExp</a><li>setPen: <a href="ntqregexp.html#setPattern">TQRegExp</a><li>setPen:
@ -2900,7 +2900,7 @@ sRect:
<a href="ntqprogressbar.html#setPercentageVisible">TQProgressBar</a><li>setPermissions: <a href="ntqprogressbar.html#setPercentageVisible">TQProgressBar</a><li>setPermissions:
<a href="ntqurlinfo.html#setPermissions">TQUrlInfo</a><li>setPicture: <a href="ntqurlinfo.html#setPermissions">TQUrlInfo</a><li>setPicture:
<a href="qiconviewitem.html#setPicture">TQIconViewItem</a> <a href="ntqlabel.html#setPicture">TQLabel</a><li>setPixel: <a href="qiconviewitem.html#setPicture">TQIconViewItem</a> <a href="ntqlabel.html#setPicture">TQLabel</a><li>setPixel:
<a href="ntqimage.html#setPixel">TQImage</a><li>setPixelAlignment: <a href="tqimage.html#setPixel">TQImage</a><li>setPixelAlignment:
<a href="qpngimagepacker.html#setPixelAlignment">TQPNGImagePacker</a><li>setPixelSize: <a href="qpngimagepacker.html#setPixelAlignment">TQPNGImagePacker</a><li>setPixelSize:
<a href="ntqfont.html#setPixelSize">TQFont</a><li>setPixmap: <a href="ntqfont.html#setPixelSize">TQFont</a><li>setPixmap:
<a href="ntqbrush.html#setPixmap">TQBrush</a> <a href="ntqbutton.html#setPixmap">TQButton</a> <a href="ntqbutton.html#setPixmap">TQCheckBox</a> <a href="ntqclipboard.html#setPixmap">TQClipboard</a> <a href="ntqdragobject.html#setPixmap">TQDragObject</a> <a href="ntqiconset.html#setPixmap">TQIconSet</a> <a href="qiconviewitem.html#setPixmap">TQIconViewItem</a> <a href="ntqlabel.html#setPixmap">TQLabel</a> <a href="qlistviewitem.html#setPixmap">TQListViewItem</a> <a href="qmimesourcefactory.html#setPixmap">TQMimeSourceFactory</a> <a href="ntqbutton.html#setPixmap">TQPushButton</a> <a href="ntqbutton.html#setPixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#setPixmap">TQSplashScreen</a> <a href="ntqtable.html#setPixmap">TQTable</a> <a href="qtableitem.html#setPixmap">TQTableItem</a><li>setPixmapRect: <a href="ntqbrush.html#setPixmap">TQBrush</a> <a href="ntqbutton.html#setPixmap">TQButton</a> <a href="ntqbutton.html#setPixmap">TQCheckBox</a> <a href="ntqclipboard.html#setPixmap">TQClipboard</a> <a href="ntqdragobject.html#setPixmap">TQDragObject</a> <a href="ntqiconset.html#setPixmap">TQIconSet</a> <a href="qiconviewitem.html#setPixmap">TQIconViewItem</a> <a href="ntqlabel.html#setPixmap">TQLabel</a> <a href="qlistviewitem.html#setPixmap">TQListViewItem</a> <a href="qmimesourcefactory.html#setPixmap">TQMimeSourceFactory</a> <a href="ntqbutton.html#setPixmap">TQPushButton</a> <a href="ntqbutton.html#setPixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#setPixmap">TQSplashScreen</a> <a href="ntqtable.html#setPixmap">TQTable</a> <a href="qtableitem.html#setPixmap">TQTableItem</a><li>setPixmapRect:
@ -2928,7 +2928,7 @@ sRect:
<a href="qaxbase.html#setPropertyWritable">TQAxBase</a><li>setProtocol: <a href="qaxbase.html#setPropertyWritable">TQAxBase</a><li>setProtocol:
<a href="ntqurl.html#setProtocol">TQUrl</a><li>setProtocolDetail: <a href="ntqurl.html#setProtocol">TQUrl</a><li>setProtocolDetail:
<a href="qnetworkoperation.html#setProtocolDetail">TQNetworkOperation</a><li>setQuality: <a href="qnetworkoperation.html#setProtocolDetail">TQNetworkOperation</a><li>setQuality:
<a href="qimageio.html#setQuality">TQImageIO</a><li>setQuery: <a href="tqimageio.html#setQuality">TQImageIO</a><li>setQuery:
<a href="tqsqlresult.html#setQuery">TQSqlResult</a> <a href="ntqurl.html#setQuery">TQUrl</a><li>setRadioButtonExclusive: <a href="tqsqlresult.html#setQuery">TQSqlResult</a> <a href="ntqurl.html#setQuery">TQUrl</a><li>setRadioButtonExclusive:
<a href="ntqbuttongroup.html#setRadioButtonExclusive">TQButtonGroup</a><li>setRange: <a href="ntqbuttongroup.html#setRadioButtonExclusive">TQButtonGroup</a><li>setRange:
<a href="qdateedit.html#setRange">TQDateEdit</a> <a href="qdoublevalidator.html#setRange">TQDoubleValidator</a> <a href="qintvalidator.html#setRange">TQIntValidator</a> <a href="ntqrangecontrol.html#setRange">TQRangeControl</a> <a href="ntqrangecontrol.html#setRange">TQSlider</a> <a href="qtimeedit.html#setRange">TQTimeEdit</a><li>setRasterOp: <a href="qdateedit.html#setRange">TQDateEdit</a> <a href="qdoublevalidator.html#setRange">TQDoubleValidator</a> <a href="qintvalidator.html#setRange">TQIntValidator</a> <a href="ntqrangecontrol.html#setRange">TQRangeControl</a> <a href="ntqrangecontrol.html#setRange">TQSlider</a> <a href="qtimeedit.html#setRange">TQTimeEdit</a><li>setRasterOp:
@ -2996,7 +2996,7 @@ sRect:
<a href="ntqlistview.html#setShowSortIndicator">TQListView</a><li>setShowToolTips: <a href="ntqlistview.html#setShowSortIndicator">TQListView</a><li>setShowToolTips:
<a href="ntqiconview.html#setShowToolTips">TQIconView</a> <a href="ntqlistview.html#setShowToolTips">TQListView</a><li>setShown: <a href="ntqiconview.html#setShowToolTips">TQIconView</a> <a href="ntqlistview.html#setShowToolTips">TQListView</a><li>setShown:
<a href="tqwidget.html#setShown">TQWidget</a><li>setSize: <a href="tqwidget.html#setShown">TQWidget</a><li>setSize:
<a href="tqcanvasellipse.html#setSize">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#setSize">TQCanvasRectangle</a> <a href="tqdatatable.html#setSize">TQDataTable</a> <a href="qimageconsumer.html#setSize">TQImageConsumer</a> <a href="ntqrect.html#setSize">TQRect</a> <a href="ntqurlinfo.html#setSize">TQUrlInfo</a><li>setSizeGripEnabled: <a href="tqcanvasellipse.html#setSize">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#setSize">TQCanvasRectangle</a> <a href="tqdatatable.html#setSize">TQDataTable</a> <a href="tqimageconsumer.html#setSize">TQImageConsumer</a> <a href="ntqrect.html#setSize">TQRect</a> <a href="ntqurlinfo.html#setSize">TQUrlInfo</a><li>setSizeGripEnabled:
<a href="ntqdialog.html#setSizeGripEnabled">TQDialog</a> <a href="ntqstatusbar.html#setSizeGripEnabled">TQStatusBar</a><li>setSizeIncrement: <a href="ntqdialog.html#setSizeGripEnabled">TQDialog</a> <a href="ntqstatusbar.html#setSizeGripEnabled">TQStatusBar</a><li>setSizeIncrement:
<a href="tqwidget.html#setSizeIncrement">TQWidget</a><li>setSizeLimit: <a href="tqwidget.html#setSizeIncrement">TQWidget</a><li>setSizeLimit:
<a href="ntqcombobox.html#setSizeLimit">TQComboBox</a><li>setSizePolicy: <a href="ntqcombobox.html#setSizeLimit">TQComboBox</a><li>setSizePolicy:
@ -3022,7 +3022,7 @@ sRect:
<a href="ntqapplication.html#setStartDragTime">TQApplication</a><li>setState: <a href="ntqapplication.html#setStartDragTime">TQApplication</a><li>setState:
<a href="qaxscriptengine.html#setState">TQAxScriptEngine</a> <a href="ntqbutton.html#setState">TQButton</a> <a href="qchecklistitem.html#setState">TQCheckListItem</a> <a href="ntqiodevice.html#setState">TQIODevice</a> <a href="qnetworkoperation.html#setState">TQNetworkOperation</a><li>setStaticBackground: <a href="qaxscriptengine.html#setState">TQAxScriptEngine</a> <a href="ntqbutton.html#setState">TQButton</a> <a href="qchecklistitem.html#setState">TQCheckListItem</a> <a href="ntqiodevice.html#setState">TQIODevice</a> <a href="qnetworkoperation.html#setState">TQNetworkOperation</a><li>setStaticBackground:
<a href="ntqscrollview.html#setStaticBackground">TQScrollView</a><li>setStatus: <a href="ntqscrollview.html#setStaticBackground">TQScrollView</a><li>setStatus:
<a href="ntqiodevice.html#setStatus">TQIODevice</a> <a href="qimageio.html#setStatus">TQImageIO</a><li>setStatusTip: <a href="ntqiodevice.html#setStatus">TQIODevice</a> <a href="tqimageio.html#setStatus">TQImageIO</a><li>setStatusTip:
<a href="ntqaction.html#setStatusTip">TQAction</a><li>setStencil: <a href="ntqaction.html#setStatusTip">TQAction</a><li>setStencil:
<a href="qglformat.html#setStencil">TQGLFormat</a><li>setSteps: <a href="qglformat.html#setStencil">TQGLFormat</a><li>setSteps:
<a href="ntqrangecontrol.html#setSteps">TQRangeControl</a><li>setStereo: <a href="ntqrangecontrol.html#setSteps">TQRangeControl</a><li>setStereo:
@ -3055,7 +3055,7 @@ sRect:
<a href="ntqpainter.html#setTabStops">TQPainter</a><li>setTabToolTip: <a href="ntqpainter.html#setTabStops">TQPainter</a><li>setTabToolTip:
<a href="ntqtabwidget.html#setTabToolTip">TQTabWidget</a><li>setTagName: <a href="ntqtabwidget.html#setTabToolTip">TQTabWidget</a><li>setTagName:
<a href="tqdomelement.html#setTagName">TQDomElement</a><li>setText: <a href="tqdomelement.html#setTagName">TQDomElement</a><li>setText:
<a href="qaccessibleinterface.html#setText">TQAccessibleInterface</a> <a href="ntqaction.html#setText">TQAction</a> <a href="ntqbutton.html#setText">TQButton</a> <a href="tqcanvastext.html#setText">TQCanvasText</a> <a href="ntqbutton.html#setText">TQCheckBox</a> <a href="ntqclipboard.html#setText">TQClipboard</a> <a href="qiconviewitem.html#setText">TQIconViewItem</a> <a href="ntqimage.html#setText">TQImage</a> <a href="ntqlabel.html#setText">TQLabel</a> <a href="ntqlineedit.html#setText">TQLineEdit</a> <a href="qlistboxitem.html#setText">TQListBoxItem</a> <a href="qlistviewitem.html#setText">TQListViewItem</a> <a href="ntqmessagebox.html#setText">TQMessageBox</a> <a href="qmimesourcefactory.html#setText">TQMimeSourceFactory</a> <a href="ntqbutton.html#setText">TQPushButton</a> <a href="ntqbutton.html#setText">TQRadioButton</a> <a href="qtab.html#setText">TQTab</a> <a href="ntqtable.html#setText">TQTable</a> <a href="qtableitem.html#setText">TQTableItem</a> <a href="qtextdrag.html#setText">TQTextDrag</a> <a href="ntqtextedit.html#setText">TQTextEdit</a><li>setTextFlags: <a href="qaccessibleinterface.html#setText">TQAccessibleInterface</a> <a href="ntqaction.html#setText">TQAction</a> <a href="ntqbutton.html#setText">TQButton</a> <a href="tqcanvastext.html#setText">TQCanvasText</a> <a href="ntqbutton.html#setText">TQCheckBox</a> <a href="ntqclipboard.html#setText">TQClipboard</a> <a href="qiconviewitem.html#setText">TQIconViewItem</a> <a href="tqimage.html#setText">TQImage</a> <a href="ntqlabel.html#setText">TQLabel</a> <a href="ntqlineedit.html#setText">TQLineEdit</a> <a href="qlistboxitem.html#setText">TQListBoxItem</a> <a href="qlistviewitem.html#setText">TQListViewItem</a> <a href="ntqmessagebox.html#setText">TQMessageBox</a> <a href="qmimesourcefactory.html#setText">TQMimeSourceFactory</a> <a href="ntqbutton.html#setText">TQPushButton</a> <a href="ntqbutton.html#setText">TQRadioButton</a> <a href="qtab.html#setText">TQTab</a> <a href="ntqtable.html#setText">TQTable</a> <a href="qtableitem.html#setText">TQTableItem</a> <a href="qtextdrag.html#setText">TQTextDrag</a> <a href="ntqtextedit.html#setText">TQTextEdit</a><li>setTextFlags:
<a href="tqcanvastext.html#setTextFlags">TQCanvasText</a><li>setTextFormat: <a href="tqcanvastext.html#setTextFlags">TQCanvasText</a><li>setTextFormat:
<a href="ntqlabel.html#setTextFormat">TQLabel</a> <a href="ntqmessagebox.html#setTextFormat">TQMessageBox</a> <a href="ntqtextedit.html#setTextFormat">TQTextEdit</a><li>setTextLabel: <a href="ntqlabel.html#setTextFormat">TQLabel</a> <a href="ntqmessagebox.html#setTextFormat">TQMessageBox</a> <a href="ntqtextedit.html#setTextFormat">TQTextEdit</a><li>setTextLabel:
<a href="ntqtoolbutton.html#setTextLabel">TQToolButton</a><li>setTextPosition: <a href="ntqtoolbutton.html#setTextLabel">TQToolButton</a><li>setTextPosition:
@ -3187,7 +3187,7 @@ sRect:
<a href="ntqtextcodec.html#simpleHeuristicNameMatch">TQTextCodec</a><li>simplifyWhiteSpace: <a href="ntqtextcodec.html#simpleHeuristicNameMatch">TQTextCodec</a><li>simplifyWhiteSpace:
<a href="ntqcstring.html#simplifyWhiteSpace">TQCString</a> <a href="ntqstring.html#simplifyWhiteSpace">TQString</a><li>singleShot: <a href="ntqcstring.html#simplifyWhiteSpace">TQCString</a> <a href="ntqstring.html#simplifyWhiteSpace">TQString</a><li>singleShot:
<a href="ntqtimer.html#singleShot">TQTimer</a><li>size: <a href="ntqtimer.html#singleShot">TQTimer</a><li>size:
<a href="ntqasciicache.html#size">TQAsciiCache</a> <a href="ntqasciidict.html#size">TQAsciiDict</a> <a href="ntqbitarray.html#size">TQBitArray</a> <a href="ntqcache.html#size">TQCache</a> <a href="tqcanvas.html#size">TQCanvas</a> <a href="tqcanvasrectangle.html#size">TQCanvasRectangle</a> <a href="ntqdict.html#size">TQDict</a> <a href="qdirectpainter.html#size">TQDirectPainter</a> <a href="ntqfile.html#size">TQFile</a> <a href="ntqfileinfo.html#size">TQFileInfo</a> <a href="ntqfontmetrics.html#size">TQFontMetrics</a> <a href="ntqglcolormap.html#size">TQGLColormap</a> <a href="ntqiodevice.html#size">TQIODevice</a> <a href="qiconviewitem.html#size">TQIconViewItem</a> <a href="ntqimage.html#size">TQImage</a> <a href="ntqintcache.html#size">TQIntCache</a> <a href="ntqintdict.html#size">TQIntDict</a> <a href="tqmap.html#size">TQMap</a> <a href="ntqmemarray.html#size">TQMemArray</a> <a href="ntqpicture.html#size">TQPicture</a> <a href="ntqpixmap.html#size">TQPixmap</a> <a href="tqptrdict.html#size">TQPtrDict</a> <a href="tqptrvector.html#size">TQPtrVector</a> <a href="ntqrect.html#size">TQRect</a> <a href="qresizeevent.html#size">TQResizeEvent</a> <a href="ntqsocket.html#size">TQSocket</a> <a href="tqsqlquery.html#size">TQSqlQuery</a> <a href="tqsqlresult.html#size">TQSqlResult</a> <a href="ntqurlinfo.html#size">TQUrlInfo</a> <a href="tqvaluelist.html#size">TQValueList</a> <a href="tqvaluevector.html#size">TQValueVector</a> <a href="tqwidget.html#size">TQWidget</a><li>sizeChange: <a href="ntqasciicache.html#size">TQAsciiCache</a> <a href="ntqasciidict.html#size">TQAsciiDict</a> <a href="ntqbitarray.html#size">TQBitArray</a> <a href="ntqcache.html#size">TQCache</a> <a href="tqcanvas.html#size">TQCanvas</a> <a href="tqcanvasrectangle.html#size">TQCanvasRectangle</a> <a href="ntqdict.html#size">TQDict</a> <a href="qdirectpainter.html#size">TQDirectPainter</a> <a href="ntqfile.html#size">TQFile</a> <a href="ntqfileinfo.html#size">TQFileInfo</a> <a href="ntqfontmetrics.html#size">TQFontMetrics</a> <a href="ntqglcolormap.html#size">TQGLColormap</a> <a href="ntqiodevice.html#size">TQIODevice</a> <a href="qiconviewitem.html#size">TQIconViewItem</a> <a href="tqimage.html#size">TQImage</a> <a href="ntqintcache.html#size">TQIntCache</a> <a href="ntqintdict.html#size">TQIntDict</a> <a href="tqmap.html#size">TQMap</a> <a href="ntqmemarray.html#size">TQMemArray</a> <a href="ntqpicture.html#size">TQPicture</a> <a href="ntqpixmap.html#size">TQPixmap</a> <a href="tqptrdict.html#size">TQPtrDict</a> <a href="tqptrvector.html#size">TQPtrVector</a> <a href="ntqrect.html#size">TQRect</a> <a href="qresizeevent.html#size">TQResizeEvent</a> <a href="ntqsocket.html#size">TQSocket</a> <a href="tqsqlquery.html#size">TQSqlQuery</a> <a href="tqsqlresult.html#size">TQSqlResult</a> <a href="ntqurlinfo.html#size">TQUrlInfo</a> <a href="tqvaluelist.html#size">TQValueList</a> <a href="tqvaluevector.html#size">TQValueVector</a> <a href="tqwidget.html#size">TQWidget</a><li>sizeChange:
<a href="ntqheader.html#sizeChange">TQHeader</a><li>sizeFromContents: <a href="ntqheader.html#sizeChange">TQHeader</a><li>sizeFromContents:
<a href="ntqstyle.html#sizeFromContents">TQStyle</a><li>sizeHint: <a href="ntqstyle.html#sizeFromContents">TQStyle</a><li>sizeHint:
<a href="qboxlayout.html#sizeHint">TQBoxLayout</a> <a href="tqcanvasview.html#sizeHint">TQCanvasView</a> <a href="qcustommenuitem.html#sizeHint">TQCustomMenuItem</a> <a href="qgridlayout.html#sizeHint">TQGridLayout</a> <a href="qlayoutitem.html#sizeHint">TQLayoutItem</a> <a href="ntqlineedit.html#sizeHint">TQLineEdit</a> <a href="ntqprogressdialog.html#sizeHint">TQProgressDialog</a> <a href="ntqsizegrip.html#sizeHint">TQSizeGrip</a> <a href="qspaceritem.html#sizeHint">TQSpacerItem</a> <a href="qtableitem.html#sizeHint">TQTableItem</a> <a href="tqwidget.html#sizeHint">TQWidget</a> <a href="tqwidgetitem.html#sizeHint">TQWidgetItem</a><li>sizeIncrement: <a href="qboxlayout.html#sizeHint">TQBoxLayout</a> <a href="tqcanvasview.html#sizeHint">TQCanvasView</a> <a href="qcustommenuitem.html#sizeHint">TQCustomMenuItem</a> <a href="qgridlayout.html#sizeHint">TQGridLayout</a> <a href="qlayoutitem.html#sizeHint">TQLayoutItem</a> <a href="ntqlineedit.html#sizeHint">TQLineEdit</a> <a href="ntqprogressdialog.html#sizeHint">TQProgressDialog</a> <a href="ntqsizegrip.html#sizeHint">TQSizeGrip</a> <a href="qspaceritem.html#sizeHint">TQSpacerItem</a> <a href="qtableitem.html#sizeHint">TQTableItem</a> <a href="tqwidget.html#sizeHint">TQWidget</a> <a href="tqwidgetitem.html#sizeHint">TQWidgetItem</a><li>sizeIncrement:
@ -3206,7 +3206,7 @@ sRect:
<a href="ntqmetaobject.html#slotNames">TQMetaObject</a><li>slotUpdate: <a href="ntqmetaobject.html#slotNames">TQMetaObject</a><li>slotUpdate:
<a href="ntqiconview.html#slotUpdate">TQIconView</a><li>smallDecimalPoint: <a href="ntqiconview.html#slotUpdate">TQIconView</a><li>smallDecimalPoint:
<a href="ntqlcdnumber.html#smallDecimalPoint">TQLCDNumber</a><li>smoothScale: <a href="ntqlcdnumber.html#smallDecimalPoint">TQLCDNumber</a><li>smoothScale:
<a href="ntqimage.html#smoothScale">TQImage</a><li>smoothSizes: <a href="tqimage.html#smoothScale">TQImage</a><li>smoothSizes:
<a href="ntqfontdatabase.html#smoothSizes">TQFontDatabase</a><li>socket: <a href="ntqfontdatabase.html#smoothSizes">TQFontDatabase</a><li>socket:
<a href="ntqserversocket.html#socket">TQServerSocket</a> <a href="ntqsocket.html#socket">TQSocket</a> <a href="ntqsocketdevice.html#socket">TQSocketDevice</a> <a href="ntqsocketnotifier.html#socket">TQSocketNotifier</a><li>socketDevice: <a href="ntqserversocket.html#socket">TQServerSocket</a> <a href="ntqsocket.html#socket">TQSocket</a> <a href="ntqsocketdevice.html#socket">TQSocketDevice</a> <a href="ntqsocketnotifier.html#socket">TQSocketNotifier</a><li>socketDevice:
<a href="ntqserversocket.html#socketDevice">TQServerSocket</a> <a href="ntqsocket.html#socketDevice">TQSocket</a><li>sort: <a href="ntqserversocket.html#socketDevice">TQServerSocket</a> <a href="ntqsocket.html#socketDevice">TQSocket</a><li>sort:
@ -3261,7 +3261,7 @@ sRect:
<a href="qchecklistitem.html#stateChange">TQCheckListItem</a><li>stateChanged: <a href="qchecklistitem.html#stateChange">TQCheckListItem</a><li>stateChanged:
<a href="qaxscript.html#stateChanged">TQAxScript</a> <a href="ntqbutton.html#stateChanged">TQButton</a> <a href="ntqbutton.html#stateChanged">TQCheckBox</a> <a href="ntqftp.html#stateChanged">TQFtp</a> <a href="ntqhttp.html#stateChanged">TQHttp</a> <a href="ntqbutton.html#stateChanged">TQPushButton</a> <a href="ntqbutton.html#stateChanged">TQRadioButton</a><li>statistics: <a href="qaxscript.html#stateChanged">TQAxScript</a> <a href="ntqbutton.html#stateChanged">TQButton</a> <a href="ntqbutton.html#stateChanged">TQCheckBox</a> <a href="ntqftp.html#stateChanged">TQFtp</a> <a href="ntqhttp.html#stateChanged">TQHttp</a> <a href="ntqbutton.html#stateChanged">TQPushButton</a> <a href="ntqbutton.html#stateChanged">TQRadioButton</a><li>statistics:
<a href="ntqasciicache.html#statistics">TQAsciiCache</a> <a href="ntqasciidict.html#statistics">TQAsciiDict</a> <a href="ntqcache.html#statistics">TQCache</a> <a href="ntqdict.html#statistics">TQDict</a> <a href="ntqintcache.html#statistics">TQIntCache</a> <a href="ntqintdict.html#statistics">TQIntDict</a> <a href="tqptrdict.html#statistics">TQPtrDict</a><li>status: <a href="ntqasciicache.html#statistics">TQAsciiCache</a> <a href="ntqasciidict.html#statistics">TQAsciiDict</a> <a href="ntqcache.html#statistics">TQCache</a> <a href="ntqdict.html#statistics">TQDict</a> <a href="ntqintcache.html#statistics">TQIntCache</a> <a href="ntqintdict.html#statistics">TQIntDict</a> <a href="tqptrdict.html#statistics">TQPtrDict</a><li>status:
<a href="ntqiodevice.html#status">TQIODevice</a> <a href="qimageio.html#status">TQImageIO</a> <a href="qnpinstance.html#status">TQNPInstance</a><li>statusBar: <a href="ntqiodevice.html#status">TQIODevice</a> <a href="tqimageio.html#status">TQImageIO</a> <a href="qnpinstance.html#status">TQNPInstance</a><li>statusBar:
<a href="ntqmainwindow.html#statusBar">TQMainWindow</a><li>statusCode: <a href="ntqmainwindow.html#statusBar">TQMainWindow</a><li>statusCode:
<a href="qhttpresponseheader.html#statusCode">TQHttpResponseHeader</a><li>statusTip: <a href="qhttpresponseheader.html#statusCode">TQHttpResponseHeader</a><li>statusTip:
<a href="ntqaction.html#statusTip">TQAction</a><li>stayTopLevel: <a href="ntqaction.html#statusTip">TQAction</a><li>stayTopLevel:
@ -3312,14 +3312,14 @@ sRect:
<a href="qglcontext.html#swapBuffers">TQGLContext</a> <a href="qglwidget.html#swapBuffers">TQGLWidget</a><li>swapCells: <a href="qglcontext.html#swapBuffers">TQGLContext</a> <a href="qglwidget.html#swapBuffers">TQGLWidget</a><li>swapCells:
<a href="ntqtable.html#swapCells">TQTable</a><li>swapColumns: <a href="ntqtable.html#swapCells">TQTable</a><li>swapColumns:
<a href="ntqtable.html#swapColumns">TQTable</a><li>swapRGB: <a href="ntqtable.html#swapColumns">TQTable</a><li>swapRGB:
<a href="ntqimage.html#swapRGB">TQImage</a><li>swapRows: <a href="tqimage.html#swapRGB">TQImage</a><li>swapRows:
<a href="ntqtable.html#swapRows">TQTable</a><li>sync: <a href="ntqtable.html#swapRows">TQTable</a><li>sync:
<a href="ntqtextedit.html#sync">TQTextEdit</a><li>syncX: <a href="ntqtextedit.html#sync">TQTextEdit</a><li>syncX:
<a href="ntqapplication.html#syncX">TQApplication</a><li>syntaxHighlighter: <a href="ntqapplication.html#syncX">TQApplication</a><li>syntaxHighlighter:
<a href="ntqtextedit.html#syntaxHighlighter">TQTextEdit</a><li>system: <a href="ntqtextedit.html#syntaxHighlighter">TQTextEdit</a><li>system:
<a href="ntqlocale.html#system">TQLocale</a><li>systemBitOrder: <a href="ntqlocale.html#system">TQLocale</a><li>systemBitOrder:
<a href="ntqimage.html#systemBitOrder">TQImage</a><li>systemByteOrder: <a href="tqimage.html#systemBitOrder">TQImage</a><li>systemByteOrder:
<a href="ntqimage.html#systemByteOrder">TQImage</a><li>systemId: <a href="tqimage.html#systemByteOrder">TQImage</a><li>systemId:
<a href="tqdomdocumenttype.html#systemId">TQDomDocumentType</a> <a href="tqdomentity.html#systemId">TQDomEntity</a> <a href="tqdomnotation.html#systemId">TQDomNotation</a> <a href="tqxmlparseexception.html#systemId">TQXmlParseException</a><li><a name="t"></a> <a href="tqdomdocumenttype.html#systemId">TQDomDocumentType</a> <a href="tqdomentity.html#systemId">TQDomEntity</a> <a href="tqdomnotation.html#systemId">TQDomNotation</a> <a href="tqxmlparseexception.html#systemId">TQXmlParseException</a><li><a name="t"></a>
tab: tab:
<a href="qstyleoption.html#tab">TQStyleOption</a> <a href="ntqtabbar.html#tab">TQTabBar</a><li>tabArray: <a href="qstyleoption.html#tab">TQStyleOption</a> <a href="ntqtabbar.html#tab">TQTabBar</a><li>tabArray:
@ -3351,18 +3351,18 @@ tab:
<a href="ntqbitarray.html#testBit">TQBitArray</a><li>testOption: <a href="ntqbitarray.html#testBit">TQBitArray</a><li>testOption:
<a href="qglformat.html#testOption">TQGLFormat</a><li>testWFlags: <a href="qglformat.html#testOption">TQGLFormat</a><li>testWFlags:
<a href="tqwidget.html#testWFlags">TQWidget</a><li>text: <a href="tqwidget.html#testWFlags">TQWidget</a><li>text:
<a href="qaccessibleinterface.html#text">TQAccessibleInterface</a> <a href="ntqaction.html#text">TQAction</a> <a href="ntqbutton.html#text">TQButton</a> <a href="tqcanvastext.html#text">TQCanvasText</a> <a href="ntqbutton.html#text">TQCheckBox</a> <a href="qchecklistitem.html#text">TQCheckListItem</a> <a href="ntqclipboard.html#text">TQClipboard</a> <a href="qcolorgroup.html#text">TQColorGroup</a> <a href="ntqcombobox.html#text">TQComboBox</a> <a href="qcombotableitem.html#text">TQComboTableItem</a> <a href="tqdatatable.html#text">TQDataTable</a> <a href="tqdomelement.html#text">TQDomElement</a> <a href="qimevent.html#text">TQIMEvent</a> <a href="qiconviewitem.html#text">TQIconViewItem</a> <a href="ntqimage.html#text">TQImage</a> <a href="qkeyevent.html#text">TQKeyEvent</a> <a href="ntqlabel.html#text">TQLabel</a> <a href="ntqlineedit.html#text">TQLineEdit</a> <a href="ntqlistbox.html#text">TQListBox</a> <a href="qlistboxitem.html#text">TQListBoxItem</a> <a href="qlistviewitem.html#text">TQListViewItem</a> <a href="ntqmenudata.html#text">TQMenuData</a> <a href="ntqmessagebox.html#text">TQMessageBox</a> <a href="ntqmenudata.html#text">TQPopupMenu</a> <a href="ntqbutton.html#text">TQPushButton</a> <a href="ntqbutton.html#text">TQRadioButton</a> <a href="ntqspinbox.html#text">TQSpinBox</a> <a href="tqsqlerror.html#text">TQSqlError</a> <a href="qtab.html#text">TQTab</a> <a href="ntqtable.html#text">TQTable</a> <a href="qtableitem.html#text">TQTableItem</a> <a href="ntqtextedit.html#text">TQTextEdit</a> <a href="ntqwhatsthis.html#text">TQWhatsThis</a><li>textChanged: <a href="qaccessibleinterface.html#text">TQAccessibleInterface</a> <a href="ntqaction.html#text">TQAction</a> <a href="ntqbutton.html#text">TQButton</a> <a href="tqcanvastext.html#text">TQCanvasText</a> <a href="ntqbutton.html#text">TQCheckBox</a> <a href="qchecklistitem.html#text">TQCheckListItem</a> <a href="ntqclipboard.html#text">TQClipboard</a> <a href="qcolorgroup.html#text">TQColorGroup</a> <a href="ntqcombobox.html#text">TQComboBox</a> <a href="qcombotableitem.html#text">TQComboTableItem</a> <a href="tqdatatable.html#text">TQDataTable</a> <a href="tqdomelement.html#text">TQDomElement</a> <a href="qimevent.html#text">TQIMEvent</a> <a href="qiconviewitem.html#text">TQIconViewItem</a> <a href="tqimage.html#text">TQImage</a> <a href="qkeyevent.html#text">TQKeyEvent</a> <a href="ntqlabel.html#text">TQLabel</a> <a href="ntqlineedit.html#text">TQLineEdit</a> <a href="ntqlistbox.html#text">TQListBox</a> <a href="qlistboxitem.html#text">TQListBoxItem</a> <a href="qlistviewitem.html#text">TQListViewItem</a> <a href="ntqmenudata.html#text">TQMenuData</a> <a href="ntqmessagebox.html#text">TQMessageBox</a> <a href="ntqmenudata.html#text">TQPopupMenu</a> <a href="ntqbutton.html#text">TQPushButton</a> <a href="ntqbutton.html#text">TQRadioButton</a> <a href="ntqspinbox.html#text">TQSpinBox</a> <a href="tqsqlerror.html#text">TQSqlError</a> <a href="qtab.html#text">TQTab</a> <a href="ntqtable.html#text">TQTable</a> <a href="qtableitem.html#text">TQTableItem</a> <a href="ntqtextedit.html#text">TQTextEdit</a> <a href="ntqwhatsthis.html#text">TQWhatsThis</a><li>textChanged:
<a href="ntqcombobox.html#textChanged">TQComboBox</a> <a href="ntqlineedit.html#textChanged">TQLineEdit</a> <a href="ntqspinbox.html#textChanged">TQSpinBox</a> <a href="ntqtextedit.html#textChanged">TQTextEdit</a><li>textCursor: <a href="ntqcombobox.html#textChanged">TQComboBox</a> <a href="ntqlineedit.html#textChanged">TQLineEdit</a> <a href="ntqspinbox.html#textChanged">TQSpinBox</a> <a href="ntqtextedit.html#textChanged">TQTextEdit</a><li>textCursor:
<a href="ntqtextedit.html#textCursor">TQTextEdit</a><li>textEdit: <a href="ntqtextedit.html#textCursor">TQTextEdit</a><li>textEdit:
<a href="ntqsyntaxhighlighter.html#textEdit">TQSyntaxHighlighter</a><li>textFlags: <a href="ntqsyntaxhighlighter.html#textEdit">TQSyntaxHighlighter</a><li>textFlags:
<a href="tqcanvastext.html#textFlags">TQCanvasText</a><li>textFor: <a href="tqcanvastext.html#textFlags">TQCanvasText</a><li>textFor:
<a href="ntqtooltip.html#textFor">TQToolTip</a> <a href="ntqwhatsthis.html#textFor">TQWhatsThis</a><li>textFormat: <a href="ntqtooltip.html#textFor">TQToolTip</a> <a href="ntqwhatsthis.html#textFor">TQWhatsThis</a><li>textFormat:
<a href="ntqlabel.html#textFormat">TQLabel</a> <a href="ntqmessagebox.html#textFormat">TQMessageBox</a> <a href="ntqtextedit.html#textFormat">TQTextEdit</a><li>textKeys: <a href="ntqlabel.html#textFormat">TQLabel</a> <a href="ntqmessagebox.html#textFormat">TQMessageBox</a> <a href="ntqtextedit.html#textFormat">TQTextEdit</a><li>textKeys:
<a href="ntqimage.html#textKeys">TQImage</a><li>textLabel: <a href="tqimage.html#textKeys">TQImage</a><li>textLabel:
<a href="ntqtoolbutton.html#textLabel">TQToolButton</a><li>textLanguages: <a href="ntqtoolbutton.html#textLabel">TQToolButton</a><li>textLanguages:
<a href="ntqimage.html#textLanguages">TQImage</a><li>textLine: <a href="tqimage.html#textLanguages">TQImage</a><li>textLine:
<a href="ntqmultilineedit.html#textLine">TQMultiLineEdit</a><li>textList: <a href="ntqmultilineedit.html#textLine">TQMultiLineEdit</a><li>textList:
<a href="ntqimage.html#textList">TQImage</a><li>textPosition: <a href="tqimage.html#textList">TQImage</a><li>textPosition:
<a href="ntqtoolbutton.html#textPosition">TQToolButton</a><li>textRect: <a href="ntqtoolbutton.html#textPosition">TQToolButton</a><li>textRect:
<a href="qiconviewitem.html#textRect">TQIconViewItem</a><li>texts: <a href="qiconviewitem.html#textRect">TQIconViewItem</a><li>texts:
<a href="ntqdns.html#texts">TQDns</a><li>tickInterval: <a href="ntqdns.html#texts">TQDns</a><li>tickInterval:
@ -3511,7 +3511,7 @@ ucs2:
<a href="tqxmldtdhandler.html#unparsedEntityDecl">TQXmlDTDHandler</a><li>unpause: <a href="tqxmldtdhandler.html#unparsedEntityDecl">TQXmlDTDHandler</a><li>unpause:
<a href="ntqmovie.html#unpause">TQMovie</a><li>unregisterClass: <a href="ntqmovie.html#unpause">TQMovie</a><li>unregisterClass:
<a href="qaxfactory.html#unregisterClass">TQAxFactory</a><li>unregisterDecoderFactory: <a href="qaxfactory.html#unregisterClass">TQAxFactory</a><li>unregisterDecoderFactory:
<a href="qimagedecoder.html#unregisterDecoderFactory">TQImageDecoder</a><li>unregisterSocketNotifier: <a href="tqimagedecoder.html#unregisterDecoderFactory">TQImageDecoder</a><li>unregisterSocketNotifier:
<a href="ntqeventloop.html#unregisterSocketNotifier">TQEventLoop</a><li>unsetCursor: <a href="ntqeventloop.html#unregisterSocketNotifier">TQEventLoop</a><li>unsetCursor:
<a href="tqwidget.html#unsetCursor">TQWidget</a><li>unsetDevice: <a href="tqwidget.html#unsetCursor">TQWidget</a><li>unsetDevice:
<a href="ntqdatastream.html#unsetDevice">TQDataStream</a> <a href="ntqtextstream.html#unsetDevice">TQTextStream</a><li>unsetFont: <a href="ntqdatastream.html#unsetDevice">TQDataStream</a> <a href="ntqtextstream.html#unsetDevice">TQTextStream</a><li>unsetFont:
@ -3555,7 +3555,7 @@ ucs2:
<a href="ntqstring.html#utf8">TQString</a><li><a name="v"></a> <a href="ntqstring.html#utf8">TQString</a><li><a name="v"></a>
vScrollBarMode: vScrollBarMode:
<a href="ntqscrollview.html#vScrollBarMode">TQScrollView</a><li>valid: <a href="ntqscrollview.html#vScrollBarMode">TQScrollView</a><li>valid:
<a href="ntqimage.html#valid">TQImage</a><li>validChunk: <a href="tqimage.html#valid">TQImage</a><li>validChunk:
<a href="tqcanvas.html#validChunk">TQCanvas</a><li>validate: <a href="tqcanvas.html#validChunk">TQCanvas</a><li>validate:
<a href="qdoublevalidator.html#validate">TQDoubleValidator</a> <a href="qintvalidator.html#validate">TQIntValidator</a> <a href="qregexpvalidator.html#validate">TQRegExpValidator</a> <a href="ntqvalidator.html#validate">TQValidator</a><li>validateLicenseKey: <a href="qdoublevalidator.html#validate">TQDoubleValidator</a> <a href="qintvalidator.html#validate">TQIntValidator</a> <a href="qregexpvalidator.html#validate">TQRegExpValidator</a> <a href="ntqvalidator.html#validate">TQValidator</a><li>validateLicenseKey:
<a href="qaxfactory.html#validateLicenseKey">TQAxFactory</a><li>validator: <a href="qaxfactory.html#validateLicenseKey">TQAxFactory</a><li>validator:
@ -3610,7 +3610,7 @@ wait:
<a href="qmacstyle.html#widgetSizePolicy">TQMacStyle</a><li>widgetToField: <a href="qmacstyle.html#widgetSizePolicy">TQMacStyle</a><li>widgetToField:
<a href="tqsqlform.html#widgetToField">TQSqlForm</a><li>widgets: <a href="tqsqlform.html#widgetToField">TQSqlForm</a><li>widgets:
<a href="tqwidgetfactory.html#widgets">TQWidgetFactory</a><li>width: <a href="tqwidgetfactory.html#widgets">TQWidgetFactory</a><li>width:
<a href="tqcanvas.html#width">TQCanvas</a> <a href="tqcanvasellipse.html#width">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#width">TQCanvasRectangle</a> <a href="tqcanvassprite.html#width">TQCanvasSprite</a> <a href="qdirectpainter.html#width">TQDirectPainter</a> <a href="ntqfontmetrics.html#width">TQFontMetrics</a> <a href="qiconviewitem.html#width">TQIconViewItem</a> <a href="ntqimage.html#width">TQImage</a> <a href="qlistboxitem.html#width">TQListBoxItem</a> <a href="qlistboxpixmap.html#width">TQListBoxPixmap</a> <a href="qlistboxtext.html#width">TQListBoxText</a> <a href="qlistviewitem.html#width">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#width">TQPaintDeviceMetrics</a> <a href="ntqpen.html#width">TQPen</a> <a href="ntqpixmap.html#width">TQPixmap</a> <a href="ntqrect.html#width">TQRect</a> <a href="qscreen.html#width">TQScreen</a> <a href="ntqsimplerichtext.html#width">TQSimpleRichText</a> <a href="ntqsize.html#width">TQSize</a> <a href="ntqtextstream.html#width">TQTextStream</a> <a href="tqwidget.html#width">TQWidget</a><li>widthChanged: <a href="tqcanvas.html#width">TQCanvas</a> <a href="tqcanvasellipse.html#width">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#width">TQCanvasRectangle</a> <a href="tqcanvassprite.html#width">TQCanvasSprite</a> <a href="qdirectpainter.html#width">TQDirectPainter</a> <a href="ntqfontmetrics.html#width">TQFontMetrics</a> <a href="qiconviewitem.html#width">TQIconViewItem</a> <a href="tqimage.html#width">TQImage</a> <a href="qlistboxitem.html#width">TQListBoxItem</a> <a href="qlistboxpixmap.html#width">TQListBoxPixmap</a> <a href="qlistboxtext.html#width">TQListBoxText</a> <a href="qlistviewitem.html#width">TQListViewItem</a> <a href="ntqpaintdevicemetrics.html#width">TQPaintDeviceMetrics</a> <a href="ntqpen.html#width">TQPen</a> <a href="ntqpixmap.html#width">TQPixmap</a> <a href="ntqrect.html#width">TQRect</a> <a href="qscreen.html#width">TQScreen</a> <a href="ntqsimplerichtext.html#width">TQSimpleRichText</a> <a href="ntqsize.html#width">TQSize</a> <a href="ntqtextstream.html#width">TQTextStream</a> <a href="tqwidget.html#width">TQWidget</a><li>widthChanged:
<a href="qlistviewitem.html#widthChanged">TQListViewItem</a><li>widthMM: <a href="qlistviewitem.html#widthChanged">TQListViewItem</a><li>widthMM:
<a href="ntqpaintdevicemetrics.html#widthMM">TQPaintDeviceMetrics</a><li>widthUsed: <a href="ntqpaintdevicemetrics.html#widthMM">TQPaintDeviceMetrics</a><li>widthUsed:
<a href="ntqsimplerichtext.html#widthUsed">TQSimpleRichText</a><li>wildcard: <a href="ntqsimplerichtext.html#widthUsed">TQSimpleRichText</a><li>wildcard:
@ -3638,7 +3638,7 @@ wait:
<a href="ntqtextedit.html#wrapPolicy">TQTextEdit</a><li>wrapping: <a href="ntqtextedit.html#wrapPolicy">TQTextEdit</a><li>wrapping:
<a href="ntqdial.html#wrapping">TQDial</a> <a href="ntqspinbox.html#wrapping">TQSpinBox</a><li>writable: <a href="ntqdial.html#wrapping">TQDial</a> <a href="ntqspinbox.html#wrapping">TQSpinBox</a><li>writable:
<a href="qmetaproperty.html#writable">TQMetaProperty</a><li>write: <a href="qmetaproperty.html#writable">TQMetaProperty</a><li>write:
<a href="ntqasciidict.html#write">TQAsciiDict</a> <a href="ntqdict.html#write">TQDict</a> <a href="qimageio.html#write">TQImageIO</a> <a href="ntqintdict.html#write">TQIntDict</a> <a href="qnpinstance.html#write">TQNPInstance</a> <a href="qnpstream.html#write">TQNPStream</a> <a href="tqptrdict.html#write">TQPtrDict</a> <a href="tqptrlist.html#write">TQPtrList</a> <a href="tqptrqueue.html#write">TQPtrQueue</a> <a href="tqptrstack.html#write">TQPtrStack</a> <a href="tqptrvector.html#write">TQPtrVector</a> <a href="qtranslatormessage.html#write">TQTranslatorMessage</a><li>writeBlock: <a href="ntqasciidict.html#write">TQAsciiDict</a> <a href="ntqdict.html#write">TQDict</a> <a href="tqimageio.html#write">TQImageIO</a> <a href="ntqintdict.html#write">TQIntDict</a> <a href="qnpinstance.html#write">TQNPInstance</a> <a href="qnpstream.html#write">TQNPStream</a> <a href="tqptrdict.html#write">TQPtrDict</a> <a href="tqptrlist.html#write">TQPtrList</a> <a href="tqptrqueue.html#write">TQPtrQueue</a> <a href="tqptrstack.html#write">TQPtrStack</a> <a href="tqptrvector.html#write">TQPtrVector</a> <a href="qtranslatormessage.html#write">TQTranslatorMessage</a><li>writeBlock:
<a href="ntqbuffer.html#writeBlock">TQBuffer</a> <a href="ntqiodevice.html#writeBlock">TQIODevice</a> <a href="ntqsocket.html#writeBlock">TQSocket</a> <a href="ntqsocketdevice.html#writeBlock">TQSocketDevice</a><li>writeBytes: <a href="ntqbuffer.html#writeBlock">TQBuffer</a> <a href="ntqiodevice.html#writeBlock">TQIODevice</a> <a href="ntqsocket.html#writeBlock">TQSocket</a> <a href="ntqsocketdevice.html#writeBlock">TQSocketDevice</a><li>writeBytes:
<a href="ntqdatastream.html#writeBytes">TQDataStream</a><li>writeEntry: <a href="ntqdatastream.html#writeBytes">TQDataStream</a><li>writeEntry:
<a href="ntqsettings.html#writeEntry">TQSettings</a><li>writeField: <a href="ntqsettings.html#writeEntry">TQSettings</a><li>writeField:
@ -3674,7 +3674,7 @@ x:
<a href="ntqpaintdevice.html#x11SetAppDpiX">TQPaintDevice</a><li>x11SetAppDpiY: <a href="ntqpaintdevice.html#x11SetAppDpiX">TQPaintDevice</a><li>x11SetAppDpiY:
<a href="ntqpaintdevice.html#x11SetAppDpiY">TQPaintDevice</a><li>x11Visual: <a href="ntqpaintdevice.html#x11SetAppDpiY">TQPaintDevice</a><li>x11Visual:
<a href="ntqpaintdevice.html#x11Visual">TQPaintDevice</a><li>xForm: <a href="ntqpaintdevice.html#x11Visual">TQPaintDevice</a><li>xForm:
<a href="ntqbitmap.html#xForm">TQBitmap</a> <a href="ntqimage.html#xForm">TQImage</a> <a href="ntqpainter.html#xForm">TQPainter</a> <a href="ntqpixmap.html#xForm">TQPixmap</a><li>xFormDev: <a href="ntqbitmap.html#xForm">TQBitmap</a> <a href="tqimage.html#xForm">TQImage</a> <a href="ntqpainter.html#xForm">TQPainter</a> <a href="ntqpixmap.html#xForm">TQPixmap</a><li>xFormDev:
<a href="ntqpainter.html#xFormDev">TQPainter</a><li>xOffset: <a href="ntqpainter.html#xFormDev">TQPainter</a><li>xOffset:
<a href="qdirectpainter.html#xOffset">TQDirectPainter</a><li>xTilt: <a href="qdirectpainter.html#xOffset">TQDirectPainter</a><li>xTilt:
<a href="qtabletevent.html#xTilt">TQTabletEvent</a><li>xVelocity: <a href="qtabletevent.html#xTilt">TQTabletEvent</a><li>xVelocity:

@ -68,12 +68,12 @@ coordinate system.</a>
<tr bgcolor=#f0f0f0><td><b><a href="qglformat.html">TQGLFormat</a></b><td>The display format of an OpenGL rendering context <tr bgcolor=#f0f0f0><td><b><a href="qglformat.html">TQGLFormat</a></b><td>The display format of an OpenGL rendering context
<tr bgcolor=#f0f0f0><td><b><a href="qglwidget.html">TQGLWidget</a></b><td>Widget for rendering OpenGL graphics <tr bgcolor=#f0f0f0><td><b><a href="qglwidget.html">TQGLWidget</a></b><td>Widget for rendering OpenGL graphics
<tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes <tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes
<tr bgcolor=#f0f0f0><td><b><a href="ntqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data <tr bgcolor=#f0f0f0><td><b><a href="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data
<tr bgcolor=#f0f0f0><td><b><a href="qimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder <tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder
<tr bgcolor=#f0f0f0><td><b><a href="qimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats <tr bgcolor=#f0f0f0><td><b><a href="tqimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats
<tr bgcolor=#f0f0f0><td><b><a href="qimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format <tr bgcolor=#f0f0f0><td><b><a href="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format
<tr bgcolor=#f0f0f0><td><b><a href="qimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects <tr bgcolor=#f0f0f0><td><b><a href="tqimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects
<tr bgcolor=#f0f0f0><td><b><a href="qimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images <tr bgcolor=#f0f0f0><td><b><a href="tqimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images
<tr bgcolor=#f0f0f0><td><b><a href="ntqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses <tr bgcolor=#f0f0f0><td><b><a href="ntqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses
<tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevice.html">TQPaintDevice</a></b><td>The base class of objects that can be painted <tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevice.html">TQPaintDevice</a></b><td>The base class of objects that can be painted
<tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevicemetrics.html">TQPaintDeviceMetrics</a></b><td>Information about a paint device <tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevicemetrics.html">TQPaintDeviceMetrics</a></b><td>Information about a paint device

@ -3,10 +3,10 @@ qaccessibleobject.h ntqaccessible.h
qactiongroup.h ntqaction.h qactiongroup.h ntqaction.h
qasciicacheiterator.h ntqasciicache.h qasciicacheiterator.h ntqasciicache.h
qasciidictiterator.h ntqasciidict.h qasciidictiterator.h ntqasciidict.h
qimageconsumer.h ntqasyncimageio.h tqimageconsumer.h ntqasyncimageio.h
qimageformat.h ntqasyncimageio.h tqimageformat.h ntqasyncimageio.h
qimageformattype.h ntqasyncimageio.h tqimageformattype.h ntqasyncimageio.h
qimagedecoder.h ntqasyncimageio.h tqimagedecoder.h ntqasyncimageio.h
qaxaggregated.h qaxbindable.h qaxaggregated.h qaxbindable.h
qaxscriptengine.h qaxscript.h qaxscriptengine.h qaxscript.h
qaxscriptmanager.h qaxscript.h qaxscriptmanager.h qaxscript.h
@ -52,7 +52,7 @@ tqdomentityreference.h tqdom.h
tqdomprocessinginstruction.h tqdom.h tqdomprocessinginstruction.h tqdom.h
qstoreddrag.h ntqdragobject.h qstoreddrag.h ntqdragobject.h
qtextdrag.h ntqdragobject.h qtextdrag.h ntqdragobject.h
qimagedrag.h ntqdragobject.h tqimagedrag.h ntqdragobject.h
quridrag.h ntqdragobject.h quridrag.h ntqdragobject.h
qcolordrag.h ntqdragobject.h qcolordrag.h ntqdragobject.h
qtimerevent.h ntqevent.h qtimerevent.h ntqevent.h
@ -90,7 +90,7 @@ qiconfactory.h ntqiconset.h
qicondragitem.h ntqiconview.h qicondragitem.h ntqiconview.h
qicondrag.h ntqiconview.h qicondrag.h ntqiconview.h
qiconviewitem.h ntqiconview.h qiconviewitem.h ntqiconview.h
qimageio.h ntqimage.h tqimageio.h tqimage.h
qintcacheiterator.h ntqintcache.h qintcacheiterator.h ntqintcache.h
qintdictiterator.h ntqintdict.h qintdictiterator.h ntqintdict.h
qglayoutiterator.h ntqlayout.h qglayoutiterator.h ntqlayout.h

@ -126,8 +126,8 @@ body { background: #ffffff; color: black; }
<li><a href="qhttp-h.html">ntqhttp.h</a> <li><a href="qhttp-h.html">ntqhttp.h</a>
<li><a href="qiconset-h.html">ntqiconset.h</a> <li><a href="qiconset-h.html">ntqiconset.h</a>
<li><a href="qiconview-h.html">ntqiconview.h</a> <li><a href="qiconview-h.html">ntqiconview.h</a>
<li><a href="qimage-h.html">ntqimage.h</a> <li><a href="tqimage-h.html">tqimage.h</a>
<li><a href="qimageformatplugin-h.html">ntqimageformatplugin.h</a> <li><a href="tqimageformatplugin-h.html">tqimageformatplugin.h</a>
<li><a href="qinputdialog-h.html">ntqinputdialog.h</a> <li><a href="qinputdialog-h.html">ntqinputdialog.h</a>
<li><a href="qintcache-h.html">ntqintcache.h</a> <li><a href="qintcache-h.html">ntqintcache.h</a>
<li><a href="qintdict-h.html">ntqintdict.h</a> <li><a href="qintdict-h.html">ntqintdict.h</a>

@ -175,7 +175,7 @@ void Hello::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintev
<a name="x1635"></a> p.<a href="ntqpainter.html#end">end</a>(); <a name="x1635"></a> p.<a href="ntqpainter.html#end">end</a>();
// 4: Copy the pixmap to the Hello widget // 4: Copy the pixmap to the Hello widget
<a href="ntqimage.html#bitBlt">bitBlt</a>( this, pmx, pmy, &amp;pm ); <a href="tqimage.html#bitBlt">bitBlt</a>( this, pmx, pmy, &amp;pm );
} }
</pre> </pre>

@ -120,13 +120,13 @@ classes in the TQt API.
<li><a href="qicondragitem.html">TQIconDragItem</a> <li><a href="qicondragitem.html">TQIconDragItem</a>
<li><a href="qiconfactory.html">TQIconFactory</a> <li><a href="qiconfactory.html">TQIconFactory</a>
<li><a href="ntqiconset.html">TQIconSet</a> <li><a href="ntqiconset.html">TQIconSet</a>
<li><a href="ntqimage.html">TQImage</a> <li><a href="tqimage.html">TQImage</a>
<li><a href="qimageconsumer.html">TQImageConsumer</a> <li><a href="tqimageconsumer.html">TQImageConsumer</a>
<li><a href="qimagedecoder.html">TQImageDecoder</a> <li><a href="tqimagedecoder.html">TQImageDecoder</a>
<li><a href="qimageformat.html">TQImageFormat</a> <li><a href="tqimageformat.html">TQImageFormat</a>
<li><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a> <li><a href="tqimageformatplugin.html">TQImageFormatPlugin</a>
<li><a href="qimageformattype.html">TQImageFormatType</a> <li><a href="tqimageformattype.html">TQImageFormatType</a>
<li><a href="qimageio.html">TQImageIO</a> <li><a href="tqimageio.html">TQImageIO</a>
<li><a href="qintcacheiterator.html">TQIntCacheIterator</a> <li><a href="qintcacheiterator.html">TQIntCacheIterator</a>
<li><a href="qintdictiterator.html">TQIntDictIterator</a> <li><a href="qintdictiterator.html">TQIntDictIterator</a>
<li><a href="ntqiodevice.html">TQIODevice</a> <li><a href="ntqiodevice.html">TQIODevice</a>
@ -328,7 +328,7 @@ classes in the TQt API.
<li><a href="ntqdragobject.html">TQDragObject</a> <li><a href="ntqdragobject.html">TQDragObject</a>
<ul> <ul>
<li><a href="qicondrag.html">TQIconDrag</a> <li><a href="qicondrag.html">TQIconDrag</a>
<li><a href="qimagedrag.html">TQImageDrag</a> <li><a href="tqimagedrag.html">TQImageDrag</a>
<li><a href="qstoreddrag.html">TQStoredDrag</a> <li><a href="qstoreddrag.html">TQStoredDrag</a>
<ul> <ul>
<li><a href="qcolordrag.html">TQColorDrag</a> <li><a href="qcolordrag.html">TQColorDrag</a>

@ -59,12 +59,12 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="qglformat.html">TQGLFormat</a></b><td>The display format of an OpenGL rendering context <tr bgcolor=#f0f0f0><td><b><a href="qglformat.html">TQGLFormat</a></b><td>The display format of an OpenGL rendering context
<tr bgcolor=#f0f0f0><td><b><a href="qglwidget.html">TQGLWidget</a></b><td>Widget for rendering OpenGL graphics <tr bgcolor=#f0f0f0><td><b><a href="qglwidget.html">TQGLWidget</a></b><td>Widget for rendering OpenGL graphics
<tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes <tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes
<tr bgcolor=#f0f0f0><td><b><a href="ntqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data <tr bgcolor=#f0f0f0><td><b><a href="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data
<tr bgcolor=#f0f0f0><td><b><a href="qimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder <tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder
<tr bgcolor=#f0f0f0><td><b><a href="qimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats <tr bgcolor=#f0f0f0><td><b><a href="tqimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats
<tr bgcolor=#f0f0f0><td><b><a href="qimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format <tr bgcolor=#f0f0f0><td><b><a href="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format
<tr bgcolor=#f0f0f0><td><b><a href="qimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects <tr bgcolor=#f0f0f0><td><b><a href="tqimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects
<tr bgcolor=#f0f0f0><td><b><a href="qimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images <tr bgcolor=#f0f0f0><td><b><a href="tqimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images
<tr bgcolor=#f0f0f0><td><b><a href="ntqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses <tr bgcolor=#f0f0f0><td><b><a href="ntqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses
<tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevice.html">TQPaintDevice</a></b><td>The base class of objects that can be painted <tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevice.html">TQPaintDevice</a></b><td>The base class of objects that can be painted
<tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevicemetrics.html">TQPaintDeviceMetrics</a></b><td>Information about a paint device <tr bgcolor=#f0f0f0><td><b><a href="ntqpaintdevicemetrics.html">TQPaintDeviceMetrics</a></b><td>Information about a paint device

@ -3123,136 +3123,136 @@
"QIconViewItem::x" qiconviewitem.html#x "QIconViewItem::x" qiconviewitem.html#x
"QIconViewItem::y" qiconviewitem.html#y "QIconViewItem::y" qiconviewitem.html#y
"QIconViewItem::~QIconViewItem" qiconviewitem.html#~QIconViewItem "QIconViewItem::~QIconViewItem" qiconviewitem.html#~QIconViewItem
"TQImage" ntqimage.html "TQImage" tqimage.html
"TQImage::Endian" ntqimage.html#Endian "TQImage::Endian" tqimage.html#Endian
"TQImage::ScaleMode" ntqimage.html#ScaleMode "TQImage::ScaleMode" tqimage.html#ScaleMode
"TQImage::allGray" ntqimage.html#allGray "TQImage::allGray" tqimage.html#allGray
"TQImage::bitOrder" ntqimage.html#bitOrder "TQImage::bitOrder" tqimage.html#bitOrder
"TQImage::bits" ntqimage.html#bits "TQImage::bits" tqimage.html#bits
"TQImage::bytesPerLine" ntqimage.html#bytesPerLine "TQImage::bytesPerLine" tqimage.html#bytesPerLine
"TQImage::color" ntqimage.html#color "TQImage::color" tqimage.html#color
"TQImage::colorTable" ntqimage.html#colorTable "TQImage::colorTable" tqimage.html#colorTable
"TQImage::convertBitOrder" ntqimage.html#convertBitOrder "TQImage::convertBitOrder" tqimage.html#convertBitOrder
"TQImage::convertDepth" ntqimage.html#convertDepth "TQImage::convertDepth" tqimage.html#convertDepth
"TQImage::convertDepthWithPalette" ntqimage.html#convertDepthWithPalette "TQImage::convertDepthWithPalette" tqimage.html#convertDepthWithPalette
"TQImage::copy" ntqimage.html#copy "TQImage::copy" tqimage.html#copy
"TQImage::create" ntqimage.html#create "TQImage::create" tqimage.html#create
"TQImage::createAlphaMask" ntqimage.html#createAlphaMask "TQImage::createAlphaMask" tqimage.html#createAlphaMask
"TQImage::createHeuristicMask" ntqimage.html#createHeuristicMask "TQImage::createHeuristicMask" tqimage.html#createHeuristicMask
"TQImage::depth" ntqimage.html#depth "TQImage::depth" tqimage.html#depth
"TQImage::detach" ntqimage.html#detach "TQImage::detach" tqimage.html#detach
"TQImage::dotsPerMeterX" ntqimage.html#dotsPerMeterX "TQImage::dotsPerMeterX" tqimage.html#dotsPerMeterX
"TQImage::dotsPerMeterY" ntqimage.html#dotsPerMeterY "TQImage::dotsPerMeterY" tqimage.html#dotsPerMeterY
"TQImage::fill" ntqimage.html#fill "TQImage::fill" tqimage.html#fill
"TQImage::fromMimeSource" ntqimage.html#fromMimeSource "TQImage::fromMimeSource" tqimage.html#fromMimeSource
"TQImage::hasAlphaBuffer" ntqimage.html#hasAlphaBuffer "TQImage::hasAlphaBuffer" tqimage.html#hasAlphaBuffer
"TQImage::height" ntqimage.html#height "TQImage::height" tqimage.html#height
"TQImage::imageFormat" ntqimage.html#imageFormat "TQImage::imageFormat" tqimage.html#imageFormat
"TQImage::inputFormatList" ntqimage.html#inputFormatList "TQImage::inputFormatList" tqimage.html#inputFormatList
"TQImage::inputFormats" ntqimage.html#inputFormats "TQImage::inputFormats" tqimage.html#inputFormats
"TQImage::invertPixels" ntqimage.html#invertPixels "TQImage::invertPixels" tqimage.html#invertPixels
"TQImage::isGrayscale" ntqimage.html#isGrayscale "TQImage::isGrayscale" tqimage.html#isGrayscale
"TQImage::isNull" ntqimage.html#isNull "TQImage::isNull" tqimage.html#isNull
"TQImage::jumpTable" ntqimage.html#jumpTable "TQImage::jumpTable" tqimage.html#jumpTable
"TQImage::load" ntqimage.html#load "TQImage::load" tqimage.html#load
"TQImage::loadFromData" ntqimage.html#loadFromData "TQImage::loadFromData" tqimage.html#loadFromData
"TQImage::mirror" ntqimage.html#mirror "TQImage::mirror" tqimage.html#mirror
"TQImage::numBytes" ntqimage.html#numBytes "TQImage::numBytes" tqimage.html#numBytes
"TQImage::numColors" ntqimage.html#numColors "TQImage::numColors" tqimage.html#numColors
"TQImage::offset" ntqimage.html#offset "TQImage::offset" tqimage.html#offset
"TQImage::operator!=" ntqimage.html#operator!-eq "TQImage::operator!=" tqimage.html#operator!-eq
"TQImage::operator=" ntqimage.html#operator-eq "TQImage::operator=" tqimage.html#operator-eq
"TQImage::operator==" ntqimage.html#operator-eq-eq "TQImage::operator==" tqimage.html#operator-eq-eq
"TQImage::outputFormatList" ntqimage.html#outputFormatList "TQImage::outputFormatList" tqimage.html#outputFormatList
"TQImage::outputFormats" ntqimage.html#outputFormats "TQImage::outputFormats" tqimage.html#outputFormats
"TQImage::pixel" ntqimage.html#pixel "TQImage::pixel" tqimage.html#pixel
"TQImage::pixelIndex" ntqimage.html#pixelIndex "TQImage::pixelIndex" tqimage.html#pixelIndex
"TQImage::rect" ntqimage.html#rect "TQImage::rect" tqimage.html#rect
"TQImage::reset" ntqimage.html#reset "TQImage::reset" tqimage.html#reset
"TQImage::save" ntqimage.html#save "TQImage::save" tqimage.html#save
"TQImage::scale" ntqimage.html#scale "TQImage::scale" tqimage.html#scale
"TQImage::scaleHeight" ntqimage.html#scaleHeight "TQImage::scaleHeight" tqimage.html#scaleHeight
"TQImage::scaleWidth" ntqimage.html#scaleWidth "TQImage::scaleWidth" tqimage.html#scaleWidth
"TQImage::scanLine" ntqimage.html#scanLine "TQImage::scanLine" tqimage.html#scanLine
"TQImage::setAlphaBuffer" ntqimage.html#setAlphaBuffer "TQImage::setAlphaBuffer" tqimage.html#setAlphaBuffer
"TQImage::setColor" ntqimage.html#setColor "TQImage::setColor" tqimage.html#setColor
"TQImage::setDotsPerMeterX" ntqimage.html#setDotsPerMeterX "TQImage::setDotsPerMeterX" tqimage.html#setDotsPerMeterX
"TQImage::setDotsPerMeterY" ntqimage.html#setDotsPerMeterY "TQImage::setDotsPerMeterY" tqimage.html#setDotsPerMeterY
"TQImage::setNumColors" ntqimage.html#setNumColors "TQImage::setNumColors" tqimage.html#setNumColors
"TQImage::setOffset" ntqimage.html#setOffset "TQImage::setOffset" tqimage.html#setOffset
"TQImage::setPixel" ntqimage.html#setPixel "TQImage::setPixel" tqimage.html#setPixel
"TQImage::setText" ntqimage.html#setText "TQImage::setText" tqimage.html#setText
"TQImage::size" ntqimage.html#size "TQImage::size" tqimage.html#size
"TQImage::smoothScale" ntqimage.html#smoothScale "TQImage::smoothScale" tqimage.html#smoothScale
"TQImage::swapRGB" ntqimage.html#swapRGB "TQImage::swapRGB" tqimage.html#swapRGB
"TQImage::systemBitOrder" ntqimage.html#systemBitOrder "TQImage::systemBitOrder" tqimage.html#systemBitOrder
"TQImage::systemByteOrder" ntqimage.html#systemByteOrder "TQImage::systemByteOrder" tqimage.html#systemByteOrder
"TQImage::text" ntqimage.html#text "TQImage::text" tqimage.html#text
"TQImage::textKeys" ntqimage.html#textKeys "TQImage::textKeys" tqimage.html#textKeys
"TQImage::textLanguages" ntqimage.html#textLanguages "TQImage::textLanguages" tqimage.html#textLanguages
"TQImage::textList" ntqimage.html#textList "TQImage::textList" tqimage.html#textList
"TQImage::valid" ntqimage.html#valid "TQImage::valid" tqimage.html#valid
"TQImage::width" ntqimage.html#width "TQImage::width" tqimage.html#width
"TQImage::xForm" ntqimage.html#xForm "TQImage::xForm" tqimage.html#xForm
"TQImage::~TQImage" ntqimage.html#~TQImage "TQImage::~TQImage" tqimage.html#~TQImage
"QImageConsumer" qimageconsumer.html "TQImageConsumer" tqimageconsumer.html
"QImageConsumer::changed" qimageconsumer.html#changed "TQImageConsumer::changed" tqimageconsumer.html#changed
"QImageConsumer::end" qimageconsumer.html#end "TQImageConsumer::end" tqimageconsumer.html#end
"QImageConsumer::frameDone" qimageconsumer.html#frameDone "TQImageConsumer::frameDone" tqimageconsumer.html#frameDone
"QImageConsumer::setFramePeriod" qimageconsumer.html#setFramePeriod "TQImageConsumer::setFramePeriod" tqimageconsumer.html#setFramePeriod
"QImageConsumer::setLooping" qimageconsumer.html#setLooping "TQImageConsumer::setLooping" tqimageconsumer.html#setLooping
"QImageConsumer::setSize" qimageconsumer.html#setSize "TQImageConsumer::setSize" tqimageconsumer.html#setSize
"QImageDecoder" qimagedecoder.html "TQImageDecoder" tqimagedecoder.html
"QImageDecoder::decode" qimagedecoder.html#decode "TQImageDecoder::decode" tqimagedecoder.html#decode
"QImageDecoder::format" qimagedecoder.html#format "TQImageDecoder::format" tqimagedecoder.html#format
"QImageDecoder::formatName" qimagedecoder.html#formatName "TQImageDecoder::formatName" tqimagedecoder.html#formatName
"QImageDecoder::image" qimagedecoder.html#image "TQImageDecoder::image" tqimagedecoder.html#image
"QImageDecoder::inputFormats" qimagedecoder.html#inputFormats "TQImageDecoder::inputFormats" tqimagedecoder.html#inputFormats
"QImageDecoder::registerDecoderFactory" qimagedecoder.html#registerDecoderFactory "TQImageDecoder::registerDecoderFactory" tqimagedecoder.html#registerDecoderFactory
"QImageDecoder::unregisterDecoderFactory" qimagedecoder.html#unregisterDecoderFactory "TQImageDecoder::unregisterDecoderFactory" tqimagedecoder.html#unregisterDecoderFactory
"QImageDecoder::~QImageDecoder" qimagedecoder.html#~QImageDecoder "TQImageDecoder::~TQImageDecoder" tqimagedecoder.html#~TQImageDecoder
"QImageDrag" qimagedrag.html "TQImageDrag" tqimagedrag.html
"QImageDrag::canDecode" qimagedrag.html#canDecode "TQImageDrag::canDecode" tqimagedrag.html#canDecode
"QImageDrag::decode" qimagedrag.html#decode "TQImageDrag::decode" tqimagedrag.html#decode
"QImageDrag::setImage" qimagedrag.html#setImage "TQImageDrag::setImage" tqimagedrag.html#setImage
"QImageDrag::~QImageDrag" qimagedrag.html#~QImageDrag "TQImageDrag::~TQImageDrag" tqimagedrag.html#~TQImageDrag
"QImageFormat" qimageformat.html "TQImageFormat" tqimageformat.html
"QImageFormat::decode" qimageformat.html#decode "TQImageFormat::decode" tqimageformat.html#decode
"QImageFormatPlugin" ntqimageformatplugin.html "TQImageFormatPlugin" tqimageformatplugin.html
"QImageFormatPlugin::installIOHandler" ntqimageformatplugin.html#installIOHandler "TQImageFormatPlugin::installIOHandler" tqimageformatplugin.html#installIOHandler
"QImageFormatPlugin::keys" ntqimageformatplugin.html#keys "TQImageFormatPlugin::keys" tqimageformatplugin.html#keys
"QImageFormatPlugin::~QImageFormatPlugin" ntqimageformatplugin.html#~QImageFormatPlugin "TQImageFormatPlugin::~TQImageFormatPlugin" tqimageformatplugin.html#~TQImageFormatPlugin
"QImageFormatType" qimageformattype.html "TQImageFormatType" tqimageformattype.html
"QImageFormatType::decoderFor" qimageformattype.html#decoderFor "TQImageFormatType::decoderFor" tqimageformattype.html#decoderFor
"QImageFormatType::formatName" qimageformattype.html#formatName "TQImageFormatType::formatName" tqimageformattype.html#formatName
"QImageFormatType::~QImageFormatType" qimageformattype.html#~QImageFormatType "TQImageFormatType::~TQImageFormatType" tqimageformattype.html#~TQImageFormatType
"QImageIO" qimageio.html "TQImageIO" tqimageio.html
"QImageIO::defineIOHandler" qimageio.html#defineIOHandler "TQImageIO::defineIOHandler" tqimageio.html#defineIOHandler
"QImageIO::description" qimageio.html#description "TQImageIO::description" tqimageio.html#description
"QImageIO::fileName" qimageio.html#fileName "TQImageIO::fileName" tqimageio.html#fileName
"QImageIO::format" qimageio.html#format "TQImageIO::format" tqimageio.html#format
"QImageIO::gamma" qimageio.html#gamma "TQImageIO::gamma" tqimageio.html#gamma
"QImageIO::image" qimageio.html#image "TQImageIO::image" tqimageio.html#image
"QImageIO::imageFormat" qimageio.html#imageFormat "TQImageIO::imageFormat" tqimageio.html#imageFormat
"QImageIO::init" qimageio.html#init "TQImageIO::init" tqimageio.html#init
"QImageIO::inputFormats" qimageio.html#inputFormats "TQImageIO::inputFormats" tqimageio.html#inputFormats
"QImageIO::ioDevice" qimageio.html#ioDevice "TQImageIO::ioDevice" tqimageio.html#ioDevice
"QImageIO::outputFormats" qimageio.html#outputFormats "TQImageIO::outputFormats" tqimageio.html#outputFormats
"QImageIO::parameters" qimageio.html#parameters "TQImageIO::parameters" tqimageio.html#parameters
"QImageIO::quality" qimageio.html#quality "TQImageIO::quality" tqimageio.html#quality
"QImageIO::read" qimageio.html#read "TQImageIO::read" tqimageio.html#read
"QImageIO::setDescription" qimageio.html#setDescription "TQImageIO::setDescription" tqimageio.html#setDescription
"QImageIO::setFileName" qimageio.html#setFileName "TQImageIO::setFileName" tqimageio.html#setFileName
"QImageIO::setFormat" qimageio.html#setFormat "TQImageIO::setFormat" tqimageio.html#setFormat
"QImageIO::setGamma" qimageio.html#setGamma "TQImageIO::setGamma" tqimageio.html#setGamma
"QImageIO::setIODevice" qimageio.html#setIODevice "TQImageIO::setIODevice" tqimageio.html#setIODevice
"QImageIO::setImage" qimageio.html#setImage "TQImageIO::setImage" tqimageio.html#setImage
"QImageIO::setParameters" qimageio.html#setParameters "TQImageIO::setParameters" tqimageio.html#setParameters
"QImageIO::setQuality" qimageio.html#setQuality "TQImageIO::setQuality" tqimageio.html#setQuality
"QImageIO::setStatus" qimageio.html#setStatus "TQImageIO::setStatus" tqimageio.html#setStatus
"QImageIO::status" qimageio.html#status "TQImageIO::status" tqimageio.html#status
"QImageIO::write" qimageio.html#write "TQImageIO::write" tqimageio.html#write
"QImageIO::~QImageIO" qimageio.html#~QImageIO "TQImageIO::~TQImageIO" tqimageio.html#~TQImageIO
"QInputDialog" ntqinputdialog.html "QInputDialog" ntqinputdialog.html
"QInputDialog::Type" ntqinputdialog.html#Type "QInputDialog::Type" ntqinputdialog.html#Type
"QInputDialog::comboBox" ntqinputdialog.html#comboBox "QInputDialog::comboBox" ntqinputdialog.html#comboBox
@ -8255,7 +8255,7 @@
"appearance" appearance.html "appearance" appearance.html
"application" application.html "application" application.html
"basic" basic.html "basic" basic.html
"bitBlt" ntqimage.html#bitBlt "bitBlt" tqimage.html#bitBlt
"bitBlt" ntqpaintdevice.html#bitBlt "bitBlt" ntqpaintdevice.html#bitBlt
"collection" collection.html "collection" collection.html
"copyBlt" ntqpixmap.html#copyBlt "copyBlt" ntqpixmap.html#copyBlt
@ -8311,7 +8311,7 @@
"operator<<" ntqdockarea.html#operator-lt-lt "operator<<" ntqdockarea.html#operator-lt-lt
"operator<<" tqdomnode.html#operator-lt-lt "operator<<" tqdomnode.html#operator-lt-lt
"operator<<" ntqfont.html#operator-lt-lt "operator<<" ntqfont.html#operator-lt-lt
"operator<<" ntqimage.html#operator-lt-lt "operator<<" tqimage.html#operator-lt-lt
"operator<<" ntqkeysequence.html#operator-lt-lt "operator<<" ntqkeysequence.html#operator-lt-lt
"operator<<" ntqmainwindow.html#operator-lt-lt "operator<<" ntqmainwindow.html#operator-lt-lt
"operator<<" tqmap.html#operator-lt-lt "operator<<" tqmap.html#operator-lt-lt
@ -8355,7 +8355,7 @@
"operator>>" ntqdatetime.html#operator-gt-gt "operator>>" ntqdatetime.html#operator-gt-gt
"operator>>" ntqdockarea.html#operator-gt-gt "operator>>" ntqdockarea.html#operator-gt-gt
"operator>>" ntqfont.html#operator-gt-gt "operator>>" ntqfont.html#operator-gt-gt
"operator>>" ntqimage.html#operator-gt-gt "operator>>" tqimage.html#operator-gt-gt
"operator>>" ntqkeysequence.html#operator-gt-gt "operator>>" ntqkeysequence.html#operator-gt-gt
"operator>>" ntqmainwindow.html#operator-gt-gt "operator>>" ntqmainwindow.html#operator-gt-gt
"operator>>" tqmap.html#operator-gt-gt "operator>>" tqmap.html#operator-gt-gt

@ -49,7 +49,7 @@ devices, processes, files etc. as well as manipulating files and directories.
<tr bgcolor=#f0f0f0><td><b><a href="qhttpheader.html">TQHttpHeader</a></b><td>Header information for HTTP <tr bgcolor=#f0f0f0><td><b><a href="qhttpheader.html">TQHttpHeader</a></b><td>Header information for HTTP
<tr bgcolor=#f0f0f0><td><b><a href="qhttprequestheader.html">TQHttpRequestHeader</a></b><td>Request header information for HTTP <tr bgcolor=#f0f0f0><td><b><a href="qhttprequestheader.html">TQHttpRequestHeader</a></b><td>Request header information for HTTP
<tr bgcolor=#f0f0f0><td><b><a href="qhttpresponseheader.html">TQHttpResponseHeader</a></b><td>Response header information for HTTP <tr bgcolor=#f0f0f0><td><b><a href="qhttpresponseheader.html">TQHttpResponseHeader</a></b><td>Response header information for HTTP
<tr bgcolor=#f0f0f0><td><b><a href="qimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images <tr bgcolor=#f0f0f0><td><b><a href="tqimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images
<tr bgcolor=#f0f0f0><td><b><a href="ntqiodevice.html">TQIODevice</a></b><td>The base class of I/O devices <tr bgcolor=#f0f0f0><td><b><a href="ntqiodevice.html">TQIODevice</a></b><td>The base class of I/O devices
<tr bgcolor=#f0f0f0><td><b><a href="ntqlocalfs.html">TQLocalFs</a></b><td>Implementation of a TQNetworkProtocol that works on the local file system <tr bgcolor=#f0f0f0><td><b><a href="ntqlocalfs.html">TQLocalFs</a></b><td>Implementation of a TQNetworkProtocol that works on the local file system
<tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors <tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors

@ -50,7 +50,7 @@ copies and that both that copyright notice and this permission
notice appear in supporting documentation. This software is notice appear in supporting documentation. This software is
provided "as is" without express or implied warranty. provided "as is" without express or implied warranty.
<p><ul> <p><ul>
<li><a href="ntqimage.html#smoothScale">TQImage::smoothScale</a> <li><a href="tqimage.html#smoothScale">TQImage::smoothScale</a>
</ul> </ul>
<hr> <hr>
<p> Copyright (C) 1999 Serika Kurusugawa. All rights reserved. <p> Copyright (C) 1999 Serika Kurusugawa. All rights reserved.
@ -313,7 +313,7 @@ license that technology. Such countries include Canada, Japan,
the USA, France, Germany, Italy and the UK. the USA, France, Germany, Italy and the UK.
<p> GIF support may be removed completely in a future version of TQt. <p> GIF support may be removed completely in a future version of TQt.
We recommend using the MNG or PNG format.<ul> We recommend using the MNG or PNG format.<ul>
<li><a href="qimagedecoder.html">TQImageDecoder</a> <li><a href="tqimagedecoder.html">TQImageDecoder</a>
</ul> </ul>
<p> <p>

@ -97,7 +97,7 @@ protected slots:
#include &lt;<a href="qstring-h.html">ntqstring.h</a>&gt; #include &lt;<a href="qstring-h.html">ntqstring.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt; #include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt; #include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="qstyle-h.html">ntqstyle.h</a>&gt; #include &lt;<a href="qstyle-h.html">ntqstyle.h</a>&gt;

@ -151,7 +151,7 @@ classes), see <a href="classes.html">TQt's Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqdataview.html">TQDataView</a> <td><a href="tqdataview.html">TQDataView</a>
<td align="right"> <td align="right">
<td><a href="ntqimage.html">TQImage</a> <td><a href="tqimage.html">TQImage</a>
<td align="right"> <td align="right">
<td><a href="ntqprinter.html">TQPrinter</a> <td><a href="ntqprinter.html">TQPrinter</a>
<td align="right"> <td align="right">

@ -135,7 +135,7 @@ private:
#include "application.h" #include "application.h"
#include &lt;<a href="qworkspace-h.html">ntqworkspace.h</a>&gt; #include &lt;<a href="qworkspace-h.html">ntqworkspace.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qtoolbar-h.html">ntqtoolbar.h</a>&gt; #include &lt;<a href="qtoolbar-h.html">ntqtoolbar.h</a>&gt;
#include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt; #include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt;

@ -35,10 +35,10 @@ body { background: #ffffff; color: black; }
<p> These classes provide support for graphics, sound, animation etc. <p> These classes provide support for graphics, sound, animation etc.
<p><table width="100%"> <p><table width="100%">
<tr bgcolor=#f0f0f0><td><b><a href="qimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder <tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder
<tr bgcolor=#f0f0f0><td><b><a href="qimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats <tr bgcolor=#f0f0f0><td><b><a href="tqimagedecoder.html">TQImageDecoder</a></b><td>Incremental image decoder for all supported image formats
<tr bgcolor=#f0f0f0><td><b><a href="qimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format <tr bgcolor=#f0f0f0><td><b><a href="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format
<tr bgcolor=#f0f0f0><td><b><a href="qimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects <tr bgcolor=#f0f0f0><td><b><a href="tqimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects
<tr bgcolor=#f0f0f0><td><b><a href="ntqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses <tr bgcolor=#f0f0f0><td><b><a href="ntqmovie.html">TQMovie</a></b><td>Incremental loading of animations or images, signalling as it progresses
<tr bgcolor=#f0f0f0><td><b><a href="ntqsound.html">TQSound</a></b><td>Access to the platform audio facilities <tr bgcolor=#f0f0f0><td><b><a href="ntqsound.html">TQSound</a></b><td>Access to the platform audio facilities
</table> </table>

@ -53,7 +53,7 @@ body { background: #ffffff; color: black; }
<p> The TQt classes for asynchronous input/output provide a simple <p> The TQt classes for asynchronous input/output provide a simple
mechanism to allow large files or slow data sources to be processed mechanism to allow large files or slow data sources to be processed
without using large amounts of memory or blocking the user interface. without using large amounts of memory or blocking the user interface.
<p> This facility is used in TQt to drive animated images. See <a href="qimageconsumer.html">TQImageConsumer</a>. <p> This facility is used in TQt to drive animated images. See <a href="tqimageconsumer.html">TQImageConsumer</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="~TQAsyncIO"></a>TQAsyncIO::~TQAsyncIO ()<tt> [virtual]</tt> <h3 class=fn><a name="~TQAsyncIO"></a>TQAsyncIO::~TQAsyncIO ()<tt> [virtual]</tt>

@ -114,7 +114,7 @@ Constructs a bitmap with width <em>w</em> and height <em>h</em> and sets the
contents to <em>bits</em>. contents to <em>bits</em>.
<p> The <em>isXbitmap</em> flag should be TRUE if <em>bits</em> was generated by <p> The <em>isXbitmap</em> flag should be TRUE if <em>bits</em> was generated by
the X11 bitmap program. The X bitmap bit order is little endian. the X11 bitmap program. The X bitmap bit order is little endian.
The <a href="ntqimage.html">TQImage</a> documentation discusses bit order of monochrome images. The <a href="tqimage.html">TQImage</a> documentation discusses bit order of monochrome images.
<p> Example (creates an arrow bitmap): <p> Example (creates an arrow bitmap):
<pre> <pre>
uchar arrow_bits[] = { 0x3f, 0x1f, 0x0f, 0x1f, 0x3b, 0x71, 0xe0, 0xc0 }; uchar arrow_bits[] = { 0x3f, 0x1f, 0x0f, 0x1f, 0x3b, 0x71, 0xe0, 0xc0 };
@ -129,7 +129,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
<em>bits</em>. <em>bits</em>.
<p> The <em>isXbitmap</em> flag should be TRUE if <em>bits</em> was generated by <p> The <em>isXbitmap</em> flag should be TRUE if <em>bits</em> was generated by
the X11 bitmap program. The X bitmap bit order is little endian. the X11 bitmap program. The X bitmap bit order is little endian.
The <a href="ntqimage.html">TQImage</a> documentation discusses bit order of monochrome images. The <a href="tqimage.html">TQImage</a> documentation discusses bit order of monochrome images.
<h3 class=fn><a name="TQBitmap-6"></a>TQBitmap::TQBitmap ( const&nbsp;<a href="ntqbitmap.html">TQBitmap</a>&nbsp;&amp;&nbsp;bitmap ) <h3 class=fn><a name="TQBitmap-6"></a>TQBitmap::TQBitmap ( const&nbsp;<a href="ntqbitmap.html">TQBitmap</a>&nbsp;&amp;&nbsp;bitmap )
</h3> </h3>
@ -158,12 +158,12 @@ reference to this bitmap.
<p> Dithering will be performed if the pixmap has a <a href="ntqpixmap.html#depth">TQPixmap::depth</a>() <p> Dithering will be performed if the pixmap has a <a href="ntqpixmap.html#depth">TQPixmap::depth</a>()
greater than 1. greater than 1.
<h3 class=fn><a href="ntqbitmap.html">TQBitmap</a>&nbsp;&amp; <a name="operator-eq-3"></a>TQBitmap::operator= ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a href="ntqbitmap.html">TQBitmap</a>&nbsp;&amp; <a name="operator-eq-3"></a>TQBitmap::operator= ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Converts the image <em>image</em> to a bitmap and assigns the result to <p> Converts the image <em>image</em> to a bitmap and assigns the result to
this bitmap. Returns a reference to the bitmap. this bitmap. Returns a reference to the bitmap.
<p> Dithering will be performed if the image has a <a href="ntqimage.html#depth">TQImage::depth</a>() <p> Dithering will be performed if the image has a <a href="tqimage.html#depth">TQImage::depth</a>()
greater than 1. greater than 1.
<h3 class=fn><a href="ntqbitmap.html">TQBitmap</a> <a name="xForm"></a>TQBitmap::xForm ( const&nbsp;<a href="ntqwmatrix.html">TQWMatrix</a>&nbsp;&amp;&nbsp;matrix ) const <h3 class=fn><a href="ntqbitmap.html">TQBitmap</a> <a name="xForm"></a>TQBitmap::xForm ( const&nbsp;<a href="ntqwmatrix.html">TQWMatrix</a>&nbsp;&amp;&nbsp;matrix ) const

@ -203,7 +203,7 @@ TQClipboard::Clipboard.
<p> This signal is emitted when the clipboard data is changed. <p> This signal is emitted when the clipboard data is changed.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="image"></a>TQClipboard::image ( <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="image"></a>TQClipboard::image ( <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) const
</h3> </h3>
Returns the clipboard image, or returns a null image if the Returns the clipboard image, or returns a null image if the
clipboard does not contain an image or if it contains an image in clipboard does not contain an image or if it contains an image in
@ -213,9 +213,9 @@ clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the
image is retrieved from the global clipboard. If <em>mode</em> is image is retrieved from the global clipboard. If <em>mode</em> is
TQClipboard::Selection, the image is retrieved from the global TQClipboard::Selection, the image is retrieved from the global
mouse selection. mouse selection.
<p> <p>See also <a href="#setImage">setImage</a>(), <a href="#pixmap">pixmap</a>(), <a href="#data">data</a>(), and <a href="ntqimage.html#isNull">TQImage::isNull</a>(). <p> <p>See also <a href="#setImage">setImage</a>(), <a href="#pixmap">pixmap</a>(), <a href="#data">data</a>(), and <a href="tqimage.html#isNull">TQImage::isNull</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="image-2"></a>TQClipboard::image () const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="image-2"></a>TQClipboard::image () const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> This function uses the <a href="#image">TQClipboard::image</a>() function which takes <p> This function uses the <a href="#image">TQClipboard::image</a>() function which takes
@ -303,7 +303,7 @@ If selectionModeEnabled() returns TRUE, the mode argument is
TQClipboard::Selection, otherwise the mode argument is TQClipboard::Selection, otherwise the mode argument is
TQClipboard::Clipboard. TQClipboard::Clipboard.
<h3 class=fn>void <a name="setImage"></a>TQClipboard::setImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image, <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) <h3 class=fn>void <a name="setImage"></a>TQClipboard::setImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image, <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode )
</h3> </h3>
Copies <em>image</em> into the clipboard. Copies <em>image</em> into the clipboard.
<p> The <em>mode</em> argument is used to control which part of the system <p> The <em>mode</em> argument is used to control which part of the system
@ -313,12 +313,12 @@ TQClipboard::Selection, the data is stored in the global
mouse selection. mouse selection.
<p> This is shorthand for: <p> This is shorthand for:
<pre> <pre>
<a href="#setData">setData</a>( new <a href="qimagedrag.html">TQImageDrag</a>(image), mode ) <a href="#setData">setData</a>( new <a href="tqimagedrag.html">TQImageDrag</a>(image), mode )
</pre> </pre>
<p> <p>See also <a href="#image">image</a>(), <a href="#setPixmap">setPixmap</a>(), and <a href="#setData">setData</a>(). <p> <p>See also <a href="#image">image</a>(), <a href="#setPixmap">setPixmap</a>(), and <a href="#setData">setData</a>().
<h3 class=fn>void <a name="setImage-2"></a>TQClipboard::setImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn>void <a name="setImage-2"></a>TQClipboard::setImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> This function uses the <a href="#setImage">TQClipboard::setImage</a>() function which takes <p> This function uses the <a href="#setImage">TQClipboard::setImage</a>() function which takes
@ -332,7 +332,7 @@ TQClipboard::Clipboard.
</h3> </h3>
Copies <em>pixmap</em> into the clipboard. Note that this is slower Copies <em>pixmap</em> into the clipboard. Note that this is slower
than <a href="#setImage">setImage</a>() because it needs to convert the <a href="ntqpixmap.html">TQPixmap</a> to a than <a href="#setImage">setImage</a>() because it needs to convert the <a href="ntqpixmap.html">TQPixmap</a> to a
<a href="ntqimage.html">TQImage</a> first. <a href="tqimage.html">TQImage</a> first.
<p> The <em>mode</em> argument is used to control which part of the system <p> The <em>mode</em> argument is used to control which part of the system
clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the
pixmap is stored in the global clipboard. If <em>mode</em> is pixmap is stored in the global clipboard. If <em>mode</em> is

@ -36,7 +36,7 @@ transfer.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="tqobject.html">TQObject</a> and <a href="qmimesource.html">TQMimeSource</a>. <p>Inherits <a href="tqobject.html">TQObject</a> and <a href="qmimesource.html">TQMimeSource</a>.
<p>Inherited by <a href="qstoreddrag.html">TQStoredDrag</a>, <a href="qtextdrag.html">TQTextDrag</a>, <a href="qimagedrag.html">TQImageDrag</a>, and <a href="qicondrag.html">TQIconDrag</a>. <p>Inherited by <a href="qstoreddrag.html">TQStoredDrag</a>, <a href="qtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qicondrag.html">TQIconDrag</a>.
<p><a href="qdragobject-members.html">List of all member functions.</a> <p><a href="qdragobject-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

@ -49,7 +49,7 @@ The TQDropSite class provides nothing and does nothing.
<p> It was used in TQt 1.x to do some drag and drop; that has since been <p> It was used in TQt 1.x to do some drag and drop; that has since been
folded into <a href="tqwidget.html">TQWidget</a>. folded into <a href="tqwidget.html">TQWidget</a>.
<p> For detailed information about drag-and-drop, see the <a href="ntqdragobject.html">TQDragObject</a> class. <p> For detailed information about drag-and-drop, see the <a href="ntqdragobject.html">TQDragObject</a> class.
<p> <p>See also <a href="ntqdragobject.html">TQDragObject</a>, <a href="qtextdrag.html">TQTextDrag</a>, and <a href="qimagedrag.html">TQImageDrag</a>. <p> <p>See also <a href="ntqdragobject.html">TQDragObject</a>, <a href="qtextdrag.html">TQTextDrag</a>, and <a href="tqimagedrag.html">TQImageDrag</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQDropSite"></a>TQDropSite::TQDropSite ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;self ) <h3 class=fn><a name="TQDropSite"></a>TQDropSite::TQDropSite ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;self )

@ -104,7 +104,7 @@ produces results very similar to those used in Microsoft Windows
95. The <a href="#Mode-enum">Active</a> appearance is identical to the <a href="#Mode-enum">Normal</a> 95. The <a href="#Mode-enum">Active</a> appearance is identical to the <a href="#Mode-enum">Normal</a>
appearance unless you use setPixmap() to set it to something appearance unless you use setPixmap() to set it to something
special. special.
<p> When scaling icons, TQIconSet uses <a href="ntqimage.html#smoothScale">smooth scaling</a>, which can partially blend the color component <p> When scaling icons, TQIconSet uses <a href="tqimage.html#smoothScale">smooth scaling</a>, which can partially blend the color component
of pixmaps. If the results look poor, the best solution of pixmaps. If the results look poor, the best solution
is to supply pixmaps in both large and small sizes. is to supply pixmaps in both large and small sizes.
<p> You can use the static function <a href="#setIconSize">setIconSize</a>() to set the preferred <p> You can use the static function <a href="#setIconSize">setIconSize</a>() to set the preferred

@ -274,7 +274,7 @@ subclass TQIconView and reimplement <a href="#dragObject">TQIconView::dragObject
<p> In this example we create a <a href="qtextdrag.html">TQTextDrag</a> object, (derived from <p> In this example we create a <a href="qtextdrag.html">TQTextDrag</a> object, (derived from
<a href="ntqdragobject.html">TQDragObject</a>), containing the item's label and return it as the drag <a href="ntqdragobject.html">TQDragObject</a>), containing the item's label and return it as the drag
object. We could just as easily have created a <a href="qimagedrag.html">TQImageDrag</a> from the object. We could just as easily have created a <a href="tqimagedrag.html">TQImageDrag</a> from the
item's pixmap and returned that instead. item's pixmap and returned that instead.
<p> TQIconViews and their TQIconViewItems can also be the targets of drag <p> TQIconViews and their TQIconViewItems can also be the targets of drag
and drops. To make the TQIconView itself able to accept drops connect and drops. To make the TQIconView itself able to accept drops connect

@ -260,9 +260,9 @@ Returns TRUE if the image is no longer playing: this happens when
all loops of all frames are complete; otherwise returns FALSE. all loops of all frames are complete; otherwise returns FALSE.
<p>Example: <a href="movies-example.html#x501">movies/main.cpp</a>. <p>Example: <a href="movies-example.html#x501">movies/main.cpp</a>.
<h3 class=fn>const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp; <a name="frameImage"></a>TQMovie::frameImage () const <h3 class=fn>const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp; <a name="frameImage"></a>TQMovie::frameImage () const
</h3> </h3>
Returns the current frame of the movie, as a <a href="ntqimage.html">TQImage</a>. It is not Returns the current frame of the movie, as a <a href="tqimage.html">TQImage</a>. It is not
generally useful to keep a copy of this image. Also note that you generally useful to keep a copy of this image. Also note that you
must not call this function if the movie is <a href="#finished">finished</a>(), since by must not call this function if the movie is <a href="#finished">finished</a>(), since by
then the image will not be available. then the image will not be available.

@ -454,7 +454,7 @@ font etc. This function does exactly that.
p.<a href="#begin">begin</a>(&amp;pm, this); p.<a href="#begin">begin</a>(&amp;pm, this);
// ... potentially flickering paint operation ... // ... potentially flickering paint operation ...
p.<a href="#end">end</a>(); p.<a href="#end">end</a>();
<a href="ntqimage.html#bitBlt">bitBlt</a>(this, 0, 0, &amp;pm); <a href="tqimage.html#bitBlt">bitBlt</a>(this, 0, 0, &amp;pm);
} }
</pre> </pre>
@ -606,7 +606,7 @@ Draws an ellipse with center at <em>(x + w/2, y + h/2)</em> and size <em>(w, h)<
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Draws the ellipse that fits inside rectangle <em>r</em>. <p> Draws the ellipse that fits inside rectangle <em>r</em>.
<h3 class=fn>void <a name="drawImage"></a>TQPainter::drawImage ( int&nbsp;x, int&nbsp;y, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image, int&nbsp;sx = 0, int&nbsp;sy = 0, int&nbsp;sw = -1, int&nbsp;sh = -1, int&nbsp;conversionFlags = 0 ) <h3 class=fn>void <a name="drawImage"></a>TQPainter::drawImage ( int&nbsp;x, int&nbsp;y, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image, int&nbsp;sx = 0, int&nbsp;sy = 0, int&nbsp;sw = -1, int&nbsp;sh = -1, int&nbsp;conversionFlags = 0 )
</h3> </h3>
Draws at (<em>x</em>, <em>y</em>) the <em>sw</em> by <em>sh</em> area of pixels from (<em>sx</em>, <em>sy</em>) in <em>image</em>, using <em>conversionFlags</em> if the image Draws at (<em>x</em>, <em>y</em>) the <em>sw</em> by <em>sh</em> area of pixels from (<em>sx</em>, <em>sy</em>) in <em>image</em>, using <em>conversionFlags</em> if the image
needs to be converted to a pixmap. The default value for <em>conversionFlags</em> is 0; see convertFromImage() for information about needs to be converted to a pixmap. The default value for <em>conversionFlags</em> is 0; see convertFromImage() for information about
@ -618,12 +618,12 @@ if device() is a <a href="ntqprinter.html">TQPrinter</a> or <a href="ntqpicture.
<p> <p>See also <a href="#drawPixmap">drawPixmap</a>() and <a href="ntqpixmap.html#convertFromImage">TQPixmap::convertFromImage</a>(). <p> <p>See also <a href="#drawPixmap">drawPixmap</a>() and <a href="ntqpixmap.html#convertFromImage">TQPixmap::convertFromImage</a>().
<p>Example: <a href="canvas-example.html#x2941">canvas/canvas.cpp</a>. <p>Example: <a href="canvas-example.html#x2941">canvas/canvas.cpp</a>.
<h3 class=fn>void <a name="drawImage-2"></a>TQPainter::drawImage ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;sr, int&nbsp;conversionFlags = 0 ) <h3 class=fn>void <a name="drawImage-2"></a>TQPainter::drawImage ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;sr, int&nbsp;conversionFlags = 0 )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Draws the rectangle <em>sr</em> from the image at the given point. <p> Draws the rectangle <em>sr</em> from the image at the given point.
<h3 class=fn>void <a name="drawImage-3"></a>TQPainter::drawImage ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;p, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i, int&nbsp;conversion_flags = 0 ) <h3 class=fn>void <a name="drawImage-3"></a>TQPainter::drawImage ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;p, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i, int&nbsp;conversion_flags = 0 )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Draws the image <em>i</em> at point <em>p</em>. <p> Draws the image <em>i</em> at point <em>p</em>.
@ -631,7 +631,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
result (e.g. converting from 32-bit to 8-bit), use the <em>conversion_flags</em> to specify how you'd prefer this to happen. result (e.g. converting from 32-bit to 8-bit), use the <em>conversion_flags</em> to specify how you'd prefer this to happen.
<p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>. <p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>.
<h3 class=fn>void <a name="drawImage-4"></a>TQPainter::drawImage ( const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) <h3 class=fn>void <a name="drawImage-4"></a>TQPainter::drawImage ( const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Draws the image <em>i</em> into the rectangle <em>r</em>. The image will be <p> Draws the image <em>i</em> into the rectangle <em>r</em>. The image will be
@ -710,7 +710,7 @@ The default, (-1, -1), means all the way to the bottom right of
the pixmap. the pixmap.
<p> Currently the mask of the pixmap or it's alpha channel are ignored <p> Currently the mask of the pixmap or it's alpha channel are ignored
when painting on a <a href="ntqprinter.html">TQPrinter</a>. when painting on a <a href="ntqprinter.html">TQPrinter</a>.
<p> <p>See also <a href="ntqimage.html#bitBlt">bitBlt</a>() and <a href="ntqpixmap.html#setMask">TQPixmap::setMask</a>(). <p> <p>See also <a href="tqimage.html#bitBlt">bitBlt</a>() and <a href="ntqpixmap.html#setMask">TQPixmap::setMask</a>().
<p>Examples: <a href="grapher-nsplugin-example.html#x2758">grapher/grapher.cpp</a>, <a href="picture-example.html#x114">picture/picture.cpp</a>, <a href="qdir-example.html#x1832">qdir/qdir.cpp</a>, <a href="qmag-example.html#x1782">qmag/qmag.cpp</a>, <a href="showimg-example.html#x1337">showimg/showimg.cpp</a>, <a href="tutorial1-10.html#x2350">t10/cannon.cpp</a>, and <a href="xform-example.html#x1235">xform/xform.cpp</a>. <p>Examples: <a href="grapher-nsplugin-example.html#x2758">grapher/grapher.cpp</a>, <a href="picture-example.html#x114">picture/picture.cpp</a>, <a href="qdir-example.html#x1832">qdir/qdir.cpp</a>, <a href="qmag-example.html#x1782">qmag/qmag.cpp</a>, <a href="showimg-example.html#x1337">showimg/showimg.cpp</a>, <a href="tutorial1-10.html#x2350">t10/cannon.cpp</a>, and <a href="xform-example.html#x1235">xform/xform.cpp</a>.
<h3 class=fn>void <a name="drawPixmap-2"></a>TQPainter::drawPixmap ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;p, const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pm, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;sr ) <h3 class=fn>void <a name="drawPixmap-2"></a>TQPainter::drawPixmap ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;p, const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pm, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;sr )

@ -118,7 +118,7 @@ The TQPixmap class is an off-screen, pixel-based paint device.
<p> TQPixmap is one of the two classes TQt provides for dealing with <p> TQPixmap is one of the two classes TQt provides for dealing with
images; the other is <a href="ntqimage.html">TQImage</a>. TQPixmap is designed and optimized images; the other is <a href="tqimage.html">TQImage</a>. TQPixmap is designed and optimized
for drawing; TQImage is designed and optimized for I/O and for for drawing; TQImage is designed and optimized for I/O and for
direct pixel access/manipulation. There are (slow) functions to direct pixel access/manipulation. There are (slow) functions to
convert between TQImage and TQPixmap: <a href="#convertToImage">convertToImage</a>() and convert between TQImage and TQPixmap: <a href="#convertToImage">convertToImage</a>() and
@ -177,13 +177,13 @@ this:
<p> In general it is recommended to make as much use of TQPixmap's <p> In general it is recommended to make as much use of TQPixmap's
<a href="shclass.html#implicit-sharing">implicit sharing</a> and the <a href="ntqpixmapcache.html">TQPixmapCache</a> as possible. <a href="shclass.html#implicit-sharing">implicit sharing</a> and the <a href="ntqpixmapcache.html">TQPixmapCache</a> as possible.
<p> <p>See also <a href="ntqbitmap.html">TQBitmap</a>, <a href="ntqimage.html">TQImage</a>, <a href="qimageio.html">TQImageIO</a>, <a href="shclass.html">Shared Classes</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="shared.html">Implicitly and Explicitly Shared Classes</a>. <p> <p>See also <a href="ntqbitmap.html">TQBitmap</a>, <a href="tqimage.html">TQImage</a>, <a href="tqimageio.html">TQImageIO</a>, <a href="shclass.html">Shared Classes</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="shared.html">Implicitly and Explicitly Shared Classes</a>.
<hr><h2>Member Type Documentation</h2> <hr><h2>Member Type Documentation</h2>
<h3 class=fn><a name="ColorMode-enum"></a>TQPixmap::ColorMode</h3> <h3 class=fn><a name="ColorMode-enum"></a>TQPixmap::ColorMode</h3>
<p> This enum type defines the color modes that exist for converting <p> This enum type defines the color modes that exist for converting
<a href="ntqimage.html">TQImage</a> objects to TQPixmap. <a href="tqimage.html">TQImage</a> objects to TQPixmap.
<ul> <ul>
<li><tt>TQPixmap::Auto</tt> - Select <a href="#ColorMode-enum">Color</a> or <a href="#ColorMode-enum">Mono</a> on a case-by-case basis. <li><tt>TQPixmap::Auto</tt> - Select <a href="#ColorMode-enum">Color</a> or <a href="#ColorMode-enum">Mono</a> on a case-by-case basis.
<li><tt>TQPixmap::Color</tt> - Always create colored pixmaps. <li><tt>TQPixmap::Color</tt> - Always create colored pixmaps.
@ -219,9 +219,9 @@ than <a href="#Optimization-enum">NormalOptim</a> and may provide a little more
Constructs a null pixmap. Constructs a null pixmap.
<p> <p>See also <a href="#isNull">isNull</a>(). <p> <p>See also <a href="#isNull">isNull</a>().
<h3 class=fn><a name="TQPixmap-2"></a>TQPixmap::TQPixmap ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a name="TQPixmap-2"></a>TQPixmap::TQPixmap ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
Constructs a pixmap from the <a href="ntqimage.html">TQImage</a> <em>image</em>. Constructs a pixmap from the <a href="tqimage.html">TQImage</a> <em>image</em>.
<p> <p>See also <a href="#convertFromImage">convertFromImage</a>(). <p> <p>See also <a href="#convertFromImage">convertFromImage</a>().
<h3 class=fn><a name="TQPixmap-3"></a>TQPixmap::TQPixmap ( int&nbsp;w, int&nbsp;h, int&nbsp;depth = -1, <a href="ntqpixmap.html#Optimization-enum">Optimization</a>&nbsp;optimization = DefaultOptim ) <h3 class=fn><a name="TQPixmap-3"></a>TQPixmap::TQPixmap ( int&nbsp;w, int&nbsp;h, int&nbsp;depth = -1, <a href="ntqpixmap.html#Optimization-enum">Optimization</a>&nbsp;optimization = DefaultOptim )
@ -307,7 +307,7 @@ This constructor is protected and used by the <a href="ntqbitmap.html">TQBitmap<
</h3> </h3>
Destroys the pixmap. Destroys the pixmap.
<h3 class=fn>bool <a name="convertFromImage"></a>TQPixmap::convertFromImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img, int&nbsp;conversion_flags ) <h3 class=fn>bool <a name="convertFromImage"></a>TQPixmap::convertFromImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img, int&nbsp;conversion_flags )
</h3> </h3>
Converts image <em>img</em> and sets this pixmap. Returns TRUE if Converts image <em>img</em> and sets this pixmap. Returns TRUE if
successful; otherwise returns FALSE. successful; otherwise returns FALSE.
@ -320,19 +320,19 @@ sets all the default options.
converted to an image, the pixels painted with color0 will produce converted to an image, the pixels painted with color0 will produce
pixel index 0 in the image and those painted with color1 will pixel index 0 in the image and those painted with color1 will
produce pixel index 1. produce pixel index 1.
<p> <p>See also <a href="#convertToImage">convertToImage</a>(), <a href="#isTQBitmap">isTQBitmap</a>(), <a href="ntqimage.html#convertDepth">TQImage::convertDepth</a>(), <a href="#defaultDepth">defaultDepth</a>(), and <a href="ntqimage.html#hasAlphaBuffer">TQImage::hasAlphaBuffer</a>(). <p> <p>See also <a href="#convertToImage">convertToImage</a>(), <a href="#isTQBitmap">isTQBitmap</a>(), <a href="tqimage.html#convertDepth">TQImage::convertDepth</a>(), <a href="#defaultDepth">defaultDepth</a>(), and <a href="tqimage.html#hasAlphaBuffer">TQImage::hasAlphaBuffer</a>().
<p>Examples: <a href="canvas-example.html#x2943">canvas/canvas.cpp</a> and <a href="themes-example.html#x228">themes/wood.cpp</a>. <p>Examples: <a href="canvas-example.html#x2943">canvas/canvas.cpp</a> and <a href="themes-example.html#x228">themes/wood.cpp</a>.
<h3 class=fn>bool <a name="convertFromImage-2"></a>TQPixmap::convertFromImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a>&nbsp;mode = Auto ) <h3 class=fn>bool <a name="convertFromImage-2"></a>TQPixmap::convertFromImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a>&nbsp;mode = Auto )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Converts <em>image</em> and sets this pixmap using color mode <em>mode</em>. <p> Converts <em>image</em> and sets this pixmap using color mode <em>mode</em>.
Returns TRUE if successful; otherwise returns FALSE. Returns TRUE if successful; otherwise returns FALSE.
<p> <p>See also <a href="#ColorMode-enum">TQPixmap::ColorMode</a>. <p> <p>See also <a href="#ColorMode-enum">TQPixmap::ColorMode</a>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertToImage"></a>TQPixmap::convertToImage () const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertToImage"></a>TQPixmap::convertToImage () const
</h3> </h3>
Converts the pixmap to a <a href="ntqimage.html">TQImage</a>. Returns a null image if it fails. Converts the pixmap to a <a href="tqimage.html">TQImage</a>. Returns a null image if it fails.
<p> If the pixmap has 1-bit depth, the returned image will also be 1 <p> If the pixmap has 1-bit depth, the returned image will also be 1
bit deep. If the pixmap has 2- to 8-bit depth, the returned image bit deep. If the pixmap has 2- to 8-bit depth, the returned image
has 8-bit depth. If the pixmap has greater than 8-bit depth, the has 8-bit depth. If the pixmap has greater than 8-bit depth, the
@ -354,11 +354,11 @@ can do things such as the following:
</pre> </pre>
<p> This function is slow because it involves transformation to a <p> This function is slow because it involves transformation to a
<a href="ntqimage.html">TQImage</a>, non-trivial computations and a transformation back to a <a href="tqimage.html">TQImage</a>, non-trivial computations and a transformation back to a
<a href="ntqbitmap.html">TQBitmap</a>. <a href="ntqbitmap.html">TQBitmap</a>.
<p> If <em>clipTight</em> is TRUE the mask is just large enough to cover the <p> If <em>clipTight</em> is TRUE the mask is just large enough to cover the
pixels; otherwise, the mask is larger than the data pixels. pixels; otherwise, the mask is larger than the data pixels.
<p> <p>See also <a href="ntqimage.html#createHeuristicMask">TQImage::createHeuristicMask</a>(). <p> <p>See also <a href="tqimage.html#createHeuristicMask">TQImage::createHeuristicMask</a>().
<h3 class=fn>int <a name="defaultDepth"></a>TQPixmap::defaultDepth ()<tt> [static]</tt> <h3 class=fn>int <a name="defaultDepth"></a>TQPixmap::defaultDepth ()<tt> [static]</tt>
</h3> </h3>
@ -377,7 +377,7 @@ Returns the default pixmap optimization setting.
<p> Returns the depth of the pixmap. <p> Returns the depth of the pixmap.
<p> The pixmap depth is also called bits per pixel (bpp) or bit planes <p> The pixmap depth is also called bits per pixel (bpp) or bit planes
of a pixmap. A null pixmap has depth 0. of a pixmap. A null pixmap has depth 0.
<p> <p>See also <a href="#defaultDepth">defaultDepth</a>(), <a href="#isNull">isNull</a>(), and <a href="ntqimage.html#convertDepth">TQImage::convertDepth</a>(). <p> <p>See also <a href="#defaultDepth">defaultDepth</a>(), <a href="#isNull">isNull</a>(), and <a href="tqimage.html#convertDepth">TQImage::convertDepth</a>().
<h3 class=fn>void <a name="detach"></a>TQPixmap::detach ()<tt> [virtual]</tt> <h3 class=fn>void <a name="detach"></a>TQPixmap::detach ()<tt> [virtual]</tt>
</h3> </h3>
@ -444,7 +444,7 @@ color of the widget.
</h3> Convenience function. Gets the data associated with the absolute </h3> Convenience function. Gets the data associated with the absolute
name <em>abs_name</em> from the default mime source factory and decodes it name <em>abs_name</em> from the default mime source factory and decodes it
to a pixmap. to a pixmap.
<p> <p>See also <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="ntqimage.html#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="qimagedrag.html#decode">TQImageDrag::decode</a>(). <p> <p>See also <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="tqimage.html#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>().
<p>Example: <a href="qactiongroup.html#x2113">textedit/textedit.cpp</a>. <p>Example: <a href="qactiongroup.html#x2113">textedit/textedit.cpp</a>.
<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="grabWidget"></a>TQPixmap::grabWidget ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, int&nbsp;x = 0, int&nbsp;y = 0, int&nbsp;w = -1, int&nbsp;h = -1 )<tt> [static]</tt> <h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="grabWidget"></a>TQPixmap::grabWidget ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, int&nbsp;x = 0, int&nbsp;y = 0, int&nbsp;w = -1, int&nbsp;h = -1 )<tt> [static]</tt>
@ -525,7 +525,7 @@ function returns FALSE.
</h3> </h3>
Returns a string that specifies the image format of the file <em>fileName</em>, or 0 if the file cannot be read or if the format cannot Returns a string that specifies the image format of the file <em>fileName</em>, or 0 if the file cannot be read or if the format cannot
be recognized. be recognized.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the supported image formats. <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the supported image formats.
<p> <p>See also <a href="#load">load</a>() and <a href="#save">save</a>(). <p> <p>See also <a href="#load">load</a>() and <a href="#save">save</a>().
<h3 class=fn>bool <a name="isNull"></a>TQPixmap::isNull () const <h3 class=fn>bool <a name="isNull"></a>TQPixmap::isNull () const
@ -554,9 +554,9 @@ using the specified format. If <em>format</em> is not specified
the file's format. the file's format.
<p> See the <a href="#convertFromImage">convertFromImage</a>() documentation for a description of the <p> See the <a href="#convertFromImage">convertFromImage</a>() documentation for a description of the
<em>conversion_flags</em> argument. <em>conversion_flags</em> argument.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the supported image formats and <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the supported image formats and
explains how to add extra formats. explains how to add extra formats.
<p> <p>See also <a href="#loadFromData">loadFromData</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqimage.html#load">TQImage::load</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#loadFromData">loadFromData</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="tqimage.html#load">TQImage::load</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<p>Examples: <a href="picture-example.html#x124">picture/picture.cpp</a>, <a href="scrollview-example.html#x640">scrollview/scrollview.cpp</a>, and <a href="xform-example.html#x1247">xform/xform.cpp</a>. <p>Examples: <a href="picture-example.html#x124">picture/picture.cpp</a>, <a href="scrollview-example.html#x640">scrollview/scrollview.cpp</a>, and <a href="xform-example.html#x1247">xform/xform.cpp</a>.
<h3 class=fn>bool <a name="load-2"></a>TQPixmap::load ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;fileName, const&nbsp;char&nbsp;*&nbsp;format = 0, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a>&nbsp;mode = Auto ) <h3 class=fn>bool <a name="load-2"></a>TQPixmap::load ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;fileName, const&nbsp;char&nbsp;*&nbsp;format = 0, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a>&nbsp;mode = Auto )
@ -580,9 +580,9 @@ using the specified format. If <em>format</em> is not specified
the file's format. the file's format.
<p> See the <a href="#convertFromImage">convertFromImage</a>() documentation for a description of the <p> See the <a href="#convertFromImage">convertFromImage</a>() documentation for a description of the
<em>conversion_flags</em> argument. <em>conversion_flags</em> argument.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the supported image formats and <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the supported image formats and
explains how to add extra formats. explains how to add extra formats.
<p> <p>See also <a href="#load">load</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqimage.html#loadFromData">TQImage::loadFromData</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#load">load</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="tqimage.html#loadFromData">TQImage::loadFromData</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn>bool <a name="loadFromData-2"></a>TQPixmap::loadFromData ( const&nbsp;uchar&nbsp;*&nbsp;buf, uint&nbsp;len, const&nbsp;char&nbsp;*&nbsp;format = 0, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a>&nbsp;mode = Auto ) <h3 class=fn>bool <a name="loadFromData-2"></a>TQPixmap::loadFromData ( const&nbsp;uchar&nbsp;*&nbsp;buf, uint&nbsp;len, const&nbsp;char&nbsp;*&nbsp;format = 0, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a>&nbsp;mode = Auto )
</h3> </h3>
@ -617,7 +617,7 @@ Internal implementation of the virtual TQPaintDevice::metric() function.
Assigns the pixmap <em>pixmap</em> to this pixmap and returns a Assigns the pixmap <em>pixmap</em> to this pixmap and returns a
reference to this pixmap. reference to this pixmap.
<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp; <a name="operator-eq-2"></a>TQPixmap::operator= ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp; <a name="operator-eq-2"></a>TQPixmap::operator= ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Converts the image <em>image</em> to a pixmap that is assigned to this <p> Converts the image <em>image</em> to a pixmap that is assigned to this
@ -666,7 +666,7 @@ be in the range [0,100] or -1. Specify 0 to obtain small
compressed files, 100 for large uncompressed files, and -1 to use compressed files, 100 for large uncompressed files, and -1 to use
the default settings. Returns TRUE if successful; otherwise the default settings. Returns TRUE if successful; otherwise
returns FALSE. returns FALSE.
<p> <p>See also <a href="#load">load</a>(), <a href="#loadFromData">loadFromData</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqimage.html#save">TQImage::save</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#load">load</a>(), <a href="#loadFromData">loadFromData</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="tqimage.html#save">TQImage::save</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<p>Example: <a href="qmag-example.html#x1786">qmag/qmag.cpp</a>. <p>Example: <a href="qmag-example.html#x1786">qmag/qmag.cpp</a>.
<h3 class=fn>bool <a name="save-2"></a>TQPixmap::save ( <a href="ntqiodevice.html">TQIODevice</a>&nbsp;*&nbsp;device, const&nbsp;char&nbsp;*&nbsp;format, int&nbsp;quality = -1 ) const <h3 class=fn>bool <a name="save-2"></a>TQPixmap::save ( <a href="ntqiodevice.html">TQIODevice</a>&nbsp;*&nbsp;device, const&nbsp;char&nbsp;*&nbsp;format, int&nbsp;quality = -1 ) const
@ -777,9 +777,9 @@ The original pixmap is not changed.
for unwanted translation, i.e. <a href="#xForm">xForm</a>() returns the smallest image for unwanted translation, i.e. <a href="#xForm">xForm</a>() returns the smallest image
that contains all the transformed points of the original image. that contains all the transformed points of the original image.
<p> This function is slow because it involves transformation to a <p> This function is slow because it involves transformation to a
<a href="ntqimage.html">TQImage</a>, non-trivial computations and a transformation back to a <a href="tqimage.html">TQImage</a>, non-trivial computations and a transformation back to a
TQPixmap. TQPixmap.
<p> <p>See also <a href="#trueMatrix">trueMatrix</a>(), <a href="ntqwmatrix.html">TQWMatrix</a>, <a href="ntqpainter.html#setWorldMatrix">TQPainter::setWorldMatrix</a>(), and <a href="ntqimage.html#xForm">TQImage::xForm</a>(). <p> <p>See also <a href="#trueMatrix">trueMatrix</a>(), <a href="ntqwmatrix.html">TQWMatrix</a>, <a href="ntqpainter.html#setWorldMatrix">TQPainter::setWorldMatrix</a>(), and <a href="tqimage.html#xForm">TQImage::xForm</a>().
<p>Examples: <a href="desktop-example.html#x1747">desktop/desktop.cpp</a>, <a href="fileiconview-example.html#x863">fileiconview/qfileiconview.cpp</a>, <a href="movies-example.html#x514">movies/main.cpp</a>, and <a href="qmag-example.html#x1787">qmag/qmag.cpp</a>. <p>Examples: <a href="desktop-example.html#x1747">desktop/desktop.cpp</a>, <a href="fileiconview-example.html#x863">fileiconview/qfileiconview.cpp</a>, <a href="movies-example.html#x514">movies/main.cpp</a>, and <a href="qmag-example.html#x1787">qmag/qmag.cpp</a>.
<hr><h2>Related Functions</h2> <hr><h2>Related Functions</h2>

@ -67,7 +67,7 @@ displayed or changes state. In the function
directly. Instead, we first check the global pixmap cache for a directly. Instead, we first check the global pixmap cache for a
pixmap with the key "$qt_radio_nnn_", where <tt>nnn</tt> is a numerical pixmap with the key "$qt_radio_nnn_", where <tt>nnn</tt> is a numerical
value that specifies the the radio button state. If a pixmap is value that specifies the the radio button state. If a pixmap is
found, we <a href="ntqimage.html#bitBlt">bitBlt</a>() it onto the widget and return. Otherwise, we found, we <a href="tqimage.html#bitBlt">bitBlt</a>() it onto the widget and return. Otherwise, we
create a new pixmap, draw the radio button in the pixmap, and create a new pixmap, draw the radio button in the pixmap, and
finally insert the pixmap in the global pixmap cache, using the finally insert the pixmap in the global pixmap cache, using the
key above. The bitBlt() is ten times faster than drawing the key above. The bitBlt() is ten times faster than drawing the

@ -104,7 +104,7 @@ width of two sizes using <a href="#boundedTo">boundedTo</a>().
inside a given rectangle, preserving the aspect ratio. inside a given rectangle, preserving the aspect ratio.
<li><tt>TQSize::ScaleMax</tt> - The size is scaled to a rectangle as small as possible <li><tt>TQSize::ScaleMax</tt> - The size is scaled to a rectangle as small as possible
outside a given rectangle, preserving the aspect ratio. outside a given rectangle, preserving the aspect ratio.
</ul><p> <p>See also <a href="#scale">TQSize::scale</a>(), <a href="ntqimage.html#scale">TQImage::scale</a>(), and <a href="ntqimage.html#smoothScale">TQImage::smoothScale</a>(). </ul><p> <p>See also <a href="#scale">TQSize::scale</a>(), <a href="tqimage.html#scale">TQImage::scale</a>(), and <a href="tqimage.html#smoothScale">TQImage::smoothScale</a>().
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQSize"></a>TQSize::TQSize () <h3 class=fn><a name="TQSize"></a>TQSize::TQSize ()

@ -210,7 +210,7 @@ given in the source attribute, for example
attributes <tt>width</tt> and <tt>height</tt> that determine the size attributes <tt>width</tt> and <tt>height</tt> that determine the size
of the image. If the pixmap does not fit the specified of the image. If the pixmap does not fit the specified
size it will be scaled automatically (by using size it will be scaled automatically (by using
<a href="ntqimage.html#smoothScale">TQImage::smoothScale</a>()). <a href="tqimage.html#smoothScale">TQImage::smoothScale</a>()).
<br> <br>
The <tt>align</tt> attribute determines where the image is The <tt>align</tt> attribute determines where the image is
placed. By default, an image is placed inline just like a placed. By default, an image is placed inline just like a

@ -300,7 +300,7 @@ options marked "(default)" are set if no other values from the
list are included (since the defaults are zero): list are included (since the defaults are zero):
<p> Color/Mono preference (ignored for <a href="ntqbitmap.html">TQBitmap</a>) <p> Color/Mono preference (ignored for <a href="ntqbitmap.html">TQBitmap</a>)
<ul> <ul>
<li><tt>TQt::AutoColor</tt> - (default) - If the image has <a href="ntqimage.html#depth">depth</a> 1 and contains only <li><tt>TQt::AutoColor</tt> - (default) - If the image has <a href="tqimage.html#depth">depth</a> 1 and contains only
black and white pixels, the pixmap becomes monochrome. black and white pixels, the pixmap becomes monochrome.
<li><tt>TQt::ColorOnly</tt> - The pixmap is dithered/converted to the <li><tt>TQt::ColorOnly</tt> - The pixmap is dithered/converted to the
<a href="ntqpixmap.html#defaultDepth">native display depth</a>. <a href="ntqpixmap.html#defaultDepth">native display depth</a>.

@ -193,7 +193,7 @@ type that can be generated from the stored type, toT() copies and
converts and leaves the object itself unchanged. If you ask for a converts and leaves the object itself unchanged. If you ask for a
type that cannot be generated from the stored type, the result type that cannot be generated from the stored type, the result
depends on the type (see the function documentation for details). depends on the type (see the function documentation for details).
<p> Note that three data types supported by TQVariant are <a href="shclass.html#explicitly-shared">explicitly shared</a>, namely <a href="ntqimage.html">TQImage</a>, <a href="ntqpointarray.html">TQPointArray</a>, and <a href="ntqcstring.html">TQCString</a>, and in these <p> Note that three data types supported by TQVariant are <a href="shclass.html#explicitly-shared">explicitly shared</a>, namely <a href="tqimage.html">TQImage</a>, <a href="ntqpointarray.html">TQPointArray</a>, and <a href="ntqcstring.html">TQCString</a>, and in these
cases the toT() methods return a <a href="shclass.html#shallow-copy">shallow copy</a>. In almost all cases cases the toT() methods return a <a href="shclass.html#shallow-copy">shallow copy</a>. In almost all cases
you must make a <a href="shclass.html#deep-copy">deep copy</a> of the returned values before modifying you must make a <a href="shclass.html#deep-copy">deep copy</a> of the returned values before modifying
them. them.
@ -258,7 +258,7 @@ contain.
<li><tt>TQVariant::Double</tt> - a double <li><tt>TQVariant::Double</tt> - a double
<li><tt>TQVariant::Font</tt> - a <a href="ntqfont.html">TQFont</a> <li><tt>TQVariant::Font</tt> - a <a href="ntqfont.html">TQFont</a>
<li><tt>TQVariant::IconSet</tt> - a <a href="ntqiconset.html">TQIconSet</a> <li><tt>TQVariant::IconSet</tt> - a <a href="ntqiconset.html">TQIconSet</a>
<li><tt>TQVariant::Image</tt> - a <a href="ntqimage.html">TQImage</a> <li><tt>TQVariant::Image</tt> - a <a href="tqimage.html">TQImage</a>
<li><tt>TQVariant::Int</tt> - an int <li><tt>TQVariant::Int</tt> - an int
<li><tt>TQVariant::KeySequence</tt> - a <a href="ntqkeysequence.html">TQKeySequence</a> <li><tt>TQVariant::KeySequence</tt> - a <a href="ntqkeysequence.html">TQKeySequence</a>
<li><tt>TQVariant::List</tt> - a <a href="tqvaluelist.html">TQValueList</a><TQVariant> <li><tt>TQVariant::List</tt> - a <a href="tqvaluelist.html">TQValueList</a><TQVariant>
@ -306,7 +306,7 @@ Constructs a new variant with a size policy value, <em>val</em>.
Constructs a copy of the variant, <em>p</em>, passed as the argument to Constructs a copy of the variant, <em>p</em>, passed as the argument to
this constructor. Usually this is a <a href="shclass.html#deep-copy">deep copy</a>, but a <a href="shclass.html#shallow-copy">shallow copy</a> this constructor. Usually this is a <a href="shclass.html#deep-copy">deep copy</a>, but a <a href="shclass.html#shallow-copy">shallow copy</a>
is made if the stored data type is <a href="shclass.html#explicitly-shared">explicitly shared</a>, as e.g. is made if the stored data type is <a href="shclass.html#explicitly-shared">explicitly shared</a>, as e.g.
<a href="ntqimage.html">TQImage</a> is. <a href="tqimage.html">TQImage</a> is.
<h3 class=fn><a name="TQVariant-3"></a>TQVariant::TQVariant ( <a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s ) <h3 class=fn><a name="TQVariant-3"></a>TQVariant::TQVariant ( <a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s )
</h3> </h3>
@ -341,10 +341,10 @@ Constructs a new variant with a font value, <em>val</em>.
</h3> </h3>
Constructs a new variant with a pixmap value, <em>val</em>. Constructs a new variant with a pixmap value, <em>val</em>.
<h3 class=fn><a name="TQVariant-a"></a>TQVariant::TQVariant ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;val ) <h3 class=fn><a name="TQVariant-a"></a>TQVariant::TQVariant ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;val )
</h3> </h3>
Constructs a new variant with an image value, <em>val</em>. Constructs a new variant with an image value, <em>val</em>.
<p> Because <a href="ntqimage.html">TQImage</a> is <a href="shclass.html#explicitly-shared">explicitly shared</a>, you may need to pass a <a href="shclass.html#deep-copy">deep copy</a> to the variant using <a href="ntqimage.html#copy">TQImage::copy</a>(), e.g. if you intend <p> Because <a href="tqimage.html">TQImage</a> is <a href="shclass.html#explicitly-shared">explicitly shared</a>, you may need to pass a <a href="shclass.html#deep-copy">deep copy</a> to the variant using <a href="tqimage.html#copy">TQImage::copy</a>(), e.g. if you intend
changing the image you've passed later on. changing the image you've passed later on.
<h3 class=fn><a name="TQVariant-b"></a>TQVariant::TQVariant ( const&nbsp;<a href="ntqbrush.html">TQBrush</a>&nbsp;&amp;&nbsp;val ) <h3 class=fn><a name="TQVariant-b"></a>TQVariant::TQVariant ( const&nbsp;<a href="ntqbrush.html">TQBrush</a>&nbsp;&amp;&nbsp;val )
@ -563,7 +563,7 @@ not possible the variant is set to an empty iconset.
<p> Returns a reference to the stored iconset. <p> Returns a reference to the stored iconset.
<p> <p>See also <a href="#toIconSet">toIconSet</a>(). <p> <p>See also <a href="#toIconSet">toIconSet</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a>&nbsp;&amp; <a name="asImage"></a>TQVariant::asImage () <h3 class=fn><a href="tqimage.html">TQImage</a>&nbsp;&amp; <a name="asImage"></a>TQVariant::asImage ()
</h3> </h3>
<p> Tries to convert the variant to hold an image value. If that is <p> Tries to convert the variant to hold an image value. If that is
@ -834,7 +834,7 @@ equal; otherwise returns FALSE.
</h3> </h3>
Assigns the value of the variant <em>variant</em> to this variant. Assigns the value of the variant <em>variant</em> to this variant.
<p> This is a <a href="shclass.html#deep-copy">deep copy</a> of the variant, but note that if the variant <p> This is a <a href="shclass.html#deep-copy">deep copy</a> of the variant, but note that if the variant
holds an <a href="shclass.html#explicitly-shared">explicitly shared</a> type such as <a href="ntqimage.html">TQImage</a>, a <a href="shclass.html#shallow-copy">shallow copy</a> is holds an <a href="shclass.html#explicitly-shared">explicitly shared</a> type such as <a href="tqimage.html">TQImage</a>, a <a href="shclass.html#shallow-copy">shallow copy</a> is
performed. performed.
<h3 class=fn>bool <a name="operator-eq-eq"></a>TQVariant::operator== ( const&nbsp;<a href="ntqvariant.html">TQVariant</a>&nbsp;&amp;&nbsp;v ) const <h3 class=fn>bool <a name="operator-eq-eq"></a>TQVariant::operator== ( const&nbsp;<a href="ntqvariant.html">TQVariant</a>&nbsp;&amp;&nbsp;v ) const
@ -952,9 +952,9 @@ Returns the variant as a <a href="ntqiconset.html">TQIconSet</a> if the variant
IconSet; otherwise returns an icon set of null pixmaps. IconSet; otherwise returns an icon set of null pixmaps.
<p> <p>See also <a href="#asIconSet">asIconSet</a>(). <p> <p>See also <a href="#asIconSet">asIconSet</a>().
<h3 class=fn>const&nbsp;<a href="ntqimage.html">TQImage</a> <a name="toImage"></a>TQVariant::toImage () const <h3 class=fn>const&nbsp;<a href="tqimage.html">TQImage</a> <a name="toImage"></a>TQVariant::toImage () const
</h3> </h3>
Returns the variant as a <a href="ntqimage.html">TQImage</a> if the variant has <a href="#type">type</a>() Image; Returns the variant as a <a href="tqimage.html">TQImage</a> if the variant has <a href="#type">type</a>() Image;
otherwise returns a null image. otherwise returns a null image.
<p> <p>See also <a href="#asImage">asImage</a>(). <p> <p>See also <a href="#asImage">asImage</a>().

@ -46,7 +46,7 @@ by default in the standard plugin directory.
<th valign="top">Base Class <th valign="top">Base Class
<th valign="top">Default Path <th valign="top">Default Path
<tr bgcolor="#f0f0f0"> <tr bgcolor="#f0f0f0">
<td valign="top"><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a> <td valign="top"><a href="tqimageformatplugin.html">TQImageFormatPlugin</a>
<td valign="top"><tt>pluginsbase/imageformats</tt> <sup>*</sup> <td valign="top"><tt>pluginsbase/imageformats</tt> <sup>*</sup>
<tr bgcolor="#d0d0d0"> <tr bgcolor="#d0d0d0">
<td valign="top"><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a> <td valign="top"><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a>

@ -40,7 +40,7 @@ Windows.
<p> <p>
<p><table width="100%"> <p><table width="100%">
<tr bgcolor=#f0f0f0><td><b><a href="qgfxdriverplugin.html">TQGfxDriverPlugin</a></b><td>Abstract base for TQt/Embedded graphics driver plugins <tr bgcolor=#f0f0f0><td><b><a href="qgfxdriverplugin.html">TQGfxDriverPlugin</a></b><td>Abstract base for TQt/Embedded graphics driver plugins
<tr bgcolor=#f0f0f0><td><b><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a></b><td>Abstract base for custom image format plugins <tr bgcolor=#f0f0f0><td><b><a href="tqimageformatplugin.html">TQImageFormatPlugin</a></b><td>Abstract base for custom image format plugins
<tr bgcolor=#f0f0f0><td><b><a href="qkbddriverplugin.html">TQKbdDriverPlugin</a></b><td>Abstract base for TQt/Embedded keyboard driver plugins <tr bgcolor=#f0f0f0><td><b><a href="qkbddriverplugin.html">TQKbdDriverPlugin</a></b><td>Abstract base for TQt/Embedded keyboard driver plugins
<tr bgcolor=#f0f0f0><td><b><a href="ntqlibrary.html">TQLibrary</a></b><td>Wrapper for handling shared libraries <tr bgcolor=#f0f0f0><td><b><a href="ntqlibrary.html">TQLibrary</a></b><td>Wrapper for handling shared libraries
<tr bgcolor=#f0f0f0><td><b><a href="qmousedriverplugin.html">TQMouseDriverPlugin</a></b><td>Abstract base for TQt/Embedded mouse driver plugins <tr bgcolor=#f0f0f0><td><b><a href="qmousedriverplugin.html">TQMouseDriverPlugin</a></b><td>Abstract base for TQt/Embedded mouse driver plugins

@ -104,7 +104,7 @@ private:
#include "application.h" #include "application.h"
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qtoolbar-h.html">ntqtoolbar.h</a>&gt; #include &lt;<a href="qtoolbar-h.html">ntqtoolbar.h</a>&gt;
#include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt; #include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt;

@ -78,7 +78,7 @@ body { background: #ffffff; color: black; }
#define TQASYNCIMAGEIO_H #define TQASYNCIMAGEIO_H
#ifndef QT_H #ifndef QT_H
#include "ntqimage.h" #include "tqimage.h"
#endif // QT_H #endif // QT_H
#ifndef TQT_NO_ASYNC_IMAGE_IO #ifndef TQT_NO_ASYNC_IMAGE_IO

@ -83,7 +83,7 @@ class TQImageDragData;
#ifndef QT_H #ifndef QT_H
#include "tqobject.h" #include "tqobject.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqstrlist.h" #include "ntqstrlist.h"
#include "ntqcolor.h" #include "ntqcolor.h"
#endif // QT_H #endif // QT_H

@ -66,7 +66,7 @@ of the supplied functions:
<a name="2-1"></a><p> <pre> <a name="2-1"></a><p> <pre>
#include "generated_qembed_file.h" #include "generated_qembed_file.h"
<a href="ntqimage.html">TQImage</a> myFindImage(const char* name) <a href="tqimage.html">TQImage</a> myFindImage(const char* name)
{ {
return qembed_findImage(name); return qembed_findImage(name);
} }

@ -78,7 +78,7 @@ body { background: #ffffff; color: black; }
#ifndef QT_H #ifndef QT_H
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqnamespace.h" #include "ntqnamespace.h"
#include "ntqimage.h" #include "tqimage.h"
#include "qfontmanager_qws.h" #include "qfontmanager_qws.h"
#include "qmemorymanager_qws.h" #include "qmemorymanager_qws.h"
#include "ntqpoint.h" #include "ntqpoint.h"

@ -284,17 +284,17 @@ returned will be empty.
example, if the underlying hardware does not support the format example, if the underlying hardware does not support the format
attributes that were requested. attributes that were requested.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertToGLFormat"></a>TQGLWidget::convertToGLFormat ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt> <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertToGLFormat"></a>TQGLWidget::convertToGLFormat ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt>
</h3> </h3>
Converts the image <em>img</em> into the unnamed format expected by Converts the image <em>img</em> into the unnamed format expected by
OpenGL functions such as glTexImage2D(). The returned image is not OpenGL functions such as glTexImage2D(). The returned image is not
usable as a <a href="ntqimage.html">TQImage</a>, but <a href="ntqimage.html#width">TQImage::width</a>(), <a href="ntqimage.html#height">TQImage::height</a>() and usable as a <a href="tqimage.html">TQImage</a>, but <a href="tqimage.html#width">TQImage::width</a>(), <a href="tqimage.html#height">TQImage::height</a>() and
<a href="ntqimage.html#bits">TQImage::bits</a>() may be used with OpenGL. The following few lines <a href="tqimage.html#bits">TQImage::bits</a>() may be used with OpenGL. The following few lines
are from the texture example. Most of the code is irrelevant, so are from the texture example. Most of the code is irrelevant, so
we just quote the relevant bits: we just quote the relevant bits:
<p> <p>
<pre> <a href="ntqimage.html">TQImage</a> tex1, tex2, buf; <pre> <a href="tqimage.html">TQImage</a> tex1, tex2, buf;
if ( !buf.load( "gllogo.bmp" ) ) { // Load first image from file if ( !buf.load( "gllogo.bmp" ) ) { // Load first image from file
</pre> </pre>
<p> We create <em>tex1</em> (and another variable) for OpenGL, and load a real <p> We create <em>tex1</em> (and another variable) for OpenGL, and load a real
@ -303,8 +303,8 @@ image into <em>buf</em>.
</pre> </pre>
<p> A few lines later, we convert <em>buf</em> into OpenGL format and store it <p> A few lines later, we convert <em>buf</em> into OpenGL format and store it
in <em>tex1</em>. in <em>tex1</em>.
<p> <pre> <a name="x2121"></a><a name="x2120"></a> glTexImage2D( GL_TEXTURE_2D, 0, 3, tex1.<a href="ntqimage.html#width">width</a>(), tex1.<a href="ntqimage.html#height">height</a>(), 0, <p> <pre> <a name="x2121"></a><a name="x2120"></a> glTexImage2D( GL_TEXTURE_2D, 0, 3, tex1.<a href="tqimage.html#width">width</a>(), tex1.<a href="tqimage.html#height">height</a>(), 0,
<a name="x2119"></a> GL_RGBA, GL_UNSIGNED_BYTE, tex1.<a href="ntqimage.html#bits">bits</a>() ); <a name="x2119"></a> GL_RGBA, GL_UNSIGNED_BYTE, tex1.<a href="tqimage.html#bits">bits</a>() );
</pre> </pre>
<p> Note the dimension restrictions for texture images as described in <p> Note the dimension restrictions for texture images as described in
the glTexImage2D() documentation. The width must be 2^m + 2*border the glTexImage2D() documentation. The width must be 2^m + 2*border
@ -343,7 +343,7 @@ Executes the virtual function <a href="#paintGL">paintGL</a>().
Initializes OpenGL for this widget's context. Calls the virtual Initializes OpenGL for this widget's context. Calls the virtual
function <a href="#initializeGL">initializeGL</a>(). function <a href="#initializeGL">initializeGL</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="grabFrameBuffer"></a>TQGLWidget::grabFrameBuffer ( bool&nbsp;withAlpha = FALSE )<tt> [virtual]</tt> <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="grabFrameBuffer"></a>TQGLWidget::grabFrameBuffer ( bool&nbsp;withAlpha = FALSE )<tt> [virtual]</tt>
</h3> </h3>
Returns an image of the frame buffer. If <em>withAlpha</em> is TRUE the Returns an image of the frame buffer. If <em>withAlpha</em> is TRUE the
alpha channel is included. alpha channel is included.

@ -1,116 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqimage.h:66 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>TQImage Member List</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQImage</h1>
<p>This is the complete list of member functions for
<a href="ntqimage.html">TQImage</a>, including inherited members.
<ul>
<li><a href="ntqimage.html#TQImage">TQImage</a>()
<li><a href="ntqimage.html#~TQImage">~TQImage</a>()
<li><a href="ntqimage.html#allGray">allGray</a>()
<li><a href="ntqimage.html#bitOrder">bitOrder</a>()
<li><a href="ntqimage.html#bits">bits</a>()
<li><a href="ntqimage.html#bytesPerLine">bytesPerLine</a>()
<li><a href="ntqimage.html#color">color</a>()
<li><a href="ntqimage.html#colorTable">colorTable</a>()
<li><a href="ntqimage.html#convertBitOrder">convertBitOrder</a>()
<li><a href="ntqimage.html#convertDepth">convertDepth</a>()
<li><a href="ntqimage.html#convertDepthWithPalette">convertDepthWithPalette</a>()
<li><a href="ntqimage.html#copy">copy</a>()
<li><a href="ntqimage.html#create">create</a>()
<li><a href="ntqimage.html#createAlphaMask">createAlphaMask</a>()
<li><a href="ntqimage.html#createHeuristicMask">createHeuristicMask</a>()
<li><a href="ntqimage.html#depth">depth</a>()
<li><a href="ntqimage.html#detach">detach</a>()
<li><a href="ntqimage.html#dotsPerMeterX">dotsPerMeterX</a>()
<li><a href="ntqimage.html#dotsPerMeterY">dotsPerMeterY</a>()
<li><a href="ntqimage.html#fill">fill</a>()
<li><a href="ntqimage.html#fromMimeSource">fromMimeSource</a>()
<li><a href="ntqimage.html#hasAlphaBuffer">hasAlphaBuffer</a>()
<li><a href="ntqimage.html#height">height</a>()
<li><a href="ntqimage.html#imageFormat">imageFormat</a>()
<li><a href="ntqimage.html#inputFormatList">inputFormatList</a>()
<li><a href="ntqimage.html#inputFormats">inputFormats</a>()
<li><a href="ntqimage.html#invertPixels">invertPixels</a>()
<li><a href="ntqimage.html#isGrayscale">isGrayscale</a>()
<li><a href="ntqimage.html#isNull">isNull</a>()
<li><a href="ntqimage.html#jumpTable">jumpTable</a>()
<li><a href="ntqimage.html#load">load</a>()
<li><a href="ntqimage.html#loadFromData">loadFromData</a>()
<li><a href="ntqimage.html#mirror">mirror</a>()
<li><a href="ntqimage.html#numBytes">numBytes</a>()
<li><a href="ntqimage.html#numColors">numColors</a>()
<li><a href="ntqimage.html#offset">offset</a>()
<li><a href="ntqimage.html#operator!-eq">operator!=</a>()
<li><a href="ntqimage.html#operator-eq">operator=</a>()
<li><a href="ntqimage.html#operator-eq-eq">operator==</a>()
<li><a href="ntqimage.html#outputFormatList">outputFormatList</a>()
<li><a href="ntqimage.html#outputFormats">outputFormats</a>()
<li><a href="ntqimage.html#pixel">pixel</a>()
<li><a href="ntqimage.html#pixelIndex">pixelIndex</a>()
<li><a href="ntqimage.html#rect">rect</a>()
<li><a href="ntqimage.html#reset">reset</a>()
<li><a href="ntqimage.html#save">save</a>()
<li><a href="ntqimage.html#scale">scale</a>()
<li><a href="ntqimage.html#scaleHeight">scaleHeight</a>()
<li><a href="ntqimage.html#scaleWidth">scaleWidth</a>()
<li><a href="ntqimage.html#scanLine">scanLine</a>()
<li><a href="ntqimage.html#setAlphaBuffer">setAlphaBuffer</a>()
<li><a href="ntqimage.html#setColor">setColor</a>()
<li><a href="ntqimage.html#setDotsPerMeterX">setDotsPerMeterX</a>()
<li><a href="ntqimage.html#setDotsPerMeterY">setDotsPerMeterY</a>()
<li><a href="ntqimage.html#setNumColors">setNumColors</a>()
<li><a href="ntqimage.html#setOffset">setOffset</a>()
<li><a href="ntqimage.html#setPixel">setPixel</a>()
<li><a href="ntqimage.html#setText">setText</a>()
<li><a href="ntqimage.html#size">size</a>()
<li><a href="ntqimage.html#smoothScale">smoothScale</a>()
<li><a href="ntqimage.html#swapRGB">swapRGB</a>()
<li><a href="ntqimage.html#systemBitOrder">systemBitOrder</a>()
<li><a href="ntqimage.html#systemByteOrder">systemByteOrder</a>()
<li><a href="ntqimage.html#text">text</a>()
<li><a href="ntqimage.html#textKeys">textKeys</a>()
<li><a href="ntqimage.html#textLanguages">textLanguages</a>()
<li><a href="ntqimage.html#textList">textList</a>()
<li><a href="ntqimage.html#valid">valid</a>()
<li><a href="ntqimage.html#width">width</a>()
<li><a href="ntqimage.html#xForm">xForm</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>

@ -76,8 +76,8 @@ and supported by <a href="qtextdrag.html">TQTextDrag</a>.
<li> kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain" <li> kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain"
and supported by TQTextDrag. and supported by TQTextDrag.
<li> kScrapFlavorTypePicture - converted to "image/format", where format is <li> kScrapFlavorTypePicture - converted to "image/format", where format is
a <a href="ntqimage.html#outputFormats">TQt image format</a>, a <a href="tqimage.html#outputFormats">TQt image format</a>,
and supported by <a href="qimagedrag.html">TQImageDrag</a>. and supported by <a href="tqimagedrag.html">TQImageDrag</a>.
<li> kDragFlavorTypeHFS - converted to "text/uri-list", <li> kDragFlavorTypeHFS - converted to "text/uri-list",
and supported by <a href="quridrag.html">TQUriDrag</a>. and supported by <a href="quridrag.html">TQUriDrag</a>.
</ul> </ul>

@ -55,7 +55,7 @@ magnified area as a .bmp file.
#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt; #include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt; #include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt; #include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt; #include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt;
#include &lt;<a href="qregexp-h.html">ntqregexp.h</a>&gt; #include &lt;<a href="qregexp-h.html">ntqregexp.h</a>&gt;
@ -97,7 +97,7 @@ private:
<a href="ntqpushbutton.html">TQPushButton</a> *quitButton; <a href="ntqpushbutton.html">TQPushButton</a> *quitButton;
<a href="ntqpixmap.html">TQPixmap</a> pm; // pixmap, magnified <a href="ntqpixmap.html">TQPixmap</a> pm; // pixmap, magnified
<a href="ntqpixmap.html">TQPixmap</a> p; // pixmap <a href="ntqpixmap.html">TQPixmap</a> p; // pixmap
<a href="ntqimage.html">TQImage</a> image; // image of pixmap (for RGB) <a href="tqimage.html">TQImage</a> image; // image of pixmap (for RGB)
<a href="ntqlabel.html">TQLabel</a> *rgb; <a href="ntqlabel.html">TQLabel</a> *rgb;
int yoffset; // pixels in addition to the actual picture int yoffset; // pixels in addition to the actual picture
int z; // magnification factor int z; // magnification factor
@ -375,9 +375,9 @@ void <a name="f490"></a>MagWidget::grabAround(TQPoint pos)
x = e-&gt;<a href="qmouseevent.html#pos">pos</a>().x() / z; x = e-&gt;<a href="qmouseevent.html#pos">pos</a>().x() / z;
y = (e-&gt;<a href="qmouseevent.html#pos">pos</a>().y() - ( zoom ? zoom-&gt;<a href="tqwidget.html#height">height</a>() : 0 ) - 4) / z; y = (e-&gt;<a href="qmouseevent.html#pos">pos</a>().y() - ( zoom ? zoom-&gt;<a href="tqwidget.html#height">height</a>() : 0 ) - 4) / z;
<a href="ntqstring.html">TQString</a> pixelinfo; <a href="ntqstring.html">TQString</a> pixelinfo;
<a name="x1777"></a> if ( image.<a href="ntqimage.html#valid">valid</a>(x,y) ) <a name="x1777"></a> if ( image.<a href="tqimage.html#valid">valid</a>(x,y) )
{ {
<a name="x1776"></a> TQRgb px = image.<a href="ntqimage.html#pixel">pixel</a>(x,y); <a name="x1776"></a> TQRgb px = image.<a href="tqimage.html#pixel">pixel</a>(x,y);
<a name="x1795"></a> pixelinfo.<a href="ntqstring.html#sprintf">sprintf</a>(" %3d,%3d,%3d #%02x%02x%02x", <a name="x1795"></a> pixelinfo.<a href="ntqstring.html#sprintf">sprintf</a>(" %3d,%3d,%3d #%02x%02x%02x",
<a href="ntqcolor.html#qRed">tqRed</a>(px), tqGreen(px), tqBlue(px), <a href="ntqcolor.html#qRed">tqRed</a>(px), tqGreen(px), tqBlue(px),
<a href="ntqcolor.html#qRed">tqRed</a>(px), tqGreen(px), tqBlue(px)); <a href="ntqcolor.html#qRed">tqRed</a>(px), tqGreen(px), tqBlue(px));

@ -87,7 +87,7 @@ format.
Returns TRUE if the object can provide the data in format <em>mimeType</em>; otherwise returns FALSE. Returns TRUE if the object can provide the data in format <em>mimeType</em>; otherwise returns FALSE.
<p> If you inherit from TQMimeSource, for consistency reasons it is <p> If you inherit from TQMimeSource, for consistency reasons it is
better to implement the more abstract canDecode() functions such better to implement the more abstract canDecode() functions such
as <a href="qtextdrag.html#canDecode">TQTextDrag::canDecode</a>() and <a href="qimagedrag.html#canDecode">TQImageDrag::canDecode</a>(). as <a href="qtextdrag.html#canDecode">TQTextDrag::canDecode</a>() and <a href="tqimagedrag.html#canDecode">TQImageDrag::canDecode</a>().
<p>Example: <a href="simple_dd-example.html#x2825">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2825">iconview/simple_dd/main.cpp</a>.
<p>Reimplemented in <a href="qdropevent.html#provides">TQDropEvent</a>. <p>Reimplemented in <a href="qdropevent.html#provides">TQDropEvent</a>.

@ -69,7 +69,7 @@ The TQMimeSourceFactory class is an extensible provider of mime-typed data.
collection of information. Each piece of information is collection of information. Each piece of information is
represented by a <a href="qmimesource.html">TQMimeSource</a> object which can be examined and represented by a <a href="qmimesource.html">TQMimeSource</a> object which can be examined and
converted to concrete data types by functions such as converted to concrete data types by functions such as
<a href="qimagedrag.html#canDecode">TQImageDrag::canDecode</a>() and <a href="qimagedrag.html#decode">TQImageDrag::decode</a>(). <a href="tqimagedrag.html#canDecode">TQImageDrag::canDecode</a>() and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>().
<p> The base TQMimeSourceFactory can be used in two ways: as an <p> The base TQMimeSourceFactory can be used in two ways: as an
abstraction of a collection of files or as specifically stored abstraction of a collection of files or as specifically stored
data. For it to access files, call <a href="#setFilePath">setFilePath</a>() before accessing data. For it to access files, call <a href="#setFilePath">setFilePath</a>() before accessing
@ -97,7 +97,7 @@ as:
</pre> </pre>
<p> To be able to use this image within some rich text, for example <p> To be able to use this image within some rich text, for example
inside a TQLabel, you must create a <a href="ntqimage.html">TQImage</a> from the raw data and inside a TQLabel, you must create a <a href="tqimage.html">TQImage</a> from the raw data and
insert it into the factory with a unique name: insert it into the factory with a unique name:
<pre> <pre>
TQMimeSourceFactory::<a href="#defaultFactory">defaultFactory</a>()-&gt;setImage( "myimage", TQImage(myimage_data) ); TQMimeSourceFactory::<a href="#defaultFactory">defaultFactory</a>()-&gt;setImage( "myimage", TQImage(myimage_data) );
@ -150,7 +150,7 @@ call, so you should immediately decode the result.
store, the factory tries to access the local filesystem. If <em>abs_name</em> isn't an absolute file name, the factory will search for store, the factory tries to access the local filesystem. If <em>abs_name</em> isn't an absolute file name, the factory will search for
it in all defined paths (see <a href="#setFilePath">setFilePath</a>()). it in all defined paths (see <a href="#setFilePath">setFilePath</a>()).
<p> The factory understands all the image formats supported by <p> The factory understands all the image formats supported by
<a href="qimageio.html">TQImageIO</a>. Any other mime types are determined by the file name <a href="tqimageio.html">TQImageIO</a>. Any other mime types are determined by the file name
extension. The default settings are extension. The default settings are
<pre> <pre>
<a href="#setExtensionType">setExtensionType</a>("html", "text/html;charset=iso8859-1"); <a href="#setExtensionType">setExtensionType</a>("html", "text/html;charset=iso8859-1");
@ -243,11 +243,11 @@ Sets the list of directories that will be searched when named data
is requested to the those given in the string list <em>path</em>. is requested to the those given in the string list <em>path</em>.
<p> <p>See also <a href="#filePath">filePath</a>(). <p> <p>See also <a href="#filePath">filePath</a>().
<h3 class=fn>void <a name="setImage"></a>TQMimeSourceFactory::setImage ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )<tt> [virtual]</tt> <h3 class=fn>void <a name="setImage"></a>TQMimeSourceFactory::setImage ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )<tt> [virtual]</tt>
</h3> </h3>
Sets <em>image</em> to be the data item associated with the absolute Sets <em>image</em> to be the data item associated with the absolute
name <em>abs_name</em>. name <em>abs_name</em>.
<p> Equivalent to <a href="#setData">setData</a>(abs_name, new <a href="qimagedrag.html">TQImageDrag</a>(image)). <p> Equivalent to <a href="#setData">setData</a>(abs_name, new <a href="tqimagedrag.html">TQImageDrag</a>(image)).
<h3 class=fn>void <a name="setPixmap"></a>TQMimeSourceFactory::setPixmap ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name, const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pixmap )<tt> [virtual]</tt> <h3 class=fn>void <a name="setPixmap"></a>TQMimeSourceFactory::setPixmap ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name, const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pixmap )<tt> [virtual]</tt>
</h3> </h3>

@ -284,7 +284,7 @@ public:
// Image conversion flags. The unusual ordering is caused by // Image conversion flags. The unusual ordering is caused by
// compatibility and default requirements. // compatibility and default requirements.
// Documented in qimage.cpp // Documented in tqimage.cpp
enum ImageConversionFlags { enum ImageConversionFlags {
ColorMode_Mask = 0x00000003, ColorMode_Mask = 0x00000003,

@ -90,7 +90,7 @@ called first (assuming the <tt>&lt;EMBED&gt;</tt> tag has a SRC parameter).
first call to newWindow(). This includes any use of <a href="ntqpaintdevice.html">TQPaintDevice</a> first call to newWindow(). This includes any use of <a href="ntqpaintdevice.html">TQPaintDevice</a>
(i.e. <a href="ntqpixmap.html">TQPixmap</a>, <a href="tqwidget.html">TQWidget</a>, and all subclasses), <a href="ntqapplication.html">TQApplication</a>, anything (i.e. <a href="ntqpixmap.html">TQPixmap</a>, <a href="tqwidget.html">TQWidget</a>, and all subclasses), <a href="ntqapplication.html">TQApplication</a>, anything
related to <a href="ntqpainter.html">TQPainter</a> (<a href="ntqbrush.html">TQBrush</a>, etc.), fonts, <a href="ntqmovie.html">TQMovie</a>, <a href="ntqtooltip.html">TQToolTip</a>, etc. related to <a href="ntqpainter.html">TQPainter</a> (<a href="ntqbrush.html">TQBrush</a>, etc.), fonts, <a href="ntqmovie.html">TQMovie</a>, <a href="ntqtooltip.html">TQToolTip</a>, etc.
Useful classes which specifically <em>can</em> be used are <a href="ntqimage.html">TQImage</a>, Useful classes which specifically <em>can</em> be used are <a href="tqimage.html">TQImage</a>,
<a href="ntqfile.html">TQFile</a>, and <a href="ntqbuffer.html">TQBuffer</a>. <a href="ntqfile.html">TQFile</a>, and <a href="ntqbuffer.html">TQBuffer</a>.
<p> This restriction can easily be accommodated by structuring your <p> This restriction can easily be accommodated by structuring your
plugin so that the task of the TQNPInstance is to gather data, plugin so that the task of the TQNPInstance is to gather data,

@ -62,7 +62,7 @@ the desired quality and compression requirements).
result (e.g. converting from 32-bit to 8-bit), use the <em>conversionflags</em> to specify how you'd prefer this to happen. result (e.g. converting from 32-bit to 8-bit), use the <em>conversionflags</em> to specify how you'd prefer this to happen.
<p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>. <p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>.
<h3 class=fn>bool <a name="packImage"></a>TQPNGImagePacker::packImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img ) <h3 class=fn>bool <a name="packImage"></a>TQPNGImagePacker::packImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )
</h3> </h3>
Adds the image <em>img</em> to the PNG animation, analyzing the Adds the image <em>img</em> to the PNG animation, analyzing the
differences between this and the previous image to improve differences between this and the previous image to improve

@ -78,7 +78,7 @@ body { background: #ffffff; color: black; }
#define TQPNGIO_H #define TQPNGIO_H
#ifndef QT_H #ifndef QT_H
#include "ntqimage.h" #include "tqimage.h"
#endif // QT_H #endif // QT_H
#ifndef TQT_NO_IMAGEIO_PNG #ifndef TQT_NO_IMAGEIO_PNG

@ -255,7 +255,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
application. Used by the rotated driver; the TQScreen application. Used by the rotated driver; the TQScreen
implementation simply returns <em>r</em>. implementation simply returns <em>r</em>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="mapFromDevice-4"></a>TQScreen::mapFromDevice ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const<tt> [virtual]</tt> <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mapFromDevice-4"></a>TQScreen::mapFromDevice ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const<tt> [virtual]</tt>
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Transforms an image so that it matches the application coordinate <p> Transforms an image so that it matches the application coordinate
@ -288,7 +288,7 @@ This is an overloaded member function, provided for convenience. It behaves esse
<p> Map a user coordinate to the one to actually draw. Used by the <p> Map a user coordinate to the one to actually draw. Used by the
rotated driver; the TQScreen implementation simply returns <em>r</em>. rotated driver; the TQScreen implementation simply returns <em>r</em>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="mapToDevice-4"></a>TQScreen::mapToDevice ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const<tt> [virtual]</tt> <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mapToDevice-4"></a>TQScreen::mapToDevice ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const<tt> [virtual]</tt>
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Transforms an image so that it fits the device coordinate space <p> Transforms an image so that it fits the device coordinate space

@ -3567,170 +3567,170 @@
<section ref="qiconviewitem-members.html" title="List of All Member Functions"/> <section ref="qiconviewitem-members.html" title="List of All Member Functions"/>
<section ref="qiconview-h.html" title="Header File"/> <section ref="qiconview-h.html" title="Header File"/>
</section> </section>
<section ref="ntqimage.html" title="TQImage Class Reference"> <section ref="tqimage.html" title="TQImage Class Reference">
<keyword ref="ntqimage.html">TQImage</keyword> <keyword ref="tqimage.html">TQImage</keyword>
<keyword ref="ntqimage.html#Endian">Endian</keyword> <keyword ref="tqimage.html#Endian">Endian</keyword>
<keyword ref="ntqimage.html#ScaleMode">ScaleMode</keyword> <keyword ref="tqimage.html#ScaleMode">ScaleMode</keyword>
<keyword ref="ntqimage.html#allGray">allGray</keyword> <keyword ref="tqimage.html#allGray">allGray</keyword>
<keyword ref="ntqimage.html#bitOrder">bitOrder</keyword> <keyword ref="tqimage.html#bitOrder">bitOrder</keyword>
<keyword ref="ntqimage.html#bits">bits</keyword> <keyword ref="tqimage.html#bits">bits</keyword>
<keyword ref="ntqimage.html#bytesPerLine">bytesPerLine</keyword> <keyword ref="tqimage.html#bytesPerLine">bytesPerLine</keyword>
<keyword ref="ntqimage.html#color">color</keyword> <keyword ref="tqimage.html#color">color</keyword>
<keyword ref="ntqimage.html#colorTable">colorTable</keyword> <keyword ref="tqimage.html#colorTable">colorTable</keyword>
<keyword ref="ntqimage.html#convertBitOrder">convertBitOrder</keyword> <keyword ref="tqimage.html#convertBitOrder">convertBitOrder</keyword>
<keyword ref="ntqimage.html#convertDepth">convertDepth</keyword> <keyword ref="tqimage.html#convertDepth">convertDepth</keyword>
<keyword ref="ntqimage.html#convertDepthWithPalette">convertDepthWithPalette</keyword> <keyword ref="tqimage.html#convertDepthWithPalette">convertDepthWithPalette</keyword>
<keyword ref="ntqimage.html#copy">copy</keyword> <keyword ref="tqimage.html#copy">copy</keyword>
<keyword ref="ntqimage.html#create">create</keyword> <keyword ref="tqimage.html#create">create</keyword>
<keyword ref="ntqimage.html#createAlphaMask">createAlphaMask</keyword> <keyword ref="tqimage.html#createAlphaMask">createAlphaMask</keyword>
<keyword ref="ntqimage.html#createHeuristicMask">createHeuristicMask</keyword> <keyword ref="tqimage.html#createHeuristicMask">createHeuristicMask</keyword>
<keyword ref="ntqimage.html#depth">depth</keyword> <keyword ref="tqimage.html#depth">depth</keyword>
<keyword ref="ntqimage.html#detach">detach</keyword> <keyword ref="tqimage.html#detach">detach</keyword>
<keyword ref="ntqimage.html#dotsPerMeterX">dotsPerMeterX</keyword> <keyword ref="tqimage.html#dotsPerMeterX">dotsPerMeterX</keyword>
<keyword ref="ntqimage.html#dotsPerMeterY">dotsPerMeterY</keyword> <keyword ref="tqimage.html#dotsPerMeterY">dotsPerMeterY</keyword>
<keyword ref="ntqimage.html#fill">fill</keyword> <keyword ref="tqimage.html#fill">fill</keyword>
<keyword ref="ntqimage.html#fromMimeSource">fromMimeSource</keyword> <keyword ref="tqimage.html#fromMimeSource">fromMimeSource</keyword>
<keyword ref="ntqimage.html#hasAlphaBuffer">hasAlphaBuffer</keyword> <keyword ref="tqimage.html#hasAlphaBuffer">hasAlphaBuffer</keyword>
<keyword ref="ntqimage.html#height">height</keyword> <keyword ref="tqimage.html#height">height</keyword>
<keyword ref="ntqimage.html#imageFormat">imageFormat</keyword> <keyword ref="tqimage.html#imageFormat">imageFormat</keyword>
<keyword ref="ntqimage.html#inputFormatList">inputFormatList</keyword> <keyword ref="tqimage.html#inputFormatList">inputFormatList</keyword>
<keyword ref="ntqimage.html#inputFormats">inputFormats</keyword> <keyword ref="tqimage.html#inputFormats">inputFormats</keyword>
<keyword ref="ntqimage.html#invertPixels">invertPixels</keyword> <keyword ref="tqimage.html#invertPixels">invertPixels</keyword>
<keyword ref="ntqimage.html#isGrayscale">isGrayscale</keyword> <keyword ref="tqimage.html#isGrayscale">isGrayscale</keyword>
<keyword ref="ntqimage.html#isNull">isNull</keyword> <keyword ref="tqimage.html#isNull">isNull</keyword>
<keyword ref="ntqimage.html#jumpTable">jumpTable</keyword> <keyword ref="tqimage.html#jumpTable">jumpTable</keyword>
<keyword ref="ntqimage.html#load">load</keyword> <keyword ref="tqimage.html#load">load</keyword>
<keyword ref="ntqimage.html#loadFromData">loadFromData</keyword> <keyword ref="tqimage.html#loadFromData">loadFromData</keyword>
<keyword ref="ntqimage.html#mirror">mirror</keyword> <keyword ref="tqimage.html#mirror">mirror</keyword>
<keyword ref="ntqimage.html#numBytes">numBytes</keyword> <keyword ref="tqimage.html#numBytes">numBytes</keyword>
<keyword ref="ntqimage.html#numColors">numColors</keyword> <keyword ref="tqimage.html#numColors">numColors</keyword>
<keyword ref="ntqimage.html#offset">offset</keyword> <keyword ref="tqimage.html#offset">offset</keyword>
<keyword ref="ntqimage.html#operator!-eq">operator!=</keyword> <keyword ref="tqimage.html#operator!-eq">operator!=</keyword>
<keyword ref="ntqimage.html#operator-eq">operator=</keyword> <keyword ref="tqimage.html#operator-eq">operator=</keyword>
<keyword ref="ntqimage.html#operator-eq-eq">operator==</keyword> <keyword ref="tqimage.html#operator-eq-eq">operator==</keyword>
<keyword ref="ntqimage.html#outputFormatList">outputFormatList</keyword> <keyword ref="tqimage.html#outputFormatList">outputFormatList</keyword>
<keyword ref="ntqimage.html#outputFormats">outputFormats</keyword> <keyword ref="tqimage.html#outputFormats">outputFormats</keyword>
<keyword ref="ntqimage.html#pixel">pixel</keyword> <keyword ref="tqimage.html#pixel">pixel</keyword>
<keyword ref="ntqimage.html#pixelIndex">pixelIndex</keyword> <keyword ref="tqimage.html#pixelIndex">pixelIndex</keyword>
<keyword ref="ntqimage.html#rect">rect</keyword> <keyword ref="tqimage.html#rect">rect</keyword>
<keyword ref="ntqimage.html#reset">reset</keyword> <keyword ref="tqimage.html#reset">reset</keyword>
<keyword ref="ntqimage.html#save">save</keyword> <keyword ref="tqimage.html#save">save</keyword>
<keyword ref="ntqimage.html#scale">scale</keyword> <keyword ref="tqimage.html#scale">scale</keyword>
<keyword ref="ntqimage.html#scaleHeight">scaleHeight</keyword> <keyword ref="tqimage.html#scaleHeight">scaleHeight</keyword>
<keyword ref="ntqimage.html#scaleWidth">scaleWidth</keyword> <keyword ref="tqimage.html#scaleWidth">scaleWidth</keyword>
<keyword ref="ntqimage.html#scanLine">scanLine</keyword> <keyword ref="tqimage.html#scanLine">scanLine</keyword>
<keyword ref="ntqimage.html#setAlphaBuffer">setAlphaBuffer</keyword> <keyword ref="tqimage.html#setAlphaBuffer">setAlphaBuffer</keyword>
<keyword ref="ntqimage.html#setColor">setColor</keyword> <keyword ref="tqimage.html#setColor">setColor</keyword>
<keyword ref="ntqimage.html#setDotsPerMeterX">setDotsPerMeterX</keyword> <keyword ref="tqimage.html#setDotsPerMeterX">setDotsPerMeterX</keyword>
<keyword ref="ntqimage.html#setDotsPerMeterY">setDotsPerMeterY</keyword> <keyword ref="tqimage.html#setDotsPerMeterY">setDotsPerMeterY</keyword>
<keyword ref="ntqimage.html#setNumColors">setNumColors</keyword> <keyword ref="tqimage.html#setNumColors">setNumColors</keyword>
<keyword ref="ntqimage.html#setOffset">setOffset</keyword> <keyword ref="tqimage.html#setOffset">setOffset</keyword>
<keyword ref="ntqimage.html#setPixel">setPixel</keyword> <keyword ref="tqimage.html#setPixel">setPixel</keyword>
<keyword ref="ntqimage.html#setText">setText</keyword> <keyword ref="tqimage.html#setText">setText</keyword>
<keyword ref="ntqimage.html#size">size</keyword> <keyword ref="tqimage.html#size">size</keyword>
<keyword ref="ntqimage.html#smoothScale">smoothScale</keyword> <keyword ref="tqimage.html#smoothScale">smoothScale</keyword>
<keyword ref="ntqimage.html#swapRGB">swapRGB</keyword> <keyword ref="tqimage.html#swapRGB">swapRGB</keyword>
<keyword ref="ntqimage.html#systemBitOrder">systemBitOrder</keyword> <keyword ref="tqimage.html#systemBitOrder">systemBitOrder</keyword>
<keyword ref="ntqimage.html#systemByteOrder">systemByteOrder</keyword> <keyword ref="tqimage.html#systemByteOrder">systemByteOrder</keyword>
<keyword ref="ntqimage.html#text">text</keyword> <keyword ref="tqimage.html#text">text</keyword>
<keyword ref="ntqimage.html#textKeys">textKeys</keyword> <keyword ref="tqimage.html#textKeys">textKeys</keyword>
<keyword ref="ntqimage.html#textLanguages">textLanguages</keyword> <keyword ref="tqimage.html#textLanguages">textLanguages</keyword>
<keyword ref="ntqimage.html#textList">textList</keyword> <keyword ref="tqimage.html#textList">textList</keyword>
<keyword ref="ntqimage.html#valid">valid</keyword> <keyword ref="tqimage.html#valid">valid</keyword>
<keyword ref="ntqimage.html#width">width</keyword> <keyword ref="tqimage.html#width">width</keyword>
<keyword ref="ntqimage.html#xForm">xForm</keyword> <keyword ref="tqimage.html#xForm">xForm</keyword>
<keyword ref="ntqimage.html#~TQImage">~TQImage</keyword> <keyword ref="tqimage.html#~TQImage">~TQImage</keyword>
<keyword ref="ntqimage.html#bitBlt">bitBlt</keyword> <keyword ref="tqimage.html#bitBlt">bitBlt</keyword>
<keyword ref="ntqimage.html#operator-lt-lt">operator&lt;&lt;</keyword> <keyword ref="tqimage.html#operator-lt-lt">operator&lt;&lt;</keyword>
<keyword ref="ntqimage.html#operator-gt-gt">operator&gt;&gt;</keyword> <keyword ref="tqimage.html#operator-gt-gt">operator&gt;&gt;</keyword>
<section ref="qimage-members.html" title="List of All Member Functions"/> <section ref="tqimage-members.html" title="List of All Member Functions"/>
<section ref="qimage-h.html" title="Header File"/> <section ref="tqimage-h.html" title="Header File"/>
</section> </section>
<section ref="qimageconsumer.html" title="QImageConsumer Class Reference"> <section ref="tqimageconsumer.html" title="TQImageConsumer Class Reference">
<keyword ref="qimageconsumer.html">QImageConsumer</keyword> <keyword ref="tqimageconsumer.html">TQImageConsumer</keyword>
<keyword ref="qimageconsumer.html#changed">changed</keyword> <keyword ref="tqimageconsumer.html#changed">changed</keyword>
<keyword ref="qimageconsumer.html#end">end</keyword> <keyword ref="tqimageconsumer.html#end">end</keyword>
<keyword ref="qimageconsumer.html#frameDone">frameDone</keyword> <keyword ref="tqimageconsumer.html#frameDone">frameDone</keyword>
<keyword ref="qimageconsumer.html#setFramePeriod">setFramePeriod</keyword> <keyword ref="tqimageconsumer.html#setFramePeriod">setFramePeriod</keyword>
<keyword ref="qimageconsumer.html#setLooping">setLooping</keyword> <keyword ref="tqimageconsumer.html#setLooping">setLooping</keyword>
<keyword ref="qimageconsumer.html#setSize">setSize</keyword> <keyword ref="tqimageconsumer.html#setSize">setSize</keyword>
<section ref="qimageconsumer-members.html" title="List of All Member Functions"/> <section ref="tqimageconsumer-members.html" title="List of All Member Functions"/>
<section ref="qasyncimageio-h.html" title="Header File"/> <section ref="qasyncimageio-h.html" title="Header File"/>
</section> </section>
<section ref="qimagedecoder.html" title="QImageDecoder Class Reference"> <section ref="tqimagedecoder.html" title="TQImageDecoder Class Reference">
<keyword ref="qimagedecoder.html">QImageDecoder</keyword> <keyword ref="tqimagedecoder.html">TQImageDecoder</keyword>
<keyword ref="qimagedecoder.html#decode">decode</keyword> <keyword ref="tqimagedecoder.html#decode">decode</keyword>
<keyword ref="qimagedecoder.html#format">format</keyword> <keyword ref="tqimagedecoder.html#format">format</keyword>
<keyword ref="qimagedecoder.html#formatName">formatName</keyword> <keyword ref="tqimagedecoder.html#formatName">formatName</keyword>
<keyword ref="qimagedecoder.html#image">image</keyword> <keyword ref="tqimagedecoder.html#image">image</keyword>
<keyword ref="qimagedecoder.html#inputFormats">inputFormats</keyword> <keyword ref="tqimagedecoder.html#inputFormats">inputFormats</keyword>
<keyword ref="qimagedecoder.html#registerDecoderFactory">registerDecoderFactory</keyword> <keyword ref="tqimagedecoder.html#registerDecoderFactory">registerDecoderFactory</keyword>
<keyword ref="qimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</keyword> <keyword ref="tqimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</keyword>
<keyword ref="qimagedecoder.html#~QImageDecoder">~QImageDecoder</keyword> <keyword ref="tqimagedecoder.html#~TQImageDecoder">~TQImageDecoder</keyword>
<section ref="qimagedecoder-members.html" title="List of All Member Functions"/> <section ref="tqimagedecoder-members.html" title="List of All Member Functions"/>
<section ref="qasyncimageio-h.html" title="Header File"/> <section ref="qasyncimageio-h.html" title="Header File"/>
</section> </section>
<section ref="qimagedrag.html" title="QImageDrag Class Reference"> <section ref="tqimagedrag.html" title="TQImageDrag Class Reference">
<keyword ref="qimagedrag.html">QImageDrag</keyword> <keyword ref="tqimagedrag.html">TQImageDrag</keyword>
<keyword ref="qimagedrag.html#canDecode">canDecode</keyword> <keyword ref="tqimagedrag.html#canDecode">canDecode</keyword>
<keyword ref="qimagedrag.html#decode">decode</keyword> <keyword ref="tqimagedrag.html#decode">decode</keyword>
<keyword ref="qimagedrag.html#setImage">setImage</keyword> <keyword ref="tqimagedrag.html#setImage">setImage</keyword>
<keyword ref="qimagedrag.html#~QImageDrag">~QImageDrag</keyword> <keyword ref="tqimagedrag.html#~TQImageDrag">~TQImageDrag</keyword>
<section ref="qimagedrag-members.html" title="List of All Member Functions"/> <section ref="tqimagedrag-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="qdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="qimageformat.html" title="QImageFormat Class Reference"> <section ref="tqimageformat.html" title="TQImageFormat Class Reference">
<keyword ref="qimageformat.html">QImageFormat</keyword> <keyword ref="tqimageformat.html">TQImageFormat</keyword>
<keyword ref="qimageformat.html#decode">decode</keyword> <keyword ref="tqimageformat.html#decode">decode</keyword>
<section ref="qimageformat-members.html" title="List of All Member Functions"/> <section ref="tqimageformat-members.html" title="List of All Member Functions"/>
<section ref="qasyncimageio-h.html" title="Header File"/> <section ref="qasyncimageio-h.html" title="Header File"/>
</section> </section>
<section ref="ntqimageformatplugin.html" title="QImageFormatPlugin Class Reference"> <section ref="tqimageformatplugin.html" title="TQImageFormatPlugin Class Reference">
<keyword ref="ntqimageformatplugin.html">QImageFormatPlugin</keyword> <keyword ref="tqimageformatplugin.html">TQImageFormatPlugin</keyword>
<keyword ref="ntqimageformatplugin.html#installIOHandler">installIOHandler</keyword> <keyword ref="tqimageformatplugin.html#installIOHandler">installIOHandler</keyword>
<keyword ref="ntqimageformatplugin.html#keys">keys</keyword> <keyword ref="tqimageformatplugin.html#keys">keys</keyword>
<keyword ref="ntqimageformatplugin.html#~QImageFormatPlugin">~QImageFormatPlugin</keyword> <keyword ref="tqimageformatplugin.html#~TQImageFormatPlugin">~TQImageFormatPlugin</keyword>
<section ref="qimageformatplugin-members.html" title="List of All Member Functions"/> <section ref="tqimageformatplugin-members.html" title="List of All Member Functions"/>
<section ref="qimageformatplugin-h.html" title="Header File"/> <section ref="tqimageformatplugin-h.html" title="Header File"/>
</section> </section>
<section ref="qimageformattype.html" title="QImageFormatType Class Reference"> <section ref="tqimageformattype.html" title="TQImageFormatType Class Reference">
<keyword ref="qimageformattype.html">QImageFormatType</keyword> <keyword ref="tqimageformattype.html">TQImageFormatType</keyword>
<keyword ref="qimageformattype.html#decoderFor">decoderFor</keyword> <keyword ref="tqimageformattype.html#decoderFor">decoderFor</keyword>
<keyword ref="qimageformattype.html#formatName">formatName</keyword> <keyword ref="tqimageformattype.html#formatName">formatName</keyword>
<keyword ref="qimageformattype.html#~QImageFormatType">~QImageFormatType</keyword> <keyword ref="tqimageformattype.html#~TQImageFormatType">~TQImageFormatType</keyword>
<section ref="qimageformattype-members.html" title="List of All Member Functions"/> <section ref="tqimageformattype-members.html" title="List of All Member Functions"/>
<section ref="qasyncimageio-h.html" title="Header File"/> <section ref="qasyncimageio-h.html" title="Header File"/>
</section> </section>
<section ref="qimageio.html" title="QImageIO Class Reference"> <section ref="tqimageio.html" title="TQImageIO Class Reference">
<keyword ref="qimageio.html">QImageIO</keyword> <keyword ref="tqimageio.html">TQImageIO</keyword>
<keyword ref="qimageio.html#defineIOHandler">defineIOHandler</keyword> <keyword ref="tqimageio.html#defineIOHandler">defineIOHandler</keyword>
<keyword ref="qimageio.html#description">description</keyword> <keyword ref="tqimageio.html#description">description</keyword>
<keyword ref="qimageio.html#fileName">fileName</keyword> <keyword ref="tqimageio.html#fileName">fileName</keyword>
<keyword ref="qimageio.html#format">format</keyword> <keyword ref="tqimageio.html#format">format</keyword>
<keyword ref="qimageio.html#gamma">gamma</keyword> <keyword ref="tqimageio.html#gamma">gamma</keyword>
<keyword ref="qimageio.html#image">image</keyword> <keyword ref="tqimageio.html#image">image</keyword>
<keyword ref="qimageio.html#imageFormat">imageFormat</keyword> <keyword ref="tqimageio.html#imageFormat">imageFormat</keyword>
<keyword ref="qimageio.html#init">init</keyword> <keyword ref="tqimageio.html#init">init</keyword>
<keyword ref="qimageio.html#inputFormats">inputFormats</keyword> <keyword ref="tqimageio.html#inputFormats">inputFormats</keyword>
<keyword ref="qimageio.html#ioDevice">ioDevice</keyword> <keyword ref="tqimageio.html#ioDevice">ioDevice</keyword>
<keyword ref="qimageio.html#outputFormats">outputFormats</keyword> <keyword ref="tqimageio.html#outputFormats">outputFormats</keyword>
<keyword ref="qimageio.html#parameters">parameters</keyword> <keyword ref="tqimageio.html#parameters">parameters</keyword>
<keyword ref="qimageio.html#quality">quality</keyword> <keyword ref="tqimageio.html#quality">quality</keyword>
<keyword ref="qimageio.html#read">read</keyword> <keyword ref="tqimageio.html#read">read</keyword>
<keyword ref="qimageio.html#setDescription">setDescription</keyword> <keyword ref="tqimageio.html#setDescription">setDescription</keyword>
<keyword ref="qimageio.html#setFileName">setFileName</keyword> <keyword ref="tqimageio.html#setFileName">setFileName</keyword>
<keyword ref="qimageio.html#setFormat">setFormat</keyword> <keyword ref="tqimageio.html#setFormat">setFormat</keyword>
<keyword ref="qimageio.html#setGamma">setGamma</keyword> <keyword ref="tqimageio.html#setGamma">setGamma</keyword>
<keyword ref="qimageio.html#setIODevice">setIODevice</keyword> <keyword ref="tqimageio.html#setIODevice">setIODevice</keyword>
<keyword ref="qimageio.html#setImage">setImage</keyword> <keyword ref="tqimageio.html#setImage">setImage</keyword>
<keyword ref="qimageio.html#setParameters">setParameters</keyword> <keyword ref="tqimageio.html#setParameters">setParameters</keyword>
<keyword ref="qimageio.html#setQuality">setQuality</keyword> <keyword ref="tqimageio.html#setQuality">setQuality</keyword>
<keyword ref="qimageio.html#setStatus">setStatus</keyword> <keyword ref="tqimageio.html#setStatus">setStatus</keyword>
<keyword ref="qimageio.html#status">status</keyword> <keyword ref="tqimageio.html#status">status</keyword>
<keyword ref="qimageio.html#write">write</keyword> <keyword ref="tqimageio.html#write">write</keyword>
<keyword ref="qimageio.html#~QImageIO">~QImageIO</keyword> <keyword ref="tqimageio.html#~TQImageIO">~TQImageIO</keyword>
<section ref="qimageio-members.html" title="List of All Member Functions"/> <section ref="tqimageio-members.html" title="List of All Member Functions"/>
<section ref="qimage-h.html" title="Header File"/> <section ref="tqimage-h.html" title="Header File"/>
</section> </section>
<section ref="qimevent.html" title="QIMEvent Class Reference"> <section ref="qimevent.html" title="QIMEvent Class Reference">
<keyword ref="qimevent.html">QIMEvent</keyword> <keyword ref="qimevent.html">QIMEvent</keyword>

@ -77,8 +77,8 @@ and supported by <a href="qtextdrag.html">TQTextDrag</a>.
<li> CF_TEXT - converted to "text/plain;charset=system" or "text/plain" <li> CF_TEXT - converted to "text/plain;charset=system" or "text/plain"
and supported by TQTextDrag. and supported by TQTextDrag.
<li> CF_DIB - converted to "image/*", where * is <li> CF_DIB - converted to "image/*", where * is
a <a href="ntqimage.html#outputFormats">TQt image format</a>, a <a href="tqimage.html#outputFormats">TQt image format</a>,
and supported by <a href="qimagedrag.html">TQImageDrag</a>. and supported by <a href="tqimagedrag.html">TQImageDrag</a>.
<li> CF_HDROP - converted to "text/uri-list", <li> CF_HDROP - converted to "text/uri-list",
and supported by <a href="quridrag.html">TQUriDrag</a>. and supported by <a href="quridrag.html">TQUriDrag</a>.
</ul> </ul>

@ -80,7 +80,7 @@ body { background: #ffffff; color: black; }
#include "tqmap.h" #include "tqmap.h"
#include "ntqdatetime.h" #include "ntqdatetime.h"
#include "tqptrlist.h" #include "tqptrlist.h"
#include "ntqimage.h" #include "tqimage.h"
#include "qwsproperty_qws.h" #include "qwsproperty_qws.h"
#include "qwscommand_qws.h" #include "qwscommand_qws.h"

@ -277,7 +277,7 @@ defined. The default is platform-dependent.
Set the mouse driver <em>m</em> to use if <tt>$TQWS_MOUSE_PROTO</tt> is not Set the mouse driver <em>m</em> to use if <tt>$TQWS_MOUSE_PROTO</tt> is not
defined. The default is platform-dependent. defined. The default is platform-dependent.
<h3 class=fn>void <a name="setDesktopBackground"></a>TQWSServer::setDesktopBackground ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt> <h3 class=fn>void <a name="setDesktopBackground"></a>TQWSServer::setDesktopBackground ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt>
</h3> </h3>
Sets the image <em>img</em> to be used as the background in the absence Sets the image <em>img</em> to be used as the background in the absence
of obscuring windows. of obscuring windows.

@ -153,7 +153,7 @@ protected slots:
#include &lt;<a href="qcolordialog-h.html">ntqcolordialog.h</a>&gt; #include &lt;<a href="qcolordialog-h.html">ntqcolordialog.h</a>&gt;
#include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt; #include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt;
#include &lt;<a href="qcursor-h.html">ntqcursor.h</a>&gt; #include &lt;<a href="qcursor-h.html">ntqcursor.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qstrlist-h.html">ntqstrlist.h</a>&gt; #include &lt;<a href="qstrlist-h.html">ntqstrlist.h</a>&gt;
#include &lt;<a href="qpopupmenu-h.html">ntqpopupmenu.h</a>&gt; #include &lt;<a href="qpopupmenu-h.html">ntqpopupmenu.h</a>&gt;
#include &lt;<a href="qintdict-h.html">ntqintdict.h</a>&gt; #include &lt;<a href="qintdict-h.html">ntqintdict.h</a>&gt;
@ -215,7 +215,7 @@ void <a name="f340"></a>Canvas::clearScreen()
<a name="x932"></a><a name="x929"></a> r.<a href="ntqrect.html#setRight">setRight</a>( r.<a href="ntqrect.html#right">right</a>() + penWidth() ); <a name="x932"></a><a name="x929"></a> r.<a href="ntqrect.html#setRight">setRight</a>( r.<a href="ntqrect.html#right">right</a>() + penWidth() );
<a name="x930"></a><a name="x925"></a> r.<a href="ntqrect.html#setBottom">setBottom</a>( r.<a href="ntqrect.html#bottom">bottom</a>() + penWidth() ); <a name="x930"></a><a name="x925"></a> r.<a href="ntqrect.html#setBottom">setBottom</a>( r.<a href="ntqrect.html#bottom">bottom</a>() + penWidth() );
<a name="x937"></a><a name="x936"></a><a name="x926"></a> <a href="ntqimage.html#bitBlt">bitBlt</a>( this, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), &amp;buffer, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>() ); <a name="x937"></a><a name="x936"></a><a name="x926"></a> <a href="tqimage.html#bitBlt">bitBlt</a>( this, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), &amp;buffer, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>() );
} }
} }
@ -231,7 +231,7 @@ void <a name="f340"></a>Canvas::clearScreen()
<a href="ntqpixmap.html">TQPixmap</a> tmp( buffer ); <a href="ntqpixmap.html">TQPixmap</a> tmp( buffer );
buffer.resize( w, h ); buffer.resize( w, h );
buffer.fill( <a href="tqwidget.html#colorGroup">colorGroup</a>().base() ); buffer.fill( <a href="tqwidget.html#colorGroup">colorGroup</a>().base() );
<a name="x922"></a><a name="x921"></a> <a href="ntqimage.html#bitBlt">bitBlt</a>( &amp;buffer, 0, 0, &amp;tmp, 0, 0, tmp.<a href="ntqpixmap.html#width">width</a>(), tmp.<a href="ntqpixmap.html#height">height</a>() ); <a name="x922"></a><a name="x921"></a> <a href="tqimage.html#bitBlt">bitBlt</a>( &amp;buffer, 0, 0, &amp;tmp, 0, 0, tmp.<a href="ntqpixmap.html#width">width</a>(), tmp.<a href="ntqpixmap.html#height">height</a>() );
} }
<a name="x951"></a>void Canvas::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> *e ) <a name="x951"></a>void Canvas::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> *e )
@ -241,7 +241,7 @@ void <a name="f340"></a>Canvas::clearScreen()
<a name="x920"></a> <a href="ntqmemarray.html">TQMemArray</a>&lt;TQRect&gt; rects = e-&gt;<a href="qpaintevent.html#region">region</a>().rects(); <a name="x920"></a> <a href="ntqmemarray.html">TQMemArray</a>&lt;TQRect&gt; rects = e-&gt;<a href="qpaintevent.html#region">region</a>().rects();
<a name="x913"></a> for ( uint i = 0; i &lt; rects.<a href="ntqmemarray.html#count">count</a>(); i++ ) { <a name="x913"></a> for ( uint i = 0; i &lt; rects.<a href="ntqmemarray.html#count">count</a>(); i++ ) {
<a href="ntqrect.html">TQRect</a> r = rects[(int)i]; <a href="ntqrect.html">TQRect</a> r = rects[(int)i];
<a href="ntqimage.html#bitBlt">bitBlt</a>( this, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), &amp;buffer, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>() ); <a href="tqimage.html#bitBlt">bitBlt</a>( this, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), &amp;buffer, r.<a href="ntqrect.html#x">x</a>(), r.<a href="ntqrect.html#y">y</a>(), r.<a href="ntqrect.html#width">width</a>(), r.<a href="ntqrect.html#height">height</a>() );
} }
} }
@ -282,8 +282,8 @@ void <a name="f342"></a>Scribble::slotSave()
<a href="ntqintdict.html">TQIntDict</a>&lt;TQString&gt; formats; <a href="ntqintdict.html">TQIntDict</a>&lt;TQString&gt; formats;
<a name="x924"></a> formats.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); <a name="x924"></a> formats.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE );
for ( unsigned int i = 0; i &lt; TQImageIO::<a href="qimageio.html#outputFormats">outputFormats</a>().count(); i++ ) { for ( unsigned int i = 0; i &lt; TQImageIO::<a href="tqimageio.html#outputFormats">outputFormats</a>().count(); i++ ) {
<a name="x911"></a> <a href="ntqstring.html">TQString</a> str = TQString( TQImageIO::<a href="qimageio.html#outputFormats">outputFormats</a>().at( i ) ); <a name="x911"></a> <a href="ntqstring.html">TQString</a> str = TQString( TQImageIO::<a href="tqimageio.html#outputFormats">outputFormats</a>().at( i ) );
<a name="x912"></a> formats.<a href="ntqintdict.html#insert">insert</a>( menu-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>( TQString( "%1..." ).arg( str ) ), new <a href="ntqstring.html">TQString</a>( str ) ); <a name="x912"></a> formats.<a href="ntqintdict.html#insert">insert</a>( menu-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>( TQString( "%1..." ).arg( str ) ), new <a href="ntqstring.html">TQString</a>( str ) );
} }

@ -50,7 +50,7 @@ seem heavyweight.
<tr bgcolor=#f0f0f0><td><b><a href="ntqfontinfo.html">TQFontInfo</a></b><td>General information about fonts <tr bgcolor=#f0f0f0><td><b><a href="ntqfontinfo.html">TQFontInfo</a></b><td>General information about fonts
<tr bgcolor=#f0f0f0><td><b><a href="ntqfontmetrics.html">TQFontMetrics</a></b><td>Font metrics information <tr bgcolor=#f0f0f0><td><b><a href="ntqfontmetrics.html">TQFontMetrics</a></b><td>Font metrics information
<tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes <tr bgcolor=#f0f0f0><td><b><a href="ntqiconset.html">TQIconSet</a></b><td>Set of icons with different styles and sizes
<tr bgcolor=#f0f0f0><td><b><a href="ntqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data <tr bgcolor=#f0f0f0><td><b><a href="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data
<tr bgcolor=#f0f0f0><td><b><a href="tqmap.html">TQMap</a></b><td>Value-based template class that provides a dictionary <tr bgcolor=#f0f0f0><td><b><a href="tqmap.html">TQMap</a></b><td>Value-based template class that provides a dictionary
<tr bgcolor=#f0f0f0><td><b><a href="tqpair.html">TQPair</a></b><td>Value-based template class that provides a pair of elements <tr bgcolor=#f0f0f0><td><b><a href="tqpair.html">TQPair</a></b><td>Value-based template class that provides a pair of elements
<tr bgcolor=#f0f0f0><td><b><a href="ntqpalette.html">TQPalette</a></b><td>Color groups for each widget state <tr bgcolor=#f0f0f0><td><b><a href="ntqpalette.html">TQPalette</a></b><td>Color groups for each widget state

@ -169,7 +169,7 @@ explicitly shared:
<p> These classes have a detach() function that can be called if you want <p> These classes have a detach() function that can be called if you want
your object to get a private copy of the shared data. They also have a your object to get a private copy of the shared data. They also have a
copy() function that returns a deep copy with a reference count of 1. copy() function that returns a deep copy with a reference count of 1.
<p> The same is true for <a href="ntqimage.html">TQImage</a>, which does not inherit TQMemArray. <a href="ntqmovie.html">TQMovie</a> is also explicitly shared, but it does not support detach() or <p> The same is true for <a href="tqimage.html">TQImage</a>, which does not inherit TQMemArray. <a href="ntqmovie.html">TQMovie</a> is also explicitly shared, but it does not support detach() or
copy(). copy().
<p> <h2> Implicitly Shared Classes <p> <h2> Implicitly Shared Classes
</h2> </h2>
@ -214,7 +214,7 @@ functions by value without concern for the copying overhead.
<p> In this example, <tt>p1</tt> and <tt>p2</tt> share data until <a href="ntqpainter.html#begin">TQPainter::begin</a>() is <p> In this example, <tt>p1</tt> and <tt>p2</tt> share data until <a href="ntqpainter.html#begin">TQPainter::begin</a>() is
called for <tt>p2</tt>, because painting a pixmap will modify it. The same called for <tt>p2</tt>, because painting a pixmap will modify it. The same
also happens if anything is <a href="ntqimage.html#bitBlt">bitBlt()</a>'ed into also happens if anything is <a href="tqimage.html#bitBlt">bitBlt()</a>'ed into
<tt>p2</tt>. <tt>p2</tt>.
<p> <b>Warning:</b> Do not copy an implicitly shared container (<a href="tqmap.html">TQMap</a>, <p> <b>Warning:</b> Do not copy an implicitly shared container (<a href="tqmap.html">TQMap</a>,
<a href="tqvaluevector.html">TQValueVector</a>, etc.) while you are iterating over it. <a href="tqvaluevector.html">TQValueVector</a>, etc.) while you are iterating over it.

@ -51,7 +51,7 @@ format (GIF, BMP, PPM, XMP, etc.).
#define SHOWIMG_H #define SHOWIMG_H
#include &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt; #include &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
class TQLabel; class TQLabel;
@ -80,7 +80,7 @@ private:
int alloc_context; int alloc_context;
bool convertEvent( <a href="qmouseevent.html">TQMouseEvent</a>* e, int&amp; x, int&amp; y ); bool convertEvent( <a href="qmouseevent.html">TQMouseEvent</a>* e, int&amp; x, int&amp; y );
<a href="ntqstring.html">TQString</a> filename; <a href="ntqstring.html">TQString</a> filename;
<a href="ntqimage.html">TQImage</a> image; // the loaded image <a href="tqimage.html">TQImage</a> image; // the loaded image
<a href="ntqpixmap.html">TQPixmap</a> pm; // the converted pixmap <a href="ntqpixmap.html">TQPixmap</a> pm; // the converted pixmap
<a href="ntqpixmap.html">TQPixmap</a> pmScaled; // the scaled pixmap <a href="ntqpixmap.html">TQPixmap</a> pmScaled; // the scaled pixmap
@ -103,7 +103,7 @@ private:
int clickx, clicky; int clickx, clicky;
bool may_be_other; bool may_be_other;
static ImageViewer* other; static ImageViewer* other;
void setImage(const <a href="ntqimage.html">TQImage</a>&amp; newimage); void setImage(const <a href="tqimage.html">TQImage</a>&amp; newimage);
private slots: private slots:
void to1Bit(); void to1Bit();
@ -178,7 +178,7 @@ private slots:
menubar = new <a href="ntqmenubar.html">TQMenuBar</a>(this); menubar = new <a href="ntqmenubar.html">TQMenuBar</a>(this);
<a name="x1326"></a> menubar-&gt;<a href="ntqmenubar.html#setSeparator">setSeparator</a>( TQMenuBar::InWindowsStyle ); <a name="x1326"></a> menubar-&gt;<a href="ntqmenubar.html#setSeparator">setSeparator</a>( TQMenuBar::InWindowsStyle );
<a name="x1323"></a> <a href="ntqstrlist.html">TQStrList</a> fmt = TQImage::<a href="ntqimage.html#outputFormats">outputFormats</a>(); <a name="x1323"></a> <a href="ntqstrlist.html">TQStrList</a> fmt = TQImage::<a href="tqimage.html#outputFormats">outputFormats</a>();
saveimage = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); saveimage = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar );
savepixmap = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar ); savepixmap = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( menubar );
<a name="x1344"></a><a name="x1343"></a> for (const char* f = fmt.<a href="tqptrlist.html#first">first</a>(); f; f = fmt.<a href="tqptrlist.html#next">next</a>()) { <a name="x1344"></a><a name="x1343"></a> for (const char* f = fmt.<a href="tqptrlist.html#first">first</a>(); f; f = fmt.<a href="tqptrlist.html#next">next</a>()) {
@ -684,7 +684,7 @@ void <a name="f419"></a>ImageViewer::giveHelp()
"&lt;/blockquote&gt;" "&lt;/blockquote&gt;"
"&lt;p&gt;Supported input formats:" "&lt;p&gt;Supported input formats:"
"&lt;blockquote&gt;"; "&lt;blockquote&gt;";
<a name="x1321"></a> helptext += TQImage::<a href="ntqimage.html#inputFormatList">inputFormatList</a>().join(", "); <a name="x1321"></a> helptext += TQImage::<a href="tqimage.html#inputFormatList">inputFormatList</a>().join(", ");
helptext += "&lt;/blockquote&gt;"; helptext += "&lt;/blockquote&gt;";
helpmsg = new <a href="ntqmessagebox.html">TQMessageBox</a>( "Help", helptext, helpmsg = new <a href="ntqmessagebox.html">TQMessageBox</a>( "Help", helptext,
@ -711,7 +711,7 @@ void <a name="f420"></a>ImageViewer::copyFrom(ImageViewer* s)
dy = picky; dy = picky;
sy -= sh-1; sy -= sh-1;
} }
<a href="ntqimage.html#bitBlt">bitBlt</a>( &amp;image, dx, dy, &amp;s-&gt;image, sx, sy, sw, sh ); <a href="tqimage.html#bitBlt">bitBlt</a>( &amp;image, dx, dy, &amp;s-&gt;image, sx, sy, sw, sh );
reconvertImage(); reconvertImage();
<a href="tqwidget.html#repaint">repaint</a>( image.hasAlphaBuffer() ); <a href="tqwidget.html#repaint">repaint</a>( image.hasAlphaBuffer() );
} }
@ -743,15 +743,15 @@ void <a name="f424"></a>ImageViewer::copy()
void <a name="f425"></a>ImageViewer::paste() void <a name="f425"></a>ImageViewer::paste()
{ {
#ifndef TQT_NO_MIMECLIPBOARD #ifndef TQT_NO_MIMECLIPBOARD
<a href="ntqimage.html">TQImage</a> p = TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()-&gt;image(); <a href="tqimage.html">TQImage</a> p = TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()-&gt;image();
<a name="x1322"></a> if ( !p.<a href="ntqimage.html#isNull">isNull</a>() ) { <a name="x1322"></a> if ( !p.<a href="tqimage.html#isNull">isNull</a>() ) {
filename = "pasted"; filename = "pasted";
setImage(p); setImage(p);
} }
#endif #endif
} }
void <a name="f426"></a>ImageViewer::setImage(const <a href="ntqimage.html">TQImage</a>&amp; newimage) void <a name="f426"></a>ImageViewer::setImage(const <a href="tqimage.html">TQImage</a>&amp; newimage)
{ {
image = newimage; image = newimage;
@ -825,7 +825,7 @@ void <a name="f431"></a>ImageViewer::toBitDepth(int d)
#include "showimg.h" #include "showimg.h"
#include "imagefip.h" #include "imagefip.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="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
int main( int argc, char **argv ) int main( int argc, char **argv )
{ {

@ -103,7 +103,7 @@ private:
#include "application.h" #include "application.h"
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qtoolbar-h.html">ntqtoolbar.h</a>&gt; #include &lt;<a href="qtoolbar-h.html">ntqtoolbar.h</a>&gt;
#include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt; #include &lt;<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>&gt;

@ -48,7 +48,7 @@ This example displays a <a href="ntqtable.html">TQTable</a> and some <a href="qt
#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="qtable-h.html">ntqtable.h</a>&gt; #include &lt;<a href="qtable-h.html">ntqtable.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qstringlist-h.html">ntqstringlist.h</a>&gt; #include &lt;<a href="qstringlist-h.html">ntqstringlist.h</a>&gt;
@ -74,8 +74,8 @@ int main( int argc, char **argv )
header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 5, TQObject::tr( "Combos" ) ); header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 5, TQObject::tr( "Combos" ) );
<a name="x2802"></a> table.<a href="ntqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(TRUE); <a name="x2802"></a> table.<a href="ntqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(TRUE);
<a href="ntqimage.html">TQImage</a> img( qtlogo_xpm ); <a href="tqimage.html">TQImage</a> img( qtlogo_xpm );
<a name="x2801"></a><a name="x2799"></a> <a href="ntqpixmap.html">TQPixmap</a> pix = img.<a href="ntqimage.html#scaleHeight">scaleHeight</a>( table.<a href="ntqtable.html#rowHeight">rowHeight</a>(3) ); <a name="x2801"></a><a name="x2799"></a> <a href="ntqpixmap.html">TQPixmap</a> pix = img.<a href="tqimage.html#scaleHeight">scaleHeight</a>( table.<a href="ntqtable.html#rowHeight">rowHeight</a>(3) );
<a name="x2804"></a> table.<a href="ntqtable.html#setPixmap">setPixmap</a>( 3, 2, pix ); <a name="x2804"></a> table.<a href="ntqtable.html#setPixmap">setPixmap</a>( 3, 2, pix );
<a name="x2805"></a> table.<a href="ntqtable.html#setText">setText</a>( 3, 2, "A Pixmap" ); <a name="x2805"></a> table.<a href="ntqtable.html#setText">setText</a>( 3, 2, "A Pixmap" );

@ -44,7 +44,7 @@ body { background: #ffffff; color: black; }
#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="qtable-h.html">ntqtable.h</a>&gt; #include &lt;<a href="qtable-h.html">ntqtable.h</a>&gt;
#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt; #include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qstringlist-h.html">ntqstringlist.h</a>&gt; #include &lt;<a href="qstringlist-h.html">ntqstringlist.h</a>&gt;
@ -70,8 +70,8 @@ int main( int argc, char **argv )
header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 5, TQObject::tr( "Combos" ) ); header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 5, TQObject::tr( "Combos" ) );
<a name="x2802"></a> table.<a href="ntqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(TRUE); <a name="x2802"></a> table.<a href="ntqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(TRUE);
<a href="ntqimage.html">TQImage</a> img( qtlogo_xpm ); <a href="tqimage.html">TQImage</a> img( qtlogo_xpm );
<a name="x2801"></a><a name="x2799"></a> <a href="ntqpixmap.html">TQPixmap</a> pix = img.<a href="ntqimage.html#scaleHeight">scaleHeight</a>( table.<a href="ntqtable.html#rowHeight">rowHeight</a>(3) ); <a name="x2801"></a><a name="x2799"></a> <a href="ntqpixmap.html">TQPixmap</a> pix = img.<a href="tqimage.html#scaleHeight">scaleHeight</a>( table.<a href="ntqtable.html#rowHeight">rowHeight</a>(3) );
<a name="x2804"></a> table.<a href="ntqtable.html#setPixmap">setPixmap</a>( 3, 2, pix ); <a name="x2804"></a> table.<a href="ntqtable.html#setPixmap">setPixmap</a>( 3, 2, pix );
<a name="x2805"></a> table.<a href="ntqtable.html#setText">setText</a>( 3, 2, "A Pixmap" ); <a name="x2805"></a> table.<a href="ntqtable.html#setText">setText</a>( 3, 2, "A Pixmap" );

@ -156,7 +156,7 @@ private:
#include "ntqpalette.h" // for now #include "ntqpalette.h" // for now
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqrangecontrol.h" #include "ntqrangecontrol.h"
@ -914,69 +914,69 @@ enum { PointUp, PointDown, PointLeft, PointRight };
// we simply create a nice TQColorGroup with a couple of fancy wood // we simply create a nice TQColorGroup with a couple of fancy wood
// pixmaps here and apply to it all widgets // pixmaps here and apply to it all widgets
<a href="ntqimage.html">TQImage</a> img(button_xpm); <a href="tqimage.html">TQImage</a> img(button_xpm);
<a href="ntqimage.html">TQImage</a> orig = img; <a href="tqimage.html">TQImage</a> orig = img;
<a name="x208"></a> orig.<a href="ntqimage.html#detach">detach</a>(); <a name="x208"></a> orig.<a href="tqimage.html#detach">detach</a>();
<a href="ntqpixmap.html">TQPixmap</a> button; <a href="ntqpixmap.html">TQPixmap</a> button;
<a name="x228"></a> button.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); <a name="x228"></a> button.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img);
int i; int i;
<a name="x209"></a> for (i=0; i&lt;img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { <a name="x209"></a> for (i=0; i&lt;img.<a href="tqimage.html#numColors">numColors</a>(); i++) {
<a name="x207"></a> TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); <a name="x207"></a> TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i);
<a href="ntqcolor.html">TQColor</a> c(rgb); <a href="ntqcolor.html">TQColor</a> c(rgb);
<a name="x192"></a> rgb = c.<a href="ntqcolor.html#dark">dark</a>(120).rgb(); <a name="x192"></a> rgb = c.<a href="ntqcolor.html#dark">dark</a>(120).rgb();
<a name="x210"></a> img.<a href="ntqimage.html#setColor">setColor</a>(i,rgb); <a name="x210"></a> img.<a href="tqimage.html#setColor">setColor</a>(i,rgb);
} }
<a href="ntqpixmap.html">TQPixmap</a> mid; <a href="ntqpixmap.html">TQPixmap</a> mid;
mid.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); mid.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img);
img = orig; img = orig;
img.<a href="ntqimage.html#detach">detach</a>(); img.<a href="tqimage.html#detach">detach</a>();
for (i=0; i&lt;img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { for (i=0; i&lt;img.<a href="tqimage.html#numColors">numColors</a>(); i++) {
TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i);
<a href="ntqcolor.html">TQColor</a> c(rgb); <a href="ntqcolor.html">TQColor</a> c(rgb);
<a name="x193"></a> rgb = c.<a href="ntqcolor.html#light">light</a>().rgb(); <a name="x193"></a> rgb = c.<a href="ntqcolor.html#light">light</a>().rgb();
img.<a href="ntqimage.html#setColor">setColor</a>(i,rgb); img.<a href="tqimage.html#setColor">setColor</a>(i,rgb);
} }
<a href="ntqpixmap.html">TQPixmap</a> light; <a href="ntqpixmap.html">TQPixmap</a> light;
light.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); light.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img);
img = orig; img = orig;
img.<a href="ntqimage.html#detach">detach</a>(); img.<a href="tqimage.html#detach">detach</a>();
for (i=0; i&lt;img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { for (i=0; i&lt;img.<a href="tqimage.html#numColors">numColors</a>(); i++) {
TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i);
<a href="ntqcolor.html">TQColor</a> c(rgb); <a href="ntqcolor.html">TQColor</a> c(rgb);
rgb = c.<a href="ntqcolor.html#dark">dark</a>(180).rgb(); rgb = c.<a href="ntqcolor.html#dark">dark</a>(180).rgb();
img.<a href="ntqimage.html#setColor">setColor</a>(i,rgb); img.<a href="tqimage.html#setColor">setColor</a>(i,rgb);
} }
<a href="ntqpixmap.html">TQPixmap</a> dark; <a href="ntqpixmap.html">TQPixmap</a> dark;
dark.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); dark.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img);
<a href="ntqimage.html">TQImage</a> bgimage(polish_xpm); <a href="tqimage.html">TQImage</a> bgimage(polish_xpm);
<a href="ntqpixmap.html">TQPixmap</a> background; <a href="ntqpixmap.html">TQPixmap</a> background;
background.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(bgimage); background.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(bgimage);
img = bgimage; img = bgimage;
img.<a href="ntqimage.html#detach">detach</a>(); img.<a href="tqimage.html#detach">detach</a>();
for (i=0; i&lt;img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { for (i=0; i&lt;img.<a href="tqimage.html#numColors">numColors</a>(); i++) {
TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i);
<a href="ntqcolor.html">TQColor</a> c(rgb); <a href="ntqcolor.html">TQColor</a> c(rgb);
rgb = c.<a href="ntqcolor.html#dark">dark</a>(180).rgb(); rgb = c.<a href="ntqcolor.html#dark">dark</a>(180).rgb();
img.<a href="ntqimage.html#setColor">setColor</a>(i,rgb); img.<a href="tqimage.html#setColor">setColor</a>(i,rgb);
} }
sunkenDark = new <a href="ntqpixmap.html">TQPixmap</a>; sunkenDark = new <a href="ntqpixmap.html">TQPixmap</a>;
sunkenDark-&gt;<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); sunkenDark-&gt;<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img);
img = bgimage; img = bgimage;
img.<a href="ntqimage.html#detach">detach</a>(); img.<a href="tqimage.html#detach">detach</a>();
for (i=0; i&lt;img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { for (i=0; i&lt;img.<a href="tqimage.html#numColors">numColors</a>(); i++) {
TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i);
<a href="ntqcolor.html">TQColor</a> c(rgb); <a href="ntqcolor.html">TQColor</a> c(rgb);
rgb = c.<a href="ntqcolor.html#light">light</a>(130).rgb(); rgb = c.<a href="ntqcolor.html#light">light</a>(130).rgb();
img.<a href="ntqimage.html#setColor">setColor</a>(i,rgb); img.<a href="tqimage.html#setColor">setColor</a>(i,rgb);
} }
sunkenLight= new <a href="ntqpixmap.html">TQPixmap</a>; sunkenLight= new <a href="ntqpixmap.html">TQPixmap</a>;
sunkenLight-&gt;<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); sunkenLight-&gt;<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img);
@ -1652,7 +1652,7 @@ private:
#include "ntqpalette.h" // for now #include "ntqpalette.h" // for now
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqrangecontrol.h" #include "ntqrangecontrol.h"

@ -512,22 +512,22 @@ QIconView Class | ntqiconview.html
QIconView Member List | qiconview-members.html QIconView Member List | qiconview-members.html
QIconViewItem Class | qiconviewitem.html QIconViewItem Class | qiconviewitem.html
QIconViewItem Member List | qiconviewitem-members.html QIconViewItem Member List | qiconviewitem-members.html
TQImage Class | ntqimage.html TQImage Class | tqimage.html
TQImage Member List | qimage-members.html TQImage Member List | tqimage-members.html
QImageConsumer Class | qimageconsumer.html TQImageConsumer Class | tqimageconsumer.html
QImageConsumer Member List | qimageconsumer-members.html TQImageConsumer Member List | tqimageconsumer-members.html
QImageDecoder Class | qimagedecoder.html TQImageDecoder Class | tqimagedecoder.html
QImageDecoder Member List | qimagedecoder-members.html TQImageDecoder Member List | tqimagedecoder-members.html
QImageDrag Class | qimagedrag.html TQImageDrag Class | tqimagedrag.html
QImageDrag Member List | qimagedrag-members.html TQImageDrag Member List | tqimagedrag-members.html
QImageFormat Class | qimageformat.html TQImageFormat Class | tqimageformat.html
QImageFormat Member List | qimageformat-members.html TQImageFormat Member List | tqimageformat-members.html
QImageFormatPlugin Class | ntqimageformatplugin.html TQImageFormatPlugin Class | tqimageformatplugin.html
QImageFormatPlugin Member List | qimageformatplugin-members.html TQImageFormatPlugin Member List | tqimageformatplugin-members.html
QImageFormatType Class | qimageformattype.html TQImageFormatType Class | tqimageformattype.html
QImageFormatType Member List | qimageformattype-members.html TQImageFormatType Member List | tqimageformattype-members.html
QImageIO Class | qimageio.html TQImageIO Class | tqimageio.html
QImageIO Member List | qimageio-members.html TQImageIO Member List | tqimageio-members.html
QInputDialog Class | ntqinputdialog.html QInputDialog Class | ntqinputdialog.html
QInputDialog Member List | qinputdialog-members.html QInputDialog Member List | qinputdialog-members.html
QIntCache Class | ntqintcache.html QIntCache Class | ntqintcache.html
@ -1256,8 +1256,8 @@ ntqhostaddress.h Include File | qhostaddress-h.html
ntqhttp.h Include File | qhttp-h.html ntqhttp.h Include File | qhttp-h.html
ntqiconset.h Include File | qiconset-h.html ntqiconset.h Include File | qiconset-h.html
ntqiconview.h Include File | qiconview-h.html ntqiconview.h Include File | qiconview-h.html
ntqimage.h Include File | qimage-h.html tqimage.h Include File | tqimage-h.html
ntqimageformatplugin.h Include File | qimageformatplugin-h.html tqimageformatplugin.h Include File | tqimageformatplugin-h.html
ntqinputdialog.h Include File | qinputdialog-h.html ntqinputdialog.h Include File | qinputdialog-h.html
ntqintcache.h Include File | qintcache-h.html ntqintcache.h Include File | qintcache-h.html
ntqintdict.h Include File | qintdict-h.html ntqintdict.h Include File | qintdict-h.html

@ -63,11 +63,11 @@ you retrieve a frame (pixmap) from a TQCanvasSprite it will be
returned as a TQCanvasPixmap. returned as a TQCanvasPixmap.
<p> The pixmap is a <a href="ntqpixmap.html">TQPixmap</a> and can only be set in the constructor. <p> The pixmap is a <a href="ntqpixmap.html">TQPixmap</a> and can only be set in the constructor.
There are three different constructors, one taking a TQPixmap, one There are three different constructors, one taking a TQPixmap, one
a <a href="ntqimage.html">TQImage</a> and one a file name that refers to a file in any a <a href="tqimage.html">TQImage</a> and one a file name that refers to a file in any
supported file format (see <a href="qimageio.html">TQImageIO</a>). supported file format (see <a href="tqimageio.html">TQImageIO</a>).
<p> TQCanvasPixmap can have a hotspot which is defined in terms of an (x, <p> TQCanvasPixmap can have a hotspot which is defined in terms of an (x,
y) offset. When you create a TQCanvasPixmap from a PNG file or from y) offset. When you create a TQCanvasPixmap from a PNG file or from
a TQImage that has a <a href="ntqimage.html#offset">TQImage::offset</a>(), the offset() is initialized a TQImage that has a <a href="tqimage.html#offset">TQImage::offset</a>(), the offset() is initialized
appropriately, otherwise the constructor leaves it at (0, 0). You appropriately, otherwise the constructor leaves it at (0, 0). You
can set it later using <a href="#setOffset">setOffset</a>(). When the TQCanvasPixmap is used can set it later using <a href="#setOffset">setOffset</a>(). When the TQCanvasPixmap is used
in a <a href="tqcanvassprite.html">TQCanvasSprite</a>, the offset position is the point at in a <a href="tqcanvassprite.html">TQCanvasSprite</a>, the offset position is the point at
@ -83,7 +83,7 @@ stays in the same position.
</h3> </h3>
Constructs a TQCanvasPixmap that uses the image stored in <em>datafilename</em>. Constructs a TQCanvasPixmap that uses the image stored in <em>datafilename</em>.
<h3 class=fn><a name="TQCanvasPixmap-2"></a>TQCanvasPixmap::TQCanvasPixmap ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a name="TQCanvasPixmap-2"></a>TQCanvasPixmap::TQCanvasPixmap ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
Constructs a TQCanvasPixmap from the image <em>image</em>. Constructs a TQCanvasPixmap from the image <em>image</em>.

@ -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/ntqimage.h:1 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimage.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>ntqimage.h Include File</title> <title>tqimage.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>ntqimage.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>tqimage.h</h1>
<p>This is the verbatim text of the ntqimage.h include file. It is provided only for illustration; the copyright remains with Trolltech. <p>This is the verbatim text of the tqimage.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr> <hr>
<pre> <pre>
/**************************************************************************** /****************************************************************************
** $Id: qt/ntqimage.h 3.3.8 edited Jan 11 14:38 $ ** $Id: qt/tqimage.h 3.3.8 edited Jan 11 14:38 $
** **
** Definition of TQImage and TQImageIO classes ** Definition of TQImage and TQImageIO classes
** **

@ -0,0 +1,116 @@
<!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/tqimage.h:66 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>TQImage Member List</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All&nbsp;Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main&nbsp;Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped&nbsp;Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQImage</h1>
<p>This is the complete list of member functions for
<a href="tqimage.html">TQImage</a>, including inherited members.
<ul>
<li><a href="tqimage.html#TQImage">TQImage</a>()
<li><a href="tqimage.html#~TQImage">~TQImage</a>()
<li><a href="tqimage.html#allGray">allGray</a>()
<li><a href="tqimage.html#bitOrder">bitOrder</a>()
<li><a href="tqimage.html#bits">bits</a>()
<li><a href="tqimage.html#bytesPerLine">bytesPerLine</a>()
<li><a href="tqimage.html#color">color</a>()
<li><a href="tqimage.html#colorTable">colorTable</a>()
<li><a href="tqimage.html#convertBitOrder">convertBitOrder</a>()
<li><a href="tqimage.html#convertDepth">convertDepth</a>()
<li><a href="tqimage.html#convertDepthWithPalette">convertDepthWithPalette</a>()
<li><a href="tqimage.html#copy">copy</a>()
<li><a href="tqimage.html#create">create</a>()
<li><a href="tqimage.html#createAlphaMask">createAlphaMask</a>()
<li><a href="tqimage.html#createHeuristicMask">createHeuristicMask</a>()
<li><a href="tqimage.html#depth">depth</a>()
<li><a href="tqimage.html#detach">detach</a>()
<li><a href="tqimage.html#dotsPerMeterX">dotsPerMeterX</a>()
<li><a href="tqimage.html#dotsPerMeterY">dotsPerMeterY</a>()
<li><a href="tqimage.html#fill">fill</a>()
<li><a href="tqimage.html#fromMimeSource">fromMimeSource</a>()
<li><a href="tqimage.html#hasAlphaBuffer">hasAlphaBuffer</a>()
<li><a href="tqimage.html#height">height</a>()
<li><a href="tqimage.html#imageFormat">imageFormat</a>()
<li><a href="tqimage.html#inputFormatList">inputFormatList</a>()
<li><a href="tqimage.html#inputFormats">inputFormats</a>()
<li><a href="tqimage.html#invertPixels">invertPixels</a>()
<li><a href="tqimage.html#isGrayscale">isGrayscale</a>()
<li><a href="tqimage.html#isNull">isNull</a>()
<li><a href="tqimage.html#jumpTable">jumpTable</a>()
<li><a href="tqimage.html#load">load</a>()
<li><a href="tqimage.html#loadFromData">loadFromData</a>()
<li><a href="tqimage.html#mirror">mirror</a>()
<li><a href="tqimage.html#numBytes">numBytes</a>()
<li><a href="tqimage.html#numColors">numColors</a>()
<li><a href="tqimage.html#offset">offset</a>()
<li><a href="tqimage.html#operator!-eq">operator!=</a>()
<li><a href="tqimage.html#operator-eq">operator=</a>()
<li><a href="tqimage.html#operator-eq-eq">operator==</a>()
<li><a href="tqimage.html#outputFormatList">outputFormatList</a>()
<li><a href="tqimage.html#outputFormats">outputFormats</a>()
<li><a href="tqimage.html#pixel">pixel</a>()
<li><a href="tqimage.html#pixelIndex">pixelIndex</a>()
<li><a href="tqimage.html#rect">rect</a>()
<li><a href="tqimage.html#reset">reset</a>()
<li><a href="tqimage.html#save">save</a>()
<li><a href="tqimage.html#scale">scale</a>()
<li><a href="tqimage.html#scaleHeight">scaleHeight</a>()
<li><a href="tqimage.html#scaleWidth">scaleWidth</a>()
<li><a href="tqimage.html#scanLine">scanLine</a>()
<li><a href="tqimage.html#setAlphaBuffer">setAlphaBuffer</a>()
<li><a href="tqimage.html#setColor">setColor</a>()
<li><a href="tqimage.html#setDotsPerMeterX">setDotsPerMeterX</a>()
<li><a href="tqimage.html#setDotsPerMeterY">setDotsPerMeterY</a>()
<li><a href="tqimage.html#setNumColors">setNumColors</a>()
<li><a href="tqimage.html#setOffset">setOffset</a>()
<li><a href="tqimage.html#setPixel">setPixel</a>()
<li><a href="tqimage.html#setText">setText</a>()
<li><a href="tqimage.html#size">size</a>()
<li><a href="tqimage.html#smoothScale">smoothScale</a>()
<li><a href="tqimage.html#swapRGB">swapRGB</a>()
<li><a href="tqimage.html#systemBitOrder">systemBitOrder</a>()
<li><a href="tqimage.html#systemByteOrder">systemByteOrder</a>()
<li><a href="tqimage.html#text">text</a>()
<li><a href="tqimage.html#textKeys">textKeys</a>()
<li><a href="tqimage.html#textLanguages">textLanguages</a>()
<li><a href="tqimage.html#textList">textList</a>()
<li><a href="tqimage.html#valid">valid</a>()
<li><a href="tqimage.html#width">width</a>()
<li><a href="tqimage.html#xForm">xForm</a>()
</ul>
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright &copy; 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>TQt 3.3.8</div>
</table></div></address></body>
</html>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qimage.cpp:69 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqimage.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">
@ -34,8 +34,8 @@ body { background: #ffffff; color: black; }
<p>The TQImage class provides a hardware-independent pixmap <p>The TQImage class provides a hardware-independent pixmap
representation with direct access to the pixel data. representation with direct access to the pixel data.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;</tt>
<p><a href="qimage-members.html">List of all member functions.</a> <p><a href="tqimage-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn>enum <a href="#Endian-enum"><b>Endian</b></a> { IgnoreEndian, BigEndian, LittleEndian }</li> <li class=fn>enum <a href="#Endian-enum"><b>Endian</b></a> { IgnoreEndian, BigEndian, LittleEndian }</li>
@ -225,7 +225,7 @@ with <a href="#load">load</a>() (or in the constructor) or from an array of data
<p> The TQImage class uses explicit <a href="shclass.html">sharing</a>, <p> The TQImage class uses explicit <a href="shclass.html">sharing</a>,
similar to that used by <a href="ntqmemarray.html">TQMemArray</a>. similar to that used by <a href="ntqmemarray.html">TQMemArray</a>.
<p> New image formats can be added as <a href="plugins-howto.html">plugins</a>. <p> New image formats can be added as <a href="plugins-howto.html">plugins</a>.
<p> <p>See also <a href="qimageio.html">TQImageIO</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="shclass.html">Shared Classes</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="shared.html">Implicitly and Explicitly Shared Classes</a>. <p> <p>See also <a href="tqimageio.html">TQImageIO</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="shclass.html">Shared Classes</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="shared.html">Implicitly and Explicitly Shared Classes</a>.
<hr><h2>Member Type Documentation</h2> <hr><h2>Member Type Documentation</h2>
<h3 class=fn><a name="Endian-enum"></a>TQImage::Endian</h3> <h3 class=fn><a name="Endian-enum"></a>TQImage::Endian</h3>
@ -263,7 +263,7 @@ be larger than the requested size.
Constructs a null image. Constructs a null image.
<p> <p>See also <a href="#isNull">isNull</a>(). <p> <p>See also <a href="#isNull">isNull</a>().
<h3 class=fn><a name="TQImage-2"></a>TQImage::TQImage ( int&nbsp;w, int&nbsp;h, int&nbsp;depth, int&nbsp;numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian ) <h3 class=fn><a name="TQImage-2"></a>TQImage::TQImage ( int&nbsp;w, int&nbsp;h, int&nbsp;depth, int&nbsp;numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian )
</h3> </h3>
Constructs an image with <em>w</em> width, <em>h</em> height, <em>depth</em> bits Constructs an image with <em>w</em> width, <em>h</em> height, <em>depth</em> bits
per pixel, <em>numColors</em> colors and bit order <em>bitOrder</em>. per pixel, <em>numColors</em> colors and bit order <em>bitOrder</em>.
@ -271,7 +271,7 @@ per pixel, <em>numColors</em> colors and bit order <em>bitOrder</em>.
image and then calling the <a href="#create">create</a>() function. image and then calling the <a href="#create">create</a>() function.
<p> <p>See also <a href="#create">create</a>(). <p> <p>See also <a href="#create">create</a>().
<h3 class=fn><a name="TQImage-3"></a>TQImage::TQImage ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;size, int&nbsp;depth, int&nbsp;numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian ) <h3 class=fn><a name="TQImage-3"></a>TQImage::TQImage ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;size, int&nbsp;depth, int&nbsp;numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian )
</h3> </h3>
Constructs an image with size <em>size</em> pixels, depth <em>depth</em> bits, Constructs an image with size <em>size</em> pixels, depth <em>depth</em> bits,
<em>numColors</em> and <em>bitOrder</em> endianness. <em>numColors</em> and <em>bitOrder</em> endianness.
@ -287,9 +287,9 @@ using the specified format. If <em>format</em> is not specified (which
is the default), the loader reads a few bytes from the header to is the default), the loader reads a few bytes from the header to
guess the file format. guess the file format.
<p> If the loading of the image failed, this object is a <a href="#isNull">null</a> image. <p> If the loading of the image failed, this object is a <a href="#isNull">null</a> image.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the supported image formats and <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the supported image formats and
explains how to add extra formats. explains how to add extra formats.
<p> <p>See also <a href="#load">load</a>(), <a href="#isNull">isNull</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#load">load</a>(), <a href="#isNull">isNull</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn><a name="TQImage-5"></a>TQImage::TQImage ( const&nbsp;char&nbsp;*&nbsp;const&nbsp;xpm[] ) <h3 class=fn><a name="TQImage-5"></a>TQImage::TQImage ( const&nbsp;char&nbsp;*&nbsp;const&nbsp;xpm[] )
</h3> </h3>
@ -315,7 +315,7 @@ guess the file format.
<p> If the loading of the image failed, this object is a <a href="#isNull">null</a> image. <p> If the loading of the image failed, this object is a <a href="#isNull">null</a> image.
<p> <p>See also <a href="#loadFromData">loadFromData</a>(), <a href="#isNull">isNull</a>(), and <a href="#imageFormat">imageFormat</a>(). <p> <p>See also <a href="#loadFromData">loadFromData</a>(), <a href="#isNull">isNull</a>(), and <a href="#imageFormat">imageFormat</a>().
<h3 class=fn><a name="TQImage-7"></a>TQImage::TQImage ( uchar&nbsp;*&nbsp;yourdata, int&nbsp;w, int&nbsp;h, int&nbsp;depth, TQRgb&nbsp;*&nbsp;colortable, int&nbsp;numColors, <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder ) <h3 class=fn><a name="TQImage-7"></a>TQImage::TQImage ( uchar&nbsp;*&nbsp;yourdata, int&nbsp;w, int&nbsp;h, int&nbsp;depth, TQRgb&nbsp;*&nbsp;colortable, int&nbsp;numColors, <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder )
</h3> </h3>
Constructs an image <em>w</em> pixels wide, <em>h</em> pixels high with a Constructs an image <em>w</em> pixels wide, <em>h</em> pixels high with a
color depth of <em>depth</em>, that uses an existing memory buffer, <em>yourdata</em>. The buffer must remain valid throughout the life of the color depth of <em>depth</em>, that uses an existing memory buffer, <em>yourdata</em>. The buffer must remain valid throughout the life of the
@ -325,7 +325,7 @@ will be allocated (and destructed later).
<p> Note that <em>yourdata</em> must be 32-bit aligned. <p> Note that <em>yourdata</em> must be 32-bit aligned.
<p> The endianness is given in <em>bitOrder</em>. <p> The endianness is given in <em>bitOrder</em>.
<h3 class=fn><a name="TQImage-8"></a>TQImage::TQImage ( uchar&nbsp;*&nbsp;yourdata, int&nbsp;w, int&nbsp;h, int&nbsp;depth, int&nbsp;bpl, TQRgb&nbsp;*&nbsp;colortable, int&nbsp;numColors, <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder ) <h3 class=fn><a name="TQImage-8"></a>TQImage::TQImage ( uchar&nbsp;*&nbsp;yourdata, int&nbsp;w, int&nbsp;h, int&nbsp;depth, int&nbsp;bpl, TQRgb&nbsp;*&nbsp;colortable, int&nbsp;numColors, <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder )
</h3> </h3>
Constructs an image that uses an existing memory buffer. The Constructs an image that uses an existing memory buffer. The
buffer must remain valid for the life of the TQImage. The image buffer must remain valid for the life of the TQImage. The image
@ -338,7 +338,7 @@ will be allocated (and destructed later).
<p> The endianness is specified by <em>bitOrder</em>. <p> The endianness is specified by <em>bitOrder</em>.
<p> <b>Warning:</b> This constructor is only available on TQt/Embedded. <p> <b>Warning:</b> This constructor is only available on TQt/Embedded.
<h3 class=fn><a name="TQImage-9"></a>TQImage::TQImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a name="TQImage-9"></a>TQImage::TQImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
Constructs a <a href="shclass.html">shallow copy</a> of <em>image</em>. Constructs a <a href="shclass.html">shallow copy</a> of <em>image</em>.
@ -354,7 +354,7 @@ returns FALSE.
<p> This function is slow for large 16-bit (TQt/Embedded only) and 32-bit images. <p> This function is slow for large 16-bit (TQt/Embedded only) and 32-bit images.
<p> <p>See also <a href="#isGrayscale">isGrayscale</a>(). <p> <p>See also <a href="#isGrayscale">isGrayscale</a>().
<h3 class=fn><a href="ntqimage.html#Endian-enum">Endian</a> <a name="bitOrder"></a>TQImage::bitOrder () const <h3 class=fn><a href="tqimage.html#Endian-enum">Endian</a> <a name="bitOrder"></a>TQImage::bitOrder () const
</h3> </h3>
<p> Returns the bit order for the image. <p> Returns the bit order for the image.
@ -395,7 +395,7 @@ get the color value components.
<p> Returns a pointer to the color table. <p> Returns a pointer to the color table.
<p> <p>See also <a href="#numColors">numColors</a>(). <p> <p>See also <a href="#numColors">numColors</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertBitOrder"></a>TQImage::convertBitOrder ( <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertBitOrder"></a>TQImage::convertBitOrder ( <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder ) const
</h3> </h3>
Converts the bit order of the image to <em>bitOrder</em> and returns the Converts the bit order of the image to <em>bitOrder</em> and returns the
converted image. The original image is not changed. converted image. The original image is not changed.
@ -404,7 +404,7 @@ order, or a <a href="#isNull">null</a> image if this image cannot
be converted. be converted.
<p> <p>See also <a href="#bitOrder">bitOrder</a>(), <a href="#systemBitOrder">systemBitOrder</a>(), and <a href="#isNull">isNull</a>(). <p> <p>See also <a href="#bitOrder">bitOrder</a>(), <a href="#systemBitOrder">systemBitOrder</a>(), and <a href="#isNull">isNull</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertDepth"></a>TQImage::convertDepth ( int&nbsp;depth, int&nbsp;conversion_flags ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertDepth"></a>TQImage::convertDepth ( int&nbsp;depth, int&nbsp;conversion_flags ) const
</h3> </h3>
Converts the depth (bpp) of the image to <em>depth</em> and returns the Converts the depth (bpp) of the image to <em>depth</em> and returns the
converted image. The original image is not changed. converted image. The original image is not changed.
@ -416,11 +416,11 @@ converted.
result (e.g. converting from 32-bit to 8-bit), use the <em>conversion_flags</em> to specify how you'd prefer this to happen. result (e.g. converting from 32-bit to 8-bit), use the <em>conversion_flags</em> to specify how you'd prefer this to happen.
<p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>, <a href="#depth">depth</a>(), and <a href="#isNull">isNull</a>(). <p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>, <a href="#depth">depth</a>(), and <a href="#isNull">isNull</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertDepth-2"></a>TQImage::convertDepth ( int&nbsp;depth ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertDepth-2"></a>TQImage::convertDepth ( int&nbsp;depth ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> <p>
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertDepthWithPalette"></a>TQImage::convertDepthWithPalette ( int&nbsp;d, TQRgb&nbsp;*&nbsp;palette, int&nbsp;palette_count, int&nbsp;conversion_flags = 0 ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertDepthWithPalette"></a>TQImage::convertDepthWithPalette ( int&nbsp;d, TQRgb&nbsp;*&nbsp;palette, int&nbsp;palette_count, int&nbsp;conversion_flags = 0 ) const
</h3> </h3>
Returns an image with depth <em>d</em>, using the <em>palette_count</em> Returns an image with depth <em>d</em>, using the <em>palette_count</em>
colors pointed to by <em>palette</em>. If <em>d</em> is 1 or 8, the returned colors pointed to by <em>palette</em>. If <em>d</em> is 1 or 8, the returned
@ -434,12 +434,12 @@ change in future implementations.
<p> Currently inefficient for non-32-bit images. <p> Currently inefficient for non-32-bit images.
<p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>. <p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="copy"></a>TQImage::copy () const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="copy"></a>TQImage::copy () const
</h3> </h3>
Returns a <a href="shclass.html">deep copy</a> of the image. Returns a <a href="shclass.html">deep copy</a> of the image.
<p> <p>See also <a href="#detach">detach</a>(). <p> <p>See also <a href="#detach">detach</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="copy-2"></a>TQImage::copy ( int&nbsp;x, int&nbsp;y, int&nbsp;w, int&nbsp;h, int&nbsp;conversion_flags = 0 ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="copy-2"></a>TQImage::copy ( int&nbsp;x, int&nbsp;y, int&nbsp;w, int&nbsp;h, int&nbsp;conversion_flags = 0 ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns a <a href="shclass.html">deep copy</a> of a sub-area of <p> Returns a <a href="shclass.html">deep copy</a> of a sub-area of
@ -451,7 +451,7 @@ this image pixels are filled with pixel 0.
result (e.g. converting from 32-bit to 8-bit), use the <em>conversion_flags</em> to specify how you'd prefer this to happen. result (e.g. converting from 32-bit to 8-bit), use the <em>conversion_flags</em> to specify how you'd prefer this to happen.
<p> <p>See also <a href="#bitBlt">bitBlt</a>() and <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>. <p> <p>See also <a href="#bitBlt">bitBlt</a>() and <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="copy-3"></a>TQImage::copy ( const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="copy-3"></a>TQImage::copy ( const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;r ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns a <a href="shclass.html">deep copy</a> of a sub-area of <p> Returns a <a href="shclass.html">deep copy</a> of a sub-area of
@ -459,7 +459,7 @@ the image.
<p> The returned image always has the size of the rectangle <em>r</em>. In <p> The returned image always has the size of the rectangle <em>r</em>. In
areas beyond this image pixels are filled with pixel 0. areas beyond this image pixels are filled with pixel 0.
<h3 class=fn>bool <a name="create"></a>TQImage::create ( int&nbsp;width, int&nbsp;height, int&nbsp;depth, int&nbsp;numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian ) <h3 class=fn>bool <a name="create"></a>TQImage::create ( int&nbsp;width, int&nbsp;height, int&nbsp;depth, int&nbsp;numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian )
</h3> </h3>
Sets the image <em>width</em>, <em>height</em>, <em>depth</em>, its number of colors Sets the image <em>width</em>, <em>height</em>, <em>depth</em>, its number of colors
(in <em>numColors</em>), and bit order. Returns TRUE if successful, or (in <em>numColors</em>), and bit order. Returns TRUE if successful, or
@ -476,11 +476,11 @@ table of <a href="#scanLine">scanline</a> pointers (<a href="#jumpTable">jumpTab
and the image data (<a href="#bits">bits</a>()). and the image data (<a href="#bits">bits</a>()).
<p> <p>See also <a href="#fill">fill</a>(), <a href="#width">width</a>(), <a href="#height">height</a>(), <a href="#depth">depth</a>(), <a href="#numColors">numColors</a>(), <a href="#bitOrder">bitOrder</a>(), <a href="#jumpTable">jumpTable</a>(), <a href="#scanLine">scanLine</a>(), <a href="#bits">bits</a>(), <a href="#bytesPerLine">bytesPerLine</a>(), and <a href="#numBytes">numBytes</a>(). <p> <p>See also <a href="#fill">fill</a>(), <a href="#width">width</a>(), <a href="#height">height</a>(), <a href="#depth">depth</a>(), <a href="#numColors">numColors</a>(), <a href="#bitOrder">bitOrder</a>(), <a href="#jumpTable">jumpTable</a>(), <a href="#scanLine">scanLine</a>(), <a href="#bits">bits</a>(), <a href="#bytesPerLine">bytesPerLine</a>(), and <a href="#numBytes">numBytes</a>().
<h3 class=fn>bool <a name="create-2"></a>TQImage::create ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;, int&nbsp;depth, int&nbsp;numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian ) <h3 class=fn>bool <a name="create-2"></a>TQImage::create ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;, int&nbsp;depth, int&nbsp;numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a>&nbsp;bitOrder = IgnoreEndian )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> <p>
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="createAlphaMask"></a>TQImage::createAlphaMask ( int&nbsp;conversion_flags = 0 ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="createAlphaMask"></a>TQImage::createAlphaMask ( int&nbsp;conversion_flags = 0 ) const
</h3> </h3>
Builds and returns a 1-bpp mask from the alpha buffer in this Builds and returns a 1-bpp mask from the alpha buffer in this
image. Returns a <a href="#isNull">null</a> image if <a href="#setAlphaBuffer">alpha buffer mode</a> is disabled. image. Returns a <a href="#isNull">null</a> image if <a href="#setAlphaBuffer">alpha buffer mode</a> is disabled.
@ -489,7 +489,7 @@ image. Returns a <a href="#isNull">null</a> image if <a href="#setAlphaBuffer">a
convert to big-endianness using <a href="#convertBitOrder">convertBitOrder</a>(). convert to big-endianness using <a href="#convertBitOrder">convertBitOrder</a>().
<p> <p>See also <a href="#createHeuristicMask">createHeuristicMask</a>(), <a href="#hasAlphaBuffer">hasAlphaBuffer</a>(), and <a href="#setAlphaBuffer">setAlphaBuffer</a>(). <p> <p>See also <a href="#createHeuristicMask">createHeuristicMask</a>(), <a href="#hasAlphaBuffer">hasAlphaBuffer</a>(), and <a href="#setAlphaBuffer">setAlphaBuffer</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="createHeuristicMask"></a>TQImage::createHeuristicMask ( bool&nbsp;clipTight = TRUE ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="createHeuristicMask"></a>TQImage::createHeuristicMask ( bool&nbsp;clipTight = TRUE ) const
</h3> </h3>
Creates and returns a 1-bpp heuristic mask for this image. It Creates and returns a 1-bpp heuristic mask for this image. It
works by selecting a color from one of the corners, then chipping works by selecting a color from one of the corners, then chipping
@ -557,11 +557,11 @@ you will want to use TQImage::pixel() to use a color from an
existing image or <a href="ntqcolor.html#rgb">TQColor::rgb</a>() to use a specific color. existing image or <a href="ntqcolor.html#rgb">TQColor::rgb</a>() to use a specific color.
<p> <p>See also <a href="#invertPixels">invertPixels</a>(), <a href="#depth">depth</a>(), <a href="#hasAlphaBuffer">hasAlphaBuffer</a>(), and <a href="#create">create</a>(). <p> <p>See also <a href="#invertPixels">invertPixels</a>(), <a href="#depth">depth</a>(), <a href="#hasAlphaBuffer">hasAlphaBuffer</a>(), and <a href="#create">create</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="fromMimeSource"></a>TQImage::fromMimeSource ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name )<tt> [static]</tt> <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="fromMimeSource"></a>TQImage::fromMimeSource ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name )<tt> [static]</tt>
</h3> Convenience function. Gets the data associated with the absolute </h3> Convenience function. Gets the data associated with the absolute
name <em>abs_name</em> from the default mime source factory and decodes it name <em>abs_name</em> from the default mime source factory and decodes it
to an image. to an image.
<p> <p>See also <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="qimagedrag.html#decode">TQImageDrag::decode</a>(). <p> <p>See also <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>().
<h3 class=fn>bool <a name="hasAlphaBuffer"></a>TQImage::hasAlphaBuffer () const <h3 class=fn>bool <a name="hasAlphaBuffer"></a>TQImage::hasAlphaBuffer () const
</h3> </h3>
@ -581,7 +581,7 @@ FALSE.
</h3> </h3>
Returns a string that specifies the image format of the file <em>fileName</em>, or 0 if the file cannot be read or if the format is not Returns a string that specifies the image format of the file <em>fileName</em>, or 0 if the file cannot be read or if the format is not
recognized. recognized.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the guaranteed supported image <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the guaranteed supported image
formats, or use <a href="#inputFormats">TQImage::inputFormats</a>() and <a href="#outputFormats">TQImage::outputFormats</a>() formats, or use <a href="#inputFormats">TQImage::inputFormats</a>() and <a href="#outputFormats">TQImage::outputFormats</a>()
to get lists that include the installed formats. to get lists that include the installed formats.
<p> <p>See also <a href="#load">load</a>() and <a href="#save">save</a>(). <p> <p>See also <a href="#load">load</a>() and <a href="#save">save</a>().
@ -601,14 +601,14 @@ over a copy, e.g.
} }
</pre> </pre>
<p> <p>See also <a href="#outputFormatList">outputFormatList</a>(), <a href="#inputFormats">inputFormats</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#outputFormatList">outputFormatList</a>(), <a href="#inputFormats">inputFormats</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<p>Example: <a href="showimg-example.html#x1321">showimg/showimg.cpp</a>. <p>Example: <a href="showimg-example.html#x1321">showimg/showimg.cpp</a>.
<h3 class=fn><a href="ntqstrlist.html">TQStrList</a> <a name="inputFormats"></a>TQImage::inputFormats ()<tt> [static]</tt> <h3 class=fn><a href="ntqstrlist.html">TQStrList</a> <a name="inputFormats"></a>TQImage::inputFormats ()<tt> [static]</tt>
</h3> </h3>
Returns a list of image formats that are supported for image Returns a list of image formats that are supported for image
input. input.
<p> <p>See also <a href="#outputFormats">outputFormats</a>(), <a href="#inputFormatList">inputFormatList</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#outputFormats">outputFormats</a>(), <a href="#inputFormatList">inputFormatList</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn>void <a name="invertPixels"></a>TQImage::invertPixels ( bool&nbsp;invertAlpha = TRUE ) <h3 class=fn>void <a name="invertPixels"></a>TQImage::invertPixels ( bool&nbsp;invertAlpha = TRUE )
</h3> </h3>
@ -652,9 +652,9 @@ image was successfully loaded; otherwise returns FALSE.
using the specified format. If <em>format</em> is not specified (which using the specified format. If <em>format</em> is not specified (which
is the default), the loader reads a few bytes from the header to is the default), the loader reads a few bytes from the header to
guess the file format. guess the file format.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the supported image formats and <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the supported image formats and
explains how to add extra formats. explains how to add extra formats.
<p> <p>See also <a href="#loadFromData">loadFromData</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#load">TQPixmap::load</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#loadFromData">loadFromData</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#load">TQPixmap::load</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn>bool <a name="loadFromData"></a>TQImage::loadFromData ( const&nbsp;uchar&nbsp;*&nbsp;buf, uint&nbsp;len, const&nbsp;char&nbsp;*&nbsp;format = 0 ) <h3 class=fn>bool <a name="loadFromData"></a>TQImage::loadFromData ( const&nbsp;uchar&nbsp;*&nbsp;buf, uint&nbsp;len, const&nbsp;char&nbsp;*&nbsp;format = 0 )
</h3> </h3>
@ -664,21 +664,21 @@ returns FALSE.
using the specified format. If <em>format</em> is not specified (which using the specified format. If <em>format</em> is not specified (which
is the default), the loader reads a few bytes from the header to is the default), the loader reads a few bytes from the header to
guess the file format. guess the file format.
<p> The <a href="qimageio.html">TQImageIO</a> documentation lists the supported image formats and <p> The <a href="tqimageio.html">TQImageIO</a> documentation lists the supported image formats and
explains how to add extra formats. explains how to add extra formats.
<p> <p>See also <a href="#load">load</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#loadFromData">TQPixmap::loadFromData</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#load">load</a>(), <a href="#save">save</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#loadFromData">TQPixmap::loadFromData</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn>bool <a name="loadFromData-2"></a>TQImage::loadFromData ( <a href="qbytearray.html">TQByteArray</a>&nbsp;buf, const&nbsp;char&nbsp;*&nbsp;format = 0 ) <h3 class=fn>bool <a name="loadFromData-2"></a>TQImage::loadFromData ( <a href="qbytearray.html">TQByteArray</a>&nbsp;buf, const&nbsp;char&nbsp;*&nbsp;format = 0 )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Loads an image from the <a href="qbytearray.html">TQByteArray</a> <em>buf</em>. <p> Loads an image from the <a href="qbytearray.html">TQByteArray</a> <em>buf</em>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="mirror"></a>TQImage::mirror () const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mirror"></a>TQImage::mirror () const
</h3> </h3>
Returns a TQImage which is a vertically mirrored copy of this Returns a TQImage which is a vertically mirrored copy of this
image. The original TQImage is not changed. image. The original TQImage is not changed.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="mirror-2"></a>TQImage::mirror ( bool&nbsp;horizontal, bool&nbsp;vertical ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mirror-2"></a>TQImage::mirror ( bool&nbsp;horizontal, bool&nbsp;vertical ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Returns a mirror of the image, mirrored in the horizontal and/or <p> Returns a mirror of the image, mirrored in the horizontal and/or
@ -708,7 +708,7 @@ but instead encode pixel values as RGB triplets.
<p> Returns the number of pixels by which the image is intended to be <p> Returns the number of pixels by which the image is intended to be
offset by when positioning relative to other images. offset by when positioning relative to other images.
<h3 class=fn>bool <a name="operator!-eq"></a>TQImage::operator!= ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const <h3 class=fn>bool <a name="operator!-eq"></a>TQImage::operator!= ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const
</h3> </h3>
Returns TRUE if this image and image <em>i</em> have different contents; Returns TRUE if this image and image <em>i</em> have different contents;
otherwise returns FALSE. The comparison can be slow, unless there otherwise returns FALSE. The comparison can be slow, unless there
@ -716,13 +716,13 @@ is some obvious difference, such as different widths, in which
case the function will return quickly. case the function will return quickly.
<p> <p>See also <a href="#operator-eq">operator=</a>(). <p> <p>See also <a href="#operator-eq">operator=</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a>&nbsp;&amp; <a name="operator-eq"></a>TQImage::operator= ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a href="tqimage.html">TQImage</a>&nbsp;&amp; <a name="operator-eq"></a>TQImage::operator= ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
Assigns a <a href="shclass.html">shallow copy</a> of <em>image</em> to Assigns a <a href="shclass.html">shallow copy</a> of <em>image</em> to
this image and returns a reference to this image. this image and returns a reference to this image.
<p> <p>See also <a href="#copy">copy</a>(). <p> <p>See also <a href="#copy">copy</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a>&nbsp;&amp; <a name="operator-eq-2"></a>TQImage::operator= ( const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pixmap ) <h3 class=fn><a href="tqimage.html">TQImage</a>&nbsp;&amp; <a name="operator-eq-2"></a>TQImage::operator= ( const&nbsp;<a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pixmap )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Sets the image bits to the <em>pixmap</em> contents and returns a <p> Sets the image bits to the <em>pixmap</em> contents and returns a
@ -731,7 +731,7 @@ reference to the image.
dereference the shared data. dereference the shared data.
<p> Makes a call to <a href="ntqpixmap.html#convertToImage">TQPixmap::convertToImage</a>(). <p> Makes a call to <a href="ntqpixmap.html#convertToImage">TQPixmap::convertToImage</a>().
<h3 class=fn>bool <a name="operator-eq-eq"></a>TQImage::operator== ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const <h3 class=fn>bool <a name="operator-eq-eq"></a>TQImage::operator== ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;i ) const
</h3> </h3>
Returns TRUE if this image and image <em>i</em> have the same contents; Returns TRUE if this image and image <em>i</em> have the same contents;
otherwise returns FALSE. The comparison can be slow, unless there otherwise returns FALSE. The comparison can be slow, unless there
@ -754,13 +754,13 @@ over a copy, e.g.
} }
</pre> </pre>
<p> <p>See also <a href="#inputFormatList">inputFormatList</a>(), <a href="#outputFormats">outputFormats</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#inputFormatList">inputFormatList</a>(), <a href="#outputFormats">outputFormats</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn><a href="ntqstrlist.html">TQStrList</a> <a name="outputFormats"></a>TQImage::outputFormats ()<tt> [static]</tt> <h3 class=fn><a href="ntqstrlist.html">TQStrList</a> <a name="outputFormats"></a>TQImage::outputFormats ()<tt> [static]</tt>
</h3> </h3>
Returns a list of image formats that are supported for image Returns a list of image formats that are supported for image
output. output.
<p> <p>See also <a href="#inputFormats">inputFormats</a>(), <a href="#outputFormatList">outputFormatList</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#inputFormats">inputFormats</a>(), <a href="#outputFormatList">outputFormatList</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<p>Example: <a href="showimg-example.html#x1323">showimg/showimg.cpp</a>. <p>Example: <a href="showimg-example.html#x1323">showimg/showimg.cpp</a>.
<h3 class=fn>TQRgb <a name="pixel"></a>TQImage::pixel ( int&nbsp;x, int&nbsp;y ) const <h3 class=fn>TQRgb <a name="pixel"></a>TQImage::pixel ( int&nbsp;x, int&nbsp;y ) const
@ -799,7 +799,7 @@ compressed files, 100 for large uncompressed files, and -1 (the
default) to use the default settings. default) to use the default settings.
<p> Returns TRUE if the image was successfully saved; otherwise <p> Returns TRUE if the image was successfully saved; otherwise
returns FALSE. returns FALSE.
<p> <p>See also <a href="#load">load</a>(), <a href="#loadFromData">loadFromData</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#save">TQPixmap::save</a>(), and <a href="qimageio.html">TQImageIO</a>. <p> <p>See also <a href="#load">load</a>(), <a href="#loadFromData">loadFromData</a>(), <a href="#imageFormat">imageFormat</a>(), <a href="ntqpixmap.html#save">TQPixmap::save</a>(), and <a href="tqimageio.html">TQImageIO</a>.
<h3 class=fn>bool <a name="save-2"></a>TQImage::save ( <a href="ntqiodevice.html">TQIODevice</a>&nbsp;*&nbsp;device, const&nbsp;char&nbsp;*&nbsp;format, int&nbsp;quality = -1 ) const <h3 class=fn>bool <a name="save-2"></a>TQImage::save ( <a href="ntqiodevice.html">TQIODevice</a>&nbsp;*&nbsp;device, const&nbsp;char&nbsp;*&nbsp;format, int&nbsp;quality = -1 ) const
</h3> </h3>
@ -816,7 +816,7 @@ TQByteArray:
</pre> </pre>
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scale"></a>TQImage::scale ( int&nbsp;w, int&nbsp;h, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scale"></a>TQImage::scale ( int&nbsp;w, int&nbsp;h, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const
</h3> </h3>
Returns a copy of the image scaled to a rectangle of width <em>w</em> Returns a copy of the image scaled to a rectangle of width <em>w</em>
and height <em>h</em> according to the ScaleMode <em>mode</em>. and height <em>h</em> according to the ScaleMode <em>mode</em>.
@ -836,12 +836,12 @@ function returns a <a href="#isNull">null</a> image.
quality, use <a href="#smoothScale">smoothScale</a>() instead. quality, use <a href="#smoothScale">smoothScale</a>() instead.
<p> <p>See also <a href="#scaleWidth">scaleWidth</a>(), <a href="#scaleHeight">scaleHeight</a>(), <a href="#smoothScale">smoothScale</a>(), and <a href="#xForm">xForm</a>(). <p> <p>See also <a href="#scaleWidth">scaleWidth</a>(), <a href="#scaleHeight">scaleHeight</a>(), <a href="#smoothScale">smoothScale</a>(), and <a href="#xForm">xForm</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scale-2"></a>TQImage::scale ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;s, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scale-2"></a>TQImage::scale ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;s, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> The requested size of the image is <em>s</em>. <p> The requested size of the image is <em>s</em>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scaleHeight"></a>TQImage::scaleHeight ( int&nbsp;h ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scaleHeight"></a>TQImage::scaleHeight ( int&nbsp;h ) const
</h3> </h3>
Returns a scaled copy of the image. The returned image has a Returns a scaled copy of the image. The returned image has a
height of <em>h</em> pixels. This function automatically calculates the height of <em>h</em> pixels. This function automatically calculates the
@ -851,7 +851,7 @@ returned.
<p> <p>See also <a href="#scale">scale</a>(), <a href="#scaleWidth">scaleWidth</a>(), <a href="#smoothScale">smoothScale</a>(), and <a href="#xForm">xForm</a>(). <p> <p>See also <a href="#scale">scale</a>(), <a href="#scaleWidth">scaleWidth</a>(), <a href="#smoothScale">smoothScale</a>(), and <a href="#xForm">xForm</a>().
<p>Example: <a href="small-table-example-example.html#x2799">table/small-table-demo/main.cpp</a>. <p>Example: <a href="small-table-example-example.html#x2799">table/small-table-demo/main.cpp</a>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scaleWidth"></a>TQImage::scaleWidth ( int&nbsp;w ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scaleWidth"></a>TQImage::scaleWidth ( int&nbsp;w ) const
</h3> </h3>
Returns a scaled copy of the image. The returned image has a width Returns a scaled copy of the image. The returned image has a width
of <em>w</em> pixels. This function automatically calculates the height of <em>w</em> pixels. This function automatically calculates the height
@ -944,7 +944,7 @@ should specify the language code (see
<p> Returns the size of the image, i.e. its width and height. <p> Returns the size of the image, i.e. its width and height.
<p> <p>See also <a href="#width">width</a>(), <a href="#height">height</a>(), and <a href="#rect">rect</a>(). <p> <p>See also <a href="#width">width</a>(), <a href="#height">height</a>(), and <a href="#rect">rect</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="smoothScale"></a>TQImage::smoothScale ( int&nbsp;w, int&nbsp;h, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="smoothScale"></a>TQImage::smoothScale ( int&nbsp;w, int&nbsp;h, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const
</h3> </h3>
Returns a smoothly scaled copy of the image. The returned image Returns a smoothly scaled copy of the image. The returned image
has a size of width <em>w</em> by height <em>h</em> pixels if <em>mode</em> is <a href="#ScaleMode-enum">ScaleFree</a>. The modes <a href="#ScaleMode-enum">ScaleMin</a> and <a href="#ScaleMode-enum">ScaleMax</a> may be used to has a size of width <em>w</em> by height <em>h</em> pixels if <em>mode</em> is <a href="#ScaleMode-enum">ScaleFree</a>. The modes <a href="#ScaleMode-enum">ScaleMin</a> and <a href="#ScaleMode-enum">ScaleMax</a> may be used to
@ -970,24 +970,24 @@ notice appear in supporting documentation. This software is
provided "as is" without express or implied warranty. provided "as is" without express or implied warranty.
<p> <p>See also <a href="#scale">scale</a>() and <a href="#mirror">mirror</a>(). <p> <p>See also <a href="#scale">scale</a>() and <a href="#mirror">mirror</a>().
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="smoothScale-2"></a>TQImage::smoothScale ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;s, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="smoothScale-2"></a>TQImage::smoothScale ( const&nbsp;<a href="ntqsize.html">TQSize</a>&nbsp;&amp;&nbsp;s, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a>&nbsp;mode = ScaleFree ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> The requested size of the image is <em>s</em>. <p> The requested size of the image is <em>s</em>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="swapRGB"></a>TQImage::swapRGB () const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="swapRGB"></a>TQImage::swapRGB () const
</h3> </h3>
Returns a TQImage in which the values of the red and blue Returns a TQImage in which the values of the red and blue
components of all pixels have been swapped, effectively converting components of all pixels have been swapped, effectively converting
an RGB image to a BGR image. The original TQImage is not changed. an RGB image to a BGR image. The original TQImage is not changed.
<h3 class=fn><a href="ntqimage.html#Endian-enum">Endian</a> <a name="systemBitOrder"></a>TQImage::systemBitOrder ()<tt> [static]</tt> <h3 class=fn><a href="tqimage.html#Endian-enum">Endian</a> <a name="systemBitOrder"></a>TQImage::systemBitOrder ()<tt> [static]</tt>
</h3> </h3>
Determines the bit order of the display hardware. Returns Determines the bit order of the display hardware. Returns
TQImage::LittleEndian (LSB first) or TQImage::BigEndian (MSB first). TQImage::LittleEndian (LSB first) or TQImage::BigEndian (MSB first).
<p> <p>See also <a href="#systemByteOrder">systemByteOrder</a>(). <p> <p>See also <a href="#systemByteOrder">systemByteOrder</a>().
<h3 class=fn><a href="ntqimage.html#Endian-enum">Endian</a> <a name="systemByteOrder"></a>TQImage::systemByteOrder ()<tt> [static]</tt> <h3 class=fn><a href="tqimage.html#Endian-enum">Endian</a> <a name="systemByteOrder"></a>TQImage::systemByteOrder ()<tt> [static]</tt>
</h3> </h3>
Determines the host computer byte order. Returns Determines the host computer byte order. Returns
TQImage::LittleEndian (LSB first) or TQImage::BigEndian (MSB first). TQImage::LittleEndian (LSB first) or TQImage::BigEndian (MSB first).
@ -1065,7 +1065,7 @@ otherwise returns FALSE.
<p> <p>See also <a href="#height">height</a>(), <a href="#size">size</a>(), and <a href="#rect">rect</a>(). <p> <p>See also <a href="#height">height</a>(), <a href="#size">size</a>(), and <a href="#rect">rect</a>().
<p>Examples: <a href="canvas-example.html#x2935">canvas/canvas.cpp</a> and <a href="qglwidget.html#x2121">opengl/texture/gltexobj.cpp</a>. <p>Examples: <a href="canvas-example.html#x2935">canvas/canvas.cpp</a> and <a href="qglwidget.html#x2121">opengl/texture/gltexobj.cpp</a>.
<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="xForm"></a>TQImage::xForm ( const&nbsp;<a href="ntqwmatrix.html">TQWMatrix</a>&nbsp;&amp;&nbsp;matrix ) const <h3 class=fn><a href="tqimage.html">TQImage</a> <a name="xForm"></a>TQImage::xForm ( const&nbsp;<a href="ntqwmatrix.html">TQWMatrix</a>&nbsp;&amp;&nbsp;matrix ) const
</h3> </h3>
Returns a copy of the image that is transformed using the Returns a copy of the image that is transformed using the
<a href="ntqwmatrix.html#TransformationMode">transformation matrix</a>, <em>matrix</em>. <a href="ntqwmatrix.html#TransformationMode">transformation matrix</a>, <em>matrix</em>.
@ -1075,7 +1075,7 @@ that contains all the transformed points of the original image.
<p> <p>See also <a href="#scale">scale</a>(), <a href="ntqpixmap.html#xForm">TQPixmap::xForm</a>(), <a href="ntqpixmap.html#trueMatrix">TQPixmap::trueMatrix</a>(), and <a href="ntqwmatrix.html">TQWMatrix</a>. <p> <p>See also <a href="#scale">scale</a>(), <a href="ntqpixmap.html#xForm">TQPixmap::xForm</a>(), <a href="ntqpixmap.html#trueMatrix">TQPixmap::trueMatrix</a>(), and <a href="ntqwmatrix.html">TQWMatrix</a>.
<hr><h2>Related Functions</h2> <hr><h2>Related Functions</h2>
<h3 class=fn>void <a name="bitBlt"></a>bitBlt ( <a href="ntqimage.html">TQImage</a>&nbsp;*&nbsp;dst, int&nbsp;dx, int&nbsp;dy, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;*&nbsp;src, int&nbsp;sx, int&nbsp;sy, int&nbsp;sw, int&nbsp;sh, int&nbsp;conversion_flags ) <h3 class=fn>void <a name="bitBlt"></a>bitBlt ( <a href="tqimage.html">TQImage</a>&nbsp;*&nbsp;dst, int&nbsp;dx, int&nbsp;dy, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;*&nbsp;src, int&nbsp;sx, int&nbsp;sy, int&nbsp;sw, int&nbsp;sh, int&nbsp;conversion_flags )
</h3> </h3>
<p> Copies a block of pixels from <em>src</em> to <em>dst</em>. The pixels <p> Copies a block of pixels from <em>src</em> to <em>dst</em>. The pixels
@ -1090,7 +1090,7 @@ specified.
<p> If <em>sw</em> is -1, it is adjusted to src->width(). Similarly, if <em>sh</em> is -1, it is adjusted to src->height(). <p> If <em>sw</em> is -1, it is adjusted to src->width(). Similarly, if <em>sh</em> is -1, it is adjusted to src->height().
<p> Currently inefficient for non 32-bit images. <p> Currently inefficient for non 32-bit images.
<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp; <a name="operator-lt-lt"></a>operator&lt;&lt; ( <a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s, const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp; <a name="operator-lt-lt"></a>operator&lt;&lt; ( <a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s, const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
<p> Writes the image <em>image</em> to the stream <em>s</em> as a PNG image, or as a <p> Writes the image <em>image</em> to the stream <em>s</em> as a PNG image, or as a
@ -1098,7 +1098,7 @@ BMP image if the stream's version is 1.
<p> Note that writing the stream to a file will not produce a valid image file. <p> Note that writing the stream to a file will not produce a valid image file.
<p> <p>See also <a href="#save">TQImage::save</a>() and <a href="datastreamformat.html">Format of the TQDataStream operators</a>. <p> <p>See also <a href="#save">TQImage::save</a>() and <a href="datastreamformat.html">Format of the TQDataStream operators</a>.
<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp; <a name="operator-gt-gt"></a>operator&gt;&gt; ( <a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s, <a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn><a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp; <a name="operator-gt-gt"></a>operator&gt;&gt; ( <a href="ntqdatastream.html">TQDataStream</a>&nbsp;&amp;&nbsp;s, <a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
<p> Reads an image from the stream <em>s</em> and stores it in <em>image</em>. <p> Reads an image from the stream <em>s</em> and stores it in <em>image</em>.

@ -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 TQImageConsumer</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 TQImageConsumer</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qimageconsumer.html">TQImageConsumer</a>, including inherited members. <a href="tqimageconsumer.html">TQImageConsumer</a>, including inherited members.
<ul> <ul>
<li><a href="qimageconsumer.html#changed">changed</a>() <li><a href="tqimageconsumer.html#changed">changed</a>()
<li><a href="qimageconsumer.html#end">end</a>() <li><a href="tqimageconsumer.html#end">end</a>()
<li><a href="qimageconsumer.html#frameDone">frameDone</a>() <li><a href="tqimageconsumer.html#frameDone">frameDone</a>()
<li><a href="qimageconsumer.html#setFramePeriod">setFramePeriod</a>() <li><a href="tqimageconsumer.html#setFramePeriod">setFramePeriod</a>()
<li><a href="qimageconsumer.html#setLooping">setLooping</a>() <li><a href="tqimageconsumer.html#setLooping">setLooping</a>()
<li><a href="qimageconsumer.html#setSize">setSize</a>() <li><a href="tqimageconsumer.html#setSize">setSize</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQImageConsumer class is an abstraction used by TQImageDecoder. <p>The TQImageConsumer class is an abstraction used by TQImageDecoder.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt>
<p><a href="qimageconsumer-members.html">List of all member functions.</a> <p><a href="tqimageconsumer-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn>virtual void <a href="#end"><b>end</b></a> () = 0</li> <li class=fn>virtual void <a href="#end"><b>end</b></a> () = 0</li>
@ -48,20 +48,20 @@ body { background: #ffffff; color: black; }
<hr><a name="details"></a><h2>Detailed Description</h2> <hr><a name="details"></a><h2>Detailed Description</h2>
The TQImageConsumer class is an abstraction used by <a href="qimagedecoder.html">TQImageDecoder</a>. The TQImageConsumer class is an abstraction used by <a href="tqimagedecoder.html">TQImageDecoder</a>.
<p> <p>
<p> The <a href="ntqmovie.html">TQMovie</a> class, or <a href="ntqlabel.html#setMovie">TQLabel::setMovie</a>(), are easy to use and for <p> The <a href="ntqmovie.html">TQMovie</a> class, or <a href="ntqlabel.html#setMovie">TQLabel::setMovie</a>(), are easy to use and for
most situations do what you want with regards animated images. most situations do what you want with regards animated images.
<p> A TQImageConsumer consumes information about changes to the <a href="ntqimage.html">TQImage</a> <p> A TQImageConsumer consumes information about changes to the <a href="tqimage.html">TQImage</a>
maintained by a TQImageDecoder. Think of the TQImage as the model or maintained by a TQImageDecoder. Think of the TQImage as the model or
source of the image data, with the TQImageConsumer as a view of source of the image data, with the TQImageConsumer as a view of
that data and the TQImageDecoder being the controller that that data and the TQImageDecoder being the controller that
orchestrates the relationship between the model and the view. orchestrates the relationship between the model and the view.
<p> You'd use the TQImageConsumer class, for example, if you were <p> You'd use the TQImageConsumer class, for example, if you were
implementing a web browser with your own image loaders. implementing a web browser with your own image loaders.
<p> <p>See also <a href="qimagedecoder.html">TQImageDecoder</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="multimedia.html">Multimedia Classes</a>. <p> <p>See also <a href="tqimagedecoder.html">TQImageDecoder</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="multimedia.html">Multimedia Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn>void <a name="changed"></a>TQImageConsumer::changed ( const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp; )<tt> [pure virtual]</tt> <h3 class=fn>void <a name="changed"></a>TQImageConsumer::changed ( const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp; )<tt> [pure virtual]</tt>
@ -83,7 +83,7 @@ of an animated image has ended and been revealed as <a href="#changed">changed</
<p> When this function is called, the current image should be <p> When this function is called, the current image should be
displayed. displayed.
<p> The decoder will not make any further changes to the image until <p> The decoder will not make any further changes to the image until
the next call to <a href="qimageformat.html#decode">TQImageFormat::decode</a>(). the next call to <a href="tqimageformat.html#decode">TQImageFormat::decode</a>().
<h3 class=fn>void <a name="frameDone-2"></a>TQImageConsumer::frameDone ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;offset, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;rect )<tt> [pure virtual]</tt> <h3 class=fn>void <a name="frameDone-2"></a>TQImageConsumer::frameDone ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;offset, const&nbsp;<a href="ntqrect.html">TQRect</a>&nbsp;&amp;&nbsp;rect )<tt> [pure virtual]</tt>
</h3> </h3>
@ -93,7 +93,7 @@ of an animated image has ended and been revealed as <a href="#changed">changed</
<p> When this function is called, the area <em>rect</em> in the current <p> When this function is called, the area <em>rect</em> in the current
image should be moved by <em>offset</em> and displayed. image should be moved by <em>offset</em> and displayed.
<p> The decoder will not make any further changes to the image until <p> The decoder will not make any further changes to the image until
the next call to <a href="qimageformat.html#decode">TQImageFormat::decode</a>(). the next call to <a href="tqimageformat.html#decode">TQImageFormat::decode</a>().
<h3 class=fn>void <a name="setFramePeriod"></a>TQImageConsumer::setFramePeriod ( int&nbsp;milliseconds )<tt> [pure virtual]</tt> <h3 class=fn>void <a name="setFramePeriod"></a>TQImageConsumer::setFramePeriod ( int&nbsp;milliseconds )<tt> [pure virtual]</tt>
</h3> </h3>
@ -118,7 +118,7 @@ decoding.
<li> 2 = Repeat once after first pass through images <li> 2 = Repeat once after first pass through images
<li> etc. <li> etc.
</ul> </ul>
<p> To make the <a href="qimagedecoder.html">TQImageDecoder</a> do this, just delete it and pass the <p> To make the <a href="tqimagedecoder.html">TQImageDecoder</a> do this, just delete it and pass the
information to it again for decoding (<a href="#setLooping">setLooping</a>() will be called information to it again for decoding (<a href="#setLooping">setLooping</a>() will be called
again, of course, but that can be ignored), or keep copies of the again, of course, but that can be ignored), or keep copies of the
changed areas at the ends of frames. changed areas at the ends of frames.

@ -32,18 +32,18 @@ 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 TQImageDecoder</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 TQImageDecoder</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qimagedecoder.html">TQImageDecoder</a>, including inherited members. <a href="tqimagedecoder.html">TQImageDecoder</a>, including inherited members.
<ul> <ul>
<li><a href="qimagedecoder.html#TQImageDecoder">TQImageDecoder</a>() <li><a href="tqimagedecoder.html#TQImageDecoder">TQImageDecoder</a>()
<li><a href="qimagedecoder.html#~TQImageDecoder">~TQImageDecoder</a>() <li><a href="tqimagedecoder.html#~TQImageDecoder">~TQImageDecoder</a>()
<li><a href="qimagedecoder.html#decode">decode</a>() <li><a href="tqimagedecoder.html#decode">decode</a>()
<li><a href="qimagedecoder.html#format">format</a>() <li><a href="tqimagedecoder.html#format">format</a>()
<li><a href="qimagedecoder.html#formatName">formatName</a>() <li><a href="tqimagedecoder.html#formatName">formatName</a>()
<li><a href="qimagedecoder.html#image">image</a>() <li><a href="tqimagedecoder.html#image">image</a>()
<li><a href="qimagedecoder.html#inputFormats">inputFormats</a>() <li><a href="tqimagedecoder.html#inputFormats">inputFormats</a>()
<li><a href="qimagedecoder.html#registerDecoderFactory">registerDecoderFactory</a>() <li><a href="tqimagedecoder.html#registerDecoderFactory">registerDecoderFactory</a>()
<li><a href="qimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</a>() <li><a href="tqimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQImageDecoder class is an incremental image decoder for all supported image formats. <p>The TQImageDecoder class is an incremental image decoder for all supported image formats.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt>
<p><a href="qimagedecoder-members.html">List of all member functions.</a> <p><a href="tqimagedecoder-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQImageDecoder"><b>TQImageDecoder</b></a> ( TQImageConsumer&nbsp;*&nbsp;c )</li> <li class=fn><a href="#TQImageDecoder"><b>TQImageDecoder</b></a> ( TQImageConsumer&nbsp;*&nbsp;c )</li>
@ -58,13 +58,13 @@ The TQImageDecoder class is an incremental image decoder for all supported image
<p> New formats are installed by creating objects of class <p> New formats are installed by creating objects of class
<a href="qimageformattype.html">TQImageFormatType</a>; the <a href="ntqmovie.html">TQMovie</a> class can be used for all installed <a href="tqimageformattype.html">TQImageFormatType</a>; the <a href="ntqmovie.html">TQMovie</a> class can be used for all installed
incremental image formats. TQImageDecoder is only useful for incremental image formats. TQImageDecoder is only useful for
creating new ways of feeding data to an <a href="qimageconsumer.html">TQImageConsumer</a>. creating new ways of feeding data to an <a href="tqimageconsumer.html">TQImageConsumer</a>.
<p> A TQImageDecoder is a machine that decodes images. It takes encoded <p> A TQImageDecoder is a machine that decodes images. It takes encoded
image data via its <a href="#decode">decode</a>() method and expresses its decoding by image data via its <a href="#decode">decode</a>() method and expresses its decoding by
supplying information to a TQImageConsumer. It implements its supplying information to a TQImageConsumer. It implements its
decoding by using a <a href="qimageformat.html">TQImageFormat</a> created by one of the decoding by using a <a href="tqimageformat.html">TQImageFormat</a> created by one of the
currently-existing TQImageFormatType factory objects. currently-existing TQImageFormatType factory objects.
<p> TQImageFormatType and TQImageFormat are the classes that you might <p> TQImageFormatType and TQImageFormat are the classes that you might
need to implement support for additional image formats. need to implement support for additional image formats.
@ -84,10 +84,10 @@ We recommend using the MNG or PNG format.
<p>See also <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="multimedia.html">Multimedia Classes</a>. <p>See also <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="multimedia.html">Multimedia Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQImageDecoder"></a>TQImageDecoder::TQImageDecoder ( <a href="qimageconsumer.html">TQImageConsumer</a>&nbsp;*&nbsp;c ) <h3 class=fn><a name="TQImageDecoder"></a>TQImageDecoder::TQImageDecoder ( <a href="tqimageconsumer.html">TQImageConsumer</a>&nbsp;*&nbsp;c )
</h3> </h3>
Constructs a TQImageDecoder that will send change information to Constructs a TQImageDecoder that will send change information to
the <a href="qimageconsumer.html">TQImageConsumer</a> <em>c</em>. the <a href="tqimageconsumer.html">TQImageConsumer</a> <em>c</em>.
<h3 class=fn><a name="~TQImageDecoder"></a>TQImageDecoder::~TQImageDecoder () <h3 class=fn><a name="~TQImageDecoder"></a>TQImageDecoder::~TQImageDecoder ()
</h3> </h3>
@ -99,15 +99,15 @@ consumer for which it decoded the image is <em>not</em> destroyed.
</h3> </h3>
Call this function to decode some data into image changes. The Call this function to decode some data into image changes. The
data in <em>buffer</em> will be decoded, sending change information to data in <em>buffer</em> will be decoded, sending change information to
the <a href="qimageconsumer.html">TQImageConsumer</a> of this TQImageDecoder until one of the change the <a href="tqimageconsumer.html">TQImageConsumer</a> of this TQImageDecoder until one of the change
functions of the consumer returns FALSE. The length of the data is functions of the consumer returns FALSE. The length of the data is
given in <em>length</em>. given in <em>length</em>.
<p> Returns the number of bytes consumed: 0 if consumption is <p> Returns the number of bytes consumed: 0 if consumption is
complete, and -1 if decoding fails due to invalid data. complete, and -1 if decoding fails due to invalid data.
<h3 class=fn><a href="qimageformattype.html">TQImageFormatType</a>&nbsp;* <a name="format"></a>TQImageDecoder::format ( const&nbsp;char&nbsp;*&nbsp;name )<tt> [static]</tt> <h3 class=fn><a href="tqimageformattype.html">TQImageFormatType</a>&nbsp;* <a name="format"></a>TQImageDecoder::format ( const&nbsp;char&nbsp;*&nbsp;name )<tt> [static]</tt>
</h3> </h3>
Returns a <a href="qimageformattype.html">TQImageFormatType</a> by name. This might be used when the Returns a <a href="tqimageformattype.html">TQImageFormatType</a> by name. This might be used when the
user needs to force data to be interpreted as being in a certain user needs to force data to be interpreted as being in a certain
format. <em>name</em> is one of the formats listed by format. <em>name</em> is one of the formats listed by
<a href="#inputFormats">TQImageDecoder::inputFormats</a>(). Note that you will still need to <a href="#inputFormats">TQImageDecoder::inputFormats</a>(). Note that you will still need to
@ -121,7 +121,7 @@ header. The returned string is statically allocated. The function
will look at the first <em>length</em> characters in the <em>buffer</em>. will look at the first <em>length</em> characters in the <em>buffer</em>.
<p> Returns 0 if the format is not recognized. <p> Returns 0 if the format is not recognized.
<h3 class=fn>const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp; <a name="image"></a>TQImageDecoder::image () <h3 class=fn>const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp; <a name="image"></a>TQImageDecoder::image ()
</h3> </h3>
<p> Returns the image currently being decoded. <p> Returns the image currently being decoded.
@ -131,14 +131,14 @@ will look at the first <em>length</em> characters in the <em>buffer</em>.
Returns a sorted list of formats for which asynchronous loading is Returns a sorted list of formats for which asynchronous loading is
supported. supported.
<h3 class=fn>void <a name="registerDecoderFactory"></a>TQImageDecoder::registerDecoderFactory ( <a href="qimageformattype.html">TQImageFormatType</a>&nbsp;*&nbsp;f )<tt> [static]</tt> <h3 class=fn>void <a name="registerDecoderFactory"></a>TQImageDecoder::registerDecoderFactory ( <a href="tqimageformattype.html">TQImageFormatType</a>&nbsp;*&nbsp;f )<tt> [static]</tt>
</h3> </h3>
Registers the new <a href="qimageformattype.html">TQImageFormatType</a> <em>f</em>. This is not needed in Registers the new <a href="tqimageformattype.html">TQImageFormatType</a> <em>f</em>. This is not needed in
application code because factories call this themselves. application code because factories call this themselves.
<h3 class=fn>void <a name="unregisterDecoderFactory"></a>TQImageDecoder::unregisterDecoderFactory ( <a href="qimageformattype.html">TQImageFormatType</a>&nbsp;*&nbsp;f )<tt> [static]</tt> <h3 class=fn>void <a name="unregisterDecoderFactory"></a>TQImageDecoder::unregisterDecoderFactory ( <a href="tqimageformattype.html">TQImageFormatType</a>&nbsp;*&nbsp;f )<tt> [static]</tt>
</h3> </h3>
Unregisters the <a href="qimageformattype.html">TQImageFormatType</a> <em>f</em>. This is not needed in Unregisters the <a href="tqimageformattype.html">TQImageFormatType</a> <em>f</em>. This is not needed in
application code because factories call this themselves. application code because factories call this themselves.
<!-- eof --> <!-- eof -->

@ -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 TQImageDrag</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 TQImageDrag</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qimagedrag.html">TQImageDrag</a>, including inherited members. <a href="tqimagedrag.html">TQImageDrag</a>, including inherited members.
<ul> <ul>
<li><a href="qimagedrag.html#TQImageDrag">TQImageDrag</a>() <li><a href="tqimagedrag.html#TQImageDrag">TQImageDrag</a>()
<li><a href="qimagedrag.html#~TQImageDrag">~TQImageDrag</a>() <li><a href="tqimagedrag.html#~TQImageDrag">~TQImageDrag</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="qimagedrag.html#canDecode">canDecode</a>() <li><a href="tqimagedrag.html#canDecode">canDecode</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>()
<li><a href="tqobject.html#childEvent">childEvent</a>() <li><a href="tqobject.html#childEvent">childEvent</a>()
@ -47,7 +47,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>() <li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>() <li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>() <li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="qimagedrag.html#decode">decode</a>() <li><a href="tqimagedrag.html#decode">decode</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>() <li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
@ -84,7 +84,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="qmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qimagedrag.html#setImage">setImage</a>() <li><a href="tqimagedrag.html#setImage">setImage</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="ntqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()

@ -36,7 +36,7 @@ transferring images.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="ntqdragobject.html">TQDragObject</a>. <p>Inherits <a href="ntqdragobject.html">TQDragObject</a>.
<p><a href="qimagedrag-members.html">List of all member functions.</a> <p><a href="tqimagedrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQImageDrag"><b>TQImageDrag</b></a> ( TQImage&nbsp;image, TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li> <li class=fn><a href="#TQImageDrag"><b>TQImageDrag</b></a> ( TQImage&nbsp;image, TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
@ -57,14 +57,14 @@ transferring images.
transferring images. transferring images.
<p> <p>
<p> Images are offered to the receiving application in multiple <p> Images are offered to the receiving application in multiple
formats, determined by TQt's <a href="ntqimage.html#outputFormats">output formats, determined by TQt's <a href="tqimage.html#outputFormats">output
formats</a>. formats</a>.
<p> For more information about drag and drop, see the <a href="ntqdragobject.html">TQDragObject</a> <p> For more information about drag and drop, see the <a href="ntqdragobject.html">TQDragObject</a>
class and the <a href="dnd.html">drag and drop documentation</a>. class and the <a href="dnd.html">drag and drop documentation</a>.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQImageDrag"></a>TQImageDrag::TQImageDrag ( <a href="ntqimage.html">TQImage</a>&nbsp;image, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQImageDrag"></a>TQImageDrag::TQImageDrag ( <a href="tqimage.html">TQImage</a>&nbsp;image, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )
</h3> </h3>
Constructs an image drag object and sets its data to <em>image</em>. <em>dragSource</em> must be the drag source; <em>name</em> is the object name. Constructs an image drag object and sets its data to <em>image</em>. <em>dragSource</em> must be the drag source; <em>name</em> is the object name.
@ -85,7 +85,7 @@ into an image; otherwise returns FALSE.
<p> <p>See also <a href="#decode">decode</a>(). <p> <p>See also <a href="#decode">decode</a>().
<p>Example: <a href="desktop-example.html#x1731">desktop/desktop.cpp</a>. <p>Example: <a href="desktop-example.html#x1731">desktop/desktop.cpp</a>.
<h3 class=fn>bool <a name="decode"></a>TQImageDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt> <h3 class=fn>bool <a name="decode"></a>TQImageDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt>
</h3> </h3>
Attempts to decode the dropped information in mime source <em>e</em> Attempts to decode the dropped information in mime source <em>e</em>
into <em>img</em>. Returns TRUE if successful; otherwise returns FALSE. into <em>img</em>. Returns TRUE if successful; otherwise returns FALSE.
@ -99,10 +99,10 @@ This is an overloaded member function, provided for convenience. It behaves esse
into pixmap <em>pm</em>. Returns TRUE if successful; otherwise returns into pixmap <em>pm</em>. Returns TRUE if successful; otherwise returns
FALSE. FALSE.
<p> This is a convenience function that converts to a <a href="ntqpixmap.html">TQPixmap</a> via a <p> This is a convenience function that converts to a <a href="ntqpixmap.html">TQPixmap</a> via a
<a href="ntqimage.html">TQImage</a>. <a href="tqimage.html">TQImage</a>.
<p> <p>See also <a href="#canDecode">canDecode</a>(). <p> <p>See also <a href="#canDecode">canDecode</a>().
<h3 class=fn>void <a name="setImage"></a>TQImageDrag::setImage ( <a href="ntqimage.html">TQImage</a>&nbsp;image )<tt> [virtual]</tt> <h3 class=fn>void <a name="setImage"></a>TQImageDrag::setImage ( <a href="tqimage.html">TQImage</a>&nbsp;image )<tt> [virtual]</tt>
</h3> </h3>
Sets the image to be dragged to <em>image</em>. You will need to call Sets the image to be dragged to <em>image</em>. You will need to call
this if you did not pass the image during construction. this if you did not pass the image during construction.

@ -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 TQImageFormat</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 TQImageFormat</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qimageformat.html">TQImageFormat</a>, including inherited members. <a href="tqimageformat.html">TQImageFormat</a>, including inherited members.
<ul> <ul>
<li><a href="qimageformat.html#decode">decode</a>() <li><a href="tqimageformat.html#decode">decode</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQImageFormat class is an incremental image decoder for a specific image format. <p>The TQImageFormat class is an incremental image decoder for a specific image format.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt>
<p><a href="qimageformat-members.html">List of all member functions.</a> <p><a href="tqimageformat-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn>virtual int <a href="#decode"><b>decode</b></a> ( TQImage&nbsp;&amp;&nbsp;img, TQImageConsumer&nbsp;*&nbsp;consumer, const&nbsp;uchar&nbsp;*&nbsp;buffer, int&nbsp;length ) = 0</li> <li class=fn>virtual int <a href="#decode"><b>decode</b></a> ( TQImage&nbsp;&amp;&nbsp;img, TQImageConsumer&nbsp;*&nbsp;consumer, const&nbsp;uchar&nbsp;*&nbsp;buffer, int&nbsp;length ) = 0</li>
@ -46,11 +46,11 @@ The TQImageFormat class is an incremental image decoder for a specific image for
<p> <p>
<p> By making a derived class of <a href="qimageformattype.html">TQImageFormatType</a>, which in turn <p> By making a derived class of <a href="tqimageformattype.html">TQImageFormatType</a>, which in turn
creates objects that are a subclass of TQImageFormat, you can add creates objects that are a subclass of TQImageFormat, you can add
support for more incremental image formats, allowing such formats support for more incremental image formats, allowing such formats
to be sources for a <a href="ntqmovie.html">TQMovie</a> or for the first frame of the image to be sources for a <a href="ntqmovie.html">TQMovie</a> or for the first frame of the image
stream to be loaded as a <a href="ntqimage.html">TQImage</a> or <a href="ntqpixmap.html">TQPixmap</a>. stream to be loaded as a <a href="tqimage.html">TQImage</a> or <a href="ntqpixmap.html">TQPixmap</a>.
<p> Your new subclass must reimplement the <a href="#decode">decode</a>() function in order <p> Your new subclass must reimplement the <a href="#decode">decode</a>() function in order
to process your new format. to process your new format.
<p> New TQImageFormat objects are generated by new TQImageFormatType <p> New TQImageFormat objects are generated by new TQImageFormatType
@ -58,7 +58,7 @@ factories.
<p>See also <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="multimedia.html">Multimedia Classes</a>. <p>See also <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="multimedia.html">Multimedia Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn>int <a name="decode"></a>TQImageFormat::decode ( <a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img, <a href="qimageconsumer.html">TQImageConsumer</a>&nbsp;*&nbsp;consumer, const&nbsp;uchar&nbsp;*&nbsp;buffer, int&nbsp;length )<tt> [pure virtual]</tt> <h3 class=fn>int <a name="decode"></a>TQImageFormat::decode ( <a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img, <a href="tqimageconsumer.html">TQImageConsumer</a>&nbsp;*&nbsp;consumer, const&nbsp;uchar&nbsp;*&nbsp;buffer, int&nbsp;length )<tt> [pure virtual]</tt>
</h3> </h3>
<p> New subclasses must reimplement this method. <p> New subclasses must reimplement this method.

@ -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/ntqimageformatplugin.h:1 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimageformatplugin.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>ntqimageformatplugin.h Include File</title> <title>tqimageformatplugin.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>ntqimageformatplugin.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>tqimageformatplugin.h</h1>
<p>This is the verbatim text of the ntqimageformatplugin.h include file. It is provided only for illustration; the copyright remains with Trolltech. <p>This is the verbatim text of the tqimageformatplugin.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr> <hr>
<pre> <pre>
/**************************************************************************** /****************************************************************************
** $Id: qt/ntqimageformatplugin.h 3.3.8 edited Jan 11 14:38 $ ** $Id: qt/tqimageformatplugin.h 3.3.8 edited Jan 11 14:38 $
** **
** Definition of ??? ** Definition of ???
** **

@ -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/ntqimageformatplugin.h:48 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimageformatplugin.h:48 -->
<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 TQImageFormatPlugin</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 TQImageFormatPlugin</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqimageformatplugin.html">TQImageFormatPlugin</a>, including inherited members. <a href="tqimageformatplugin.html">TQImageFormatPlugin</a>, including inherited members.
<ul> <ul>
<li><a href="ntqimageformatplugin.html#TQImageFormatPlugin">TQImageFormatPlugin</a>() <li><a href="tqimageformatplugin.html#TQImageFormatPlugin">TQImageFormatPlugin</a>()
<li><a href="ntqimageformatplugin.html#~TQImageFormatPlugin">~TQImageFormatPlugin</a>() <li><a href="tqimageformatplugin.html#~TQImageFormatPlugin">~TQImageFormatPlugin</a>()
<li><a href="ntqimageformatplugin.html#installIOHandler">installIOHandler</a>() <li><a href="tqimageformatplugin.html#installIOHandler">installIOHandler</a>()
<li><a href="ntqimageformatplugin.html#keys">keys</a>() <li><a href="tqimageformatplugin.html#keys">keys</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/src/kernel/qimageformatplugin.cpp:41 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqimageformatplugin.cpp:41 -->
<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,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQImageFormatPlugin class provides an abstract base for custom image format plugins. <p>The TQImageFormatPlugin class provides an abstract base for custom image format plugins.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qimageformatplugin-h.html">ntqimageformatplugin.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqimageformatplugin-h.html">tqimageformatplugin.h</a>&gt;</tt>
<p><a href="qimageformatplugin-members.html">List of all member functions.</a> <p><a href="tqimageformatplugin-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQImageFormatPlugin"><b>TQImageFormatPlugin</b></a> ()</li> <li class=fn><a href="#TQImageFormatPlugin"><b>TQImageFormatPlugin</b></a> ()</li>
@ -72,7 +72,7 @@ automatically when it is no longer used.
<h3 class=fn>bool <a name="installIOHandler"></a>TQImageFormatPlugin::installIOHandler ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;format )<tt> [pure virtual]</tt> <h3 class=fn>bool <a name="installIOHandler"></a>TQImageFormatPlugin::installIOHandler ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;format )<tt> [pure virtual]</tt>
</h3> </h3>
<p> Installs a <a href="qimageio.html">TQImageIO</a> image I/O handler for the image format <em>format</em>. <p> Installs a <a href="tqimageio.html">TQImageIO</a> image I/O handler for the image format <em>format</em>.
<p> <p>See also <a href="#keys">keys</a>(). <p> <p>See also <a href="#keys">keys</a>().
<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="keys"></a>TQImageFormatPlugin::keys () const<tt> [pure virtual]</tt> <h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="keys"></a>TQImageFormatPlugin::keys () const<tt> [pure virtual]</tt>

@ -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 TQImageFormatType</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 TQImageFormatType</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qimageformattype.html">TQImageFormatType</a>, including inherited members. <a href="tqimageformattype.html">TQImageFormatType</a>, including inherited members.
<ul> <ul>
<li><a href="qimageformattype.html#TQImageFormatType">TQImageFormatType</a>() <li><a href="tqimageformattype.html#TQImageFormatType">TQImageFormatType</a>()
<li><a href="qimageformattype.html#~TQImageFormatType">~TQImageFormatType</a>() <li><a href="tqimageformattype.html#~TQImageFormatType">~TQImageFormatType</a>()
<li><a href="qimageformattype.html#decoderFor">decoderFor</a>() <li><a href="tqimageformattype.html#decoderFor">decoderFor</a>()
<li><a href="qimageformattype.html#formatName">formatName</a>() <li><a href="tqimageformattype.html#formatName">formatName</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }
<p>The TQImageFormatType class is a factory that makes TQImageFormat objects. <p>The TQImageFormatType class is a factory that makes TQImageFormat objects.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>&gt;</tt>
<p><a href="qimageformattype-members.html">List of all member functions.</a> <p><a href="tqimageformattype-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn>virtual <a href="#~TQImageFormatType"><b>~TQImageFormatType</b></a> ()</li> <li class=fn>virtual <a href="#~TQImageFormatType"><b>~TQImageFormatType</b></a> ()</li>
@ -48,11 +48,11 @@ body { background: #ffffff; color: black; }
<hr><a name="details"></a><h2>Detailed Description</h2> <hr><a name="details"></a><h2>Detailed Description</h2>
The TQImageFormatType class is a factory that makes <a href="qimageformat.html">TQImageFormat</a> objects. The TQImageFormatType class is a factory that makes <a href="tqimageformat.html">TQImageFormat</a> objects.
<p> <p>
<p> Whereas the <a href="qimageio.html">TQImageIO</a> class allows for <em>complete</em> loading of <p> Whereas the <a href="tqimageio.html">TQImageIO</a> class allows for <em>complete</em> loading of
images, TQImageFormatType allows for <em>incremental</em> loading of images, TQImageFormatType allows for <em>incremental</em> loading of
images. images.
<p> New image file formats are installed by creating objects of <p> New image file formats are installed by creating objects of
@ -72,14 +72,14 @@ formats.
<h3 class=fn><a name="TQImageFormatType"></a>TQImageFormatType::TQImageFormatType ()<tt> [protected]</tt> <h3 class=fn><a name="TQImageFormatType"></a>TQImageFormatType::TQImageFormatType ()<tt> [protected]</tt>
</h3> </h3>
Constructs a factory. It automatically registers itself with Constructs a factory. It automatically registers itself with
<a href="qimagedecoder.html">TQImageDecoder</a>. <a href="tqimagedecoder.html">TQImageDecoder</a>.
<h3 class=fn><a name="~TQImageFormatType"></a>TQImageFormatType::~TQImageFormatType ()<tt> [virtual]</tt> <h3 class=fn><a name="~TQImageFormatType"></a>TQImageFormatType::~TQImageFormatType ()<tt> [virtual]</tt>
</h3> </h3>
Destroys a factory. It automatically unregisters itself from Destroys a factory. It automatically unregisters itself from
<a href="qimagedecoder.html">TQImageDecoder</a>. <a href="tqimagedecoder.html">TQImageDecoder</a>.
<h3 class=fn><a href="qimageformat.html">TQImageFormat</a>&nbsp;* <a name="decoderFor"></a>TQImageFormatType::decoderFor ( const&nbsp;uchar&nbsp;*&nbsp;buffer, int&nbsp;length )<tt> [pure virtual]</tt> <h3 class=fn><a href="tqimageformat.html">TQImageFormat</a>&nbsp;* <a name="decoderFor"></a>TQImageFormatType::decoderFor ( const&nbsp;uchar&nbsp;*&nbsp;buffer, int&nbsp;length )<tt> [pure virtual]</tt>
</h3> </h3>
<p> Returns a decoder for decoding an image that starts with the bytes <p> Returns a decoder for decoding an image that starts with the bytes

@ -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/ntqimage.h:271 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimage.h:271 -->
<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,35 +32,35 @@ 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 TQImageIO</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 TQImageIO</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qimageio.html">TQImageIO</a>, including inherited members. <a href="tqimageio.html">TQImageIO</a>, including inherited members.
<ul> <ul>
<li><a href="qimageio.html#TQImageIO">TQImageIO</a>() <li><a href="tqimageio.html#TQImageIO">TQImageIO</a>()
<li><a href="qimageio.html#~TQImageIO">~TQImageIO</a>() <li><a href="tqimageio.html#~TQImageIO">~TQImageIO</a>()
<li><a href="qimageio.html#defineIOHandler">defineIOHandler</a>() <li><a href="tqimageio.html#defineIOHandler">defineIOHandler</a>()
<li><a href="qimageio.html#description">description</a>() <li><a href="tqimageio.html#description">description</a>()
<li><a href="qimageio.html#fileName">fileName</a>() <li><a href="tqimageio.html#fileName">fileName</a>()
<li><a href="qimageio.html#format">format</a>() <li><a href="tqimageio.html#format">format</a>()
<li><a href="qimageio.html#gamma">gamma</a>() <li><a href="tqimageio.html#gamma">gamma</a>()
<li><a href="qimageio.html#image">image</a>() <li><a href="tqimageio.html#image">image</a>()
<li><a href="qimageio.html#imageFormat">imageFormat</a>() <li><a href="tqimageio.html#imageFormat">imageFormat</a>()
<li><a href="qimageio.html#inputFormats">inputFormats</a>() <li><a href="tqimageio.html#inputFormats">inputFormats</a>()
<li><a href="qimageio.html#ioDevice">ioDevice</a>() <li><a href="tqimageio.html#ioDevice">ioDevice</a>()
<li><a href="qimageio.html#outputFormats">outputFormats</a>() <li><a href="tqimageio.html#outputFormats">outputFormats</a>()
<li><a href="qimageio.html#parameters">parameters</a>() <li><a href="tqimageio.html#parameters">parameters</a>()
<li><a href="qimageio.html#quality">quality</a>() <li><a href="tqimageio.html#quality">quality</a>()
<li><a href="qimageio.html#read">read</a>() <li><a href="tqimageio.html#read">read</a>()
<li><a href="qimageio.html#setDescription">setDescription</a>() <li><a href="tqimageio.html#setDescription">setDescription</a>()
<li><a href="qimageio.html#setFileName">setFileName</a>() <li><a href="tqimageio.html#setFileName">setFileName</a>()
<li><a href="qimageio.html#setFormat">setFormat</a>() <li><a href="tqimageio.html#setFormat">setFormat</a>()
<li><a href="qimageio.html#setGamma">setGamma</a>() <li><a href="tqimageio.html#setGamma">setGamma</a>()
<li><a href="qimageio.html#setIODevice">setIODevice</a>() <li><a href="tqimageio.html#setIODevice">setIODevice</a>()
<li><a href="qimageio.html#setImage">setImage</a>() <li><a href="tqimageio.html#setImage">setImage</a>()
<li><a href="qimageio.html#setParameters">setParameters</a>() <li><a href="tqimageio.html#setParameters">setParameters</a>()
<li><a href="qimageio.html#setQuality">setQuality</a>() <li><a href="tqimageio.html#setQuality">setQuality</a>()
<li><a href="qimageio.html#setStatus">setStatus</a>() <li><a href="tqimageio.html#setStatus">setStatus</a>()
<li><a href="qimageio.html#status">status</a>() <li><a href="tqimageio.html#status">status</a>()
<li><a href="qimageio.html#write">write</a>() <li><a href="tqimageio.html#write">write</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/src/kernel/qimage.cpp:3715 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqimage.cpp:3715 -->
<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,8 +34,8 @@ body { background: #ffffff; color: black; }
<p>The TQImageIO class contains parameters for loading and <p>The TQImageIO class contains parameters for loading and
saving images. saving images.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qimage-h.html">ntqimage.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqimage-h.html">tqimage.h</a>&gt;</tt>
<p><a href="qimageio-members.html">List of all member functions.</a> <p><a href="tqimageio-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQImageIO"><b>TQImageIO</b></a> ()</li> <li class=fn><a href="#TQImageIO"><b>TQImageIO</b></a> ()</li>
@ -87,7 +87,7 @@ XBM, XPM and PNM. It may also support JPEG, MNG and GIF, if
specially configured during compilation. The different PNM formats specially configured during compilation. The different PNM formats
are: PBM (P1 or P4), PGM (P2 or P5), and PPM (P3 or P6). are: PBM (P1 or P4), PGM (P2 or P5), and PPM (P3 or P6).
<p> You don't normally need to use this class; <a href="ntqpixmap.html#load">TQPixmap::load</a>(), <p> You don't normally need to use this class; <a href="ntqpixmap.html#load">TQPixmap::load</a>(),
<a href="ntqpixmap.html#save">TQPixmap::save</a>(), and <a href="ntqimage.html">TQImage</a> contain sufficient functionality. <a href="ntqpixmap.html#save">TQPixmap::save</a>(), and <a href="tqimage.html">TQImage</a> contain sufficient functionality.
<p> For image files that contain sequences of images, only the first <p> For image files that contain sequences of images, only the first
is read. See <a href="ntqmovie.html">TQMovie</a> for loading multiple images. is read. See <a href="ntqmovie.html">TQMovie</a> for loading multiple images.
<p> PBM, PGM, and PPM format <em>output</em> is always in the more condensed <p> PBM, PGM, and PPM format <em>output</em> is always in the more condensed
@ -100,7 +100,7 @@ license the technology. Such countries include Canada, Japan, the
USA, France, Germany, Italy and the UK. USA, France, Germany, Italy and the UK.
<p> GIF support may be removed completely in a future version of TQt. <p> GIF support may be removed completely in a future version of TQt.
We recommend using the PNG format. We recommend using the PNG format.
<p> <p>See also <a href="ntqimage.html">TQImage</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="ntqfile.html">TQFile</a>, <a href="ntqmovie.html">TQMovie</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="io.html">Input/Output and Networking</a>. <p> <p>See also <a href="tqimage.html">TQImage</a>, <a href="ntqpixmap.html">TQPixmap</a>, <a href="ntqfile.html">TQFile</a>, <a href="ntqmovie.html">TQMovie</a>, <a href="graphics.html">Graphics Classes</a>, <a href="images.html">Image Processing Classes</a>, and <a href="io.html">Input/Output and Networking</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQImageIO"></a>TQImageIO::TQImageIO () <h3 class=fn><a name="TQImageIO"></a>TQImageIO::TQImageIO ()
@ -131,7 +131,7 @@ legal value for <em>flags</em> are "T" and the empty string. The "T"
flag means that the image file is a text file, and TQt should treat flag means that the image file is a text file, and TQt should treat
all newline conventions as equivalent. (XPM files and some PPM all newline conventions as equivalent. (XPM files and some PPM
files are text files for example.) files are text files for example.)
<p> <em>format</em> is used to select a handler to write a <a href="ntqimage.html">TQImage</a>; <em>header</em> <p> <em>format</em> is used to select a handler to write a <a href="tqimage.html">TQImage</a>; <em>header</em>
is used to select a handler to read an image file. is used to select a handler to read an image file.
<p> If <em>readImage</em> is a null pointer, the TQImageIO will not be able <p> If <em>readImage</em> is a null pointer, the TQImageIO will not be able
to read images in <em>format</em>. If <em>writeImage</em> is a null pointer, to read images in <em>format</em>. If <em>writeImage</em> is a null pointer,
@ -190,7 +190,7 @@ explicitly set.
Returns the gamma value at which the image will be viewed. Returns the gamma value at which the image will be viewed.
<p> <p>See also <a href="#setGamma">setGamma</a>(). <p> <p>See also <a href="#setGamma">setGamma</a>().
<h3 class=fn>const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp; <a name="image"></a>TQImageIO::image () const <h3 class=fn>const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp; <a name="image"></a>TQImageIO::image () const
</h3> </h3>
<p> Returns the image currently set. <p> Returns the image currently set.
@ -237,7 +237,7 @@ Returns the image's parameters string.
</h3> </h3>
Returns the quality of the written image, related to the Returns the quality of the written image, related to the
compression ratio. compression ratio.
<p> <p>See also <a href="#setQuality">setQuality</a>() and <a href="ntqimage.html#save">TQImage::save</a>(). <p> <p>See also <a href="#setQuality">setQuality</a>() and <a href="tqimage.html#save">TQImage::save</a>().
<h3 class=fn>bool <a name="read"></a>TQImageIO::read () <h3 class=fn>bool <a name="read"></a>TQImageIO::read ()
</h3> </h3>
@ -301,7 +301,7 @@ block-oriented <a href="ntqiodevice.html">TQIODevice</a>.
settings. settings.
<p> <p>See also <a href="#setFileName">setFileName</a>(). <p> <p>See also <a href="#setFileName">setFileName</a>().
<h3 class=fn>void <a name="setImage"></a>TQImageIO::setImage ( const&nbsp;<a href="ntqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image ) <h3 class=fn>void <a name="setImage"></a>TQImageIO::setImage ( const&nbsp;<a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;image )
</h3> </h3>
Sets the image to <em>image</em>. Sets the image to <em>image</em>.
<p> <p>See also <a href="#image">image</a>(). <p> <p>See also <a href="#image">image</a>().
@ -322,7 +322,7 @@ compression ratio.
<p> <em>q</em> must be in the range -1..100. Specify 0 to obtain small <p> <em>q</em> must be in the range -1..100. Specify 0 to obtain small
compressed files, 100 for large uncompressed files. (-1 signifies compressed files, 100 for large uncompressed files. (-1 signifies
the default compression.) the default compression.)
<p> <p>See also <a href="#quality">quality</a>() and <a href="ntqimage.html#save">TQImage::save</a>(). <p> <p>See also <a href="#quality">quality</a>() and <a href="tqimage.html#save">TQImage::save</a>().
<h3 class=fn>void <a name="setStatus"></a>TQImageIO::setStatus ( int&nbsp;status ) <h3 class=fn>void <a name="setStatus"></a>TQImageIO::setStatus ( int&nbsp;status )
</h3> </h3>
@ -348,7 +348,7 @@ will be used.
<p> Example: <p> Example:
<pre> <pre>
TQImageIO iio; TQImageIO iio;
<a href="ntqimage.html">TQImage</a> im; <a href="tqimage.html">TQImage</a> im;
im = pixmap; // convert to image im = pixmap; // convert to image
iio.<a href="#setImage">setImage</a>( im ); iio.<a href="#setImage">setImage</a>( im );
iio.<a href="#setFileName">setFileName</a>( "vegeburger.bmp" ); iio.<a href="#setFileName">setFileName</a>( "vegeburger.bmp" );

@ -923,7 +923,7 @@ This event handler is called when a drag is in progress and the
mouse enters this widget. mouse enters this widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="qimagedrag.html">TQImageDrag</a>, and <a href="qdragenterevent.html">TQDragEnterEvent</a>. <p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdragenterevent.html">TQDragEnterEvent</a>.
<p>Example: <a href="simple_dd-example.html#x2829">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2829">iconview/simple_dd/main.cpp</a>.
<h3 class=fn>void <a name="dragLeaveEvent"></a>TQWidget::dragLeaveEvent ( <a href="qdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dragLeaveEvent"></a>TQWidget::dragLeaveEvent ( <a href="qdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
@ -932,7 +932,7 @@ This event handler is called when a drag is in progress and the
mouse leaves this widget. mouse leaves this widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="qimagedrag.html">TQImageDrag</a>, and <a href="qdragleaveevent.html">TQDragLeaveEvent</a>. <p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdragleaveevent.html">TQDragLeaveEvent</a>.
<h3 class=fn>void <a name="dragMoveEvent"></a>TQWidget::dragMoveEvent ( <a href="qdragmoveevent.html">TQDragMoveEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dragMoveEvent"></a>TQWidget::dragMoveEvent ( <a href="qdragmoveevent.html">TQDragMoveEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
@ -940,7 +940,7 @@ This event handler is called when a drag is in progress and the
mouse enters this widget, and whenever it moves within the widget. mouse enters this widget, and whenever it moves within the widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="qimagedrag.html">TQImageDrag</a>, and <a href="qdragmoveevent.html">TQDragMoveEvent</a>. <p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdragmoveevent.html">TQDragMoveEvent</a>.
<h3 class=fn>void <a name="drawText"></a>TQWidget::drawText ( int&nbsp;x, int&nbsp;y, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;str ) <h3 class=fn>void <a name="drawText"></a>TQWidget::drawText ( int&nbsp;x, int&nbsp;y, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;str )
</h3> </h3>
@ -962,7 +962,7 @@ This event handler is called when the drag is dropped on this
widget. widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="qimagedrag.html">TQImageDrag</a>, and <a href="qdropevent.html">TQDropEvent</a>. <p> <p>See also <a href="qtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdropevent.html">TQDropEvent</a>.
<p>Example: <a href="simple_dd-example.html#x2830">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2830">iconview/simple_dd/main.cpp</a>.
<h3 class=fn>void <a name="enabledChange"></a>TQWidget::enabledChange ( bool&nbsp;oldEnabled )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="enabledChange"></a>TQWidget::enabledChange ( bool&nbsp;oldEnabled )<tt> [virtual protected]</tt>

@ -72,7 +72,7 @@ body { background: #ffffff; color: black; }
#ifndef QT_H #ifndef QT_H
#include &lt;ntqstring.h&gt; #include &lt;ntqstring.h&gt;
#include &lt;tqptrlist.h&gt; #include &lt;tqptrlist.h&gt;
#include &lt;ntqimage.h&gt; #include &lt;tqimage.h&gt;
#include &lt;ntqpixmap.h&gt; #include &lt;ntqpixmap.h&gt;
#include &lt;tqvaluelist.h&gt; #include &lt;tqvaluelist.h&gt;
#include &lt;tqmap.h&gt; #include &lt;tqmap.h&gt;

@ -11,7 +11,7 @@ Abstract base for custom TQSqlDriver plugins. | TQSqlDriverPlugin
Abstract base for custom QStyle plugins. | QStylePlugin Abstract base for custom QStyle plugins. | QStylePlugin
Abstract base for custom QTextCodec plugins. | QTextCodecPlugin Abstract base for custom QTextCodec plugins. | QTextCodecPlugin
Abstract base for custom TQWidget plugins. | TQWidgetPlugin Abstract base for custom TQWidget plugins. | TQWidgetPlugin
Abstract base for custom image format plugins. | QImageFormatPlugin Abstract base for custom image format plugins. | TQImageFormatPlugin
Abstract base for fixed-size grids. | QGridView Abstract base for fixed-size grids. | QGridView
Abstract class that provides an API to initalize and access a COM object. | QAxBase Abstract class that provides an API to initalize and access a COM object. | QAxBase
Abstract graphic object on a TQCanvas. | TQCanvasItem Abstract graphic object on a TQCanvas. | TQCanvasItem
@ -22,7 +22,7 @@ Abstraction for date and edit editors. | QDateTimeEditBase
Abstraction of Unicode text and the classic C '&#92;0'-terminated char array. | TQString Abstraction of Unicode text and the classic C '&#92;0'-terminated char array. | TQString
Abstraction of objects which provide formatted data of a certain MIME type. | QMimeSource Abstraction of objects which provide formatted data of a certain MIME type. | QMimeSource
Abstraction of the classic C zero-terminated char array (char *). | QCString Abstraction of the classic C zero-terminated char array (char *). | QCString
Abstraction used by QImageDecoder. | QImageConsumer Abstraction used by TQImageDecoder. | TQImageConsumer
Access serialization between threads. | QMutex Access serialization between threads. | QMutex
Access to a selected area in a QTable. | QTableSelection Access to a selected area in a QTable. | QTableSelection
Access to directory structures and their contents in a platform-independent way. | QDir Access to directory structures and their contents in a platform-independent way. | QDir
@ -117,7 +117,7 @@ Does low-level painting e.g. on widgets. | QPainter
Doubly-linked list of char*. | QStrList Doubly-linked list of char*. | QStrList
Doubly-linked list of char* with case-insensitive comparison. | QStrIList Doubly-linked list of char* with case-insensitive comparison. | QStrIList
Drag and drop object for transferring colors. | QColorDrag Drag and drop object for transferring colors. | QColorDrag
Drag and drop object for transferring images. | QImageDrag Drag and drop object for transferring images. | TQImageDrag
Drag and drop object for transferring plain and Unicode text. | QTextDrag Drag and drop object for transferring plain and Unicode text. | QTextDrag
Drag object for a list of URI references. | QUriDrag Drag object for a list of URI references. | QUriDrag
Ellipse or ellipse segment on a TQCanvas. | TQCanvasEllipse Ellipse or ellipse segment on a TQCanvas. | TQCanvasEllipse
@ -143,7 +143,7 @@ Event which is sent when a drag and drop is completed. | QDropEvent
Event which is sent when a widget is shown. | QShowEvent Event which is sent when a widget is shown. | QShowEvent
Event which is sent while a drag and drop is in progress. | QDragMoveEvent Event which is sent while a drag and drop is in progress. | QDragMoveEvent
Extensible provider of mime-typed data. | QMimeSourceFactory Extensible provider of mime-typed data. | QMimeSourceFactory
Factory that makes QImageFormat objects. | QImageFormatType Factory that makes TQImageFormat objects. | TQImageFormatType
Feedback on the progress of a slow operation. | QProgressDialog Feedback on the progress of a slow operation. | QProgressDialog
File previewing in QFileDialog. | QFilePreview File previewing in QFileDialog. | QFilePreview
Flexible SQL table widget that supports browsing and editing. | TQDataTable Flexible SQL table widget that supports browsing and editing. | TQDataTable
@ -182,8 +182,8 @@ Implements an Appearance Manager style. | QMacStyle
Implements font management in Qt/Embedded. | QFontManager Implements font management in Qt/Embedded. | QFontManager
Implements parts of the QAccessibleInterface for TQObjects. | QAccessibleObject Implements parts of the QAccessibleInterface for TQObjects. | QAccessibleObject
Implements the keyboard driver for Qt/Embedded. | QWSKeyboardHandler Implements the keyboard driver for Qt/Embedded. | QWSKeyboardHandler
Incremental image decoder for a specific image format. | QImageFormat Incremental image decoder for a specific image format. | TQImageFormat
Incremental image decoder for all supported image formats. | QImageDecoder Incremental image decoder for all supported image formats. | TQImageDecoder
Incremental loading of animations or images, signalling as it progresses. | QMovie Incremental loading of animations or images, signalling as it progresses. | QMovie
Information about a paint device. | QPaintDeviceMetrics Information about a paint device. | QPaintDeviceMetrics
Information about the features of the DOM implementation. | TQDomImplementation Information about the features of the DOM implementation. | TQDomImplementation
@ -266,7 +266,7 @@ Organizes widgets in a group with one horizontal row. | QHGroupBox
Paint device that paints on a printer. | QPrinter Paint device that paints on a printer. | QPrinter
Paint device that records and replays QPainter commands. | QPicture Paint device that records and replays QPainter commands. | QPicture
Parameters for input method events. | QIMEvent Parameters for input method events. | QIMEvent
Parameters for loading and saving images. | QImageIO Parameters for loading and saving images. | TQImageIO
Parameters that describe a Tablet event. | QTabletEvent Parameters that describe a Tablet event. | QTabletEvent
Parameters that describe a close event. | QCloseEvent Parameters that describe a close event. | QCloseEvent
Parameters that describe a context menu event. | QContextMenuEvent Parameters that describe a context menu event. | QContextMenuEvent

@ -461,7 +461,7 @@ void <a name="f394"></a>ShowXForm::showIt()
int xpos = <a href="tqwidget.html#width">width</a>()/2 - pw/2; int xpos = <a href="tqwidget.html#width">width</a>()/2 - pw/2;
int ypos = <a href="tqwidget.html#height">height</a>()/2 - ph/2; int ypos = <a href="tqwidget.html#height">height</a>()/2 - ph/2;
<a href="ntqimage.html#bitBlt">bitBlt</a>( this, xpos, ypos, // copy pixmap to widget <a href="tqimage.html#bitBlt">bitBlt</a>( this, xpos, ypos, // copy pixmap to widget
&amp;pm, 0, 0, -1, -1 ); &amp;pm, 0, 0, -1, -1 );
<a name="x1278"></a> eraseRect = mtx.<a href="ntqwmatrix.html#map">map</a>( r ); <a name="x1278"></a> eraseRect = mtx.<a href="ntqwmatrix.html#map">map</a>( r );
} }

@ -44,7 +44,7 @@ If you want to show a single pixmap on a TQCanvas use a TQCanvasSprite with just
.PP .PP
When pixmaps are inserted into a TQCanvasPixmapArray they are held as TQCanvasPixmaps. TQCanvasSprites are used to show pixmaps on TQCanvases and hold their pixmaps in a TQCanvasPixmapArray. If you retrieve a frame (pixmap) from a TQCanvasSprite it will be returned as a TQCanvasPixmap. When pixmaps are inserted into a TQCanvasPixmapArray they are held as TQCanvasPixmaps. TQCanvasSprites are used to show pixmaps on TQCanvases and hold their pixmaps in a TQCanvasPixmapArray. If you retrieve a frame (pixmap) from a TQCanvasSprite it will be returned as a TQCanvasPixmap.
.PP .PP
The pixmap is a QPixmap and can only be set in the constructor. There are three different constructors, one taking a QPixmap, one a TQImage and one a file name that refers to a file in any supported file format (see QImageIO). The pixmap is a QPixmap and can only be set in the constructor. There are three different constructors, one taking a QPixmap, one a TQImage and one a file name that refers to a file in any supported file format (see TQImageIO).
.PP .PP
TQCanvasPixmap can have a hotspot which is defined in terms of an (x, y) offset. When you create a TQCanvasPixmap from a PNG file or from a TQImage that has a TQImage::offset(), the offset() is initialized appropriately, otherwise the constructor leaves it at (0, 0). You can set it later using setOffset(). When the TQCanvasPixmap is used in a TQCanvasSprite, the offset position is the point at TQCanvasItem::x() and TQCanvasItem::y(), not the top-left corner of the pixmap. TQCanvasPixmap can have a hotspot which is defined in terms of an (x, y) offset. When you create a TQCanvasPixmap from a PNG file or from a TQImage that has a TQImage::offset(), the offset() is initialized appropriately, otherwise the constructor leaves it at (0, 0). You can set it later using setOffset(). When the TQCanvasPixmap is used in a TQCanvasSprite, the offset position is the point at TQCanvasItem::x() and TQCanvasItem::y(), not the top-left corner of the pixmap.
.PP .PP

@ -136,7 +136,7 @@ Example:
.br .br
.fi .fi
.PP .PP
QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and QImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any QMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap(). QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and TQImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any QMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap().
.PP .PP
You can clear the clipboard by calling clear(). You can clear the clipboard by calling clear().
.SH "Platform Specific Information" .SH "Platform Specific Information"
@ -257,7 +257,7 @@ This is shorthand for:
.PP .PP
.nf .nf
.br .br
setData( new QImageDrag(image), mode ) setData( new TQImageDrag(image), mode )
.br .br
.fi .fi
.PP .PP

@ -13,7 +13,7 @@ QDragObject \- Encapsulates MIME-based data transfer
.PP .PP
Inherits TQObject and QMimeSource. Inherits TQObject and QMimeSource.
.PP .PP
Inherited by QStoredDrag, QTextDrag, QImageDrag, and QIconDrag. Inherited by QStoredDrag, QTextDrag, TQImageDrag, and QIconDrag.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -429,7 +429,7 @@ The simple approach to dragging items out of the icon view is to subclass QIconV
.br .br
.fi .fi
.PP .PP
In this example we create a QTextDrag object, (derived from QDragObject), containing the item's label and return it as the drag object. We could just as easily have created a QImageDrag from the item's pixmap and returned that instead. In this example we create a QTextDrag object, (derived from QDragObject), containing the item's label and return it as the drag object. We could just as easily have created a TQImageDrag from the item's pixmap and returned that instead.
.PP .PP
QIconViews and their QIconViewItems can also be the targets of drag and drops. To make the QIconView itself able to accept drops connect to the dropped() signal. When a drop occurs this signal will be emitted with a QDragEvent and a TQValueList of QIconDragItems. To make a QIconViewItem into a drop target subclass QIconViewItem and reimplement QIconViewItem::acceptDrop() and QIconViewItem::dropped(). QIconViews and their QIconViewItems can also be the targets of drag and drops. To make the QIconView itself able to accept drops connect to the dropped() signal. When a drop occurs this signal will be emitted with a QDragEvent and a TQValueList of QIconDragItems. To make a QIconViewItem into a drop target subclass QIconViewItem and reimplement QIconViewItem::acceptDrop() and QIconViewItem::dropped().
.PP .PP

@ -9,7 +9,7 @@
.SH NAME .SH NAME
TQImage \- Hardware-independent pixmap representation with direct access to the pixel data TQImage \- Hardware-independent pixmap representation with direct access to the pixel data
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqimage.h>\fR \fC#include <tqimage.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
@ -17,31 +17,31 @@ TQImage \- Hardware-independent pixmap representation with direct access to the
.BI "enum \fBEndian\fR { IgnoreEndian, BigEndian, LittleEndian }" .BI "enum \fBEndian\fR { IgnoreEndian, BigEndian, LittleEndian }"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ()" .BI "\fBTQImage\fR ()"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( int w, int h, int depth, int numColors = 0, Endian bitOrder = IgnoreEndian )" .BI "\fBTQImage\fR ( int w, int h, int depth, int numColors = 0, Endian bitOrder = IgnoreEndian )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( const QSize & size, int depth, int numColors = 0, Endian bitOrder = IgnoreEndian )" .BI "\fBTQImage\fR ( const QSize & size, int depth, int numColors = 0, Endian bitOrder = IgnoreEndian )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( const TQString & fileName, const char * format = 0 )" .BI "\fBTQImage\fR ( const TQString & fileName, const char * format = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( const char * const xpm[] )" .BI "\fBTQImage\fR ( const char * const xpm[] )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( const QByteArray & array )" .BI "\fBTQImage\fR ( const QByteArray & array )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( uchar * yourdata, int w, int h, int depth, TQRgb * colortable, int numColors, Endian bitOrder )" .BI "\fBTQImage\fR ( uchar * yourdata, int w, int h, int depth, TQRgb * colortable, int numColors, Endian bitOrder )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( uchar * yourdata, int w, int h, int depth, int bpl, TQRgb * colortable, int numColors, Endian bitOrder )" .BI "\fBTQImage\fR ( uchar * yourdata, int w, int h, int depth, int bpl, TQRgb * colortable, int numColors, Endian bitOrder )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImage\fR ( const TQImage & image )" .BI "\fBTQImage\fR ( const TQImage & image )"
.br .br
.ti -1c .ti -1c
.BI "\fB~TQImage\fR ()" .BI "\fB~TQImage\fR ()"
@ -245,7 +245,7 @@ TQImage \- Hardware-independent pixmap representation with direct access to the
.BI "void \fBsetOffset\fR ( const QPoint & p )" .BI "void \fBsetOffset\fR ( const QPoint & p )"
.br .br
.ti -1c .ti -1c
.BI "TQValueList<QImageTextKeyLang> \fBtextList\fR () const" .BI "TQValueList<TQImageTextKeyLang> \fBtextList\fR () const"
.br .br
.ti -1c .ti -1c
.BI "QStringList \fBtextLanguages\fR () const" .BI "QStringList \fBtextLanguages\fR () const"
@ -257,7 +257,7 @@ TQImage \- Hardware-independent pixmap representation with direct access to the
.BI "TQString \fBtext\fR ( const char * key, const char * lang = 0 ) const" .BI "TQString \fBtext\fR ( const char * key, const char * lang = 0 ) const"
.br .br
.ti -1c .ti -1c
.BI "TQString \fBtext\fR ( const QImageTextKeyLang & kl ) const" .BI "TQString \fBtext\fR ( const TQImageTextKeyLang & kl ) const"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetText\fR ( const char * key, const char * lang, const TQString & s )" .BI "void \fBsetText\fR ( const char * key, const char * lang, const TQString & s )"
@ -379,16 +379,16 @@ The TQImage class uses explicit sharing, similar to that used by QMemArray.
.PP .PP
New image formats can be added as plugins. New image formats can be added as plugins.
.PP .PP
See also QImageIO, QPixmap, Shared Classes, Graphics Classes, Image Processing Classes, and Implicitly and Explicitly Shared Classes. See also TQImageIO, QPixmap, Shared Classes, Graphics Classes, Image Processing Classes, and Implicitly and Explicitly Shared Classes.
.SS "Member Type Documentation" .SS "Member Type Documentation"
.SH "TQImage::Endian" .SH "TQImage::Endian"
This enum type is used to describe the endianness of the CPU and graphics hardware. This enum type is used to describe the endianness of the CPU and graphics hardware.
.TP .TP
\fCQImage::IgnoreEndian\fR - Endianness does not matter. Useful for some operations that are independent of endianness. \fCTQImage::IgnoreEndian\fR - Endianness does not matter. Useful for some operations that are independent of endianness.
.TP .TP
\fCQImage::BigEndian\fR - Network byte order, as on SPARC and Motorola CPUs. \fCTQImage::BigEndian\fR - Network byte order, as on SPARC and Motorola CPUs.
.TP .TP
\fCQImage::LittleEndian\fR - PC/Alpha byte order. \fCTQImage::LittleEndian\fR - PC/Alpha byte order.
.SH "TQImage::ScaleMode" .SH "TQImage::ScaleMode"
The functions scale() and smoothScale() use different modes for scaling the image. The purpose of these modes is to retain the ratio of the image if this is required. The functions scale() and smoothScale() use different modes for scaling the image. The purpose of these modes is to retain the ratio of the image if this is required.
.PP .PP
@ -398,11 +398,11 @@ The functions scale() and smoothScale() use different modes for scaling the imag
.PP .PP
</center> </center>
.TP .TP
\fCQImage::ScaleFree\fR - The image is scaled freely: the resulting image fits exactly into the specified size; the ratio will not necessarily be preserved. \fCTQImage::ScaleFree\fR - The image is scaled freely: the resulting image fits exactly into the specified size; the ratio will not necessarily be preserved.
.TP .TP
\fCQImage::ScaleMin\fR - The ratio of the image is preserved and the resulting image is guaranteed to fit into the specified size (it is as large as possible within these constraints) - the image might be smaller than the requested size. \fCTQImage::ScaleMin\fR - The ratio of the image is preserved and the resulting image is guaranteed to fit into the specified size (it is as large as possible within these constraints) - the image might be smaller than the requested size.
.TP .TP
\fCQImage::ScaleMax\fR - The ratio of the image is preserved and the resulting image fills the whole specified rectangle (it is as small as possible within these constraints) - the image might be larger than the requested size. \fCTQImage::ScaleMax\fR - The ratio of the image is preserved and the resulting image fills the whole specified rectangle (it is as small as possible within these constraints) - the image might be larger than the requested size.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "TQImage::TQImage ()" .SH "TQImage::TQImage ()"
Constructs a null image. Constructs a null image.
@ -427,9 +427,9 @@ If \fIformat\fR is specified, the loader attempts to read the image using the sp
.PP .PP
If the loading of the image failed, this object is a null image. If the loading of the image failed, this object is a null image.
.PP .PP
The QImageIO documentation lists the supported image formats and explains how to add extra formats. The TQImageIO documentation lists the supported image formats and explains how to add extra formats.
.PP .PP
See also load(), isNull(), and QImageIO. See also load(), isNull(), and TQImageIO.
.SH "TQImage::TQImage ( const char * const xpm[] )" .SH "TQImage::TQImage ( const char * const xpm[] )"
Constructs an image from \fIxpm\fR, which must be a valid XPM image. Constructs an image from \fIxpm\fR, which must be a valid XPM image.
.PP .PP
@ -629,7 +629,7 @@ See also invertPixels(), depth(), hasAlphaBuffer(), and create().
.SH "TQImage TQImage::fromMimeSource ( const TQString & abs_name )\fC [static]\fR" .SH "TQImage TQImage::fromMimeSource ( const TQString & abs_name )\fC [static]\fR"
Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to an image. Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to an image.
.PP .PP
See also QMimeSourceFactory, TQImage::fromMimeSource(), and QImageDrag::decode(). See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
.SH "bool TQImage::hasAlphaBuffer () const" .SH "bool TQImage::hasAlphaBuffer () const"
Returns TRUE if alpha buffer mode is enabled; otherwise returns FALSE. Returns TRUE if alpha buffer mode is enabled; otherwise returns FALSE.
.PP .PP
@ -644,7 +644,7 @@ Examples:
.SH "const char * TQImage::imageFormat ( const TQString & fileName )\fC [static]\fR" .SH "const char * TQImage::imageFormat ( const TQString & fileName )\fC [static]\fR"
Returns a string that specifies the image format of the file \fIfileName\fR, or 0 if the file cannot be read or if the format is not recognized. Returns a string that specifies the image format of the file \fIfileName\fR, or 0 if the file cannot be read or if the format is not recognized.
.PP .PP
The QImageIO documentation lists the guaranteed supported image formats, or use TQImage::inputFormats() and TQImage::outputFormats() to get lists that include the installed formats. The TQImageIO documentation lists the guaranteed supported image formats, or use TQImage::inputFormats() and TQImage::outputFormats() to get lists that include the installed formats.
.PP .PP
See also load() and save(). See also load() and save().
.SH "QStringList TQImage::inputFormatList ()\fC [static]\fR" .SH "QStringList TQImage::inputFormatList ()\fC [static]\fR"
@ -668,13 +668,13 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.br .br
.fi .fi
.PP .PP
See also outputFormatList(), inputFormats(), and QImageIO. See also outputFormatList(), inputFormats(), and TQImageIO.
.PP .PP
Example: showimg/showimg.cpp. Example: showimg/showimg.cpp.
.SH "QStrList TQImage::inputFormats ()\fC [static]\fR" .SH "QStrList TQImage::inputFormats ()\fC [static]\fR"
Returns a list of image formats that are supported for image input. Returns a list of image formats that are supported for image input.
.PP .PP
See also outputFormats(), inputFormatList(), and QImageIO. See also outputFormats(), inputFormatList(), and TQImageIO.
.SH "void TQImage::invertPixels ( bool invertAlpha = TRUE )" .SH "void TQImage::invertPixels ( bool invertAlpha = TRUE )"
Inverts all pixel values in the image. Inverts all pixel values in the image.
.PP .PP
@ -708,17 +708,17 @@ Loads an image from the file \fIfileName\fR. Returns TRUE if the image was succe
.PP .PP
If \fIformat\fR is specified, the loader attempts to read the image using the specified format. If \fIformat\fR is not specified (which is the default), the loader reads a few bytes from the header to guess the file format. If \fIformat\fR is specified, the loader attempts to read the image using the specified format. If \fIformat\fR is not specified (which is the default), the loader reads a few bytes from the header to guess the file format.
.PP .PP
The QImageIO documentation lists the supported image formats and explains how to add extra formats. The TQImageIO documentation lists the supported image formats and explains how to add extra formats.
.PP .PP
See also loadFromData(), save(), imageFormat(), QPixmap::load(), and QImageIO. See also loadFromData(), save(), imageFormat(), QPixmap::load(), and TQImageIO.
.SH "bool TQImage::loadFromData ( const uchar * buf, uint len, const char * format = 0 )" .SH "bool TQImage::loadFromData ( const uchar * buf, uint len, const char * format = 0 )"
Loads an image from the first \fIlen\fR bytes of binary data in \fIbuf\fR. Returns TRUE if the image was successfully loaded; otherwise returns FALSE. Loads an image from the first \fIlen\fR bytes of binary data in \fIbuf\fR. Returns TRUE if the image was successfully loaded; otherwise returns FALSE.
.PP .PP
If \fIformat\fR is specified, the loader attempts to read the image using the specified format. If \fIformat\fR is not specified (which is the default), the loader reads a few bytes from the header to guess the file format. If \fIformat\fR is specified, the loader attempts to read the image using the specified format. If \fIformat\fR is not specified (which is the default), the loader reads a few bytes from the header to guess the file format.
.PP .PP
The QImageIO documentation lists the supported image formats and explains how to add extra formats. The TQImageIO documentation lists the supported image formats and explains how to add extra formats.
.PP .PP
See also load(), save(), imageFormat(), QPixmap::loadFromData(), and QImageIO. See also load(), save(), imageFormat(), QPixmap::loadFromData(), and TQImageIO.
.SH "bool TQImage::loadFromData ( QByteArray buf, const char * format = 0 )" .SH "bool TQImage::loadFromData ( QByteArray buf, const char * format = 0 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
@ -786,11 +786,11 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.br .br
.fi .fi
.PP .PP
See also inputFormatList(), outputFormats(), and QImageIO. See also inputFormatList(), outputFormats(), and TQImageIO.
.SH "QStrList TQImage::outputFormats ()\fC [static]\fR" .SH "QStrList TQImage::outputFormats ()\fC [static]\fR"
Returns a list of image formats that are supported for image output. Returns a list of image formats that are supported for image output.
.PP .PP
See also inputFormats(), outputFormatList(), and QImageIO. See also inputFormats(), outputFormatList(), and TQImageIO.
.PP .PP
Example: showimg/showimg.cpp. Example: showimg/showimg.cpp.
.SH "TQRgb TQImage::pixel ( int x, int y ) const" .SH "TQRgb TQImage::pixel ( int x, int y ) const"
@ -819,7 +819,7 @@ Saves the image to the file \fIfileName\fR, using the image file format \fIforma
.PP .PP
Returns TRUE if the image was successfully saved; otherwise returns FALSE. Returns TRUE if the image was successfully saved; otherwise returns FALSE.
.PP .PP
See also load(), loadFromData(), imageFormat(), QPixmap::save(), and QImageIO. See also load(), loadFromData(), imageFormat(), QPixmap::save(), and TQImageIO.
.SH "bool TQImage::save ( TQIODevice * device, const char * format, int quality = -1 ) const" .SH "bool TQImage::save ( TQIODevice * device, const char * format, int quality = -1 ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
@ -959,7 +959,7 @@ Determines the host computer byte order. Returns TQImage::LittleEndian (LSB firs
See also systemBitOrder(). See also systemBitOrder().
.SH "TQString TQImage::text ( const char * key, const char * lang = 0 ) const" .SH "TQString TQImage::text ( const char * key, const char * lang = 0 ) const"
Returns the string recorded for the keyword \fIkey\fR in language \fIlang\fR, or in a default language if \fIlang\fR is 0. Returns the string recorded for the keyword \fIkey\fR in language \fIlang\fR, or in a default language if \fIlang\fR is 0.
.SH "TQString TQImage::text ( const QImageTextKeyLang & kl ) const" .SH "TQString TQImage::text ( const TQImageTextKeyLang & kl ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Returns the string recorded for the keyword and language \fIkl\fR. Returns the string recorded for the keyword and language \fIkl\fR.
@ -1007,16 +1007,16 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.fi .fi
.PP .PP
See also textList(), text(), setText(), and textKeys(). See also textList(), text(), setText(), and textKeys().
.SH "TQValueList<QImageTextKeyLang> TQImage::textList () const" .SH "TQValueList<TQImageTextKeyLang> TQImage::textList () const"
Returns a list of QImageTextKeyLang objects that enumerate all the texts key/language pairs set by setText() for this image. Returns a list of TQImageTextKeyLang objects that enumerate all the texts key/language pairs set by setText() for this image.
.PP .PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g. Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP .PP
.nf .nf
.br .br
TQValueList<QImageTextKeyLang> list = myImage.textList(); TQValueList<TQImageTextKeyLang> list = myImage.textList();
.br .br
TQValueList<QImageTextKeyLang>::Iterator it = list.begin(); TQValueList<TQImageTextKeyLang>::Iterator it = list.begin();
.br .br
while( it != list.end() ) { while( it != list.end() ) {
.br .br
@ -1070,7 +1070,7 @@ Reads an image from the stream \fIs\fR and stores it in \fIimage\fR.
See also TQImage::load() and Format of the QDataStream operators. See also TQImage::load() and Format of the QDataStream operators.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqimage.html .BR http://doc.trolltech.com/tqimage.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 QImageConsumer 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageConsumer 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,7 +7,7 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageConsumer \- Abstraction used by QImageDecoder TQImageConsumer \- Abstraction used by TQImageDecoder
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqasyncimageio.h>\fR \fC#include <ntqasyncimageio.h>\fR
.PP .PP
@ -36,37 +36,37 @@ QImageConsumer \- Abstraction used by QImageDecoder
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageConsumer class is an abstraction used by QImageDecoder. The TQImageConsumer class is an abstraction used by TQImageDecoder.
.PP .PP
The QMovie class, or QLabel::setMovie(), are easy to use and for most situations do what you want with regards animated images. The QMovie class, or QLabel::setMovie(), are easy to use and for most situations do what you want with regards animated images.
.PP .PP
A QImageConsumer consumes information about changes to the TQImage maintained by a QImageDecoder. Think of the TQImage as the model or source of the image data, with the QImageConsumer as a view of that data and the QImageDecoder being the controller that orchestrates the relationship between the model and the view. A TQImageConsumer consumes information about changes to the TQImage maintained by a TQImageDecoder. Think of the TQImage as the model or source of the image data, with the TQImageConsumer as a view of that data and the TQImageDecoder being the controller that orchestrates the relationship between the model and the view.
.PP .PP
You'd use the QImageConsumer class, for example, if you were implementing a web browser with your own image loaders. You'd use the TQImageConsumer class, for example, if you were implementing a web browser with your own image loaders.
.PP .PP
See also QImageDecoder, Graphics Classes, Image Processing Classes, and Multimedia Classes. See also TQImageDecoder, Graphics Classes, Image Processing Classes, and Multimedia Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "void QImageConsumer::changed ( const QRect & )\fC [pure virtual]\fR" .SH "void TQImageConsumer::changed ( const QRect & )\fC [pure virtual]\fR"
Called when the given area of the image has changed. Called when the given area of the image has changed.
.SH "void QImageConsumer::end ()\fC [pure virtual]\fR" .SH "void TQImageConsumer::end ()\fC [pure virtual]\fR"
Called when all the data from all the frames has been decoded and revealed as changed(). Called when all the data from all the frames has been decoded and revealed as changed().
.SH "void QImageConsumer::frameDone ()\fC [pure virtual]\fR" .SH "void TQImageConsumer::frameDone ()\fC [pure virtual]\fR"
One of the two frameDone() functions will be called when a frame of an animated image has ended and been revealed as changed(). One of the two frameDone() functions will be called when a frame of an animated image has ended and been revealed as changed().
.PP .PP
When this function is called, the current image should be displayed. When this function is called, the current image should be displayed.
.PP .PP
The decoder will not make any further changes to the image until the next call to QImageFormat::decode(). The decoder will not make any further changes to the image until the next call to TQImageFormat::decode().
.SH "void QImageConsumer::frameDone ( const QPoint & offset, const QRect & rect )\fC [pure virtual]\fR" .SH "void TQImageConsumer::frameDone ( const QPoint & offset, const QRect & rect )\fC [pure virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
One of the two frameDone() functions will be called when a frame of an animated image has ended and been revealed as changed(). One of the two frameDone() functions will be called when a frame of an animated image has ended and been revealed as changed().
.PP .PP
When this function is called, the area \fIrect\fR in the current image should be moved by \fIoffset\fR and displayed. When this function is called, the area \fIrect\fR in the current image should be moved by \fIoffset\fR and displayed.
.PP .PP
The decoder will not make any further changes to the image until the next call to QImageFormat::decode(). The decoder will not make any further changes to the image until the next call to TQImageFormat::decode().
.SH "void QImageConsumer::setFramePeriod ( int milliseconds )\fC [pure virtual]\fR" .SH "void TQImageConsumer::setFramePeriod ( int milliseconds )\fC [pure virtual]\fR"
Notes that the frame about to be decoded should not be displayed until the given number of \fImilliseconds\fR after the time that this function is called. Of course, the image may not have been decoded by then, in which case the frame should not be displayed until it is complete. A value of -1 (the assumed default) indicates that the image should be displayed even while it is only partially loaded. Notes that the frame about to be decoded should not be displayed until the given number of \fImilliseconds\fR after the time that this function is called. Of course, the image may not have been decoded by then, in which case the frame should not be displayed until it is complete. A value of -1 (the assumed default) indicates that the image should be displayed even while it is only partially loaded.
.SH "void QImageConsumer::setLooping ( int n )\fC [pure virtual]\fR" .SH "void TQImageConsumer::setLooping ( int n )\fC [pure virtual]\fR"
Called to indicate that the sequence of frames in the image should be repeated \fIn\fR times, including the sequence during decoding. Called to indicate that the sequence of frames in the image should be repeated \fIn\fR times, including the sequence during decoding.
.TP .TP
0 = Forever 0 = Forever
@ -77,13 +77,13 @@ Called to indicate that the sequence of frames in the image should be repeated \
.TP .TP
etc. etc.
.PP .PP
To make the QImageDecoder do this, just delete it and pass the information to it again for decoding (setLooping() will be called again, of course, but that can be ignored), or keep copies of the changed areas at the ends of frames. To make the TQImageDecoder do this, just delete it and pass the information to it again for decoding (setLooping() will be called again, of course, but that can be ignored), or keep copies of the changed areas at the ends of frames.
.SH "void QImageConsumer::setSize ( int, int )\fC [pure virtual]\fR" .SH "void TQImageConsumer::setSize ( int, int )\fC [pure virtual]\fR"
This function is called as soon as the size of the image has been This function is called as soon as the size of the image has been
determined. determined.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qimageconsumer.html .BR http://doc.trolltech.com/tqimageconsumer.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 QImageDecoder 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageDecoder 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,17 +7,17 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageDecoder \- Incremental image decoder for all supported image formats TQImageDecoder \- Incremental image decoder for all supported image formats
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqasyncimageio.h>\fR \fC#include <ntqasyncimageio.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQImageDecoder\fR ( QImageConsumer * c )" .BI "\fBTQImageDecoder\fR ( TQImageConsumer * c )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QImageDecoder\fR ()" .BI "\fB~TQImageDecoder\fR ()"
.br .br
.ti -1c .ti -1c
.BI "const TQImage & \fBimage\fR ()" .BI "const TQImage & \fBimage\fR ()"
@ -32,26 +32,26 @@ QImageDecoder \- Incremental image decoder for all supported image formats
.BI "const char * \fBformatName\fR ( const uchar * buffer, int length )" .BI "const char * \fBformatName\fR ( const uchar * buffer, int length )"
.br .br
.ti -1c .ti -1c
.BI "QImageFormatType * \fBformat\fR ( const char * name )" .BI "TQImageFormatType * \fBformat\fR ( const char * name )"
.br .br
.ti -1c .ti -1c
.BI "QStrList \fBinputFormats\fR ()" .BI "QStrList \fBinputFormats\fR ()"
.br .br
.ti -1c .ti -1c
.BI "void \fBregisterDecoderFactory\fR ( QImageFormatType * f )" .BI "void \fBregisterDecoderFactory\fR ( TQImageFormatType * f )"
.br .br
.ti -1c .ti -1c
.BI "void \fBunregisterDecoderFactory\fR ( QImageFormatType * f )" .BI "void \fBunregisterDecoderFactory\fR ( TQImageFormatType * f )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageDecoder class is an incremental image decoder for all supported image formats. The TQImageDecoder class is an incremental image decoder for all supported image formats.
.PP .PP
New formats are installed by creating objects of class QImageFormatType; the QMovie class can be used for all installed incremental image formats. QImageDecoder is only useful for creating new ways of feeding data to an QImageConsumer. New formats are installed by creating objects of class TQImageFormatType; the QMovie class can be used for all installed incremental image formats. TQImageDecoder is only useful for creating new ways of feeding data to an TQImageConsumer.
.PP .PP
A QImageDecoder is a machine that decodes images. It takes encoded image data via its decode() method and expresses its decoding by supplying information to a QImageConsumer. It implements its decoding by using a QImageFormat created by one of the currently-existing QImageFormatType factory objects. A TQImageDecoder is a machine that decodes images. It takes encoded image data via its decode() method and expresses its decoding by supplying information to a TQImageConsumer. It implements its decoding by using a TQImageFormat created by one of the currently-existing TQImageFormatType factory objects.
.PP .PP
QImageFormatType and QImageFormat are the classes that you might need to implement support for additional image formats. TQImageFormatType and TQImageFormat are the classes that you might need to implement support for additional image formats.
.PP .PP
Qt supports GIF reading if it is configured that way during installation (see ntqgif.h). If it is, we are required to state that" The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated." Qt supports GIF reading if it is configured that way during installation (see ntqgif.h). If it is, we are required to state that" The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated."
.PP .PP
@ -61,32 +61,32 @@ GIF support may be removed completely in a future version of Qt. We recommend us
.PP .PP
See also Graphics Classes, Image Processing Classes, and Multimedia Classes. See also Graphics Classes, Image Processing Classes, and Multimedia Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QImageDecoder::QImageDecoder ( QImageConsumer * c )" .SH "TQImageDecoder::TQImageDecoder ( TQImageConsumer * c )"
Constructs a QImageDecoder that will send change information to the QImageConsumer \fIc\fR. Constructs a TQImageDecoder that will send change information to the TQImageConsumer \fIc\fR.
.SH "QImageDecoder::~QImageDecoder ()" .SH "TQImageDecoder::~TQImageDecoder ()"
Destroys a QImageDecoder. The image it built is destroyed. The decoder built by the factory for the file format is destroyed. The consumer for which it decoded the image is \fInot\fR destroyed. Destroys a TQImageDecoder. The image it built is destroyed. The decoder built by the factory for the file format is destroyed. The consumer for which it decoded the image is \fInot\fR destroyed.
.SH "int QImageDecoder::decode ( const uchar * buffer, int length )" .SH "int TQImageDecoder::decode ( const uchar * buffer, int length )"
Call this function to decode some data into image changes. The data in \fIbuffer\fR will be decoded, sending change information to the QImageConsumer of this QImageDecoder until one of the change functions of the consumer returns FALSE. The length of the data is given in \fIlength\fR. Call this function to decode some data into image changes. The data in \fIbuffer\fR will be decoded, sending change information to the TQImageConsumer of this TQImageDecoder until one of the change functions of the consumer returns FALSE. The length of the data is given in \fIlength\fR.
.PP .PP
Returns the number of bytes consumed: 0 if consumption is complete, and -1 if decoding fails due to invalid data. Returns the number of bytes consumed: 0 if consumption is complete, and -1 if decoding fails due to invalid data.
.SH "QImageFormatType * QImageDecoder::format ( const char * name )\fC [static]\fR" .SH "TQImageFormatType * TQImageDecoder::format ( const char * name )\fC [static]\fR"
Returns a QImageFormatType by name. This might be used when the user needs to force data to be interpreted as being in a certain format. \fIname\fR is one of the formats listed by QImageDecoder::inputFormats(). Note that you will still need to supply decodable data to result->decoderFor() before you can begin decoding the data. Returns a TQImageFormatType by name. This might be used when the user needs to force data to be interpreted as being in a certain format. \fIname\fR is one of the formats listed by TQImageDecoder::inputFormats(). Note that you will still need to supply decodable data to result->decoderFor() before you can begin decoding the data.
.SH "const char * QImageDecoder::formatName ( const uchar * buffer, int length )\fC [static]\fR" .SH "const char * TQImageDecoder::formatName ( const uchar * buffer, int length )\fC [static]\fR"
Call this function to find the name of the format of the given header. The returned string is statically allocated. The function will look at the first \fIlength\fR characters in the \fIbuffer\fR. Call this function to find the name of the format of the given header. The returned string is statically allocated. The function will look at the first \fIlength\fR characters in the \fIbuffer\fR.
.PP .PP
Returns 0 if the format is not recognized. Returns 0 if the format is not recognized.
.SH "const TQImage & QImageDecoder::image ()" .SH "const TQImage & TQImageDecoder::image ()"
Returns the image currently being decoded. Returns the image currently being decoded.
.SH "QStrList QImageDecoder::inputFormats ()\fC [static]\fR" .SH "QStrList TQImageDecoder::inputFormats ()\fC [static]\fR"
Returns a sorted list of formats for which asynchronous loading is supported. Returns a sorted list of formats for which asynchronous loading is supported.
.SH "void QImageDecoder::registerDecoderFactory ( QImageFormatType * f )\fC [static]\fR" .SH "void TQImageDecoder::registerDecoderFactory ( TQImageFormatType * f )\fC [static]\fR"
Registers the new QImageFormatType \fIf\fR. This is not needed in application code because factories call this themselves. Registers the new TQImageFormatType \fIf\fR. This is not needed in application code because factories call this themselves.
.SH "void QImageDecoder::unregisterDecoderFactory ( QImageFormatType * f )\fC [static]\fR" .SH "void TQImageDecoder::unregisterDecoderFactory ( TQImageFormatType * f )\fC [static]\fR"
Unregisters the QImageFormatType \fIf\fR. This is not needed in Unregisters the TQImageFormatType \fIf\fR. This is not needed in
application code because factories call this themselves. application code because factories call this themselves.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qimagedecoder.html .BR http://doc.trolltech.com/tqimagedecoder.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 QImageDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageDrag 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,7 +7,7 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageDrag \- Drag and drop object for transferring images TQImageDrag \- Drag and drop object for transferring images
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <ntqdragobject.h>\fR
.PP .PP
@ -16,13 +16,13 @@ Inherits QDragObject.
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQImageDrag\fR ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )" .BI "\fBTQImageDrag\fR ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImageDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )" .BI "\fBTQImageDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QImageDrag\fR ()" .BI "\fB~TQImageDrag\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBsetImage\fR ( TQImage image )" .BI "virtual void \fBsetImage\fR ( TQImage image )"
@ -41,7 +41,7 @@ Inherits QDragObject.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageDrag class provides a drag and drop object for transferring images. The TQImageDrag class provides a drag and drop object for transferring images.
.PP .PP
Images are offered to the receiving application in multiple formats, determined by Qt's output formats. Images are offered to the receiving application in multiple formats, determined by Qt's output formats.
.PP .PP
@ -49,25 +49,25 @@ For more information about drag and drop, see the QDragObject class and the drag
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QImageDrag::QImageDrag ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )" .SH "TQImageDrag::TQImageDrag ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )"
Constructs an image drag object and sets its data to \fIimage\fR. \fIdragSource\fR must be the drag source; \fIname\fR is the object name. Constructs an image drag object and sets its data to \fIimage\fR. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "QImageDrag::QImageDrag ( TQWidget * dragSource = 0, const char * name = 0 )" .SH "TQImageDrag::TQImageDrag ( TQWidget * dragSource = 0, const char * name = 0 )"
Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name. Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "QImageDrag::~QImageDrag ()" .SH "TQImageDrag::~TQImageDrag ()"
Destroys the image drag object and frees up all allocated resources. Destroys the image drag object and frees up all allocated resources.
.SH "bool QImageDrag::canDecode ( const QMimeSource * e )\fC [static]\fR" .SH "bool TQImageDrag::canDecode ( const QMimeSource * e )\fC [static]\fR"
Returns TRUE if the information in mime source \fIe\fR can be decoded into an image; otherwise returns FALSE. Returns TRUE if the information in mime source \fIe\fR can be decoded into an image; otherwise returns FALSE.
.PP .PP
See also decode(). See also decode().
.PP .PP
Example: desktop/desktop.cpp. Example: desktop/desktop.cpp.
.SH "bool QImageDrag::decode ( const QMimeSource * e, TQImage & img )\fC [static]\fR" .SH "bool TQImageDrag::decode ( const QMimeSource * e, TQImage & img )\fC [static]\fR"
Attempts to decode the dropped information in mime source \fIe\fR into \fIimg\fR. Returns TRUE if successful; otherwise returns FALSE. Attempts to decode the dropped information in mime source \fIe\fR into \fIimg\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP .PP
See also canDecode(). See also canDecode().
.PP .PP
Example: desktop/desktop.cpp. Example: desktop/desktop.cpp.
.SH "bool QImageDrag::decode ( const QMimeSource * e, QPixmap & pm )\fC [static]\fR" .SH "bool TQImageDrag::decode ( const QMimeSource * e, QPixmap & pm )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE. Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE.
@ -75,12 +75,12 @@ Attempts to decode the dropped information in mime source \fIe\fR into pixmap \f
This is a convenience function that converts to a QPixmap via a TQImage. This is a convenience function that converts to a QPixmap via a TQImage.
.PP .PP
See also canDecode(). See also canDecode().
.SH "void QImageDrag::setImage ( TQImage image )\fC [virtual]\fR" .SH "void TQImageDrag::setImage ( TQImage image )\fC [virtual]\fR"
Sets the image to be dragged to \fIimage\fR. You will need to call Sets the image to be dragged to \fIimage\fR. You will need to call
this if you did not pass the image during construction. this if you did not pass the image during construction.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qimagedrag.html .BR http://doc.trolltech.com/tqimagedrag.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 QImageFormat 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageFormat 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,28 +7,28 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageFormat \- Incremental image decoder for a specific image format TQImageFormat \- Incremental image decoder for a specific image format
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqasyncimageio.h>\fR \fC#include <ntqasyncimageio.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "virtual int \fBdecode\fR ( TQImage & img, QImageConsumer * consumer, const uchar * buffer, int length ) = 0" .BI "virtual int \fBdecode\fR ( TQImage & img, TQImageConsumer * consumer, const uchar * buffer, int length ) = 0"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageFormat class is an incremental image decoder for a specific image format. The TQImageFormat class is an incremental image decoder for a specific image format.
.PP .PP
By making a derived class of QImageFormatType, which in turn creates objects that are a subclass of QImageFormat, you can add support for more incremental image formats, allowing such formats to be sources for a QMovie or for the first frame of the image stream to be loaded as a TQImage or QPixmap. By making a derived class of TQImageFormatType, which in turn creates objects that are a subclass of TQImageFormat, you can add support for more incremental image formats, allowing such formats to be sources for a QMovie or for the first frame of the image stream to be loaded as a TQImage or QPixmap.
.PP .PP
Your new subclass must reimplement the decode() function in order to process your new format. Your new subclass must reimplement the decode() function in order to process your new format.
.PP .PP
New QImageFormat objects are generated by new QImageFormatType factories. New TQImageFormat objects are generated by new TQImageFormatType factories.
.PP .PP
See also Graphics Classes, Image Processing Classes, and Multimedia Classes. See also Graphics Classes, Image Processing Classes, and Multimedia Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "int QImageFormat::decode ( TQImage & img, QImageConsumer * consumer, const uchar * buffer, int length )\fC [pure virtual]\fR" .SH "int TQImageFormat::decode ( TQImage & img, TQImageConsumer * consumer, const uchar * buffer, int length )\fC [pure virtual]\fR"
New subclasses must reimplement this method. New subclasses must reimplement this method.
.PP .PP
It should decode some or all of the bytes from \fIbuffer\fR into \fIimg\fR, calling the methods of \fIconsumer\fR as the decoding proceeds to inform that consumer of changes to the image. The length of the data is given in \fIlength\fR. The consumer may be 0, in which case the function should just process the data into \fIimg\fR without telling any consumer about the changes. Note that the decoder must store enough state to be able to continue in subsequent calls to this method - this is the essence of the incremental image loading. It should decode some or all of the bytes from \fIbuffer\fR into \fIimg\fR, calling the methods of \fIconsumer\fR as the decoding proceeds to inform that consumer of changes to the image. The length of the data is given in \fIlength\fR. The consumer may be 0, in which case the function should just process the data into \fIimg\fR without telling any consumer about the changes. Note that the decoder must store enough state to be able to continue in subsequent calls to this method - this is the essence of the incremental image loading.
@ -38,7 +38,7 @@ The function should return without processing all the data if it reaches the end
The function must return the number of bytes it has processed. The function must return the number of bytes it has processed.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qimageformat.html .BR http://doc.trolltech.com/tqimageformat.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 QImageFormatPlugin 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageFormatPlugin 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,17 +7,17 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageFormatPlugin \- Abstract base for custom image format plugins TQImageFormatPlugin \- Abstract base for custom image format plugins
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqimageformatplugin.h>\fR \fC#include <tqimageformatplugin.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQImageFormatPlugin\fR ()" .BI "\fBTQImageFormatPlugin\fR ()"
.br .br
.ti -1c .ti -1c
.BI "\fB~QImageFormatPlugin\fR ()" .BI "\fB~TQImageFormatPlugin\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual QStringList \fBkeys\fR () const = 0" .BI "virtual QStringList \fBkeys\fR () const = 0"
@ -27,7 +27,7 @@ QImageFormatPlugin \- Abstract base for custom image format plugins
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageFormatPlugin class provides an abstract base for custom image format plugins. The TQImageFormatPlugin class provides an abstract base for custom image format plugins.
.PP .PP
The image format plugin is a simple plugin interface that makes it easy to create custom image formats that can be used transparently by applications. The image format plugin is a simple plugin interface that makes it easy to create custom image formats that can be used transparently by applications.
.PP .PP
@ -35,23 +35,23 @@ Writing an image format plugin is achieved by subclassing this base class, reimp
.PP .PP
See also Plugins. See also Plugins.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QImageFormatPlugin::QImageFormatPlugin ()" .SH "TQImageFormatPlugin::TQImageFormatPlugin ()"
Constructs an image format plugin. This is invoked automatically by the TQ_EXPORT_PLUGIN macro. Constructs an image format plugin. This is invoked automatically by the TQ_EXPORT_PLUGIN macro.
.SH "QImageFormatPlugin::~QImageFormatPlugin ()" .SH "TQImageFormatPlugin::~TQImageFormatPlugin ()"
Destroys the image format plugin. Destroys the image format plugin.
.PP .PP
You never have to call this explicitly. TQt destroys a plugin automatically when it is no longer used. You never have to call this explicitly. TQt destroys a plugin automatically when it is no longer used.
.SH "bool QImageFormatPlugin::installIOHandler ( const TQString & format )\fC [pure virtual]\fR" .SH "bool TQImageFormatPlugin::installIOHandler ( const TQString & format )\fC [pure virtual]\fR"
Installs a QImageIO image I/O handler for the image format \fIformat\fR. Installs a TQImageIO image I/O handler for the image format \fIformat\fR.
.PP .PP
See also keys(). See also keys().
.SH "QStringList QImageFormatPlugin::keys () const\fC [pure virtual]\fR" .SH "QStringList TQImageFormatPlugin::keys () const\fC [pure virtual]\fR"
Returns the list of image formats this plugin supports. Returns the list of image formats this plugin supports.
.PP .PP
See also installIOHandler(). See also installIOHandler().
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqimageformatplugin.html .BR http://doc.trolltech.com/tqimageformatplugin.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 QImageFormatType 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageFormatType 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,17 +7,17 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageFormatType \- Factory that makes QImageFormat objects TQImageFormatType \- Factory that makes TQImageFormat objects
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqasyncimageio.h>\fR \fC#include <ntqasyncimageio.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "virtual \fB~QImageFormatType\fR ()" .BI "virtual \fB~TQImageFormatType\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual QImageFormat * \fBdecoderFor\fR ( const uchar * buffer, int length ) = 0" .BI "virtual TQImageFormat * \fBdecoderFor\fR ( const uchar * buffer, int length ) = 0"
.br .br
.ti -1c .ti -1c
.BI "virtual const char * \fBformatName\fR () const = 0" .BI "virtual const char * \fBformatName\fR () const = 0"
@ -26,34 +26,34 @@ QImageFormatType \- Factory that makes QImageFormat objects
.SS "Protected Members" .SS "Protected Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQImageFormatType\fR ()" .BI "\fBTQImageFormatType\fR ()"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageFormatType class is a factory that makes QImageFormat objects. The TQImageFormatType class is a factory that makes TQImageFormat objects.
.PP .PP
Whereas the QImageIO class allows for \fIcomplete\fR loading of images, QImageFormatType allows for \fIincremental\fR loading of images. Whereas the TQImageIO class allows for \fIcomplete\fR loading of images, TQImageFormatType allows for \fIincremental\fR loading of images.
.PP .PP
New image file formats are installed by creating objects of derived classes of QImageFormatType. They must implement decoderFor() and formatName(). New image file formats are installed by creating objects of derived classes of TQImageFormatType. They must implement decoderFor() and formatName().
.PP .PP
QImageFormatType is a very simple class. Its only task is to recognize image data in some format and make a new object, subclassed from QImageFormat, which can decode that format. TQImageFormatType is a very simple class. Its only task is to recognize image data in some format and make a new object, subclassed from TQImageFormat, which can decode that format.
.PP .PP
The factories for formats built into TQt are automatically defined before any other factory is initialized. If two factories would recognize an image format, the factory created last will override the earlier one; you can thus override current and future built-in formats. The factories for formats built into TQt are automatically defined before any other factory is initialized. If two factories would recognize an image format, the factory created last will override the earlier one; you can thus override current and future built-in formats.
.PP .PP
See also Graphics Classes, Image Processing Classes, and Multimedia Classes. See also Graphics Classes, Image Processing Classes, and Multimedia Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QImageFormatType::QImageFormatType ()\fC [protected]\fR" .SH "TQImageFormatType::TQImageFormatType ()\fC [protected]\fR"
Constructs a factory. It automatically registers itself with QImageDecoder. Constructs a factory. It automatically registers itself with TQImageDecoder.
.SH "QImageFormatType::~QImageFormatType ()\fC [virtual]\fR" .SH "TQImageFormatType::~TQImageFormatType ()\fC [virtual]\fR"
Destroys a factory. It automatically unregisters itself from QImageDecoder. Destroys a factory. It automatically unregisters itself from TQImageDecoder.
.SH "QImageFormat * QImageFormatType::decoderFor ( const uchar * buffer, int length )\fC [pure virtual]\fR" .SH "TQImageFormat * TQImageFormatType::decoderFor ( const uchar * buffer, int length )\fC [pure virtual]\fR"
Returns a decoder for decoding an image that starts with the bytes in \fIbuffer\fR. The length of the data is given in \fIlength\fR. This function should only return a decoder if it is certain that the decoder applies to data with the given header. Returns 0 if there is insufficient data in the header to make a positive identification or if the data is not recognized. Returns a decoder for decoding an image that starts with the bytes in \fIbuffer\fR. The length of the data is given in \fIlength\fR. This function should only return a decoder if it is certain that the decoder applies to data with the given header. Returns 0 if there is insufficient data in the header to make a positive identification or if the data is not recognized.
.SH "const char * QImageFormatType::formatName () const\fC [pure virtual]\fR" .SH "const char * TQImageFormatType::formatName () const\fC [pure virtual]\fR"
Returns the name of the format supported by decoders from this Returns the name of the format supported by decoders from this
factory. The string is statically allocated. factory. The string is statically allocated.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qimageformattype.html .BR http://doc.trolltech.com/tqimageformattype.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 QImageIO 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQImageIO 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,23 +7,23 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QImageIO \- Parameters for loading and saving images TQImageIO \- Parameters for loading and saving images
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqimage.h>\fR \fC#include <tqimage.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQImageIO\fR ()" .BI "\fBTQImageIO\fR ()"
.br .br
.ti -1c .ti -1c
.BI "\fBQImageIO\fR ( TQIODevice * ioDevice, const char * format )" .BI "\fBTQImageIO\fR ( TQIODevice * ioDevice, const char * format )"
.br .br
.ti -1c .ti -1c
.BI "\fBQImageIO\fR ( const TQString & fileName, const char * format )" .BI "\fBTQImageIO\fR ( const TQString & fileName, const char * format )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QImageIO\fR ()" .BI "\fB~TQImageIO\fR ()"
.br .br
.ti -1c .ti -1c
.BI "const TQImage & \fBimage\fR () const" .BI "const TQImage & \fBimage\fR () const"
@ -105,9 +105,9 @@ QImageIO \- Parameters for loading and saving images
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QImageIO class contains parameters for loading and saving images. The TQImageIO class contains parameters for loading and saving images.
.PP .PP
QImageIO contains a TQIODevice object that is used for image data I/O. The programmer can install new image file formats in addition to those that TQt provides. TQImageIO contains a TQIODevice object that is used for image data I/O. The programmer can install new image file formats in addition to those that TQt provides.
.PP .PP
Qt currently supports the following image file formats: PNG, BMP, XBM, XPM and PNM. It may also support JPEG, MNG and GIF, if specially configured during compilation. The different PNM formats are: PBM (P1 or P4), PGM (P2 or P5), and PPM (P3 or P6). Qt currently supports the following image file formats: PNG, BMP, XBM, XPM and PNM. It may also support JPEG, MNG and GIF, if specially configured during compilation. The different PNM formats are: PBM (P1 or P4), PGM (P2 or P5), and PPM (P3 or P6).
.PP .PP
@ -123,28 +123,28 @@ GIF support may be removed completely in a future version of Qt. We recommend us
.PP .PP
See also TQImage, QPixmap, QFile, QMovie, Graphics Classes, Image Processing Classes, and Input/Output and Networking. See also TQImage, QPixmap, QFile, QMovie, Graphics Classes, Image Processing Classes, and Input/Output and Networking.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QImageIO::QImageIO ()" .SH "TQImageIO::TQImageIO ()"
Constructs a QImageIO object with all parameters set to zero. Constructs a TQImageIO object with all parameters set to zero.
.SH "QImageIO::QImageIO ( TQIODevice * ioDevice, const char * format )" .SH "TQImageIO::TQImageIO ( TQIODevice * ioDevice, const char * format )"
Constructs a QImageIO object with the I/O device \fIioDevice\fR and a \fIformat\fR tag. Constructs a TQImageIO object with the I/O device \fIioDevice\fR and a \fIformat\fR tag.
.SH "QImageIO::QImageIO ( const TQString & fileName, const char * format )" .SH "TQImageIO::TQImageIO ( const TQString & fileName, const char * format )"
Constructs a QImageIO object with the file name \fIfileName\fR and a \fIformat\fR tag. Constructs a TQImageIO object with the file name \fIfileName\fR and a \fIformat\fR tag.
.SH "QImageIO::~QImageIO ()" .SH "TQImageIO::~TQImageIO ()"
Destroys the object and all related data. Destroys the object and all related data.
.SH "void QImageIO::defineIOHandler ( const char * format, const char * header, const char * flags, image_io_handler readImage, image_io_handler writeImage )\fC [static]\fR" .SH "void TQImageIO::defineIOHandler ( const char * format, const char * header, const char * flags, image_io_handler readImage, image_io_handler writeImage )\fC [static]\fR"
Defines an image I/O handler for the image format called \fIformat\fR, which is recognized using the regular expression \fIheader\fR, read using \fIreadImage\fR and written using \fIwriteImage\fR. Defines an image I/O handler for the image format called \fIformat\fR, which is recognized using the regular expression \fIheader\fR, read using \fIreadImage\fR and written using \fIwriteImage\fR.
.PP .PP
\fIflags\fR is a string of single-character flags for this format. The only flag defined currently is T (upper case), so the only legal value for \fIflags\fR are "T" and the empty string. The "T" flag means that the image file is a text file, and TQt should treat all newline conventions as equivalent. (XPM files and some PPM files are text files for example.) \fIflags\fR is a string of single-character flags for this format. The only flag defined currently is T (upper case), so the only legal value for \fIflags\fR are "T" and the empty string. The "T" flag means that the image file is a text file, and TQt should treat all newline conventions as equivalent. (XPM files and some PPM files are text files for example.)
.PP .PP
\fIformat\fR is used to select a handler to write a TQImage; \fIheader\fR is used to select a handler to read an image file. \fIformat\fR is used to select a handler to write a TQImage; \fIheader\fR is used to select a handler to read an image file.
.PP .PP
If \fIreadImage\fR is a null pointer, the QImageIO will not be able to read images in \fIformat\fR. If \fIwriteImage\fR is a null pointer, the QImageIO will not be able to write images in \fIformat\fR. If both are null, the QImageIO object is valid but useless. If \fIreadImage\fR is a null pointer, the TQImageIO will not be able to read images in \fIformat\fR. If \fIwriteImage\fR is a null pointer, the TQImageIO will not be able to write images in \fIformat\fR. If both are null, the TQImageIO object is valid but useless.
.PP .PP
Example: Example:
.PP .PP
.nf .nf
.br .br
void readGIF( QImageIO *image ) void readGIF( TQImageIO *image )
.br .br
{ {
.br .br
@ -153,7 +153,7 @@ Example:
} }
.br .br
.br .br
void writeGIF( QImageIO *image ) void writeGIF( TQImageIO *image )
.br .br
{ {
.br .br
@ -165,7 +165,7 @@ Example:
// add the GIF image handler // add the GIF image handler
.br .br
.br .br
QImageIO::defineIOHandler( "GIF", TQImageIO::defineIOHandler( "GIF",
.br .br
"^GIF[0-9][0-9][a-z]", "^GIF[0-9][0-9][a-z]",
.br .br
@ -182,27 +182,27 @@ Before the regex test, all the 0 bytes in the file header are converted to 1 byt
The regexp is only applied on the first 14 bytes of the file. The regexp is only applied on the first 14 bytes of the file.
.PP .PP
Note that TQt assumes that there is only one handler per format; if two handlers support the same format, TQt will choose one arbitrarily. It is not possible to have one handler support reading, and another support writing. Note that TQt assumes that there is only one handler per format; if two handlers support the same format, TQt will choose one arbitrarily. It is not possible to have one handler support reading, and another support writing.
.SH "TQString QImageIO::description () const" .SH "TQString TQImageIO::description () const"
Returns the image description string. Returns the image description string.
.PP .PP
See also setDescription(). See also setDescription().
.SH "TQString QImageIO::fileName () const" .SH "TQString TQImageIO::fileName () const"
Returns the file name currently set. Returns the file name currently set.
.PP .PP
See also setFileName(). See also setFileName().
.SH "const char * QImageIO::format () const" .SH "const char * TQImageIO::format () const"
Returns the image format string or 0 if no format has been explicitly set. Returns the image format string or 0 if no format has been explicitly set.
.SH "float QImageIO::gamma () const" .SH "float TQImageIO::gamma () const"
Returns the gamma value at which the image will be viewed. Returns the gamma value at which the image will be viewed.
.PP .PP
See also setGamma(). See also setGamma().
.SH "const TQImage & QImageIO::image () const" .SH "const TQImage & TQImageIO::image () const"
Returns the image currently set. Returns the image currently set.
.PP .PP
See also setImage(). See also setImage().
.SH "const char * QImageIO::imageFormat ( const TQString & fileName )\fC [static]\fR" .SH "const char * TQImageIO::imageFormat ( const TQString & fileName )\fC [static]\fR"
Returns a string that specifies the image format of the file \fIfileName\fR, or null if the file cannot be read or if the format is not recognized. Returns a string that specifies the image format of the file \fIfileName\fR, or null if the file cannot be read or if the format is not recognized.
.SH "const char * QImageIO::imageFormat ( TQIODevice * d )\fC [static]\fR" .SH "const char * TQImageIO::imageFormat ( TQIODevice * d )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Returns a string that specifies the image format of the image read from IO device \fId\fR, or 0 if the device cannot be read or if the format is not recognized. Returns a string that specifies the image format of the image read from IO device \fId\fR, or 0 if the device cannot be read or if the format is not recognized.
@ -210,25 +210,25 @@ Returns a string that specifies the image format of the image read from IO devic
Make sure that \fId\fR is at the right position in the device (for example, at the beginning of the file). Make sure that \fId\fR is at the right position in the device (for example, at the beginning of the file).
.PP .PP
See also TQIODevice::at(). See also TQIODevice::at().
.SH "QStrList QImageIO::inputFormats ()\fC [static]\fR" .SH "QStrList TQImageIO::inputFormats ()\fC [static]\fR"
Returns a sorted list of image formats that are supported for image input. Returns a sorted list of image formats that are supported for image input.
.SH "TQIODevice * QImageIO::ioDevice () const" .SH "TQIODevice * TQImageIO::ioDevice () const"
Returns the IO device currently set. Returns the IO device currently set.
.PP .PP
See also setIODevice(). See also setIODevice().
.SH "QStrList QImageIO::outputFormats ()\fC [static]\fR" .SH "QStrList TQImageIO::outputFormats ()\fC [static]\fR"
Returns a sorted list of image formats that are supported for image output. Returns a sorted list of image formats that are supported for image output.
.PP .PP
Example: scribble/scribble.cpp. Example: scribble/scribble.cpp.
.SH "const char * QImageIO::parameters () const" .SH "const char * TQImageIO::parameters () const"
Returns the image's parameters string. Returns the image's parameters string.
.PP .PP
See also setParameters(). See also setParameters().
.SH "int QImageIO::quality () const" .SH "int TQImageIO::quality () const"
Returns the quality of the written image, related to the compression ratio. Returns the quality of the written image, related to the compression ratio.
.PP .PP
See also setQuality() and TQImage::save(). See also setQuality() and TQImage::save().
.SH "bool QImageIO::read ()" .SH "bool TQImageIO::read ()"
Reads an image into memory and returns TRUE if the image was successfully read; otherwise returns FALSE. Reads an image into memory and returns TRUE if the image was successfully read; otherwise returns FALSE.
.PP .PP
Before reading an image you must set an IO device or a file name. If both an IO device and a file name have been set, the IO device will be used. Before reading an image you must set an IO device or a file name. If both an IO device and a file name have been set, the IO device will be used.
@ -241,7 +241,7 @@ Example:
.PP .PP
.nf .nf
.br .br
QImageIO iio; TQImageIO iio;
.br .br
QPixmap pixmap; QPixmap pixmap;
.br .br
@ -254,15 +254,15 @@ Example:
.fi .fi
.PP .PP
See also setIODevice(), setFileName(), setFormat(), write(), and QPixmap::load(). See also setIODevice(), setFileName(), setFormat(), write(), and QPixmap::load().
.SH "void QImageIO::setDescription ( const TQString & description )" .SH "void TQImageIO::setDescription ( const TQString & description )"
Sets the image description string for image handlers that support image descriptions to \fIdescription\fR. Sets the image description string for image handlers that support image descriptions to \fIdescription\fR.
.PP .PP
Currently, no image format supported by TQt uses the description string. Currently, no image format supported by TQt uses the description string.
.SH "void QImageIO::setFileName ( const TQString & fileName )" .SH "void TQImageIO::setFileName ( const TQString & fileName )"
Sets the name of the file to read or write an image from to \fIfileName\fR. Sets the name of the file to read or write an image from to \fIfileName\fR.
.PP .PP
See also setIODevice(). See also setIODevice().
.SH "void QImageIO::setFormat ( const char * format )" .SH "void TQImageIO::setFormat ( const char * format )"
Sets the image format to \fIformat\fR for the image to be read or written. Sets the image format to \fIformat\fR for the image to be read or written.
.PP .PP
It is necessary to specify a format before writing an image, but it is not necessary to specify a format before reading an image. It is necessary to specify a format before writing an image, but it is not necessary to specify a format before reading an image.
@ -270,13 +270,13 @@ It is necessary to specify a format before writing an image, but it is not neces
If no format has been set, TQt guesses the image format before reading it. If a format is set the image will only be read if it has that format. If no format has been set, TQt guesses the image format before reading it. If a format is set the image will only be read if it has that format.
.PP .PP
See also read(), write(), and format(). See also read(), write(), and format().
.SH "void QImageIO::setGamma ( float gamma )" .SH "void TQImageIO::setGamma ( float gamma )"
Sets the gamma value at which the image will be viewed to \fIgamma\fR. If the image format stores a gamma value for which the image is intended to be used, then this setting will be used to modify the image. Setting to 0.0 will disable gamma correction (i.e. any specification in the file will be ignored). Sets the gamma value at which the image will be viewed to \fIgamma\fR. If the image format stores a gamma value for which the image is intended to be used, then this setting will be used to modify the image. Setting to 0.0 will disable gamma correction (i.e. any specification in the file will be ignored).
.PP .PP
The default value is 0.0. The default value is 0.0.
.PP .PP
See also gamma(). See also gamma().
.SH "void QImageIO::setIODevice ( TQIODevice * ioDevice )" .SH "void TQImageIO::setIODevice ( TQIODevice * ioDevice )"
Sets the IO device to be used for reading or writing an image. Sets the IO device to be used for reading or writing an image.
.PP .PP
Setting the IO device allows images to be read/written to any block-oriented TQIODevice. Setting the IO device allows images to be read/written to any block-oriented TQIODevice.
@ -284,31 +284,31 @@ Setting the IO device allows images to be read/written to any block-oriented TQI
If \fIioDevice\fR is not null, this IO device will override file name settings. If \fIioDevice\fR is not null, this IO device will override file name settings.
.PP .PP
See also setFileName(). See also setFileName().
.SH "void QImageIO::setImage ( const TQImage & image )" .SH "void TQImageIO::setImage ( const TQImage & image )"
Sets the image to \fIimage\fR. Sets the image to \fIimage\fR.
.PP .PP
See also image(). See also image().
.SH "void QImageIO::setParameters ( const char * parameters )" .SH "void TQImageIO::setParameters ( const char * parameters )"
Sets the image's parameter string to \fIparameters\fR. This is for image handlers that require special parameters. Sets the image's parameter string to \fIparameters\fR. This is for image handlers that require special parameters.
.PP .PP
Although the current image formats supported by TQt ignore the parameters string, it may be used in future extensions or by contributions (for example, JPEG). Although the current image formats supported by TQt ignore the parameters string, it may be used in future extensions or by contributions (for example, JPEG).
.PP .PP
See also parameters(). See also parameters().
.SH "void QImageIO::setQuality ( int q )" .SH "void TQImageIO::setQuality ( int q )"
Sets the quality of the written image to \fIq\fR, related to the compression ratio. Sets the quality of the written image to \fIq\fR, related to the compression ratio.
.PP .PP
\fIq\fR must be in the range -1..100. Specify 0 to obtain small compressed files, 100 for large uncompressed files. (-1 signifies the default compression.) \fIq\fR must be in the range -1..100. Specify 0 to obtain small compressed files, 100 for large uncompressed files. (-1 signifies the default compression.)
.PP .PP
See also quality() and TQImage::save(). See also quality() and TQImage::save().
.SH "void QImageIO::setStatus ( int status )" .SH "void TQImageIO::setStatus ( int status )"
Sets the image IO status to \fIstatus\fR. A non-zero value indicates an error, whereas 0 means that the IO operation was successful. Sets the image IO status to \fIstatus\fR. A non-zero value indicates an error, whereas 0 means that the IO operation was successful.
.PP .PP
See also status(). See also status().
.SH "int QImageIO::status () const" .SH "int TQImageIO::status () const"
Returns the image's IO status. A non-zero value indicates an error, whereas 0 means that the IO operation was successful. Returns the image's IO status. A non-zero value indicates an error, whereas 0 means that the IO operation was successful.
.PP .PP
See also setStatus(). See also setStatus().
.SH "bool QImageIO::write ()" .SH "bool TQImageIO::write ()"
Writes an image to an IO device and returns TRUE if the image was successfully written; otherwise returns FALSE. Writes an image to an IO device and returns TRUE if the image was successfully written; otherwise returns FALSE.
.PP .PP
Before writing an image you must set an IO device or a file name. If both an IO device and a file name have been set, the IO device will be used. Before writing an image you must set an IO device or a file name. If both an IO device and a file name have been set, the IO device will be used.
@ -319,7 +319,7 @@ Example:
.PP .PP
.nf .nf
.br .br
QImageIO iio; TQImageIO iio;
.br .br
TQImage im; TQImage im;
.br .br
@ -340,7 +340,7 @@ Example:
See also setIODevice(), setFileName(), setFormat(), read(), and QPixmap::save(). See also setIODevice(), setFileName(), setFormat(), read(), and QPixmap::save().
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qimageio.html .BR http://doc.trolltech.com/tqimageio.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

@ -69,7 +69,7 @@ kScrapFlavorTypeUnicode - converted to "text/plain;charset=ISO-10646-UCS-2" and
.TP .TP
kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain" and supported by QTextDrag. kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain" and supported by QTextDrag.
.TP .TP
kScrapFlavorTypePicture - converted to "image/format", where format is a TQt image format, and supported by QImageDrag. kScrapFlavorTypePicture - converted to "image/format", where format is a TQt image format, and supported by TQImageDrag.
.TP .TP
kDragFlavorTypeHFS - converted to "text/uri-list", and supported by QUriDrag. kDragFlavorTypeHFS - converted to "text/uri-list", and supported by QUriDrag.
.PP .PP

@ -60,7 +60,7 @@ Reimplemented in QDropEvent.
.SH "bool QMimeSource::provides ( const char * mimeType ) const\fC [virtual]\fR" .SH "bool QMimeSource::provides ( const char * mimeType ) const\fC [virtual]\fR"
Returns TRUE if the object can provide the data in format \fImimeType\fR; otherwise returns FALSE. Returns TRUE if the object can provide the data in format \fImimeType\fR; otherwise returns FALSE.
.PP .PP
If you inherit from QMimeSource, for consistency reasons it is better to implement the more abstract canDecode() functions such as QTextDrag::canDecode() and QImageDrag::canDecode(). If you inherit from QMimeSource, for consistency reasons it is better to implement the more abstract canDecode() functions such as QTextDrag::canDecode() and TQImageDrag::canDecode().
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.PP .PP

@ -74,7 +74,7 @@ QMimeSourceFactory \- Extensible provider of mime-typed data
.SH DESCRIPTION .SH DESCRIPTION
The QMimeSourceFactory class is an extensible provider of mime-typed data. The QMimeSourceFactory class is an extensible provider of mime-typed data.
.PP .PP
A QMimeSourceFactory provides an abstract interface to a collection of information. Each piece of information is represented by a QMimeSource object which can be examined and converted to concrete data types by functions such as QImageDrag::canDecode() and QImageDrag::decode(). A QMimeSourceFactory provides an abstract interface to a collection of information. Each piece of information is represented by a QMimeSource object which can be examined and converted to concrete data types by functions such as TQImageDrag::canDecode() and TQImageDrag::decode().
.PP .PP
The base QMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters). The base QMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters).
.PP .PP
@ -143,7 +143,7 @@ Returns a reference to the data associated with \fIabs_name\fR. The return value
.PP .PP
If there is no data associated with \fIabs_name\fR in the factory's store, the factory tries to access the local filesystem. If \fIabs_name\fR isn't an absolute file name, the factory will search for it in all defined paths (see setFilePath()). If there is no data associated with \fIabs_name\fR in the factory's store, the factory tries to access the local filesystem. If \fIabs_name\fR isn't an absolute file name, the factory will search for it in all defined paths (see setFilePath()).
.PP .PP
The factory understands all the image formats supported by QImageIO. Any other mime types are determined by the file name extension. The default settings are The factory understands all the image formats supported by TQImageIO. Any other mime types are determined by the file name extension. The default settings are
.PP .PP
.nf .nf
.br .br
@ -197,7 +197,7 @@ See also filePath().
.SH "void QMimeSourceFactory::setImage ( const TQString & abs_name, const TQImage & image )\fC [virtual]\fR" .SH "void QMimeSourceFactory::setImage ( const TQString & abs_name, const TQImage & image )\fC [virtual]\fR"
Sets \fIimage\fR to be the data item associated with the absolute name \fIabs_name\fR. Sets \fIimage\fR to be the data item associated with the absolute name \fIabs_name\fR.
.PP .PP
Equivalent to setData(abs_name, new QImageDrag(image)). Equivalent to setData(abs_name, new TQImageDrag(image)).
.SH "void QMimeSourceFactory::setPixmap ( const TQString & abs_name, const QPixmap & pixmap )\fC [virtual]\fR" .SH "void QMimeSourceFactory::setPixmap ( const TQString & abs_name, const QPixmap & pixmap )\fC [virtual]\fR"
Sets \fIpixmap\fR to be the data item associated with the absolute name \fIabs_name\fR. Sets \fIpixmap\fR to be the data item associated with the absolute name \fIabs_name\fR.
.SH "void QMimeSourceFactory::setText ( const TQString & abs_name, const TQString & text )\fC [virtual]\fR" .SH "void QMimeSourceFactory::setText ( const TQString & abs_name, const TQString & text )\fC [virtual]\fR"

@ -258,7 +258,7 @@ If your application uses dozens or hundreds of pixmaps (for example on tool bar
.PP .PP
In general it is recommended to make as much use of QPixmap's implicit sharing and the QPixmapCache as possible. In general it is recommended to make as much use of QPixmap's implicit sharing and the QPixmapCache as possible.
.PP .PP
See also QBitmap, TQImage, QImageIO, Shared Classes, Graphics Classes, Image Processing Classes, and Implicitly and Explicitly Shared Classes. See also QBitmap, TQImage, TQImageIO, Shared Classes, Graphics Classes, Image Processing Classes, and Implicitly and Explicitly Shared Classes.
.SS "Member Type Documentation" .SS "Member Type Documentation"
.SH "QPixmap::ColorMode" .SH "QPixmap::ColorMode"
This enum type defines the color modes that exist for converting TQImage objects to QPixmap. This enum type defines the color modes that exist for converting TQImage objects to QPixmap.
@ -472,7 +472,7 @@ Example:
.SH "QPixmap QPixmap::fromMimeSource ( const TQString & abs_name )\fC [static]\fR" .SH "QPixmap QPixmap::fromMimeSource ( const TQString & abs_name )\fC [static]\fR"
Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to a pixmap. Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to a pixmap.
.PP .PP
See also QMimeSourceFactory, TQImage::fromMimeSource(), and QImageDrag::decode(). See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
.PP .PP
Example: textedit/textedit.cpp. Example: textedit/textedit.cpp.
.SH "QPixmap QPixmap::grabWidget ( TQWidget * widget, int x = 0, int y = 0, int w = -1, int h = -1 )\fC [static]\fR" .SH "QPixmap QPixmap::grabWidget ( TQWidget * widget, int x = 0, int y = 0, int w = -1, int h = -1 )\fC [static]\fR"
@ -533,7 +533,7 @@ Examples:
.SH "const char * QPixmap::imageFormat ( const TQString & fileName )\fC [static]\fR" .SH "const char * QPixmap::imageFormat ( const TQString & fileName )\fC [static]\fR"
Returns a string that specifies the image format of the file \fIfileName\fR, or 0 if the file cannot be read or if the format cannot be recognized. Returns a string that specifies the image format of the file \fIfileName\fR, or 0 if the file cannot be read or if the format cannot be recognized.
.PP .PP
The QImageIO documentation lists the supported image formats. The TQImageIO documentation lists the supported image formats.
.PP .PP
See also load() and save(). See also load() and save().
.SH "bool QPixmap::isNull () const" .SH "bool QPixmap::isNull () const"
@ -556,9 +556,9 @@ If \fIformat\fR is specified, the loader attempts to read the pixmap using the s
.PP .PP
See the convertFromImage() documentation for a description of the \fIconversion_flags\fR argument. See the convertFromImage() documentation for a description of the \fIconversion_flags\fR argument.
.PP .PP
The QImageIO documentation lists the supported image formats and explains how to add extra formats. The TQImageIO documentation lists the supported image formats and explains how to add extra formats.
.PP .PP
See also loadFromData(), save(), imageFormat(), TQImage::load(), and QImageIO. See also loadFromData(), save(), imageFormat(), TQImage::load(), and TQImageIO.
.PP .PP
Examples: Examples:
.)l picture/picture.cpp, scrollview/scrollview.cpp, and xform/xform.cpp. .)l picture/picture.cpp, scrollview/scrollview.cpp, and xform/xform.cpp.
@ -579,9 +579,9 @@ If \fIformat\fR is specified, the loader attempts to read the pixmap using the s
.PP .PP
See the convertFromImage() documentation for a description of the \fIconversion_flags\fR argument. See the convertFromImage() documentation for a description of the \fIconversion_flags\fR argument.
.PP .PP
The QImageIO documentation lists the supported image formats and explains how to add extra formats. The TQImageIO documentation lists the supported image formats and explains how to add extra formats.
.PP .PP
See also load(), save(), imageFormat(), TQImage::loadFromData(), and QImageIO. See also load(), save(), imageFormat(), TQImage::loadFromData(), and TQImageIO.
.SH "bool QPixmap::loadFromData ( const uchar * buf, uint len, const char * format = 0, ColorMode mode = Auto )" .SH "bool QPixmap::loadFromData ( const uchar * buf, uint len, const char * format = 0, ColorMode mode = Auto )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
@ -638,7 +638,7 @@ Resizes the pixmap to size \fIsize\fR.
.SH "bool QPixmap::save ( const TQString & fileName, const char * format, int quality = -1 ) const" .SH "bool QPixmap::save ( const TQString & fileName, const char * format, int quality = -1 ) const"
Saves the pixmap to the file \fIfileName\fR using the image file format \fIformat\fR and a quality factor \fIquality\fR. \fIquality\fR must be in the range [0,100] or -1. Specify 0 to obtain small compressed files, 100 for large uncompressed files, and -1 to use the default settings. Returns TRUE if successful; otherwise returns FALSE. Saves the pixmap to the file \fIfileName\fR using the image file format \fIformat\fR and a quality factor \fIquality\fR. \fIquality\fR must be in the range [0,100] or -1. Specify 0 to obtain small compressed files, 100 for large uncompressed files, and -1 to use the default settings. Returns TRUE if successful; otherwise returns FALSE.
.PP .PP
See also load(), loadFromData(), imageFormat(), TQImage::save(), and QImageIO. See also load(), loadFromData(), imageFormat(), TQImage::save(), and TQImageIO.
.PP .PP
Example: qmag/qmag.cpp. Example: qmag/qmag.cpp.
.SH "bool QPixmap::save ( TQIODevice * device, const char * format, int quality = -1 ) const" .SH "bool QPixmap::save ( TQIODevice * device, const char * format, int quality = -1 ) const"

@ -26,7 +26,7 @@ QPNGImagePacker \- Creates well-compressed PNG animations
.SH DESCRIPTION .SH DESCRIPTION
The QPNGImagePacker class creates well-compressed PNG animations. The QPNGImagePacker class creates well-compressed PNG animations.
.PP .PP
By using transparency, QPNGImagePacker allows you to build a PNG image from a sequence of QImages. By using transparency, QPNGImagePacker allows you to build a PNG image from a sequence of TQImages.
.PP .PP
Images are added using packImage(). Images are added using packImage().
.PP .PP

@ -1298,7 +1298,7 @@ This event handler is called when a drag is in progress and the mouse enters thi
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also QTextDrag, QImageDrag, and QDragEnterEvent. See also QTextDrag, TQImageDrag, and QDragEnterEvent.
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "void TQWidget::dragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR" .SH "void TQWidget::dragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR"
@ -1306,13 +1306,13 @@ This event handler is called when a drag is in progress and the mouse leaves thi
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also QTextDrag, QImageDrag, and QDragLeaveEvent. See also QTextDrag, TQImageDrag, and QDragLeaveEvent.
.SH "void TQWidget::dragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR" .SH "void TQWidget::dragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse enters this widget, and whenever it moves within the widget. This event handler is called when a drag is in progress and the mouse enters this widget, and whenever it moves within the widget.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also QTextDrag, QImageDrag, and QDragMoveEvent. See also QTextDrag, TQImageDrag, and QDragMoveEvent.
.SH "void TQWidget::drawText ( int x, int y, const TQString & str )" .SH "void TQWidget::drawText ( int x, int y, const TQString & str )"
Draws the string \fIstr\fR at position \fI(x, y)\fR. Draws the string \fIstr\fR at position \fI(x, y)\fR.
.PP .PP
@ -1330,7 +1330,7 @@ This event handler is called when the drag is dropped on this widget.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also QTextDrag, QImageDrag, and QDropEvent. See also QTextDrag, TQImageDrag, and QDropEvent.
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR" .SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR"

@ -72,7 +72,7 @@ CF_UNICODETEXT - converted to "text/plain;charset=ISO-10646-UCS-2" and supported
.TP .TP
CF_TEXT - converted to "text/plain;charset=system" or "text/plain" and supported by QTextDrag. CF_TEXT - converted to "text/plain;charset=system" or "text/plain" and supported by QTextDrag.
.TP .TP
CF_DIB - converted to "image/*", where * is a TQt image format, and supported by QImageDrag. CF_DIB - converted to "image/*", where * is a TQt image format, and supported by TQImageDrag.
.TP .TP
CF_HDROP - converted to "text/uri-list", and supported by QUriDrag. CF_HDROP - converted to "text/uri-list", and supported by QUriDrag.
.PP .PP

@ -61,7 +61,7 @@ by default in the standard plugin directory.
\i Base Class \i Base Class
\i Default Path \i Default Path
\row \row
\i \l QImageFormatPlugin \i \l TQImageFormatPlugin
\i \c{pluginsbase/imageformats} <sup>*</sup> \i \c{pluginsbase/imageformats} <sup>*</sup>
\row \row
\i \l TQSqlDriverPlugin \i \l TQSqlDriverPlugin

@ -9,7 +9,7 @@
#include "application.h" #include "application.h"
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqtoolbar.h> #include <ntqtoolbar.h>
#include <ntqtoolbutton.h> #include <ntqtoolbutton.h>

@ -9,7 +9,7 @@
#include "application.h" #include "application.h"
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqtoolbar.h> #include <ntqtoolbar.h>
#include <ntqtoolbutton.h> #include <ntqtoolbutton.h>

@ -1,4 +1,4 @@
#include <ntqimage.h> #include <tqimage.h>
#include <ntqcolor.h> #include <ntqcolor.h>
static inline int blendComponent( int v, int av, int s, int as ) static inline int blendComponent( int v, int av, int s, int as )

@ -7,7 +7,7 @@
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqprinter.h> #include <ntqprinter.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqprogressdialog.h> #include <ntqprogressdialog.h>
#include "canvas.h" #include "canvas.h"

@ -2,7 +2,7 @@
#include <ntqmessagebox.h> #include <ntqmessagebox.h>
#include <ntqmenubar.h> #include <ntqmenubar.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqimage.h> #include <tqimage.h>
#include "canvas.h" #include "canvas.h"

@ -1,4 +1,4 @@
#include <ntqimage.h> #include <tqimage.h>
#include <ntqcolor.h> #include <ntqcolor.h>
static inline int blendComponent( int v, int av, int s, int as ) static inline int blendComponent( int v, int av, int s, int as )

@ -4,7 +4,7 @@
#include <ntqcombobox.h> #include <ntqcombobox.h>
#include <ntqfontdialog.h> #include <ntqfontdialog.h>
#include <ntqframe.h> #include <ntqframe.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqlayout.h> #include <ntqlayout.h>
#include <ntqpushbutton.h> #include <ntqpushbutton.h>

@ -37,7 +37,7 @@
#include <ntqpalette.h> #include <ntqpalette.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqdragobject.h> #include <ntqdragobject.h>

@ -38,7 +38,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqtabwidget.h> #include <ntqtabwidget.h>
#include <ntqfont.h> #include <ntqfont.h>

@ -1,4 +1,4 @@
#include <ntqimage.h> #include <tqimage.h>
#include "gllandscape.h" #include "gllandscape.h"

@ -17,7 +17,7 @@
****************************************************************************/ ****************************************************************************/
#include "gltexobj.h" #include "gltexobj.h"
#include <ntqimage.h> #include <tqimage.h>
/*! /*!
Create a GLTexobj widget Create a GLTexobj widget

@ -13,7 +13,7 @@
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqcheckbox.h> #include <ntqcheckbox.h>
#include <ntqvbox.h> #include <ntqvbox.h>
#include <ntqimage.h> #include <tqimage.h>
#include "printpreview.h" #include "printpreview.h"

@ -255,7 +255,7 @@
</connection> </connection>
</connections> </connections>
<includes> <includes>
<include location="global" impldecl="in declaration">ntqimage.h</include> <include location="global" impldecl="in declaration">tqimage.h</include>
<include location="global" impldecl="in declaration">ntqpixmap.h</include> <include location="global" impldecl="in declaration">ntqpixmap.h</include>
<include location="local" impldecl="in implementation">printpreview.ui.h</include> <include location="local" impldecl="in implementation">printpreview.ui.h</include>
</includes> </includes>

@ -7,7 +7,7 @@
** **
*****************************************************************************/ *****************************************************************************/
#include <ntqimage.h> #include <tqimage.h>
#include <ntqbitmap.h> #include <ntqbitmap.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqapplication.h> #include <ntqapplication.h>

@ -16,7 +16,7 @@
#include <ntqevent.h> #include <ntqevent.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqdragobject.h> #include <ntqdragobject.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqdir.h> #include <ntqdir.h>

@ -16,7 +16,7 @@
#include <ntqstring.h> #include <ntqstring.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqstyle.h> #include <ntqstyle.h>

@ -9,7 +9,7 @@
#include "application.h" #include "application.h"
#include <ntqworkspace.h> #include <ntqworkspace.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqtoolbar.h> #include <ntqtoolbar.h>
#include <ntqtoolbutton.h> #include <ntqtoolbutton.h>

@ -2,7 +2,7 @@
#include <ntqsocket.h> #include <ntqsocket.h>
#include <ntqvariant.h> #include <ntqvariant.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpalette.h> #include <ntqpalette.h>
#include <ntqapplication.h> #include <ntqapplication.h>

@ -5,7 +5,7 @@
#include <ntqsocket.h> #include <ntqsocket.h>
#include <ntqfiledialog.h> #include <ntqfiledialog.h>
#include <ntqcolordialog.h> #include <ntqcolordialog.h>
#include <ntqimage.h> #include <tqimage.h>
RemoteCtrlImpl::RemoteCtrlImpl( TQSocket *s ) RemoteCtrlImpl::RemoteCtrlImpl( TQSocket *s )
{ {

@ -24,7 +24,7 @@
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqkeycode.h> #include <ntqkeycode.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include "globjwin.h" #include "globjwin.h"
#include "glbox.h" #include "glbox.h"

@ -17,7 +17,7 @@
****************************************************************************/ ****************************************************************************/
#include "gltexobj.h" #include "gltexobj.h"
#include <ntqimage.h> #include <tqimage.h>
#include <ntqtimer.h> #include <ntqtimer.h>

@ -10,7 +10,7 @@
#include <ntqcombobox.h> #include <ntqcombobox.h>
#include <ntqpushbutton.h> #include <ntqpushbutton.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqfiledialog.h> #include <ntqfiledialog.h>
#include <ntqregexp.h> #include <ntqregexp.h>

@ -21,7 +21,7 @@
#include <ntqcolordialog.h> #include <ntqcolordialog.h>
#include <ntqfiledialog.h> #include <ntqfiledialog.h>
#include <ntqcursor.h> #include <ntqcursor.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqstrlist.h> #include <ntqstrlist.h>
#include <ntqpopupmenu.h> #include <ntqpopupmenu.h>
#include <ntqintdict.h> #include <ntqintdict.h>

@ -8,7 +8,7 @@
*****************************************************************************/ *****************************************************************************/
#include "imagefip.h" #include "imagefip.h"
#include <ntqimage.h> #include <tqimage.h>
/* XPM */ /* XPM */
static const char *image_xpm[] = { static const char *image_xpm[] = {

@ -8,7 +8,7 @@
*****************************************************************************/ *****************************************************************************/
#include "imagetexteditor.h" #include "imagetexteditor.h"
#include <ntqimage.h> #include <tqimage.h>
#include <ntqlayout.h> #include <ntqlayout.h>
#include <ntqgrid.h> #include <ntqgrid.h>
#include <ntqvbox.h> #include <ntqvbox.h>

@ -10,7 +10,7 @@
#include "showimg.h" #include "showimg.h"
#include "imagefip.h" #include "imagefip.h"
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqimage.h> #include <tqimage.h>
int main( int argc, char **argv ) int main( int argc, char **argv )
{ {

@ -11,7 +11,7 @@
#define SHOWIMG_H #define SHOWIMG_H
#include <tqwidget.h> #include <tqwidget.h>
#include <ntqimage.h> #include <tqimage.h>
class TQLabel; class TQLabel;

@ -9,7 +9,7 @@
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqtable.h> #include <ntqtable.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqstringlist.h> #include <ntqstringlist.h>

@ -22,7 +22,7 @@
#include <ntqcolordialog.h> #include <ntqcolordialog.h>
#include <ntqfiledialog.h> #include <ntqfiledialog.h>
#include <ntqcursor.h> #include <ntqcursor.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqstrlist.h> #include <ntqstrlist.h>
#include <ntqpopupmenu.h> #include <ntqpopupmenu.h>
#include <ntqintdict.h> #include <ntqintdict.h>

@ -19,7 +19,7 @@
#include "ntqpalette.h" // for now #include "ntqpalette.h" // for now
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqrangecontrol.h" #include "ntqrangecontrol.h"

@ -19,7 +19,7 @@
#include "ntqpalette.h" // for now #include "ntqpalette.h" // for now
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqrangecontrol.h" #include "ntqrangecontrol.h"

@ -1,6 +1,6 @@
#include <ntqapplication.h> #include <ntqapplication.h>
#include <tqwidget.h> #include <tqwidget.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqbitmap.h> #include <ntqbitmap.h>
#include <ntqfile.h> #include <ntqfile.h>

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

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

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

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

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

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

@ -1,4 +1,4 @@
#include <ntqimageformatplugin.h> #include <tqimageformatplugin.h>
#ifndef TQT_NO_IMAGEFORMATPLUGIN #ifndef TQT_NO_IMAGEFORMATPLUGIN

@ -1,4 +1,4 @@
#include <ntqimageformatplugin.h> #include <tqimageformatplugin.h>
#ifndef TQT_NO_IMAGEFORMATPLUGIN #ifndef TQT_NO_IMAGEFORMATPLUGIN

@ -1,4 +1,4 @@
#include <ntqimageformatplugin.h> #include <tqimageformatplugin.h>
#ifndef TQT_NO_IMAGEFORMATPLUGIN #ifndef TQT_NO_IMAGEFORMATPLUGIN

@ -42,7 +42,7 @@
#ifndef TQT_NO_CANVAS #ifndef TQT_NO_CANVAS
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "tqptrdict.h" #include "tqptrdict.h"
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqpolygonscanner.h" #include "ntqpolygonscanner.h"

@ -47,7 +47,7 @@
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "ntqlineedit.h" #include "ntqlineedit.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqdrawutil.h" #include "ntqdrawutil.h"
#include "ntqvalidator.h" #include "ntqvalidator.h"

@ -45,7 +45,7 @@
#include "ntqaccel.h" #include "ntqaccel.h"
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqstyle.h" #include "ntqstyle.h"
#include "tqobjectlist.h" #include "tqobjectlist.h"

@ -42,7 +42,7 @@
#define TQASYNCIMAGEIO_H #define TQASYNCIMAGEIO_H
#ifndef QT_H #ifndef QT_H
#include "ntqimage.h" #include "tqimage.h"
#endif // QT_H #endif // QT_H
#ifndef TQT_NO_ASYNC_IMAGE_IO #ifndef TQT_NO_ASYNC_IMAGE_IO

@ -47,7 +47,7 @@ class TQImageDragData;
#ifndef QT_H #ifndef QT_H
#include "tqobject.h" #include "tqobject.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqstrlist.h" #include "ntqstrlist.h"
#include "ntqcolor.h" #include "ntqcolor.h"
#endif // QT_H #endif // QT_H

@ -272,7 +272,7 @@ public:
// Image conversion flags. The unusual ordering is caused by // Image conversion flags. The unusual ordering is caused by
// compatibility and default requirements. // compatibility and default requirements.
// Documented in qimage.cpp // Documented in tqimage.cpp
enum ImageConversionFlags { enum ImageConversionFlags {
ColorMode_Mask = 0x00000003, ColorMode_Mask = 0x00000003,

@ -42,7 +42,7 @@
#define TQPNGIO_H #define TQPNGIO_H
#ifndef QT_H #ifndef QT_H
#include "ntqimage.h" #include "tqimage.h"
#endif // QT_H #endif // QT_H
#ifndef TQT_NO_IMAGEIO_PNG #ifndef TQT_NO_IMAGEIO_PNG

@ -105,8 +105,8 @@
#include <ntqhttp.h> #include <ntqhttp.h>
#include <ntqaction.h> #include <ntqaction.h>
#include "ntqbuffer.h" #include "ntqbuffer.h"
#include "ntqimage.h" #include "tqimage.h"
#include <ntqimageformatplugin.h> #include <tqimageformatplugin.h>
#include "ntqlineedit.h" #include "ntqlineedit.h"
#include <ntqintcache.h> #include <ntqintcache.h>
#include "ntqintdict.h" #include "ntqintdict.h"
@ -278,7 +278,7 @@
#include <private/qucom_p.h> #include <private/qucom_p.h>
#include "private/qgfxdriverinterface_p.h" #include "private/qgfxdriverinterface_p.h"
#include "private/qcom_p.h" #include "private/qcom_p.h"
#include "private/qimageformatinterface_p.h" #include "private/tqimageformatinterface_p.h"
#include "private/qisciicodec_p.h" #include "private/qisciicodec_p.h"
#include "private/qkbddriverinterface_p.h" #include "private/qkbddriverinterface_p.h"
#include "private/qlayoutengine_p.h" #include "private/qlayoutengine_p.h"

@ -39,7 +39,7 @@
**********************************************************************/ **********************************************************************/
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqimage.h" #include "tqimage.h"
/*! /*!

@ -43,7 +43,7 @@
#ifndef TQT_NO_CURSOR #ifndef TQT_NO_CURSOR
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqdatastream.h" #include "ntqdatastream.h"

@ -40,7 +40,7 @@
#include "ntqcursor.h" #include "ntqcursor.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqdatastream.h" #include "ntqdatastream.h"
#include "ntqnamespace.h" #include "ntqnamespace.h"

@ -49,7 +49,7 @@
#include "ntqpaintdevice.h" #include "ntqpaintdevice.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqimage.h" #include "tqimage.h"
#include "qt_x11_p.h" #include "qt_x11_p.h"

@ -45,7 +45,7 @@
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqcleanuphandler.h" #include "ntqcleanuphandler.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpainter.h" #include "ntqpainter.h"
enum { NumSizes = 2, NumModes = 3, NumStates = 2 }; enum { NumSizes = 2, NumModes = 3, NumStates = 2 };

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqimage.h" #include "tqimage.h"
#ifndef TQT_NO_IMAGEIO_JPEG #ifndef TQT_NO_IMAGEIO_JPEG

@ -42,7 +42,7 @@
#ifndef TQT_NO_IMAGEIO_MNG #ifndef TQT_NO_IMAGEIO_MNG
#include "ntqimage.h" #include "tqimage.h"
#include "ntqasyncimageio.h" #include "ntqasyncimageio.h"
#include "ntqiodevice.h" #include "ntqiodevice.h"
#include "ntqmngio.h" #include "ntqmngio.h"
@ -310,7 +310,7 @@ TQMNGFormat::TQMNGFormat()
TQMNGFormat::~TQMNGFormat() TQMNGFormat::~TQMNGFormat()
{ {
// We're setting the consumer to 0 since it may have been // We're setting the consumer to 0 since it may have been
// deleted by read_async_image in qimage.cpp // deleted by read_async_image in tqimage.cpp
consumer = 0; consumer = 0;
if (handle) mng_cleanup(&handle); if (handle) mng_cleanup(&handle);
} }

@ -45,7 +45,7 @@
#include "tqptrdict.h" #include "tqptrdict.h"
#include "ntqdatastream.h" #include "ntqdatastream.h"
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "qrichtext_p.h" #include "qrichtext_p.h"

@ -44,7 +44,7 @@
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqfile.h" #include "ntqfile.h"
#include "ntqdatastream.h" #include "ntqdatastream.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"

@ -41,7 +41,7 @@
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqdatastream.h" #include "ntqdatastream.h"

@ -69,7 +69,7 @@
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqwmatrix.h" #include "ntqwmatrix.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "qt_x11_p.h" #include "qt_x11_p.h"
@ -286,7 +286,7 @@ static XImage* qt_XShmGetImage( const TQPixmap* pix, int format,
Internal functions Internal functions
*****************************************************************************/ *****************************************************************************/
extern const uchar *qt_get_bitflip_array(); // defined in qimage.cpp extern const uchar *qt_get_bitflip_array(); // defined in tqimage.cpp
static uchar *flip_bits( const uchar *bits, int len ) static uchar *flip_bits( const uchar *bits, int len )
{ {

@ -59,7 +59,7 @@
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqdatetime.h" #include "ntqdatetime.h"
#include "ntqstring.h" #include "ntqstring.h"
#include "ntqdict.h" #include "ntqdict.h"

@ -41,7 +41,7 @@
#include "ntqregion.h" #include "ntqregion.h"
#include "ntqpointarray.h" #include "ntqpointarray.h"
#include "ntqbuffer.h" #include "ntqbuffer.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "qt_x11_p.h" #include "qt_x11_p.h"

@ -52,7 +52,7 @@
#include "ntqfileinfo.h" #include "ntqfileinfo.h"
#include "ntqstylesheet.h" #include "ntqstylesheet.h"
#include "ntqmime.h" #include "ntqmime.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqdragobject.h" #include "ntqdragobject.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqpainter.h" #include "ntqpainter.h"

@ -32,9 +32,9 @@ kernel {
$$KERNEL_H/ntqguardedptr.h \ $$KERNEL_H/ntqguardedptr.h \
$$KERNEL_H/ntqgif.h \ $$KERNEL_H/ntqgif.h \
$$KERNEL_H/ntqiconset.h \ $$KERNEL_H/ntqiconset.h \
$$KERNEL_H/ntqimage.h \ $$KERNEL_H/tqimage.h \
$$KERNEL_P/qimageformatinterface_p.h \ $$KERNEL_P/tqimageformatinterface_p.h \
$$KERNEL_H/ntqimageformatplugin.h \ $$KERNEL_H/tqimageformatplugin.h \
$$KERNEL_H/ntqkeycode.h \ $$KERNEL_H/ntqkeycode.h \
$$KERNEL_H/ntqkeysequence.h \ $$KERNEL_H/ntqkeysequence.h \
$$KERNEL_H/ntqlayout.h \ $$KERNEL_H/ntqlayout.h \
@ -216,8 +216,8 @@ kernel {
$$KERNEL_CPP/qfontdatabase.cpp \ $$KERNEL_CPP/qfontdatabase.cpp \
$$KERNEL_CPP/qguardedptr.cpp \ $$KERNEL_CPP/qguardedptr.cpp \
$$KERNEL_CPP/qiconset.cpp \ $$KERNEL_CPP/qiconset.cpp \
$$KERNEL_CPP/qimage.cpp \ $$KERNEL_CPP/tqimage.cpp \
$$KERNEL_CPP/qimageformatplugin.cpp \ $$KERNEL_CPP/tqimageformatplugin.cpp \
$$KERNEL_CPP/qkeysequence.cpp \ $$KERNEL_CPP/qkeysequence.cpp \
$$KERNEL_CPP/qlayout.cpp \ $$KERNEL_CPP/qlayout.cpp \
$$KERNEL_CPP/qlayoutengine.cpp \ $$KERNEL_CPP/qlayoutengine.cpp \

@ -28,7 +28,7 @@
#include <ntqcursor.h> #include <ntqcursor.h>
#include <ntqdatetime.h> #include <ntqdatetime.h>
#include <ntqglobal.h> #include <ntqglobal.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqmetaobject.h> // All moc genereated code has this include #include <ntqmetaobject.h> // All moc genereated code has this include
#include <tqobject.h> #include <tqobject.h>
#include <ntqpainter.h> #include <ntqpainter.h>

@ -46,7 +46,7 @@
#include "ntqcstring.h" #include "ntqcstring.h"
#include "ntqfont.h" #include "ntqfont.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqbrush.h" #include "ntqbrush.h"
#include "ntqpoint.h" #include "ntqpoint.h"
#include "ntqrect.h" #include "ntqrect.h"

@ -38,7 +38,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqimage.h" #include "tqimage.h"
#include "ntqregexp.h" #include "ntqregexp.h"
#include "ntqfile.h" #include "ntqfile.h"
#include "ntqdatastream.h" #include "ntqdatastream.h"
@ -51,7 +51,7 @@
#include "ntqjpegio.h" #include "ntqjpegio.h"
#include "tqmap.h" #include "tqmap.h"
#include <private/qpluginmanager_p.h> #include <private/qpluginmanager_p.h>
#include "qimageformatinterface_p.h" #include "tqimageformatinterface_p.h"
#include "ntqwmatrix.h" #include "ntqwmatrix.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqmime.h" #include "ntqmime.h"
@ -3716,7 +3716,7 @@ static void swapPixel01( TQImage *image ) // 1-bpp: swap 0 and 1 pixels
*****************************************************************************/ *****************************************************************************/
/*! /*!
\class TQImageIO ntqimage.h \class TQImageIO tqimage.h
\brief The TQImageIO class contains parameters for loading and \brief The TQImageIO class contains parameters for loading and
saving images. saving images.

@ -36,13 +36,13 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqimageformatplugin.h" #include "tqimageformatplugin.h"
#ifndef TQT_NO_IMAGEFORMATPLUGIN #ifndef TQT_NO_IMAGEFORMATPLUGIN
#include "qimageformatinterface_p.h" #include "tqimageformatinterface_p.h"
#include "ntqimage.h" #include "tqimage.h"
/*! /*!
\class TQImageFormatPlugin ntqimageformatplugin.h \class TQImageFormatPlugin tqimageformatplugin.h
\brief The TQImageFormatPlugin class provides an abstract base for custom image format plugins. \brief The TQImageFormatPlugin class provides an abstract base for custom image format plugins.
\ingroup plugins \ingroup plugins

@ -44,7 +44,7 @@
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "tqobjectlist.h" #include "tqobjectlist.h"
#include "ntqlayout.h" #include "ntqlayout.h"
#include "ntqtextcodec.h" #include "ntqtextcodec.h"

@ -41,7 +41,7 @@
#include "ntqgl.h" #include "ntqgl.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqcleanuphandler.h" #include "ntqcleanuphandler.h"
#include "tqptrdict.h" #include "tqptrdict.h"

@ -180,14 +180,14 @@ wince-* {
message( ...removing plugin stuff... (not permanent) ) message( ...removing plugin stuff... (not permanent) )
HEADERS -= $$TOOLS_CPP/qcomlibrary.h \ HEADERS -= $$TOOLS_CPP/qcomlibrary.h \
$$KERNEL_CPP/ntqgplugin.h \ $$KERNEL_CPP/ntqgplugin.h \
$$KERNEL_CPP/ntqimageformatplugin.h \ $$KERNEL_CPP/tqimageformatplugin.h \
$$STYLES_CPP/ntqstyleplugin.h \ $$STYLES_CPP/ntqstyleplugin.h \
$$CODECS_CPP/ntqtextcodecplugin.h \ $$CODECS_CPP/ntqtextcodecplugin.h \
$$WIDGETS_CPP/tqwidgetplugin.h $$WIDGETS_CPP/tqwidgetplugin.h
SOURCES -= $$TOOLS_CPP/qcomlibrary.cpp \ SOURCES -= $$TOOLS_CPP/qcomlibrary.cpp \
$$KERNEL_CPP/qgplugin.cpp \ $$KERNEL_CPP/qgplugin.cpp \
$$KERNEL_CPP/qimageformatplugin.cpp \ $$KERNEL_CPP/tqimageformatplugin.cpp \
$$STYLES_CPP/qstyleplugin.cpp \ $$STYLES_CPP/qstyleplugin.cpp \
$$CODECS_CPP/qtextcodecplugin.cpp \ $$CODECS_CPP/qtextcodecplugin.cpp \
$$WIDGETS_CPP/tqwidgetplugin.cpp $$WIDGETS_CPP/tqwidgetplugin.cpp

@ -60,7 +60,7 @@
#include "ntqdockwindow.h" #include "ntqdockwindow.h"
#include "ntqdockarea.h" #include "ntqdockarea.h"
#include "ntqprogressbar.h" #include "ntqprogressbar.h"
#include "ntqimage.h" #include "tqimage.h"
#include <limits.h> #include <limits.h>

@ -49,7 +49,7 @@
#include "ntqpixmap.h" // for now #include "ntqpixmap.h" // for now
#include "tqwidget.h" #include "tqwidget.h"
#include "ntqlabel.h" #include "ntqlabel.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpushbutton.h" #include "ntqpushbutton.h"
#include "ntqcombobox.h" #include "ntqcombobox.h"
#include "ntqlistbox.h" #include "ntqlistbox.h"

@ -1283,7 +1283,7 @@ SeeAlso: ???
Feature: IMAGEFORMATPLUGIN Feature: IMAGEFORMATPLUGIN
Section: Images Section: Images
Requires: COMPONENT IMAGEIO Requires: COMPONENT IMAGEIO
Name: QImageFormatPlugin Name: TQImageFormatPlugin
SeeAlso: ??? SeeAlso: ???

@ -43,7 +43,7 @@
#include "tqwidget.h" #include "tqwidget.h"
#include "qeffects_p.h" #include "qeffects_p.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqtimer.h" #include "ntqtimer.h"
#include "ntqdatetime.h" #include "ntqdatetime.h"
#include "ntqguardedptr.h" #include "ntqguardedptr.h"

@ -53,7 +53,7 @@
#include "ntqevent.h" #include "ntqevent.h"
#include "ntqpalette.h" #include "ntqpalette.h"
#include "ntqmime.h" #include "ntqmime.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpen.h" #include "ntqpen.h"
#include "ntqbrush.h" #include "ntqbrush.h"
#include "ntqtimer.h" #include "ntqtimer.h"

@ -44,7 +44,7 @@
#include "ntqdrawutil.h" #include "ntqdrawutil.h"
#include "ntqaccel.h" #include "ntqaccel.h"
#include "ntqmovie.h" #include "ntqmovie.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqpicture.h" #include "ntqpicture.h"
#include "ntqapplication.h" #include "ntqapplication.h"

@ -53,7 +53,7 @@
#include "ntqlayout.h" #include "ntqlayout.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqtimer.h" #include "ntqtimer.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqsimplerichtext.h" #include "ntqsimplerichtext.h"
#include "ntqdragobject.h" #include "ntqdragobject.h"
#include "ntqurl.h" #include "ntqurl.h"

@ -50,7 +50,7 @@
#include "ntqdatetime.h" #include "ntqdatetime.h"
#include "private/qapplication_p.h" #include "private/qapplication_p.h"
#include "ntqtooltip.h" #include "ntqtooltip.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqtimer.h" #include "ntqtimer.h"
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqstyle.h" #include "ntqstyle.h"

@ -50,7 +50,7 @@
#include "ntqmainwindow.h" #include "ntqmainwindow.h"
#include "ntqtooltip.h" #include "ntqtooltip.h"
#include "ntqtoolbar.h" #include "ntqtoolbar.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqiconset.h" #include "ntqiconset.h"
#include "ntqtimer.h" #include "ntqtimer.h"
#include "ntqpopupmenu.h" #include "ntqpopupmenu.h"

@ -58,7 +58,7 @@
#include "ntqdatetime.h" #include "ntqdatetime.h"
#include "ntqtooltip.h" #include "ntqtooltip.h"
#include "ntqwmatrix.h" #include "ntqwmatrix.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqscrollbar.h" #include "ntqscrollbar.h"
#include "ntqstyle.h" #include "ntqstyle.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"

@ -47,7 +47,7 @@
#include "ntqregexp.h" #include "ntqregexp.h"
#include "tqvaluelist.h" #include "tqvaluelist.h"
#include "ntqtextstream.h" #include "ntqtextstream.h"
#include "ntqimage.h" #include "tqimage.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include <math.h> #include <math.h>

@ -45,7 +45,7 @@
#include "project.h" #include "project.h"
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqlineedit.h> #include <ntqlineedit.h>

@ -38,7 +38,7 @@
#include <ntqdir.h> #include <ntqdir.h>
#include <ntqfileinfo.h> #include <ntqfileinfo.h>
#include <ntqtextstream.h> #include <ntqtextstream.h>
#include <ntqimage.h> #include <tqimage.h>
PixmapCollection::PixmapCollection( Project *pro ) PixmapCollection::PixmapCollection( Project *pro )
: project( pro ) : project( pro )

@ -198,7 +198,7 @@
<include location="local" impldecl="in implementation">pixmapchooser.h</include> <include location="local" impldecl="in implementation">pixmapchooser.h</include>
<include location="local" impldecl="in implementation">project.h</include> <include location="local" impldecl="in implementation">project.h</include>
<include location="global" impldecl="in implementation">ntqfileinfo.h</include> <include location="global" impldecl="in implementation">ntqfileinfo.h</include>
<include location="global" impldecl="in implementation">ntqimage.h</include> <include location="global" impldecl="in implementation">tqimage.h</include>
<include location="global" impldecl="in declaration">ntqpixmap.h</include> <include location="global" impldecl="in declaration">ntqpixmap.h</include>
<include location="local" impldecl="in implementation">pixmapcollectioneditor.ui.h</include> <include location="local" impldecl="in implementation">pixmapcollectioneditor.ui.h</include>
</includes> </includes>

@ -38,7 +38,7 @@
#include <ntqtextstream.h> #include <ntqtextstream.h>
#include <ntqvariant.h> #include <ntqvariant.h>
#include <tqvaluelist.h> #include <tqvaluelist.h>
#include <ntqimage.h> #include <tqimage.h>
#include "actiondnd.h" #include "actiondnd.h"
#include "metadatabase.h" #include "metadatabase.h"

@ -39,7 +39,7 @@
#include <ntqpalette.h> #include <ntqpalette.h>
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqdragobject.h> #include <ntqdragobject.h>

@ -19,7 +19,7 @@
#include <ntqtooltip.h> #include <ntqtooltip.h>
#include <ntqwhatsthis.h> #include <ntqwhatsthis.h>
#include "creditformbase.ui.h" #include "creditformbase.ui.h"
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
static TQPixmap uic_load_pixmap_CreditFormBase( const TQString &name ) static TQPixmap uic_load_pixmap_CreditFormBase( const TQString &name )

@ -38,7 +38,7 @@
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqfile.h> #include <ntqfile.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqprogressdialog.h> #include <ntqprogressdialog.h>
#include <ntqmessagebox.h> #include <ntqmessagebox.h>
#include <ntqrect.h> #include <ntqrect.h>

@ -33,7 +33,7 @@
#include "uic.h" #include "uic.h"
#include <ntqfile.h> #include <ntqfile.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqstringlist.h> #include <ntqstringlist.h>
#include <ntqdatetime.h> #include <ntqdatetime.h>
#include <ntqfileinfo.h> #include <ntqfileinfo.h>
@ -143,7 +143,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima
out << "****************************************************************************/\n"; out << "****************************************************************************/\n";
out << "\n"; out << "\n";
out << "#include <ntqimage.h>\n"; out << "#include <tqimage.h>\n";
out << "#include <ntqdict.h>\n"; out << "#include <ntqdict.h>\n";
out << "#include <ntqmime.h>\n"; out << "#include <ntqmime.h>\n";
out << "#include <ntqdragobject.h>\n"; out << "#include <ntqdragobject.h>\n";

@ -851,7 +851,7 @@ void Uic::createFormImpl( const TQDomElement &e )
} }
if ( !requiredImages.isEmpty() || externPixmaps ) { if ( !requiredImages.isEmpty() || externPixmaps ) {
out << "#include <ntqimage.h>" << endl; out << "#include <tqimage.h>" << endl;
out << "#include <ntqpixmap.h>" << endl << endl; out << "#include <ntqpixmap.h>" << endl << endl;
} }

@ -37,7 +37,7 @@
#ifndef QT_H #ifndef QT_H
#include <ntqstring.h> #include <ntqstring.h>
#include <tqptrlist.h> #include <tqptrlist.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <tqvaluelist.h> #include <tqvaluelist.h>
#include <tqmap.h> #include <tqmap.h>

@ -22,7 +22,7 @@
#include <tqptrlist.h> #include <tqptrlist.h>
#include <ntqtextstream.h> #include <ntqtextstream.h>
#include <ntqdatetime.h> #include <ntqdatetime.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqdict.h> #include <ntqdict.h>
#include <ntqdir.h> #include <ntqdir.h>
#include <ctype.h> #include <ctype.h>
@ -96,7 +96,7 @@ int main( int argc, char **argv )
TQString arg = (*it); TQString arg = (*it);
if ( arg == "--images" ) { if ( arg == "--images" ) {
if ( !images ) { if ( !images ) {
out << "#include <ntqimage.h>\n"; out << "#include <tqimage.h>\n";
out << "#include <ntqdict.h>\n"; out << "#include <ntqdict.h>\n";
images = TRUE; images = TRUE;
} }

@ -34,7 +34,7 @@
#ifndef TQANIMATIONWRITER_H #ifndef TQANIMATIONWRITER_H
#define TQANIMATIONWRITER_H #define TQANIMATIONWRITER_H
#include <ntqimage.h> #include <tqimage.h>
class TQAnimationWriterData; class TQAnimationWriterData;

@ -47,7 +47,7 @@
#include <ntqslider.h> #include <ntqslider.h>
#include <ntqspinbox.h> #include <ntqspinbox.h>
#include <ntqradiobutton.h> #include <ntqradiobutton.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqcursor.h> #include <ntqcursor.h>
#include <ntqdragobject.h> #include <ntqdragobject.h>

@ -46,7 +46,7 @@
#define TQTE_PIPE "TQtEmbedded-%1" #define TQTE_PIPE "TQtEmbedded-%1"
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqimage.h> #include <tqimage.h>
#include <ntqbitmap.h> #include <ntqbitmap.h>
#include <ntqtimer.h> #include <ntqtimer.h>
#include <ntqwmatrix.h> #include <ntqwmatrix.h>

Loading…
Cancel
Save