diff options
218 files changed, 1295 insertions, 1295 deletions
diff --git a/doc/classchart.doc b/doc/classchart.doc index daf469551..42bbaf228 100644 --- a/doc/classchart.doc +++ b/doc/classchart.doc @@ -260,9 +260,9 @@ <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,434,885,452" href="ntqiconset.html"> -<area shape="rect" coords="789,452,885,473" href="ntqimage.html"> -<area shape="rect" coords="789,468,895,489" href="ntqimageformatplugin.html"> -<area shape="rect" coords="789,489,895,505" href="qimageio.html"> +<area shape="rect" coords="789,452,885,473" href="tqimage.html"> +<area shape="rect" coords="789,468,895,489" href="tqimageformatplugin.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="785,524,868,542" href="ntqiodevice.html"> <area shape="rect" coords="785,542,872,558" href="ntqlibrary.html"> diff --git a/doc/datastreamformat.doc b/doc/datastreamformat.doc index 690060055..7a62e965f 100644 --- a/doc/datastreamformat.doc +++ b/doc/datastreamformat.doc @@ -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; otherwise the image is saved in PNG or BMP format (depending 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. \endlist \row \i TQMap diff --git a/doc/dnd.doc b/doc/dnd.doc index 27ac5937d..6da6117a5 100644 --- a/doc/dnd.doc +++ b/doc/dnd.doc @@ -60,7 +60,7 @@ QTextEdit widget source code. To start a drag, for example in a \link TQWidget::mouseMoveEvent() mouse motion event\endlink, create an object of the QDragObject 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. For example, to start dragging some text from a widget: @@ -107,7 +107,7 @@ void MyWidget::dragEnterEvent(QDragEnterEvent* event) { event->accept( QTextDrag::canDecode(event) || - QImageDrag::canDecode(event) + TQImageDrag::canDecode(event) ); } @@ -116,7 +116,7 @@ void MyWidget::dropEvent(QDropEvent* event) TQImage image; TQString text; - if ( QImageDrag::decode(event, image) ) { + if ( TQImageDrag::decode(event, image) ) { insertImageAt(image, event->pos()); } else if ( QTextDrag::decode(event, text) ) { 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 which of those it can accept. For example, QTextDrag provides support 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 -\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 filenames (or URLs). @@ -244,13 +244,13 @@ QByteArray encodedData(const char* mimetype) const \endlink members, and provide a set-method to encode the media data and static members canDecode() and decode() to decode incoming data, similar to -\link QImageDrag::canDecode() +\link TQImageDrag::canDecode() bool canDecode(QMimeSource*) const \endlink and -\link QImageDrag::decode() +\link TQImageDrag::decode() QByteArray decode(QMimeSource*) const \endlink -of QImageDrag. +of TQImageDrag. Of course, you can provide drag-only or drop-only support for a media type by omitting some of these methods. diff --git a/doc/features.doc b/doc/features.doc index b7e7b4bb5..01c1f7434 100644 --- a/doc/features.doc +++ b/doc/features.doc @@ -59,7 +59,7 @@ The available options are: \table \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 \i Microsoft Bitmap image file format. \i @@ -81,7 +81,7 @@ The available options are: \i Asynchronous I/O (\l QAsyncIO) \i \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 \row \i TQT_NO_MOVIE \i Animation support (\l QMovie) diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 3b9f0da0c..017f1840c 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -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="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="ntqimage.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="qimagedecoder.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="qimageformat.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="qimageformattype.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="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data +<tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder +<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="tqimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images +<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="tqimageformatplugin.html">TQImageFormatPlugin</a></b><td>Abstract base for custom image format plugins +<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="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="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 diff --git a/doc/html/biff-example.html b/doc/html/biff-example.html index 3ad0b2ddb..d65b9d673 100644 --- a/doc/html/biff-example.html +++ b/doc/html/biff-example.html @@ -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> * ) { if ( gotMail ) - <a href="ntqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &hasNewMail ); + <a href="tqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &hasNewMail ); else - <a href="ntqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &noNewMail ); + <a href="tqimage.html#bitBlt">bitBlt</a>( this, 0, 0, &noNewMail ); } diff --git a/doc/html/canvas-example.html b/doc/html/canvas-example.html index 32d05b269..70b9d2000 100644 --- a/doc/html/canvas-example.html +++ b/doc/html/canvas-example.html @@ -142,7 +142,7 @@ private: #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qprinter-h.html">ntqprinter.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qprogressdialog-h.html">ntqprogressdialog.h</a>> #include "canvas.h" @@ -174,21 +174,21 @@ static const int imageRTTI = 984376; class ImageItem: public <a href="tqcanvasrectangle.html">TQCanvasRectangle</a> { 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; } bool hit( const <a href="ntqpoint.html">TQPoint</a>&) const; protected: void drawShape( <a href="ntqpainter.html">TQPainter</a> & ); private: - <a href="ntqimage.html">TQImage</a> image; + <a href="tqimage.html">TQImage</a> image; <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 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) <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="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; -<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; } @@ -680,7 +680,7 @@ void <a name="f645"></a>Main::addButterfly() if ( butterfly_fn.isEmpty() ) return; 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[1] = butterflyimg[0].smoothScale( int(butterflyimg[0].width()*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) ); } <a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>* i = new ImageItem(butterflyimg[rand()%4],&canvas); -<a name="x2915"></a> i-><a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-butterflyimg-><a href="ntqimage.html#width">width</a>()), - rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-butterflyimg-><a href="ntqimage.html#height">height</a>())); +<a name="x2915"></a> i-><a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-butterflyimg-><a href="tqimage.html#width">width</a>()), + rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-butterflyimg-><a href="tqimage.html#height">height</a>())); i-><a href="tqcanvasitem.html#setZ">setZ</a>(rand()%256+250); i-><a href="tqcanvasitem.html#show">show</a>(); } @@ -701,7 +701,7 @@ void <a name="f646"></a>Main::addLogo() if ( logo_fn.isEmpty() ) return; 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[1] = logoimg[0].smoothScale( int(logoimg[0].width()*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) ); } <a href="tqcanvaspolygonalitem.html">TQCanvasPolygonalItem</a>* i = new ImageItem(logoimg[rand()%4],&canvas); - i-><a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-logoimg-><a href="ntqimage.html#width">width</a>()), - rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-logoimg-><a href="ntqimage.html#width">width</a>())); + i-><a href="tqcanvasitem.html#move">move</a>(rand()%(canvas.<a href="tqcanvas.html#width">width</a>()-logoimg-><a href="tqimage.html#width">width</a>()), + rand()%(canvas.<a href="tqcanvas.html#height">height</a>()-logoimg-><a href="tqimage.html#width">width</a>())); i-><a href="tqcanvasitem.html#setZ">setZ</a>(rand()%256+256); i-><a href="tqcanvasitem.html#show">show</a>(); } @@ -888,7 +888,7 @@ void <a name="f654"></a>Main::addRectangle() #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="qmenubar-h.html">ntqmenubar.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include "canvas.h" diff --git a/doc/html/chart-optionsform-cpp.html b/doc/html/chart-optionsform-cpp.html index c5e964054..f3881942e 100644 --- a/doc/html/chart-optionsform-cpp.html +++ b/doc/html/chart-optionsform-cpp.html @@ -38,7 +38,7 @@ body { background: #ffffff; color: black; } #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> #include <<a href="qfontdialog-h.html">ntqfontdialog.h</a>> #include <<a href="qframe-h.html">ntqframe.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> diff --git a/doc/html/classchart.html b/doc/html/classchart.html index 5d72ef831..5c4d2bf7f 100644 --- a/doc/html/classchart.html +++ b/doc/html/classchart.html @@ -250,9 +250,9 @@ body { background: #ffffff; color: black; } <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,434,885,452" href="ntqiconset.html"> -<area shape="rect" coords="789,452,885,473" href="ntqimage.html"> -<area shape="rect" coords="789,468,895,489" href="ntqimageformatplugin.html"> -<area shape="rect" coords="789,489,895,505" href="qimageio.html"> +<area shape="rect" coords="789,452,885,473" href="tqimage.html"> +<area shape="rect" coords="789,468,895,489" href="tqimageformatplugin.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="785,524,868,542" href="ntqiodevice.html"> <area shape="rect" coords="785,542,872,558" href="ntqlibrary.html"> diff --git a/doc/html/classes.html b/doc/html/classes.html index c8eda66fa..30b661c67 100644 --- a/doc/html/classes.html +++ b/doc/html/classes.html @@ -64,7 +64,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqdir.html">TQDir</a> <td align="right"> -<td><a href="ntqimage.html">TQImage</a> +<td><a href="tqimage.html">TQImage</a> <td align="right"> <td><a href="qpngimagepacker.html">TQPNGImagePacker</a> <td align="right"> @@ -75,7 +75,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="qdirectpainter.html">TQDirectPainter</a> <td align="right"> -<td><a href="qimageconsumer.html">TQImageConsumer</a> +<td><a href="tqimageconsumer.html">TQImageConsumer</a> <td align="right"> <td><a href="ntqpoint.html">TQPoint</a> <td align="right"> @@ -86,7 +86,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqdns.html">TQDns</a> <td align="right"> -<td><a href="qimagedecoder.html">TQImageDecoder</a> +<td><a href="tqimagedecoder.html">TQImageDecoder</a> <td align="right"> <td><a href="ntqpointarray.html">TQPointArray</a> <td align="right"> @@ -97,7 +97,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqdockarea.html">TQDockArea</a> <td align="right"> -<td><a href="qimagedrag.html">TQImageDrag</a> +<td><a href="tqimagedrag.html">TQImageDrag</a> <td align="right"> <td><a href="ntqpopupmenu.html">TQPopupMenu</a> <td align="right"> @@ -108,7 +108,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqdockwindow.html">TQDockWindow</a> <td align="right"> -<td><a href="qimageformat.html">TQImageFormat</a> +<td><a href="tqimageformat.html">TQImageFormat</a> <td align="right"> <td><a href="ntqprinter.html">TQPrinter</a> <td align="right"> @@ -119,7 +119,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="tqdomattr.html">TQDomAttr</a> <td align="right"> -<td><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a> +<td><a href="tqimageformatplugin.html">TQImageFormatPlugin</a> <td align="right"> <td><a href="ntqprocess.html">TQProcess</a> <td align="right"> @@ -130,7 +130,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="tqdomcdatasection.html">TQDomCDATASection</a> <td align="right"> -<td><a href="qimageformattype.html">TQImageFormatType</a> +<td><a href="tqimageformattype.html">TQImageFormatType</a> <td align="right"> <td><a href="ntqprogressbar.html">TQProgressBar</a> <td align="right"> @@ -141,7 +141,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="tqdomcharacterdata.html">TQDomCharacterData</a> <td align="right"> -<td><a href="qimageio.html">TQImageIO</a> +<td><a href="tqimageio.html">TQImageIO</a> <td align="right"> <td><a href="ntqprogressdialog.html">TQProgressDialog</a> <td align="right"> diff --git a/doc/html/datastreamformat.html b/doc/html/datastreamformat.html index a0ed8cf20..4d8bf78fe 100644 --- a/doc/html/datastreamformat.html +++ b/doc/html/datastreamformat.html @@ -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; otherwise the image is saved in PNG or BMP format (depending 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. </ul> <tr bgcolor="#f0f0f0"> <td valign="top">TQMap diff --git a/doc/html/designer-manual-16.html b/doc/html/designer-manual-16.html index db2286702..884083ec8 100644 --- a/doc/html/designer-manual-16.html +++ b/doc/html/designer-manual-16.html @@ -228,7 +228,7 @@ body { background: #ffffff; color: black; } <include location="local" impldecl="in implementation">pixmapchooser.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">ntqimage.h</include> + <include location="global" impldecl="in implementation">tqimage.h</include> <include location="global" impldecl="in declaration">ntqpixmap.h</include> <include location="local" impldecl="in implementation">pixmapcollectioneditor.ui.h</include> </includes> diff --git a/doc/html/desktop-example.html b/doc/html/desktop-example.html index 4f1d37b0d..9f839629b 100644 --- a/doc/html/desktop-example.html +++ b/doc/html/desktop-example.html @@ -49,7 +49,7 @@ any other. ** *****************************************************************************/ -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qbitmap-h.html">ntqbitmap.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qapplication-h.html">ntqapplication.h</a>> @@ -161,11 +161,11 @@ void rotate() int i; const int w = 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<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<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<w; x++ ) *p++ = (x+y)%128; } @@ -236,7 +236,7 @@ public: 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-><a href="qdragmoveevent.html#accept">accept</a>(); } @@ -252,7 +252,7 @@ public: void dropEvent( <a href="qdropevent.html">TQDropEvent</a> * e ) { <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#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>( &offscreen ); <a name="x1758"></a><a name="x1757"></a> drawShadeText( &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>(); - <a href="ntqimage.html#bitBlt">bitBlt</a>( this, x, y, &offscreen ); + <a href="tqimage.html#bitBlt">bitBlt</a>( this, x, y, &offscreen ); } void desktopWidget( const char *s = "Trolltech" ) diff --git a/doc/html/dnd.html b/doc/html/dnd.html index 502f5a55a..5614b21a2 100644 --- a/doc/html/dnd.html +++ b/doc/html/dnd.html @@ -64,7 +64,7 @@ sophistication): <tt>qt/examples/iconview/simple_dd</tt>, <tt>qt/examples/dragdr </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> 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. <p> For example, to start dragging some text from a widget: <pre> @@ -108,16 +108,16 @@ void MyWidget::dragEnterEvent(TQDragEnterEvent* event) { event->accept( 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) { - <a href="ntqimage.html">TQImage</a> image; + <a href="tqimage.html">TQImage</a> image; <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->pos()); } else if ( TQTextDrag::<a href="qtextdrag.html#decode">decode</a>(event, text) ) { insertTextAt(text, event->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 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 -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 -<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 filenames (or URLs). <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> members, and provide a set-method to encode the media data and static members canDecode() and decode() to decode incoming data, similar to -<a href="qimagedrag.html#canDecode">bool canDecode(TQMimeSource*) const</a> and -<a href="qimagedrag.html#decode">TQByteArray decode(TQMimeSource*) const</a> -of <a href="qimagedrag.html">TQImageDrag</a>. +<a href="tqimagedrag.html#canDecode">bool canDecode(TQMimeSource*) const</a> and +<a href="tqimagedrag.html#decode">TQByteArray decode(TQMimeSource*) const</a> +of <a href="tqimagedrag.html">TQImageDrag</a>. Of course, you can provide drag-only or drop-only support for a media type by omitting some of these methods. <p> Subclasses of TQStoredDrag provide a set-method to encode the media diff --git a/doc/html/draganddrop.html b/doc/html/draganddrop.html index 96123311f..abc15b817 100644 --- a/doc/html/draganddrop.html +++ b/doc/html/draganddrop.html @@ -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="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="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="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 diff --git a/doc/html/emb-features.html b/doc/html/emb-features.html index 252fe36aa..035040abf 100644 --- a/doc/html/emb-features.html +++ b/doc/html/emb-features.html @@ -46,7 +46,7 @@ dependencies are expressed in <tt>ntqfeatures.h</tt>. <p> The available options are: <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" 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 <td valign="top">Microsoft Bitmap image file format. <td valign="top"> @@ -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"> <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"> <tr bgcolor="#d0d0d0"> <td valign="top">TQT_NO_MOVIE <td valign="top">Animation support (<a href="ntqmovie.html">TQMovie</a>) diff --git a/doc/html/functions.html b/doc/html/functions.html index 2bf662c5f..339fd403a 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -136,7 +136,7 @@ abort: <a href="ntqlayout.html#alignmentRect">TQLayout</a><li>all: <a href="qmacmime.html#all">TQMacMime</a> <a href="qwindowsmime.html#all">TQWindowsMime</a><li>allColumnsShowFocus: <a href="ntqlistview.html#allColumnsShowFocus">TQListView</a><li>allGray: - <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="ntqapplication.html#allWidgets">TQApplication</a><li>alloc: <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="ntqsocketdevice.html#bind">TQSocketDevice</a><li>bindValue: <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="ntqimage.html#bitOrder">TQImage</a><li>bitmap: + <a href="tqimage.html#bitBlt">TQImage</a> <a href="ntqpaintdevice.html#bitBlt">TQPaintDevice</a><li>bitOrder: + <a href="tqimage.html#bitOrder">TQImage</a><li>bitmap: <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="tqobject.html#blockSignals">TQObject</a><li>blocking: <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="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="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#bytesWritten">TQSocket</a><li><a name="c"></a> c: @@ -321,7 +321,7 @@ c: <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="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="ntqtextcodec.html#canEncode">TQTextCodec</a><li>canInsert: <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="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="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="ntqtextedit.html#charAt">TQTextEdit</a><li>charWidth: <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="tqcanvasitem.html#collidesWith">TQCanvasItem</a><li>collisions: <a href="tqcanvas.html#collisions">TQCanvas</a> <a href="tqcanvasitem.html#collisions">TQCanvasItem</a><li>color: - <a href="ntqbrush.html#color">TQBrush</a> <a href="tqcanvastext.html#color">TQCanvasText</a> <a href="qcolorgroup.html#color">TQColorGroup</a> <a href="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="ntqprinter.html#colorMode">TQPrinter</a><li>colorNames: <a href="ntqcolor.html#colorNames">TQColor</a><li>colorSpec: <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="ntqlistview.html#columnAlignment">TQListView</a><li>columnAt: <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="tqcanvasspline.html#controlPoints">TQCanvasSpline</a><li>controllingUnknown: <a href="qaxaggregated.html#controllingUnknown">TQAxAggregated</a><li>convertBitOrder: - <a href="ntqimage.html#convertBitOrder">TQImage</a><li>convertDepth: - <a href="ntqimage.html#convertDepth">TQImage</a><li>convertDepthWithPalette: - <a href="ntqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage: + <a href="tqimage.html#convertBitOrder">TQImage</a><li>convertDepth: + <a href="tqimage.html#convertDepth">TQImage</a><li>convertDepthWithPalette: + <a href="tqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage: <a href="ntqpixmap.html#convertFromImage">TQPixmap</a><li>convertFromMime: <a href="qmacmime.html#convertFromMime">TQMacMime</a> <a href="qwindowsmime.html#convertFromMime">TQWindowsMime</a><li>convertFromPlainText: <a href="ntqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators: @@ -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#convertorName">TQMacMime</a> <a href="qwindowsmime.html#convertorName">TQWindowsMime</a><li>coords: <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="ntqpixmap.html#copyBlt">TQPixmap</a><li>cornerWidget: <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="ntqlocale.html#country">TQLocale</a><li>countryToString: <a href="ntqlocale.html#countryToString">TQLocale</a><li>create: - <a href="qaxfactory.html#create">TQAxFactory</a> <a href="qglcontext.html#create">TQGLContext</a> <a href="qgfxdriverfactory.html#create">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#create">TQGfxDriverPlugin</a> <a href="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="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#createAttributeNS">TQDomDocument</a><li>createCDATASection: <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#createForName">TQTextCodecPlugin</a><li>createGfx: <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="qaxfactory.html#createObject">TQAxFactory</a><li>createObjectWrapper: <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="qdoublevalidator.html#decimals">TQDoubleValidator</a><li>declHandler: <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="ntqfile.html#decodeName">TQFile</a><li>decodeToUnicodeUris: <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#decompositionTag">TQChar</a><li>defaultButtonPressed: <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="ntqstylesheet.html#defaultSheet">TQStyleSheet</a><li>defaultValue: <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#definesFontStrikeOut">TQStyleSheetItem</a><li>definesFontUnderline: <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="ntqurloperator.html#deleteNetworkProtocol">TQUrlOperator</a><li>delta: <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="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="qmetaproperty.html#designable">TQMetaProperty</a><li>desktop: <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="tqobject.html#destroyed">TQObject</a><li>det: <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="qscreen.html#deviceHeight">TQScreen</a><li>deviceIsPixmap: <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="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="ntqimage.html#dotsPerMeterX">TQImage</a><li>dotsPerMeterY: - <a href="ntqimage.html#dotsPerMeterY">TQImage</a><li>doubleBuffer: + <a href="tqimage.html#dotsPerMeterX">TQImage</a><li>dotsPerMeterY: + <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="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: @@ -868,7 +868,7 @@ echoMode: <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="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#endDTD">TQXmlLexicalHandler</a><li>endDocument: <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="tqsqlform.html#fieldToWidget">TQSqlForm</a><li>fileHighlighted: <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="ntqfiledialog.html#fileSelected">TQFileDialog</a><li>filesSelected: <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="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: @@ -1012,8 +1012,8 @@ falseText: <a href="qcolorgroup.html#foreground">TQColorGroup</a><li>foregroundColor: <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="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="qimagedecoder.html#formatName">TQImageDecoder</a> <a href="qimageformattype.html#formatName">TQImageFormatType</a><li>formatValue: + <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="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="ntqtextbrowser.html#forward">TQTextBrowser</a><li>forwardAvailable: <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="ntqframe.html#frameChanged">TQFrame</a><li>frameCount: <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="ntqmovie.html#frameImage">TQMovie</a><li>frameNumber: <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="ntqstring.html#fromLatin1">TQString</a><li>fromLocal8Bit: <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="tqxmlinputsource.html#fromRawData">TQXmlInputSource</a><li>fromStrList: <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="qaxscript.html#functions">TQAxScript</a> <a href="qaxscriptmanager.html#functions">TQAxScriptManager</a><li><a name="g"></a> 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="qglcontext.html#generateFontDisplayLists">TQGLContext</a><li>geometry: <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="ntqlineedit.html#hasAcceptableInput">TQLineEdit</a><li>hasAlpha: <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="ntqtabdialog.html#hasApplyButton">TQTabDialog</a><li>hasAttribute: <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="qstyleoption.html#headerSection">TQStyleOption</a><li>headerWidth: <a href="ntqheader.html#headerWidth">TQHeader</a><li>height: - <a href="tqcanvas.html#height">TQCanvas</a> <a href="tqcanvasellipse.html#height">TQCanvasEllipse</a> <a href="tqcanvasrectangle.html#height">TQCanvasRectangle</a> <a href="tqcanvassprite.html#height">TQCanvasSprite</a> <a href="qdirectpainter.html#height">TQDirectPainter</a> <a href="ntqfontmetrics.html#height">TQFontMetrics</a> <a href="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="ntqpaintdevicemetrics.html#heightMM">TQPaintDeviceMetrics</a><li>help: <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#imEndEvent">TQWidget</a><li>imStartEvent: <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="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#importNode">TQDomDocument</a><li>inFont: <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="qaxbase.html#initializeRemote">TQAxBase</a><li>initialized: <a href="qglcontext.html#initialized">TQGLContext</a><li>inputFormatList: - <a href="ntqimage.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#inputFormatList">TQImage</a><li>inputFormats: + <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="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: @@ -1288,7 +1288,7 @@ icon: <a href="tqsqlpropertymap.html#installDefaultMap">TQSqlPropertyMap</a><li>installEditorFactory: <a href="tqdatatable.html#installEditorFactory">TQDataTable</a><li>installEventFilter: <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="tqdatatable.html#installPropertyMap">TQDataTable</a> <a href="tqsqlform.html#installPropertyMap">TQSqlForm</a><li>installTranslator: <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="tqcanvasview.html#inverseWorldMatrix">TQCanvasView</a><li>invert: <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="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="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: @@ -1380,7 +1380,7 @@ icon: <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="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="ntqscrollview.html#isHorizontalSliderPressed">TQScrollView</a><li>isHorizontallyStretchable: <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="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="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="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: @@ -1512,7 +1512,7 @@ join: <a href="ntqstringlist.html#join">TQStringList</a><li>joinStyle: <a href="ntqpen.html#joinStyle">TQPen</a><li>joining: <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: <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: @@ -1522,7 +1522,7 @@ key: <a href="ntqtabbar.html#keyboardFocusTab">TQTabBar</a><li>keyboardGrabber: <a href="tqwidget.html#keyboardGrabber">TQWidget</a><li>keyboardHandler: <a href="qwsserver.html#keyboardHandler">TQWSServer</a><li>keys: - <a href="qgfxdriverfactory.html#keys">TQGfxDriverFactory</a> <a href="qgfxdriverplugin.html#keys">TQGfxDriverPlugin</a> <a href="qhttpheader.html#keys">TQHttpHeader</a> <a href="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="ntqprocess.html#kill">TQProcess</a><li>killLine: <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="qstyleoption.html#listViewItem">TQStyleOption</a><li>listen: <a href="ntqsocketdevice.html#listen">TQSocketDevice</a><li>load: - <a href="qaxscript.html#load">TQAxScript</a> <a href="qaxscriptmanager.html#load">TQAxScriptManager</a> <a href="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#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="ntqstring.html#local8Bit">TQString</a><li>localData: <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="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="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#mirroredChar">TQChar</a><li>mixedColor: <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="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="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="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="ntqlistbox.html#numColumns">TQListBox</a><li>numCopies: <a href="ntqprinter.html#numCopies">TQPrinter</a><li>numDigits: @@ -1839,7 +1839,7 @@ name: object: <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="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#offsetY">TQCanvasPixmap</a><li>ok: <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="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="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&: + <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&: <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&=: <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*: @@ -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/-eq">TQPoint</a> <a href="ntqsize.html#operator/-eq">TQSize</a><li>operator<: <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<<: - <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<=: + <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<=: <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="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>: + <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="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>: <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>=: <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>>: - <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="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|: @@ -1912,8 +1912,8 @@ object: <a href="ntqdockwindow.html#orientationChanged">TQDockWindow</a><li>origin: <a href="qgridlayout.html#origin">TQGridLayout</a><li>outputFileName: <a href="ntqprinter.html#outputFileName">TQPrinter</a><li>outputFormatList: - <a href="ntqimage.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#outputFormatList">TQImage</a><li>outputFormats: + <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="ntqlcdnumber.html#overflow">TQLCDNumber</a><li>overlayContext: <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#paragraphRect">TQTextEdit</a><li>paragraphs: <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="tqdomnode.html#parentNode">TQDomNode</a><li>parentWidget: <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="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="ntqcolor.html#pixel">TQColor</a> <a href="ntqimage.html#pixel">TQImage</a><li>pixelIndex: - <a href="ntqimage.html#pixelIndex">TQImage</a><li>pixelMetric: + <a href="ntqcolor.html#pixel">TQColor</a> <a href="tqimage.html#pixel">TQImage</a><li>pixelIndex: + <a href="tqimage.html#pixelIndex">TQImage</a><li>pixelMetric: <a href="ntqstyle.html#pixelMetric">TQStyle</a><li>pixelSize: <a href="ntqfont.html#pixelSize">TQFont</a> <a href="ntqfontinfo.html#pixelSize">TQFontInfo</a><li>pixelType: <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="tqobject.html#qt_find_obj_child">TQObject</a><li>qualifiedNames: <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="ntqaccessible.html#queryAccessibleInterface">TQAccessible</a><li>queryChild: <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="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="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="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: @@ -2186,7 +2186,7 @@ rBottom: <a href="tqdataview.html#record">TQDataView</a> <a href="tqsqldatabase.html#record">TQSqlDatabase</a> <a href="tqsqldriver.html#record">TQSqlDriver</a><li>recordInfo: <a href="tqsqldatabase.html#recordInfo">TQSqlDatabase</a> <a href="tqsqldriver.html#recordInfo">TQSqlDriver</a><li>recordType: <a href="ntqdns.html#recordType">TQDns</a><li>rect: - <a href="qaccessibleinterface.html#rect">TQAccessibleInterface</a> <a href="tqcanvas.html#rect">TQCanvas</a> <a href="tqcanvasrectangle.html#rect">TQCanvasRectangle</a> <a href="qdirectpainter.html#rect">TQDirectPainter</a> <a href="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="ntqcolor.html#red">TQColor</a><li>redirect: <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="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="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="ntqnetworkprotocol.html#registerNetworkProtocol">TQNetworkProtocol</a><li>registerSocketNotifier: <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="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="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="tqwidget.html#resetInputContext">TQWidget</a><li>resetRawData: <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> sRect: <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="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="ntqimage.html#scaleHeight">TQImage</a><li>scaleWidth: - <a href="ntqimage.html#scaleWidth">TQImage</a><li>scanLine: - <a href="ntqimage.html#scanLine">TQImage</a><li>screen: + <a href="tqimage.html#scaleHeight">TQImage</a><li>scaleWidth: + <a href="tqimage.html#scaleWidth">TQImage</a><li>scanLine: + <a href="tqimage.html#scanLine">TQImage</a><li>screen: <a href="ntqdesktopwidget.html#screen">TQDesktopWidget</a><li>screenGeometry: <a href="ntqdesktopwidget.html#screenGeometry">TQDesktopWidget</a><li>screenGfx: <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="ntqlistview.html#setAllColumnsShowFocus">TQListView</a><li>setAlpha: <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="tqcanvasellipse.html#setAngles">TQCanvasEllipse</a><li>setAnimated: <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#setColStretch">TQGridLayout</a><li>setCollapsible: <a href="ntqsplitter.html#setCollapsible">TQSplitter</a><li>setColor: - <a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="qcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="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="ntqapplication.html#setColorSpec">TQApplication</a><li>setColormap: <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="qglformat.html#setDepth">TQGLFormat</a><li>setDescending: <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="ntqapplication.html#setDesktopSettingsAware">TQApplication</a><li>setDevice: <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#setDockWindowsMovable">TQMainWindow</a><li>setDocumentLocator: <a href="tqxmlcontenthandler.html#setDocumentLocator">TQXmlContentHandler</a><li>setDotsPerMeterX: - <a href="ntqimage.html#setDotsPerMeterX">TQImage</a><li>setDotsPerMeterY: - <a href="ntqimage.html#setDotsPerMeterY">TQImage</a><li>setDoubleBuffer: + <a href="tqimage.html#setDotsPerMeterX">TQImage</a><li>setDotsPerMeterY: + <a href="tqimage.html#setDotsPerMeterY">TQImage</a><li>setDoubleBuffer: <a href="qglformat.html#setDoubleBuffer">TQGLFormat</a><li>setDoubleBuffering: <a href="tqcanvas.html#setDoubleBuffering">TQCanvas</a><li>setDoubleClickInterval: <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="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="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="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: @@ -2700,18 +2700,18 @@ sRect: <a href="qstylesheetitem.html#setFontUnderline">TQStyleSheetItem</a><li>setFontWeight: <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="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="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="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#setFrameShadow">TQFrame</a><li>setFrameShape: <a href="ntqframe.html#setFrameShape">TQFrame</a><li>setFrameStyle: <a href="ntqframe.html#setFrameStyle">TQFrame</a><li>setFromTo: <a href="ntqprinter.html#setFromTo">TQPrinter</a><li>setFullPage: <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="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: @@ -2737,7 +2737,7 @@ sRect: <a href="tqsqldatabase.html#setHostName">TQSqlDatabase</a><li>setHour: <a href="qtimeedit.html#setHour">TQTimeEdit</a><li>setHsv: <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#setIconPixmap">TQMessageBox</a><li>setIconProvider: <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="ntqmenudata.html#setId">TQMenuData</a><li>setIdentifier: <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="ntqlabel.html#setIndent">TQLabel</a><li>setIndicator: <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="qstylesheetitem.html#setLogicalFontSize">TQStyleSheetItem</a><li>setLogicalFontSizeStep: <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="ntqapplication.html#setMainWidget">TQApplication</a><li>setManagerProperty: <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="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="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="ntqprinter.html#setNumCopies">TQPrinter</a><li>setNumDigits: <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="tqsqlerror.html#setNumber">TQSqlError</a><li>setOctMode: <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="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: @@ -2892,7 +2892,7 @@ sRect: <a href="ntqtextedit.html#setPaper">TQTextEdit</a><li>setPaperSource: <a href="ntqprinter.html#setPaperSource">TQPrinter</a><li>setParagraphBackgroundColor: <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="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: @@ -2900,7 +2900,7 @@ sRect: <a href="ntqprogressbar.html#setPercentageVisible">TQProgressBar</a><li>setPermissions: <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="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="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: @@ -2928,7 +2928,7 @@ sRect: <a href="qaxbase.html#setPropertyWritable">TQAxBase</a><li>setProtocol: <a href="ntqurl.html#setProtocol">TQUrl</a><li>setProtocolDetail: <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="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: @@ -2996,7 +2996,7 @@ sRect: <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="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="tqwidget.html#setSizeIncrement">TQWidget</a><li>setSizeLimit: <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="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="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="qglformat.html#setStencil">TQGLFormat</a><li>setSteps: <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="ntqtabwidget.html#setTabToolTip">TQTabWidget</a><li>setTagName: <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="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: @@ -3187,7 +3187,7 @@ sRect: <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="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="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: @@ -3206,7 +3206,7 @@ sRect: <a href="ntqmetaobject.html#slotNames">TQMetaObject</a><li>slotUpdate: <a href="ntqiconview.html#slotUpdate">TQIconView</a><li>smallDecimalPoint: <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="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: @@ -3261,7 +3261,7 @@ sRect: <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="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="qhttpresponseheader.html#statusCode">TQHttpResponseHeader</a><li>statusTip: <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="ntqtable.html#swapCells">TQTable</a><li>swapColumns: <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="ntqtextedit.html#sync">TQTextEdit</a><li>syncX: <a href="ntqapplication.html#syncX">TQApplication</a><li>syntaxHighlighter: <a href="ntqtextedit.html#syntaxHighlighter">TQTextEdit</a><li>system: <a href="ntqlocale.html#system">TQLocale</a><li>systemBitOrder: - <a href="ntqimage.html#systemBitOrder">TQImage</a><li>systemByteOrder: - <a href="ntqimage.html#systemByteOrder">TQImage</a><li>systemId: + <a href="tqimage.html#systemBitOrder">TQImage</a><li>systemByteOrder: + <a href="tqimage.html#systemByteOrder">TQImage</a><li>systemId: <a href="tqdomdocumenttype.html#systemId">TQDomDocumentType</a> <a href="tqdomentity.html#systemId">TQDomEntity</a> <a href="tqdomnotation.html#systemId">TQDomNotation</a> <a href="tqxmlparseexception.html#systemId">TQXmlParseException</a><li><a name="t"></a> tab: <a href="qstyleoption.html#tab">TQStyleOption</a> <a href="ntqtabbar.html#tab">TQTabBar</a><li>tabArray: @@ -3351,18 +3351,18 @@ tab: <a href="ntqbitarray.html#testBit">TQBitArray</a><li>testOption: <a href="qglformat.html#testOption">TQGLFormat</a><li>testWFlags: <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="ntqtextedit.html#textCursor">TQTextEdit</a><li>textEdit: <a href="ntqsyntaxhighlighter.html#textEdit">TQSyntaxHighlighter</a><li>textFlags: <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="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="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="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="qiconviewitem.html#textRect">TQIconViewItem</a><li>texts: <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="ntqmovie.html#unpause">TQMovie</a><li>unregisterClass: <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="tqwidget.html#unsetCursor">TQWidget</a><li>unsetDevice: <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> vScrollBarMode: <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="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: @@ -3610,7 +3610,7 @@ wait: <a href="qmacstyle.html#widgetSizePolicy">TQMacStyle</a><li>widgetToField: <a href="tqsqlform.html#widgetToField">TQSqlForm</a><li>widgets: <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="ntqpaintdevicemetrics.html#widthMM">TQPaintDeviceMetrics</a><li>widthUsed: <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="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="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="ntqdatastream.html#writeBytes">TQDataStream</a><li>writeEntry: <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#x11SetAppDpiY">TQPaintDevice</a><li>x11Visual: <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="qdirectpainter.html#xOffset">TQDirectPainter</a><li>xTilt: <a href="qtabletevent.html#xTilt">TQTabletEvent</a><li>xVelocity: diff --git a/doc/html/graphics.html b/doc/html/graphics.html index dc0b78815..7b0fe30e0 100644 --- a/doc/html/graphics.html +++ b/doc/html/graphics.html @@ -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="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="ntqimage.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="qimagedecoder.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="qimageformattype.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="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data +<tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder +<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="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format +<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="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="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 diff --git a/doc/html/headerfilesynonyms b/doc/html/headerfilesynonyms index abd705512..a5ec23a2d 100644 --- a/doc/html/headerfilesynonyms +++ b/doc/html/headerfilesynonyms @@ -3,10 +3,10 @@ qaccessibleobject.h ntqaccessible.h qactiongroup.h ntqaction.h qasciicacheiterator.h ntqasciicache.h qasciidictiterator.h ntqasciidict.h -qimageconsumer.h ntqasyncimageio.h -qimageformat.h ntqasyncimageio.h -qimageformattype.h ntqasyncimageio.h -qimagedecoder.h ntqasyncimageio.h +tqimageconsumer.h ntqasyncimageio.h +tqimageformat.h ntqasyncimageio.h +tqimageformattype.h ntqasyncimageio.h +tqimagedecoder.h ntqasyncimageio.h qaxaggregated.h qaxbindable.h qaxscriptengine.h qaxscript.h qaxscriptmanager.h qaxscript.h @@ -52,7 +52,7 @@ tqdomentityreference.h tqdom.h tqdomprocessinginstruction.h tqdom.h qstoreddrag.h ntqdragobject.h qtextdrag.h ntqdragobject.h -qimagedrag.h ntqdragobject.h +tqimagedrag.h ntqdragobject.h quridrag.h ntqdragobject.h qcolordrag.h ntqdragobject.h qtimerevent.h ntqevent.h @@ -90,7 +90,7 @@ qiconfactory.h ntqiconset.h qicondragitem.h ntqiconview.h qicondrag.h ntqiconview.h qiconviewitem.h ntqiconview.h -qimageio.h ntqimage.h +tqimageio.h tqimage.h qintcacheiterator.h ntqintcache.h qintdictiterator.h ntqintdict.h qglayoutiterator.h ntqlayout.h diff --git a/doc/html/headers.html b/doc/html/headers.html index 529d153e5..161bf2c47 100644 --- a/doc/html/headers.html +++ b/doc/html/headers.html @@ -126,8 +126,8 @@ body { background: #ffffff; color: black; } <li><a href="qhttp-h.html">ntqhttp.h</a> <li><a href="qiconset-h.html">ntqiconset.h</a> <li><a href="qiconview-h.html">ntqiconview.h</a> -<li><a href="qimage-h.html">ntqimage.h</a> -<li><a href="qimageformatplugin-h.html">ntqimageformatplugin.h</a> +<li><a href="tqimage-h.html">tqimage.h</a> +<li><a href="tqimageformatplugin-h.html">tqimageformatplugin.h</a> <li><a href="qinputdialog-h.html">ntqinputdialog.h</a> <li><a href="qintcache-h.html">ntqintcache.h</a> <li><a href="qintdict-h.html">ntqintdict.h</a> diff --git a/doc/html/hello-example.html b/doc/html/hello-example.html index 4410cb178..6145ecbce 100644 --- a/doc/html/hello-example.html +++ b/doc/html/hello-example.html @@ -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>(); // 4: Copy the pixmap to the Hello widget - <a href="ntqimage.html#bitBlt">bitBlt</a>( this, pmx, pmy, &pm ); + <a href="tqimage.html#bitBlt">bitBlt</a>( this, pmx, pmy, &pm ); } </pre> diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html index cc6be7fa6..ade4f42f8 100644 --- a/doc/html/hierarchy.html +++ b/doc/html/hierarchy.html @@ -120,13 +120,13 @@ classes in the TQt API. <li><a href="qicondragitem.html">TQIconDragItem</a> <li><a href="qiconfactory.html">TQIconFactory</a> <li><a href="ntqiconset.html">TQIconSet</a> -<li><a href="ntqimage.html">TQImage</a> -<li><a href="qimageconsumer.html">TQImageConsumer</a> -<li><a href="qimagedecoder.html">TQImageDecoder</a> -<li><a href="qimageformat.html">TQImageFormat</a> -<li><a href="ntqimageformatplugin.html">TQImageFormatPlugin</a> -<li><a href="qimageformattype.html">TQImageFormatType</a> -<li><a href="qimageio.html">TQImageIO</a> +<li><a href="tqimage.html">TQImage</a> +<li><a href="tqimageconsumer.html">TQImageConsumer</a> +<li><a href="tqimagedecoder.html">TQImageDecoder</a> +<li><a href="tqimageformat.html">TQImageFormat</a> +<li><a href="tqimageformatplugin.html">TQImageFormatPlugin</a> +<li><a href="tqimageformattype.html">TQImageFormatType</a> +<li><a href="tqimageio.html">TQImageIO</a> <li><a href="qintcacheiterator.html">TQIntCacheIterator</a> <li><a href="qintdictiterator.html">TQIntDictIterator</a> <li><a href="ntqiodevice.html">TQIODevice</a> @@ -328,7 +328,7 @@ classes in the TQt API. <li><a href="ntqdragobject.html">TQDragObject</a> <ul> <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> <ul> <li><a href="qcolordrag.html">TQColorDrag</a> diff --git a/doc/html/images.html b/doc/html/images.html index 8f4f60757..062caf531 100644 --- a/doc/html/images.html +++ b/doc/html/images.html @@ -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="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="ntqimage.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="qimagedecoder.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="qimageformattype.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="tqimage.html">TQImage</a></b><td>Hardware-independent pixmap representation with direct access to the pixel data +<tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder +<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="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format +<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="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="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 diff --git a/doc/html/index b/doc/html/index index aa89ed74d..4703912b4 100644 --- a/doc/html/index +++ b/doc/html/index @@ -3123,136 +3123,136 @@ "QIconViewItem::x" qiconviewitem.html#x "QIconViewItem::y" qiconviewitem.html#y "QIconViewItem::~QIconViewItem" qiconviewitem.html#~QIconViewItem -"TQImage" ntqimage.html -"TQImage::Endian" ntqimage.html#Endian -"TQImage::ScaleMode" ntqimage.html#ScaleMode -"TQImage::allGray" ntqimage.html#allGray -"TQImage::bitOrder" ntqimage.html#bitOrder -"TQImage::bits" ntqimage.html#bits -"TQImage::bytesPerLine" ntqimage.html#bytesPerLine -"TQImage::color" ntqimage.html#color -"TQImage::colorTable" ntqimage.html#colorTable -"TQImage::convertBitOrder" ntqimage.html#convertBitOrder -"TQImage::convertDepth" ntqimage.html#convertDepth -"TQImage::convertDepthWithPalette" ntqimage.html#convertDepthWithPalette -"TQImage::copy" ntqimage.html#copy -"TQImage::create" ntqimage.html#create -"TQImage::createAlphaMask" ntqimage.html#createAlphaMask -"TQImage::createHeuristicMask" ntqimage.html#createHeuristicMask -"TQImage::depth" ntqimage.html#depth -"TQImage::detach" ntqimage.html#detach -"TQImage::dotsPerMeterX" ntqimage.html#dotsPerMeterX -"TQImage::dotsPerMeterY" ntqimage.html#dotsPerMeterY -"TQImage::fill" ntqimage.html#fill -"TQImage::fromMimeSource" ntqimage.html#fromMimeSource -"TQImage::hasAlphaBuffer" ntqimage.html#hasAlphaBuffer -"TQImage::height" ntqimage.html#height -"TQImage::imageFormat" ntqimage.html#imageFormat -"TQImage::inputFormatList" ntqimage.html#inputFormatList -"TQImage::inputFormats" ntqimage.html#inputFormats -"TQImage::invertPixels" ntqimage.html#invertPixels -"TQImage::isGrayscale" ntqimage.html#isGrayscale -"TQImage::isNull" ntqimage.html#isNull -"TQImage::jumpTable" ntqimage.html#jumpTable -"TQImage::load" ntqimage.html#load -"TQImage::loadFromData" ntqimage.html#loadFromData -"TQImage::mirror" ntqimage.html#mirror -"TQImage::numBytes" ntqimage.html#numBytes -"TQImage::numColors" ntqimage.html#numColors -"TQImage::offset" ntqimage.html#offset -"TQImage::operator!=" ntqimage.html#operator!-eq -"TQImage::operator=" ntqimage.html#operator-eq -"TQImage::operator==" ntqimage.html#operator-eq-eq -"TQImage::outputFormatList" ntqimage.html#outputFormatList -"TQImage::outputFormats" ntqimage.html#outputFormats -"TQImage::pixel" ntqimage.html#pixel -"TQImage::pixelIndex" ntqimage.html#pixelIndex -"TQImage::rect" ntqimage.html#rect -"TQImage::reset" ntqimage.html#reset -"TQImage::save" ntqimage.html#save -"TQImage::scale" ntqimage.html#scale -"TQImage::scaleHeight" ntqimage.html#scaleHeight -"TQImage::scaleWidth" ntqimage.html#scaleWidth -"TQImage::scanLine" ntqimage.html#scanLine -"TQImage::setAlphaBuffer" ntqimage.html#setAlphaBuffer -"TQImage::setColor" ntqimage.html#setColor -"TQImage::setDotsPerMeterX" ntqimage.html#setDotsPerMeterX -"TQImage::setDotsPerMeterY" ntqimage.html#setDotsPerMeterY -"TQImage::setNumColors" ntqimage.html#setNumColors -"TQImage::setOffset" ntqimage.html#setOffset -"TQImage::setPixel" ntqimage.html#setPixel -"TQImage::setText" ntqimage.html#setText -"TQImage::size" ntqimage.html#size -"TQImage::smoothScale" ntqimage.html#smoothScale -"TQImage::swapRGB" ntqimage.html#swapRGB -"TQImage::systemBitOrder" ntqimage.html#systemBitOrder -"TQImage::systemByteOrder" ntqimage.html#systemByteOrder -"TQImage::text" ntqimage.html#text -"TQImage::textKeys" ntqimage.html#textKeys -"TQImage::textLanguages" ntqimage.html#textLanguages -"TQImage::textList" ntqimage.html#textList -"TQImage::valid" ntqimage.html#valid -"TQImage::width" ntqimage.html#width -"TQImage::xForm" ntqimage.html#xForm -"TQImage::~TQImage" ntqimage.html#~TQImage -"QImageConsumer" qimageconsumer.html -"QImageConsumer::changed" qimageconsumer.html#changed -"QImageConsumer::end" qimageconsumer.html#end -"QImageConsumer::frameDone" qimageconsumer.html#frameDone -"QImageConsumer::setFramePeriod" qimageconsumer.html#setFramePeriod -"QImageConsumer::setLooping" qimageconsumer.html#setLooping -"QImageConsumer::setSize" qimageconsumer.html#setSize -"QImageDecoder" qimagedecoder.html -"QImageDecoder::decode" qimagedecoder.html#decode -"QImageDecoder::format" qimagedecoder.html#format -"QImageDecoder::formatName" qimagedecoder.html#formatName -"QImageDecoder::image" qimagedecoder.html#image -"QImageDecoder::inputFormats" qimagedecoder.html#inputFormats -"QImageDecoder::registerDecoderFactory" qimagedecoder.html#registerDecoderFactory -"QImageDecoder::unregisterDecoderFactory" qimagedecoder.html#unregisterDecoderFactory -"QImageDecoder::~QImageDecoder" qimagedecoder.html#~QImageDecoder -"QImageDrag" qimagedrag.html -"QImageDrag::canDecode" qimagedrag.html#canDecode -"QImageDrag::decode" qimagedrag.html#decode -"QImageDrag::setImage" qimagedrag.html#setImage -"QImageDrag::~QImageDrag" qimagedrag.html#~QImageDrag -"QImageFormat" qimageformat.html -"QImageFormat::decode" qimageformat.html#decode -"QImageFormatPlugin" ntqimageformatplugin.html -"QImageFormatPlugin::installIOHandler" ntqimageformatplugin.html#installIOHandler -"QImageFormatPlugin::keys" ntqimageformatplugin.html#keys -"QImageFormatPlugin::~QImageFormatPlugin" ntqimageformatplugin.html#~QImageFormatPlugin -"QImageFormatType" qimageformattype.html -"QImageFormatType::decoderFor" qimageformattype.html#decoderFor -"QImageFormatType::formatName" qimageformattype.html#formatName -"QImageFormatType::~QImageFormatType" qimageformattype.html#~QImageFormatType -"QImageIO" qimageio.html -"QImageIO::defineIOHandler" qimageio.html#defineIOHandler -"QImageIO::description" qimageio.html#description -"QImageIO::fileName" qimageio.html#fileName -"QImageIO::format" qimageio.html#format -"QImageIO::gamma" qimageio.html#gamma -"QImageIO::image" qimageio.html#image -"QImageIO::imageFormat" qimageio.html#imageFormat -"QImageIO::init" qimageio.html#init -"QImageIO::inputFormats" qimageio.html#inputFormats -"QImageIO::ioDevice" qimageio.html#ioDevice -"QImageIO::outputFormats" qimageio.html#outputFormats -"QImageIO::parameters" qimageio.html#parameters -"QImageIO::quality" qimageio.html#quality -"QImageIO::read" qimageio.html#read -"QImageIO::setDescription" qimageio.html#setDescription -"QImageIO::setFileName" qimageio.html#setFileName -"QImageIO::setFormat" qimageio.html#setFormat -"QImageIO::setGamma" qimageio.html#setGamma -"QImageIO::setIODevice" qimageio.html#setIODevice -"QImageIO::setImage" qimageio.html#setImage -"QImageIO::setParameters" qimageio.html#setParameters -"QImageIO::setQuality" qimageio.html#setQuality -"QImageIO::setStatus" qimageio.html#setStatus -"QImageIO::status" qimageio.html#status -"QImageIO::write" qimageio.html#write -"QImageIO::~QImageIO" qimageio.html#~QImageIO +"TQImage" tqimage.html +"TQImage::Endian" tqimage.html#Endian +"TQImage::ScaleMode" tqimage.html#ScaleMode +"TQImage::allGray" tqimage.html#allGray +"TQImage::bitOrder" tqimage.html#bitOrder +"TQImage::bits" tqimage.html#bits +"TQImage::bytesPerLine" tqimage.html#bytesPerLine +"TQImage::color" tqimage.html#color +"TQImage::colorTable" tqimage.html#colorTable +"TQImage::convertBitOrder" tqimage.html#convertBitOrder +"TQImage::convertDepth" tqimage.html#convertDepth +"TQImage::convertDepthWithPalette" tqimage.html#convertDepthWithPalette +"TQImage::copy" tqimage.html#copy +"TQImage::create" tqimage.html#create +"TQImage::createAlphaMask" tqimage.html#createAlphaMask +"TQImage::createHeuristicMask" tqimage.html#createHeuristicMask +"TQImage::depth" tqimage.html#depth +"TQImage::detach" tqimage.html#detach +"TQImage::dotsPerMeterX" tqimage.html#dotsPerMeterX +"TQImage::dotsPerMeterY" tqimage.html#dotsPerMeterY +"TQImage::fill" tqimage.html#fill +"TQImage::fromMimeSource" tqimage.html#fromMimeSource +"TQImage::hasAlphaBuffer" tqimage.html#hasAlphaBuffer +"TQImage::height" tqimage.html#height +"TQImage::imageFormat" tqimage.html#imageFormat +"TQImage::inputFormatList" tqimage.html#inputFormatList +"TQImage::inputFormats" tqimage.html#inputFormats +"TQImage::invertPixels" tqimage.html#invertPixels +"TQImage::isGrayscale" tqimage.html#isGrayscale +"TQImage::isNull" tqimage.html#isNull +"TQImage::jumpTable" tqimage.html#jumpTable +"TQImage::load" tqimage.html#load +"TQImage::loadFromData" tqimage.html#loadFromData +"TQImage::mirror" tqimage.html#mirror +"TQImage::numBytes" tqimage.html#numBytes +"TQImage::numColors" tqimage.html#numColors +"TQImage::offset" tqimage.html#offset +"TQImage::operator!=" tqimage.html#operator!-eq +"TQImage::operator=" tqimage.html#operator-eq +"TQImage::operator==" tqimage.html#operator-eq-eq +"TQImage::outputFormatList" tqimage.html#outputFormatList +"TQImage::outputFormats" tqimage.html#outputFormats +"TQImage::pixel" tqimage.html#pixel +"TQImage::pixelIndex" tqimage.html#pixelIndex +"TQImage::rect" tqimage.html#rect +"TQImage::reset" tqimage.html#reset +"TQImage::save" tqimage.html#save +"TQImage::scale" tqimage.html#scale +"TQImage::scaleHeight" tqimage.html#scaleHeight +"TQImage::scaleWidth" tqimage.html#scaleWidth +"TQImage::scanLine" tqimage.html#scanLine +"TQImage::setAlphaBuffer" tqimage.html#setAlphaBuffer +"TQImage::setColor" tqimage.html#setColor +"TQImage::setDotsPerMeterX" tqimage.html#setDotsPerMeterX +"TQImage::setDotsPerMeterY" tqimage.html#setDotsPerMeterY +"TQImage::setNumColors" tqimage.html#setNumColors +"TQImage::setOffset" tqimage.html#setOffset +"TQImage::setPixel" tqimage.html#setPixel +"TQImage::setText" tqimage.html#setText +"TQImage::size" tqimage.html#size +"TQImage::smoothScale" tqimage.html#smoothScale +"TQImage::swapRGB" tqimage.html#swapRGB +"TQImage::systemBitOrder" tqimage.html#systemBitOrder +"TQImage::systemByteOrder" tqimage.html#systemByteOrder +"TQImage::text" tqimage.html#text +"TQImage::textKeys" tqimage.html#textKeys +"TQImage::textLanguages" tqimage.html#textLanguages +"TQImage::textList" tqimage.html#textList +"TQImage::valid" tqimage.html#valid +"TQImage::width" tqimage.html#width +"TQImage::xForm" tqimage.html#xForm +"TQImage::~TQImage" tqimage.html#~TQImage +"TQImageConsumer" tqimageconsumer.html +"TQImageConsumer::changed" tqimageconsumer.html#changed +"TQImageConsumer::end" tqimageconsumer.html#end +"TQImageConsumer::frameDone" tqimageconsumer.html#frameDone +"TQImageConsumer::setFramePeriod" tqimageconsumer.html#setFramePeriod +"TQImageConsumer::setLooping" tqimageconsumer.html#setLooping +"TQImageConsumer::setSize" tqimageconsumer.html#setSize +"TQImageDecoder" tqimagedecoder.html +"TQImageDecoder::decode" tqimagedecoder.html#decode +"TQImageDecoder::format" tqimagedecoder.html#format +"TQImageDecoder::formatName" tqimagedecoder.html#formatName +"TQImageDecoder::image" tqimagedecoder.html#image +"TQImageDecoder::inputFormats" tqimagedecoder.html#inputFormats +"TQImageDecoder::registerDecoderFactory" tqimagedecoder.html#registerDecoderFactory +"TQImageDecoder::unregisterDecoderFactory" tqimagedecoder.html#unregisterDecoderFactory +"TQImageDecoder::~TQImageDecoder" tqimagedecoder.html#~TQImageDecoder +"TQImageDrag" tqimagedrag.html +"TQImageDrag::canDecode" tqimagedrag.html#canDecode +"TQImageDrag::decode" tqimagedrag.html#decode +"TQImageDrag::setImage" tqimagedrag.html#setImage +"TQImageDrag::~TQImageDrag" tqimagedrag.html#~TQImageDrag +"TQImageFormat" tqimageformat.html +"TQImageFormat::decode" tqimageformat.html#decode +"TQImageFormatPlugin" tqimageformatplugin.html +"TQImageFormatPlugin::installIOHandler" tqimageformatplugin.html#installIOHandler +"TQImageFormatPlugin::keys" tqimageformatplugin.html#keys +"TQImageFormatPlugin::~TQImageFormatPlugin" tqimageformatplugin.html#~TQImageFormatPlugin +"TQImageFormatType" tqimageformattype.html +"TQImageFormatType::decoderFor" tqimageformattype.html#decoderFor +"TQImageFormatType::formatName" tqimageformattype.html#formatName +"TQImageFormatType::~TQImageFormatType" tqimageformattype.html#~TQImageFormatType +"TQImageIO" tqimageio.html +"TQImageIO::defineIOHandler" tqimageio.html#defineIOHandler +"TQImageIO::description" tqimageio.html#description +"TQImageIO::fileName" tqimageio.html#fileName +"TQImageIO::format" tqimageio.html#format +"TQImageIO::gamma" tqimageio.html#gamma +"TQImageIO::image" tqimageio.html#image +"TQImageIO::imageFormat" tqimageio.html#imageFormat +"TQImageIO::init" tqimageio.html#init +"TQImageIO::inputFormats" tqimageio.html#inputFormats +"TQImageIO::ioDevice" tqimageio.html#ioDevice +"TQImageIO::outputFormats" tqimageio.html#outputFormats +"TQImageIO::parameters" tqimageio.html#parameters +"TQImageIO::quality" tqimageio.html#quality +"TQImageIO::read" tqimageio.html#read +"TQImageIO::setDescription" tqimageio.html#setDescription +"TQImageIO::setFileName" tqimageio.html#setFileName +"TQImageIO::setFormat" tqimageio.html#setFormat +"TQImageIO::setGamma" tqimageio.html#setGamma +"TQImageIO::setIODevice" tqimageio.html#setIODevice +"TQImageIO::setImage" tqimageio.html#setImage +"TQImageIO::setParameters" tqimageio.html#setParameters +"TQImageIO::setQuality" tqimageio.html#setQuality +"TQImageIO::setStatus" tqimageio.html#setStatus +"TQImageIO::status" tqimageio.html#status +"TQImageIO::write" tqimageio.html#write +"TQImageIO::~TQImageIO" tqimageio.html#~TQImageIO "QInputDialog" ntqinputdialog.html "QInputDialog::Type" ntqinputdialog.html#Type "QInputDialog::comboBox" ntqinputdialog.html#comboBox @@ -8255,7 +8255,7 @@ "appearance" appearance.html "application" application.html "basic" basic.html -"bitBlt" ntqimage.html#bitBlt +"bitBlt" tqimage.html#bitBlt "bitBlt" ntqpaintdevice.html#bitBlt "collection" collection.html "copyBlt" ntqpixmap.html#copyBlt @@ -8311,7 +8311,7 @@ "operator<<" ntqdockarea.html#operator-lt-lt "operator<<" tqdomnode.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<<" ntqmainwindow.html#operator-lt-lt "operator<<" tqmap.html#operator-lt-lt @@ -8355,7 +8355,7 @@ "operator>>" ntqdatetime.html#operator-gt-gt "operator>>" ntqdockarea.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>>" ntqmainwindow.html#operator-gt-gt "operator>>" tqmap.html#operator-gt-gt diff --git a/doc/html/io.html b/doc/html/io.html index 35cc7807b..758080efa 100644 --- a/doc/html/io.html +++ b/doc/html/io.html @@ -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="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="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="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 diff --git a/doc/html/licenses.html b/doc/html/licenses.html index 0f37a03d6..3969286ab 100644 --- a/doc/html/licenses.html +++ b/doc/html/licenses.html @@ -50,7 +50,7 @@ copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without express or implied warranty. <p><ul> -<li><a href="ntqimage.html#smoothScale">TQImage::smoothScale</a> +<li><a href="tqimage.html#smoothScale">TQImage::smoothScale</a> </ul> <hr> <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. <p> GIF support may be removed completely in a future version of TQt. We recommend using the MNG or PNG format.<ul> -<li><a href="qimagedecoder.html">TQImageDecoder</a> +<li><a href="tqimagedecoder.html">TQImageDecoder</a> </ul> <p> diff --git a/doc/html/listboxcombo-example.html b/doc/html/listboxcombo-example.html index 3c41545a7..40829a8e2 100644 --- a/doc/html/listboxcombo-example.html +++ b/doc/html/listboxcombo-example.html @@ -97,7 +97,7 @@ protected slots: #include <<a href="qstring-h.html">ntqstring.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qstyle-h.html">ntqstyle.h</a>> diff --git a/doc/html/mainclasses.html b/doc/html/mainclasses.html index 7cc02d0de..9ce5c66f5 100644 --- a/doc/html/mainclasses.html +++ b/doc/html/mainclasses.html @@ -151,7 +151,7 @@ classes), see <a href="classes.html">TQt's Classes</a>. <td align="right"> <td><a href="tqdataview.html">TQDataView</a> <td align="right"> -<td><a href="ntqimage.html">TQImage</a> +<td><a href="tqimage.html">TQImage</a> <td align="right"> <td><a href="ntqprinter.html">TQPrinter</a> <td align="right"> diff --git a/doc/html/mdi-example.html b/doc/html/mdi-example.html index 52e941fa8..09489ad9b 100644 --- a/doc/html/mdi-example.html +++ b/doc/html/mdi-example.html @@ -135,7 +135,7 @@ private: #include "application.h" #include <<a href="qworkspace-h.html">ntqworkspace.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qtoolbar-h.html">ntqtoolbar.h</a>> #include <<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>> diff --git a/doc/html/multimedia.html b/doc/html/multimedia.html index 4d8fcc2e7..d9b66d4dc 100644 --- a/doc/html/multimedia.html +++ b/doc/html/multimedia.html @@ -35,10 +35,10 @@ body { background: #ffffff; color: black; } <p> These classes provide support for graphics, sound, animation etc. <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="qimagedecoder.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="qimageformattype.html">TQImageFormatType</a></b><td>Factory that makes TQImageFormat objects +<tr bgcolor=#f0f0f0><td><b><a href="tqimageconsumer.html">TQImageConsumer</a></b><td>Abstraction used by TQImageDecoder +<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="tqimageformat.html">TQImageFormat</a></b><td>Incremental image decoder for a specific image format +<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="ntqsound.html">TQSound</a></b><td>Access to the platform audio facilities </table> diff --git a/doc/html/ntqasyncio.html b/doc/html/ntqasyncio.html index f9bc8c6ca..a93b1f76e 100644 --- a/doc/html/ntqasyncio.html +++ b/doc/html/ntqasyncio.html @@ -53,7 +53,7 @@ body { background: #ffffff; color: black; } <p> The TQt classes for asynchronous input/output provide a simple mechanism to allow large files or slow data sources to be processed 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> <h3 class=fn><a name="~TQAsyncIO"></a>TQAsyncIO::~TQAsyncIO ()<tt> [virtual]</tt> diff --git a/doc/html/ntqbitmap.html b/doc/html/ntqbitmap.html index f0e55c2de..9566a5025 100644 --- a/doc/html/ntqbitmap.html +++ b/doc/html/ntqbitmap.html @@ -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>. <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 <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): <pre> 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>. <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 <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 <a href="ntqbitmap.html">TQBitmap</a> & bitmap ) </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>() greater than 1. -<h3 class=fn><a href="ntqbitmap.html">TQBitmap</a> & <a name="operator-eq-3"></a>TQBitmap::operator= ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a href="ntqbitmap.html">TQBitmap</a> & <a name="operator-eq-3"></a>TQBitmap::operator= ( const <a href="tqimage.html">TQImage</a> & image ) </h3> 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 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. <h3 class=fn><a href="ntqbitmap.html">TQBitmap</a> <a name="xForm"></a>TQBitmap::xForm ( const <a href="ntqwmatrix.html">TQWMatrix</a> & matrix ) const diff --git a/doc/html/ntqclipboard.html b/doc/html/ntqclipboard.html index c8f1e6c81..9e91d9e04 100644 --- a/doc/html/ntqclipboard.html +++ b/doc/html/ntqclipboard.html @@ -203,7 +203,7 @@ TQClipboard::Clipboard. <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> 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> mode ) const </h3> Returns the clipboard image, or returns a null image if the 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 TQClipboard::Selection, the image is retrieved from the global 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> 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 @@ -303,7 +303,7 @@ If selectionModeEnabled() returns TRUE, the mode argument is TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard. -<h3 class=fn>void <a name="setImage"></a>TQClipboard::setImage ( const <a href="ntqimage.html">TQImage</a> & image, <a href="ntqclipboard.html#Mode-enum">Mode</a> mode ) +<h3 class=fn>void <a name="setImage"></a>TQClipboard::setImage ( const <a href="tqimage.html">TQImage</a> & image, <a href="ntqclipboard.html#Mode-enum">Mode</a> mode ) </h3> Copies <em>image</em> into the clipboard. <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. <p> This is shorthand for: <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> <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 <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn>void <a name="setImage-2"></a>TQClipboard::setImage ( const <a href="tqimage.html">TQImage</a> & image ) </h3> 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 @@ -332,7 +332,7 @@ TQClipboard::Clipboard. </h3> 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 -<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 clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the pixmap is stored in the global clipboard. If <em>mode</em> is diff --git a/doc/html/ntqdragobject.html b/doc/html/ntqdragobject.html index 9309cadca..4c2268641 100644 --- a/doc/html/ntqdragobject.html +++ b/doc/html/ntqdragobject.html @@ -36,7 +36,7 @@ transfer. <a href="#details">More...</a> <p><tt>#include <<a href="qdragobject-h.html">ntqdragobject.h</a>></tt> <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> <h2>Public Members</h2> <ul> diff --git a/doc/html/ntqdropsite.html b/doc/html/ntqdropsite.html index 261335d65..84244c7eb 100644 --- a/doc/html/ntqdropsite.html +++ b/doc/html/ntqdropsite.html @@ -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 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> <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> <h3 class=fn><a name="TQDropSite"></a>TQDropSite::TQDropSite ( <a href="tqwidget.html">TQWidget</a> * self ) diff --git a/doc/html/ntqiconset.html b/doc/html/ntqiconset.html index 72672fd08..46df95e3e 100644 --- a/doc/html/ntqiconset.html +++ b/doc/html/ntqiconset.html @@ -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> appearance unless you use setPixmap() to set it to something 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 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 diff --git a/doc/html/ntqiconview.html b/doc/html/ntqiconview.html index b1d6f5b48..9aa536a61 100644 --- a/doc/html/ntqiconview.html +++ b/doc/html/ntqiconview.html @@ -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 <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. <p> TQIconViews and their TQIconViewItems can also be the targets of drag and drops. To make the TQIconView itself able to accept drops connect diff --git a/doc/html/ntqmovie.html b/doc/html/ntqmovie.html index 7564b9ef2..96545a8c8 100644 --- a/doc/html/ntqmovie.html +++ b/doc/html/ntqmovie.html @@ -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. <p>Example: <a href="movies-example.html#x501">movies/main.cpp</a>. -<h3 class=fn>const <a href="ntqimage.html">TQImage</a> & <a name="frameImage"></a>TQMovie::frameImage () const +<h3 class=fn>const <a href="tqimage.html">TQImage</a> & <a name="frameImage"></a>TQMovie::frameImage () const </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 must not call this function if the movie is <a href="#finished">finished</a>(), since by then the image will not be available. diff --git a/doc/html/ntqpainter.html b/doc/html/ntqpainter.html index 32eea73d3..76f1b3e59 100644 --- a/doc/html/ntqpainter.html +++ b/doc/html/ntqpainter.html @@ -454,7 +454,7 @@ font etc. This function does exactly that. p.<a href="#begin">begin</a>(&pm, this); // ... potentially flickering paint operation ... p.<a href="#end">end</a>(); - <a href="ntqimage.html#bitBlt">bitBlt</a>(this, 0, 0, &pm); + <a href="tqimage.html#bitBlt">bitBlt</a>(this, 0, 0, &pm); } </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. <p> Draws the ellipse that fits inside rectangle <em>r</em>. -<h3 class=fn>void <a name="drawImage"></a>TQPainter::drawImage ( int x, int y, const <a href="ntqimage.html">TQImage</a> & image, int sx = 0, int sy = 0, int sw = -1, int sh = -1, int conversionFlags = 0 ) +<h3 class=fn>void <a name="drawImage"></a>TQPainter::drawImage ( int x, int y, const <a href="tqimage.html">TQImage</a> & image, int sx = 0, int sy = 0, int sw = -1, int sh = -1, int conversionFlags = 0 ) </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 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>Example: <a href="canvas-example.html#x2941">canvas/canvas.cpp</a>. -<h3 class=fn>void <a name="drawImage-2"></a>TQPainter::drawImage ( const <a href="ntqpoint.html">TQPoint</a> &, const <a href="ntqimage.html">TQImage</a> &, const <a href="ntqrect.html">TQRect</a> & sr, int conversionFlags = 0 ) +<h3 class=fn>void <a name="drawImage-2"></a>TQPainter::drawImage ( const <a href="ntqpoint.html">TQPoint</a> &, const <a href="tqimage.html">TQImage</a> &, const <a href="ntqrect.html">TQRect</a> & sr, int conversionFlags = 0 ) </h3> 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. -<h3 class=fn>void <a name="drawImage-3"></a>TQPainter::drawImage ( const <a href="ntqpoint.html">TQPoint</a> & p, const <a href="ntqimage.html">TQImage</a> & i, int conversion_flags = 0 ) +<h3 class=fn>void <a name="drawImage-3"></a>TQPainter::drawImage ( const <a href="ntqpoint.html">TQPoint</a> & p, const <a href="tqimage.html">TQImage</a> & i, int conversion_flags = 0 ) </h3> 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>. @@ -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. <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 <a href="ntqrect.html">TQRect</a> & r, const <a href="ntqimage.html">TQImage</a> & i ) +<h3 class=fn>void <a name="drawImage-4"></a>TQPainter::drawImage ( const <a href="ntqrect.html">TQRect</a> & r, const <a href="tqimage.html">TQImage</a> & i ) </h3> 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 @@ -710,7 +710,7 @@ The default, (-1, -1), means all the way to the bottom right of the pixmap. <p> Currently the mask of the pixmap or it's alpha channel are ignored 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>. <h3 class=fn>void <a name="drawPixmap-2"></a>TQPainter::drawPixmap ( const <a href="ntqpoint.html">TQPoint</a> & p, const <a href="ntqpixmap.html">TQPixmap</a> & pm, const <a href="ntqrect.html">TQRect</a> & sr ) diff --git a/doc/html/ntqpixmap.html b/doc/html/ntqpixmap.html index 85e6e1910..f7bfa60fe 100644 --- a/doc/html/ntqpixmap.html +++ b/doc/html/ntqpixmap.html @@ -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 -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 direct pixel access/manipulation. There are (slow) functions to 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 <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> <h3 class=fn><a name="ColorMode-enum"></a>TQPixmap::ColorMode</h3> <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> <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. @@ -219,9 +219,9 @@ than <a href="#Optimization-enum">NormalOptim</a> and may provide a little more Constructs a null pixmap. <p> <p>See also <a href="#isNull">isNull</a>(). -<h3 class=fn><a name="TQPixmap-2"></a>TQPixmap::TQPixmap ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a name="TQPixmap-2"></a>TQPixmap::TQPixmap ( const <a href="tqimage.html">TQImage</a> & image ) </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>(). <h3 class=fn><a name="TQPixmap-3"></a>TQPixmap::TQPixmap ( int w, int h, int depth = -1, <a href="ntqpixmap.html#Optimization-enum">Optimization</a> optimization = DefaultOptim ) @@ -307,7 +307,7 @@ This constructor is protected and used by the <a href="ntqbitmap.html">TQBitmap< </h3> Destroys the pixmap. -<h3 class=fn>bool <a name="convertFromImage"></a>TQPixmap::convertFromImage ( const <a href="ntqimage.html">TQImage</a> & img, int conversion_flags ) +<h3 class=fn>bool <a name="convertFromImage"></a>TQPixmap::convertFromImage ( const <a href="tqimage.html">TQImage</a> & img, int conversion_flags ) </h3> Converts image <em>img</em> and sets this pixmap. Returns TRUE if successful; otherwise returns FALSE. @@ -320,19 +320,19 @@ sets all the default options. converted to an image, the pixels painted with color0 will produce pixel index 0 in the image and those painted with color1 will 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>. -<h3 class=fn>bool <a name="convertFromImage-2"></a>TQPixmap::convertFromImage ( const <a href="ntqimage.html">TQImage</a> & image, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a> mode = Auto ) +<h3 class=fn>bool <a name="convertFromImage-2"></a>TQPixmap::convertFromImage ( const <a href="tqimage.html">TQImage</a> & image, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a> mode = Auto ) </h3> 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>. Returns TRUE if successful; otherwise returns FALSE. <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> -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 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 @@ -354,11 +354,11 @@ can do things such as the following: </pre> <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>. <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. -<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> @@ -377,7 +377,7 @@ Returns the default pixmap optimization setting. <p> Returns the depth of the pixmap. <p> The pixmap depth is also called bits per pixel (bpp) or bit planes 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> @@ -444,7 +444,7 @@ color of the widget. </h3> Convenience function. Gets the data associated with the absolute name <em>abs_name</em> from the default mime source factory and decodes it 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>. <h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="grabWidget"></a>TQPixmap::grabWidget ( <a href="tqwidget.html">TQWidget</a> * widget, int x = 0, int y = 0, int w = -1, int h = -1 )<tt> [static]</tt> @@ -525,7 +525,7 @@ function returns FALSE. </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 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>(). <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. <p> See the <a href="#convertFromImage">convertFromImage</a>() documentation for a description of the <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. -<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>. <h3 class=fn>bool <a name="load-2"></a>TQPixmap::load ( const <a href="ntqstring.html">TQString</a> & fileName, const char * format = 0, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a> mode = Auto ) @@ -580,9 +580,9 @@ using the specified format. If <em>format</em> is not specified the file's format. <p> See the <a href="#convertFromImage">convertFromImage</a>() documentation for a description of the <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. -<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 uchar * buf, uint len, const char * format = 0, <a href="ntqpixmap.html#ColorMode-enum">ColorMode</a> mode = Auto ) </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 reference to this pixmap. -<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> & <a name="operator-eq-2"></a>TQPixmap::operator= ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> & <a name="operator-eq-2"></a>TQPixmap::operator= ( const <a href="tqimage.html">TQImage</a> & image ) </h3> 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 @@ -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 the default settings. Returns TRUE if successful; otherwise 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>. <h3 class=fn>bool <a name="save-2"></a>TQPixmap::save ( <a href="ntqiodevice.html">TQIODevice</a> * device, const char * format, int 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 that contains all the transformed points of the original image. <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. -<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>. <hr><h2>Related Functions</h2> diff --git a/doc/html/ntqpixmapcache.html b/doc/html/ntqpixmapcache.html index e407d6806..3695a1202 100644 --- a/doc/html/ntqpixmapcache.html +++ b/doc/html/ntqpixmapcache.html @@ -67,7 +67,7 @@ displayed or changes state. In the function 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 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 finally insert the pixmap in the global pixmap cache, using the key above. The bitBlt() is ten times faster than drawing the diff --git a/doc/html/ntqsize.html b/doc/html/ntqsize.html index de930bdbe..94bd57b5c 100644 --- a/doc/html/ntqsize.html +++ b/doc/html/ntqsize.html @@ -104,7 +104,7 @@ width of two sizes using <a href="#boundedTo">boundedTo</a>(). inside a given rectangle, preserving the aspect ratio. <li><tt>TQSize::ScaleMax</tt> - The size is scaled to a rectangle as small as possible 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> <h3 class=fn><a name="TQSize"></a>TQSize::TQSize () diff --git a/doc/html/ntqstylesheet.html b/doc/html/ntqstylesheet.html index 91c2e78b0..8282c55a1 100644 --- a/doc/html/ntqstylesheet.html +++ b/doc/html/ntqstylesheet.html @@ -210,7 +210,7 @@ given in the source attribute, for example attributes <tt>width</tt> and <tt>height</tt> that determine the size of the image. If the pixmap does not fit the specified 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> The <tt>align</tt> attribute determines where the image is placed. By default, an image is placed inline just like a diff --git a/doc/html/ntqt.html b/doc/html/ntqt.html index b0b2048f7..b059c708b 100644 --- a/doc/html/ntqt.html +++ b/doc/html/ntqt.html @@ -300,7 +300,7 @@ options marked "(default)" are set if no other values from the list are included (since the defaults are zero): <p> Color/Mono preference (ignored for <a href="ntqbitmap.html">TQBitmap</a>) <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. <li><tt>TQt::ColorOnly</tt> - The pixmap is dithered/converted to the <a href="ntqpixmap.html#defaultDepth">native display depth</a>. diff --git a/doc/html/ntqvariant.html b/doc/html/ntqvariant.html index 7ee8ef8a3..4263afaf4 100644 --- a/doc/html/ntqvariant.html +++ b/doc/html/ntqvariant.html @@ -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 type that cannot be generated from the stored type, the result 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 you must make a <a href="shclass.html#deep-copy">deep copy</a> of the returned values before modifying them. @@ -258,7 +258,7 @@ contain. <li><tt>TQVariant::Double</tt> - a double <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::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::KeySequence</tt> - a <a href="ntqkeysequence.html">TQKeySequence</a> <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 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. -<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> & s ) </h3> @@ -341,10 +341,10 @@ Constructs a new variant with a font value, <em>val</em>. </h3> Constructs a new variant with a pixmap value, <em>val</em>. -<h3 class=fn><a name="TQVariant-a"></a>TQVariant::TQVariant ( const <a href="ntqimage.html">TQImage</a> & val ) +<h3 class=fn><a name="TQVariant-a"></a>TQVariant::TQVariant ( const <a href="tqimage.html">TQImage</a> & val ) </h3> 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. <h3 class=fn><a name="TQVariant-b"></a>TQVariant::TQVariant ( const <a href="ntqbrush.html">TQBrush</a> & val ) @@ -563,7 +563,7 @@ not possible the variant is set to an empty iconset. <p> Returns a reference to the stored iconset. <p> <p>See also <a href="#toIconSet">toIconSet</a>(). -<h3 class=fn><a href="ntqimage.html">TQImage</a> & <a name="asImage"></a>TQVariant::asImage () +<h3 class=fn><a href="tqimage.html">TQImage</a> & <a name="asImage"></a>TQVariant::asImage () </h3> <p> Tries to convert the variant to hold an image value. If that is @@ -834,7 +834,7 @@ equal; otherwise returns FALSE. </h3> 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 -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. <h3 class=fn>bool <a name="operator-eq-eq"></a>TQVariant::operator== ( const <a href="ntqvariant.html">TQVariant</a> & 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. <p> <p>See also <a href="#asIconSet">asIconSet</a>(). -<h3 class=fn>const <a href="ntqimage.html">TQImage</a> <a name="toImage"></a>TQVariant::toImage () const +<h3 class=fn>const <a href="tqimage.html">TQImage</a> <a name="toImage"></a>TQVariant::toImage () const </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. <p> <p>See also <a href="#asImage">asImage</a>(). diff --git a/doc/html/plugins-howto.html b/doc/html/plugins-howto.html index 42ae7700c..595deb468 100644 --- a/doc/html/plugins-howto.html +++ b/doc/html/plugins-howto.html @@ -46,7 +46,7 @@ by default in the standard plugin directory. <th valign="top">Base Class <th valign="top">Default Path <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> <tr bgcolor="#d0d0d0"> <td valign="top"><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a> diff --git a/doc/html/plugins.html b/doc/html/plugins.html index a5ec23cce..50f0bb247 100644 --- a/doc/html/plugins.html +++ b/doc/html/plugins.html @@ -40,7 +40,7 @@ Windows. <p> <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="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="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 diff --git a/doc/html/qaction-application-example.html b/doc/html/qaction-application-example.html index 101052362..7ac09322f 100644 --- a/doc/html/qaction-application-example.html +++ b/doc/html/qaction-application-example.html @@ -104,7 +104,7 @@ private: #include "application.h" -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qtoolbar-h.html">ntqtoolbar.h</a>> #include <<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>> diff --git a/doc/html/qasyncimageio-h.html b/doc/html/qasyncimageio-h.html index b8f7bea47..ba48d90cd 100644 --- a/doc/html/qasyncimageio-h.html +++ b/doc/html/qasyncimageio-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #define TQASYNCIMAGEIO_H #ifndef QT_H -#include "ntqimage.h" +#include "tqimage.h" #endif // QT_H #ifndef TQT_NO_ASYNC_IMAGE_IO diff --git a/doc/html/qdragobject-h.html b/doc/html/qdragobject-h.html index 9d12e6e99..31c2c1684 100644 --- a/doc/html/qdragobject-h.html +++ b/doc/html/qdragobject-h.html @@ -83,7 +83,7 @@ class TQImageDragData; #ifndef QT_H #include "tqobject.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqstrlist.h" #include "ntqcolor.h" #endif // QT_H diff --git a/doc/html/qembed.html b/doc/html/qembed.html index 0789aa4a3..256c2950e 100644 --- a/doc/html/qembed.html +++ b/doc/html/qembed.html @@ -66,7 +66,7 @@ of the supplied functions: <a name="2-1"></a><p> <pre> #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); } diff --git a/doc/html/qgfx_qws-h.html b/doc/html/qgfx_qws-h.html index b3efae8b4..5f8d2497a 100644 --- a/doc/html/qgfx_qws-h.html +++ b/doc/html/qgfx_qws-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqwidget.h" #include "ntqnamespace.h" -#include "ntqimage.h" +#include "tqimage.h" #include "qfontmanager_qws.h" #include "qmemorymanager_qws.h" #include "ntqpoint.h" diff --git a/doc/html/qglwidget.html b/doc/html/qglwidget.html index adc942c47..142ba2560 100644 --- a/doc/html/qglwidget.html +++ b/doc/html/qglwidget.html @@ -284,17 +284,17 @@ returned will be empty. example, if the underlying hardware does not support the format attributes that were requested. -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertToGLFormat"></a>TQGLWidget::convertToGLFormat ( const <a href="ntqimage.html">TQImage</a> & img )<tt> [static]</tt> +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertToGLFormat"></a>TQGLWidget::convertToGLFormat ( const <a href="tqimage.html">TQImage</a> & img )<tt> [static]</tt> </h3> Converts the image <em>img</em> into the unnamed format expected by 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 -<a href="ntqimage.html#bits">TQImage::bits</a>() may be used with OpenGL. The following few lines +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="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 we just quote the relevant bits: <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 </pre> <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> <p> A few lines later, we convert <em>buf</em> into OpenGL format and store it 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, - <a name="x2119"></a> GL_RGBA, GL_UNSIGNED_BYTE, tex1.<a href="ntqimage.html#bits">bits</a>() ); +<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="tqimage.html#bits">bits</a>() ); </pre> <p> Note the dimension restrictions for texture images as described in 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 function <a href="#initializeGL">initializeGL</a>(). -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="grabFrameBuffer"></a>TQGLWidget::grabFrameBuffer ( bool withAlpha = FALSE )<tt> [virtual]</tt> +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="grabFrameBuffer"></a>TQGLWidget::grabFrameBuffer ( bool withAlpha = FALSE )<tt> [virtual]</tt> </h3> Returns an image of the frame buffer. If <em>withAlpha</em> is TRUE the alpha channel is included. diff --git a/doc/html/qimage-members.html b/doc/html/qimage-members.html deleted file mode 100644 index 8dfca825e..000000000 --- a/doc/html/qimage-members.html +++ /dev/null @@ -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 Classes</font></a> - | <a href="mainclasses.html"> -<font color="#004faf">Main Classes</font></a> - | <a href="annotated.html"> -<font color="#004faf">Annotated</font></a> - | <a href="groups.html"> -<font color="#004faf">Grouped 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 © 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> diff --git a/doc/html/qmacmime.html b/doc/html/qmacmime.html index 04208b70e..ed23e8808 100644 --- a/doc/html/qmacmime.html +++ b/doc/html/qmacmime.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" and supported by TQTextDrag. <li> kScrapFlavorTypePicture - converted to "image/format", where format is -a <a href="ntqimage.html#outputFormats">TQt image format</a>, -and supported by <a href="qimagedrag.html">TQImageDrag</a>. +a <a href="tqimage.html#outputFormats">TQt image format</a>, +and supported by <a href="tqimagedrag.html">TQImageDrag</a>. <li> kDragFlavorTypeHFS - converted to "text/uri-list", and supported by <a href="quridrag.html">TQUriDrag</a>. </ul> diff --git a/doc/html/qmag-example.html b/doc/html/qmag-example.html index f65ca6bf9..4887b6b37 100644 --- a/doc/html/qmag-example.html +++ b/doc/html/qmag-example.html @@ -55,7 +55,7 @@ magnified area as a .bmp file. #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="qfiledialog-h.html">ntqfiledialog.h</a>> #include <<a href="qregexp-h.html">ntqregexp.h</a>> @@ -97,7 +97,7 @@ private: <a href="ntqpushbutton.html">TQPushButton</a> *quitButton; <a href="ntqpixmap.html">TQPixmap</a> pm; // pixmap, magnified <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; int yoffset; // pixels in addition to the actual picture int z; // magnification factor @@ -375,9 +375,9 @@ void <a name="f490"></a>MagWidget::grabAround(TQPoint pos) x = e-><a href="qmouseevent.html#pos">pos</a>().x() / z; y = (e-><a href="qmouseevent.html#pos">pos</a>().y() - ( zoom ? zoom-><a href="tqwidget.html#height">height</a>() : 0 ) - 4) / z; <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 href="ntqcolor.html#qRed">tqRed</a>(px), tqGreen(px), tqBlue(px), <a href="ntqcolor.html#qRed">tqRed</a>(px), tqGreen(px), tqBlue(px)); diff --git a/doc/html/qmimesource.html b/doc/html/qmimesource.html index fb6fe2923..eec22c61b 100644 --- a/doc/html/qmimesource.html +++ b/doc/html/qmimesource.html @@ -87,7 +87,7 @@ format. 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 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>Reimplemented in <a href="qdropevent.html#provides">TQDropEvent</a>. diff --git a/doc/html/qmimesourcefactory.html b/doc/html/qmimesourcefactory.html index 6706511e4..4261a5e0e 100644 --- a/doc/html/qmimesourcefactory.html +++ b/doc/html/qmimesourcefactory.html @@ -69,7 +69,7 @@ The TQMimeSourceFactory class is an extensible provider of mime-typed data. collection of information. Each piece of information is represented by a <a href="qmimesource.html">TQMimeSource</a> object which can be examined and 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 abstraction of a collection of files or as specifically stored data. For it to access files, call <a href="#setFilePath">setFilePath</a>() before accessing @@ -97,7 +97,7 @@ as: </pre> <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: <pre> TQMimeSourceFactory::<a href="#defaultFactory">defaultFactory</a>()->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 it in all defined paths (see <a href="#setFilePath">setFilePath</a>()). <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 <pre> <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>. <p> <p>See also <a href="#filePath">filePath</a>(). -<h3 class=fn>void <a name="setImage"></a>TQMimeSourceFactory::setImage ( const <a href="ntqstring.html">TQString</a> & abs_name, const <a href="ntqimage.html">TQImage</a> & image )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setImage"></a>TQMimeSourceFactory::setImage ( const <a href="ntqstring.html">TQString</a> & abs_name, const <a href="tqimage.html">TQImage</a> & image )<tt> [virtual]</tt> </h3> Sets <em>image</em> to be the data item associated with the absolute 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 <a href="ntqstring.html">TQString</a> & abs_name, const <a href="ntqpixmap.html">TQPixmap</a> & pixmap )<tt> [virtual]</tt> </h3> diff --git a/doc/html/qnamespace-h.html b/doc/html/qnamespace-h.html index bf02d1c9f..fcf9c29b6 100644 --- a/doc/html/qnamespace-h.html +++ b/doc/html/qnamespace-h.html @@ -284,7 +284,7 @@ public: // Image conversion flags. The unusual ordering is caused by // compatibility and default requirements. - // Documented in qimage.cpp + // Documented in tqimage.cpp enum ImageConversionFlags { ColorMode_Mask = 0x00000003, diff --git a/doc/html/qnpinstance.html b/doc/html/qnpinstance.html index 6bbabe7b0..e321d6a97 100644 --- a/doc/html/qnpinstance.html +++ b/doc/html/qnpinstance.html @@ -90,7 +90,7 @@ called first (assuming the <tt><EMBED></tt> tag has a SRC parameter). 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 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>. <p> This restriction can easily be accommodated by structuring your plugin so that the task of the TQNPInstance is to gather data, diff --git a/doc/html/qpngimagepacker.html b/doc/html/qpngimagepacker.html index 4797264be..a471fc6ae 100644 --- a/doc/html/qpngimagepacker.html +++ b/doc/html/qpngimagepacker.html @@ -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. <p> <p>See also <a href="ntqt.html#ImageConversionFlags-enum">TQt::ImageConversionFlags</a>. -<h3 class=fn>bool <a name="packImage"></a>TQPNGImagePacker::packImage ( const <a href="ntqimage.html">TQImage</a> & img ) +<h3 class=fn>bool <a name="packImage"></a>TQPNGImagePacker::packImage ( const <a href="tqimage.html">TQImage</a> & img ) </h3> Adds the image <em>img</em> to the PNG animation, analyzing the differences between this and the previous image to improve diff --git a/doc/html/qpngio-h.html b/doc/html/qpngio-h.html index c57f94e3c..e73f684e3 100644 --- a/doc/html/qpngio-h.html +++ b/doc/html/qpngio-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #define TQPNGIO_H #ifndef QT_H -#include "ntqimage.h" +#include "tqimage.h" #endif // QT_H #ifndef TQT_NO_IMAGEIO_PNG diff --git a/doc/html/qscreen.html b/doc/html/qscreen.html index 81b286cf0..20ac3e80d 100644 --- a/doc/html/qscreen.html +++ b/doc/html/qscreen.html @@ -255,7 +255,7 @@ This is an overloaded member function, provided for convenience. It behaves esse application. Used by the rotated driver; the TQScreen implementation simply returns <em>r</em>. -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="mapFromDevice-4"></a>TQScreen::mapFromDevice ( const <a href="ntqimage.html">TQImage</a> & i ) const<tt> [virtual]</tt> +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mapFromDevice-4"></a>TQScreen::mapFromDevice ( const <a href="tqimage.html">TQImage</a> & i ) const<tt> [virtual]</tt> </h3> 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 @@ -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 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 <a href="ntqimage.html">TQImage</a> & i ) const<tt> [virtual]</tt> +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mapToDevice-4"></a>TQScreen::mapToDevice ( const <a href="tqimage.html">TQImage</a> & i ) const<tt> [virtual]</tt> </h3> 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 diff --git a/doc/html/qt.dcf b/doc/html/qt.dcf index 85fcc0afa..d031b4c6f 100644 --- a/doc/html/qt.dcf +++ b/doc/html/qt.dcf @@ -3567,170 +3567,170 @@ <section ref="qiconviewitem-members.html" title="List of All Member Functions"/> <section ref="qiconview-h.html" title="Header File"/> </section> -<section ref="ntqimage.html" title="TQImage Class Reference"> - <keyword ref="ntqimage.html">TQImage</keyword> - <keyword ref="ntqimage.html#Endian">Endian</keyword> - <keyword ref="ntqimage.html#ScaleMode">ScaleMode</keyword> - <keyword ref="ntqimage.html#allGray">allGray</keyword> - <keyword ref="ntqimage.html#bitOrder">bitOrder</keyword> - <keyword ref="ntqimage.html#bits">bits</keyword> - <keyword ref="ntqimage.html#bytesPerLine">bytesPerLine</keyword> - <keyword ref="ntqimage.html#color">color</keyword> - <keyword ref="ntqimage.html#colorTable">colorTable</keyword> - <keyword ref="ntqimage.html#convertBitOrder">convertBitOrder</keyword> - <keyword ref="ntqimage.html#convertDepth">convertDepth</keyword> - <keyword ref="ntqimage.html#convertDepthWithPalette">convertDepthWithPalette</keyword> - <keyword ref="ntqimage.html#copy">copy</keyword> - <keyword ref="ntqimage.html#create">create</keyword> - <keyword ref="ntqimage.html#createAlphaMask">createAlphaMask</keyword> - <keyword ref="ntqimage.html#createHeuristicMask">createHeuristicMask</keyword> - <keyword ref="ntqimage.html#depth">depth</keyword> - <keyword ref="ntqimage.html#detach">detach</keyword> - <keyword ref="ntqimage.html#dotsPerMeterX">dotsPerMeterX</keyword> - <keyword ref="ntqimage.html#dotsPerMeterY">dotsPerMeterY</keyword> - <keyword ref="ntqimage.html#fill">fill</keyword> - <keyword ref="ntqimage.html#fromMimeSource">fromMimeSource</keyword> - <keyword ref="ntqimage.html#hasAlphaBuffer">hasAlphaBuffer</keyword> - <keyword ref="ntqimage.html#height">height</keyword> - <keyword ref="ntqimage.html#imageFormat">imageFormat</keyword> - <keyword ref="ntqimage.html#inputFormatList">inputFormatList</keyword> - <keyword ref="ntqimage.html#inputFormats">inputFormats</keyword> - <keyword ref="ntqimage.html#invertPixels">invertPixels</keyword> - <keyword ref="ntqimage.html#isGrayscale">isGrayscale</keyword> - <keyword ref="ntqimage.html#isNull">isNull</keyword> - <keyword ref="ntqimage.html#jumpTable">jumpTable</keyword> - <keyword ref="ntqimage.html#load">load</keyword> - <keyword ref="ntqimage.html#loadFromData">loadFromData</keyword> - <keyword ref="ntqimage.html#mirror">mirror</keyword> - <keyword ref="ntqimage.html#numBytes">numBytes</keyword> - <keyword ref="ntqimage.html#numColors">numColors</keyword> - <keyword ref="ntqimage.html#offset">offset</keyword> - <keyword ref="ntqimage.html#operator!-eq">operator!=</keyword> - <keyword ref="ntqimage.html#operator-eq">operator=</keyword> - <keyword ref="ntqimage.html#operator-eq-eq">operator==</keyword> - <keyword ref="ntqimage.html#outputFormatList">outputFormatList</keyword> - <keyword ref="ntqimage.html#outputFormats">outputFormats</keyword> - <keyword ref="ntqimage.html#pixel">pixel</keyword> - <keyword ref="ntqimage.html#pixelIndex">pixelIndex</keyword> - <keyword ref="ntqimage.html#rect">rect</keyword> - <keyword ref="ntqimage.html#reset">reset</keyword> - <keyword ref="ntqimage.html#save">save</keyword> - <keyword ref="ntqimage.html#scale">scale</keyword> - <keyword ref="ntqimage.html#scaleHeight">scaleHeight</keyword> - <keyword ref="ntqimage.html#scaleWidth">scaleWidth</keyword> - <keyword ref="ntqimage.html#scanLine">scanLine</keyword> - <keyword ref="ntqimage.html#setAlphaBuffer">setAlphaBuffer</keyword> - <keyword ref="ntqimage.html#setColor">setColor</keyword> - <keyword ref="ntqimage.html#setDotsPerMeterX">setDotsPerMeterX</keyword> - <keyword ref="ntqimage.html#setDotsPerMeterY">setDotsPerMeterY</keyword> - <keyword ref="ntqimage.html#setNumColors">setNumColors</keyword> - <keyword ref="ntqimage.html#setOffset">setOffset</keyword> - <keyword ref="ntqimage.html#setPixel">setPixel</keyword> - <keyword ref="ntqimage.html#setText">setText</keyword> - <keyword ref="ntqimage.html#size">size</keyword> - <keyword ref="ntqimage.html#smoothScale">smoothScale</keyword> - <keyword ref="ntqimage.html#swapRGB">swapRGB</keyword> - <keyword ref="ntqimage.html#systemBitOrder">systemBitOrder</keyword> - <keyword ref="ntqimage.html#systemByteOrder">systemByteOrder</keyword> - <keyword ref="ntqimage.html#text">text</keyword> - <keyword ref="ntqimage.html#textKeys">textKeys</keyword> - <keyword ref="ntqimage.html#textLanguages">textLanguages</keyword> - <keyword ref="ntqimage.html#textList">textList</keyword> - <keyword ref="ntqimage.html#valid">valid</keyword> - <keyword ref="ntqimage.html#width">width</keyword> - <keyword ref="ntqimage.html#xForm">xForm</keyword> - <keyword ref="ntqimage.html#~TQImage">~TQImage</keyword> - <keyword ref="ntqimage.html#bitBlt">bitBlt</keyword> - <keyword ref="ntqimage.html#operator-lt-lt">operator<<</keyword> - <keyword ref="ntqimage.html#operator-gt-gt">operator>></keyword> - <section ref="qimage-members.html" title="List of All Member Functions"/> - <section ref="qimage-h.html" title="Header File"/> -</section> -<section ref="qimageconsumer.html" title="QImageConsumer Class Reference"> - <keyword ref="qimageconsumer.html">QImageConsumer</keyword> - <keyword ref="qimageconsumer.html#changed">changed</keyword> - <keyword ref="qimageconsumer.html#end">end</keyword> - <keyword ref="qimageconsumer.html#frameDone">frameDone</keyword> - <keyword ref="qimageconsumer.html#setFramePeriod">setFramePeriod</keyword> - <keyword ref="qimageconsumer.html#setLooping">setLooping</keyword> - <keyword ref="qimageconsumer.html#setSize">setSize</keyword> - <section ref="qimageconsumer-members.html" title="List of All Member Functions"/> +<section ref="tqimage.html" title="TQImage Class Reference"> + <keyword ref="tqimage.html">TQImage</keyword> + <keyword ref="tqimage.html#Endian">Endian</keyword> + <keyword ref="tqimage.html#ScaleMode">ScaleMode</keyword> + <keyword ref="tqimage.html#allGray">allGray</keyword> + <keyword ref="tqimage.html#bitOrder">bitOrder</keyword> + <keyword ref="tqimage.html#bits">bits</keyword> + <keyword ref="tqimage.html#bytesPerLine">bytesPerLine</keyword> + <keyword ref="tqimage.html#color">color</keyword> + <keyword ref="tqimage.html#colorTable">colorTable</keyword> + <keyword ref="tqimage.html#convertBitOrder">convertBitOrder</keyword> + <keyword ref="tqimage.html#convertDepth">convertDepth</keyword> + <keyword ref="tqimage.html#convertDepthWithPalette">convertDepthWithPalette</keyword> + <keyword ref="tqimage.html#copy">copy</keyword> + <keyword ref="tqimage.html#create">create</keyword> + <keyword ref="tqimage.html#createAlphaMask">createAlphaMask</keyword> + <keyword ref="tqimage.html#createHeuristicMask">createHeuristicMask</keyword> + <keyword ref="tqimage.html#depth">depth</keyword> + <keyword ref="tqimage.html#detach">detach</keyword> + <keyword ref="tqimage.html#dotsPerMeterX">dotsPerMeterX</keyword> + <keyword ref="tqimage.html#dotsPerMeterY">dotsPerMeterY</keyword> + <keyword ref="tqimage.html#fill">fill</keyword> + <keyword ref="tqimage.html#fromMimeSource">fromMimeSource</keyword> + <keyword ref="tqimage.html#hasAlphaBuffer">hasAlphaBuffer</keyword> + <keyword ref="tqimage.html#height">height</keyword> + <keyword ref="tqimage.html#imageFormat">imageFormat</keyword> + <keyword ref="tqimage.html#inputFormatList">inputFormatList</keyword> + <keyword ref="tqimage.html#inputFormats">inputFormats</keyword> + <keyword ref="tqimage.html#invertPixels">invertPixels</keyword> + <keyword ref="tqimage.html#isGrayscale">isGrayscale</keyword> + <keyword ref="tqimage.html#isNull">isNull</keyword> + <keyword ref="tqimage.html#jumpTable">jumpTable</keyword> + <keyword ref="tqimage.html#load">load</keyword> + <keyword ref="tqimage.html#loadFromData">loadFromData</keyword> + <keyword ref="tqimage.html#mirror">mirror</keyword> + <keyword ref="tqimage.html#numBytes">numBytes</keyword> + <keyword ref="tqimage.html#numColors">numColors</keyword> + <keyword ref="tqimage.html#offset">offset</keyword> + <keyword ref="tqimage.html#operator!-eq">operator!=</keyword> + <keyword ref="tqimage.html#operator-eq">operator=</keyword> + <keyword ref="tqimage.html#operator-eq-eq">operator==</keyword> + <keyword ref="tqimage.html#outputFormatList">outputFormatList</keyword> + <keyword ref="tqimage.html#outputFormats">outputFormats</keyword> + <keyword ref="tqimage.html#pixel">pixel</keyword> + <keyword ref="tqimage.html#pixelIndex">pixelIndex</keyword> + <keyword ref="tqimage.html#rect">rect</keyword> + <keyword ref="tqimage.html#reset">reset</keyword> + <keyword ref="tqimage.html#save">save</keyword> + <keyword ref="tqimage.html#scale">scale</keyword> + <keyword ref="tqimage.html#scaleHeight">scaleHeight</keyword> + <keyword ref="tqimage.html#scaleWidth">scaleWidth</keyword> + <keyword ref="tqimage.html#scanLine">scanLine</keyword> + <keyword ref="tqimage.html#setAlphaBuffer">setAlphaBuffer</keyword> + <keyword ref="tqimage.html#setColor">setColor</keyword> + <keyword ref="tqimage.html#setDotsPerMeterX">setDotsPerMeterX</keyword> + <keyword ref="tqimage.html#setDotsPerMeterY">setDotsPerMeterY</keyword> + <keyword ref="tqimage.html#setNumColors">setNumColors</keyword> + <keyword ref="tqimage.html#setOffset">setOffset</keyword> + <keyword ref="tqimage.html#setPixel">setPixel</keyword> + <keyword ref="tqimage.html#setText">setText</keyword> + <keyword ref="tqimage.html#size">size</keyword> + <keyword ref="tqimage.html#smoothScale">smoothScale</keyword> + <keyword ref="tqimage.html#swapRGB">swapRGB</keyword> + <keyword ref="tqimage.html#systemBitOrder">systemBitOrder</keyword> + <keyword ref="tqimage.html#systemByteOrder">systemByteOrder</keyword> + <keyword ref="tqimage.html#text">text</keyword> + <keyword ref="tqimage.html#textKeys">textKeys</keyword> + <keyword ref="tqimage.html#textLanguages">textLanguages</keyword> + <keyword ref="tqimage.html#textList">textList</keyword> + <keyword ref="tqimage.html#valid">valid</keyword> + <keyword ref="tqimage.html#width">width</keyword> + <keyword ref="tqimage.html#xForm">xForm</keyword> + <keyword ref="tqimage.html#~TQImage">~TQImage</keyword> + <keyword ref="tqimage.html#bitBlt">bitBlt</keyword> + <keyword ref="tqimage.html#operator-lt-lt">operator<<</keyword> + <keyword ref="tqimage.html#operator-gt-gt">operator>></keyword> + <section ref="tqimage-members.html" title="List of All Member Functions"/> + <section ref="tqimage-h.html" title="Header File"/> +</section> +<section ref="tqimageconsumer.html" title="TQImageConsumer Class Reference"> + <keyword ref="tqimageconsumer.html">TQImageConsumer</keyword> + <keyword ref="tqimageconsumer.html#changed">changed</keyword> + <keyword ref="tqimageconsumer.html#end">end</keyword> + <keyword ref="tqimageconsumer.html#frameDone">frameDone</keyword> + <keyword ref="tqimageconsumer.html#setFramePeriod">setFramePeriod</keyword> + <keyword ref="tqimageconsumer.html#setLooping">setLooping</keyword> + <keyword ref="tqimageconsumer.html#setSize">setSize</keyword> + <section ref="tqimageconsumer-members.html" title="List of All Member Functions"/> <section ref="qasyncimageio-h.html" title="Header File"/> </section> -<section ref="qimagedecoder.html" title="QImageDecoder Class Reference"> - <keyword ref="qimagedecoder.html">QImageDecoder</keyword> - <keyword ref="qimagedecoder.html#decode">decode</keyword> - <keyword ref="qimagedecoder.html#format">format</keyword> - <keyword ref="qimagedecoder.html#formatName">formatName</keyword> - <keyword ref="qimagedecoder.html#image">image</keyword> - <keyword ref="qimagedecoder.html#inputFormats">inputFormats</keyword> - <keyword ref="qimagedecoder.html#registerDecoderFactory">registerDecoderFactory</keyword> - <keyword ref="qimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</keyword> - <keyword ref="qimagedecoder.html#~QImageDecoder">~QImageDecoder</keyword> - <section ref="qimagedecoder-members.html" title="List of All Member Functions"/> +<section ref="tqimagedecoder.html" title="TQImageDecoder Class Reference"> + <keyword ref="tqimagedecoder.html">TQImageDecoder</keyword> + <keyword ref="tqimagedecoder.html#decode">decode</keyword> + <keyword ref="tqimagedecoder.html#format">format</keyword> + <keyword ref="tqimagedecoder.html#formatName">formatName</keyword> + <keyword ref="tqimagedecoder.html#image">image</keyword> + <keyword ref="tqimagedecoder.html#inputFormats">inputFormats</keyword> + <keyword ref="tqimagedecoder.html#registerDecoderFactory">registerDecoderFactory</keyword> + <keyword ref="tqimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</keyword> + <keyword ref="tqimagedecoder.html#~TQImageDecoder">~TQImageDecoder</keyword> + <section ref="tqimagedecoder-members.html" title="List of All Member Functions"/> <section ref="qasyncimageio-h.html" title="Header File"/> </section> -<section ref="qimagedrag.html" title="QImageDrag Class Reference"> - <keyword ref="qimagedrag.html">QImageDrag</keyword> - <keyword ref="qimagedrag.html#canDecode">canDecode</keyword> - <keyword ref="qimagedrag.html#decode">decode</keyword> - <keyword ref="qimagedrag.html#setImage">setImage</keyword> - <keyword ref="qimagedrag.html#~QImageDrag">~QImageDrag</keyword> - <section ref="qimagedrag-members.html" title="List of All Member Functions"/> +<section ref="tqimagedrag.html" title="TQImageDrag Class Reference"> + <keyword ref="tqimagedrag.html">TQImageDrag</keyword> + <keyword ref="tqimagedrag.html#canDecode">canDecode</keyword> + <keyword ref="tqimagedrag.html#decode">decode</keyword> + <keyword ref="tqimagedrag.html#setImage">setImage</keyword> + <keyword ref="tqimagedrag.html#~TQImageDrag">~TQImageDrag</keyword> + <section ref="tqimagedrag-members.html" title="List of All Member Functions"/> <section ref="qdragobject-h.html" title="Header File"/> </section> -<section ref="qimageformat.html" title="QImageFormat Class Reference"> - <keyword ref="qimageformat.html">QImageFormat</keyword> - <keyword ref="qimageformat.html#decode">decode</keyword> - <section ref="qimageformat-members.html" title="List of All Member Functions"/> +<section ref="tqimageformat.html" title="TQImageFormat Class Reference"> + <keyword ref="tqimageformat.html">TQImageFormat</keyword> + <keyword ref="tqimageformat.html#decode">decode</keyword> + <section ref="tqimageformat-members.html" title="List of All Member Functions"/> <section ref="qasyncimageio-h.html" title="Header File"/> </section> -<section ref="ntqimageformatplugin.html" title="QImageFormatPlugin Class Reference"> - <keyword ref="ntqimageformatplugin.html">QImageFormatPlugin</keyword> - <keyword ref="ntqimageformatplugin.html#installIOHandler">installIOHandler</keyword> - <keyword ref="ntqimageformatplugin.html#keys">keys</keyword> - <keyword ref="ntqimageformatplugin.html#~QImageFormatPlugin">~QImageFormatPlugin</keyword> - <section ref="qimageformatplugin-members.html" title="List of All Member Functions"/> - <section ref="qimageformatplugin-h.html" title="Header File"/> -</section> -<section ref="qimageformattype.html" title="QImageFormatType Class Reference"> - <keyword ref="qimageformattype.html">QImageFormatType</keyword> - <keyword ref="qimageformattype.html#decoderFor">decoderFor</keyword> - <keyword ref="qimageformattype.html#formatName">formatName</keyword> - <keyword ref="qimageformattype.html#~QImageFormatType">~QImageFormatType</keyword> - <section ref="qimageformattype-members.html" title="List of All Member Functions"/> +<section ref="tqimageformatplugin.html" title="TQImageFormatPlugin Class Reference"> + <keyword ref="tqimageformatplugin.html">TQImageFormatPlugin</keyword> + <keyword ref="tqimageformatplugin.html#installIOHandler">installIOHandler</keyword> + <keyword ref="tqimageformatplugin.html#keys">keys</keyword> + <keyword ref="tqimageformatplugin.html#~TQImageFormatPlugin">~TQImageFormatPlugin</keyword> + <section ref="tqimageformatplugin-members.html" title="List of All Member Functions"/> + <section ref="tqimageformatplugin-h.html" title="Header File"/> +</section> +<section ref="tqimageformattype.html" title="TQImageFormatType Class Reference"> + <keyword ref="tqimageformattype.html">TQImageFormatType</keyword> + <keyword ref="tqimageformattype.html#decoderFor">decoderFor</keyword> + <keyword ref="tqimageformattype.html#formatName">formatName</keyword> + <keyword ref="tqimageformattype.html#~TQImageFormatType">~TQImageFormatType</keyword> + <section ref="tqimageformattype-members.html" title="List of All Member Functions"/> <section ref="qasyncimageio-h.html" title="Header File"/> </section> -<section ref="qimageio.html" title="QImageIO Class Reference"> - <keyword ref="qimageio.html">QImageIO</keyword> - <keyword ref="qimageio.html#defineIOHandler">defineIOHandler</keyword> - <keyword ref="qimageio.html#description">description</keyword> - <keyword ref="qimageio.html#fileName">fileName</keyword> - <keyword ref="qimageio.html#format">format</keyword> - <keyword ref="qimageio.html#gamma">gamma</keyword> - <keyword ref="qimageio.html#image">image</keyword> - <keyword ref="qimageio.html#imageFormat">imageFormat</keyword> - <keyword ref="qimageio.html#init">init</keyword> - <keyword ref="qimageio.html#inputFormats">inputFormats</keyword> - <keyword ref="qimageio.html#ioDevice">ioDevice</keyword> - <keyword ref="qimageio.html#outputFormats">outputFormats</keyword> - <keyword ref="qimageio.html#parameters">parameters</keyword> - <keyword ref="qimageio.html#quality">quality</keyword> - <keyword ref="qimageio.html#read">read</keyword> - <keyword ref="qimageio.html#setDescription">setDescription</keyword> - <keyword ref="qimageio.html#setFileName">setFileName</keyword> - <keyword ref="qimageio.html#setFormat">setFormat</keyword> - <keyword ref="qimageio.html#setGamma">setGamma</keyword> - <keyword ref="qimageio.html#setIODevice">setIODevice</keyword> - <keyword ref="qimageio.html#setImage">setImage</keyword> - <keyword ref="qimageio.html#setParameters">setParameters</keyword> - <keyword ref="qimageio.html#setQuality">setQuality</keyword> - <keyword ref="qimageio.html#setStatus">setStatus</keyword> - <keyword ref="qimageio.html#status">status</keyword> - <keyword ref="qimageio.html#write">write</keyword> - <keyword ref="qimageio.html#~QImageIO">~QImageIO</keyword> - <section ref="qimageio-members.html" title="List of All Member Functions"/> - <section ref="qimage-h.html" title="Header File"/> +<section ref="tqimageio.html" title="TQImageIO Class Reference"> + <keyword ref="tqimageio.html">TQImageIO</keyword> + <keyword ref="tqimageio.html#defineIOHandler">defineIOHandler</keyword> + <keyword ref="tqimageio.html#description">description</keyword> + <keyword ref="tqimageio.html#fileName">fileName</keyword> + <keyword ref="tqimageio.html#format">format</keyword> + <keyword ref="tqimageio.html#gamma">gamma</keyword> + <keyword ref="tqimageio.html#image">image</keyword> + <keyword ref="tqimageio.html#imageFormat">imageFormat</keyword> + <keyword ref="tqimageio.html#init">init</keyword> + <keyword ref="tqimageio.html#inputFormats">inputFormats</keyword> + <keyword ref="tqimageio.html#ioDevice">ioDevice</keyword> + <keyword ref="tqimageio.html#outputFormats">outputFormats</keyword> + <keyword ref="tqimageio.html#parameters">parameters</keyword> + <keyword ref="tqimageio.html#quality">quality</keyword> + <keyword ref="tqimageio.html#read">read</keyword> + <keyword ref="tqimageio.html#setDescription">setDescription</keyword> + <keyword ref="tqimageio.html#setFileName">setFileName</keyword> + <keyword ref="tqimageio.html#setFormat">setFormat</keyword> + <keyword ref="tqimageio.html#setGamma">setGamma</keyword> + <keyword ref="tqimageio.html#setIODevice">setIODevice</keyword> + <keyword ref="tqimageio.html#setImage">setImage</keyword> + <keyword ref="tqimageio.html#setParameters">setParameters</keyword> + <keyword ref="tqimageio.html#setQuality">setQuality</keyword> + <keyword ref="tqimageio.html#setStatus">setStatus</keyword> + <keyword ref="tqimageio.html#status">status</keyword> + <keyword ref="tqimageio.html#write">write</keyword> + <keyword ref="tqimageio.html#~TQImageIO">~TQImageIO</keyword> + <section ref="tqimageio-members.html" title="List of All Member Functions"/> + <section ref="tqimage-h.html" title="Header File"/> </section> <section ref="qimevent.html" title="QIMEvent Class Reference"> <keyword ref="qimevent.html">QIMEvent</keyword> diff --git a/doc/html/qwindowsmime.html b/doc/html/qwindowsmime.html index b47810182..42e354dc8 100644 --- a/doc/html/qwindowsmime.html +++ b/doc/html/qwindowsmime.html @@ -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" and supported by TQTextDrag. <li> CF_DIB - converted to "image/*", where * is -a <a href="ntqimage.html#outputFormats">TQt image format</a>, -and supported by <a href="qimagedrag.html">TQImageDrag</a>. +a <a href="tqimage.html#outputFormats">TQt image format</a>, +and supported by <a href="tqimagedrag.html">TQImageDrag</a>. <li> CF_HDROP - converted to "text/uri-list", and supported by <a href="quridrag.html">TQUriDrag</a>. </ul> diff --git a/doc/html/qwindowsystem_qws-h.html b/doc/html/qwindowsystem_qws-h.html index 02a40b3a9..7dd47c9bb 100644 --- a/doc/html/qwindowsystem_qws-h.html +++ b/doc/html/qwindowsystem_qws-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #include "tqmap.h" #include "ntqdatetime.h" #include "tqptrlist.h" -#include "ntqimage.h" +#include "tqimage.h" #include "qwsproperty_qws.h" #include "qwscommand_qws.h" diff --git a/doc/html/qwsserver.html b/doc/html/qwsserver.html index 9467193d7..9a04af45b 100644 --- a/doc/html/qwsserver.html +++ b/doc/html/qwsserver.html @@ -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 defined. The default is platform-dependent. -<h3 class=fn>void <a name="setDesktopBackground"></a>TQWSServer::setDesktopBackground ( const <a href="ntqimage.html">TQImage</a> & img )<tt> [static]</tt> +<h3 class=fn>void <a name="setDesktopBackground"></a>TQWSServer::setDesktopBackground ( const <a href="tqimage.html">TQImage</a> & img )<tt> [static]</tt> </h3> Sets the image <em>img</em> to be used as the background in the absence of obscuring windows. diff --git a/doc/html/scribble-example.html b/doc/html/scribble-example.html index 753a87546..0d39f4c04 100644 --- a/doc/html/scribble-example.html +++ b/doc/html/scribble-example.html @@ -153,7 +153,7 @@ protected slots: #include <<a href="qcolordialog-h.html">ntqcolordialog.h</a>> #include <<a href="qfiledialog-h.html">ntqfiledialog.h</a>> #include <<a href="qcursor-h.html">ntqcursor.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qstrlist-h.html">ntqstrlist.h</a>> #include <<a href="qpopupmenu-h.html">ntqpopupmenu.h</a>> #include <<a href="qintdict-h.html">ntqintdict.h</a>> @@ -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="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>(), &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>(), &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 ); buffer.resize( w, h ); 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>( &buffer, 0, 0, &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>( &buffer, 0, 0, &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 ) @@ -241,7 +241,7 @@ void <a name="f340"></a>Canvas::clearScreen() <a name="x920"></a> <a href="ntqmemarray.html">TQMemArray</a><TQRect> rects = e-><a href="qpaintevent.html#region">region</a>().rects(); <a name="x913"></a> for ( uint i = 0; i < rects.<a href="ntqmemarray.html#count">count</a>(); 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>(), &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>(), &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><TQString> formats; <a name="x924"></a> formats.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); - for ( unsigned int i = 0; i < TQImageIO::<a href="qimageio.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 ) ); + for ( unsigned int i = 0; i < 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="tqimageio.html#outputFormats">outputFormats</a>().at( i ) ); <a name="x912"></a> formats.<a href="ntqintdict.html#insert">insert</a>( menu-><a href="ntqmenudata.html#insertItem">insertItem</a>( TQString( "%1..." ).arg( str ) ), new <a href="ntqstring.html">TQString</a>( str ) ); } diff --git a/doc/html/shared.html b/doc/html/shared.html index ef13d55fb..3a80c2d95 100644 --- a/doc/html/shared.html +++ b/doc/html/shared.html @@ -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="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="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="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 diff --git a/doc/html/shclass.html b/doc/html/shclass.html index 9e3a51bf6..f57940236 100644 --- a/doc/html/shclass.html +++ b/doc/html/shclass.html @@ -169,7 +169,7 @@ explicitly shared: <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 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(). <p> <h2> Implicitly Shared Classes </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 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>. <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. diff --git a/doc/html/showimg-example.html b/doc/html/showimg-example.html index 561715f38..5d5884269 100644 --- a/doc/html/showimg-example.html +++ b/doc/html/showimg-example.html @@ -51,7 +51,7 @@ format (GIF, BMP, PPM, XMP, etc.). #define SHOWIMG_H #include <<a href="tqwidget-h.html">tqwidget.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> class TQLabel; @@ -80,7 +80,7 @@ private: int alloc_context; bool convertEvent( <a href="qmouseevent.html">TQMouseEvent</a>* e, int& x, int& y ); <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> pmScaled; // the scaled pixmap @@ -103,7 +103,7 @@ private: int clickx, clicky; bool may_be_other; static ImageViewer* other; - void setImage(const <a href="ntqimage.html">TQImage</a>& newimage); + void setImage(const <a href="tqimage.html">TQImage</a>& newimage); private slots: void to1Bit(); @@ -178,7 +178,7 @@ private slots: menubar = new <a href="ntqmenubar.html">TQMenuBar</a>(this); <a name="x1326"></a> menubar-><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 ); 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>()) { @@ -684,7 +684,7 @@ void <a name="f419"></a>ImageViewer::giveHelp() "</blockquote>" "<p>Supported input formats:" "<blockquote>"; -<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 += "</blockquote>"; 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; sy -= sh-1; } - <a href="ntqimage.html#bitBlt">bitBlt</a>( &image, dx, dy, &s->image, sx, sy, sw, sh ); + <a href="tqimage.html#bitBlt">bitBlt</a>( &image, dx, dy, &s->image, sx, sy, sw, sh ); reconvertImage(); <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() { #ifndef TQT_NO_MIMECLIPBOARD - <a href="ntqimage.html">TQImage</a> p = TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()->image(); -<a name="x1322"></a> if ( !p.<a href="ntqimage.html#isNull">isNull</a>() ) { + <a href="tqimage.html">TQImage</a> p = TQApplication::<a href="ntqapplication.html#clipboard">clipboard</a>()->image(); +<a name="x1322"></a> if ( !p.<a href="tqimage.html#isNull">isNull</a>() ) { filename = "pasted"; setImage(p); } #endif } -void <a name="f426"></a>ImageViewer::setImage(const <a href="ntqimage.html">TQImage</a>& newimage) +void <a name="f426"></a>ImageViewer::setImage(const <a href="tqimage.html">TQImage</a>& newimage) { image = newimage; @@ -825,7 +825,7 @@ void <a name="f431"></a>ImageViewer::toBitDepth(int d) #include "showimg.h" #include "imagefip.h" #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> int main( int argc, char **argv ) { diff --git a/doc/html/simple-application-example.html b/doc/html/simple-application-example.html index a40441fc4..ce0054f5f 100644 --- a/doc/html/simple-application-example.html +++ b/doc/html/simple-application-example.html @@ -103,7 +103,7 @@ private: #include "application.h" -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qtoolbar-h.html">ntqtoolbar.h</a>> #include <<a href="qtoolbutton-h.html">ntqtoolbutton.h</a>> diff --git a/doc/html/small-table-example-example.html b/doc/html/small-table-example-example.html index 84802592b..6e46bb553 100644 --- a/doc/html/small-table-example-example.html +++ b/doc/html/small-table-example-example.html @@ -48,7 +48,7 @@ This example displays a <a href="ntqtable.html">TQTable</a> and some <a href="qt #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="qtable-h.html">ntqtable.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qstringlist-h.html">ntqstringlist.h</a>> @@ -74,8 +74,8 @@ int main( int argc, char **argv ) header-><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 href="ntqimage.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 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="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="x2805"></a> table.<a href="ntqtable.html#setText">setText</a>( 3, 2, "A Pixmap" ); diff --git a/doc/html/table-small-table-demo-main-cpp.html b/doc/html/table-small-table-demo-main-cpp.html index 642865021..9369fbc93 100644 --- a/doc/html/table-small-table-demo-main-cpp.html +++ b/doc/html/table-small-table-demo-main-cpp.html @@ -44,7 +44,7 @@ body { background: #ffffff; color: black; } #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="qtable-h.html">ntqtable.h</a>> -#include <<a href="qimage-h.html">ntqimage.h</a>> +#include <<a href="tqimage-h.html">tqimage.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qstringlist-h.html">ntqstringlist.h</a>> @@ -70,8 +70,8 @@ int main( int argc, char **argv ) header-><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 href="ntqimage.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 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="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="x2805"></a> table.<a href="ntqtable.html#setText">setText</a>( 3, 2, "A Pixmap" ); diff --git a/doc/html/themes-example.html b/doc/html/themes-example.html index 4f73df27c..834e07a33 100644 --- a/doc/html/themes-example.html +++ b/doc/html/themes-example.html @@ -156,7 +156,7 @@ private: #include "ntqpalette.h" // for now #include "tqwidget.h" #include "ntqlabel.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpushbutton.h" #include "tqwidget.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 // pixmaps here and apply to it all widgets - <a href="ntqimage.html">TQImage</a> img(button_xpm); - <a href="ntqimage.html">TQImage</a> orig = img; -<a name="x208"></a> orig.<a href="ntqimage.html#detach">detach</a>(); + <a href="tqimage.html">TQImage</a> img(button_xpm); + <a href="tqimage.html">TQImage</a> orig = img; +<a name="x208"></a> orig.<a href="tqimage.html#detach">detach</a>(); <a href="ntqpixmap.html">TQPixmap</a> button; <a name="x228"></a> button.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); int i; -<a name="x209"></a> for (i=0; i<img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { -<a name="x207"></a> TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); +<a name="x209"></a> for (i=0; i<img.<a href="tqimage.html#numColors">numColors</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 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; mid.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); img = orig; - img.<a href="ntqimage.html#detach">detach</a>(); - for (i=0; i<img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { - TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); + img.<a href="tqimage.html#detach">detach</a>(); + for (i=0; i<img.<a href="tqimage.html#numColors">numColors</a>(); i++) { + TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i); <a href="ntqcolor.html">TQColor</a> c(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; light.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); img = orig; - img.<a href="ntqimage.html#detach">detach</a>(); - for (i=0; i<img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { - TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); + img.<a href="tqimage.html#detach">detach</a>(); + for (i=0; i<img.<a href="tqimage.html#numColors">numColors</a>(); i++) { + TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i); <a href="ntqcolor.html">TQColor</a> c(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; 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; background.<a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(bgimage); img = bgimage; - img.<a href="ntqimage.html#detach">detach</a>(); - for (i=0; i<img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { - TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); + img.<a href="tqimage.html#detach">detach</a>(); + for (i=0; i<img.<a href="tqimage.html#numColors">numColors</a>(); i++) { + TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i); <a href="ntqcolor.html">TQColor</a> c(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-><a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); img = bgimage; - img.<a href="ntqimage.html#detach">detach</a>(); - for (i=0; i<img.<a href="ntqimage.html#numColors">numColors</a>(); i++) { - TQRgb rgb = img.<a href="ntqimage.html#color">color</a>(i); + img.<a href="tqimage.html#detach">detach</a>(); + for (i=0; i<img.<a href="tqimage.html#numColors">numColors</a>(); i++) { + TQRgb rgb = img.<a href="tqimage.html#color">color</a>(i); <a href="ntqcolor.html">TQColor</a> c(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-><a href="ntqpixmap.html#convertFromImage">convertFromImage</a>(img); @@ -1652,7 +1652,7 @@ private: #include "ntqpalette.h" // for now #include "tqwidget.h" #include "ntqlabel.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpushbutton.h" #include "tqwidget.h" #include "ntqrangecontrol.h" diff --git a/doc/html/titleindex b/doc/html/titleindex index a639bbc1b..a855353e6 100644 --- a/doc/html/titleindex +++ b/doc/html/titleindex @@ -512,22 +512,22 @@ QIconView Class | ntqiconview.html QIconView Member List | qiconview-members.html QIconViewItem Class | qiconviewitem.html QIconViewItem Member List | qiconviewitem-members.html -TQImage Class | ntqimage.html -TQImage Member List | qimage-members.html -QImageConsumer Class | qimageconsumer.html -QImageConsumer Member List | qimageconsumer-members.html -QImageDecoder Class | qimagedecoder.html -QImageDecoder Member List | qimagedecoder-members.html -QImageDrag Class | qimagedrag.html -QImageDrag Member List | qimagedrag-members.html -QImageFormat Class | qimageformat.html -QImageFormat Member List | qimageformat-members.html -QImageFormatPlugin Class | ntqimageformatplugin.html -QImageFormatPlugin Member List | qimageformatplugin-members.html -QImageFormatType Class | qimageformattype.html -QImageFormatType Member List | qimageformattype-members.html -QImageIO Class | qimageio.html -QImageIO Member List | qimageio-members.html +TQImage Class | tqimage.html +TQImage Member List | tqimage-members.html +TQImageConsumer Class | tqimageconsumer.html +TQImageConsumer Member List | tqimageconsumer-members.html +TQImageDecoder Class | tqimagedecoder.html +TQImageDecoder Member List | tqimagedecoder-members.html +TQImageDrag Class | tqimagedrag.html +TQImageDrag Member List | tqimagedrag-members.html +TQImageFormat Class | tqimageformat.html +TQImageFormat Member List | tqimageformat-members.html +TQImageFormatPlugin Class | tqimageformatplugin.html +TQImageFormatPlugin Member List | tqimageformatplugin-members.html +TQImageFormatType Class | tqimageformattype.html +TQImageFormatType Member List | tqimageformattype-members.html +TQImageIO Class | tqimageio.html +TQImageIO Member List | tqimageio-members.html QInputDialog Class | ntqinputdialog.html QInputDialog Member List | qinputdialog-members.html QIntCache Class | ntqintcache.html @@ -1256,8 +1256,8 @@ ntqhostaddress.h Include File | qhostaddress-h.html ntqhttp.h Include File | qhttp-h.html ntqiconset.h Include File | qiconset-h.html ntqiconview.h Include File | qiconview-h.html -ntqimage.h Include File | qimage-h.html -ntqimageformatplugin.h Include File | qimageformatplugin-h.html +tqimage.h Include File | tqimage-h.html +tqimageformatplugin.h Include File | tqimageformatplugin-h.html ntqinputdialog.h Include File | qinputdialog-h.html ntqintcache.h Include File | qintcache-h.html ntqintdict.h Include File | qintdict-h.html diff --git a/doc/html/tqcanvaspixmap.html b/doc/html/tqcanvaspixmap.html index eec83185d..5fc01cef7 100644 --- a/doc/html/tqcanvaspixmap.html +++ b/doc/html/tqcanvaspixmap.html @@ -63,11 +63,11 @@ you retrieve a frame (pixmap) from a TQCanvasSprite it will be returned as a TQCanvasPixmap. <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 -a <a href="ntqimage.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>). +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="tqimageio.html">TQImageIO</a>). <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 -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 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 @@ -83,7 +83,7 @@ stays in the same position. </h3> Constructs a TQCanvasPixmap that uses the image stored in <em>datafilename</em>. -<h3 class=fn><a name="TQCanvasPixmap-2"></a>TQCanvasPixmap::TQCanvasPixmap ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a name="TQCanvasPixmap-2"></a>TQCanvasPixmap::TQCanvasPixmap ( const <a href="tqimage.html">TQImage</a> & image ) </h3> Constructs a TQCanvasPixmap from the image <em>image</em>. diff --git a/doc/html/qimage-h.html b/doc/html/tqimage-h.html index 7a36f4890..2e0e2a467 100644 --- a/doc/html/qimage-h.html +++ b/doc/html/tqimage-h.html @@ -1,9 +1,9 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqimage.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimage.h:1 --> <html> <head> <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"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } @@ -29,13 +29,13 @@ body { background: #ffffff; color: black; } | <a href="functions.html"> <font color="#004faf">Functions</font></a> </td> -<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>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> <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 ** diff --git a/doc/html/tqimage-members.html b/doc/html/tqimage-members.html new file mode 100644 index 000000000..6ebc225ac --- /dev/null +++ b/doc/html/tqimage-members.html @@ -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 Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped 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 © 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> diff --git a/doc/html/ntqimage.html b/doc/html/tqimage.html index da2d76a9a..74b78d411 100644 --- a/doc/html/ntqimage.html +++ b/doc/html/tqimage.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qimage.cpp:69 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqimage.cpp:69 --> <html> <head> <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 representation with direct access to the pixel data. <a href="#details">More...</a> -<p><tt>#include <<a href="qimage-h.html">ntqimage.h</a>></tt> -<p><a href="qimage-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqimage-h.html">tqimage.h</a>></tt> +<p><a href="tqimage-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <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>, 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> <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> <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. <p> <p>See also <a href="#isNull">isNull</a>(). -<h3 class=fn><a name="TQImage-2"></a>TQImage::TQImage ( int w, int h, int depth, int numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) +<h3 class=fn><a name="TQImage-2"></a>TQImage::TQImage ( int w, int h, int depth, int numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) </h3> 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>. @@ -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. <p> <p>See also <a href="#create">create</a>(). -<h3 class=fn><a name="TQImage-3"></a>TQImage::TQImage ( const <a href="ntqsize.html">TQSize</a> & size, int depth, int numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) +<h3 class=fn><a name="TQImage-3"></a>TQImage::TQImage ( const <a href="ntqsize.html">TQSize</a> & size, int depth, int numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) </h3> Constructs an image with size <em>size</em> pixels, depth <em>depth</em> bits, <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 guess the file format. <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. -<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 char * const xpm[] ) </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> <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 * yourdata, int w, int h, int depth, TQRgb * colortable, int numColors, <a href="ntqimage.html#Endian-enum">Endian</a> bitOrder ) +<h3 class=fn><a name="TQImage-7"></a>TQImage::TQImage ( uchar * yourdata, int w, int h, int depth, TQRgb * colortable, int numColors, <a href="tqimage.html#Endian-enum">Endian</a> bitOrder ) </h3> 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 @@ -325,7 +325,7 @@ will be allocated (and destructed later). <p> Note that <em>yourdata</em> must be 32-bit aligned. <p> The endianness is given in <em>bitOrder</em>. -<h3 class=fn><a name="TQImage-8"></a>TQImage::TQImage ( uchar * yourdata, int w, int h, int depth, int bpl, TQRgb * colortable, int numColors, <a href="ntqimage.html#Endian-enum">Endian</a> bitOrder ) +<h3 class=fn><a name="TQImage-8"></a>TQImage::TQImage ( uchar * yourdata, int w, int h, int depth, int bpl, TQRgb * colortable, int numColors, <a href="tqimage.html#Endian-enum">Endian</a> bitOrder ) </h3> Constructs an image that uses an existing memory buffer. The 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> <b>Warning:</b> This constructor is only available on TQt/Embedded. -<h3 class=fn><a name="TQImage-9"></a>TQImage::TQImage ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a name="TQImage-9"></a>TQImage::TQImage ( const <a href="tqimage.html">TQImage</a> & image ) </h3> 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> <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> <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> <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> 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> bitOrder ) const </h3> Converts the bit order of the image to <em>bitOrder</em> and returns the 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. <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 depth, int conversion_flags ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertDepth"></a>TQImage::convertDepth ( int depth, int conversion_flags ) const </h3> Converts the depth (bpp) of the image to <em>depth</em> and returns the 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. <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 depth ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertDepth-2"></a>TQImage::convertDepth ( int depth ) const </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="convertDepthWithPalette"></a>TQImage::convertDepthWithPalette ( int d, TQRgb * palette, int palette_count, int conversion_flags = 0 ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="convertDepthWithPalette"></a>TQImage::convertDepthWithPalette ( int d, TQRgb * palette, int palette_count, int conversion_flags = 0 ) const </h3> 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 @@ -434,12 +434,12 @@ change in future implementations. <p> Currently inefficient for non-32-bit images. <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> Returns a <a href="shclass.html">deep copy</a> of the image. <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 x, int y, int w, int h, int conversion_flags = 0 ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="copy-2"></a>TQImage::copy ( int x, int y, int w, int h, int conversion_flags = 0 ) const </h3> 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 @@ -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. <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 <a href="ntqrect.html">TQRect</a> & r ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="copy-3"></a>TQImage::copy ( const <a href="ntqrect.html">TQRect</a> & r ) const </h3> 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 @@ -459,7 +459,7 @@ the image. <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. -<h3 class=fn>bool <a name="create"></a>TQImage::create ( int width, int height, int depth, int numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) +<h3 class=fn>bool <a name="create"></a>TQImage::create ( int width, int height, int depth, int numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) </h3> 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 @@ -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>()). <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 <a href="ntqsize.html">TQSize</a> &, int depth, int numColors = 0, <a href="ntqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) +<h3 class=fn>bool <a name="create-2"></a>TQImage::create ( const <a href="ntqsize.html">TQSize</a> &, int depth, int numColors = 0, <a href="tqimage.html#Endian-enum">Endian</a> bitOrder = IgnoreEndian ) </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="createAlphaMask"></a>TQImage::createAlphaMask ( int conversion_flags = 0 ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="createAlphaMask"></a>TQImage::createAlphaMask ( int conversion_flags = 0 ) const </h3> 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. @@ -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>(). <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 clipTight = TRUE ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="createHeuristicMask"></a>TQImage::createHeuristicMask ( bool clipTight = TRUE ) const </h3> Creates and returns a 1-bpp heuristic mask for this image. It 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. <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 <a href="ntqstring.html">TQString</a> & abs_name )<tt> [static]</tt> +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="fromMimeSource"></a>TQImage::fromMimeSource ( const <a href="ntqstring.html">TQString</a> & abs_name )<tt> [static]</tt> </h3> Convenience function. Gets the data associated with the absolute name <em>abs_name</em> from the default mime source factory and decodes it 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> @@ -581,7 +581,7 @@ FALSE. </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 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>() to get lists that include the installed formats. <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> -<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>. <h3 class=fn><a href="ntqstrlist.html">TQStrList</a> <a name="inputFormats"></a>TQImage::inputFormats ()<tt> [static]</tt> </h3> Returns a list of image formats that are supported for image 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 invertAlpha = TRUE ) </h3> @@ -652,9 +652,9 @@ image was successfully loaded; otherwise returns FALSE. 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 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. -<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 uchar * buf, uint len, const char * format = 0 ) </h3> @@ -664,21 +664,21 @@ returns FALSE. 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 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. -<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> buf, const char * format = 0 ) </h3> 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>. -<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> Returns a TQImage which is a vertically mirrored copy of this image. The original TQImage is not changed. -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="mirror-2"></a>TQImage::mirror ( bool horizontal, bool vertical ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="mirror-2"></a>TQImage::mirror ( bool horizontal, bool vertical ) const </h3> 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 @@ -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 offset by when positioning relative to other images. -<h3 class=fn>bool <a name="operator!-eq"></a>TQImage::operator!= ( const <a href="ntqimage.html">TQImage</a> & i ) const +<h3 class=fn>bool <a name="operator!-eq"></a>TQImage::operator!= ( const <a href="tqimage.html">TQImage</a> & i ) const </h3> Returns TRUE if this image and image <em>i</em> have different contents; 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. <p> <p>See also <a href="#operator-eq">operator=</a>(). -<h3 class=fn><a href="ntqimage.html">TQImage</a> & <a name="operator-eq"></a>TQImage::operator= ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a href="tqimage.html">TQImage</a> & <a name="operator-eq"></a>TQImage::operator= ( const <a href="tqimage.html">TQImage</a> & image ) </h3> Assigns a <a href="shclass.html">shallow copy</a> of <em>image</em> to this image and returns a reference to this image. <p> <p>See also <a href="#copy">copy</a>(). -<h3 class=fn><a href="ntqimage.html">TQImage</a> & <a name="operator-eq-2"></a>TQImage::operator= ( const <a href="ntqpixmap.html">TQPixmap</a> & pixmap ) +<h3 class=fn><a href="tqimage.html">TQImage</a> & <a name="operator-eq-2"></a>TQImage::operator= ( const <a href="ntqpixmap.html">TQPixmap</a> & pixmap ) </h3> 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 @@ -731,7 +731,7 @@ reference to the image. dereference the shared data. <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 <a href="ntqimage.html">TQImage</a> & i ) const +<h3 class=fn>bool <a name="operator-eq-eq"></a>TQImage::operator== ( const <a href="tqimage.html">TQImage</a> & i ) const </h3> Returns TRUE if this image and image <em>i</em> have the same contents; otherwise returns FALSE. The comparison can be slow, unless there @@ -754,13 +754,13 @@ over a copy, e.g. } </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> Returns a list of image formats that are supported for image 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>. <h3 class=fn>TQRgb <a name="pixel"></a>TQImage::pixel ( int x, int y ) const @@ -799,7 +799,7 @@ compressed files, 100 for large uncompressed files, and -1 (the default) to use the default settings. <p> Returns TRUE if the image was successfully saved; otherwise 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> * device, const char * format, int quality = -1 ) const </h3> @@ -816,7 +816,7 @@ TQByteArray: </pre> -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scale"></a>TQImage::scale ( int w, int h, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scale"></a>TQImage::scale ( int w, int h, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const </h3> 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>. @@ -836,12 +836,12 @@ function returns a <a href="#isNull">null</a> image. 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>(). -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scale-2"></a>TQImage::scale ( const <a href="ntqsize.html">TQSize</a> & s, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scale-2"></a>TQImage::scale ( const <a href="ntqsize.html">TQSize</a> & s, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const </h3> 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>. -<h3 class=fn><a href="ntqimage.html">TQImage</a> <a name="scaleHeight"></a>TQImage::scaleHeight ( int h ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scaleHeight"></a>TQImage::scaleHeight ( int h ) const </h3> Returns a scaled copy of the image. The returned image has a 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>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 w ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="scaleWidth"></a>TQImage::scaleWidth ( int w ) const </h3> Returns a scaled copy of the image. The returned image has a width 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> <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 w, int h, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="smoothScale"></a>TQImage::smoothScale ( int w, int h, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const </h3> 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 @@ -970,24 +970,24 @@ notice appear in supporting documentation. This software is provided "as is" without express or implied warranty. <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 <a href="ntqsize.html">TQSize</a> & s, <a href="ntqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="smoothScale-2"></a>TQImage::smoothScale ( const <a href="ntqsize.html">TQSize</a> & s, <a href="tqimage.html#ScaleMode-enum">ScaleMode</a> mode = ScaleFree ) const </h3> 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>. -<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> Returns a TQImage in which the values of the red and blue components of all pixels have been swapped, effectively converting 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> Determines the bit order of the display hardware. Returns TQImage::LittleEndian (LSB first) or TQImage::BigEndian (MSB first). <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> Determines the host computer byte order. Returns 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>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 <a href="ntqwmatrix.html">TQWMatrix</a> & matrix ) const +<h3 class=fn><a href="tqimage.html">TQImage</a> <a name="xForm"></a>TQImage::xForm ( const <a href="ntqwmatrix.html">TQWMatrix</a> & matrix ) const </h3> Returns a copy of the image that is transformed using the <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>. <hr><h2>Related Functions</h2> -<h3 class=fn>void <a name="bitBlt"></a>bitBlt ( <a href="ntqimage.html">TQImage</a> * dst, int dx, int dy, const <a href="ntqimage.html">TQImage</a> * src, int sx, int sy, int sw, int sh, int conversion_flags ) +<h3 class=fn>void <a name="bitBlt"></a>bitBlt ( <a href="tqimage.html">TQImage</a> * dst, int dx, int dy, const <a href="tqimage.html">TQImage</a> * src, int sx, int sy, int sw, int sh, int conversion_flags ) </h3> <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> Currently inefficient for non 32-bit images. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-lt-lt"></a>operator<< ( <a href="ntqdatastream.html">TQDataStream</a> & s, const <a href="tqimage.html">TQImage</a> & image ) </h3> <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> <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> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="operator-gt-gt"></a>operator>> ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqimage.html">TQImage</a> & image ) </h3> <p> Reads an image from the stream <em>s</em> and stores it in <em>image</em>. diff --git a/doc/html/qimageconsumer-members.html b/doc/html/tqimageconsumer-members.html index 3325c5f66..f69585fe4 100644 --- a/doc/html/qimageconsumer-members.html +++ b/doc/html/tqimageconsumer-members.html @@ -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> <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> -<li><a href="qimageconsumer.html#changed">changed</a>() -<li><a href="qimageconsumer.html#end">end</a>() -<li><a href="qimageconsumer.html#frameDone">frameDone</a>() -<li><a href="qimageconsumer.html#setFramePeriod">setFramePeriod</a>() -<li><a href="qimageconsumer.html#setLooping">setLooping</a>() -<li><a href="qimageconsumer.html#setSize">setSize</a>() +<li><a href="tqimageconsumer.html#changed">changed</a>() +<li><a href="tqimageconsumer.html#end">end</a>() +<li><a href="tqimageconsumer.html#frameDone">frameDone</a>() +<li><a href="tqimageconsumer.html#setFramePeriod">setFramePeriod</a>() +<li><a href="tqimageconsumer.html#setLooping">setLooping</a>() +<li><a href="tqimageconsumer.html#setSize">setSize</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qimageconsumer.html b/doc/html/tqimageconsumer.html index c2110357f..365e9aa62 100644 --- a/doc/html/qimageconsumer.html +++ b/doc/html/tqimageconsumer.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQImageConsumer class is an abstraction used by TQImageDecoder. <a href="#details">More...</a> <p><tt>#include <<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>></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> <ul> <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> -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> 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. -<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 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. <p> You'd use the TQImageConsumer class, for example, if you were 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> <h3 class=fn>void <a name="changed"></a>TQImageConsumer::changed ( const <a href="ntqrect.html">TQRect</a> & )<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 displayed. <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 <a href="ntqpoint.html">TQPoint</a> & offset, const <a href="ntqrect.html">TQRect</a> & rect )<tt> [pure virtual]</tt> </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 image should be moved by <em>offset</em> and displayed. <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 milliseconds )<tt> [pure virtual]</tt> </h3> @@ -118,7 +118,7 @@ decoding. <li> 2 = Repeat once after first pass through images <li> etc. </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 again, of course, but that can be ignored), or keep copies of the changed areas at the ends of frames. diff --git a/doc/html/qimagedecoder-members.html b/doc/html/tqimagedecoder-members.html index 7777631bd..f1aacef8d 100644 --- a/doc/html/qimagedecoder-members.html +++ b/doc/html/tqimagedecoder-members.html @@ -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> <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> -<li><a href="qimagedecoder.html#TQImageDecoder">TQImageDecoder</a>() -<li><a href="qimagedecoder.html#~TQImageDecoder">~TQImageDecoder</a>() -<li><a href="qimagedecoder.html#decode">decode</a>() -<li><a href="qimagedecoder.html#format">format</a>() -<li><a href="qimagedecoder.html#formatName">formatName</a>() -<li><a href="qimagedecoder.html#image">image</a>() -<li><a href="qimagedecoder.html#inputFormats">inputFormats</a>() -<li><a href="qimagedecoder.html#registerDecoderFactory">registerDecoderFactory</a>() -<li><a href="qimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</a>() +<li><a href="tqimagedecoder.html#TQImageDecoder">TQImageDecoder</a>() +<li><a href="tqimagedecoder.html#~TQImageDecoder">~TQImageDecoder</a>() +<li><a href="tqimagedecoder.html#decode">decode</a>() +<li><a href="tqimagedecoder.html#format">format</a>() +<li><a href="tqimagedecoder.html#formatName">formatName</a>() +<li><a href="tqimagedecoder.html#image">image</a>() +<li><a href="tqimagedecoder.html#inputFormats">inputFormats</a>() +<li><a href="tqimagedecoder.html#registerDecoderFactory">registerDecoderFactory</a>() +<li><a href="tqimagedecoder.html#unregisterDecoderFactory">unregisterDecoderFactory</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qimagedecoder.html b/doc/html/tqimagedecoder.html index bd484b58d..aec7b77d5 100644 --- a/doc/html/qimagedecoder.html +++ b/doc/html/tqimagedecoder.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQImageDecoder class is an incremental image decoder for all supported image formats. <a href="#details">More...</a> <p><tt>#include <<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>></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> <ul> <li class=fn><a href="#TQImageDecoder"><b>TQImageDecoder</b></a> ( TQImageConsumer * 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 -<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 -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 image data via its <a href="#decode">decode</a>() method and expresses its decoding by 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. <p> TQImageFormatType and TQImageFormat are the classes that you might 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>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQImageDecoder"></a>TQImageDecoder::TQImageDecoder ( <a href="qimageconsumer.html">TQImageConsumer</a> * c ) +<h3 class=fn><a name="TQImageDecoder"></a>TQImageDecoder::TQImageDecoder ( <a href="tqimageconsumer.html">TQImageConsumer</a> * c ) </h3> 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> @@ -99,15 +99,15 @@ consumer for which it decoded the image is <em>not</em> destroyed. </h3> Call this function to decode some data into image changes. The 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 given in <em>length</em>. <p> Returns the number of bytes consumed: 0 if consumption is complete, and -1 if decoding fails due to invalid data. -<h3 class=fn><a href="qimageformattype.html">TQImageFormatType</a> * <a name="format"></a>TQImageDecoder::format ( const char * name )<tt> [static]</tt> +<h3 class=fn><a href="tqimageformattype.html">TQImageFormatType</a> * <a name="format"></a>TQImageDecoder::format ( const char * name )<tt> [static]</tt> </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 format. <em>name</em> is one of the formats listed by <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>. <p> Returns 0 if the format is not recognized. -<h3 class=fn>const <a href="ntqimage.html">TQImage</a> & <a name="image"></a>TQImageDecoder::image () +<h3 class=fn>const <a href="tqimage.html">TQImage</a> & <a name="image"></a>TQImageDecoder::image () </h3> <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 supported. -<h3 class=fn>void <a name="registerDecoderFactory"></a>TQImageDecoder::registerDecoderFactory ( <a href="qimageformattype.html">TQImageFormatType</a> * f )<tt> [static]</tt> +<h3 class=fn>void <a name="registerDecoderFactory"></a>TQImageDecoder::registerDecoderFactory ( <a href="tqimageformattype.html">TQImageFormatType</a> * f )<tt> [static]</tt> </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. -<h3 class=fn>void <a name="unregisterDecoderFactory"></a>TQImageDecoder::unregisterDecoderFactory ( <a href="qimageformattype.html">TQImageFormatType</a> * f )<tt> [static]</tt> +<h3 class=fn>void <a name="unregisterDecoderFactory"></a>TQImageDecoder::unregisterDecoderFactory ( <a href="tqimageformattype.html">TQImageFormatType</a> * f )<tt> [static]</tt> </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. <!-- eof --> diff --git a/doc/html/qimagedrag-members.html b/doc/html/tqimagedrag-members.html index 91a8648f5..36996b57a 100644 --- a/doc/html/qimagedrag-members.html +++ b/doc/html/tqimagedrag-members.html @@ -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> <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> -<li><a href="qimagedrag.html#TQImageDrag">TQImageDrag</a>() -<li><a href="qimagedrag.html#~TQImageDrag">~TQImageDrag</a>() +<li><a href="tqimagedrag.html#TQImageDrag">TQImageDrag</a>() +<li><a href="tqimagedrag.html#~TQImageDrag">~TQImageDrag</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#child">child</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#connectNotify">connectNotify</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#destroyed">destroyed</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#sender">sender</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="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqobject.html#setProperty">setProperty</a>() diff --git a/doc/html/qimagedrag.html b/doc/html/tqimagedrag.html index ed572a259..ca3c5448f 100644 --- a/doc/html/qimagedrag.html +++ b/doc/html/tqimagedrag.html @@ -36,7 +36,7 @@ transferring images. <a href="#details">More...</a> <p><tt>#include <<a href="qdragobject-h.html">ntqdragobject.h</a>></tt> <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> <ul> <li class=fn><a href="#TQImageDrag"><b>TQImageDrag</b></a> ( TQImage image, TQWidget * dragSource = 0, const char * name = 0 )</li> @@ -57,14 +57,14 @@ transferring images. transferring images. <p> <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>. <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>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQImageDrag"></a>TQImageDrag::TQImageDrag ( <a href="ntqimage.html">TQImage</a> image, <a href="tqwidget.html">TQWidget</a> * dragSource = 0, const char * name = 0 ) +<h3 class=fn><a name="TQImageDrag"></a>TQImageDrag::TQImageDrag ( <a href="tqimage.html">TQImage</a> image, <a href="tqwidget.html">TQWidget</a> * dragSource = 0, const char * name = 0 ) </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. @@ -85,7 +85,7 @@ into an image; otherwise returns FALSE. <p> <p>See also <a href="#decode">decode</a>(). <p>Example: <a href="desktop-example.html#x1731">desktop/desktop.cpp</a>. -<h3 class=fn>bool <a name="decode"></a>TQImageDrag::decode ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="ntqimage.html">TQImage</a> & img )<tt> [static]</tt> +<h3 class=fn>bool <a name="decode"></a>TQImageDrag::decode ( const <a href="qmimesource.html">TQMimeSource</a> * e, <a href="tqimage.html">TQImage</a> & img )<tt> [static]</tt> </h3> Attempts to decode the dropped information in mime source <em>e</em> 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 FALSE. <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>(). -<h3 class=fn>void <a name="setImage"></a>TQImageDrag::setImage ( <a href="ntqimage.html">TQImage</a> image )<tt> [virtual]</tt> +<h3 class=fn>void <a name="setImage"></a>TQImageDrag::setImage ( <a href="tqimage.html">TQImage</a> image )<tt> [virtual]</tt> </h3> 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. diff --git a/doc/html/qimageformat-members.html b/doc/html/tqimageformat-members.html index f43464a9f..78ae5ed7c 100644 --- a/doc/html/qimageformat-members.html +++ b/doc/html/tqimageformat-members.html @@ -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> <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> -<li><a href="qimageformat.html#decode">decode</a>() +<li><a href="tqimageformat.html#decode">decode</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qimageformat.html b/doc/html/tqimageformat.html index 471a24d8e..0b1e9b51e 100644 --- a/doc/html/qimageformat.html +++ b/doc/html/tqimageformat.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQImageFormat class is an incremental image decoder for a specific image format. <a href="#details">More...</a> <p><tt>#include <<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>></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> <ul> <li class=fn>virtual int <a href="#decode"><b>decode</b></a> ( TQImage & img, TQImageConsumer * consumer, const uchar * buffer, int length ) = 0</li> @@ -46,11 +46,11 @@ The TQImageFormat class is an incremental image decoder for a specific image for <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 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 -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 to process your new format. <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>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn>int <a name="decode"></a>TQImageFormat::decode ( <a href="ntqimage.html">TQImage</a> & img, <a href="qimageconsumer.html">TQImageConsumer</a> * consumer, const uchar * buffer, int length )<tt> [pure virtual]</tt> +<h3 class=fn>int <a name="decode"></a>TQImageFormat::decode ( <a href="tqimage.html">TQImage</a> & img, <a href="tqimageconsumer.html">TQImageConsumer</a> * consumer, const uchar * buffer, int length )<tt> [pure virtual]</tt> </h3> <p> New subclasses must reimplement this method. diff --git a/doc/html/qimageformatplugin-h.html b/doc/html/tqimageformatplugin-h.html index 312a633e5..659246115 100644 --- a/doc/html/qimageformatplugin-h.html +++ b/doc/html/tqimageformatplugin-h.html @@ -1,9 +1,9 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqimageformatplugin.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimageformatplugin.h:1 --> <html> <head> <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"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } @@ -29,13 +29,13 @@ body { background: #ffffff; color: black; } | <a href="functions.html"> <font color="#004faf">Functions</font></a> </td> -<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>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> <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 ??? ** diff --git a/doc/html/qimageformatplugin-members.html b/doc/html/tqimageformatplugin-members.html index b37d95194..b385c21d5 100644 --- a/doc/html/qimageformatplugin-members.html +++ b/doc/html/tqimageformatplugin-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqimageformatplugin.h:48 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimageformatplugin.h:48 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,13 +32,13 @@ body { background: #ffffff; color: black; } <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQImageFormatPlugin</h1> <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> -<li><a href="ntqimageformatplugin.html#TQImageFormatPlugin">TQImageFormatPlugin</a>() -<li><a href="ntqimageformatplugin.html#~TQImageFormatPlugin">~TQImageFormatPlugin</a>() -<li><a href="ntqimageformatplugin.html#installIOHandler">installIOHandler</a>() -<li><a href="ntqimageformatplugin.html#keys">keys</a>() +<li><a href="tqimageformatplugin.html#TQImageFormatPlugin">TQImageFormatPlugin</a>() +<li><a href="tqimageformatplugin.html#~TQImageFormatPlugin">~TQImageFormatPlugin</a>() +<li><a href="tqimageformatplugin.html#installIOHandler">installIOHandler</a>() +<li><a href="tqimageformatplugin.html#keys">keys</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/ntqimageformatplugin.html b/doc/html/tqimageformatplugin.html index ebc4e0745..2e69a2ae8 100644 --- a/doc/html/ntqimageformatplugin.html +++ b/doc/html/tqimageformatplugin.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qimageformatplugin.cpp:41 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqimageformatplugin.cpp:41 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,8 +33,8 @@ body { background: #ffffff; color: black; } <p>The TQImageFormatPlugin class provides an abstract base for custom image format plugins. <a href="#details">More...</a> -<p><tt>#include <<a href="qimageformatplugin-h.html">ntqimageformatplugin.h</a>></tt> -<p><a href="qimageformatplugin-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqimageformatplugin-h.html">tqimageformatplugin.h</a>></tt> +<p><a href="tqimageformatplugin-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <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 <a href="ntqstring.html">TQString</a> & format )<tt> [pure virtual]</tt> </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>(). <h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="keys"></a>TQImageFormatPlugin::keys () const<tt> [pure virtual]</tt> diff --git a/doc/html/qimageformattype-members.html b/doc/html/tqimageformattype-members.html index 5e554335f..31fd57aff 100644 --- a/doc/html/qimageformattype-members.html +++ b/doc/html/tqimageformattype-members.html @@ -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> <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> -<li><a href="qimageformattype.html#TQImageFormatType">TQImageFormatType</a>() -<li><a href="qimageformattype.html#~TQImageFormatType">~TQImageFormatType</a>() -<li><a href="qimageformattype.html#decoderFor">decoderFor</a>() -<li><a href="qimageformattype.html#formatName">formatName</a>() +<li><a href="tqimageformattype.html#TQImageFormatType">TQImageFormatType</a>() +<li><a href="tqimageformattype.html#~TQImageFormatType">~TQImageFormatType</a>() +<li><a href="tqimageformattype.html#decoderFor">decoderFor</a>() +<li><a href="tqimageformattype.html#formatName">formatName</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qimageformattype.html b/doc/html/tqimageformattype.html index 0a86776b0..5cad1bb5c 100644 --- a/doc/html/qimageformattype.html +++ b/doc/html/tqimageformattype.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQImageFormatType class is a factory that makes TQImageFormat objects. <a href="#details">More...</a> <p><tt>#include <<a href="qasyncimageio-h.html">ntqasyncimageio.h</a>></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> <ul> <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> -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> 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. <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> 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> 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> * <a name="decoderFor"></a>TQImageFormatType::decoderFor ( const uchar * buffer, int length )<tt> [pure virtual]</tt> +<h3 class=fn><a href="tqimageformat.html">TQImageFormat</a> * <a name="decoderFor"></a>TQImageFormatType::decoderFor ( const uchar * buffer, int length )<tt> [pure virtual]</tt> </h3> <p> Returns a decoder for decoding an image that starts with the bytes diff --git a/doc/html/qimageio-members.html b/doc/html/tqimageio-members.html index f10685839..69bdfeaa6 100644 --- a/doc/html/qimageio-members.html +++ b/doc/html/tqimageio-members.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqimage.h:271 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqimage.h:271 --> <html> <head> <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> <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> -<li><a href="qimageio.html#TQImageIO">TQImageIO</a>() -<li><a href="qimageio.html#~TQImageIO">~TQImageIO</a>() -<li><a href="qimageio.html#defineIOHandler">defineIOHandler</a>() -<li><a href="qimageio.html#description">description</a>() -<li><a href="qimageio.html#fileName">fileName</a>() -<li><a href="qimageio.html#format">format</a>() -<li><a href="qimageio.html#gamma">gamma</a>() -<li><a href="qimageio.html#image">image</a>() -<li><a href="qimageio.html#imageFormat">imageFormat</a>() -<li><a href="qimageio.html#inputFormats">inputFormats</a>() -<li><a href="qimageio.html#ioDevice">ioDevice</a>() -<li><a href="qimageio.html#outputFormats">outputFormats</a>() -<li><a href="qimageio.html#parameters">parameters</a>() -<li><a href="qimageio.html#quality">quality</a>() -<li><a href="qimageio.html#read">read</a>() -<li><a href="qimageio.html#setDescription">setDescription</a>() -<li><a href="qimageio.html#setFileName">setFileName</a>() -<li><a href="qimageio.html#setFormat">setFormat</a>() -<li><a href="qimageio.html#setGamma">setGamma</a>() -<li><a href="qimageio.html#setIODevice">setIODevice</a>() -<li><a href="qimageio.html#setImage">setImage</a>() -<li><a href="qimageio.html#setParameters">setParameters</a>() -<li><a href="qimageio.html#setQuality">setQuality</a>() -<li><a href="qimageio.html#setStatus">setStatus</a>() -<li><a href="qimageio.html#status">status</a>() -<li><a href="qimageio.html#write">write</a>() +<li><a href="tqimageio.html#TQImageIO">TQImageIO</a>() +<li><a href="tqimageio.html#~TQImageIO">~TQImageIO</a>() +<li><a href="tqimageio.html#defineIOHandler">defineIOHandler</a>() +<li><a href="tqimageio.html#description">description</a>() +<li><a href="tqimageio.html#fileName">fileName</a>() +<li><a href="tqimageio.html#format">format</a>() +<li><a href="tqimageio.html#gamma">gamma</a>() +<li><a href="tqimageio.html#image">image</a>() +<li><a href="tqimageio.html#imageFormat">imageFormat</a>() +<li><a href="tqimageio.html#inputFormats">inputFormats</a>() +<li><a href="tqimageio.html#ioDevice">ioDevice</a>() +<li><a href="tqimageio.html#outputFormats">outputFormats</a>() +<li><a href="tqimageio.html#parameters">parameters</a>() +<li><a href="tqimageio.html#quality">quality</a>() +<li><a href="tqimageio.html#read">read</a>() +<li><a href="tqimageio.html#setDescription">setDescription</a>() +<li><a href="tqimageio.html#setFileName">setFileName</a>() +<li><a href="tqimageio.html#setFormat">setFormat</a>() +<li><a href="tqimageio.html#setGamma">setGamma</a>() +<li><a href="tqimageio.html#setIODevice">setIODevice</a>() +<li><a href="tqimageio.html#setImage">setImage</a>() +<li><a href="tqimageio.html#setParameters">setParameters</a>() +<li><a href="tqimageio.html#setQuality">setQuality</a>() +<li><a href="tqimageio.html#setStatus">setStatus</a>() +<li><a href="tqimageio.html#status">status</a>() +<li><a href="tqimageio.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qimageio.html b/doc/html/tqimageio.html index 7cace1518..a33e63519 100644 --- a/doc/html/qimageio.html +++ b/doc/html/tqimageio.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qimage.cpp:3715 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqimage.cpp:3715 --> <html> <head> <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 saving images. <a href="#details">More...</a> -<p><tt>#include <<a href="qimage-h.html">ntqimage.h</a>></tt> -<p><a href="qimageio-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqimage-h.html">tqimage.h</a>></tt> +<p><a href="tqimageio-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <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 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>(), -<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 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 @@ -100,7 +100,7 @@ license the technology. Such countries include Canada, Japan, the USA, France, Germany, Italy and the UK. <p> GIF support may be removed completely in a future version of TQt. 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> <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 all newline conventions as equivalent. (XPM files and some PPM 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. <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, @@ -190,7 +190,7 @@ explicitly set. Returns the gamma value at which the image will be viewed. <p> <p>See also <a href="#setGamma">setGamma</a>(). -<h3 class=fn>const <a href="ntqimage.html">TQImage</a> & <a name="image"></a>TQImageIO::image () const +<h3 class=fn>const <a href="tqimage.html">TQImage</a> & <a name="image"></a>TQImageIO::image () const </h3> <p> Returns the image currently set. @@ -237,7 +237,7 @@ Returns the image's parameters string. </h3> Returns the quality of the written image, related to the 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> @@ -301,7 +301,7 @@ block-oriented <a href="ntqiodevice.html">TQIODevice</a>. settings. <p> <p>See also <a href="#setFileName">setFileName</a>(). -<h3 class=fn>void <a name="setImage"></a>TQImageIO::setImage ( const <a href="ntqimage.html">TQImage</a> & image ) +<h3 class=fn>void <a name="setImage"></a>TQImageIO::setImage ( const <a href="tqimage.html">TQImage</a> & image ) </h3> Sets the image to <em>image</em>. <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 compressed files, 100 for large uncompressed files. (-1 signifies 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 status ) </h3> @@ -348,7 +348,7 @@ will be used. <p> Example: <pre> TQImageIO iio; - <a href="ntqimage.html">TQImage</a> im; + <a href="tqimage.html">TQImage</a> im; im = pixmap; // convert to image iio.<a href="#setImage">setImage</a>( im ); iio.<a href="#setFileName">setFileName</a>( "vegeburger.bmp" ); diff --git a/doc/html/tqwidget.html b/doc/html/tqwidget.html index 73d78aa90..7f973c943 100644 --- a/doc/html/tqwidget.html +++ b/doc/html/tqwidget.html @@ -923,7 +923,7 @@ This event handler is called when a drag is in progress and the mouse enters this widget. <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. -<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>. <h3 class=fn>void <a name="dragLeaveEvent"></a>TQWidget::dragLeaveEvent ( <a href="qdragleaveevent.html">TQDragLeaveEvent</a> * )<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. <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. -<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> * )<tt> [virtual protected]</tt> </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. <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. -<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 x, int y, const <a href="ntqstring.html">TQString</a> & str ) </h3> @@ -962,7 +962,7 @@ This event handler is called when the drag is dropped on this widget. <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. -<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>. <h3 class=fn>void <a name="enabledChange"></a>TQWidget::enabledChange ( bool oldEnabled )<tt> [virtual protected]</tt> diff --git a/doc/html/tqwidgetfactory-h.html b/doc/html/tqwidgetfactory-h.html index 47a6e40da..2a377386e 100644 --- a/doc/html/tqwidgetfactory-h.html +++ b/doc/html/tqwidgetfactory-h.html @@ -72,7 +72,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include <ntqstring.h> #include <tqptrlist.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <tqvaluelist.h> #include <tqmap.h> diff --git a/doc/html/whatsthis b/doc/html/whatsthis index df2ed25fd..2acba2da4 100644 --- a/doc/html/whatsthis +++ b/doc/html/whatsthis @@ -11,7 +11,7 @@ Abstract base for custom TQSqlDriver plugins. | TQSqlDriverPlugin Abstract base for custom QStyle plugins. | QStylePlugin Abstract base for custom QTextCodec plugins. | QTextCodecPlugin 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 class that provides an API to initalize and access a COM object. | QAxBase 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 '\0'-terminated char array. | TQString 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 used by QImageDecoder. | QImageConsumer +Abstraction used by TQImageDecoder. | TQImageConsumer Access serialization between threads. | QMutex Access to a selected area in a QTable. | QTableSelection 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* with case-insensitive comparison. | QStrIList 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 object for a list of URI references. | QUriDrag 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 while a drag and drop is in progress. | QDragMoveEvent 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 File previewing in QFileDialog. | QFilePreview 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 parts of the QAccessibleInterface for TQObjects. | QAccessibleObject Implements the keyboard driver for Qt/Embedded. | QWSKeyboardHandler -Incremental image decoder for a specific image format. | QImageFormat -Incremental image decoder for all supported image formats. | QImageDecoder +Incremental image decoder for a specific image format. | TQImageFormat +Incremental image decoder for all supported image formats. | TQImageDecoder Incremental loading of animations or images, signalling as it progresses. | QMovie Information about a paint device. | QPaintDeviceMetrics 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 records and replays QPainter commands. | QPicture 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 close event. | QCloseEvent Parameters that describe a context menu event. | QContextMenuEvent diff --git a/doc/html/xform-example.html b/doc/html/xform-example.html index 8d2fd197a..8d434753a 100644 --- a/doc/html/xform-example.html +++ b/doc/html/xform-example.html @@ -461,7 +461,7 @@ void <a name="f394"></a>ShowXForm::showIt() int xpos = <a href="tqwidget.html#width">width</a>()/2 - pw/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 &pm, 0, 0, -1, -1 ); <a name="x1278"></a> eraseRect = mtx.<a href="ntqwmatrix.html#map">map</a>( r ); } diff --git a/doc/man/man3/tqcanvaspixmap.3qt b/doc/man/man3/tqcanvaspixmap.3qt index 89245ffb2..e3272218d 100644 --- a/doc/man/man3/tqcanvaspixmap.3qt +++ b/doc/man/man3/tqcanvaspixmap.3qt @@ -44,7 +44,7 @@ If you want to show a single pixmap on a TQCanvas use a TQCanvasSprite with just .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. .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 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 diff --git a/doc/man/man3/tqclipboard.3qt b/doc/man/man3/tqclipboard.3qt index a837a697b..2e493bc90 100644 --- a/doc/man/man3/tqclipboard.3qt +++ b/doc/man/man3/tqclipboard.3qt @@ -136,7 +136,7 @@ Example: .br .fi .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 You can clear the clipboard by calling clear(). .SH "Platform Specific Information" @@ -257,7 +257,7 @@ This is shorthand for: .PP .nf .br - setData( new QImageDrag(image), mode ) + setData( new TQImageDrag(image), mode ) .br .fi .PP diff --git a/doc/man/man3/tqdragobject.3qt b/doc/man/man3/tqdragobject.3qt index 3696f4839..5cd6a7946 100644 --- a/doc/man/man3/tqdragobject.3qt +++ b/doc/man/man3/tqdragobject.3qt @@ -13,7 +13,7 @@ QDragObject \- Encapsulates MIME-based data transfer .PP Inherits TQObject and QMimeSource. .PP -Inherited by QStoredDrag, QTextDrag, QImageDrag, and QIconDrag. +Inherited by QStoredDrag, QTextDrag, TQImageDrag, and QIconDrag. .PP .SS "Public Members" .in +1c diff --git a/doc/man/man3/tqiconview.3qt b/doc/man/man3/tqiconview.3qt index ccd7a4284..a8003b48d 100644 --- a/doc/man/man3/tqiconview.3qt +++ b/doc/man/man3/tqiconview.3qt @@ -429,7 +429,7 @@ The simple approach to dragging items out of the icon view is to subclass QIconV .br .fi .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 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 diff --git a/doc/man/man3/tqimage.3qt b/doc/man/man3/tqimage.3qt index 7fafb7464..4e245f6d3 100644 --- a/doc/man/man3/tqimage.3qt +++ b/doc/man/man3/tqimage.3qt @@ -9,7 +9,7 @@ .SH NAME TQImage \- Hardware-independent pixmap representation with direct access to the pixel data .SH SYNOPSIS -\fC#include <ntqimage.h>\fR +\fC#include <tqimage.h>\fR .PP .SS "Public Members" .in +1c @@ -17,31 +17,31 @@ TQImage \- Hardware-independent pixmap representation with direct access to the .BI "enum \fBEndian\fR { IgnoreEndian, BigEndian, LittleEndian }" .br .ti -1c -.BI "\fBQImage\fR ()" +.BI "\fBTQImage\fR ()" .br .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 .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 .ti -1c -.BI "\fBQImage\fR ( const TQString & fileName, const char * format = 0 )" +.BI "\fBTQImage\fR ( const TQString & fileName, const char * format = 0 )" .br .ti -1c -.BI "\fBQImage\fR ( const char * const xpm[] )" +.BI "\fBTQImage\fR ( const char * const xpm[] )" .br .ti -1c -.BI "\fBQImage\fR ( const QByteArray & array )" +.BI "\fBTQImage\fR ( const QByteArray & array )" .br .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 .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 .ti -1c -.BI "\fBQImage\fR ( const TQImage & image )" +.BI "\fBTQImage\fR ( const TQImage & image )" .br .ti -1c .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 )" .br .ti -1c -.BI "TQValueList<QImageTextKeyLang> \fBtextList\fR () const" +.BI "TQValueList<TQImageTextKeyLang> \fBtextList\fR () const" .br .ti -1c .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" .br .ti -1c -.BI "TQString \fBtext\fR ( const QImageTextKeyLang & kl ) const" +.BI "TQString \fBtext\fR ( const TQImageTextKeyLang & kl ) const" .br .ti -1c .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 New image formats can be added as plugins. .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" .SH "TQImage::Endian" This enum type is used to describe the endianness of the CPU and graphics hardware. .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 -\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 -\fCQImage::LittleEndian\fR - PC/Alpha byte order. +\fCTQImage::LittleEndian\fR - PC/Alpha byte order. .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. .PP @@ -398,11 +398,11 @@ The functions scale() and smoothScale() use different modes for scaling the imag .PP </center> .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 -\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 -\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 "TQImage::TQImage ()" Constructs a null image. @@ -427,9 +427,9 @@ If \fIformat\fR is specified, the loader attempts to read the image using the sp .PP If the loading of the image failed, this object is a null image. .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 -See also load(), isNull(), and QImageIO. +See also load(), isNull(), and TQImageIO. .SH "TQImage::TQImage ( const char * const xpm[] )" Constructs an image from \fIxpm\fR, which must be a valid XPM image. .PP @@ -629,7 +629,7 @@ See also invertPixels(), depth(), hasAlphaBuffer(), and create(). .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. .PP -See also QMimeSourceFactory, TQImage::fromMimeSource(), and QImageDrag::decode(). +See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode(). .SH "bool TQImage::hasAlphaBuffer () const" Returns TRUE if alpha buffer mode is enabled; otherwise returns FALSE. .PP @@ -644,7 +644,7 @@ Examples: .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. .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 See also load() and save(). .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 .fi .PP -See also outputFormatList(), inputFormats(), and QImageIO. +See also outputFormatList(), inputFormats(), and TQImageIO. .PP Example: showimg/showimg.cpp. .SH "QStrList TQImage::inputFormats ()\fC [static]\fR" Returns a list of image formats that are supported for image input. .PP -See also outputFormats(), inputFormatList(), and QImageIO. +See also outputFormats(), inputFormatList(), and TQImageIO. .SH "void TQImage::invertPixels ( bool invertAlpha = TRUE )" Inverts all pixel values in the image. .PP @@ -708,17 +708,17 @@ Loads an image from the file \fIfileName\fR. Returns TRUE if the image was succe .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. .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 -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 )" 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 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 -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 -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 )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP @@ -786,11 +786,11 @@ Note that if you want to iterate over the list, you should iterate over a copy, .br .fi .PP -See also inputFormatList(), outputFormats(), and QImageIO. +See also inputFormatList(), outputFormats(), and TQImageIO. .SH "QStrList TQImage::outputFormats ()\fC [static]\fR" Returns a list of image formats that are supported for image output. .PP -See also inputFormats(), outputFormatList(), and QImageIO. +See also inputFormats(), outputFormatList(), and TQImageIO. .PP Example: showimg/showimg.cpp. .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 Returns TRUE if the image was successfully saved; otherwise returns FALSE. .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" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP @@ -959,7 +959,7 @@ Determines the host computer byte order. Returns TQImage::LittleEndian (LSB firs See also systemBitOrder(). .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. -.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. .PP 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 .PP See also textList(), text(), setText(), and textKeys(). -.SH "TQValueList<QImageTextKeyLang> TQImage::textList () const" -Returns a list of QImageTextKeyLang objects that enumerate all the texts key/language pairs set by setText() for this image. +.SH "TQValueList<TQImageTextKeyLang> TQImage::textList () const" +Returns a list of TQImageTextKeyLang objects that enumerate all the texts key/language pairs set by setText() for this image. .PP Note that if you want to iterate over the list, you should iterate over a copy, e.g. .PP .nf .br - TQValueList<QImageTextKeyLang> list = myImage.textList(); + TQValueList<TQImageTextKeyLang> list = myImage.textList(); .br - TQValueList<QImageTextKeyLang>::Iterator it = list.begin(); + TQValueList<TQImageTextKeyLang>::Iterator it = list.begin(); .br while( it != list.end() ) { .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. .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimageconsumer.3qt b/doc/man/man3/tqimageconsumer.3qt index b7ee7687c..cbe1c44a9 100644 --- a/doc/man/man3/tqimageconsumer.3qt +++ b/doc/man/man3/tqimageconsumer.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,7 +7,7 @@ .ad l .nh .SH NAME -QImageConsumer \- Abstraction used by QImageDecoder +TQImageConsumer \- Abstraction used by TQImageDecoder .SH SYNOPSIS \fC#include <ntqasyncimageio.h>\fR .PP @@ -36,37 +36,37 @@ QImageConsumer \- Abstraction used by QImageDecoder .br .in -1c .SH DESCRIPTION -The QImageConsumer class is an abstraction used by QImageDecoder. +The TQImageConsumer class is an abstraction used by TQImageDecoder. .PP The QMovie class, or QLabel::setMovie(), are easy to use and for most situations do what you want with regards animated images. .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 -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 -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 "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. -.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(). -.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(). .PP When this function is called, the current image should be displayed. .PP -The decoder will not make any further changes to the image until the next call to QImageFormat::decode(). -.SH "void QImageConsumer::frameDone ( const QPoint & offset, const QRect & rect )\fC [pure virtual]\fR" +The decoder will not make any further changes to the image until the next call to TQImageFormat::decode(). +.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. .PP One of the two frameDone() functions will be called when a frame of an animated image has ended and been revealed as changed(). .PP When this function is called, the area \fIrect\fR in the current image should be moved by \fIoffset\fR and displayed. .PP -The decoder will not make any further changes to the image until the next call to QImageFormat::decode(). -.SH "void QImageConsumer::setFramePeriod ( int milliseconds )\fC [pure virtual]\fR" +The decoder will not make any further changes to the image until the next call to TQImageFormat::decode(). +.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. -.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. .TP 0 = Forever @@ -77,13 +77,13 @@ Called to indicate that the sequence of frames in the image should be repeated \ .TP etc. .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. -.SH "void QImageConsumer::setSize ( int, int )\fC [pure virtual]\fR" +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 TQImageConsumer::setSize ( int, int )\fC [pure virtual]\fR" This function is called as soon as the size of the image has been determined. .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimagedecoder.3qt b/doc/man/man3/tqimagedecoder.3qt index 0e262c501..6401c5950 100644 --- a/doc/man/man3/tqimagedecoder.3qt +++ b/doc/man/man3/tqimagedecoder.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,17 +7,17 @@ .ad l .nh .SH NAME -QImageDecoder \- Incremental image decoder for all supported image formats +TQImageDecoder \- Incremental image decoder for all supported image formats .SH SYNOPSIS \fC#include <ntqasyncimageio.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQImageDecoder\fR ( QImageConsumer * c )" +.BI "\fBTQImageDecoder\fR ( TQImageConsumer * c )" .br .ti -1c -.BI "\fB~QImageDecoder\fR ()" +.BI "\fB~TQImageDecoder\fR ()" .br .ti -1c .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 )" .br .ti -1c -.BI "QImageFormatType * \fBformat\fR ( const char * name )" +.BI "TQImageFormatType * \fBformat\fR ( const char * name )" .br .ti -1c .BI "QStrList \fBinputFormats\fR ()" .br .ti -1c -.BI "void \fBregisterDecoderFactory\fR ( QImageFormatType * f )" +.BI "void \fBregisterDecoderFactory\fR ( TQImageFormatType * f )" .br .ti -1c -.BI "void \fBunregisterDecoderFactory\fR ( QImageFormatType * f )" +.BI "void \fBunregisterDecoderFactory\fR ( TQImageFormatType * f )" .br .in -1c .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 -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 -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 -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 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 @@ -61,32 +61,32 @@ GIF support may be removed completely in a future version of Qt. We recommend us .PP See also Graphics Classes, Image Processing Classes, and Multimedia Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QImageDecoder::QImageDecoder ( QImageConsumer * c )" -Constructs a QImageDecoder that will send change information to the QImageConsumer \fIc\fR. -.SH "QImageDecoder::~QImageDecoder ()" -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. -.SH "int QImageDecoder::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. +.SH "TQImageDecoder::TQImageDecoder ( TQImageConsumer * c )" +Constructs a TQImageDecoder that will send change information to the TQImageConsumer \fIc\fR. +.SH "TQImageDecoder::~TQImageDecoder ()" +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 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 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 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" -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. -.SH "const char * QImageDecoder::formatName ( const uchar * buffer, int length )\fC [static]\fR" +.SH "TQImageFormatType * TQImageDecoder::format ( const char * name )\fC [static]\fR" +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 * 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. .PP Returns 0 if the format is not recognized. -.SH "const TQImage & QImageDecoder::image ()" +.SH "const TQImage & TQImageDecoder::image ()" 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. -.SH "void QImageDecoder::registerDecoderFactory ( QImageFormatType * f )\fC [static]\fR" -Registers the new QImageFormatType \fIf\fR. This is not needed in application code because factories call this themselves. -.SH "void QImageDecoder::unregisterDecoderFactory ( QImageFormatType * f )\fC [static]\fR" -Unregisters the QImageFormatType \fIf\fR. This is not needed in +.SH "void TQImageDecoder::registerDecoderFactory ( TQImageFormatType * f )\fC [static]\fR" +Registers the new TQImageFormatType \fIf\fR. This is not needed in application code because factories call this themselves. +.SH "void TQImageDecoder::unregisterDecoderFactory ( TQImageFormatType * f )\fC [static]\fR" +Unregisters the TQImageFormatType \fIf\fR. This is not needed in application code because factories call this themselves. .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimagedrag.3qt b/doc/man/man3/tqimagedrag.3qt index 8c61fb42b..3db69ee29 100644 --- a/doc/man/man3/tqimagedrag.3qt +++ b/doc/man/man3/tqimagedrag.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,7 +7,7 @@ .ad l .nh .SH NAME -QImageDrag \- Drag and drop object for transferring images +TQImageDrag \- Drag and drop object for transferring images .SH SYNOPSIS \fC#include <ntqdragobject.h>\fR .PP @@ -16,13 +16,13 @@ Inherits QDragObject. .SS "Public Members" .in +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 .ti -1c -.BI "\fBQImageDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )" +.BI "\fBTQImageDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )" .br .ti -1c -.BI "\fB~QImageDrag\fR ()" +.BI "\fB~TQImageDrag\fR ()" .br .ti -1c .BI "virtual void \fBsetImage\fR ( TQImage image )" @@ -41,7 +41,7 @@ Inherits QDragObject. .br .in -1c .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 Images are offered to the receiving application in multiple formats, determined by Qt's output formats. .PP @@ -49,25 +49,25 @@ For more information about drag and drop, see the QDragObject class and the drag .PP See also Drag And Drop Classes. .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. -.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. -.SH "QImageDrag::~QImageDrag ()" +.SH "TQImageDrag::~TQImageDrag ()" 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. .PP See also decode(). .PP 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. .PP See also canDecode(). .PP 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. .PP 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. .PP 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 this if you did not pass the image during construction. .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimageformat.3qt b/doc/man/man3/tqimageformat.3qt index 532efd2ec..ff1cdf222 100644 --- a/doc/man/man3/tqimageformat.3qt +++ b/doc/man/man3/tqimageformat.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,28 +7,28 @@ .ad l .nh .SH NAME -QImageFormat \- Incremental image decoder for a specific image format +TQImageFormat \- Incremental image decoder for a specific image format .SH SYNOPSIS \fC#include <ntqasyncimageio.h>\fR .PP .SS "Public Members" .in +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 .in -1c .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 -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 Your new subclass must reimplement the decode() function in order to process your new format. .PP -New QImageFormat objects are generated by new QImageFormatType factories. +New TQImageFormat objects are generated by new TQImageFormatType factories. .PP See also Graphics Classes, Image Processing Classes, and Multimedia Classes. .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. .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. @@ -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. .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimageformatplugin.3qt b/doc/man/man3/tqimageformatplugin.3qt index 4a7b69557..94334cd03 100644 --- a/doc/man/man3/tqimageformatplugin.3qt +++ b/doc/man/man3/tqimageformatplugin.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,17 +7,17 @@ .ad l .nh .SH NAME -QImageFormatPlugin \- Abstract base for custom image format plugins +TQImageFormatPlugin \- Abstract base for custom image format plugins .SH SYNOPSIS -\fC#include <ntqimageformatplugin.h>\fR +\fC#include <tqimageformatplugin.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQImageFormatPlugin\fR ()" +.BI "\fBTQImageFormatPlugin\fR ()" .br .ti -1c -.BI "\fB~QImageFormatPlugin\fR ()" +.BI "\fB~TQImageFormatPlugin\fR ()" .br .ti -1c .BI "virtual QStringList \fBkeys\fR () const = 0" @@ -27,7 +27,7 @@ QImageFormatPlugin \- Abstract base for custom image format plugins .br .in -1c .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 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 @@ -35,23 +35,23 @@ Writing an image format plugin is achieved by subclassing this base class, reimp .PP See also Plugins. .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. -.SH "QImageFormatPlugin::~QImageFormatPlugin ()" +.SH "TQImageFormatPlugin::~TQImageFormatPlugin ()" Destroys the image format plugin. .PP 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" -Installs a QImageIO image I/O handler for the image format \fIformat\fR. +.SH "bool TQImageFormatPlugin::installIOHandler ( const TQString & format )\fC [pure virtual]\fR" +Installs a TQImageIO image I/O handler for the image format \fIformat\fR. .PP 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. .PP See also installIOHandler(). .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimageformattype.3qt b/doc/man/man3/tqimageformattype.3qt index 6208ee1ad..631c848f2 100644 --- a/doc/man/man3/tqimageformattype.3qt +++ b/doc/man/man3/tqimageformattype.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,17 +7,17 @@ .ad l .nh .SH NAME -QImageFormatType \- Factory that makes QImageFormat objects +TQImageFormatType \- Factory that makes TQImageFormat objects .SH SYNOPSIS \fC#include <ntqasyncimageio.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "virtual \fB~QImageFormatType\fR ()" +.BI "virtual \fB~TQImageFormatType\fR ()" .br .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 .ti -1c .BI "virtual const char * \fBformatName\fR () const = 0" @@ -26,34 +26,34 @@ QImageFormatType \- Factory that makes QImageFormat objects .SS "Protected Members" .in +1c .ti -1c -.BI "\fBQImageFormatType\fR ()" +.BI "\fBTQImageFormatType\fR ()" .br .in -1c .SH DESCRIPTION -The QImageFormatType class is a factory that makes QImageFormat objects. +The TQImageFormatType class is a factory that makes TQImageFormat objects. .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 -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 -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 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 See also Graphics Classes, Image Processing Classes, and Multimedia Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QImageFormatType::QImageFormatType ()\fC [protected]\fR" -Constructs a factory. It automatically registers itself with QImageDecoder. -.SH "QImageFormatType::~QImageFormatType ()\fC [virtual]\fR" -Destroys a factory. It automatically unregisters itself from QImageDecoder. -.SH "QImageFormat * QImageFormatType::decoderFor ( const uchar * buffer, int length )\fC [pure virtual]\fR" +.SH "TQImageFormatType::TQImageFormatType ()\fC [protected]\fR" +Constructs a factory. It automatically registers itself with TQImageDecoder. +.SH "TQImageFormatType::~TQImageFormatType ()\fC [virtual]\fR" +Destroys a factory. It automatically unregisters itself from TQImageDecoder. +.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. -.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 factory. The string is statically allocated. .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqimageio.3qt b/doc/man/man3/tqimageio.3qt index c5d54cd8e..ac7bac416 100644 --- a/doc/man/man3/tqimageio.3qt +++ b/doc/man/man3/tqimageio.3qt @@ -1,5 +1,5 @@ '\" 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 .\" license file included in the distribution for a complete license .\" statement. @@ -7,23 +7,23 @@ .ad l .nh .SH NAME -QImageIO \- Parameters for loading and saving images +TQImageIO \- Parameters for loading and saving images .SH SYNOPSIS -\fC#include <ntqimage.h>\fR +\fC#include <tqimage.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQImageIO\fR ()" +.BI "\fBTQImageIO\fR ()" .br .ti -1c -.BI "\fBQImageIO\fR ( TQIODevice * ioDevice, const char * format )" +.BI "\fBTQImageIO\fR ( TQIODevice * ioDevice, const char * format )" .br .ti -1c -.BI "\fBQImageIO\fR ( const TQString & fileName, const char * format )" +.BI "\fBTQImageIO\fR ( const TQString & fileName, const char * format )" .br .ti -1c -.BI "\fB~QImageIO\fR ()" +.BI "\fB~TQImageIO\fR ()" .br .ti -1c .BI "const TQImage & \fBimage\fR () const" @@ -105,9 +105,9 @@ QImageIO \- Parameters for loading and saving images .br .in -1c .SH DESCRIPTION -The QImageIO class contains parameters for loading and saving images. +The TQImageIO class contains parameters for loading and saving images. .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 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 @@ -123,28 +123,28 @@ GIF support may be removed completely in a future version of Qt. We recommend us .PP See also TQImage, QPixmap, QFile, QMovie, Graphics Classes, Image Processing Classes, and Input/Output and Networking. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QImageIO::QImageIO ()" -Constructs a QImageIO object with all parameters set to zero. -.SH "QImageIO::QImageIO ( TQIODevice * ioDevice, const char * format )" -Constructs a QImageIO object with the I/O device \fIioDevice\fR and a \fIformat\fR tag. -.SH "QImageIO::QImageIO ( const TQString & fileName, const char * format )" -Constructs a QImageIO object with the file name \fIfileName\fR and a \fIformat\fR tag. -.SH "QImageIO::~QImageIO ()" +.SH "TQImageIO::TQImageIO ()" +Constructs a TQImageIO object with all parameters set to zero. +.SH "TQImageIO::TQImageIO ( TQIODevice * ioDevice, const char * format )" +Constructs a TQImageIO object with the I/O device \fIioDevice\fR and a \fIformat\fR tag. +.SH "TQImageIO::TQImageIO ( const TQString & fileName, const char * format )" +Constructs a TQImageIO object with the file name \fIfileName\fR and a \fIformat\fR tag. +.SH "TQImageIO::~TQImageIO ()" 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. .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.) .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. .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 Example: .PP .nf .br - void readGIF( QImageIO *image ) + void readGIF( TQImageIO *image ) .br { .br @@ -153,7 +153,7 @@ Example: } .br .br - void writeGIF( QImageIO *image ) + void writeGIF( TQImageIO *image ) .br { .br @@ -165,7 +165,7 @@ Example: // add the GIF image handler .br .br - QImageIO::defineIOHandler( "GIF", + TQImageIO::defineIOHandler( "GIF", .br "^GIF[0-9][0-9][a-z]", .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. .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. -.SH "TQString QImageIO::description () const" +.SH "TQString TQImageIO::description () const" Returns the image description string. .PP See also setDescription(). -.SH "TQString QImageIO::fileName () const" +.SH "TQString TQImageIO::fileName () const" Returns the file name currently set. .PP 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. -.SH "float QImageIO::gamma () const" +.SH "float TQImageIO::gamma () const" Returns the gamma value at which the image will be viewed. .PP See also setGamma(). -.SH "const TQImage & QImageIO::image () const" +.SH "const TQImage & TQImageIO::image () const" Returns the image currently set. .PP 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. -.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. .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. @@ -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). .PP 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. -.SH "TQIODevice * QImageIO::ioDevice () const" +.SH "TQIODevice * TQImageIO::ioDevice () const" Returns the IO device currently set. .PP 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. .PP Example: scribble/scribble.cpp. -.SH "const char * QImageIO::parameters () const" +.SH "const char * TQImageIO::parameters () const" Returns the image's parameters string. .PP 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. .PP 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. .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. @@ -241,7 +241,7 @@ Example: .PP .nf .br - QImageIO iio; + TQImageIO iio; .br QPixmap pixmap; .br @@ -254,15 +254,15 @@ Example: .fi .PP 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. .PP 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. .PP 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. .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. @@ -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. .PP 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). .PP The default value is 0.0. .PP 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. .PP 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. .PP See also setFileName(). -.SH "void QImageIO::setImage ( const TQImage & image )" +.SH "void TQImageIO::setImage ( const TQImage & image )" Sets the image to \fIimage\fR. .PP 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. .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). .PP 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. .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.) .PP 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. .PP 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. .PP 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. .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. @@ -319,7 +319,7 @@ Example: .PP .nf .br - QImageIO iio; + TQImageIO iio; .br TQImage im; .br @@ -340,7 +340,7 @@ Example: See also setIODevice(), setFileName(), setFormat(), read(), and QPixmap::save(). .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 .SH COPYRIGHT Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the diff --git a/doc/man/man3/tqmacmime.3qt b/doc/man/man3/tqmacmime.3qt index 76ffb3e65..c2ca8db25 100644 --- a/doc/man/man3/tqmacmime.3qt +++ b/doc/man/man3/tqmacmime.3qt @@ -69,7 +69,7 @@ kScrapFlavorTypeUnicode - converted to "text/plain;charset=ISO-10646-UCS-2" and .TP kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain" and supported by QTextDrag. .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 kDragFlavorTypeHFS - converted to "text/uri-list", and supported by QUriDrag. .PP diff --git a/doc/man/man3/tqmimesource.3qt b/doc/man/man3/tqmimesource.3qt index ceb48d706..494ff5390 100644 --- a/doc/man/man3/tqmimesource.3qt +++ b/doc/man/man3/tqmimesource.3qt @@ -60,7 +60,7 @@ Reimplemented in QDropEvent. .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. .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 Example: iconview/simple_dd/main.cpp. .PP diff --git a/doc/man/man3/tqmimesourcefactory.3qt b/doc/man/man3/tqmimesourcefactory.3qt index 2b6d17c35..3a6ca4be9 100644 --- a/doc/man/man3/tqmimesourcefactory.3qt +++ b/doc/man/man3/tqmimesourcefactory.3qt @@ -74,7 +74,7 @@ QMimeSourceFactory \- Extensible provider of mime-typed data .SH DESCRIPTION The QMimeSourceFactory class is an extensible provider of mime-typed data. .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 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 @@ -143,7 +143,7 @@ Returns a reference to the data associated with \fIabs_name\fR. The return value .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()). .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 .nf .br @@ -197,7 +197,7 @@ See also filePath(). .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. .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" 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" diff --git a/doc/man/man3/tqpixmap.3qt b/doc/man/man3/tqpixmap.3qt index 98ae130f3..7cbeb19fa 100644 --- a/doc/man/man3/tqpixmap.3qt +++ b/doc/man/man3/tqpixmap.3qt @@ -258,7 +258,7 @@ If your application uses dozens or hundreds of pixmaps (for example on tool bar .PP In general it is recommended to make as much use of QPixmap's implicit sharing and the QPixmapCache as possible. .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" .SH "QPixmap::ColorMode" 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" 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 -See also QMimeSourceFactory, TQImage::fromMimeSource(), and QImageDrag::decode(). +See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode(). .PP 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" @@ -533,7 +533,7 @@ Examples: .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. .PP -The QImageIO documentation lists the supported image formats. +The TQImageIO documentation lists the supported image formats. .PP See also load() and save(). .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 See the convertFromImage() documentation for a description of the \fIconversion_flags\fR argument. .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 -See also loadFromData(), save(), imageFormat(), TQImage::load(), and QImageIO. +See also loadFromData(), save(), imageFormat(), TQImage::load(), and TQImageIO. .PP Examples: .)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 See the convertFromImage() documentation for a description of the \fIconversion_flags\fR argument. .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 -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 )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .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" 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 -See also load(), loadFromData(), imageFormat(), TQImage::save(), and QImageIO. +See also load(), loadFromData(), imageFormat(), TQImage::save(), and TQImageIO. .PP Example: qmag/qmag.cpp. .SH "bool QPixmap::save ( TQIODevice * device, const char * format, int quality = -1 ) const" diff --git a/doc/man/man3/tqpngimagepacker.3qt b/doc/man/man3/tqpngimagepacker.3qt index 7e07df659..e3a4b0025 100644 --- a/doc/man/man3/tqpngimagepacker.3qt +++ b/doc/man/man3/tqpngimagepacker.3qt @@ -26,7 +26,7 @@ QPNGImagePacker \- Creates well-compressed PNG animations .SH DESCRIPTION The QPNGImagePacker class creates well-compressed PNG animations. .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 Images are added using packImage(). .PP diff --git a/doc/man/man3/tqwidget.3qt b/doc/man/man3/tqwidget.3qt index 1446620f2..08eeaae11 100644 --- a/doc/man/man3/tqwidget.3qt +++ b/doc/man/man3/tqwidget.3qt @@ -1298,7 +1298,7 @@ This event handler is called when a drag is in progress and the mouse enters thi .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, QImageDrag, and QDragEnterEvent. +See also QTextDrag, TQImageDrag, and QDragEnterEvent. .PP Example: iconview/simple_dd/main.cpp. .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 See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, QImageDrag, and QDragLeaveEvent. +See also QTextDrag, TQImageDrag, and QDragLeaveEvent. .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. .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, QImageDrag, and QDragMoveEvent. +See also QTextDrag, TQImageDrag, and QDragMoveEvent. .SH "void TQWidget::drawText ( int x, int y, const TQString & str )" Draws the string \fIstr\fR at position \fI(x, y)\fR. .PP @@ -1330,7 +1330,7 @@ This event handler is called when the drag is dropped on this widget. .PP See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. .PP -See also QTextDrag, QImageDrag, and QDropEvent. +See also QTextDrag, TQImageDrag, and QDropEvent. .PP Example: iconview/simple_dd/main.cpp. .SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR" diff --git a/doc/man/man3/tqwindowsmime.3qt b/doc/man/man3/tqwindowsmime.3qt index b0ef199f2..c2a03470f 100644 --- a/doc/man/man3/tqwindowsmime.3qt +++ b/doc/man/man3/tqwindowsmime.3qt @@ -72,7 +72,7 @@ CF_UNICODETEXT - converted to "text/plain;charset=ISO-10646-UCS-2" and supported .TP CF_TEXT - converted to "text/plain;charset=system" or "text/plain" and supported by QTextDrag. .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 CF_HDROP - converted to "text/uri-list", and supported by QUriDrag. .PP diff --git a/doc/plugins-howto.doc b/doc/plugins-howto.doc index 436901c8b..88c69f340 100644 --- a/doc/plugins-howto.doc +++ b/doc/plugins-howto.doc @@ -61,7 +61,7 @@ by default in the standard plugin directory. \i Base Class \i Default Path \row -\i \l QImageFormatPlugin +\i \l TQImageFormatPlugin \i \c{pluginsbase/imageformats} <sup>*</sup> \row \i \l TQSqlDriverPlugin diff --git a/examples/action/application.cpp b/examples/action/application.cpp index ecd70cdd0..9fbf22e34 100644 --- a/examples/action/application.cpp +++ b/examples/action/application.cpp @@ -9,7 +9,7 @@ #include "application.h" -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqtoolbar.h> #include <ntqtoolbutton.h> diff --git a/examples/application/application.cpp b/examples/application/application.cpp index 455bcc425..32c291f03 100644 --- a/examples/application/application.cpp +++ b/examples/application/application.cpp @@ -9,7 +9,7 @@ #include "application.h" -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqtoolbar.h> #include <ntqtoolbutton.h> diff --git a/examples/canvas/blendshadow.cpp b/examples/canvas/blendshadow.cpp index d2f761db0..635b1fc37 100644 --- a/examples/canvas/blendshadow.cpp +++ b/examples/canvas/blendshadow.cpp @@ -1,4 +1,4 @@ -#include <ntqimage.h> +#include <tqimage.h> #include <ntqcolor.h> static inline int blendComponent( int v, int av, int s, int as ) diff --git a/examples/canvas/canvas.cpp b/examples/canvas/canvas.cpp index bd6589490..3222c8a45 100644 --- a/examples/canvas/canvas.cpp +++ b/examples/canvas/canvas.cpp @@ -7,7 +7,7 @@ #include <ntqpainter.h> #include <ntqprinter.h> #include <ntqlabel.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqprogressdialog.h> #include "canvas.h" diff --git a/examples/canvas/main.cpp b/examples/canvas/main.cpp index aad94c54d..45b7a050e 100644 --- a/examples/canvas/main.cpp +++ b/examples/canvas/main.cpp @@ -2,7 +2,7 @@ #include <ntqmessagebox.h> #include <ntqmenubar.h> #include <ntqapplication.h> -#include <ntqimage.h> +#include <tqimage.h> #include "canvas.h" diff --git a/examples/canvas/makeimg.cpp b/examples/canvas/makeimg.cpp index d8c4c1928..253b43956 100644 --- a/examples/canvas/makeimg.cpp +++ b/examples/canvas/makeimg.cpp @@ -1,4 +1,4 @@ -#include <ntqimage.h> +#include <tqimage.h> #include <ntqcolor.h> static inline int blendComponent( int v, int av, int s, int as ) diff --git a/examples/chart/optionsform.cpp b/examples/chart/optionsform.cpp index 543783c30..1896067c0 100644 --- a/examples/chart/optionsform.cpp +++ b/examples/chart/optionsform.cpp @@ -4,7 +4,7 @@ #include <ntqcombobox.h> #include <ntqfontdialog.h> #include <ntqframe.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqlabel.h> #include <ntqlayout.h> #include <ntqpushbutton.h> diff --git a/examples/demo/dnd/styledbutton.cpp b/examples/demo/dnd/styledbutton.cpp index 690a1054a..b3d7829a2 100644 --- a/examples/demo/dnd/styledbutton.cpp +++ b/examples/demo/dnd/styledbutton.cpp @@ -37,7 +37,7 @@ #include <ntqpalette.h> #include <ntqlabel.h> #include <ntqpainter.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqapplication.h> #include <ntqdragobject.h> diff --git a/examples/demo/main.cpp b/examples/demo/main.cpp index 6fc5dbe10..275dc27b3 100644 --- a/examples/demo/main.cpp +++ b/examples/demo/main.cpp @@ -38,7 +38,7 @@ #include <stdlib.h> #include <ntqapplication.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqtabwidget.h> #include <ntqfont.h> diff --git a/examples/demo/opengl/gllandscape.cpp b/examples/demo/opengl/gllandscape.cpp index 2906a5c84..1de9102b0 100644 --- a/examples/demo/opengl/gllandscape.cpp +++ b/examples/demo/opengl/gllandscape.cpp @@ -1,4 +1,4 @@ -#include <ntqimage.h> +#include <tqimage.h> #include "gllandscape.h" diff --git a/examples/demo/opengl/gltexobj.cpp b/examples/demo/opengl/gltexobj.cpp index 117917e38..183940b42 100644 --- a/examples/demo/opengl/gltexobj.cpp +++ b/examples/demo/opengl/gltexobj.cpp @@ -17,7 +17,7 @@ ****************************************************************************/ #include "gltexobj.h" -#include <ntqimage.h> +#include <tqimage.h> /*! Create a GLTexobj widget diff --git a/examples/demo/opengl/glworkspace.cpp b/examples/demo/opengl/glworkspace.cpp index 8d7541fcb..ef90a03a2 100644 --- a/examples/demo/opengl/glworkspace.cpp +++ b/examples/demo/opengl/glworkspace.cpp @@ -13,7 +13,7 @@ #include <ntqpainter.h> #include <ntqcheckbox.h> #include <ntqvbox.h> -#include <ntqimage.h> +#include <tqimage.h> #include "printpreview.h" diff --git a/examples/demo/opengl/printpreview.ui b/examples/demo/opengl/printpreview.ui index 92cd609b3..064ff35e9 100644 --- a/examples/demo/opengl/printpreview.ui +++ b/examples/demo/opengl/printpreview.ui @@ -255,7 +255,7 @@ </connection> </connections> <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="local" impldecl="in implementation">printpreview.ui.h</include> </includes> diff --git a/examples/desktop/desktop.cpp b/examples/desktop/desktop.cpp index 15353e98f..0e5782889 100644 --- a/examples/desktop/desktop.cpp +++ b/examples/desktop/desktop.cpp @@ -7,7 +7,7 @@ ** *****************************************************************************/ -#include <ntqimage.h> +#include <tqimage.h> #include <ntqbitmap.h> #include <ntqpainter.h> #include <ntqapplication.h> diff --git a/examples/dragdrop/dropsite.cpp b/examples/dragdrop/dropsite.cpp index 7257e6ed0..98188b19a 100644 --- a/examples/dragdrop/dropsite.cpp +++ b/examples/dragdrop/dropsite.cpp @@ -16,7 +16,7 @@ #include <ntqevent.h> #include <ntqpixmap.h> #include <ntqdragobject.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqdir.h> diff --git a/examples/listboxcombo/listboxcombo.cpp b/examples/listboxcombo/listboxcombo.cpp index cf06c806d..55baaf83b 100644 --- a/examples/listboxcombo/listboxcombo.cpp +++ b/examples/listboxcombo/listboxcombo.cpp @@ -16,7 +16,7 @@ #include <ntqstring.h> #include <ntqpixmap.h> #include <ntqlabel.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpainter.h> #include <ntqstyle.h> diff --git a/examples/mdi/application.cpp b/examples/mdi/application.cpp index 96ee1c66c..67e759b5b 100644 --- a/examples/mdi/application.cpp +++ b/examples/mdi/application.cpp @@ -9,7 +9,7 @@ #include "application.h" #include <ntqworkspace.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqtoolbar.h> #include <ntqtoolbutton.h> diff --git a/examples/network/remotecontrol/ipcserver.cpp b/examples/network/remotecontrol/ipcserver.cpp index 4bd7b6423..05f6fdb8f 100644 --- a/examples/network/remotecontrol/ipcserver.cpp +++ b/examples/network/remotecontrol/ipcserver.cpp @@ -2,7 +2,7 @@ #include <ntqsocket.h> #include <ntqvariant.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpalette.h> #include <ntqapplication.h> diff --git a/examples/network/remotecontrol/remotectrlimpl.cpp b/examples/network/remotecontrol/remotectrlimpl.cpp index 68e0a3c7a..716eb0fef 100644 --- a/examples/network/remotecontrol/remotectrlimpl.cpp +++ b/examples/network/remotecontrol/remotectrlimpl.cpp @@ -5,7 +5,7 @@ #include <ntqsocket.h> #include <ntqfiledialog.h> #include <ntqcolordialog.h> -#include <ntqimage.h> +#include <tqimage.h> RemoteCtrlImpl::RemoteCtrlImpl( TQSocket *s ) { diff --git a/examples/opengl/glpixmap/globjwin.cpp b/examples/opengl/glpixmap/globjwin.cpp index 11cb675a6..bdb22eefa 100644 --- a/examples/opengl/glpixmap/globjwin.cpp +++ b/examples/opengl/glpixmap/globjwin.cpp @@ -24,7 +24,7 @@ #include <ntqapplication.h> #include <ntqkeycode.h> #include <ntqpixmap.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpainter.h> #include "globjwin.h" #include "glbox.h" diff --git a/examples/opengl/texture/gltexobj.cpp b/examples/opengl/texture/gltexobj.cpp index 78b0fcefb..f9528620c 100644 --- a/examples/opengl/texture/gltexobj.cpp +++ b/examples/opengl/texture/gltexobj.cpp @@ -17,7 +17,7 @@ ****************************************************************************/ #include "gltexobj.h" -#include <ntqimage.h> +#include <tqimage.h> #include <ntqtimer.h> diff --git a/examples/qmag/qmag.cpp b/examples/qmag/qmag.cpp index b5705df6a..996af3c7b 100644 --- a/examples/qmag/qmag.cpp +++ b/examples/qmag/qmag.cpp @@ -10,7 +10,7 @@ #include <ntqcombobox.h> #include <ntqpushbutton.h> #include <ntqpixmap.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqlabel.h> #include <ntqfiledialog.h> #include <ntqregexp.h> diff --git a/examples/scribble/scribble.cpp b/examples/scribble/scribble.cpp index 3f80d8881..9fd002a9c 100644 --- a/examples/scribble/scribble.cpp +++ b/examples/scribble/scribble.cpp @@ -21,7 +21,7 @@ #include <ntqcolordialog.h> #include <ntqfiledialog.h> #include <ntqcursor.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqstrlist.h> #include <ntqpopupmenu.h> #include <ntqintdict.h> diff --git a/examples/showimg/imagefip.cpp b/examples/showimg/imagefip.cpp index a058271ac..8702f8565 100644 --- a/examples/showimg/imagefip.cpp +++ b/examples/showimg/imagefip.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include "imagefip.h" -#include <ntqimage.h> +#include <tqimage.h> /* XPM */ static const char *image_xpm[] = { diff --git a/examples/showimg/imagetexteditor.cpp b/examples/showimg/imagetexteditor.cpp index 2abdabfb7..66529190a 100644 --- a/examples/showimg/imagetexteditor.cpp +++ b/examples/showimg/imagetexteditor.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include "imagetexteditor.h" -#include <ntqimage.h> +#include <tqimage.h> #include <ntqlayout.h> #include <ntqgrid.h> #include <ntqvbox.h> diff --git a/examples/showimg/main.cpp b/examples/showimg/main.cpp index a0f5d69a3..63a8d2216 100644 --- a/examples/showimg/main.cpp +++ b/examples/showimg/main.cpp @@ -10,7 +10,7 @@ #include "showimg.h" #include "imagefip.h" #include <ntqapplication.h> -#include <ntqimage.h> +#include <tqimage.h> int main( int argc, char **argv ) { diff --git a/examples/showimg/showimg.h b/examples/showimg/showimg.h index 1cf8f7c97..70a22a8bc 100644 --- a/examples/showimg/showimg.h +++ b/examples/showimg/showimg.h @@ -11,7 +11,7 @@ #define SHOWIMG_H #include <tqwidget.h> -#include <ntqimage.h> +#include <tqimage.h> class TQLabel; diff --git a/examples/table/small-table-demo/main.cpp b/examples/table/small-table-demo/main.cpp index 359654507..eb7618ba2 100644 --- a/examples/table/small-table-demo/main.cpp +++ b/examples/table/small-table-demo/main.cpp @@ -9,7 +9,7 @@ #include <ntqapplication.h> #include <ntqtable.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqstringlist.h> diff --git a/examples/tablet/scribble.cpp b/examples/tablet/scribble.cpp index 457425073..beaf25461 100644 --- a/examples/tablet/scribble.cpp +++ b/examples/tablet/scribble.cpp @@ -22,7 +22,7 @@ #include <ntqcolordialog.h> #include <ntqfiledialog.h> #include <ntqcursor.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqstrlist.h> #include <ntqpopupmenu.h> #include <ntqintdict.h> diff --git a/examples/themes/metal.cpp b/examples/themes/metal.cpp index 5a6c2b443..5f9ead623 100644 --- a/examples/themes/metal.cpp +++ b/examples/themes/metal.cpp @@ -19,7 +19,7 @@ #include "ntqpalette.h" // for now #include "tqwidget.h" #include "ntqlabel.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpushbutton.h" #include "tqwidget.h" #include "ntqrangecontrol.h" diff --git a/examples/themes/wood.cpp b/examples/themes/wood.cpp index 1a331c89b..c4cf0d4c5 100644 --- a/examples/themes/wood.cpp +++ b/examples/themes/wood.cpp @@ -19,7 +19,7 @@ #include "ntqpalette.h" // for now #include "tqwidget.h" #include "ntqlabel.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpushbutton.h" #include "tqwidget.h" #include "ntqrangecontrol.h" diff --git a/examples/tux/tux.cpp b/examples/tux/tux.cpp index 641ca38f2..fc1e26d57 100644 --- a/examples/tux/tux.cpp +++ b/examples/tux/tux.cpp @@ -1,6 +1,6 @@ #include <ntqapplication.h> #include <tqwidget.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqbitmap.h> #include <ntqfile.h> diff --git a/include/ntqimage.h b/include/ntqimage.h deleted file mode 120000 index b6c62fd49..000000000 --- a/include/ntqimage.h +++ /dev/null @@ -1 +0,0 @@ -../src/kernel/ntqimage.h
\ No newline at end of file diff --git a/include/ntqimageformatplugin.h b/include/ntqimageformatplugin.h deleted file mode 120000 index dfb0ddbd5..000000000 --- a/include/ntqimageformatplugin.h +++ /dev/null @@ -1 +0,0 @@ -../src/kernel/ntqimageformatplugin.h
\ No newline at end of file diff --git a/include/private/qimageformatinterface_p.h b/include/private/qimageformatinterface_p.h deleted file mode 120000 index 7ce9e249b..000000000 --- a/include/private/qimageformatinterface_p.h +++ /dev/null @@ -1 +0,0 @@ -../../src/kernel/qimageformatinterface_p.h
\ No newline at end of file diff --git a/include/private/tqimageformatinterface_p.h b/include/private/tqimageformatinterface_p.h new file mode 120000 index 000000000..88cd30d54 --- /dev/null +++ b/include/private/tqimageformatinterface_p.h @@ -0,0 +1 @@ +../../src/kernel/tqimageformatinterface_p.h
\ No newline at end of file diff --git a/include/tqimage.h b/include/tqimage.h new file mode 120000 index 000000000..d1c56806e --- /dev/null +++ b/include/tqimage.h @@ -0,0 +1 @@ +../src/kernel/tqimage.h
\ No newline at end of file diff --git a/include/tqimageformatplugin.h b/include/tqimageformatplugin.h new file mode 120000 index 000000000..be8007f67 --- /dev/null +++ b/include/tqimageformatplugin.h @@ -0,0 +1 @@ +../src/kernel/tqimageformatplugin.h
\ No newline at end of file diff --git a/plugins/src/imageformats/jpeg/main.cpp b/plugins/src/imageformats/jpeg/main.cpp index d4f66b064..fe45fefe8 100644 --- a/plugins/src/imageformats/jpeg/main.cpp +++ b/plugins/src/imageformats/jpeg/main.cpp @@ -1,4 +1,4 @@ -#include <ntqimageformatplugin.h> +#include <tqimageformatplugin.h> #ifndef TQT_NO_IMAGEFORMATPLUGIN diff --git a/plugins/src/imageformats/mng/main.cpp b/plugins/src/imageformats/mng/main.cpp index f08dc3166..c26729873 100644 --- a/plugins/src/imageformats/mng/main.cpp +++ b/plugins/src/imageformats/mng/main.cpp @@ -1,4 +1,4 @@ -#include <ntqimageformatplugin.h> +#include <tqimageformatplugin.h> #ifndef TQT_NO_IMAGEFORMATPLUGIN diff --git a/plugins/src/imageformats/png/main.cpp b/plugins/src/imageformats/png/main.cpp index 7724c9112..457d2b976 100644 --- a/plugins/src/imageformats/png/main.cpp +++ b/plugins/src/imageformats/png/main.cpp @@ -1,4 +1,4 @@ -#include <ntqimageformatplugin.h> +#include <tqimageformatplugin.h> #ifndef TQT_NO_IMAGEFORMATPLUGIN diff --git a/src/canvas/tqcanvas.cpp b/src/canvas/tqcanvas.cpp index 6e1db596b..aa38c2055 100644 --- a/src/canvas/tqcanvas.cpp +++ b/src/canvas/tqcanvas.cpp @@ -42,7 +42,7 @@ #ifndef TQT_NO_CANVAS #include "ntqapplication.h" #include "ntqbitmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "tqptrdict.h" #include "ntqpainter.h" #include "ntqpolygonscanner.h" diff --git a/src/dialogs/qcolordialog.cpp b/src/dialogs/qcolordialog.cpp index df0424376..ca38f9c10 100644 --- a/src/dialogs/qcolordialog.cpp +++ b/src/dialogs/qcolordialog.cpp @@ -47,7 +47,7 @@ #include "ntqlabel.h" #include "ntqpushbutton.h" #include "ntqlineedit.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpixmap.h" #include "ntqdrawutil.h" #include "ntqvalidator.h" diff --git a/src/dialogs/qmessagebox.cpp b/src/dialogs/qmessagebox.cpp index 29005500c..6d991b3b7 100644 --- a/src/dialogs/qmessagebox.cpp +++ b/src/dialogs/qmessagebox.cpp @@ -45,7 +45,7 @@ #include "ntqaccel.h" #include "ntqlabel.h" #include "ntqpushbutton.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqapplication.h" #include "ntqstyle.h" #include "tqobjectlist.h" diff --git a/src/kernel/ntqasyncimageio.h b/src/kernel/ntqasyncimageio.h index 54255978a..28d5bd50e 100644 --- a/src/kernel/ntqasyncimageio.h +++ b/src/kernel/ntqasyncimageio.h @@ -42,7 +42,7 @@ #define TQASYNCIMAGEIO_H #ifndef QT_H -#include "ntqimage.h" +#include "tqimage.h" #endif // QT_H #ifndef TQT_NO_ASYNC_IMAGE_IO diff --git a/src/kernel/ntqdragobject.h b/src/kernel/ntqdragobject.h index 60a43ca34..5f6147409 100644 --- a/src/kernel/ntqdragobject.h +++ b/src/kernel/ntqdragobject.h @@ -47,7 +47,7 @@ class TQImageDragData; #ifndef QT_H #include "tqobject.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqstrlist.h" #include "ntqcolor.h" #endif // QT_H diff --git a/src/kernel/ntqnamespace.h b/src/kernel/ntqnamespace.h index abc3bfb8b..c540c549b 100644 --- a/src/kernel/ntqnamespace.h +++ b/src/kernel/ntqnamespace.h @@ -272,7 +272,7 @@ public: // Image conversion flags. The unusual ordering is caused by // compatibility and default requirements. - // Documented in qimage.cpp + // Documented in tqimage.cpp enum ImageConversionFlags { ColorMode_Mask = 0x00000003, diff --git a/src/kernel/ntqpngio.h b/src/kernel/ntqpngio.h index ebb817d6a..42c85c653 100644 --- a/src/kernel/ntqpngio.h +++ b/src/kernel/ntqpngio.h @@ -42,7 +42,7 @@ #define TQPNGIO_H #ifndef QT_H -#include "ntqimage.h" +#include "tqimage.h" #endif // QT_H #ifndef TQT_NO_IMAGEIO_PNG diff --git a/src/kernel/ntqt.h b/src/kernel/ntqt.h index fd10a18b0..a11383bb5 100644 --- a/src/kernel/ntqt.h +++ b/src/kernel/ntqt.h @@ -105,8 +105,8 @@ #include <ntqhttp.h> #include <ntqaction.h> #include "ntqbuffer.h" -#include "ntqimage.h" -#include <ntqimageformatplugin.h> +#include "tqimage.h" +#include <tqimageformatplugin.h> #include "ntqlineedit.h" #include <ntqintcache.h> #include "ntqintdict.h" @@ -278,7 +278,7 @@ #include <private/qucom_p.h> #include "private/qgfxdriverinterface_p.h" #include "private/qcom_p.h" -#include "private/qimageformatinterface_p.h" +#include "private/tqimageformatinterface_p.h" #include "private/qisciicodec_p.h" #include "private/qkbddriverinterface_p.h" #include "private/qlayoutengine_p.h" diff --git a/src/kernel/qbitmap.cpp b/src/kernel/qbitmap.cpp index 9a075b8f4..3c64c22b0 100644 --- a/src/kernel/qbitmap.cpp +++ b/src/kernel/qbitmap.cpp @@ -39,7 +39,7 @@ **********************************************************************/ #include "ntqbitmap.h" -#include "ntqimage.h" +#include "tqimage.h" /*! diff --git a/src/kernel/qcursor.cpp b/src/kernel/qcursor.cpp index 7d128c159..d6b736460 100644 --- a/src/kernel/qcursor.cpp +++ b/src/kernel/qcursor.cpp @@ -43,7 +43,7 @@ #ifndef TQT_NO_CURSOR #include "ntqbitmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqdatastream.h" diff --git a/src/kernel/qcursor_x11.cpp b/src/kernel/qcursor_x11.cpp index f3b034da8..8cf9f6dde 100644 --- a/src/kernel/qcursor_x11.cpp +++ b/src/kernel/qcursor_x11.cpp @@ -40,7 +40,7 @@ #include "ntqcursor.h" #include "ntqbitmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqapplication.h" #include "ntqdatastream.h" #include "ntqnamespace.h" diff --git a/src/kernel/qfontengine_x11.cpp b/src/kernel/qfontengine_x11.cpp index 96f011927..5cf756265 100644 --- a/src/kernel/qfontengine_x11.cpp +++ b/src/kernel/qfontengine_x11.cpp @@ -49,7 +49,7 @@ #include "ntqpaintdevice.h" #include "ntqpaintdevicemetrics.h" #include "ntqpainter.h" -#include "ntqimage.h" +#include "tqimage.h" #include "qt_x11_p.h" diff --git a/src/kernel/qiconset.cpp b/src/kernel/qiconset.cpp index 43e74b2ba..0b17d6193 100644 --- a/src/kernel/qiconset.cpp +++ b/src/kernel/qiconset.cpp @@ -45,7 +45,7 @@ #include "ntqapplication.h" #include "ntqbitmap.h" #include "ntqcleanuphandler.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpainter.h" enum { NumSizes = 2, NumModes = 3, NumStates = 2 }; diff --git a/src/kernel/qjpegio.cpp b/src/kernel/qjpegio.cpp index 91df6f976..c30853d02 100644 --- a/src/kernel/qjpegio.cpp +++ b/src/kernel/qjpegio.cpp @@ -38,7 +38,7 @@ ** **********************************************************************/ -#include "ntqimage.h" +#include "tqimage.h" #ifndef TQT_NO_IMAGEIO_JPEG diff --git a/src/kernel/qmngio.cpp b/src/kernel/qmngio.cpp index fad1aa9b3..deb0225c3 100644 --- a/src/kernel/qmngio.cpp +++ b/src/kernel/qmngio.cpp @@ -42,7 +42,7 @@ #ifndef TQT_NO_IMAGEIO_MNG -#include "ntqimage.h" +#include "tqimage.h" #include "ntqasyncimageio.h" #include "ntqiodevice.h" #include "ntqmngio.h" @@ -310,7 +310,7 @@ TQMNGFormat::TQMNGFormat() TQMNGFormat::~TQMNGFormat() { // 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; if (handle) mng_cleanup(&handle); } diff --git a/src/kernel/qpainter.cpp b/src/kernel/qpainter.cpp index da78db89f..3f91a8023 100644 --- a/src/kernel/qpainter.cpp +++ b/src/kernel/qpainter.cpp @@ -45,7 +45,7 @@ #include "tqptrdict.h" #include "ntqdatastream.h" #include "tqwidget.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpaintdevicemetrics.h" #include "ntqapplication.h" #include "qrichtext_p.h" diff --git a/src/kernel/qpicture.cpp b/src/kernel/qpicture.cpp index 0fd609d79..912fbfb5b 100644 --- a/src/kernel/qpicture.cpp +++ b/src/kernel/qpicture.cpp @@ -44,7 +44,7 @@ #include "ntqpainter.h" #include "ntqpixmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqfile.h" #include "ntqdatastream.h" #include "ntqpaintdevicemetrics.h" diff --git a/src/kernel/qpixmap.cpp b/src/kernel/qpixmap.cpp index 9c93632c1..7ba49ee4e 100644 --- a/src/kernel/qpixmap.cpp +++ b/src/kernel/qpixmap.cpp @@ -41,7 +41,7 @@ #include "ntqpixmap.h" #include "ntqbitmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "tqwidget.h" #include "ntqpainter.h" #include "ntqdatastream.h" diff --git a/src/kernel/qpixmap_x11.cpp b/src/kernel/qpixmap_x11.cpp index d0bfa97a2..b40247af9 100644 --- a/src/kernel/qpixmap_x11.cpp +++ b/src/kernel/qpixmap_x11.cpp @@ -69,7 +69,7 @@ #include "ntqbitmap.h" #include "ntqpaintdevicemetrics.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqwmatrix.h" #include "ntqapplication.h" #include "qt_x11_p.h" @@ -286,7 +286,7 @@ static XImage* qt_XShmGetImage( const TQPixmap* pix, int format, 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 ) { diff --git a/src/kernel/qpsprinter.cpp b/src/kernel/qpsprinter.cpp index 58a23dfcf..d845f8c30 100644 --- a/src/kernel/qpsprinter.cpp +++ b/src/kernel/qpsprinter.cpp @@ -59,7 +59,7 @@ #include "ntqpainter.h" #include "ntqapplication.h" #include "ntqpaintdevicemetrics.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqdatetime.h" #include "ntqstring.h" #include "ntqdict.h" diff --git a/src/kernel/qregion_x11.cpp b/src/kernel/qregion_x11.cpp index b5417a40a..7662a168d 100644 --- a/src/kernel/qregion_x11.cpp +++ b/src/kernel/qregion_x11.cpp @@ -41,7 +41,7 @@ #include "ntqregion.h" #include "ntqpointarray.h" #include "ntqbuffer.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqbitmap.h" #include "qt_x11_p.h" diff --git a/src/kernel/qrichtext.cpp b/src/kernel/qrichtext.cpp index a74433d47..c5e4be5e3 100644 --- a/src/kernel/qrichtext.cpp +++ b/src/kernel/qrichtext.cpp @@ -52,7 +52,7 @@ #include "ntqfileinfo.h" #include "ntqstylesheet.h" #include "ntqmime.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqdragobject.h" #include "ntqpaintdevicemetrics.h" #include "ntqpainter.h" diff --git a/src/kernel/qt_kernel.pri b/src/kernel/qt_kernel.pri index f21fbfd17..cf370058b 100644 --- a/src/kernel/qt_kernel.pri +++ b/src/kernel/qt_kernel.pri @@ -32,9 +32,9 @@ kernel { $$KERNEL_H/ntqguardedptr.h \ $$KERNEL_H/ntqgif.h \ $$KERNEL_H/ntqiconset.h \ - $$KERNEL_H/ntqimage.h \ - $$KERNEL_P/qimageformatinterface_p.h \ - $$KERNEL_H/ntqimageformatplugin.h \ + $$KERNEL_H/tqimage.h \ + $$KERNEL_P/tqimageformatinterface_p.h \ + $$KERNEL_H/tqimageformatplugin.h \ $$KERNEL_H/ntqkeycode.h \ $$KERNEL_H/ntqkeysequence.h \ $$KERNEL_H/ntqlayout.h \ @@ -216,8 +216,8 @@ kernel { $$KERNEL_CPP/qfontdatabase.cpp \ $$KERNEL_CPP/qguardedptr.cpp \ $$KERNEL_CPP/qiconset.cpp \ - $$KERNEL_CPP/qimage.cpp \ - $$KERNEL_CPP/qimageformatplugin.cpp \ + $$KERNEL_CPP/tqimage.cpp \ + $$KERNEL_CPP/tqimageformatplugin.cpp \ $$KERNEL_CPP/qkeysequence.cpp \ $$KERNEL_CPP/qlayout.cpp \ $$KERNEL_CPP/qlayoutengine.cpp \ diff --git a/src/kernel/qt_pch.h b/src/kernel/qt_pch.h index 54b968234..49f0cf73d 100644 --- a/src/kernel/qt_pch.h +++ b/src/kernel/qt_pch.h @@ -28,7 +28,7 @@ #include <ntqcursor.h> #include <ntqdatetime.h> #include <ntqglobal.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqmetaobject.h> // All moc genereated code has this include #include <tqobject.h> #include <ntqpainter.h> diff --git a/src/kernel/qvariant.cpp b/src/kernel/qvariant.cpp index f7479fb68..991dfcd35 100644 --- a/src/kernel/qvariant.cpp +++ b/src/kernel/qvariant.cpp @@ -46,7 +46,7 @@ #include "ntqcstring.h" #include "ntqfont.h" #include "ntqpixmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqbrush.h" #include "ntqpoint.h" #include "ntqrect.h" diff --git a/src/kernel/qimage.cpp b/src/kernel/tqimage.cpp index 3d7c15bfa..7a454818e 100644 --- a/src/kernel/qimage.cpp +++ b/src/kernel/tqimage.cpp @@ -38,7 +38,7 @@ ** **********************************************************************/ -#include "ntqimage.h" +#include "tqimage.h" #include "ntqregexp.h" #include "ntqfile.h" #include "ntqdatastream.h" @@ -51,7 +51,7 @@ #include "ntqjpegio.h" #include "tqmap.h" #include <private/qpluginmanager_p.h> -#include "qimageformatinterface_p.h" +#include "tqimageformatinterface_p.h" #include "ntqwmatrix.h" #include "ntqapplication.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 saving images. diff --git a/src/kernel/ntqimage.h b/src/kernel/tqimage.h index 32f20b23f..32f20b23f 100644 --- a/src/kernel/ntqimage.h +++ b/src/kernel/tqimage.h diff --git a/src/kernel/qimageformatinterface_p.h b/src/kernel/tqimageformatinterface_p.h index 8abe49c2d..8abe49c2d 100644 --- a/src/kernel/qimageformatinterface_p.h +++ b/src/kernel/tqimageformatinterface_p.h diff --git a/src/kernel/qimageformatplugin.cpp b/src/kernel/tqimageformatplugin.cpp index 3982053e0..ad9057d2c 100644 --- a/src/kernel/qimageformatplugin.cpp +++ b/src/kernel/tqimageformatplugin.cpp @@ -36,13 +36,13 @@ ** **********************************************************************/ -#include "ntqimageformatplugin.h" +#include "tqimageformatplugin.h" #ifndef TQT_NO_IMAGEFORMATPLUGIN -#include "qimageformatinterface_p.h" -#include "ntqimage.h" +#include "tqimageformatinterface_p.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. \ingroup plugins diff --git a/src/kernel/ntqimageformatplugin.h b/src/kernel/tqimageformatplugin.h index 237817e9f..237817e9f 100644 --- a/src/kernel/ntqimageformatplugin.h +++ b/src/kernel/tqimageformatplugin.h diff --git a/src/kernel/tqwidget_x11.cpp b/src/kernel/tqwidget_x11.cpp index 88bed113c..8329bf7a8 100644 --- a/src/kernel/tqwidget_x11.cpp +++ b/src/kernel/tqwidget_x11.cpp @@ -44,7 +44,7 @@ #include "ntqpaintdevicemetrics.h" #include "ntqpainter.h" #include "ntqbitmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "tqobjectlist.h" #include "ntqlayout.h" #include "ntqtextcodec.h" diff --git a/src/opengl/qgl.cpp b/src/opengl/qgl.cpp index 6882259d8..0436c01c2 100644 --- a/src/opengl/qgl.cpp +++ b/src/opengl/qgl.cpp @@ -41,7 +41,7 @@ #include "ntqgl.h" #include "ntqpixmap.h" #include "ntqpaintdevicemetrics.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqcleanuphandler.h" #include "tqptrdict.h" diff --git a/src/qt.pro b/src/qt.pro index 8e6298fb1..e66adeef5 100644 --- a/src/qt.pro +++ b/src/qt.pro @@ -180,14 +180,14 @@ wince-* { message( ...removing plugin stuff... (not permanent) ) HEADERS -= $$TOOLS_CPP/qcomlibrary.h \ $$KERNEL_CPP/ntqgplugin.h \ - $$KERNEL_CPP/ntqimageformatplugin.h \ + $$KERNEL_CPP/tqimageformatplugin.h \ $$STYLES_CPP/ntqstyleplugin.h \ $$CODECS_CPP/ntqtextcodecplugin.h \ $$WIDGETS_CPP/tqwidgetplugin.h SOURCES -= $$TOOLS_CPP/qcomlibrary.cpp \ $$KERNEL_CPP/qgplugin.cpp \ - $$KERNEL_CPP/qimageformatplugin.cpp \ + $$KERNEL_CPP/tqimageformatplugin.cpp \ $$STYLES_CPP/qstyleplugin.cpp \ $$CODECS_CPP/qtextcodecplugin.cpp \ $$WIDGETS_CPP/tqwidgetplugin.cpp diff --git a/src/styles/qmotifstyle.cpp b/src/styles/qmotifstyle.cpp index 36d85aafc..a611426e2 100644 --- a/src/styles/qmotifstyle.cpp +++ b/src/styles/qmotifstyle.cpp @@ -60,7 +60,7 @@ #include "ntqdockwindow.h" #include "ntqdockarea.h" #include "ntqprogressbar.h" -#include "ntqimage.h" +#include "tqimage.h" #include <limits.h> diff --git a/src/styles/qwindowsstyle.cpp b/src/styles/qwindowsstyle.cpp index b8f3a5410..b979e9a0b 100644 --- a/src/styles/qwindowsstyle.cpp +++ b/src/styles/qwindowsstyle.cpp @@ -49,7 +49,7 @@ #include "ntqpixmap.h" // for now #include "tqwidget.h" #include "ntqlabel.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpushbutton.h" #include "ntqcombobox.h" #include "ntqlistbox.h" diff --git a/src/tools/qfeatures.txt b/src/tools/qfeatures.txt index 6a9b92bf3..f528e8e74 100644 --- a/src/tools/qfeatures.txt +++ b/src/tools/qfeatures.txt @@ -1283,7 +1283,7 @@ SeeAlso: ??? Feature: IMAGEFORMATPLUGIN Section: Images Requires: COMPONENT IMAGEIO -Name: QImageFormatPlugin +Name: TQImageFormatPlugin SeeAlso: ??? diff --git a/src/widgets/qeffects.cpp b/src/widgets/qeffects.cpp index d40cdb868..07dee3f56 100644 --- a/src/widgets/qeffects.cpp +++ b/src/widgets/qeffects.cpp @@ -43,7 +43,7 @@ #include "tqwidget.h" #include "qeffects_p.h" #include "ntqpixmap.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqtimer.h" #include "ntqdatetime.h" #include "ntqguardedptr.h" diff --git a/src/widgets/qiconview.cpp b/src/widgets/qiconview.cpp index 82ee76060..049338708 100644 --- a/src/widgets/qiconview.cpp +++ b/src/widgets/qiconview.cpp @@ -53,7 +53,7 @@ #include "ntqevent.h" #include "ntqpalette.h" #include "ntqmime.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpen.h" #include "ntqbrush.h" #include "ntqtimer.h" diff --git a/src/widgets/qlabel.cpp b/src/widgets/qlabel.cpp index a9b485af8..d376b1fff 100644 --- a/src/widgets/qlabel.cpp +++ b/src/widgets/qlabel.cpp @@ -44,7 +44,7 @@ #include "ntqdrawutil.h" #include "ntqaccel.h" #include "ntqmovie.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqbitmap.h" #include "ntqpicture.h" #include "ntqapplication.h" diff --git a/src/widgets/qtextbrowser.cpp b/src/widgets/qtextbrowser.cpp index c9baa8144..23b2452f6 100644 --- a/src/widgets/qtextbrowser.cpp +++ b/src/widgets/qtextbrowser.cpp @@ -53,7 +53,7 @@ #include "ntqlayout.h" #include "ntqbitmap.h" #include "ntqtimer.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqsimplerichtext.h" #include "ntqdragobject.h" #include "ntqurl.h" diff --git a/src/widgets/qtitlebar.cpp b/src/widgets/qtitlebar.cpp index 97b2288e5..0879c3226 100644 --- a/src/widgets/qtitlebar.cpp +++ b/src/widgets/qtitlebar.cpp @@ -50,7 +50,7 @@ #include "ntqdatetime.h" #include "private/qapplication_p.h" #include "ntqtooltip.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqtimer.h" #include "ntqpainter.h" #include "ntqstyle.h" diff --git a/src/widgets/qtoolbutton.cpp b/src/widgets/qtoolbutton.cpp index b2a4443bf..c2cdaa93f 100644 --- a/src/widgets/qtoolbutton.cpp +++ b/src/widgets/qtoolbutton.cpp @@ -50,7 +50,7 @@ #include "ntqmainwindow.h" #include "ntqtooltip.h" #include "ntqtoolbar.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqiconset.h" #include "ntqtimer.h" #include "ntqpopupmenu.h" diff --git a/src/workspace/qworkspace.cpp b/src/workspace/qworkspace.cpp index 4479c0d8a..4e1ae7f01 100644 --- a/src/workspace/qworkspace.cpp +++ b/src/workspace/qworkspace.cpp @@ -58,7 +58,7 @@ #include "ntqdatetime.h" #include "ntqtooltip.h" #include "ntqwmatrix.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqscrollbar.h" #include "ntqstyle.h" #include "ntqbitmap.h" diff --git a/src/xml/qsvgdevice.cpp b/src/xml/qsvgdevice.cpp index ceeb8b6e6..d2895838f 100644 --- a/src/xml/qsvgdevice.cpp +++ b/src/xml/qsvgdevice.cpp @@ -47,7 +47,7 @@ #include "ntqregexp.h" #include "tqvaluelist.h" #include "ntqtextstream.h" -#include "ntqimage.h" +#include "tqimage.h" #include "ntqpixmap.h" #include <math.h> diff --git a/tools/designer/designer/pixmapchooser.cpp b/tools/designer/designer/pixmapchooser.cpp index 037694e7d..ce63c4d2e 100644 --- a/tools/designer/designer/pixmapchooser.cpp +++ b/tools/designer/designer/pixmapchooser.cpp @@ -45,7 +45,7 @@ #include "project.h" #include <ntqapplication.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpainter.h> #include <ntqlabel.h> #include <ntqlineedit.h> diff --git a/tools/designer/designer/pixmapcollection.cpp b/tools/designer/designer/pixmapcollection.cpp index 83bb14502..0a94c591d 100644 --- a/tools/designer/designer/pixmapcollection.cpp +++ b/tools/designer/designer/pixmapcollection.cpp @@ -38,7 +38,7 @@ #include <ntqdir.h> #include <ntqfileinfo.h> #include <ntqtextstream.h> -#include <ntqimage.h> +#include <tqimage.h> PixmapCollection::PixmapCollection( Project *pro ) : project( pro ) diff --git a/tools/designer/designer/pixmapcollectioneditor.ui b/tools/designer/designer/pixmapcollectioneditor.ui index f6104f640..e6075c9e4 100644 --- a/tools/designer/designer/pixmapcollectioneditor.ui +++ b/tools/designer/designer/pixmapcollectioneditor.ui @@ -198,7 +198,7 @@ <include location="local" impldecl="in implementation">pixmapchooser.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">ntqimage.h</include> + <include location="global" impldecl="in implementation">tqimage.h</include> <include location="global" impldecl="in declaration">ntqpixmap.h</include> <include location="local" impldecl="in implementation">pixmapcollectioneditor.ui.h</include> </includes> diff --git a/tools/designer/designer/resource.h b/tools/designer/designer/resource.h index 6e75e83c9..b2b437d1c 100644 --- a/tools/designer/designer/resource.h +++ b/tools/designer/designer/resource.h @@ -38,7 +38,7 @@ #include <ntqtextstream.h> #include <ntqvariant.h> #include <tqvaluelist.h> -#include <ntqimage.h> +#include <tqimage.h> #include "actiondnd.h" #include "metadatabase.h" diff --git a/tools/designer/designer/styledbutton.cpp b/tools/designer/designer/styledbutton.cpp index 22096d36e..f3a31001d 100644 --- a/tools/designer/designer/styledbutton.cpp +++ b/tools/designer/designer/styledbutton.cpp @@ -39,7 +39,7 @@ #include <ntqpalette.h> #include <ntqlabel.h> #include <ntqpainter.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqapplication.h> #include <ntqdragobject.h> diff --git a/tools/designer/examples/credit/creditformbase.cpp b/tools/designer/examples/credit/creditformbase.cpp index 372a756d3..e1ac4c506 100644 --- a/tools/designer/examples/credit/creditformbase.cpp +++ b/tools/designer/examples/credit/creditformbase.cpp @@ -19,7 +19,7 @@ #include <ntqtooltip.h> #include <ntqwhatsthis.h> #include "creditformbase.ui.h" -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> static TQPixmap uic_load_pixmap_CreditFormBase( const TQString &name ) diff --git a/tools/designer/plugins/glade/glade2ui.cpp b/tools/designer/plugins/glade/glade2ui.cpp index b1bbe9ca7..cd7d7f7e0 100644 --- a/tools/designer/plugins/glade/glade2ui.cpp +++ b/tools/designer/plugins/glade/glade2ui.cpp @@ -38,7 +38,7 @@ #include <ntqapplication.h> #include <ntqfile.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqprogressdialog.h> #include <ntqmessagebox.h> #include <ntqrect.h> diff --git a/tools/designer/uic/embed.cpp b/tools/designer/uic/embed.cpp index 5a272e33d..670b688cd 100644 --- a/tools/designer/uic/embed.cpp +++ b/tools/designer/uic/embed.cpp @@ -33,7 +33,7 @@ #include "uic.h" #include <ntqfile.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqstringlist.h> #include <ntqdatetime.h> #include <ntqfileinfo.h> @@ -143,7 +143,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima out << "****************************************************************************/\n"; out << "\n"; - out << "#include <ntqimage.h>\n"; + out << "#include <tqimage.h>\n"; out << "#include <ntqdict.h>\n"; out << "#include <ntqmime.h>\n"; out << "#include <ntqdragobject.h>\n"; diff --git a/tools/designer/uic/form.cpp b/tools/designer/uic/form.cpp index 127d1915d..ebbcb1575 100644 --- a/tools/designer/uic/form.cpp +++ b/tools/designer/uic/form.cpp @@ -851,7 +851,7 @@ void Uic::createFormImpl( const TQDomElement &e ) } if ( !requiredImages.isEmpty() || externPixmaps ) { - out << "#include <ntqimage.h>" << endl; + out << "#include <tqimage.h>" << endl; out << "#include <ntqpixmap.h>" << endl << endl; } diff --git a/tools/designer/uilib/tqwidgetfactory.h b/tools/designer/uilib/tqwidgetfactory.h index 80df0bbbc..4838f6f64 100644 --- a/tools/designer/uilib/tqwidgetfactory.h +++ b/tools/designer/uilib/tqwidgetfactory.h @@ -37,7 +37,7 @@ #ifndef QT_H #include <ntqstring.h> #include <tqptrlist.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <tqvaluelist.h> #include <tqmap.h> diff --git a/tools/qembed/qembed.cpp b/tools/qembed/qembed.cpp index 978a4f3d4..4db18202a 100644 --- a/tools/qembed/qembed.cpp +++ b/tools/qembed/qembed.cpp @@ -22,7 +22,7 @@ #include <tqptrlist.h> #include <ntqtextstream.h> #include <ntqdatetime.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqdict.h> #include <ntqdir.h> #include <ctype.h> @@ -96,7 +96,7 @@ int main( int argc, char **argv ) TQString arg = (*it); if ( arg == "--images" ) { if ( !images ) { - out << "#include <ntqimage.h>\n"; + out << "#include <tqimage.h>\n"; out << "#include <ntqdict.h>\n"; images = TRUE; } diff --git a/tools/tqvfb/qanimationwriter.h b/tools/tqvfb/qanimationwriter.h index 13e8ea136..88cbfe9db 100644 --- a/tools/tqvfb/qanimationwriter.h +++ b/tools/tqvfb/qanimationwriter.h @@ -34,7 +34,7 @@ #ifndef TQANIMATIONWRITER_H #define TQANIMATIONWRITER_H -#include <ntqimage.h> +#include <tqimage.h> class TQAnimationWriterData; diff --git a/tools/tqvfb/tqvfb.cpp b/tools/tqvfb/tqvfb.cpp index 5a5497432..f4535615e 100644 --- a/tools/tqvfb/tqvfb.cpp +++ b/tools/tqvfb/tqvfb.cpp @@ -47,7 +47,7 @@ #include <ntqslider.h> #include <ntqspinbox.h> #include <ntqradiobutton.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqpixmap.h> #include <ntqcursor.h> #include <ntqdragobject.h> diff --git a/tools/tqvfb/tqvfbview.cpp b/tools/tqvfb/tqvfbview.cpp index b7639a6cf..35a846b29 100644 --- a/tools/tqvfb/tqvfbview.cpp +++ b/tools/tqvfb/tqvfbview.cpp @@ -46,7 +46,7 @@ #define TQTE_PIPE "TQtEmbedded-%1" #include <ntqapplication.h> -#include <ntqimage.h> +#include <tqimage.h> #include <ntqbitmap.h> #include <ntqtimer.h> #include <ntqwmatrix.h> |