diff options
330 files changed, 2370 insertions, 2370 deletions
diff --git a/ChangeLog.immodule b/ChangeLog.immodule index 31b3cc8f1..872cb2fa5 100644 --- a/ChangeLog.immodule +++ b/ChangeLog.immodule @@ -41,7 +41,7 @@ - (QInputContext): Add 'parent' arg * src/kernel/ntqinputcontext.h - - Exclude ntqptrlist.h when compile with Qt4 + - Exclude qptrlist.h when compile with Qt4 - (struct QInputContextMenu): Exclude member variables when compile with Qt4 - (QInputContext): Add 'parent' arg diff --git a/doc/classchart.doc b/doc/classchart.doc index a42f874e9..daf469551 100644 --- a/doc/classchart.doc +++ b/doc/classchart.doc @@ -285,9 +285,9 @@ <area shape="rect" coords="900,203,970,223" href="tqpair.html"> <area shape="rect" coords="899,223,973,240" href="ntqpalette.html"> <area shape="rect" coords="899,239,990,258" href="ntqpixmapcache.html"> -<area shape="rect" coords="898,258,990,274" href="ntqptrcollection.html"> -<area shape="rect" coords="899,275,987,292" href="ntqptrqueue.html"> -<area shape="rect" coords="894,293,987,309" href="ntqptrstack.html"> +<area shape="rect" coords="898,258,990,274" href="tqptrcollection.html"> +<area shape="rect" coords="899,275,987,292" href="tqptrqueue.html"> +<area shape="rect" coords="894,293,987,309" href="tqptrstack.html"> <area shape="rect" coords="894,310,984,328" href="ntqpoint.html"> <area shape="rect" coords="890,324,988,347" href="ntqrangecontrol.html"> <area shape="rect" coords="890,348,986,363" href="ntqrect.html"> @@ -304,10 +304,10 @@ <area shape="rect" coords="897,538,996,559" href="ntqtextcodecplugin.html"> <area shape="rect" coords="902,560,987,579" href="ntqtextstream.html"> <area shape="rect" coords="897,578,976,594" href="qtime.html"> -<area shape="rect" coords="898,595,991,614" href="qptrdictiterator.html"> +<area shape="rect" coords="898,595,991,614" href="tqptrdictiterator.html"> <area shape="rect" coords="895,613,989,631" href="tqmapiterator.html"> <area shape="rect" coords="896,631,999,647" href="tqvaluelistiterator.html"> -<area shape="rect" coords="899,647,1000,665" href="qptrlistiterator.html"> +<area shape="rect" coords="899,647,1000,665" href="tqptrlistiterator.html"> <area shape="rect" coords="899,666,997,688" href="qintdictiterator.html"> <area shape="rect" coords="1006,60,1104,80" href="qbytearray.html"> <area shape="rect" coords="1004,80,1104,99" href="ntqpointarray.html"> @@ -321,11 +321,11 @@ <area shape="rect" coords="997,238,1107,263" href="ntqbitmap.html"> <area shape="rect" coords="1002,270,1088,294" href="ntqdict.html"> <area shape="rect" coords="1000,294,1089,309" href="ntqcache.html"> -<area shape="rect" coords="1000,310,1090,328" href="ntqptrlist.html"> +<area shape="rect" coords="1000,310,1090,328" href="tqptrlist.html"> <area shape="rect" coords="998,328,1090,346" href="ntqintdict.html"> -<area shape="rect" coords="998,346,1090,362" href="ntqptrdict.html"> +<area shape="rect" coords="998,346,1090,362" href="tqptrdict.html"> <area shape="rect" coords="1006,363,1090,384" href="ntqasciidict.html"> -<area shape="rect" coords="1006,384,1090,399" href="ntqptrvector.html"> +<area shape="rect" coords="1006,384,1090,399" href="tqptrvector.html"> <area shape="rect" coords="1008,400,1090,416" href="tqobjectlist.html"> <area shape="rect" coords="1007,435,1095,454" href="tqvaluelist.html"> <area shape="rect" coords="1007,454,1103,468" href="ntqstringlist.html"> diff --git a/doc/collect.doc b/doc/collect.doc index d7dfdeb79..09ee58382 100644 --- a/doc/collect.doc +++ b/doc/collect.doc @@ -68,11 +68,11 @@ The value-based collections are: The pointer-based collections are: \list \i \l QCache and \l QIntCache, LRU (least recently used) caches. -\i \l QDict, \l QIntDict and \l QPtrDict dictionaries. -\i \l QPtrList, a doubly linked list. -\i \l QPtrQueue, a FIFO (first in, first out) queue. -\i \l QPtrStack, a LIFO (last in, first out) stack. -\i \l QPtrVector, a vector. +\i \l QDict, \l QIntDict and \l TQPtrDict dictionaries. +\i \l TQPtrList, a doubly linked list. +\i \l TQPtrQueue, a FIFO (first in, first out) queue. +\i \l TQPtrStack, a LIFO (last in, first out) stack. +\i \l TQPtrVector, a vector. \endlist \l QMemArray is exceptional; it is neither pointer nor value based, @@ -87,8 +87,8 @@ is a class for traversing the items in a collection: \link QIntCacheIterator QIntCacheIterator\endlink \i \link QDictIterator QDictIterator\endlink, \link QIntDictIterator QIntDictIterator\endlink, and - \link QPtrDictIterator QPtrDictIterator\endlink -\i \link QPtrListIterator QPtrListIterator\endlink + \link TQPtrDictIterator TQPtrDictIterator\endlink +\i \link TQPtrListIterator TQPtrListIterator\endlink \i \link TQValueListIterator TQValueListIterator\endlink, and \link TQValueListConstIterator TQValueListConstIterator\endlink \i \link TQMapIterator TQMapIterator\endlink, and @@ -113,13 +113,13 @@ This strategy allows Qt's templates to be very economical on space (instantiating one of these templates adds only inlinable calls to the base classes), without hurting performance. -\section1 A QPtrList Example +\section1 A TQPtrList Example This example shows how to store Employee items in a list and prints them out in reverse order: \code - #include <ntqptrlist.h> + #include <tqptrlist.h> #include <ntqstring.h> #include <stdio.h> @@ -136,14 +136,14 @@ them out in reverse order: int main() { - QPtrList<Employee> list; // list of pointers to Employee + TQPtrList<Employee> list; // list of pointers to Employee list.setAutoDelete( TRUE ); // delete items when they are removed list.append( new Employee("Bill", 50000) ); list.append( new Employee("Steve",80000) ); list.append( new Employee("Ron", 60000) ); - QPtrListIterator<Employee> it(list); // iterator for employee list + TQPtrListIterator<Employee> it(list); // iterator for employee list for ( it.toLast(); it.current(); --it) ) { Employee *emp = it.current(); printf( "%s earns %d\n", emp->name(), emp->salary() ); @@ -162,12 +162,12 @@ Program output: \section1 Managing Collection Items -All pointer-based collections inherit the \l QPtrCollection base class. +All pointer-based collections inherit the \l TQPtrCollection base class. This class only knows about the number of items in the collection and the deletion strategy. By default, items in a collection are not deleted when they are -removed from the collection. The \l QPtrCollection::setAutoDelete() +removed from the collection. The \l TQPtrCollection::setAutoDelete() function specifies the deletion strategy. In the list example, we enable auto-deletion to make the list delete the items when they are removed from the list. @@ -176,27 +176,27 @@ When inserting an item into a collection, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the collection copy all of the item's data (known as a deep copy) when an item is inserted. All collection functions that insert an -item call the virtual function \l QPtrCollection::newItem() for the item +item call the virtual function \l TQPtrCollection::newItem() for the item to be inserted. Inherit a collection and reimplement it if you want to have deep copies in your collection. When removing an item from a list, the virtual function -\l{QPtrCollection::deleteItem()} is called. The default implementation +\l{TQPtrCollection::deleteItem()} is called. The default implementation in all collection classes deletes the item if auto-deletion is enabled. \section1 Usage -A pointer-based collection class, such as QPtrList\<type\>, defines a +A pointer-based collection class, such as TQPtrList\<type\>, defines a collection of \e pointers to \e type objects. The pointer (*) is implicit. -We discuss \l QPtrList here, but the same techniques apply to all +We discuss \l TQPtrList here, but the same techniques apply to all pointer-based collection classes and all collection class iterators. Template instantiation: \code - QPtrList<Employee> list; // wherever the list is used + TQPtrList<Employee> list; // wherever the list is used \endcode The item's class or type, Employee in our example, must be defined prior @@ -205,23 +205,23 @@ to the list definition. \code // Does not work: Employee is not defined class Employee; - QPtrList<Employee> list; + TQPtrList<Employee> list; // This works: Employee is defined before it is used class Employee { ... }; - QPtrList<Employee> list; + TQPtrList<Employee> list; \endcode \section1 Iterators -Although \l QPtrList has member functions to traverse the list, it can -often be better to make use of an iterator. \l QPtrListIterator is very +Although \l TQPtrList has member functions to traverse the list, it can +often be better to make use of an iterator. \l TQPtrListIterator is very safe and can traverse lists that are being modified at the same time. Multiple iterators can work independently on the same collection. -A QPtrList has an internal list of all the iterators that are +A TQPtrList has an internal list of all the iterators that are currently operating on it. When a list entry is removed, the list updates all iterators accordingly. @@ -239,8 +239,8 @@ Qt has the following predefined collection classes: \endlist In almost all cases you would choose \l QStringList, a value -list of implicitly shared TQString Unicode strings. QPtrStrList and -QPtrStrIList store only char pointers, not the strings themselves. +list of implicitly shared TQString Unicode strings. TQPtrStrList and +TQPtrStrIList store only char pointers, not the strings themselves. \section1 List of Pointer-based Collection Classes and Related Iterator Classes diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 2dbf7b695..3b9f0da0c 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -297,14 +297,14 @@ body { background: #ffffff; color: black; } <tr bgcolor=#f0f0f0><td><b><a href="ntqprocess.html">TQProcess</a></b><td>Used to start external programs and to communicate with them <tr bgcolor=#f0f0f0><td><b><a href="ntqprogressbar.html">TQProgressBar</a></b><td>Horizontal progress bar <tr bgcolor=#f0f0f0><td><b><a href="ntqprogressdialog.html">TQProgressDialog</a></b><td>Feedback on the progress of a slow operation -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrcollection.html">TQPtrCollection</a></b><td>The base class of most pointer-based TQt collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrdict.html">TQPtrDict</a></b><td>Template class that provides a dictionary based on void* keys -<tr bgcolor=#f0f0f0><td><b><a href="qptrdictiterator.html">TQPtrDictIterator</a></b><td>Iterator for TQPtrDict collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrlist.html">TQPtrList</a></b><td>Template class that provides a list -<tr bgcolor=#f0f0f0><td><b><a href="qptrlistiterator.html">TQPtrListIterator</a></b><td>Iterator for TQPtrList collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrqueue.html">TQPtrQueue</a></b><td>Template class that provides a queue -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrstack.html">TQPtrStack</a></b><td>Template class that provides a stack -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrvector.html">TQPtrVector</a></b><td>Template collection class that provides a vector (array) +<tr bgcolor=#f0f0f0><td><b><a href="tqptrcollection.html">TQPtrCollection</a></b><td>The base class of most pointer-based TQt collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrdict.html">TQPtrDict</a></b><td>Template class that provides a dictionary based on void* keys +<tr bgcolor=#f0f0f0><td><b><a href="tqptrdictiterator.html">TQPtrDictIterator</a></b><td>Iterator for TQPtrDict collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrlist.html">TQPtrList</a></b><td>Template class that provides a list +<tr bgcolor=#f0f0f0><td><b><a href="tqptrlistiterator.html">TQPtrListIterator</a></b><td>Iterator for TQPtrList collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrqueue.html">TQPtrQueue</a></b><td>Template class that provides a queue +<tr bgcolor=#f0f0f0><td><b><a href="tqptrstack.html">TQPtrStack</a></b><td>Template class that provides a stack +<tr bgcolor=#f0f0f0><td><b><a href="tqptrvector.html">TQPtrVector</a></b><td>Template collection class that provides a vector (array) <tr bgcolor=#f0f0f0><td><b><a href="ntqpushbutton.html">TQPushButton</a></b><td>Command button <tr bgcolor=#f0f0f0><td><b><a href="ntqradiobutton.html">TQRadioButton</a></b><td>Radio button with a text or pixmap label <tr bgcolor=#f0f0f0><td><b><a href="ntqrangecontrol.html">TQRangeControl</a></b><td>Integer value within a range diff --git a/doc/html/bigtable-example.html b/doc/html/bigtable-example.html index e903b3bbc..2ac840b6f 100644 --- a/doc/html/bigtable-example.html +++ b/doc/html/bigtable-example.html @@ -59,8 +59,8 @@ class MyTable : public <a href="ntqtable.html">TQTable</a> { public: MyTable( int r, int c ) : <a href="ntqtable.html">TQTable</a>( r, c ) { -<a name="x1291"></a> items.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); - widgets.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); +<a name="x1291"></a> items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); + widgets.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); setCaption( tr( "A 1 Million x 1 Million Cell Table" ) ); setLeftMargin( fontMetrics().width( "W999999W" ) ); } @@ -71,9 +71,9 @@ public: <a name="x1287"></a> void clearCell( int r, int c ) { items.<a href="ntqintdict.html#remove">remove</a>( indexOf( r, c ) ); } void takeItem( <a href="qtableitem.html">TQTableItem</a> *item ) { - items.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( FALSE ); + items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( FALSE ); <a name="x1294"></a><a name="x1293"></a> items.<a href="ntqintdict.html#remove">remove</a>( indexOf( item-><a href="qtableitem.html#row">row</a>(), item-><a href="qtableitem.html#col">col</a>() ) ); - items.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); + items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); } void insertWidget( int r, int c, TQWidget *w ) { widgets.<a href="ntqintdict.html#replace">replace</a>( indexOf( r, c ), w ); } <a href="tqwidget.html">TQWidget</a> *cellWidget( int r, int c ) const { return widgets.<a href="ntqintdict.html#find">find</a>( indexOf( r, c ) ); } diff --git a/doc/html/canvas-example.html b/doc/html/canvas-example.html index 0d877ecec..32d05b269 100644 --- a/doc/html/canvas-example.html +++ b/doc/html/canvas-example.html @@ -223,15 +223,15 @@ public: NodeItem( <a href="tqcanvas.html">TQCanvas</a> *canvas ); ~NodeItem() {} - void addInEdge( EdgeItem *edge ) { inList.<a href="ntqptrlist.html#append">append</a>( edge ); } - void addOutEdge( EdgeItem *edge ) { outList.<a href="ntqptrlist.html#append">append</a>( edge ); } + void addInEdge( EdgeItem *edge ) { inList.<a href="tqptrlist.html#append">append</a>( edge ); } + void addOutEdge( EdgeItem *edge ) { outList.<a href="tqptrlist.html#append">append</a>( edge ); } void moveBy(double dx, double dy); // TQPoint center() { return boundingRect().center(); } private: - <a href="ntqptrlist.html">TQPtrList</a><EdgeItem> inList; - <a href="ntqptrlist.html">TQPtrList</a><EdgeItem> outList; + <a href="tqptrlist.html">TQPtrList</a><EdgeItem> inList; + <a href="tqptrlist.html">TQPtrList</a><EdgeItem> outList; }; @@ -271,14 +271,14 @@ void NodeItem::<a href="tqcanvasitem.html#moveBy">moveBy</a>(double dx, double d { TQCanvasEllipse::<a href="tqcanvasitem.html#moveBy">moveBy</a>( dx, dy ); - <a href="qptrlistiterator.html">TQPtrListIterator</a><EdgeItem> it1( inList ); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><EdgeItem> it1( inList ); EdgeItem *edge; -<a name="x2949"></a> while (( edge = it1.<a href="qptrlistiterator.html#current">current</a>() )) { +<a name="x2949"></a> while (( edge = it1.<a href="tqptrlistiterator.html#current">current</a>() )) { ++it1; edge->setToPoint( int(<a href="tqwidget.html#x">x</a>()), int(<a href="tqcanvasitem.html#y">y</a>()) ); } - <a href="qptrlistiterator.html">TQPtrListIterator</a><EdgeItem> it2( outList ); - while (( edge = it2.<a href="qptrlistiterator.html#current">current</a>() )) { + <a href="tqptrlistiterator.html">TQPtrListIterator</a><EdgeItem> it2( outList ); + while (( edge = it2.<a href="tqptrlistiterator.html#current">current</a>() )) { ++it2; edge->setFromPoint( int(<a href="tqcanvasitem.html#x">x</a>()), int(<a href="tqcanvasitem.html#y">y</a>()) ); } diff --git a/doc/html/classchart.html b/doc/html/classchart.html index 675e4329a..5d72ef831 100644 --- a/doc/html/classchart.html +++ b/doc/html/classchart.html @@ -275,9 +275,9 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="900,203,970,223" href="tqpair.html"> <area shape="rect" coords="899,223,973,240" href="ntqpalette.html"> <area shape="rect" coords="899,239,990,258" href="ntqpixmapcache.html"> -<area shape="rect" coords="898,258,990,274" href="ntqptrcollection.html"> -<area shape="rect" coords="899,275,987,292" href="ntqptrqueue.html"> -<area shape="rect" coords="894,293,987,309" href="ntqptrstack.html"> +<area shape="rect" coords="898,258,990,274" href="tqptrcollection.html"> +<area shape="rect" coords="899,275,987,292" href="tqptrqueue.html"> +<area shape="rect" coords="894,293,987,309" href="tqptrstack.html"> <area shape="rect" coords="894,310,984,328" href="ntqpoint.html"> <area shape="rect" coords="890,324,988,347" href="ntqrangecontrol.html"> <area shape="rect" coords="890,348,986,363" href="ntqrect.html"> @@ -294,10 +294,10 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="897,538,996,559" href="ntqtextcodecplugin.html"> <area shape="rect" coords="902,560,987,579" href="ntqtextstream.html"> <area shape="rect" coords="897,578,976,594" href="qtime.html"> -<area shape="rect" coords="898,595,991,614" href="qptrdictiterator.html"> +<area shape="rect" coords="898,595,991,614" href="tqptrdictiterator.html"> <area shape="rect" coords="895,613,989,631" href="tqmapiterator.html"> <area shape="rect" coords="896,631,999,647" href="tqvaluelistiterator.html"> -<area shape="rect" coords="899,647,1000,665" href="qptrlistiterator.html"> +<area shape="rect" coords="899,647,1000,665" href="tqptrlistiterator.html"> <area shape="rect" coords="899,666,997,688" href="qintdictiterator.html"> <area shape="rect" coords="1006,60,1104,80" href="qbytearray.html"> <area shape="rect" coords="1004,80,1104,99" href="ntqpointarray.html"> @@ -311,11 +311,11 @@ body { background: #ffffff; color: black; } <area shape="rect" coords="997,238,1107,263" href="ntqbitmap.html"> <area shape="rect" coords="1002,270,1088,294" href="ntqdict.html"> <area shape="rect" coords="1000,294,1089,309" href="ntqcache.html"> -<area shape="rect" coords="1000,310,1090,328" href="ntqptrlist.html"> +<area shape="rect" coords="1000,310,1090,328" href="tqptrlist.html"> <area shape="rect" coords="998,328,1090,346" href="ntqintdict.html"> -<area shape="rect" coords="998,346,1090,362" href="ntqptrdict.html"> +<area shape="rect" coords="998,346,1090,362" href="tqptrdict.html"> <area shape="rect" coords="1006,363,1090,384" href="ntqasciidict.html"> -<area shape="rect" coords="1006,384,1090,399" href="ntqptrvector.html"> +<area shape="rect" coords="1006,384,1090,399" href="tqptrvector.html"> <area shape="rect" coords="1008,400,1090,416" href="tqobjectlist.html"> <area shape="rect" coords="1007,435,1095,454" href="tqvaluelist.html"> <area shape="rect" coords="1007,454,1103,468" href="ntqstringlist.html"> diff --git a/doc/html/classes.html b/doc/html/classes.html index 729de0258..c8eda66fa 100644 --- a/doc/html/classes.html +++ b/doc/html/classes.html @@ -154,7 +154,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="qimevent.html">TQIMEvent</a> <td align="right"> -<td><a href="ntqptrcollection.html">TQPtrCollection</a> +<td><a href="tqptrcollection.html">TQPtrCollection</a> <td align="right"> <td><a href="qtextdecoder.html">TQTextDecoder</a> <tr> @@ -165,7 +165,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqinputdialog.html">TQInputDialog</a> <td align="right"> -<td><a href="ntqptrdict.html">TQPtrDict</a> +<td><a href="tqptrdict.html">TQPtrDict</a> <td align="right"> <td><a href="qtextdrag.html">TQTextDrag</a> <tr> @@ -176,7 +176,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqintcache.html">TQIntCache</a> <td align="right"> -<td><a href="qptrdictiterator.html">TQPtrDictIterator</a> +<td><a href="tqptrdictiterator.html">TQPtrDictIterator</a> <td align="right"> <td><a href="ntqtextedit.html">TQTextEdit</a> <tr> @@ -187,7 +187,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="qintcacheiterator.html">TQIntCacheIterator</a> <td align="right"> -<td><a href="ntqptrlist.html">TQPtrList</a> +<td><a href="tqptrlist.html">TQPtrList</a> <td align="right"> <td><a href="qtextencoder.html">TQTextEncoder</a> <tr> @@ -198,7 +198,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqintdict.html">TQIntDict</a> <td align="right"> -<td><a href="qptrlistiterator.html">TQPtrListIterator</a> +<td><a href="tqptrlistiterator.html">TQPtrListIterator</a> <td align="right"> <td><a href="qtextistream.html">TQTextIStream</a> <tr> @@ -209,7 +209,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="qintdictiterator.html">TQIntDictIterator</a> <td align="right"> -<td><a href="ntqptrqueue.html">TQPtrQueue</a> +<td><a href="tqptrqueue.html">TQPtrQueue</a> <td align="right"> <td><a href="qtextostream.html">TQTextOStream</a> <tr> @@ -220,7 +220,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="qintvalidator.html">TQIntValidator</a> <td align="right"> -<td><a href="ntqptrstack.html">TQPtrStack</a> +<td><a href="tqptrstack.html">TQPtrStack</a> <td align="right"> <td><a href="ntqtextstream.html">TQTextStream</a> <tr> @@ -231,7 +231,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>. <td align="right"> <td><a href="ntqiodevice.html">TQIODevice</a> <td align="right"> -<td><a href="ntqptrvector.html">TQPtrVector</a> +<td><a href="tqptrvector.html">TQPtrVector</a> <td align="right"> <td><a href="ntqthread.html">TQThread</a> <tr> diff --git a/doc/html/collection.html b/doc/html/collection.html index 08b6be42c..cb7b53a6d 100644 --- a/doc/html/collection.html +++ b/doc/html/collection.html @@ -54,11 +54,11 @@ details. <p> The pointer-based collections are: <ul> <li> <a href="ntqcache.html">TQCache</a> and <a href="ntqintcache.html">TQIntCache</a>, LRU (least recently used) caches. -<li> <a href="ntqdict.html">TQDict</a>, <a href="ntqintdict.html">TQIntDict</a> and <a href="ntqptrdict.html">TQPtrDict</a> dictionaries. -<li> <a href="ntqptrlist.html">TQPtrList</a>, a doubly linked list. -<li> <a href="ntqptrqueue.html">TQPtrQueue</a>, a FIFO (first in, first out) queue. -<li> <a href="ntqptrstack.html">TQPtrStack</a>, a LIFO (last in, first out) stack. -<li> <a href="ntqptrvector.html">TQPtrVector</a>, a vector. +<li> <a href="ntqdict.html">TQDict</a>, <a href="ntqintdict.html">TQIntDict</a> and <a href="tqptrdict.html">TQPtrDict</a> dictionaries. +<li> <a href="tqptrlist.html">TQPtrList</a>, a doubly linked list. +<li> <a href="tqptrqueue.html">TQPtrQueue</a>, a FIFO (first in, first out) queue. +<li> <a href="tqptrstack.html">TQPtrStack</a>, a LIFO (last in, first out) stack. +<li> <a href="tqptrvector.html">TQPtrVector</a>, a vector. </ul> <p> <a href="ntqmemarray.html">TQMemArray</a> is exceptional; it is neither pointer nor value based, but memory based. For maximum efficiency with the simple data types @@ -71,8 +71,8 @@ is a class for traversing the items in a collection: <a href="qintcacheiterator.html">TQIntCacheIterator</a> <li> <a href="qdictiterator.html">TQDictIterator</a>, <a href="qintdictiterator.html">TQIntDictIterator</a>, and -<a href="qptrdictiterator.html">TQPtrDictIterator</a> -<li> <a href="qptrlistiterator.html">TQPtrListIterator</a> +<a href="tqptrdictiterator.html">TQPtrDictIterator</a> +<li> <a href="tqptrlistiterator.html">TQPtrListIterator</a> <li> <a href="tqvaluelistiterator.html">TQValueListIterator</a>, and <a href="tqvaluelistconstiterator.html">TQValueListConstIterator</a> <li> <a href="tqmapiterator.html">TQMapIterator</a>, and @@ -92,12 +92,12 @@ collections by casting item pointers to and from void pointers. <p> This strategy allows TQt's templates to be very economical on space (instantiating one of these templates adds only inlinable calls to the base classes), without hurting performance. -<p> <h2> A <a href="ntqptrlist.html">TQPtrList</a> Example +<p> <h2> A <a href="tqptrlist.html">TQPtrList</a> Example </h2> <a name="2"></a><p> This example shows how to store Employee items in a list and prints them out in reverse order: <p> <pre> - #include <<a href="qptrlist-h.html">ntqptrlist.h</a>> + #include <<a href="tqptrlist-h.html">tqptrlist.h</a>> #include <<a href="qstring-h.html">ntqstring.h</a>> #include <stdio.h> @@ -114,16 +114,16 @@ them out in reverse order: int main() { - <a href="ntqptrlist.html">TQPtrList</a><Employee> list; // list of pointers to Employee - list.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); // delete items when they are removed + <a href="tqptrlist.html">TQPtrList</a><Employee> list; // list of pointers to Employee + list.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); // delete items when they are removed - list.<a href="ntqptrlist.html#append">append</a>( new Employee("Bill", 50000) ); - list.<a href="ntqptrlist.html#append">append</a>( new Employee("Steve",80000) ); - list.<a href="ntqptrlist.html#append">append</a>( new Employee("Ron", 60000) ); + list.<a href="tqptrlist.html#append">append</a>( new Employee("Bill", 50000) ); + list.<a href="tqptrlist.html#append">append</a>( new Employee("Steve",80000) ); + list.<a href="tqptrlist.html#append">append</a>( new Employee("Ron", 60000) ); - <a href="qptrlistiterator.html">TQPtrListIterator</a><Employee> it(list); // iterator for employee list - for ( it.<a href="qptrlistiterator.html#toLast">toLast</a>(); it.<a href="qptrlistiterator.html#current">current</a>(); --it) ) { - Employee *emp = it.<a href="qptrlistiterator.html#current">current</a>(); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><Employee> it(list); // iterator for employee list + for ( it.<a href="tqptrlistiterator.html#toLast">toLast</a>(); it.<a href="tqptrlistiterator.html#current">current</a>(); --it) ) { + Employee *emp = it.<a href="tqptrlistiterator.html#current">current</a>(); printf( "%s earns %d\n", emp->name(), emp->salary() ); } @@ -140,11 +140,11 @@ them out in reverse order: <p> <h2> Managing Collection Items </h2> -<a name="3"></a><p> All pointer-based collections inherit the <a href="ntqptrcollection.html">TQPtrCollection</a> base class. +<a name="3"></a><p> All pointer-based collections inherit the <a href="tqptrcollection.html">TQPtrCollection</a> base class. This class only knows about the number of items in the collection and the deletion strategy. <p> By default, items in a collection are not deleted when they are -removed from the collection. The <a href="ntqptrcollection.html#setAutoDelete">TQPtrCollection::setAutoDelete</a>() +removed from the collection. The <a href="tqptrcollection.html#setAutoDelete">TQPtrCollection::setAutoDelete</a>() function specifies the deletion strategy. In the list example, we enable auto-deletion to make the list delete the items when they are removed from the list. @@ -152,23 +152,23 @@ removed from the list. not the item itself. This is called a <a href="shclass.html#shallow-copy">shallow copy</a>. It is possible to make the collection copy all of the item's data (known as a <a href="shclass.html#deep-copy">deep copy</a>) when an item is inserted. All collection functions that insert an -item call the virtual function <a href="ntqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item +item call the virtual function <a href="tqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. Inherit a collection and reimplement it if you want to have deep copies in your collection. <p> When removing an item from a list, the virtual function -<a href="ntqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. The default implementation +<a href="tqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. The default implementation in all collection classes deletes the item if auto-deletion is enabled. <p> <h2> Usage </h2> -<a name="4"></a><p> A pointer-based collection class, such as <a href="ntqptrlist.html">TQPtrList</a><type>, defines a +<a name="4"></a><p> A pointer-based collection class, such as <a href="tqptrlist.html">TQPtrList</a><type>, defines a collection of <em>pointers</em> to <em>type</em> objects. The pointer (*) is implicit. -<p> We discuss <a href="ntqptrlist.html">TQPtrList</a> here, but the same techniques apply to all +<p> We discuss <a href="tqptrlist.html">TQPtrList</a> here, but the same techniques apply to all pointer-based collection classes and all collection class iterators. <p> Template instantiation: <pre> - <a href="ntqptrlist.html">TQPtrList</a><Employee> list; // wherever the list is used + <a href="tqptrlist.html">TQPtrList</a><Employee> list; // wherever the list is used </pre> <p> The item's class or type, Employee in our example, must be defined prior @@ -176,22 +176,22 @@ to the list definition. <p> <pre> // Does not work: Employee is not defined class Employee; - <a href="ntqptrlist.html">TQPtrList</a><Employee> list; + <a href="tqptrlist.html">TQPtrList</a><Employee> list; // This works: Employee is defined before it is used class Employee { ... }; - <a href="ntqptrlist.html">TQPtrList</a><Employee> list; + <a href="tqptrlist.html">TQPtrList</a><Employee> list; </pre> <p> <h2> Iterators </h2> -<a name="5"></a><p> Although <a href="ntqptrlist.html">TQPtrList</a> has member functions to traverse the list, it can -often be better to make use of an iterator. <a href="qptrlistiterator.html">TQPtrListIterator</a> is very +<a name="5"></a><p> Although <a href="tqptrlist.html">TQPtrList</a> has member functions to traverse the list, it can +often be better to make use of an iterator. <a href="tqptrlistiterator.html">TQPtrListIterator</a> is very safe and can traverse lists that are being modified at the same time. Multiple iterators can work independently on the same collection. -<p> A <a href="ntqptrlist.html">TQPtrList</a> has an internal list of all the iterators that are +<p> A <a href="tqptrlist.html">TQPtrList</a> has an internal list of all the iterators that are currently operating on it. When a list entry is removed, the list updates all iterators accordingly. <p> The <a href="ntqdict.html">TQDict</a> and <a href="ntqcache.html">TQCache</a> collections have no traversal functions. To @@ -231,12 +231,12 @@ Iterator Classes <tr bgcolor=#f0f0f0><td><b><a href="qintdictiterator.html">TQIntDictIterator</a></b><td>Iterator for TQIntDict collections <tr bgcolor=#f0f0f0><td><b><a href="tqobjectlist.html">TQObjectList</a></b><td>TQPtrList of TQObjects <tr bgcolor=#f0f0f0><td><b><a href="tqobjectlistiterator.html">TQObjectListIterator</a></b><td>Iterator for TQObjectLists -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrcollection.html">TQPtrCollection</a></b><td>The base class of most pointer-based TQt collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrdict.html">TQPtrDict</a></b><td>Template class that provides a dictionary based on void* keys -<tr bgcolor=#f0f0f0><td><b><a href="qptrdictiterator.html">TQPtrDictIterator</a></b><td>Iterator for TQPtrDict collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrlist.html">TQPtrList</a></b><td>Template class that provides a list -<tr bgcolor=#f0f0f0><td><b><a href="qptrlistiterator.html">TQPtrListIterator</a></b><td>Iterator for TQPtrList collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrqueue.html">TQPtrQueue</a></b><td>Template class that provides a queue +<tr bgcolor=#f0f0f0><td><b><a href="tqptrcollection.html">TQPtrCollection</a></b><td>The base class of most pointer-based TQt collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrdict.html">TQPtrDict</a></b><td>Template class that provides a dictionary based on void* keys +<tr bgcolor=#f0f0f0><td><b><a href="tqptrdictiterator.html">TQPtrDictIterator</a></b><td>Iterator for TQPtrDict collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrlist.html">TQPtrList</a></b><td>Template class that provides a list +<tr bgcolor=#f0f0f0><td><b><a href="tqptrlistiterator.html">TQPtrListIterator</a></b><td>Iterator for TQPtrList collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrqueue.html">TQPtrQueue</a></b><td>Template class that provides a queue <tr bgcolor=#f0f0f0><td><b><a href="qstrilist.html">TQStrIList</a></b><td>Doubly-linked list of char* with case-insensitive comparison <tr bgcolor=#f0f0f0><td><b><a href="ntqstrlist.html">TQStrList</a></b><td>Doubly-linked list of char* </table> diff --git a/doc/html/customlayout-example.html b/doc/html/customlayout-example.html index e095c9ca8..b8fb8bf68 100644 --- a/doc/html/customlayout-example.html +++ b/doc/html/customlayout-example.html @@ -56,7 +56,7 @@ like card layouts, border layout and flow layouts. #define FLOW_H #include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> class SimpleFlow : public <a href="ntqlayout.html">TQLayout</a> { @@ -87,7 +87,7 @@ protected: private: int doLayout( const <a href="ntqrect.html">TQRect</a>&, bool testonly = FALSE ); - <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> list; + <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> list; int cached_width; int cached_hfw; @@ -115,7 +115,7 @@ private: class SimpleFlowIterator :public <a href="qglayoutiterator.html">TQGLayoutIterator</a> { public: - SimpleFlowIterator( <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> *l ) :idx(0), list(l) {} + SimpleFlowIterator( <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> *l ) :idx(0), list(l) {} uint count() const; <a href="qlayoutitem.html">TQLayoutItem</a> *current(); <a href="qlayoutitem.html">TQLayoutItem</a> *next(); @@ -123,18 +123,18 @@ public: private: int idx; - <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> *list; + <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> *list; }; uint <a name="f452"></a>SimpleFlowIterator::count() const { -<a name="x1479"></a> return list-><a href="ntqptrlist.html#count">count</a>(); +<a name="x1479"></a> return list-><a href="tqptrlist.html#count">count</a>(); } <a name="x1464"></a>TQLayoutItem *SimpleFlowIterator::<a href="qglayoutiterator.html#current">current</a>() { -<a name="x1478"></a> return idx < int(count()) ? list-><a href="ntqptrlist.html#at">at</a>(idx) : 0; +<a name="x1478"></a> return idx < int(count()) ? list-><a href="tqptrlist.html#at">at</a>(idx) : 0; } <a name="x1465"></a>TQLayoutItem *SimpleFlowIterator::<a href="qglayoutiterator.html#next">next</a>() @@ -144,7 +144,7 @@ uint <a name="f452"></a>SimpleFlowIterator::count() const <a name="x1466"></a>TQLayoutItem *SimpleFlowIterator::<a href="qglayoutiterator.html#takeCurrent">takeCurrent</a>() { -<a name="x1480"></a> return idx < int(count()) ? list-><a href="ntqptrlist.html#take">take</a>( idx ) : 0; +<a name="x1480"></a> return idx < int(count()) ? list-><a href="tqptrlist.html#take">take</a>( idx ) : 0; } SimpleFlow::~SimpleFlow() @@ -168,7 +168,7 @@ SimpleFlow::~SimpleFlow() <a name="x1467"></a>void SimpleFlow::<a href="ntqlayout.html#addItem">addItem</a>( <a href="qlayoutitem.html">TQLayoutItem</a> *item) { -<a name="x1477"></a> list.<a href="ntqptrlist.html#append">append</a>( item ); +<a name="x1477"></a> list.<a href="tqptrlist.html#append">append</a>( item ); } <a name="x1472"></a>bool SimpleFlow::<a href="qlayoutitem.html#hasHeightForWidth">hasHeightForWidth</a>() const @@ -202,9 +202,9 @@ int <a name="f451"></a>SimpleFlow::doLayout( const <a href="ntqrect.html">TQRect int x = r.<a href="ntqrect.html#x">x</a>(); int y = r.<a href="ntqrect.html#y">y</a>(); int h = 0; //height of this line so far. - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); <a href="qlayoutitem.html">TQLayoutItem</a> *o; -<a name="x1481"></a> while ( (o=it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { +<a name="x1481"></a> while ( (o=it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; int nextX = x + o-><a href="qlayoutitem.html#sizeHint">sizeHint</a>().width() + spacing(); <a name="x1482"></a> if ( nextX - spacing() > r.<a href="ntqrect.html#right">right</a>() && h > 0 ) { @@ -224,9 +224,9 @@ int <a name="f451"></a>SimpleFlow::doLayout( const <a href="ntqrect.html">TQRect <a name="x1470"></a>TQSize SimpleFlow::<a href="ntqlayout.html#minimumSize">minimumSize</a>() const { <a href="ntqsize.html">TQSize</a> s(0,0); - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); <a href="qlayoutitem.html">TQLayoutItem</a> *o; - while ( (o=it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { + while ( (o=it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; <a name="x1485"></a><a name="x1474"></a> s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( o-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); } @@ -254,7 +254,7 @@ int <a name="f451"></a>SimpleFlow::doLayout( const <a href="ntqrect.html">TQRect #define BORDER_H #include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> class BorderWidgetItem : public <a href="tqwidgetitem.html">TQWidgetItem</a> { @@ -334,7 +334,7 @@ private: void doLayout( const <a href="ntqrect.html">TQRect</a> &rect, bool testonly = FALSE ); void calcSize( SizeType st ); - <a href="ntqptrlist.html">TQPtrList</a><BorderLayoutStruct> list; + <a href="tqptrlist.html">TQPtrList</a><BorderLayoutStruct> list; <a href="ntqsize.html">TQSize</a> cached, mcached; bool sizeDirty, msizeDirty; @@ -362,7 +362,7 @@ private: class BorderLayoutIterator : public <a href="qglayoutiterator.html">TQGLayoutIterator</a> { public: - BorderLayoutIterator( const <a href="ntqptrlist.html">TQPtrList</a><BorderLayout::BorderLayoutStruct> *l ) + BorderLayoutIterator( const <a href="tqptrlist.html">TQPtrList</a><BorderLayout::BorderLayoutStruct> *l ) : idx( 0 ) , list( (TQPtrList<BorderLayout::BorderLayoutStruct>*)l ) {} @@ -376,23 +376,23 @@ public: private: int idx; - <a href="ntqptrlist.html">TQPtrList</a><BorderLayout::BorderLayoutStruct> *list; + <a href="tqptrlist.html">TQPtrList</a><BorderLayout::BorderLayoutStruct> *list; }; uint <a name="f456"></a>BorderLayoutIterator::count() const { -<a name="x1502"></a> return list-><a href="ntqptrlist.html#count">count</a>(); +<a name="x1502"></a> return list-><a href="tqptrlist.html#count">count</a>(); } <a name="x1486"></a>TQLayoutItem *BorderLayoutIterator::<a href="qglayoutiterator.html#current">current</a>() { -<a name="x1501"></a> return idx < (int)count() ? list-><a href="ntqptrlist.html#at">at</a>( idx )->item : 0; +<a name="x1501"></a> return idx < (int)count() ? list-><a href="tqptrlist.html#at">at</a>( idx )->item : 0; } BorderLayout::BorderLayoutStruct *<a name="f457"></a>BorderLayoutIterator::currentStruct() { - return idx < (int)count() ? list-><a href="ntqptrlist.html#at">at</a>( idx ) : 0; + return idx < (int)count() ? list-><a href="tqptrlist.html#at">at</a>( idx ) : 0; } void <a name="f458"></a>BorderLayoutIterator::toFirst() @@ -409,7 +409,7 @@ void <a name="f458"></a>BorderLayoutIterator::toFirst() <a name="x1488"></a>TQLayoutItem *BorderLayoutIterator::<a href="qglayoutiterator.html#takeCurrent">takeCurrent</a>() { BorderLayout::BorderLayoutStruct *b -<a name="x1503"></a> = idx < int( list-><a href="ntqptrlist.html#count">count</a>() ) ? list-><a href="ntqptrlist.html#take">take</a>( idx ) : 0; +<a name="x1503"></a> = idx < int( list-><a href="tqptrlist.html#count">count</a>() ) ? list-><a href="tqptrlist.html#take">take</a>( idx ) : 0; <a href="qlayoutitem.html">TQLayoutItem</a> *item = b ? b->item : 0; delete b; return item; @@ -439,7 +439,7 @@ void <a name="f453"></a>BorderLayout::addWidget( <a href="tqwidget.html">TQWidge <a name="x1489"></a>void BorderLayout::<a href="ntqlayout.html#add">add</a>( <a href="qlayoutitem.html">TQLayoutItem</a> *item, Position pos ) { -<a name="x1500"></a> list.<a href="ntqptrlist.html#append">append</a>( new BorderLayoutStruct( item, pos ) ); +<a name="x1500"></a> list.<a href="tqptrlist.html#append">append</a>( new BorderLayoutStruct( item, pos ) ); sizeDirty = TRUE; msizeDirty = TRUE; calcSize( SizeHint ); calcSize( Minimum ); } @@ -594,7 +594,7 @@ void <a name="f455"></a>BorderLayout::calcSize( SizeType st ) #define CARD_H #include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> class CardLayout : public <a href="ntqlayout.html">TQLayout</a> { @@ -614,7 +614,7 @@ public: void setGeometry( const <a href="ntqrect.html">TQRect</a> &rect ); private: - <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> list; + <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> list; }; @@ -640,7 +640,7 @@ private: class CardLayoutIterator :public <a href="qglayoutiterator.html">TQGLayoutIterator</a> { public: - CardLayoutIterator( <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> *l ) + CardLayoutIterator( <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> *l ) : idx( 0 ), list( l ) {} <a href="qlayoutitem.html">TQLayoutItem</a> *current(); @@ -649,12 +649,12 @@ public: private: int idx; - <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> *list; + <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> *list; }; <a name="x1508"></a>TQLayoutItem *CardLayoutIterator::<a href="qglayoutiterator.html#current">current</a>() { -<a name="x1520"></a><a name="x1519"></a> return idx < int( list-><a href="ntqptrlist.html#count">count</a>() ) ? list-><a href="ntqptrlist.html#at">at</a>( idx ) : 0; +<a name="x1520"></a><a name="x1519"></a> return idx < int( list-><a href="tqptrlist.html#count">count</a>() ) ? list-><a href="tqptrlist.html#at">at</a>( idx ) : 0; } <a name="x1509"></a>TQLayoutItem *CardLayoutIterator::<a href="qglayoutiterator.html#next">next</a>() @@ -664,7 +664,7 @@ private: <a name="x1510"></a>TQLayoutItem *CardLayoutIterator::<a href="qglayoutiterator.html#takeCurrent">takeCurrent</a>() { -<a name="x1521"></a> return idx < int( list-><a href="ntqptrlist.html#count">count</a>() ) ?list-><a href="ntqptrlist.html#take">take</a>( idx ) : 0; +<a name="x1521"></a> return idx < int( list-><a href="tqptrlist.html#count">count</a>() ) ?list-><a href="tqptrlist.html#take">take</a>( idx ) : 0; } @@ -681,25 +681,25 @@ CardLayout::~CardLayout() <a name="x1511"></a>void CardLayout::<a href="ntqlayout.html#addItem">addItem</a>( <a href="qlayoutitem.html">TQLayoutItem</a> *item ) { -<a name="x1518"></a> list.<a href="ntqptrlist.html#append">append</a>( item ); +<a name="x1518"></a> list.<a href="tqptrlist.html#append">append</a>( item ); } <a name="x1514"></a>void CardLayout::<a href="ntqlayout.html#setGeometry">setGeometry</a>( const <a href="ntqrect.html">TQRect</a> &rct ) { TQLayout::<a href="ntqlayout.html#setGeometry">setGeometry</a>( rct ); - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); -<a name="x1522"></a> if ( it.<a href="qptrlistiterator.html#count">count</a>() == 0 ) + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); +<a name="x1522"></a> if ( it.<a href="tqptrlistiterator.html#count">count</a>() == 0 ) return; <a href="qlayoutitem.html">TQLayoutItem</a> *o; int i = 0; - int w = rct.<a href="ntqrect.html#width">width</a>() - ( list.<a href="ntqptrlist.html#count">count</a>() - 1 ) * spacing(); - int h = rct.<a href="ntqrect.html#height">height</a>() - ( list.<a href="ntqptrlist.html#count">count</a>() - 1 ) * spacing(); + int w = rct.<a href="ntqrect.html#width">width</a>() - ( list.<a href="tqptrlist.html#count">count</a>() - 1 ) * spacing(); + int h = rct.<a href="ntqrect.html#height">height</a>() - ( list.<a href="tqptrlist.html#count">count</a>() - 1 ) * spacing(); -<a name="x1523"></a> while ( ( o=it.<a href="qptrlistiterator.html#current">current</a>() ) != 0 ) { +<a name="x1523"></a> while ( ( o=it.<a href="tqptrlistiterator.html#current">current</a>() ) != 0 ) { ++it; <a href="ntqrect.html">TQRect</a> geom( rct.<a href="ntqrect.html#x">x</a>() + i * spacing(), rct.<a href="ntqrect.html#y">y</a>() + i * spacing(), w, h ); @@ -711,12 +711,12 @@ CardLayout::~CardLayout() <a name="x1517"></a>TQSize CardLayout::<a href="qlayoutitem.html#sizeHint">sizeHint</a>() const { <a href="ntqsize.html">TQSize</a> s(0,0); - int n = list.<a href="ntqptrlist.html#count">count</a>(); + int n = list.<a href="tqptrlist.html#count">count</a>(); if ( n > 0 ) s = TQSize(100,70); //start with a nice default size - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); <a href="qlayoutitem.html">TQLayoutItem</a> *o; - while ( (o=it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { + while ( (o=it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; <a name="x1528"></a><a name="x1515"></a> s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( o-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); } @@ -726,10 +726,10 @@ CardLayout::~CardLayout() <a name="x1513"></a>TQSize CardLayout::<a href="ntqlayout.html#minimumSize">minimumSize</a>() const { <a href="ntqsize.html">TQSize</a> s(0,0); - int n = list.<a href="ntqptrlist.html#count">count</a>(); - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); + int n = list.<a href="tqptrlist.html#count">count</a>(); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it(list); <a href="qlayoutitem.html">TQLayoutItem</a> *o; - while ( (o=it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { + while ( (o=it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( o-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); } diff --git a/doc/html/customlayout.html b/doc/html/customlayout.html index a9bcfc34c..da82fa892 100644 --- a/doc/html/customlayout.html +++ b/doc/html/customlayout.html @@ -40,7 +40,7 @@ by the Java layout manager of the same name. It lays out the items <ul> <li> A data structure to store the items handled by the layout. Each item is a <a href="qlayoutitem.html">TQLayoutItem</a>. We will use a -<a href="ntqptrlist.html">TQPtrList</a> in this example. +<a href="tqptrlist.html">TQPtrList</a> in this example. <li> <a href="ntqlayout.html#addItem">addItem()</a>, how to add items to the layout. <li> <a href="ntqlayout.html#setGeometry">setGeometry()</a>, how to perform @@ -58,7 +58,7 @@ the layout. #define CARD_H #include <<a href="qlayout-h.html">ntqlayout.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> class CardLayout : public <a href="ntqlayout.html">TQLayout</a> { @@ -78,7 +78,7 @@ public: void setGeometry(const <a href="ntqrect.html">TQRect</a> &rect); private: - <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> list; + <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> list; }; #endif @@ -105,21 +105,21 @@ constructor. In our example we do not need a destructor. class CardLayoutIterator : public <a href="qglayoutiterator.html">TQGLayoutIterator</a> { public: - CardLayoutIterator( <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> *l ) + CardLayoutIterator( <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> *l ) : idx( 0 ), list( l ) {} <a href="qlayoutitem.html">TQLayoutItem</a> *current() - { return idx < int(list-><a href="ntqptrlist.html#count">count</a>()) ? list-><a href="ntqptrlist.html#at">at</a>(idx) : 0; } + { return idx < int(list-><a href="tqptrlist.html#count">count</a>()) ? list-><a href="tqptrlist.html#at">at</a>(idx) : 0; } <a href="qlayoutitem.html">TQLayoutItem</a> *next() { idx++; return current(); } <a href="qlayoutitem.html">TQLayoutItem</a> *takeCurrent() - { return list-><a href="ntqptrlist.html#take">take</a>( idx ); } + { return list-><a href="tqptrlist.html#take">take</a>( idx ); } private: int idx; - <a href="ntqptrlist.html">TQPtrList</a><TQLayoutItem> *list; + <a href="tqptrlist.html">TQPtrList</a><TQLayoutItem> *list; }; </pre> @@ -164,8 +164,8 @@ void CardLayout::setGeometry( const <a href="ntqrect.html">TQRect</a> &rect { TQLayout::<a href="ntqlayout.html#setGeometry">setGeometry</a>( rect ); - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); - if (it.<a href="qptrlistiterator.html#count">count</a>() == 0) + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); + if (it.<a href="tqptrlistiterator.html#count">count</a>() == 0) return; <a href="qlayoutitem.html">TQLayoutItem</a> *item; @@ -175,7 +175,7 @@ void CardLayout::setGeometry( const <a href="ntqrect.html">TQRect</a> &rect int w = rect.<a href="ntqrect.html#width">width</a>() - ( list.count() - 1 ) * spacing(); int h = rect.<a href="ntqrect.html#height">height</a>() - ( list.count() - 1 ) * spacing(); - while ( (item = it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { + while ( (item = it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; <a href="ntqrect.html">TQRect</a> geom( rect.<a href="ntqrect.html#x">x</a>() + i * spacing(), rect.<a href="ntqrect.html#y">y</a>() + i * spacing(), w, h ); @@ -195,9 +195,9 @@ TQSize CardLayout::sizeHint() const int n = list.count(); if ( n > 0 ) s = TQSize( 100, 70 ); // start with a nice default size - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); <a href="qlayoutitem.html">TQLayoutItem</a> *item; - while ( (item = it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { + while ( (item = it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( item-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); } @@ -208,9 +208,9 @@ TQSize CardLayout::minimumSize() const { <a href="ntqsize.html">TQSize</a> s( 0, 0 ); int n = list.count(); - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQLayoutItem> it( list ); <a href="qlayoutitem.html">TQLayoutItem</a> *item; - while ( (item = it.<a href="qptrlistiterator.html#current">current</a>()) != 0 ) { + while ( (item = it.<a href="tqptrlistiterator.html#current">current</a>()) != 0 ) { ++it; s = s.<a href="ntqsize.html#expandedTo">expandedTo</a>( item-><a href="qlayoutitem.html#minimumSize">minimumSize</a>() ); } diff --git a/doc/html/dirview-example.html b/doc/html/dirview-example.html index c734559bb..5cd95fe78 100644 --- a/doc/html/dirview-example.html +++ b/doc/html/dirview-example.html @@ -577,8 +577,8 @@ static const int autoopenTime = 750; e-><a href="qdragmoveevent.html#accept">accept</a>(); -<a name="x1699"></a> for ( uint i = 0; i < lst.<a href="ntqptrlist.html#count">count</a>(); ++i ) { -<a name="x1709"></a><a name="x1697"></a><a name="x1664"></a> <a href="ntqstring.html">TQString</a> filename = TQDir::<a href="ntqdir.html#convertSeparators">convertSeparators</a>(TQUriDrag::<a href="quridrag.html#uriToLocalFile">uriToLocalFile</a>(lst.<a href="ntqptrlist.html#at">at</a>(i))); +<a name="x1699"></a> for ( uint i = 0; i < lst.<a href="tqptrlist.html#count">count</a>(); ++i ) { +<a name="x1709"></a><a name="x1697"></a><a name="x1664"></a> <a href="ntqstring.html">TQString</a> filename = TQDir::<a href="ntqdir.html#convertSeparators">convertSeparators</a>(TQUriDrag::<a href="quridrag.html#uriToLocalFile">uriToLocalFile</a>(lst.<a href="tqptrlist.html#at">at</a>(i))); str += filename + "\n"; } str += TQString( "\nTo\n\n %1" ) @@ -720,7 +720,7 @@ int main( int argc, char ** argv ) <a name="x1716"></a> mw.<a href="ntqlistview.html#setTreeStepSize">setTreeStepSize</a>( 20 ); <a name="x1712"></a> const TQFileInfoList* roots = TQDir::<a href="ntqdir.html#drives">drives</a>(); - <a href="qptrlistiterator.html">TQPtrListIterator</a><TQFileInfo> i(*roots); + <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQFileInfo> i(*roots); <a href="ntqfileinfo.html">TQFileInfo</a>* fi; while ( (fi = *i) ) { ++i; diff --git a/doc/html/functions.html b/doc/html/functions.html index d4f6228a9..2bf662c5f 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -155,7 +155,7 @@ abort: <a href="tqcanvasitem.html#animated">TQCanvasItem</a><li>answerRect: <a href="qdragmoveevent.html#answerRect">TQDragMoveEvent</a><li>appID: <a href="qaxfactory.html#appID">TQAxFactory</a><li>append: - <a href="ntqcstring.html#append">TQCString</a> <a href="qicondrag.html#append">TQIconDrag</a> <a href="ntqptrlist.html#append">TQPtrList</a> <a href="tqsqlcursor.html#append">TQSqlCursor</a> <a href="tqsqlindex.html#append">TQSqlIndex</a> <a href="tqsqlrecord.html#append">TQSqlRecord</a> <a href="ntqstring.html#append">TQString</a> <a href="ntqtextedit.html#append">TQTextEdit</a> <a href="tqvaluelist.html#append">TQValueList</a> <a href="tqvaluevector.html#append">TQValueVector</a> <a href="tqxmlattributes.html#append">TQXmlAttributes</a><li>appendChild: + <a href="ntqcstring.html#append">TQCString</a> <a href="qicondrag.html#append">TQIconDrag</a> <a href="tqptrlist.html#append">TQPtrList</a> <a href="tqsqlcursor.html#append">TQSqlCursor</a> <a href="tqsqlindex.html#append">TQSqlIndex</a> <a href="tqsqlrecord.html#append">TQSqlRecord</a> <a href="ntqstring.html#append">TQString</a> <a href="ntqtextedit.html#append">TQTextEdit</a> <a href="tqvaluelist.html#append">TQValueList</a> <a href="tqvaluevector.html#append">TQValueVector</a> <a href="tqxmlattributes.html#append">TQXmlAttributes</a><li>appendChild: <a href="tqdomnode.html#appendChild">TQDomNode</a><li>appendData: <a href="tqdomcharacterdata.html#appendData">TQDomCharacterData</a><li>applicationContext: <a href="qmotif.html#applicationContext">TQMotif</a><li>applicationDirPath: @@ -214,11 +214,11 @@ abort: <a href="ntqmemarray.html#assign">TQMemArray</a><li>assistantClosed: <a href="ntqassistantclient.html#assistantClosed">TQAssistantClient</a><li>assistantOpened: <a href="ntqassistantclient.html#assistantOpened">TQAssistantClient</a><li>at: - <a href="ntqbitarray.html#at">TQBitArray</a> <a href="ntqiodevice.html#at">TQIODevice</a> <a href="ntqmemarray.html#at">TQMemArray</a> <a href="ntqptrlist.html#at">TQPtrList</a> <a href="ntqptrvector.html#at">TQPtrVector</a> <a href="ntqsocket.html#at">TQSocket</a> <a href="tqsqlquery.html#at">TQSqlQuery</a> <a href="tqsqlresult.html#at">TQSqlResult</a> <a href="ntqstring.html#at">TQString</a> <a href="tqvaluelist.html#at">TQValueList</a> <a href="tqvaluevector.html#at">TQValueVector</a><li>atBeginning: + <a href="ntqbitarray.html#at">TQBitArray</a> <a href="ntqiodevice.html#at">TQIODevice</a> <a href="ntqmemarray.html#at">TQMemArray</a> <a href="tqptrlist.html#at">TQPtrList</a> <a href="tqptrvector.html#at">TQPtrVector</a> <a href="ntqsocket.html#at">TQSocket</a> <a href="tqsqlquery.html#at">TQSqlQuery</a> <a href="tqsqlresult.html#at">TQSqlResult</a> <a href="ntqstring.html#at">TQString</a> <a href="tqvaluelist.html#at">TQValueList</a> <a href="tqvaluevector.html#at">TQValueVector</a><li>atBeginning: <a href="ntqmultilineedit.html#atBeginning">TQMultiLineEdit</a><li>atEnd: <a href="ntqdatastream.html#atEnd">TQDataStream</a> <a href="ntqfile.html#atEnd">TQFile</a> <a href="ntqiodevice.html#atEnd">TQIODevice</a> <a href="ntqmultilineedit.html#atEnd">TQMultiLineEdit</a> <a href="ntqsocket.html#atEnd">TQSocket</a> <a href="ntqtextstream.html#atEnd">TQTextStream</a><li>atFirst: - <a href="qasciicacheiterator.html#atFirst">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#atFirst">TQCacheIterator</a> <a href="qintcacheiterator.html#atFirst">TQIntCacheIterator</a> <a href="qptrlistiterator.html#atFirst">TQPtrListIterator</a><li>atLast: - <a href="qasciicacheiterator.html#atLast">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#atLast">TQCacheIterator</a> <a href="qintcacheiterator.html#atLast">TQIntCacheIterator</a> <a href="qptrlistiterator.html#atLast">TQPtrListIterator</a><li>attribute: + <a href="qasciicacheiterator.html#atFirst">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#atFirst">TQCacheIterator</a> <a href="qintcacheiterator.html#atFirst">TQIntCacheIterator</a> <a href="tqptrlistiterator.html#atFirst">TQPtrListIterator</a><li>atLast: + <a href="qasciicacheiterator.html#atLast">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#atLast">TQCacheIterator</a> <a href="qintcacheiterator.html#atLast">TQIntCacheIterator</a> <a href="tqptrlistiterator.html#atLast">TQPtrListIterator</a><li>attribute: <a href="tqdomelement.html#attribute">TQDomElement</a><li>attributeDecl: <a href="tqxmldeclhandler.html#attributeDecl">TQXmlDeclHandler</a><li>attributeNS: <a href="tqdomelement.html#attributeNS">TQDomElement</a><li>attributeNode: @@ -232,7 +232,7 @@ abort: <a href="ntqprogressdialog.html#autoClose">TQProgressDialog</a><li>autoCompletion: <a href="ntqcombobox.html#autoCompletion">TQComboBox</a><li>autoDefault: <a href="ntqpushbutton.html#autoDefault">TQPushButton</a><li>autoDelete: - <a href="ntqptrcollection.html#autoDelete">TQAsciiDict</a> <a href="ntqptrcollection.html#autoDelete">TQCache</a> <a href="tqdatatable.html#autoDelete">TQDataTable</a> <a href="ntqptrcollection.html#autoDelete">TQDict</a> <a href="qiconfactory.html#autoDelete">TQIconFactory</a> <a href="ntqptrcollection.html#autoDelete">TQIntDict</a> <a href="ntqnetworkprotocol.html#autoDelete">TQNetworkProtocol</a> <a href="ntqptrcollection.html#autoDelete">TQPtrCollection</a> <a href="ntqptrcollection.html#autoDelete">TQPtrDict</a> <a href="ntqptrcollection.html#autoDelete">TQPtrList</a> <a href="ntqptrqueue.html#autoDelete">TQPtrQueue</a> <a href="ntqptrstack.html#autoDelete">TQPtrStack</a> <a href="ntqptrcollection.html#autoDelete">TQPtrVector</a><li>autoEdit: + <a href="tqptrcollection.html#autoDelete">TQAsciiDict</a> <a href="tqptrcollection.html#autoDelete">TQCache</a> <a href="tqdatatable.html#autoDelete">TQDataTable</a> <a href="tqptrcollection.html#autoDelete">TQDict</a> <a href="qiconfactory.html#autoDelete">TQIconFactory</a> <a href="tqptrcollection.html#autoDelete">TQIntDict</a> <a href="ntqnetworkprotocol.html#autoDelete">TQNetworkProtocol</a> <a href="tqptrcollection.html#autoDelete">TQPtrCollection</a> <a href="tqptrcollection.html#autoDelete">TQPtrDict</a> <a href="tqptrcollection.html#autoDelete">TQPtrList</a> <a href="tqptrqueue.html#autoDelete">TQPtrQueue</a> <a href="tqptrstack.html#autoDelete">TQPtrStack</a> <a href="tqptrcollection.html#autoDelete">TQPtrVector</a><li>autoEdit: <a href="tqdatabrowser.html#autoEdit">TQDataBrowser</a> <a href="tqdatatable.html#autoEdit">TQDataTable</a><li>autoFormatting: <a href="ntqtextedit.html#autoFormatting">TQTextEdit</a><li>autoMask: <a href="tqwidget.html#autoMask">TQWidget</a><li>autoRaise: @@ -299,7 +299,7 @@ back: <a href="qcolorgroup.html#brightText">TQColorGroup</a><li>brush: <a href="tqcanvaspolygonalitem.html#brush">TQCanvasPolygonalItem</a> <a href="qcolorgroup.html#brush">TQColorGroup</a> <a href="ntqpainter.html#brush">TQPainter</a> <a href="ntqpalette.html#brush">TQPalette</a><li>brushOrigin: <a href="ntqpainter.html#brushOrigin">TQPainter</a><li>bsearch: - <a href="ntqmemarray.html#bsearch">TQMemArray</a> <a href="ntqptrvector.html#bsearch">TQPtrVector</a><li>buddy: + <a href="ntqmemarray.html#bsearch">TQMemArray</a> <a href="tqptrvector.html#bsearch">TQPtrVector</a><li>buddy: <a href="ntqlabel.html#buddy">TQLabel</a><li>buffer: <a href="ntqbuffer.html#buffer">TQBuffer</a><li>button: <a href="qcolorgroup.html#button">TQColorGroup</a> <a href="qmouseevent.html#button">TQMouseEvent</a><li>buttonSymbols: @@ -396,7 +396,7 @@ c: <a href="ntqdir.html#cleanDirPath">TQDir</a><li>cleanText: <a href="ntqspinbox.html#cleanText">TQSpinBox</a><li>cleanup: <a href="ntqcolor.html#cleanup">TQColor</a> <a href="ntqcursor.html#cleanup">TQCursor</a> <a href="qfontmanager.html#cleanup">TQFontManager</a><li>clear: - <a href="ntqaccel.html#clear">TQAccel</a> <a href="ntqasciicache.html#clear">TQAsciiCache</a> <a href="ntqasciidict.html#clear">TQAsciiDict</a> <a href="qaxbase.html#clear">TQAxBase</a> <a href="ntqcache.html#clear">TQCache</a> <a href="ntqclipboard.html#clear">TQClipboard</a> <a href="ntqcombobox.html#clear">TQComboBox</a> <a href="ntqdict.html#clear">TQDict</a> <a href="tqdomnode.html#clear">TQDomNode</a> <a href="ntqiconview.html#clear">TQIconView</a> <a href="ntqintcache.html#clear">TQIntCache</a> <a href="ntqintdict.html#clear">TQIntDict</a> <a href="ntqlabel.html#clear">TQLabel</a> <a href="ntqlineedit.html#clear">TQLineEdit</a> <a href="ntqlistbox.html#clear">TQListBox</a> <a href="ntqlistview.html#clear">TQListView</a> <a href="tqmap.html#clear">TQMap</a> <a href="ntqmenudata.html#clear">TQMenuBar</a> <a href="ntqmenudata.html#clear">TQMenuData</a> <a href="tqobjectcleanuphandler.html#clear">TQObjectCleanupHandler</a> <a href="ntqpixmapcache.html#clear">TQPixmapCache</a> <a href="ntqmenudata.html#clear">TQPopupMenu</a> <a href="ntqptrcollection.html#clear">TQPtrCollection</a> <a href="ntqptrdict.html#clear">TQPtrDict</a> <a href="ntqptrlist.html#clear">TQPtrList</a> <a href="ntqptrqueue.html#clear">TQPtrQueue</a> <a href="ntqptrstack.html#clear">TQPtrStack</a> <a href="ntqptrvector.html#clear">TQPtrVector</a> <a href="ntqsplashscreen.html#clear">TQSplashScreen</a> <a href="tqsqlcursor.html#clear">TQSqlCursor</a> <a href="tqsqlfield.html#clear">TQSqlField</a> <a href="tqsqlform.html#clear">TQSqlForm</a> <a href="tqsqlrecord.html#clear">TQSqlRecord</a> <a href="ntqstatusbar.html#clear">TQStatusBar</a> <a href="ntqtextedit.html#clear">TQTextEdit</a> <a href="ntqtoolbar.html#clear">TQToolBar</a> <a href="ntqtooltip.html#clear">TQToolTip</a> <a href="ntqtranslator.html#clear">TQTranslator</a> <a href="tqvaluelist.html#clear">TQValueList</a> <a href="tqvaluevector.html#clear">TQValueVector</a> <a href="ntqvariant.html#clear">TQVariant</a> <a href="tqxmlattributes.html#clear">TQXmlAttributes</a><li>clearArguments: + <a href="ntqaccel.html#clear">TQAccel</a> <a href="ntqasciicache.html#clear">TQAsciiCache</a> <a href="ntqasciidict.html#clear">TQAsciiDict</a> <a href="qaxbase.html#clear">TQAxBase</a> <a href="ntqcache.html#clear">TQCache</a> <a href="ntqclipboard.html#clear">TQClipboard</a> <a href="ntqcombobox.html#clear">TQComboBox</a> <a href="ntqdict.html#clear">TQDict</a> <a href="tqdomnode.html#clear">TQDomNode</a> <a href="ntqiconview.html#clear">TQIconView</a> <a href="ntqintcache.html#clear">TQIntCache</a> <a href="ntqintdict.html#clear">TQIntDict</a> <a href="ntqlabel.html#clear">TQLabel</a> <a href="ntqlineedit.html#clear">TQLineEdit</a> <a href="ntqlistbox.html#clear">TQListBox</a> <a href="ntqlistview.html#clear">TQListView</a> <a href="tqmap.html#clear">TQMap</a> <a href="ntqmenudata.html#clear">TQMenuBar</a> <a href="ntqmenudata.html#clear">TQMenuData</a> <a href="tqobjectcleanuphandler.html#clear">TQObjectCleanupHandler</a> <a href="ntqpixmapcache.html#clear">TQPixmapCache</a> <a href="ntqmenudata.html#clear">TQPopupMenu</a> <a href="tqptrcollection.html#clear">TQPtrCollection</a> <a href="tqptrdict.html#clear">TQPtrDict</a> <a href="tqptrlist.html#clear">TQPtrList</a> <a href="tqptrqueue.html#clear">TQPtrQueue</a> <a href="tqptrstack.html#clear">TQPtrStack</a> <a href="tqptrvector.html#clear">TQPtrVector</a> <a href="ntqsplashscreen.html#clear">TQSplashScreen</a> <a href="tqsqlcursor.html#clear">TQSqlCursor</a> <a href="tqsqlfield.html#clear">TQSqlField</a> <a href="tqsqlform.html#clear">TQSqlForm</a> <a href="tqsqlrecord.html#clear">TQSqlRecord</a> <a href="ntqstatusbar.html#clear">TQStatusBar</a> <a href="ntqtextedit.html#clear">TQTextEdit</a> <a href="ntqtoolbar.html#clear">TQToolBar</a> <a href="ntqtooltip.html#clear">TQToolTip</a> <a href="ntqtranslator.html#clear">TQTranslator</a> <a href="tqvaluelist.html#clear">TQValueList</a> <a href="tqvaluevector.html#clear">TQValueVector</a> <a href="ntqvariant.html#clear">TQVariant</a> <a href="tqxmlattributes.html#clear">TQXmlAttributes</a><li>clearArguments: <a href="ntqprocess.html#clearArguments">TQProcess</a><li>clearBit: <a href="ntqbitarray.html#clearBit">TQBitArray</a><li>clearCalibration: <a href="qwsmousehandler.html#clearCalibration">TQWSMouseHandler</a><li>clearCell: @@ -484,7 +484,7 @@ c: <a href="qtranslatormessage.html#commonPrefix">TQTranslatorMessage</a><li>communication: <a href="ntqprocess.html#communication">TQProcess</a><li>compare: <a href="qiconviewitem.html#compare">TQIconViewItem</a> <a href="qlistviewitem.html#compare">TQListViewItem</a> <a href="ntqstring.html#compare">TQString</a><li>compareItems: - <a href="ntqptrlist.html#compareItems">TQPtrList</a> <a href="ntqptrvector.html#compareItems">TQPtrVector</a><li>complete: + <a href="tqptrlist.html#compareItems">TQPtrList</a> <a href="tqptrvector.html#compareItems">TQPtrVector</a><li>complete: <a href="qnpstream.html#complete">TQNPStream</a><li>compose: <a href="ntqstring.html#compose">TQString</a><li>confirmCancel: <a href="tqdatabrowser.html#confirmCancel">TQDataBrowser</a> <a href="tqdatatable.html#confirmCancel">TQDataTable</a><li>confirmCancels: @@ -510,8 +510,8 @@ c: <a href="tqwidget.html#constPolish">TQWidget</a><li>constref: <a href="ntqstring.html#constref">TQString</a><li>consume: <a href="qcontextmenuevent.html#consume">TQContextMenuEvent</a><li>contains: - <a href="ntqcstring.html#contains">TQCString</a> <a href="tqdomnamednodemap.html#contains">TQDomNamedNodeMap</a> <a href="qiconviewitem.html#contains">TQIconViewItem</a> <a href="tqmap.html#contains">TQMap</a> <a href="ntqmemarray.html#contains">TQMemArray</a> <a href="ntqptrlist.html#contains">TQPtrList</a> <a href="ntqptrvector.html#contains">TQPtrVector</a> <a href="ntqrect.html#contains">TQRect</a> <a href="ntqregion.html#contains">TQRegion</a> <a href="tqsqldatabase.html#contains">TQSqlDatabase</a> <a href="tqsqlrecord.html#contains">TQSqlRecord</a> <a href="tqsqlrecordinfo.html#contains">TQSqlRecordInfo</a> <a href="ntqstring.html#contains">TQString</a> <a href="ntqtranslator.html#contains">TQTranslator</a> <a href="tqvaluelist.html#contains">TQValueList</a><li>containsRef: - <a href="ntqptrlist.html#containsRef">TQPtrList</a> <a href="ntqptrvector.html#containsRef">TQPtrVector</a><li>contentHandler: + <a href="ntqcstring.html#contains">TQCString</a> <a href="tqdomnamednodemap.html#contains">TQDomNamedNodeMap</a> <a href="qiconviewitem.html#contains">TQIconViewItem</a> <a href="tqmap.html#contains">TQMap</a> <a href="ntqmemarray.html#contains">TQMemArray</a> <a href="tqptrlist.html#contains">TQPtrList</a> <a href="tqptrvector.html#contains">TQPtrVector</a> <a href="ntqrect.html#contains">TQRect</a> <a href="ntqregion.html#contains">TQRegion</a> <a href="tqsqldatabase.html#contains">TQSqlDatabase</a> <a href="tqsqlrecord.html#contains">TQSqlRecord</a> <a href="tqsqlrecordinfo.html#contains">TQSqlRecordInfo</a> <a href="ntqstring.html#contains">TQString</a> <a href="ntqtranslator.html#contains">TQTranslator</a> <a href="tqvaluelist.html#contains">TQValueList</a><li>containsRef: + <a href="tqptrlist.html#containsRef">TQPtrList</a> <a href="tqptrvector.html#containsRef">TQPtrVector</a><li>contentHandler: <a href="tqxmlreader.html#contentHandler">TQXmlReader</a><li>contentLength: <a href="qhttpheader.html#contentLength">TQHttpHeader</a><li>contentType: <a href="qhttpheader.html#contentType">TQHttpHeader</a><li>contentsContextMenuEvent: @@ -558,7 +558,7 @@ c: <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: - <a href="ntqaccel.html#count">TQAccel</a> <a href="ntqasciicache.html#count">TQAsciiCache</a> <a href="qasciicacheiterator.html#count">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#count">TQAsciiDict</a> <a href="qasciidictiterator.html#count">TQAsciiDictIterator</a> <a href="ntqbuttongroup.html#count">TQButtonGroup</a> <a href="ntqcache.html#count">TQCache</a> <a href="qcacheiterator.html#count">TQCacheIterator</a> <a href="tqcanvaspixmaparray.html#count">TQCanvasPixmapArray</a> <a href="ntqcombobox.html#count">TQComboBox</a> <a href="qcombotableitem.html#count">TQComboTableItem</a> <a href="ntqdict.html#count">TQDict</a> <a href="qdictiterator.html#count">TQDictIterator</a> <a href="ntqdir.html#count">TQDir</a> <a href="ntqdockarea.html#count">TQDockArea</a> <a href="tqdomnamednodemap.html#count">TQDomNamedNodeMap</a> <a href="tqdomnodelist.html#count">TQDomNodeList</a> <a href="ntqfocusdata.html#count">TQFocusData</a> <a href="ntqheader.html#count">TQHeader</a> <a href="ntqiconview.html#count">TQIconView</a> <a href="ntqintcache.html#count">TQIntCache</a> <a href="qintcacheiterator.html#count">TQIntCacheIterator</a> <a href="ntqintdict.html#count">TQIntDict</a> <a href="qintdictiterator.html#count">TQIntDictIterator</a> <a href="qkeyevent.html#count">TQKeyEvent</a> <a href="ntqkeysequence.html#count">TQKeySequence</a> <a href="ntqlistbox.html#count">TQListBox</a> <a href="tqmap.html#count">TQMap</a> <a href="ntqmemarray.html#count">TQMemArray</a> <a href="ntqmenudata.html#count">TQMenuData</a> <a href="ntqptrcollection.html#count">TQPtrCollection</a> <a href="ntqptrdict.html#count">TQPtrDict</a> <a href="qptrdictiterator.html#count">TQPtrDictIterator</a> <a href="ntqptrlist.html#count">TQPtrList</a> <a href="qptrlistiterator.html#count">TQPtrListIterator</a> <a href="ntqptrqueue.html#count">TQPtrQueue</a> <a href="ntqptrstack.html#count">TQPtrStack</a> <a href="ntqptrvector.html#count">TQPtrVector</a> <a href="tqsqlform.html#count">TQSqlForm</a> <a href="tqsqlrecord.html#count">TQSqlRecord</a> <a href="ntqtabbar.html#count">TQTabBar</a> <a href="ntqtabwidget.html#count">TQTabWidget</a> <a href="ntqtoolbox.html#count">TQToolBox</a> <a href="tqvaluelist.html#count">TQValueList</a> <a href="tqvaluevector.html#count">TQValueVector</a> <a href="tqxmlattributes.html#count">TQXmlAttributes</a><li>countCf: + <a href="ntqaccel.html#count">TQAccel</a> <a href="ntqasciicache.html#count">TQAsciiCache</a> <a href="qasciicacheiterator.html#count">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#count">TQAsciiDict</a> <a href="qasciidictiterator.html#count">TQAsciiDictIterator</a> <a href="ntqbuttongroup.html#count">TQButtonGroup</a> <a href="ntqcache.html#count">TQCache</a> <a href="qcacheiterator.html#count">TQCacheIterator</a> <a href="tqcanvaspixmaparray.html#count">TQCanvasPixmapArray</a> <a href="ntqcombobox.html#count">TQComboBox</a> <a href="qcombotableitem.html#count">TQComboTableItem</a> <a href="ntqdict.html#count">TQDict</a> <a href="qdictiterator.html#count">TQDictIterator</a> <a href="ntqdir.html#count">TQDir</a> <a href="ntqdockarea.html#count">TQDockArea</a> <a href="tqdomnamednodemap.html#count">TQDomNamedNodeMap</a> <a href="tqdomnodelist.html#count">TQDomNodeList</a> <a href="ntqfocusdata.html#count">TQFocusData</a> <a href="ntqheader.html#count">TQHeader</a> <a href="ntqiconview.html#count">TQIconView</a> <a href="ntqintcache.html#count">TQIntCache</a> <a href="qintcacheiterator.html#count">TQIntCacheIterator</a> <a href="ntqintdict.html#count">TQIntDict</a> <a href="qintdictiterator.html#count">TQIntDictIterator</a> <a href="qkeyevent.html#count">TQKeyEvent</a> <a href="ntqkeysequence.html#count">TQKeySequence</a> <a href="ntqlistbox.html#count">TQListBox</a> <a href="tqmap.html#count">TQMap</a> <a href="ntqmemarray.html#count">TQMemArray</a> <a href="ntqmenudata.html#count">TQMenuData</a> <a href="tqptrcollection.html#count">TQPtrCollection</a> <a href="tqptrdict.html#count">TQPtrDict</a> <a href="tqptrdictiterator.html#count">TQPtrDictIterator</a> <a href="tqptrlist.html#count">TQPtrList</a> <a href="tqptrlistiterator.html#count">TQPtrListIterator</a> <a href="tqptrqueue.html#count">TQPtrQueue</a> <a href="tqptrstack.html#count">TQPtrStack</a> <a href="tqptrvector.html#count">TQPtrVector</a> <a href="tqsqlform.html#count">TQSqlForm</a> <a href="tqsqlrecord.html#count">TQSqlRecord</a> <a href="ntqtabbar.html#count">TQTabBar</a> <a href="ntqtabwidget.html#count">TQTabWidget</a> <a href="ntqtoolbox.html#count">TQToolBox</a> <a href="tqvaluelist.html#count">TQValueList</a> <a href="tqvaluevector.html#count">TQValueVector</a> <a href="tqxmlattributes.html#count">TQXmlAttributes</a><li>countCf: <a href="qwindowsmime.html#countCf">TQWindowsMime</a><li>countFlavors: <a href="qmacmime.html#countFlavors">TQMacMime</a><li>country: <a href="ntqlocale.html#country">TQLocale</a><li>countryToString: @@ -599,7 +599,7 @@ c: <a href="ntqpointarray.html#cubicBezier">TQPointArray</a><li>currEditCol: <a href="ntqtable.html#currEditCol">TQTable</a><li>currEditRow: <a href="ntqtable.html#currEditRow">TQTable</a><li>current: - <a href="qasciicacheiterator.html#current">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#current">TQAsciiDictIterator</a> <a href="qcacheiterator.html#current">TQCacheIterator</a> <a href="qdictiterator.html#current">TQDictIterator</a> <a href="ntqdir.html#current">TQDir</a> <a href="qglayoutiterator.html#current">TQGLayoutIterator</a> <a href="qintcacheiterator.html#current">TQIntCacheIterator</a> <a href="qintdictiterator.html#current">TQIntDictIterator</a> <a href="qlayoutiterator.html#current">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#current">TQListViewItemIterator</a> <a href="qptrdictiterator.html#current">TQPtrDictIterator</a> <a href="ntqptrlist.html#current">TQPtrList</a> <a href="qptrlistiterator.html#current">TQPtrListIterator</a> <a href="ntqptrqueue.html#current">TQPtrQueue</a> <a href="ntqptrstack.html#current">TQPtrStack</a><li>currentAlignmentChanged: + <a href="qasciicacheiterator.html#current">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#current">TQAsciiDictIterator</a> <a href="qcacheiterator.html#current">TQCacheIterator</a> <a href="qdictiterator.html#current">TQDictIterator</a> <a href="ntqdir.html#current">TQDir</a> <a href="qglayoutiterator.html#current">TQGLayoutIterator</a> <a href="qintcacheiterator.html#current">TQIntCacheIterator</a> <a href="qintdictiterator.html#current">TQIntDictIterator</a> <a href="qlayoutiterator.html#current">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#current">TQListViewItemIterator</a> <a href="tqptrdictiterator.html#current">TQPtrDictIterator</a> <a href="tqptrlist.html#current">TQPtrList</a> <a href="tqptrlistiterator.html#current">TQPtrListIterator</a> <a href="tqptrqueue.html#current">TQPtrQueue</a> <a href="tqptrstack.html#current">TQPtrStack</a><li>currentAlignmentChanged: <a href="ntqtextedit.html#currentAlignmentChanged">TQTextEdit</a><li>currentAllocContext: <a href="ntqcolor.html#currentAllocContext">TQColor</a><li>currentChanged: <a href="tqdatabrowser.html#currentChanged">TQDataBrowser</a> <a href="tqdatatable.html#currentChanged">TQDataTable</a> <a href="ntqiconview.html#currentChanged">TQIconView</a> <a href="ntqlistbox.html#currentChanged">TQListBox</a> <a href="ntqlistview.html#currentChanged">TQListView</a> <a href="ntqtabdialog.html#currentChanged">TQTabDialog</a> <a href="ntqtabwidget.html#currentChanged">TQTabWidget</a> <a href="ntqtable.html#currentChanged">TQTable</a> <a href="ntqtoolbox.html#currentChanged">TQToolBox</a><li>currentColorChanged: @@ -618,8 +618,8 @@ c: <a href="ntqftp.html#currentId">TQFtp</a> <a href="ntqhttp.html#currentId">TQHttp</a><li>currentIndex: <a href="ntqtoolbox.html#currentIndex">TQToolBox</a><li>currentItem: <a href="ntqcombobox.html#currentItem">TQComboBox</a> <a href="qcombotableitem.html#currentItem">TQComboTableItem</a> <a href="ntqiconview.html#currentItem">TQIconView</a> <a href="ntqlistbox.html#currentItem">TQListBox</a> <a href="ntqlistview.html#currentItem">TQListView</a> <a href="ntqtoolbox.html#currentItem">TQToolBox</a><li>currentKey: - <a href="qasciicacheiterator.html#currentKey">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#currentKey">TQAsciiDictIterator</a> <a href="qcacheiterator.html#currentKey">TQCacheIterator</a> <a href="qdictiterator.html#currentKey">TQDictIterator</a> <a href="qintcacheiterator.html#currentKey">TQIntCacheIterator</a> <a href="qintdictiterator.html#currentKey">TQIntDictIterator</a> <a href="qptrdictiterator.html#currentKey">TQPtrDictIterator</a><li>currentNode: - <a href="ntqptrlist.html#currentNode">TQPtrList</a><li>currentPage: + <a href="qasciicacheiterator.html#currentKey">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#currentKey">TQAsciiDictIterator</a> <a href="qcacheiterator.html#currentKey">TQCacheIterator</a> <a href="qdictiterator.html#currentKey">TQDictIterator</a> <a href="qintcacheiterator.html#currentKey">TQIntCacheIterator</a> <a href="qintdictiterator.html#currentKey">TQIntDictIterator</a> <a href="tqptrdictiterator.html#currentKey">TQPtrDictIterator</a><li>currentNode: + <a href="tqptrlist.html#currentNode">TQPtrList</a><li>currentPage: <a href="ntqtabdialog.html#currentPage">TQTabDialog</a> <a href="ntqtabwidget.html#currentPage">TQTabWidget</a> <a href="ntqwizard.html#currentPage">TQWizard</a><li>currentPageIndex: <a href="ntqtabwidget.html#currentPageIndex">TQTabWidget</a><li>currentParagraph: <a href="ntqsyntaxhighlighter.html#currentParagraph">TQSyntaxHighlighter</a><li>currentRecord: @@ -658,7 +658,7 @@ c: <a href="ntqlineedit.html#cut">TQLineEdit</a> <a href="ntqtextedit.html#cut">TQTextEdit</a><li><a name="d"></a> dark: <a href="ntqcolor.html#dark">TQColor</a> <a href="qcolorgroup.html#dark">TQColorGroup</a><li>data: - <a href="ntqclipboard.html#data">TQClipboard</a> <a href="qcustomevent.html#data">TQCustomEvent</a> <a href="tqdomcharacterdata.html#data">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#data">TQDomProcessingInstruction</a> <a href="qicondragitem.html#data">TQIconDragItem</a> <a href="tqmapconstiterator.html#data">TQMapConstIterator</a> <a href="tqmapiterator.html#data">TQMapIterator</a> <a href="ntqmemarray.html#data">TQMemArray</a> <a href="qmimesourcefactory.html#data">TQMimeSourceFactory</a> <a href="ntqnetworkprotocol.html#data">TQNetworkProtocol</a> <a href="ntqpicture.html#data">TQPicture</a> <a href="ntqptrvector.html#data">TQPtrVector</a> <a href="tqsqlresult.html#data">TQSqlResult</a> <a href="ntqurloperator.html#data">TQUrlOperator</a> <a href="tqxmlinputsource.html#data">TQXmlInputSource</a><li>dataChanged: + <a href="ntqclipboard.html#data">TQClipboard</a> <a href="qcustomevent.html#data">TQCustomEvent</a> <a href="tqdomcharacterdata.html#data">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#data">TQDomProcessingInstruction</a> <a href="qicondragitem.html#data">TQIconDragItem</a> <a href="tqmapconstiterator.html#data">TQMapConstIterator</a> <a href="tqmapiterator.html#data">TQMapIterator</a> <a href="ntqmemarray.html#data">TQMemArray</a> <a href="qmimesourcefactory.html#data">TQMimeSourceFactory</a> <a href="ntqnetworkprotocol.html#data">TQNetworkProtocol</a> <a href="ntqpicture.html#data">TQPicture</a> <a href="tqptrvector.html#data">TQPtrVector</a> <a href="tqsqlresult.html#data">TQSqlResult</a> <a href="ntqurloperator.html#data">TQUrlOperator</a> <a href="tqxmlinputsource.html#data">TQXmlInputSource</a><li>dataChanged: <a href="ntqclipboard.html#dataChanged">TQClipboard</a><li>dataReadProgress: <a href="ntqhttp.html#dataReadProgress">TQHttp</a><li>dataSendProgress: <a href="ntqhttp.html#dataSendProgress">TQHttp</a><li>dataTransferProgress: @@ -708,12 +708,12 @@ dark: <a href="ntqlayout.html#deleteAllItems">TQLayout</a><li>deleteCurrent: <a href="tqdatabrowser.html#deleteCurrent">TQDataBrowser</a> <a href="tqdatatable.html#deleteCurrent">TQDataTable</a> <a href="qlayoutiterator.html#deleteCurrent">TQLayoutIterator</a><li>deleteData: <a href="tqdomcharacterdata.html#deleteData">TQDomCharacterData</a><li>deleteItem: - <a href="ntqptrcollection.html#deleteItem">TQPtrCollection</a><li>deleteLater: + <a href="tqptrcollection.html#deleteItem">TQPtrCollection</a><li>deleteLater: <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="ntqptrqueue.html#dequeue">TQPtrQueue</a><li>descent: + <a href="tqptrqueue.html#dequeue">TQPtrQueue</a><li>descent: <a href="ntqfontmetrics.html#descent">TQFontMetrics</a><li>description: <a href="qimageio.html#description">TQImageIO</a><li>deselect: <a href="ntqlineedit.html#deselect">TQLineEdit</a><li>designable: @@ -880,7 +880,7 @@ echoMode: <a href="tqxmlcontenthandler.html#endPrefixMapping">TQXmlContentHandler</a><li>endsWith: <a href="ntqstring.html#endsWith">TQString</a><li>enforceSortOrder: <a href="qlistviewitem.html#enforceSortOrder">TQListViewItem</a><li>enqueue: - <a href="ntqptrqueue.html#enqueue">TQPtrQueue</a><li>ensureCellVisible: + <a href="tqptrqueue.html#enqueue">TQPtrQueue</a><li>ensureCellVisible: <a href="ntqgridview.html#ensureCellVisible">TQGridView</a> <a href="ntqtable.html#ensureCellVisible">TQTable</a><li>ensureCurrentVisible: <a href="ntqlistbox.html#ensureCurrentVisible">TQListBox</a><li>ensureCursorVisible: <a href="ntqtextedit.html#ensureCursorVisible">TQTextEdit</a><li>ensureItemVisible: @@ -954,11 +954,11 @@ falseText: <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="ntqptrvector.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="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="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: - <a href="ntqasciicache.html#find">TQAsciiCache</a> <a href="ntqasciidict.html#find">TQAsciiDict</a> <a href="ntqbuttongroup.html#find">TQButtonGroup</a> <a href="ntqcstring.html#find">TQCString</a> <a href="ntqcache.html#find">TQCache</a> <a href="tqdatatable.html#find">TQDataTable</a> <a href="ntqdict.html#find">TQDict</a> <a href="ntqglcolormap.html#find">TQGLColormap</a> <a href="ntqintcache.html#find">TQIntCache</a> <a href="ntqintdict.html#find">TQIntDict</a> <a href="tqmap.html#find">TQMap</a> <a href="ntqmemarray.html#find">TQMemArray</a> <a href="ntqpixmapcache.html#find">TQPixmapCache</a> <a href="ntqptrdict.html#find">TQPtrDict</a> <a href="ntqptrlist.html#find">TQPtrList</a> <a href="ntqptrvector.html#find">TQPtrVector</a> <a href="tqsqlrecordinfo.html#find">TQSqlRecordInfo</a> <a href="ntqstring.html#find">TQString</a> <a href="ntqtextedit.html#find">TQTextEdit</a> <a href="tqvaluelist.html#find">TQValueList</a> <a href="tqwidget.html#find">TQWidget</a><li>findFirstVisibleItem: + <a href="ntqasciicache.html#find">TQAsciiCache</a> <a href="ntqasciidict.html#find">TQAsciiDict</a> <a href="ntqbuttongroup.html#find">TQButtonGroup</a> <a href="ntqcstring.html#find">TQCString</a> <a href="ntqcache.html#find">TQCache</a> <a href="tqdatatable.html#find">TQDataTable</a> <a href="ntqdict.html#find">TQDict</a> <a href="ntqglcolormap.html#find">TQGLColormap</a> <a href="ntqintcache.html#find">TQIntCache</a> <a href="ntqintdict.html#find">TQIntDict</a> <a href="tqmap.html#find">TQMap</a> <a href="ntqmemarray.html#find">TQMemArray</a> <a href="ntqpixmapcache.html#find">TQPixmapCache</a> <a href="tqptrdict.html#find">TQPtrDict</a> <a href="tqptrlist.html#find">TQPtrList</a> <a href="tqptrvector.html#find">TQPtrVector</a> <a href="tqsqlrecordinfo.html#find">TQSqlRecordInfo</a> <a href="ntqstring.html#find">TQString</a> <a href="ntqtextedit.html#find">TQTextEdit</a> <a href="tqvaluelist.html#find">TQValueList</a> <a href="tqwidget.html#find">TQWidget</a><li>findFirstVisibleItem: <a href="ntqiconview.html#findFirstVisibleItem">TQIconView</a><li>findIndex: <a href="tqvaluelist.html#findIndex">TQValueList</a><li>findItem: <a href="ntqiconview.html#findItem">TQIconView</a> <a href="ntqlistbox.html#findItem">TQListBox</a> <a href="ntqlistview.html#findItem">TQListView</a> <a href="ntqmenudata.html#findItem">TQMenuData</a><li>findKey: @@ -966,16 +966,16 @@ falseText: <a href="ntqiconview.html#findLastVisibleItem">TQIconView</a><li>findMessage: <a href="ntqtranslator.html#findMessage">TQTranslator</a><li>findNearest: <a href="ntqglcolormap.html#findNearest">TQGLColormap</a><li>findNext: - <a href="ntqptrlist.html#findNext">TQPtrList</a><li>findNextRef: - <a href="ntqptrlist.html#findNextRef">TQPtrList</a><li>findProperty: + <a href="tqptrlist.html#findNext">TQPtrList</a><li>findNextRef: + <a href="tqptrlist.html#findNextRef">TQPtrList</a><li>findProperty: <a href="ntqmetaobject.html#findProperty">TQMetaObject</a><li>findRef: - <a href="ntqptrlist.html#findRef">TQPtrList</a> <a href="ntqptrvector.html#findRef">TQPtrVector</a><li>findRev: + <a href="tqptrlist.html#findRef">TQPtrList</a> <a href="tqptrvector.html#findRef">TQPtrVector</a><li>findRev: <a href="ntqcstring.html#findRev">TQCString</a> <a href="ntqstring.html#findRev">TQString</a><li>findWidget: <a href="qboxlayout.html#findWidget">TQBoxLayout</a> <a href="qgridlayout.html#findWidget">TQGridLayout</a><li>finish: <a href="ntqsplashscreen.html#finish">TQSplashScreen</a><li>finishButton: <a href="ntqwizard.html#finishButton">TQWizard</a><li>finished: <a href="qaxscript.html#finished">TQAxScript</a> <a href="ntqmovie.html#finished">TQMovie</a> <a href="ntqnetworkprotocol.html#finished">TQNetworkProtocol</a> <a href="ntqthread.html#finished">TQThread</a> <a href="ntqurloperator.html#finished">TQUrlOperator</a><li>first: - <a href="tqdatabrowser.html#first">TQDataBrowser</a> <a href="ntqfocusdata.html#first">TQFocusData</a> <a href="ntqptrlist.html#first">TQPtrList</a> <a href="tqsqlquery.html#first">TQSqlQuery</a> <a href="tqvaluelist.html#first">TQValueList</a> <a href="tqvaluevector.html#first">TQValueVector</a><li>firstChild: + <a href="tqdatabrowser.html#first">TQDataBrowser</a> <a href="ntqfocusdata.html#first">TQFocusData</a> <a href="tqptrlist.html#first">TQPtrList</a> <a href="tqsqlquery.html#first">TQSqlQuery</a> <a href="tqvaluelist.html#first">TQValueList</a> <a href="tqvaluevector.html#first">TQValueVector</a><li>firstChild: <a href="tqdomnode.html#firstChild">TQDomNode</a> <a href="ntqlistview.html#firstChild">TQListView</a> <a href="qlistviewitem.html#firstChild">TQListViewItem</a><li>firstItem: <a href="ntqiconview.html#firstItem">TQIconView</a> <a href="ntqlistbox.html#firstItem">TQListBox</a><li>firstRecordAvailable: <a href="tqdatabrowser.html#firstRecordAvailable">TQDataBrowser</a><li>fix: @@ -1060,7 +1060,7 @@ gamma: <a href="ntqtextedit.html#getCursorPosition">TQTextEdit</a><li>getDouble: <a href="ntqinputdialog.html#getDouble">TQInputDialog</a><li>getExistingDirectory: <a href="ntqfiledialog.html#getExistingDirectory">TQFileDialog</a><li>getFirst: - <a href="ntqptrlist.html#getFirst">TQPtrList</a><li>getFont: + <a href="tqptrlist.html#getFirst">TQPtrList</a><li>getFont: <a href="ntqfontdialog.html#getFont">TQFontDialog</a><li>getHsv: <a href="ntqcolor.html#getHsv">TQColor</a><li>getInteger: <a href="ntqinputdialog.html#getInteger">TQInputDialog</a><li>getItem: @@ -1068,7 +1068,7 @@ gamma: <a href="qnplugin.html#getJavaClass">TQNPlugin</a><li>getJavaEnv: <a href="qnplugin.html#getJavaEnv">TQNPlugin</a><li>getJavaPeer: <a href="qnpinstance.html#getJavaPeer">TQNPInstance</a><li>getLast: - <a href="ntqptrlist.html#getLast">TQPtrList</a><li>getLocation: + <a href="tqptrlist.html#getLast">TQPtrList</a><li>getLocation: <a href="ntqmainwindow.html#getLocation">TQMainWindow</a><li>getMIMEDescription: <a href="qnplugin.html#getMIMEDescription">TQNPlugin</a><li>getMarkedRegion: <a href="ntqmultilineedit.html#getMarkedRegion">TQMultiLineEdit</a><li>getNetworkProtocol: @@ -1165,7 +1165,7 @@ hScrollBarMode: <a href="ntqpainter.html#hasViewXForm">TQPainter</a><li>hasWorldXForm: <a href="ntqpainter.html#hasWorldXForm">TQPainter</a><li>hash: <a href="qtranslatormessage.html#hash">TQTranslatorMessage</a><li>head: - <a href="ntqhttp.html#head">TQHttp</a> <a href="ntqptrqueue.html#head">TQPtrQueue</a><li>header: + <a href="ntqhttp.html#head">TQHttp</a> <a href="tqptrqueue.html#head">TQPtrQueue</a><li>header: <a href="ntqlistview.html#header">TQListView</a><li>headerSection: <a href="qstyleoption.html#headerSection">TQStyleOption</a><li>headerWidth: <a href="ntqheader.html#headerWidth">TQHeader</a><li>height: @@ -1227,7 +1227,7 @@ icon: <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: - <a href="ntqptrlist.html#inSort">TQPtrList</a><li>inText: + <a href="tqptrlist.html#inSort">TQPtrList</a><li>inText: <a href="ntqsimplerichtext.html#inText">TQSimpleRichText</a><li>inWhatsThisMode: <a href="ntqwhatsthis.html#inWhatsThisMode">TQWhatsThis</a><li>inactive: <a href="ntqpalette.html#inactive">TQPalette</a><li>includeFile: @@ -1253,7 +1253,7 @@ icon: <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="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="ntqptrdict.html#insert">TQPtrDict</a> <a href="ntqptrlist.html#insert">TQPtrList</a> <a href="ntqptrvector.html#insert">TQPtrVector</a> <a href="tqsqlcursor.html#insert">TQSqlCursor</a> <a href="tqsqlform.html#insert">TQSqlForm</a> <a href="tqsqlpropertymap.html#insert">TQSqlPropertyMap</a> <a href="tqsqlrecord.html#insert">TQSqlRecord</a> <a href="ntqstring.html#insert">TQString</a> <a href="ntqtextedit.html#insert">TQTextEdit</a> <a href="ntqtranslator.html#insert">TQTranslator</a> <a href="tqvaluelist.html#insert">TQValueList</a> <a href="tqvaluevector.html#insert">TQValueVector</a><li>insertAfter: + <a href="ntqasciicache.html#insert">TQAsciiCache</a> <a href="ntqasciidict.html#insert">TQAsciiDict</a> <a href="ntqbuttongroup.html#insert">TQButtonGroup</a> <a href="ntqcstring.html#insert">TQCString</a> <a href="ntqcache.html#insert">TQCache</a> <a href="tqdatabrowser.html#insert">TQDataBrowser</a> <a href="ntqdict.html#insert">TQDict</a> <a href="ntqintcache.html#insert">TQIntCache</a> <a href="ntqintdict.html#insert">TQIntDict</a> <a href="ntqlineedit.html#insert">TQLineEdit</a> <a href="tqmap.html#insert">TQMap</a> <a href="ntqpixmapcache.html#insert">TQPixmapCache</a> <a href="tqptrdict.html#insert">TQPtrDict</a> <a href="tqptrlist.html#insert">TQPtrList</a> <a href="tqptrvector.html#insert">TQPtrVector</a> <a href="tqsqlcursor.html#insert">TQSqlCursor</a> <a href="tqsqlform.html#insert">TQSqlForm</a> <a href="tqsqlpropertymap.html#insert">TQSqlPropertyMap</a> <a href="tqsqlrecord.html#insert">TQSqlRecord</a> <a href="ntqstring.html#insert">TQString</a> <a href="ntqtextedit.html#insert">TQTextEdit</a> <a href="ntqtranslator.html#insert">TQTranslator</a> <a href="tqvaluelist.html#insert">TQValueList</a> <a href="tqvaluevector.html#insert">TQValueVector</a><li>insertAfter: <a href="tqdomnode.html#insertAfter">TQDomNode</a><li>insertAndMark: <a href="ntqmultilineedit.html#insertAndMark">TQMultiLineEdit</a><li>insertAt: <a href="ntqmultilineedit.html#insertAt">TQMultiLineEdit</a> <a href="ntqtextedit.html#insertAt">TQTextEdit</a><li>insertBefore: @@ -1359,7 +1359,7 @@ icon: <a href="ntqtable.html#isEditing">TQTable</a><li>isEffectEnabled: <a href="ntqapplication.html#isEffectEnabled">TQApplication</a><li>isElement: <a href="tqdomelement.html#isElement">TQDomElement</a> <a href="tqdomnode.html#isElement">TQDomNode</a><li>isEmpty: - <a href="ntqasciicache.html#isEmpty">TQAsciiCache</a> <a href="qasciicacheiterator.html#isEmpty">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#isEmpty">TQAsciiDict</a> <a href="qasciidictiterator.html#isEmpty">TQAsciiDictIterator</a> <a href="ntqcstring.html#isEmpty">TQCString</a> <a href="ntqcache.html#isEmpty">TQCache</a> <a href="qcacheiterator.html#isEmpty">TQCacheIterator</a> <a href="ntqdict.html#isEmpty">TQDict</a> <a href="qdictiterator.html#isEmpty">TQDictIterator</a> <a href="ntqdockarea.html#isEmpty">TQDockArea</a> <a href="ntqglcolormap.html#isEmpty">TQGLColormap</a> <a href="ntqintcache.html#isEmpty">TQIntCache</a> <a href="qintcacheiterator.html#isEmpty">TQIntCacheIterator</a> <a href="ntqintdict.html#isEmpty">TQIntDict</a> <a href="qintdictiterator.html#isEmpty">TQIntDictIterator</a> <a href="ntqkeysequence.html#isEmpty">TQKeySequence</a> <a href="ntqlayout.html#isEmpty">TQLayout</a> <a href="qlayoutitem.html#isEmpty">TQLayoutItem</a> <a href="tqmap.html#isEmpty">TQMap</a> <a href="ntqmemarray.html#isEmpty">TQMemArray</a> <a href="tqobjectcleanuphandler.html#isEmpty">TQObjectCleanupHandler</a> <a href="ntqptrdict.html#isEmpty">TQPtrDict</a> <a href="qptrdictiterator.html#isEmpty">TQPtrDictIterator</a> <a href="ntqptrlist.html#isEmpty">TQPtrList</a> <a href="qptrlistiterator.html#isEmpty">TQPtrListIterator</a> <a href="ntqptrqueue.html#isEmpty">TQPtrQueue</a> <a href="ntqptrstack.html#isEmpty">TQPtrStack</a> <a href="ntqptrvector.html#isEmpty">TQPtrVector</a> <a href="ntqrect.html#isEmpty">TQRect</a> <a href="ntqregexp.html#isEmpty">TQRegExp</a> <a href="ntqregion.html#isEmpty">TQRegion</a> <a href="ntqsize.html#isEmpty">TQSize</a> <a href="qspaceritem.html#isEmpty">TQSpacerItem</a> <a href="tqsqlrecord.html#isEmpty">TQSqlRecord</a> <a href="ntqstring.html#isEmpty">TQString</a> <a href="qtableselection.html#isEmpty">TQTableSelection</a> <a href="ntqtranslator.html#isEmpty">TQTranslator</a> <a href="tqvaluelist.html#isEmpty">TQValueList</a> <a href="tqvaluevector.html#isEmpty">TQValueVector</a> <a href="tqwidgetitem.html#isEmpty">TQWidgetItem</a><li>isEnabled: + <a href="ntqasciicache.html#isEmpty">TQAsciiCache</a> <a href="qasciicacheiterator.html#isEmpty">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#isEmpty">TQAsciiDict</a> <a href="qasciidictiterator.html#isEmpty">TQAsciiDictIterator</a> <a href="ntqcstring.html#isEmpty">TQCString</a> <a href="ntqcache.html#isEmpty">TQCache</a> <a href="qcacheiterator.html#isEmpty">TQCacheIterator</a> <a href="ntqdict.html#isEmpty">TQDict</a> <a href="qdictiterator.html#isEmpty">TQDictIterator</a> <a href="ntqdockarea.html#isEmpty">TQDockArea</a> <a href="ntqglcolormap.html#isEmpty">TQGLColormap</a> <a href="ntqintcache.html#isEmpty">TQIntCache</a> <a href="qintcacheiterator.html#isEmpty">TQIntCacheIterator</a> <a href="ntqintdict.html#isEmpty">TQIntDict</a> <a href="qintdictiterator.html#isEmpty">TQIntDictIterator</a> <a href="ntqkeysequence.html#isEmpty">TQKeySequence</a> <a href="ntqlayout.html#isEmpty">TQLayout</a> <a href="qlayoutitem.html#isEmpty">TQLayoutItem</a> <a href="tqmap.html#isEmpty">TQMap</a> <a href="ntqmemarray.html#isEmpty">TQMemArray</a> <a href="tqobjectcleanuphandler.html#isEmpty">TQObjectCleanupHandler</a> <a href="tqptrdict.html#isEmpty">TQPtrDict</a> <a href="tqptrdictiterator.html#isEmpty">TQPtrDictIterator</a> <a href="tqptrlist.html#isEmpty">TQPtrList</a> <a href="tqptrlistiterator.html#isEmpty">TQPtrListIterator</a> <a href="tqptrqueue.html#isEmpty">TQPtrQueue</a> <a href="tqptrstack.html#isEmpty">TQPtrStack</a> <a href="tqptrvector.html#isEmpty">TQPtrVector</a> <a href="ntqrect.html#isEmpty">TQRect</a> <a href="ntqregexp.html#isEmpty">TQRegExp</a> <a href="ntqregion.html#isEmpty">TQRegion</a> <a href="ntqsize.html#isEmpty">TQSize</a> <a href="qspaceritem.html#isEmpty">TQSpacerItem</a> <a href="tqsqlrecord.html#isEmpty">TQSqlRecord</a> <a href="ntqstring.html#isEmpty">TQString</a> <a href="qtableselection.html#isEmpty">TQTableSelection</a> <a href="ntqtranslator.html#isEmpty">TQTranslator</a> <a href="tqvaluelist.html#isEmpty">TQValueList</a> <a href="tqvaluevector.html#isEmpty">TQValueVector</a> <a href="tqwidgetitem.html#isEmpty">TQWidgetItem</a><li>isEnabled: <a href="ntqaccel.html#isEnabled">TQAccel</a> <a href="ntqaction.html#isEnabled">TQAction</a> <a href="tqcanvasitem.html#isEnabled">TQCanvasItem</a> <a href="ntqlayout.html#isEnabled">TQLayout</a> <a href="qlistviewitem.html#isEnabled">TQListViewItem</a> <a href="ntqsocketnotifier.html#isEnabled">TQSocketNotifier</a> <a href="qtab.html#isEnabled">TQTab</a> <a href="qtableitem.html#isEnabled">TQTableItem</a> <a href="tqwidget.html#isEnabled">TQWidget</a><li>isEnabledTo: <a href="tqwidget.html#isEnabledTo">TQWidget</a><li>isEntity: <a href="tqdomentity.html#isEntity">TQDomEntity</a> <a href="tqdomnode.html#isEntity">TQDomNode</a><li>isEntityReference: @@ -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="ntqptrvector.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="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="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: @@ -1533,7 +1533,7 @@ label: <a href="ntqprogressdialog.html#labelText">TQProgressDialog</a><li>language: <a href="ntqlocale.html#language">TQLocale</a><li>languageToString: <a href="ntqlocale.html#languageToString">TQLocale</a><li>last: - <a href="tqdatabrowser.html#last">TQDataBrowser</a> <a href="ntqfocusdata.html#last">TQFocusData</a> <a href="ntqptrlist.html#last">TQPtrList</a> <a href="tqsqlquery.html#last">TQSqlQuery</a> <a href="tqvaluelist.html#last">TQValueList</a> <a href="tqvaluevector.html#last">TQValueVector</a><li>lastChild: + <a href="tqdatabrowser.html#last">TQDataBrowser</a> <a href="ntqfocusdata.html#last">TQFocusData</a> <a href="tqptrlist.html#last">TQPtrList</a> <a href="tqsqlquery.html#last">TQSqlQuery</a> <a href="tqvaluelist.html#last">TQValueList</a> <a href="tqvaluevector.html#last">TQValueVector</a><li>lastChild: <a href="tqdomnode.html#lastChild">TQDomNode</a><li>lastError: <a href="tqsqldatabase.html#lastError">TQSqlDatabase</a> <a href="tqsqldriver.html#lastError">TQSqlDriver</a> <a href="tqsqlquery.html#lastError">TQSqlQuery</a> <a href="tqsqlresult.html#lastError">TQSqlResult</a><li>lastItem: <a href="ntqiconview.html#lastItem">TQIconView</a> <a href="ntqlistview.html#lastItem">TQListView</a><li>lastModified: @@ -1787,13 +1787,13 @@ name: <a href="ntqnetworkprotocol.html#newChildren">TQNetworkProtocol</a> <a href="ntqurloperator.html#newChildren">TQUrlOperator</a><li>newConnection: <a href="ntqserversocket.html#newConnection">TQServerSocket</a><li>newInstance: <a href="qnplugin.html#newInstance">TQNPlugin</a><li>newItem: - <a href="ntqptrcollection.html#newItem">TQPtrCollection</a><li>newLine: + <a href="tqptrcollection.html#newItem">TQPtrCollection</a><li>newLine: <a href="ntqdockwindow.html#newLine">TQDockWindow</a> <a href="ntqmultilineedit.html#newLine">TQMultiLineEdit</a><li>newPage: <a href="ntqprinter.html#newPage">TQPrinter</a><li>newStream: <a href="qnpinstance.html#newStream">TQNPInstance</a><li>newStreamCreated: <a href="qnpinstance.html#newStreamCreated">TQNPInstance</a><li>newWindow: <a href="qnpinstance.html#newWindow">TQNPInstance</a><li>next: - <a href="tqdatabrowser.html#next">TQDataBrowser</a> <a href="ntqfocusdata.html#next">TQFocusData</a> <a href="qglayoutiterator.html#next">TQGLayoutIterator</a> <a href="qlistboxitem.html#next">TQListBoxItem</a> <a href="ntqptrlist.html#next">TQPtrList</a> <a href="tqsqlquery.html#next">TQSqlQuery</a> <a href="ntqwizard.html#next">TQWizard</a> <a href="tqxmlinputsource.html#next">TQXmlInputSource</a><li>nextButton: + <a href="tqdatabrowser.html#next">TQDataBrowser</a> <a href="ntqfocusdata.html#next">TQFocusData</a> <a href="qglayoutiterator.html#next">TQGLayoutIterator</a> <a href="qlistboxitem.html#next">TQListBoxItem</a> <a href="tqptrlist.html#next">TQPtrList</a> <a href="tqsqlquery.html#next">TQSqlQuery</a> <a href="ntqwizard.html#next">TQWizard</a> <a href="tqxmlinputsource.html#next">TQXmlInputSource</a><li>nextButton: <a href="ntqwizard.html#nextButton">TQWizard</a><li>nextItem: <a href="qiconviewitem.html#nextItem">TQIconViewItem</a><li>nextLine: <a href="ntqscrollbar.html#nextLine">TQScrollBar</a><li>nextPage: @@ -1875,32 +1875,32 @@ object: <a href="ntqmemarray.html#operator-const-type-*">TQMemArray</a><li>operator int: <a href="qbitval.html#operator-int">TQBitVal</a><li>operator std::string: <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="qptrdictiterator.html#operator-type-*">TQPtrDictIterator</a> <a href="qptrlistiterator.html#operator-type-*">TQPtrListIterator</a> <a href="ntqptrqueue.html#operator-type-*">TQPtrQueue</a> <a href="ntqptrstack.html#operator-type-*">TQPtrStack</a><li>operator!: + <a href="qasciicacheiterator.html#operator-type-*">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator-type-*">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator-type-*">TQCacheIterator</a> <a href="qdictiterator.html#operator-type-*">TQDictIterator</a> <a href="qintcacheiterator.html#operator-type-*">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator-type-*">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator-type-*">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator-type-*">TQPtrListIterator</a> <a href="tqptrqueue.html#operator-type-*">TQPtrQueue</a> <a href="tqptrstack.html#operator-type-*">TQPtrStack</a><li>operator!: <a href="ntqstring.html#operator!">TQString</a><li>operator!=: - <a href="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="ntqptrlist.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="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="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="qptrdictiterator.html#operator()">TQPtrDictIterator</a> <a href="qptrlistiterator.html#operator()">TQPtrListIterator</a><li>operator*: - <a href="ntqguardedptr.html#operator*">TQGuardedPtr</a> <a href="qlistviewitemiterator.html#operator*">TQListViewItemIterator</a> <a href="tqmapconstiterator.html#operator*">TQMapConstIterator</a> <a href="tqmapiterator.html#operator*">TQMapIterator</a> <a href="ntqpoint.html#operator*">TQPoint</a> <a href="qptrlistiterator.html#operator*">TQPtrListIterator</a> <a href="ntqsize.html#operator*">TQSize</a> <a href="tqvaluelistconstiterator.html#operator*">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator*">TQValueListIterator</a><li>operator*=: + <a href="qasciicacheiterator.html#operator()">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator()">TQAsciiDictIterator</a> <a href="qcacheiterator.html#operator()">TQCacheIterator</a> <a href="qdictiterator.html#operator()">TQDictIterator</a> <a href="qintcacheiterator.html#operator()">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator()">TQIntDictIterator</a> <a href="tqptrdictiterator.html#operator()">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator()">TQPtrListIterator</a><li>operator*: + <a href="ntqguardedptr.html#operator*">TQGuardedPtr</a> <a href="qlistviewitemiterator.html#operator*">TQListViewItemIterator</a> <a href="tqmapconstiterator.html#operator*">TQMapConstIterator</a> <a href="tqmapiterator.html#operator*">TQMapIterator</a> <a href="ntqpoint.html#operator*">TQPoint</a> <a href="tqptrlistiterator.html#operator*">TQPtrListIterator</a> <a href="ntqsize.html#operator*">TQSize</a> <a href="tqvaluelistconstiterator.html#operator*">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator*">TQValueListIterator</a><li>operator*=: <a href="ntqpoint.html#operator*-eq">TQPoint</a> <a href="ntqsize.html#operator*-eq">TQSize</a> <a href="ntqwmatrix.html#operator*-eq">TQWMatrix</a><li>operator+: <a href="ntqcstring.html#operator+">TQCString</a> <a href="tqcanvasitemlist.html#operator+">TQCanvasItemList</a> <a href="ntqpoint.html#operator+">TQPoint</a> <a href="ntqregion.html#operator+">TQRegion</a> <a href="ntqsize.html#operator+">TQSize</a> <a href="ntqstring.html#operator+">TQString</a> <a href="tqvaluelist.html#operator+">TQValueList</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="qlayoutiterator.html#operator++">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator++">TQListViewItemIterator</a> <a href="tqmapconstiterator.html#operator++">TQMapConstIterator</a> <a href="tqmapiterator.html#operator++">TQMapIterator</a> <a href="qptrdictiterator.html#operator++">TQPtrDictIterator</a> <a href="qptrlistiterator.html#operator++">TQPtrListIterator</a> <a href="ntqsemaphore.html#operator++">TQSemaphore</a> <a href="tqvaluelistconstiterator.html#operator++">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator++">TQValueListIterator</a><li>operator+=: - <a href="qasciicacheiterator.html#operator+-eq">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator+-eq">TQAsciiDictIterator</a> <a href="ntqcstring.html#operator+-eq">TQCString</a> <a href="qcacheiterator.html#operator+-eq">TQCacheIterator</a> <a href="qintcacheiterator.html#operator+-eq">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator+-eq">TQIntDictIterator</a> <a href="qlistviewitemiterator.html#operator+-eq">TQListViewItemIterator</a> <a href="ntqpoint.html#operator+-eq">TQPoint</a> <a href="qptrdictiterator.html#operator+-eq">TQPtrDictIterator</a> <a href="qptrlistiterator.html#operator+-eq">TQPtrListIterator</a> <a href="ntqregion.html#operator+-eq">TQRegion</a> <a href="ntqsemaphore.html#operator+-eq">TQSemaphore</a> <a href="ntqsize.html#operator+-eq">TQSize</a> <a href="ntqstring.html#operator+-eq">TQString</a> <a href="tqvaluelist.html#operator+-eq">TQValueList</a> <a href="tqvaluelistiterator.html#operator+-eq">TQValueListIterator</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="qlayoutiterator.html#operator++">TQLayoutIterator</a> <a href="qlistviewitemiterator.html#operator++">TQListViewItemIterator</a> <a href="tqmapconstiterator.html#operator++">TQMapConstIterator</a> <a href="tqmapiterator.html#operator++">TQMapIterator</a> <a href="tqptrdictiterator.html#operator++">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator++">TQPtrListIterator</a> <a href="ntqsemaphore.html#operator++">TQSemaphore</a> <a href="tqvaluelistconstiterator.html#operator++">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator++">TQValueListIterator</a><li>operator+=: + <a href="qasciicacheiterator.html#operator+-eq">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#operator+-eq">TQAsciiDictIterator</a> <a href="ntqcstring.html#operator+-eq">TQCString</a> <a href="qcacheiterator.html#operator+-eq">TQCacheIterator</a> <a href="qintcacheiterator.html#operator+-eq">TQIntCacheIterator</a> <a href="qintdictiterator.html#operator+-eq">TQIntDictIterator</a> <a href="qlistviewitemiterator.html#operator+-eq">TQListViewItemIterator</a> <a href="ntqpoint.html#operator+-eq">TQPoint</a> <a href="tqptrdictiterator.html#operator+-eq">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#operator+-eq">TQPtrListIterator</a> <a href="ntqregion.html#operator+-eq">TQRegion</a> <a href="ntqsemaphore.html#operator+-eq">TQSemaphore</a> <a href="ntqsize.html#operator+-eq">TQSize</a> <a href="ntqstring.html#operator+-eq">TQString</a> <a href="tqvaluelist.html#operator+-eq">TQValueList</a> <a href="tqvaluelistiterator.html#operator+-eq">TQValueListIterator</a><li>operator-: <a href="ntqpoint.html#operator-">TQPoint</a> <a href="ntqregion.html#operator-">TQRegion</a> <a href="ntqsize.html#operator-">TQSize</a><li>operator--: - <a href="qasciicacheiterator.html#operator--">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#operator--">TQCacheIterator</a> <a href="qintcacheiterator.html#operator--">TQIntCacheIterator</a> <a href="qlistviewitemiterator.html#operator--">TQListViewItemIterator</a> <a href="tqmapconstiterator.html#operator--">TQMapConstIterator</a> <a href="tqmapiterator.html#operator--">TQMapIterator</a> <a href="qptrlistiterator.html#operator--">TQPtrListIterator</a> <a href="ntqsemaphore.html#operator--">TQSemaphore</a> <a href="tqvaluelistconstiterator.html#operator--">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator--">TQValueListIterator</a><li>operator-=: - <a href="qasciicacheiterator.html#operator--eq">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#operator--eq">TQCacheIterator</a> <a href="qintcacheiterator.html#operator--eq">TQIntCacheIterator</a> <a href="qlistviewitemiterator.html#operator--eq">TQListViewItemIterator</a> <a href="ntqpoint.html#operator--eq">TQPoint</a> <a href="qptrlistiterator.html#operator--eq">TQPtrListIterator</a> <a href="ntqregion.html#operator--eq">TQRegion</a> <a href="ntqsemaphore.html#operator--eq">TQSemaphore</a> <a href="ntqsize.html#operator--eq">TQSize</a> <a href="tqvaluelistiterator.html#operator--eq">TQValueListIterator</a><li>operator->: + <a href="qasciicacheiterator.html#operator--">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#operator--">TQCacheIterator</a> <a href="qintcacheiterator.html#operator--">TQIntCacheIterator</a> <a href="qlistviewitemiterator.html#operator--">TQListViewItemIterator</a> <a href="tqmapconstiterator.html#operator--">TQMapConstIterator</a> <a href="tqmapiterator.html#operator--">TQMapIterator</a> <a href="tqptrlistiterator.html#operator--">TQPtrListIterator</a> <a href="ntqsemaphore.html#operator--">TQSemaphore</a> <a href="tqvaluelistconstiterator.html#operator--">TQValueListConstIterator</a> <a href="tqvaluelistiterator.html#operator--">TQValueListIterator</a><li>operator-=: + <a href="qasciicacheiterator.html#operator--eq">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#operator--eq">TQCacheIterator</a> <a href="qintcacheiterator.html#operator--eq">TQIntCacheIterator</a> <a href="qlistviewitemiterator.html#operator--eq">TQListViewItemIterator</a> <a href="ntqpoint.html#operator--eq">TQPoint</a> <a href="tqptrlistiterator.html#operator--eq">TQPtrListIterator</a> <a href="ntqregion.html#operator--eq">TQRegion</a> <a href="ntqsemaphore.html#operator--eq">TQSemaphore</a> <a href="ntqsize.html#operator--eq">TQSize</a> <a href="tqvaluelistiterator.html#operator--eq">TQValueListIterator</a><li>operator->: <a href="ntqguardedptr.html#operator--gt">TQGuardedPtr</a><li>operator/: <a href="ntqpoint.html#operator/">TQPoint</a> <a href="ntqsize.html#operator/">TQSize</a><li>operator/=: <a href="ntqpoint.html#operator/-eq">TQPoint</a> <a href="ntqsize.html#operator/-eq">TQSize</a><li>operator<: <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="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="ntqptrdict.html#operator-eq">TQPtrDict</a> <a href="ntqptrlist.html#operator-eq">TQPtrList</a> <a href="qptrlistiterator.html#operator-eq">TQPtrListIterator</a> <a href="ntqptrqueue.html#operator-eq">TQPtrQueue</a> <a href="ntqptrstack.html#operator-eq">TQPtrStack</a> <a href="ntqptrvector.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="ntqptrlist.html#operator-eq-eq">TQPtrList</a> <a href="ntqptrvector.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="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="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="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="ntqptrdict.html#operator[]">TQPtrDict</a> <a href="ntqptrvector.html#operator[]">TQPtrVector</a> <a href="ntqstring.html#operator[]">TQString</a> <a href="tqvaluelist.html#operator[]">TQValueList</a> <a href="tqvaluevector.html#operator[]">TQValueVector</a><li>operator^: + <a href="ntqasciicache.html#operator[]">TQAsciiCache</a> <a href="ntqasciidict.html#operator[]">TQAsciiDict</a> <a href="ntqbitarray.html#operator[]">TQBitArray</a> <a href="ntqcache.html#operator[]">TQCache</a> <a href="ntqdict.html#operator[]">TQDict</a> <a href="ntqdir.html#operator[]">TQDir</a> <a href="ntqintcache.html#operator[]">TQIntCache</a> <a href="ntqintdict.html#operator[]">TQIntDict</a> <a href="ntqkeysequence.html#operator[]">TQKeySequence</a> <a href="tqmap.html#operator[]">TQMap</a> <a href="ntqmemarray.html#operator[]">TQMemArray</a> <a href="tqptrdict.html#operator[]">TQPtrDict</a> <a href="tqptrvector.html#operator[]">TQPtrVector</a> <a href="ntqstring.html#operator[]">TQString</a> <a href="tqvaluelist.html#operator[]">TQValueList</a> <a href="tqvaluevector.html#operator[]">TQValueVector</a><li>operator^: <a href="ntqbitarray.html#operator^">TQBitArray</a> <a href="ntqregion.html#operator^">TQRegion</a><li>operator^=: <a href="ntqbitarray.html#operator^-eq">TQBitArray</a> <a href="ntqregion.html#operator^-eq">TQRegion</a><li>operator|: <a href="ntqbitarray.html#operator|">TQBitArray</a> <a href="ntqrect.html#operator|">TQRect</a> <a href="ntqregion.html#operator|">TQRegion</a><li>operator|=: @@ -2011,7 +2011,7 @@ packImage: <a href="tqcanvaspolygon.html#points">TQCanvasPolygon</a><li>polish: <a href="ntqapplication.html#polish">TQApplication</a> <a href="ntqstyle.html#polish">TQStyle</a> <a href="tqwidget.html#polish">TQWidget</a><li>polishPopupMenu: <a href="ntqstyle.html#polishPopupMenu">TQStyle</a><li>pop: - <a href="ntqptrstack.html#pop">TQPtrStack</a> <a href="tqvaluestack.html#pop">TQValueStack</a><li>popContext: + <a href="tqptrstack.html#pop">TQPtrStack</a> <a href="tqvaluestack.html#pop">TQValueStack</a><li>popContext: <a href="tqxmlnamespacesupport.html#popContext">TQXmlNamespaceSupport</a><li>pop_back: <a href="tqvaluelist.html#pop_back">TQValueList</a> <a href="tqvaluevector.html#pop_back">TQValueVector</a><li>pop_front: <a href="tqvaluelist.html#pop_front">TQValueList</a><li>popup: @@ -2028,10 +2028,10 @@ packImage: <a href="tqdomnode.html#prefix">TQDomNode</a> <a href="ntqspinbox.html#prefix">TQSpinBox</a> <a href="tqxmlnamespacesupport.html#prefix">TQXmlNamespaceSupport</a><li>prefixes: <a href="tqxmlnamespacesupport.html#prefixes">TQXmlNamespaceSupport</a><li>prepare: <a href="tqsqlquery.html#prepare">TQSqlQuery</a><li>prepend: - <a href="ntqcstring.html#prepend">TQCString</a> <a href="ntqptrlist.html#prepend">TQPtrList</a> <a href="ntqstring.html#prepend">TQString</a> <a href="tqvaluelist.html#prepend">TQValueList</a><li>pressed: + <a href="ntqcstring.html#prepend">TQCString</a> <a href="tqptrlist.html#prepend">TQPtrList</a> <a href="ntqstring.html#prepend">TQString</a> <a href="tqvaluelist.html#prepend">TQValueList</a><li>pressed: <a href="ntqbutton.html#pressed">TQButton</a> <a href="ntqbuttongroup.html#pressed">TQButtonGroup</a> <a href="ntqbutton.html#pressed">TQCheckBox</a> <a href="ntqheader.html#pressed">TQHeader</a> <a href="ntqiconview.html#pressed">TQIconView</a> <a href="ntqlistbox.html#pressed">TQListBox</a> <a href="ntqlistview.html#pressed">TQListView</a> <a href="ntqbutton.html#pressed">TQPushButton</a> <a href="ntqbutton.html#pressed">TQRadioButton</a> <a href="ntqtable.html#pressed">TQTable</a><li>pressure: <a href="qtabletevent.html#pressure">TQTabletEvent</a><li>prev: - <a href="tqdatabrowser.html#prev">TQDataBrowser</a> <a href="ntqfocusdata.html#prev">TQFocusData</a> <a href="qlistboxitem.html#prev">TQListBoxItem</a> <a href="ntqptrlist.html#prev">TQPtrList</a> <a href="tqsqlquery.html#prev">TQSqlQuery</a><li>prevItem: + <a href="tqdatabrowser.html#prev">TQDataBrowser</a> <a href="ntqfocusdata.html#prev">TQFocusData</a> <a href="qlistboxitem.html#prev">TQListBoxItem</a> <a href="tqptrlist.html#prev">TQPtrList</a> <a href="tqsqlquery.html#prev">TQSqlQuery</a><li>prevItem: <a href="qiconviewitem.html#prevItem">TQIconViewItem</a><li>prevLine: <a href="ntqscrollbar.html#prevLine">TQScrollBar</a><li>prevPage: <a href="ntqscrollbar.html#prevPage">TQScrollBar</a><li>prevRecordAvailable: @@ -2068,7 +2068,7 @@ packImage: <a href="qnetworkoperation.html#protocolDetail">TQNetworkOperation</a><li>provides: <a href="qdropevent.html#provides">TQDropEvent</a> <a href="qmimesource.html#provides">TQMimeSource</a><li>publicId: <a href="tqdomdocumenttype.html#publicId">TQDomDocumentType</a> <a href="tqdomentity.html#publicId">TQDomEntity</a> <a href="tqdomnotation.html#publicId">TQDomNotation</a> <a href="tqxmlparseexception.html#publicId">TQXmlParseException</a><li>push: - <a href="ntqptrstack.html#push">TQPtrStack</a> <a href="tqvaluestack.html#push">TQValueStack</a><li>pushContext: + <a href="tqptrstack.html#push">TQPtrStack</a> <a href="tqvaluestack.html#push">TQValueStack</a><li>pushContext: <a href="tqxmlnamespacesupport.html#pushContext">TQXmlNamespaceSupport</a><li>pushData: <a href="ntqmovie.html#pushData">TQMovie</a><li>pushSpace: <a href="ntqmovie.html#pushSpace">TQMovie</a><li>push_back: @@ -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="ntqptrdict.html#read">TQPtrDict</a> <a href="ntqptrlist.html#read">TQPtrList</a> <a href="ntqptrqueue.html#read">TQPtrQueue</a> <a href="ntqptrstack.html#read">TQPtrStack</a> <a href="ntqptrvector.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="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="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: @@ -2211,7 +2211,7 @@ rBottom: <a href="tqwidget.html#releaseMouse">TQWidget</a><li>released: <a href="ntqbutton.html#released">TQButton</a> <a href="ntqbuttongroup.html#released">TQButtonGroup</a> <a href="ntqbutton.html#released">TQCheckBox</a> <a href="ntqheader.html#released">TQHeader</a> <a href="ntqbutton.html#released">TQPushButton</a> <a href="ntqbutton.html#released">TQRadioButton</a><li>reload: <a href="ntqtextbrowser.html#reload">TQTextBrowser</a><li>remove: - <a href="ntqasciicache.html#remove">TQAsciiCache</a> <a href="ntqasciidict.html#remove">TQAsciiDict</a> <a href="ntqbuttongroup.html#remove">TQButtonGroup</a> <a href="ntqcstring.html#remove">TQCString</a> <a href="ntqcache.html#remove">TQCache</a> <a href="ntqdict.html#remove">TQDict</a> <a href="ntqdir.html#remove">TQDir</a> <a href="ntqfile.html#remove">TQFile</a> <a href="ntqftp.html#remove">TQFtp</a> <a href="ntqintcache.html#remove">TQIntCache</a> <a href="ntqintdict.html#remove">TQIntDict</a> <a href="ntqlayout.html#remove">TQLayout</a> <a href="tqmap.html#remove">TQMap</a> <a href="tqobjectcleanuphandler.html#remove">TQObjectCleanupHandler</a> <a href="ntqpixmapcache.html#remove">TQPixmapCache</a> <a href="ntqptrdict.html#remove">TQPtrDict</a> <a href="ntqptrlist.html#remove">TQPtrList</a> <a href="ntqptrqueue.html#remove">TQPtrQueue</a> <a href="ntqptrstack.html#remove">TQPtrStack</a> <a href="ntqptrvector.html#remove">TQPtrVector</a> <a href="tqsqlcursor.html#remove">TQSqlCursor</a> <a href="tqsqlform.html#remove">TQSqlForm</a> <a href="tqsqlpropertymap.html#remove">TQSqlPropertyMap</a> <a href="tqsqlrecord.html#remove">TQSqlRecord</a> <a href="ntqstring.html#remove">TQString</a> <a href="ntqtooltip.html#remove">TQToolTip</a> <a href="ntqtranslator.html#remove">TQTranslator</a> <a href="ntqurloperator.html#remove">TQUrlOperator</a> <a href="tqvaluelist.html#remove">TQValueList</a> <a href="ntqwhatsthis.html#remove">TQWhatsThis</a><li>removeAttribute: + <a href="ntqasciicache.html#remove">TQAsciiCache</a> <a href="ntqasciidict.html#remove">TQAsciiDict</a> <a href="ntqbuttongroup.html#remove">TQButtonGroup</a> <a href="ntqcstring.html#remove">TQCString</a> <a href="ntqcache.html#remove">TQCache</a> <a href="ntqdict.html#remove">TQDict</a> <a href="ntqdir.html#remove">TQDir</a> <a href="ntqfile.html#remove">TQFile</a> <a href="ntqftp.html#remove">TQFtp</a> <a href="ntqintcache.html#remove">TQIntCache</a> <a href="ntqintdict.html#remove">TQIntDict</a> <a href="ntqlayout.html#remove">TQLayout</a> <a href="tqmap.html#remove">TQMap</a> <a href="tqobjectcleanuphandler.html#remove">TQObjectCleanupHandler</a> <a href="ntqpixmapcache.html#remove">TQPixmapCache</a> <a href="tqptrdict.html#remove">TQPtrDict</a> <a href="tqptrlist.html#remove">TQPtrList</a> <a href="tqptrqueue.html#remove">TQPtrQueue</a> <a href="tqptrstack.html#remove">TQPtrStack</a> <a href="tqptrvector.html#remove">TQPtrVector</a> <a href="tqsqlcursor.html#remove">TQSqlCursor</a> <a href="tqsqlform.html#remove">TQSqlForm</a> <a href="tqsqlpropertymap.html#remove">TQSqlPropertyMap</a> <a href="tqsqlrecord.html#remove">TQSqlRecord</a> <a href="ntqstring.html#remove">TQString</a> <a href="ntqtooltip.html#remove">TQToolTip</a> <a href="ntqtranslator.html#remove">TQTranslator</a> <a href="ntqurloperator.html#remove">TQUrlOperator</a> <a href="tqvaluelist.html#remove">TQValueList</a> <a href="ntqwhatsthis.html#remove">TQWhatsThis</a><li>removeAttribute: <a href="tqdomelement.html#removeAttribute">TQDomElement</a><li>removeAttributeNS: <a href="tqdomelement.html#removeAttributeNS">TQDomElement</a><li>removeAttributeNode: <a href="tqdomelement.html#removeAttributeNode">TQDomElement</a><li>removeChild: @@ -2223,22 +2223,22 @@ rBottom: <a href="ntqsettings.html#removeEntry">TQSettings</a><li>removeEventFilter: <a href="tqobject.html#removeEventFilter">TQObject</a><li>removeFactory: <a href="qmimesourcefactory.html#removeFactory">TQMimeSourceFactory</a><li>removeFirst: - <a href="ntqptrlist.html#removeFirst">TQPtrList</a><li>removeFrom: + <a href="tqptrlist.html#removeFirst">TQPtrList</a><li>removeFrom: <a href="ntqaction.html#removeFrom">TQAction</a><li>removeItem: <a href="ntqaccel.html#removeItem">TQAccel</a> <a href="ntqcombobox.html#removeItem">TQComboBox</a> <a href="ntqlayout.html#removeItem">TQLayout</a> <a href="ntqlistbox.html#removeItem">TQListBox</a> <a href="ntqmenudata.html#removeItem">TQMenuBar</a> <a href="ntqmenudata.html#removeItem">TQMenuData</a> <a href="ntqmenudata.html#removeItem">TQPopupMenu</a> <a href="ntqtoolbox.html#removeItem">TQToolBox</a><li>removeItemAt: <a href="ntqmenudata.html#removeItemAt">TQMenuData</a> <a href="ntqmenudata.html#removeItemAt">TQPopupMenu</a><li>removeLabel: <a href="ntqheader.html#removeLabel">TQHeader</a><li>removeLast: - <a href="ntqptrlist.html#removeLast">TQPtrList</a><li>removeLibraryPath: + <a href="tqptrlist.html#removeLast">TQPtrList</a><li>removeLibraryPath: <a href="ntqapplication.html#removeLibraryPath">TQApplication</a><li>removeLine: <a href="ntqmultilineedit.html#removeLine">TQMultiLineEdit</a><li>removeMappings: <a href="ntqsignalmapper.html#removeMappings">TQSignalMapper</a><li>removeNamedItem: <a href="tqdomnamednodemap.html#removeNamedItem">TQDomNamedNodeMap</a><li>removeNamedItemNS: <a href="tqdomnamednodemap.html#removeNamedItemNS">TQDomNamedNodeMap</a><li>removeNode: - <a href="ntqptrlist.html#removeNode">TQPtrList</a><li>removePage: + <a href="tqptrlist.html#removeNode">TQPtrList</a><li>removePage: <a href="ntqtabdialog.html#removePage">TQTabDialog</a> <a href="ntqtabwidget.html#removePage">TQTabWidget</a> <a href="ntqwizard.html#removePage">TQWizard</a><li>removeParagraph: <a href="ntqtextedit.html#removeParagraph">TQTextEdit</a><li>removePostedEvents: <a href="ntqapplication.html#removePostedEvents">TQApplication</a><li>removeRef: - <a href="ntqptrlist.html#removeRef">TQPtrList</a><li>removeRenameBox: + <a href="tqptrlist.html#removeRef">TQPtrList</a><li>removeRenameBox: <a href="qiconviewitem.html#removeRenameBox">TQIconViewItem</a><li>removeRow: <a href="ntqtable.html#removeRow">TQTable</a><li>removeRows: <a href="ntqtable.html#removeRows">TQTable</a><li>removeSearchPath: @@ -2268,7 +2268,7 @@ rBottom: <a href="ntqiconview.html#repaintSelectedItems">TQIconView</a><li>repaintSelections: <a href="ntqtable.html#repaintSelections">TQTable</a><li>reparent: <a href="tqwidget.html#reparent">TQWidget</a><li>replace: - <a href="ntqasciidict.html#replace">TQAsciiDict</a> <a href="ntqcstring.html#replace">TQCString</a> <a href="ntqdict.html#replace">TQDict</a> <a href="ntqintdict.html#replace">TQIntDict</a> <a href="tqmap.html#replace">TQMap</a> <a href="ntqptrdict.html#replace">TQPtrDict</a> <a href="ntqptrlist.html#replace">TQPtrList</a> <a href="ntqstring.html#replace">TQString</a><li>replaceChild: + <a href="ntqasciidict.html#replace">TQAsciiDict</a> <a href="ntqcstring.html#replace">TQCString</a> <a href="ntqdict.html#replace">TQDict</a> <a href="ntqintdict.html#replace">TQIntDict</a> <a href="tqmap.html#replace">TQMap</a> <a href="tqptrdict.html#replace">TQPtrDict</a> <a href="tqptrlist.html#replace">TQPtrList</a> <a href="ntqstring.html#replace">TQString</a><li>replaceChild: <a href="tqdomnode.html#replaceChild">TQDomNode</a><li>replaceData: <a href="tqdomcharacterdata.html#replaceData">TQDomCharacterData</a><li>reportError: <a href="qaxbindable.html#reportError">TQAxBindable</a><li>request: @@ -2289,7 +2289,7 @@ rBottom: <a href="qfocusevent.html#resetReason">TQFocusEvent</a><li>resetStatus: <a href="ntqiodevice.html#resetStatus">TQIODevice</a><li>resetXForm: <a href="ntqpainter.html#resetXForm">TQPainter</a><li>resize: - <a href="ntqasciidict.html#resize">TQAsciiDict</a> <a href="ntqbitarray.html#resize">TQBitArray</a> <a href="ntqcstring.html#resize">TQCString</a> <a href="tqcanvas.html#resize">TQCanvas</a> <a href="ntqdict.html#resize">TQDict</a> <a href="ntqintdict.html#resize">TQIntDict</a> <a href="ntqmemarray.html#resize">TQMemArray</a> <a href="ntqpixmap.html#resize">TQPixmap</a> <a href="ntqptrdict.html#resize">TQPtrDict</a> <a href="ntqptrvector.html#resize">TQPtrVector</a> <a href="tqvaluevector.html#resize">TQValueVector</a> <a href="tqwidget.html#resize">TQWidget</a><li>resizeContents: + <a href="ntqasciidict.html#resize">TQAsciiDict</a> <a href="ntqbitarray.html#resize">TQBitArray</a> <a href="ntqcstring.html#resize">TQCString</a> <a href="tqcanvas.html#resize">TQCanvas</a> <a href="ntqdict.html#resize">TQDict</a> <a href="ntqintdict.html#resize">TQIntDict</a> <a href="ntqmemarray.html#resize">TQMemArray</a> <a href="ntqpixmap.html#resize">TQPixmap</a> <a href="tqptrdict.html#resize">TQPtrDict</a> <a href="tqptrvector.html#resize">TQPtrVector</a> <a href="tqvaluevector.html#resize">TQValueVector</a> <a href="tqwidget.html#resize">TQWidget</a><li>resizeContents: <a href="ntqscrollview.html#resizeContents">TQScrollView</a><li>resizeData: <a href="ntqtable.html#resizeData">TQTable</a><li>resizeEvent: <a href="ntqframe.html#resizeEvent">TQFrame</a> <a href="qglwidget.html#resizeEvent">TQGLWidget</a> <a href="ntqlistview.html#resizeEvent">TQListView</a> <a href="tqwidget.html#resizeEvent">TQWidget</a><li>resizeGL: @@ -2471,7 +2471,7 @@ sRect: <a href="ntqprogressdialog.html#setAutoClose">TQProgressDialog</a><li>setAutoCompletion: <a href="ntqcombobox.html#setAutoCompletion">TQComboBox</a><li>setAutoDefault: <a href="ntqpushbutton.html#setAutoDefault">TQPushButton</a><li>setAutoDelete: - <a href="ntqptrcollection.html#setAutoDelete">TQAsciiDict</a> <a href="ntqptrcollection.html#setAutoDelete">TQCache</a> <a href="tqdatatable.html#setAutoDelete">TQDataTable</a> <a href="ntqptrcollection.html#setAutoDelete">TQDict</a> <a href="qiconfactory.html#setAutoDelete">TQIconFactory</a> <a href="ntqptrcollection.html#setAutoDelete">TQIntDict</a> <a href="ntqnetworkprotocol.html#setAutoDelete">TQNetworkProtocol</a> <a href="ntqptrcollection.html#setAutoDelete">TQPtrCollection</a> <a href="ntqptrcollection.html#setAutoDelete">TQPtrDict</a> <a href="ntqptrcollection.html#setAutoDelete">TQPtrList</a> <a href="ntqptrqueue.html#setAutoDelete">TQPtrQueue</a> <a href="ntqptrstack.html#setAutoDelete">TQPtrStack</a> <a href="ntqptrcollection.html#setAutoDelete">TQPtrVector</a><li>setAutoEdit: + <a href="tqptrcollection.html#setAutoDelete">TQAsciiDict</a> <a href="tqptrcollection.html#setAutoDelete">TQCache</a> <a href="tqdatatable.html#setAutoDelete">TQDataTable</a> <a href="tqptrcollection.html#setAutoDelete">TQDict</a> <a href="qiconfactory.html#setAutoDelete">TQIconFactory</a> <a href="tqptrcollection.html#setAutoDelete">TQIntDict</a> <a href="ntqnetworkprotocol.html#setAutoDelete">TQNetworkProtocol</a> <a href="tqptrcollection.html#setAutoDelete">TQPtrCollection</a> <a href="tqptrcollection.html#setAutoDelete">TQPtrDict</a> <a href="tqptrcollection.html#setAutoDelete">TQPtrList</a> <a href="tqptrqueue.html#setAutoDelete">TQPtrQueue</a> <a href="tqptrstack.html#setAutoDelete">TQPtrStack</a> <a href="tqptrcollection.html#setAutoDelete">TQPtrVector</a><li>setAutoEdit: <a href="tqdatabrowser.html#setAutoEdit">TQDataBrowser</a> <a href="tqdatatable.html#setAutoEdit">TQDataTable</a><li>setAutoFormatting: <a href="ntqtextedit.html#setAutoFormatting">TQTextEdit</a><li>setAutoMask: <a href="tqwidget.html#setAutoMask">TQWidget</a><li>setAutoRaise: @@ -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="ntqptrdict.html#size">TQPtrDict</a> <a href="ntqptrvector.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="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="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: @@ -3210,7 +3210,7 @@ sRect: <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: - <a href="tqdatabrowser.html#sort">TQDataBrowser</a> <a href="tqdatatable.html#sort">TQDataTable</a> <a href="ntqiconview.html#sort">TQIconView</a> <a href="ntqlistbox.html#sort">TQListBox</a> <a href="ntqlistview.html#sort">TQListView</a> <a href="qlistviewitem.html#sort">TQListViewItem</a> <a href="ntqmemarray.html#sort">TQMemArray</a> <a href="ntqptrlist.html#sort">TQPtrList</a> <a href="ntqptrvector.html#sort">TQPtrVector</a> <a href="tqsqlcursor.html#sort">TQSqlCursor</a> <a href="ntqstringlist.html#sort">TQStringList</a><li>sortAscending: + <a href="tqdatabrowser.html#sort">TQDataBrowser</a> <a href="tqdatatable.html#sort">TQDataTable</a> <a href="ntqiconview.html#sort">TQIconView</a> <a href="ntqlistbox.html#sort">TQListBox</a> <a href="ntqlistview.html#sort">TQListView</a> <a href="qlistviewitem.html#sort">TQListViewItem</a> <a href="ntqmemarray.html#sort">TQMemArray</a> <a href="tqptrlist.html#sort">TQPtrList</a> <a href="tqptrvector.html#sort">TQPtrVector</a> <a href="tqsqlcursor.html#sort">TQSqlCursor</a> <a href="ntqstringlist.html#sort">TQStringList</a><li>sortAscending: <a href="tqdatatable.html#sortAscending">TQDataTable</a><li>sortChildItems: <a href="qlistviewitem.html#sortChildItems">TQListViewItem</a><li>sortColumn: <a href="tqdatatable.html#sortColumn">TQDataTable</a> <a href="ntqlistview.html#sortColumn">TQListView</a> <a href="ntqtable.html#sortColumn">TQTable</a><li>sortDescending: @@ -3260,7 +3260,7 @@ sRect: <a href="qkeyevent.html#stateAfter">TQKeyEvent</a> <a href="qmouseevent.html#stateAfter">TQMouseEvent</a><li>stateChange: <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="ntqptrdict.html#statistics">TQPtrDict</a><li>status: + <a href="ntqasciicache.html#statistics">TQAsciiCache</a> <a href="ntqasciidict.html#statistics">TQAsciiDict</a> <a href="ntqcache.html#statistics">TQCache</a> <a href="ntqdict.html#statistics">TQDict</a> <a href="ntqintcache.html#statistics">TQIntCache</a> <a href="ntqintdict.html#statistics">TQIntDict</a> <a href="tqptrdict.html#statistics">TQPtrDict</a><li>status: <a href="ntqiodevice.html#status">TQIODevice</a> <a href="qimageio.html#status">TQImageIO</a> <a href="qnpinstance.html#status">TQNPInstance</a><li>statusBar: <a href="ntqmainwindow.html#statusBar">TQMainWindow</a><li>statusCode: <a href="qhttpresponseheader.html#statusCode">TQHttpResponseHeader</a><li>statusTip: @@ -3341,11 +3341,11 @@ tab: <a href="tqwidget.html#tabletEvent">TQWidget</a><li>tag: <a href="ntqstylesheet.html#tag">TQStyleSheet</a><li>tagName: <a href="tqdomelement.html#tagName">TQDomElement</a><li>take: - <a href="ntqasciicache.html#take">TQAsciiCache</a> <a href="ntqasciidict.html#take">TQAsciiDict</a> <a href="ntqcache.html#take">TQCache</a> <a href="ntqdict.html#take">TQDict</a> <a href="ntqintcache.html#take">TQIntCache</a> <a href="ntqintdict.html#take">TQIntDict</a> <a href="ntqptrdict.html#take">TQPtrDict</a> <a href="ntqptrlist.html#take">TQPtrList</a> <a href="ntqptrvector.html#take">TQPtrVector</a><li>takeCurrent: + <a href="ntqasciicache.html#take">TQAsciiCache</a> <a href="ntqasciidict.html#take">TQAsciiDict</a> <a href="ntqcache.html#take">TQCache</a> <a href="ntqdict.html#take">TQDict</a> <a href="ntqintcache.html#take">TQIntCache</a> <a href="ntqintdict.html#take">TQIntDict</a> <a href="tqptrdict.html#take">TQPtrDict</a> <a href="tqptrlist.html#take">TQPtrList</a> <a href="tqptrvector.html#take">TQPtrVector</a><li>takeCurrent: <a href="qglayoutiterator.html#takeCurrent">TQGLayoutIterator</a> <a href="qlayoutiterator.html#takeCurrent">TQLayoutIterator</a><li>takeDefaultFactory: <a href="qmimesourcefactory.html#takeDefaultFactory">TQMimeSourceFactory</a><li>takeItem: <a href="ntqiconview.html#takeItem">TQIconView</a> <a href="ntqlistbox.html#takeItem">TQListBox</a> <a href="ntqlistview.html#takeItem">TQListView</a> <a href="qlistviewitem.html#takeItem">TQListViewItem</a> <a href="ntqtable.html#takeItem">TQTable</a><li>takeNode: - <a href="ntqptrlist.html#takeNode">TQPtrList</a><li>target: + <a href="tqptrlist.html#takeNode">TQPtrList</a><li>target: <a href="tqdomprocessinginstruction.html#target">TQDomProcessingInstruction</a> <a href="ntqdragobject.html#target">TQDragObject</a><li>terminate: <a href="ntqthread.html#terminate">TQThread</a><li>testBit: <a href="ntqbitarray.html#testBit">TQBitArray</a><li>testOption: @@ -3405,7 +3405,7 @@ tab: <a href="tqdomnode.html#toEntity">TQDomNode</a><li>toEntityReference: <a href="tqdomnode.html#toEntityReference">TQDomNode</a><li>toField: <a href="tqsqlfieldinfo.html#toField">TQSqlFieldInfo</a><li>toFirst: - <a href="qasciicacheiterator.html#toFirst">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#toFirst">TQAsciiDictIterator</a> <a href="qcacheiterator.html#toFirst">TQCacheIterator</a> <a href="qdictiterator.html#toFirst">TQDictIterator</a> <a href="qintcacheiterator.html#toFirst">TQIntCacheIterator</a> <a href="qintdictiterator.html#toFirst">TQIntDictIterator</a> <a href="qptrdictiterator.html#toFirst">TQPtrDictIterator</a> <a href="qptrlistiterator.html#toFirst">TQPtrListIterator</a><li>toFloat: + <a href="qasciicacheiterator.html#toFirst">TQAsciiCacheIterator</a> <a href="qasciidictiterator.html#toFirst">TQAsciiDictIterator</a> <a href="qcacheiterator.html#toFirst">TQCacheIterator</a> <a href="qdictiterator.html#toFirst">TQDictIterator</a> <a href="qintcacheiterator.html#toFirst">TQIntCacheIterator</a> <a href="qintdictiterator.html#toFirst">TQIntDictIterator</a> <a href="tqptrdictiterator.html#toFirst">TQPtrDictIterator</a> <a href="tqptrlistiterator.html#toFirst">TQPtrListIterator</a><li>toFloat: <a href="ntqcstring.html#toFloat">TQCString</a> <a href="ntqlocale.html#toFloat">TQLocale</a> <a href="ntqstring.html#toFloat">TQString</a><li>toFont: <a href="ntqvariant.html#toFont">TQVariant</a><li>toIPv4Address: <a href="ntqhostaddress.html#toIPv4Address">TQHostAddress</a><li>toIPv6Address: @@ -3414,7 +3414,7 @@ tab: <a href="ntqvariant.html#toImage">TQVariant</a><li>toInt: <a href="ntqcstring.html#toInt">TQCString</a> <a href="ntqlocale.html#toInt">TQLocale</a> <a href="ntqstring.html#toInt">TQString</a> <a href="ntqvariant.html#toInt">TQVariant</a><li>toKeySequence: <a href="ntqvariant.html#toKeySequence">TQVariant</a><li>toLast: - <a href="qasciicacheiterator.html#toLast">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#toLast">TQCacheIterator</a> <a href="qintcacheiterator.html#toLast">TQIntCacheIterator</a> <a href="qptrlistiterator.html#toLast">TQPtrListIterator</a><li>toList: + <a href="qasciicacheiterator.html#toLast">TQAsciiCacheIterator</a> <a href="qcacheiterator.html#toLast">TQCacheIterator</a> <a href="qintcacheiterator.html#toLast">TQIntCacheIterator</a> <a href="tqptrlistiterator.html#toLast">TQPtrListIterator</a><li>toList: <a href="ntqvariant.html#toList">TQVariant</a><li>toLong: <a href="ntqcstring.html#toLong">TQCString</a> <a href="ntqlocale.html#toLong">TQLocale</a> <a href="ntqstring.html#toLong">TQString</a><li>toLongLong: <a href="ntqlocale.html#toLongLong">TQLocale</a> <a href="ntqstring.html#toLongLong">TQString</a> <a href="ntqvariant.html#toLongLong">TQVariant</a><li>toMap: @@ -3443,7 +3443,7 @@ tab: <a href="ntqlocale.html#toULongLong">TQLocale</a> <a href="ntqstring.html#toULongLong">TQString</a> <a href="ntqvariant.html#toULongLong">TQVariant</a><li>toUShort: <a href="ntqcstring.html#toUShort">TQCString</a> <a href="ntqlocale.html#toUShort">TQLocale</a> <a href="ntqstring.html#toUShort">TQString</a><li>toUnicode: <a href="ntqtextcodec.html#toUnicode">TQTextCodec</a> <a href="qtextdecoder.html#toUnicode">TQTextDecoder</a><li>toVector: - <a href="ntqptrlist.html#toVector">TQPtrList</a><li>toggle: + <a href="tqptrlist.html#toVector">TQPtrList</a><li>toggle: <a href="ntqaction.html#toggle">TQAction</a> <a href="ntqbutton.html#toggle">TQButton</a> <a href="ntqbutton.html#toggle">TQCheckBox</a> <a href="ntqbutton.html#toggle">TQPushButton</a> <a href="ntqbutton.html#toggle">TQRadioButton</a> <a href="ntqtoolbutton.html#toggle">TQToolButton</a><li>toggleBit: <a href="ntqbitarray.html#toggleBit">TQBitArray</a><li>toggleCurrentItem: <a href="ntqlistbox.html#toggleCurrentItem">TQListBox</a><li>toggleType: @@ -3452,7 +3452,7 @@ tab: <a href="ntqmainwindow.html#toolBars">TQMainWindow</a><li>toolTip: <a href="ntqaction.html#toolTip">TQAction</a> <a href="ntqtabbar.html#toolTip">TQTabBar</a> <a href="tqwidgetplugin.html#toolTip">TQWidgetPlugin</a><li>toolTipGroup: <a href="ntqmainwindow.html#toolTipGroup">TQMainWindow</a><li>top: - <a href="qdoublevalidator.html#top">TQDoubleValidator</a> <a href="qintvalidator.html#top">TQIntValidator</a> <a href="ntqptrstack.html#top">TQPtrStack</a> <a href="ntqrect.html#top">TQRect</a> <a href="tqvaluestack.html#top">TQValueStack</a><li>topDock: + <a href="qdoublevalidator.html#top">TQDoubleValidator</a> <a href="qintvalidator.html#top">TQIntValidator</a> <a href="tqptrstack.html#top">TQPtrStack</a> <a href="ntqrect.html#top">TQRect</a> <a href="tqvaluestack.html#top">TQValueStack</a><li>topDock: <a href="ntqmainwindow.html#topDock">TQMainWindow</a><li>topEdge: <a href="tqcanvassprite.html#topEdge">TQCanvasSprite</a><li>topItem: <a href="ntqlistbox.html#topItem">TQListBox</a><li>topLeft: @@ -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="ntqptrdict.html#write">TQPtrDict</a> <a href="ntqptrlist.html#write">TQPtrList</a> <a href="ntqptrqueue.html#write">TQPtrQueue</a> <a href="ntqptrstack.html#write">TQPtrStack</a> <a href="ntqptrvector.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="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="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: diff --git a/doc/html/grapher-nsplugin-example.html b/doc/html/grapher-nsplugin-example.html index e6b8e862b..5ed08a695 100644 --- a/doc/html/grapher-nsplugin-example.html +++ b/doc/html/grapher-nsplugin-example.html @@ -81,7 +81,7 @@ Implementation: #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qmenubar-h.html">ntqmenubar.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> // Include some C library functions. @@ -263,12 +263,12 @@ void <a name="f566"></a>Graph::paintBar(TQPaintEvent* event) return; } - <a href="ntqptrlist.html">TQPtrList</a><GraphModel::Datum>& data = model.graphData(); + <a href="tqptrlist.html">TQPtrList</a><GraphModel::Datum>& data = model.graphData(); double max = 0.0; -<a name="x2772"></a> for (GraphModel::Datum* rowdata = data.<a href="ntqptrlist.html#first">first</a>(); -<a name="x2773"></a> rowdata; rowdata = data.<a href="ntqptrlist.html#next">next</a>()) +<a name="x2772"></a> for (GraphModel::Datum* rowdata = data.<a href="tqptrlist.html#first">first</a>(); +<a name="x2773"></a> rowdata; rowdata = data.<a href="tqptrlist.html#next">next</a>()) { if (rowdata[0].dbl > max) max = rowdata[0].dbl; } @@ -280,20 +280,20 @@ void <a name="f566"></a>Graph::paintBar(TQPaintEvent* event) <a name="x2762"></a> p.<a href="ntqpainter.html#setClipRect">setClipRect</a>(event->rect()); -<a name="x2771"></a> if ( w > data.<a href="ntqptrlist.html#count">count</a>() ) { +<a name="x2771"></a> if ( w > data.<a href="tqptrlist.html#count">count</a>() ) { // More pixels than data int x = 0; int i = 0; <a href="ntqfontmetrics.html">TQFontMetrics</a> fm=<a href="tqwidget.html#fontMetrics">fontMetrics</a>(); <a name="x2741"></a> int fh = fm.<a href="ntqfontmetrics.html#height">height</a>(); - for (GraphModel::Datum* rowdata = data.<a href="ntqptrlist.html#first">first</a>(); - rowdata; rowdata = data.<a href="ntqptrlist.html#next">next</a>()) + for (GraphModel::Datum* rowdata = data.<a href="tqptrlist.html#first">first</a>(); + rowdata; rowdata = data.<a href="tqptrlist.html#next">next</a>()) { <a href="ntqcolor.html">TQColor</a> c; -<a name="x2740"></a> c.<a href="ntqcolor.html#setHsv">setHsv</a>( (i * 255)/data.<a href="ntqptrlist.html#count">count</a>(), 255, 255 );// rainbow effect +<a name="x2740"></a> c.<a href="ntqcolor.html#setHsv">setHsv</a>( (i * 255)/data.<a href="tqptrlist.html#count">count</a>(), 255, 255 );// rainbow effect p.<a href="ntqpainter.html#setBrush">setBrush</a>(c); - int bw = (w-w/4-x)/(data.<a href="ntqptrlist.html#count">count</a>()-i); + int bw = (w-w/4-x)/(data.<a href="tqptrlist.html#count">count</a>()-i); int bh = int((h-h/4-1)*rowdata[0].dbl/max); p.<a href="ntqpainter.html#drawRect">drawRect</a>( w/8+x, h-h/8-1-bh, bw, bh ); @@ -306,10 +306,10 @@ void <a name="f566"></a>Graph::paintBar(TQPaintEvent* event) int i = 0; double av = 0.0; int n = 0; - for (GraphModel::Datum* rowdata = data.<a href="ntqptrlist.html#first">first</a>(); rowdata; - rowdata = data.<a href="ntqptrlist.html#next">next</a>()) + for (GraphModel::Datum* rowdata = data.<a href="tqptrlist.html#first">first</a>(); rowdata; + rowdata = data.<a href="tqptrlist.html#next">next</a>()) { - int bx = i*w/data.<a href="ntqptrlist.html#count">count</a>(); + int bx = i*w/data.<a href="tqptrlist.html#count">count</a>(); if (bx > x) { <a href="ntqcolor.html">TQColor</a> c; @@ -339,14 +339,14 @@ void <a name="f567"></a>Graph::paintPie(TQPaintEvent* event) return; } - <a href="ntqptrlist.html">TQPtrList</a><GraphModel::Datum>& data = model.graphData(); + <a href="tqptrlist.html">TQPtrList</a><GraphModel::Datum>& data = model.graphData(); double total = 0.0; GraphModel::Datum* rowdata; - for (rowdata = data.<a href="ntqptrlist.html#first">first</a>(); - rowdata; rowdata = data.<a href="ntqptrlist.html#next">next</a>()) + for (rowdata = data.<a href="tqptrlist.html#first">first</a>(); + rowdata; rowdata = data.<a href="tqptrlist.html#next">next</a>()) { total += rowdata[0].dbl; } @@ -371,12 +371,12 @@ void <a name="f567"></a>Graph::paintPie(TQPaintEvent* event) int i = 0; - for (rowdata = data.<a href="ntqptrlist.html#first">first</a>(); - rowdata; rowdata = data.<a href="ntqptrlist.html#next">next</a>()) + for (rowdata = data.<a href="tqptrlist.html#first">first</a>(); + rowdata; rowdata = data.<a href="tqptrlist.html#next">next</a>()) { <a href="ntqcolor.html">TQColor</a> c; - c.<a href="ntqcolor.html#setHsv">setHsv</a>( ( i * 255)/data.<a href="ntqptrlist.html#count">count</a>(), 255, 255 );// rainbow effect + c.<a href="ntqcolor.html#setHsv">setHsv</a>( ( i * 255)/data.<a href="tqptrlist.html#count">count</a>(), 255, 255 );// rainbow effect p.<a href="ntqpainter.html#setBrush">setBrush</a>( c ); // solid fill with color c int a = int(( rowdata[0].dbl * 360.0 ) / total * 16.0 + 0.5); @@ -388,8 +388,8 @@ void <a name="f567"></a>Graph::paintPie(TQPaintEvent* event) if (model.colType(1) == GraphModel::Label) { double apos = (pieRotation-90)*M_PI/180; - for (rowdata = data.<a href="ntqptrlist.html#first">first</a>(); - rowdata; rowdata = data.<a href="ntqptrlist.html#next">next</a>()) + for (rowdata = data.<a href="tqptrlist.html#first">first</a>(); + rowdata; rowdata = data.<a href="tqptrlist.html#next">next</a>()) { double a = rowdata[0].dbl * 360 / total * M_PI / 180; int x = int(cos(apos+a/2)*w*5/16 + w/2 + 0.5); @@ -471,12 +471,12 @@ private: // Grapher is a GraphModel, so it implements the pure virtual // functions of that class. // - <a href="ntqptrlist.html">TQPtrList</a><Datum>& graphData(); + <a href="tqptrlist.html">TQPtrList</a><Datum>& graphData(); ColType colType(int col) const; int nCols() const; void consumeLine(); - <a href="ntqptrlist.html">TQPtrList</a><Datum> data; + <a href="tqptrlist.html">TQPtrList</a><Datum> data; <a href="ntqbuffer.html">TQBuffer</a> line; int ncols; ColType *coltype; @@ -490,7 +490,7 @@ private slots: <a name="f570"></a>Grapher::Grapher() { -<a name="x2769"></a> data.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE); +<a name="x2769"></a> data.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE); ncols = 0; <a name="x2743"></a> line.<a href="ntqiodevice.html#open">open</a>(IO_WriteOnly|IO_Truncate); } @@ -547,8 +547,8 @@ void <a name="f574"></a>Grapher::consumeLine() if (ncols == 0 ) { ncols=0; - <a href="ntqptrlist.html">TQPtrList</a><ColType> typelist; - typelist.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE); + <a href="tqptrlist.html">TQPtrList</a><ColType> typelist; + typelist.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE); do { <a href="ntqstring.html">TQString</a> typestr; ts >> typestr >> ws; @@ -558,10 +558,10 @@ void <a name="f574"></a>Grapher::consumeLine() } else if ( typestr == "label" ) { t = new ColType(Label); } -<a name="x2770"></a> if (t) typelist.<a href="ntqptrlist.html#append">append</a>(t); +<a name="x2770"></a> if (t) typelist.<a href="tqptrlist.html#append">append</a>(t); <a name="x2774"></a> } while (!ts.<a href="ntqtextstream.html#atEnd">atEnd</a>()); coltype = new ColType[ncols]; - for (ColType* t = typelist.<a href="ntqptrlist.html#first">first</a>(); t; t = typelist.<a href="ntqptrlist.html#next">next</a>()) { + for (ColType* t = typelist.<a href="tqptrlist.html#first">first</a>(); t; t = typelist.<a href="tqptrlist.html#next">next</a>()) { coltype[ncols++] = *t; } } else { @@ -585,7 +585,7 @@ void <a name="f574"></a>Grapher::consumeLine() col++; } - data.<a href="ntqptrlist.html#append">append</a>(rowdata); + data.<a href="tqptrlist.html#append">append</a>(rowdata); } line.<a href="ntqiodevice.html#close">close</a>(); diff --git a/doc/html/headerfilesynonyms b/doc/html/headerfilesynonyms index 7b25e7b73..abd705512 100644 --- a/doc/html/headerfilesynonyms +++ b/doc/html/headerfilesynonyms @@ -126,8 +126,8 @@ qnplugin.h ntqnp.h tqobjectlistiterator.h tqobjectlist.h qcolorgroup.h ntqpalette.h qpngimagepacker.h ntqpngio.h -qptrdictiterator.h ntqptrdict.h -qptrlistiterator.h ntqptrlist.h +tqptrdictiterator.h tqptrdict.h +tqptrlistiterator.h tqptrlist.h qhebrewcodec.h ntqrtlcodec.h tqsqlfieldinfo.h tqsqlfield.h tqsqlrecordinfo.h tqsqlrecord.h diff --git a/doc/html/headers.html b/doc/html/headers.html index 81d5c4970..529d153e5 100644 --- a/doc/html/headers.html +++ b/doc/html/headers.html @@ -190,12 +190,12 @@ body { background: #ffffff; color: black; } <li><a href="qprocess-h.html">ntqprocess.h</a> <li><a href="qprogressbar-h.html">ntqprogressbar.h</a> <li><a href="qprogressdialog-h.html">ntqprogressdialog.h</a> -<li><a href="qptrcollection-h.html">ntqptrcollection.h</a> -<li><a href="qptrdict-h.html">ntqptrdict.h</a> -<li><a href="qptrlist-h.html">ntqptrlist.h</a> -<li><a href="qptrqueue-h.html">ntqptrqueue.h</a> -<li><a href="qptrstack-h.html">ntqptrstack.h</a> -<li><a href="qptrvector-h.html">ntqptrvector.h</a> +<li><a href="tqptrcollection-h.html">tqptrcollection.h</a> +<li><a href="tqptrdict-h.html">tqptrdict.h</a> +<li><a href="tqptrlist-h.html">tqptrlist.h</a> +<li><a href="tqptrqueue-h.html">tqptrqueue.h</a> +<li><a href="tqptrstack-h.html">tqptrstack.h</a> +<li><a href="tqptrvector-h.html">tqptrvector.h</a> <li><a href="qpushbutton-h.html">ntqpushbutton.h</a> <li><a href="qradiobutton-h.html">ntqradiobutton.h</a> <li><a href="qrangecontrol-h.html">ntqrangecontrol.h</a> diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html index 6faac1e04..cc6be7fa6 100644 --- a/doc/html/hierarchy.html +++ b/doc/html/hierarchy.html @@ -192,7 +192,7 @@ classes in the TQt API. <li><a href="ntqpixmapcache.html">TQPixmapCache</a> <li><a href="qpngimagepacker.html">TQPNGImagePacker</a> <li><a href="ntqpoint.html">TQPoint</a> -<li><a href="ntqptrcollection.html">TQPtrCollection</a> +<li><a href="tqptrcollection.html">TQPtrCollection</a> <ul> <li><a href="ntqasciicache.html">TQAsciiCache</a> <li><a href="ntqasciidict.html">TQAsciiDict</a> @@ -200,8 +200,8 @@ classes in the TQt API. <li><a href="ntqdict.html">TQDict</a> <li><a href="ntqintcache.html">TQIntCache</a> <li><a href="ntqintdict.html">TQIntDict</a> -<li><a href="ntqptrdict.html">TQPtrDict</a> -<li><a href="ntqptrlist.html">TQPtrList</a> +<li><a href="tqptrdict.html">TQPtrDict</a> +<li><a href="tqptrlist.html">TQPtrList</a> <ul> <li><a href="tqobjectlist.html">TQObjectList</a> <li><a href="ntqstrlist.html">TQStrList</a> @@ -209,16 +209,16 @@ classes in the TQt API. <li><a href="qstrilist.html">TQStrIList</a> </ul> </ul> -<li><a href="ntqptrvector.html">TQPtrVector</a> +<li><a href="tqptrvector.html">TQPtrVector</a> </ul> -<li><a href="qptrdictiterator.html">TQPtrDictIterator</a> -<li><a href="qptrlistiterator.html">TQPtrListIterator</a> +<li><a href="tqptrdictiterator.html">TQPtrDictIterator</a> +<li><a href="tqptrlistiterator.html">TQPtrListIterator</a> <ul> <li><a href="tqobjectlistiterator.html">TQObjectListIterator</a> <li><a href="qstrlistiterator.html">TQStrListIterator</a> </ul> -<li><a href="ntqptrqueue.html">TQPtrQueue</a> -<li><a href="ntqptrstack.html">TQPtrStack</a> +<li><a href="tqptrqueue.html">TQPtrQueue</a> +<li><a href="tqptrstack.html">TQPtrStack</a> <li><a href="ntqrangecontrol.html">TQRangeControl</a> <li><a href="ntqrect.html">TQRect</a> <li><a href="ntqregexp.html">TQRegExp</a> diff --git a/doc/html/index b/doc/html/index index 2ac0d810e..aa89ed74d 100644 --- a/doc/html/index +++ b/doc/html/index @@ -4922,158 +4922,158 @@ "QProgressDialog::wasCanceled" ntqprogressdialog.html#wasCanceled "QProgressDialog::wasCanceled" ntqprogressdialog.html#wasCanceled-prop "QProgressDialog::~QProgressDialog" ntqprogressdialog.html#~QProgressDialog -"QPtrCollection" ntqptrcollection.html -"QPtrCollection::Item" ntqptrcollection.html#Item -"QPtrCollection::autoDelete" ntqptrcollection.html#autoDelete -"QPtrCollection::clear" ntqptrcollection.html#clear -"QPtrCollection::count" ntqptrcollection.html#count -"QPtrCollection::deleteItem" ntqptrcollection.html#deleteItem -"QPtrCollection::newItem" ntqptrcollection.html#newItem -"QPtrCollection::setAutoDelete" ntqptrcollection.html#setAutoDelete -"QPtrCollection::~QPtrCollection" ntqptrcollection.html#~QPtrCollection -"QPtrDict" ntqptrdict.html -"QPtrDict::clear" ntqptrdict.html#clear -"QPtrDict::count" ntqptrdict.html#count -"QPtrDict::find" ntqptrdict.html#find -"QPtrDict::insert" ntqptrdict.html#insert -"QPtrDict::isEmpty" ntqptrdict.html#isEmpty -"QPtrDict::operator=" ntqptrdict.html#operator-eq -"QPtrDict::operator[]" ntqptrdict.html#operator[] -"QPtrDict::read" ntqptrdict.html#read -"QPtrDict::remove" ntqptrdict.html#remove -"QPtrDict::replace" ntqptrdict.html#replace -"QPtrDict::resize" ntqptrdict.html#resize -"QPtrDict::size" ntqptrdict.html#size -"QPtrDict::statistics" ntqptrdict.html#statistics -"QPtrDict::take" ntqptrdict.html#take -"QPtrDict::write" ntqptrdict.html#write -"QPtrDict::~QPtrDict" ntqptrdict.html#~QPtrDict -"QPtrDictIterator" qptrdictiterator.html -"QPtrDictIterator::count" qptrdictiterator.html#count -"QPtrDictIterator::current" qptrdictiterator.html#current -"QPtrDictIterator::currentKey" qptrdictiterator.html#currentKey -"QPtrDictIterator::isEmpty" qptrdictiterator.html#isEmpty -"QPtrDictIterator::operator type *" qptrdictiterator.html#operator-type-* -"QPtrDictIterator::operator()" qptrdictiterator.html#operator() -"QPtrDictIterator::operator++" qptrdictiterator.html#operator++ -"QPtrDictIterator::operator+=" qptrdictiterator.html#operator+-eq -"QPtrDictIterator::toFirst" qptrdictiterator.html#toFirst -"QPtrDictIterator::~QPtrDictIterator" qptrdictiterator.html#~QPtrDictIterator -"QPtrList" ntqptrlist.html -"QPtrList::append" ntqptrlist.html#append -"QPtrList::at" ntqptrlist.html#at -"QPtrList::clear" ntqptrlist.html#clear -"QPtrList::compareItems" ntqptrlist.html#compareItems -"QPtrList::contains" ntqptrlist.html#contains -"QPtrList::containsRef" ntqptrlist.html#containsRef -"QPtrList::count" ntqptrlist.html#count -"QPtrList::current" ntqptrlist.html#current -"QPtrList::currentNode" ntqptrlist.html#currentNode -"QPtrList::find" ntqptrlist.html#find -"QPtrList::findNext" ntqptrlist.html#findNext -"QPtrList::findNextRef" ntqptrlist.html#findNextRef -"QPtrList::findRef" ntqptrlist.html#findRef -"QPtrList::first" ntqptrlist.html#first -"QPtrList::getFirst" ntqptrlist.html#getFirst -"QPtrList::getLast" ntqptrlist.html#getLast -"QPtrList::inSort" ntqptrlist.html#inSort -"QPtrList::insert" ntqptrlist.html#insert -"QPtrList::isEmpty" ntqptrlist.html#isEmpty -"QPtrList::last" ntqptrlist.html#last -"QPtrList::next" ntqptrlist.html#next -"QPtrList::operator!=" ntqptrlist.html#operator!-eq -"QPtrList::operator=" ntqptrlist.html#operator-eq -"QPtrList::operator==" ntqptrlist.html#operator-eq-eq -"QPtrList::prepend" ntqptrlist.html#prepend -"QPtrList::prev" ntqptrlist.html#prev -"QPtrList::read" ntqptrlist.html#read -"QPtrList::remove" ntqptrlist.html#remove -"QPtrList::removeFirst" ntqptrlist.html#removeFirst -"QPtrList::removeLast" ntqptrlist.html#removeLast -"QPtrList::removeNode" ntqptrlist.html#removeNode -"QPtrList::removeRef" ntqptrlist.html#removeRef -"QPtrList::replace" ntqptrlist.html#replace -"QPtrList::sort" ntqptrlist.html#sort -"QPtrList::take" ntqptrlist.html#take -"QPtrList::takeNode" ntqptrlist.html#takeNode -"QPtrList::toVector" ntqptrlist.html#toVector -"QPtrList::write" ntqptrlist.html#write -"QPtrList::~QPtrList" ntqptrlist.html#~QPtrList -"QPtrListIterator" qptrlistiterator.html -"QPtrListIterator::atFirst" qptrlistiterator.html#atFirst -"QPtrListIterator::atLast" qptrlistiterator.html#atLast -"QPtrListIterator::count" qptrlistiterator.html#count -"QPtrListIterator::current" qptrlistiterator.html#current -"QPtrListIterator::isEmpty" qptrlistiterator.html#isEmpty -"QPtrListIterator::operator type *" qptrlistiterator.html#operator-type-* -"QPtrListIterator::operator()" qptrlistiterator.html#operator() -"QPtrListIterator::operator*" qptrlistiterator.html#operator* -"QPtrListIterator::operator++" qptrlistiterator.html#operator++ -"QPtrListIterator::operator+=" qptrlistiterator.html#operator+-eq -"QPtrListIterator::operator--" qptrlistiterator.html#operator-- -"QPtrListIterator::operator-=" qptrlistiterator.html#operator--eq -"QPtrListIterator::operator=" qptrlistiterator.html#operator-eq -"QPtrListIterator::toFirst" qptrlistiterator.html#toFirst -"QPtrListIterator::toLast" qptrlistiterator.html#toLast -"QPtrListIterator::~QPtrListIterator" qptrlistiterator.html#~QPtrListIterator -"QPtrQueue" ntqptrqueue.html -"QPtrQueue::autoDelete" ntqptrqueue.html#autoDelete -"QPtrQueue::clear" ntqptrqueue.html#clear -"QPtrQueue::count" ntqptrqueue.html#count -"QPtrQueue::current" ntqptrqueue.html#current -"QPtrQueue::dequeue" ntqptrqueue.html#dequeue -"QPtrQueue::enqueue" ntqptrqueue.html#enqueue -"QPtrQueue::head" ntqptrqueue.html#head -"QPtrQueue::isEmpty" ntqptrqueue.html#isEmpty -"QPtrQueue::operator type *" ntqptrqueue.html#operator-type-* -"QPtrQueue::operator=" ntqptrqueue.html#operator-eq -"QPtrQueue::read" ntqptrqueue.html#read -"QPtrQueue::remove" ntqptrqueue.html#remove -"QPtrQueue::setAutoDelete" ntqptrqueue.html#setAutoDelete -"QPtrQueue::write" ntqptrqueue.html#write -"QPtrQueue::~QPtrQueue" ntqptrqueue.html#~QPtrQueue -"QPtrStack" ntqptrstack.html -"QPtrStack::autoDelete" ntqptrstack.html#autoDelete -"QPtrStack::clear" ntqptrstack.html#clear -"QPtrStack::count" ntqptrstack.html#count -"QPtrStack::current" ntqptrstack.html#current -"QPtrStack::isEmpty" ntqptrstack.html#isEmpty -"QPtrStack::operator type *" ntqptrstack.html#operator-type-* -"QPtrStack::operator=" ntqptrstack.html#operator-eq -"QPtrStack::pop" ntqptrstack.html#pop -"QPtrStack::push" ntqptrstack.html#push -"QPtrStack::read" ntqptrstack.html#read -"QPtrStack::remove" ntqptrstack.html#remove -"QPtrStack::setAutoDelete" ntqptrstack.html#setAutoDelete -"QPtrStack::top" ntqptrstack.html#top -"QPtrStack::write" ntqptrstack.html#write -"QPtrStack::~QPtrStack" ntqptrstack.html#~QPtrStack -"QPtrVector" ntqptrvector.html -"QPtrVector::at" ntqptrvector.html#at -"QPtrVector::bsearch" ntqptrvector.html#bsearch -"QPtrVector::clear" ntqptrvector.html#clear -"QPtrVector::compareItems" ntqptrvector.html#compareItems -"QPtrVector::contains" ntqptrvector.html#contains -"QPtrVector::containsRef" ntqptrvector.html#containsRef -"QPtrVector::count" ntqptrvector.html#count -"QPtrVector::data" ntqptrvector.html#data -"QPtrVector::fill" ntqptrvector.html#fill -"QPtrVector::find" ntqptrvector.html#find -"QPtrVector::findRef" ntqptrvector.html#findRef -"QPtrVector::insert" ntqptrvector.html#insert -"QPtrVector::isEmpty" ntqptrvector.html#isEmpty -"QPtrVector::isNull" ntqptrvector.html#isNull -"QPtrVector::operator=" ntqptrvector.html#operator-eq -"QPtrVector::operator==" ntqptrvector.html#operator-eq-eq -"QPtrVector::operator[]" ntqptrvector.html#operator[] -"QPtrVector::read" ntqptrvector.html#read -"QPtrVector::remove" ntqptrvector.html#remove -"QPtrVector::resize" ntqptrvector.html#resize -"QPtrVector::size" ntqptrvector.html#size -"QPtrVector::sort" ntqptrvector.html#sort -"QPtrVector::take" ntqptrvector.html#take -"QPtrVector::write" ntqptrvector.html#write -"QPtrVector::~QPtrVector" ntqptrvector.html#~QPtrVector +"TQPtrCollection" tqptrcollection.html +"TQPtrCollection::Item" tqptrcollection.html#Item +"TQPtrCollection::autoDelete" tqptrcollection.html#autoDelete +"TQPtrCollection::clear" tqptrcollection.html#clear +"TQPtrCollection::count" tqptrcollection.html#count +"TQPtrCollection::deleteItem" tqptrcollection.html#deleteItem +"TQPtrCollection::newItem" tqptrcollection.html#newItem +"TQPtrCollection::setAutoDelete" tqptrcollection.html#setAutoDelete +"TQPtrCollection::~TQPtrCollection" tqptrcollection.html#~TQPtrCollection +"TQPtrDict" tqptrdict.html +"TQPtrDict::clear" tqptrdict.html#clear +"TQPtrDict::count" tqptrdict.html#count +"TQPtrDict::find" tqptrdict.html#find +"TQPtrDict::insert" tqptrdict.html#insert +"TQPtrDict::isEmpty" tqptrdict.html#isEmpty +"TQPtrDict::operator=" tqptrdict.html#operator-eq +"TQPtrDict::operator[]" tqptrdict.html#operator[] +"TQPtrDict::read" tqptrdict.html#read +"TQPtrDict::remove" tqptrdict.html#remove +"TQPtrDict::replace" tqptrdict.html#replace +"TQPtrDict::resize" tqptrdict.html#resize +"TQPtrDict::size" tqptrdict.html#size +"TQPtrDict::statistics" tqptrdict.html#statistics +"TQPtrDict::take" tqptrdict.html#take +"TQPtrDict::write" tqptrdict.html#write +"TQPtrDict::~TQPtrDict" tqptrdict.html#~TQPtrDict +"TQPtrDictIterator" tqptrdictiterator.html +"TQPtrDictIterator::count" tqptrdictiterator.html#count +"TQPtrDictIterator::current" tqptrdictiterator.html#current +"TQPtrDictIterator::currentKey" tqptrdictiterator.html#currentKey +"TQPtrDictIterator::isEmpty" tqptrdictiterator.html#isEmpty +"TQPtrDictIterator::operator type *" tqptrdictiterator.html#operator-type-* +"TQPtrDictIterator::operator()" tqptrdictiterator.html#operator() +"TQPtrDictIterator::operator++" tqptrdictiterator.html#operator++ +"TQPtrDictIterator::operator+=" tqptrdictiterator.html#operator+-eq +"TQPtrDictIterator::toFirst" tqptrdictiterator.html#toFirst +"TQPtrDictIterator::~TQPtrDictIterator" tqptrdictiterator.html#~TQPtrDictIterator +"TQPtrList" tqptrlist.html +"TQPtrList::append" tqptrlist.html#append +"TQPtrList::at" tqptrlist.html#at +"TQPtrList::clear" tqptrlist.html#clear +"TQPtrList::compareItems" tqptrlist.html#compareItems +"TQPtrList::contains" tqptrlist.html#contains +"TQPtrList::containsRef" tqptrlist.html#containsRef +"TQPtrList::count" tqptrlist.html#count +"TQPtrList::current" tqptrlist.html#current +"TQPtrList::currentNode" tqptrlist.html#currentNode +"TQPtrList::find" tqptrlist.html#find +"TQPtrList::findNext" tqptrlist.html#findNext +"TQPtrList::findNextRef" tqptrlist.html#findNextRef +"TQPtrList::findRef" tqptrlist.html#findRef +"TQPtrList::first" tqptrlist.html#first +"TQPtrList::getFirst" tqptrlist.html#getFirst +"TQPtrList::getLast" tqptrlist.html#getLast +"TQPtrList::inSort" tqptrlist.html#inSort +"TQPtrList::insert" tqptrlist.html#insert +"TQPtrList::isEmpty" tqptrlist.html#isEmpty +"TQPtrList::last" tqptrlist.html#last +"TQPtrList::next" tqptrlist.html#next +"TQPtrList::operator!=" tqptrlist.html#operator!-eq +"TQPtrList::operator=" tqptrlist.html#operator-eq +"TQPtrList::operator==" tqptrlist.html#operator-eq-eq +"TQPtrList::prepend" tqptrlist.html#prepend +"TQPtrList::prev" tqptrlist.html#prev +"TQPtrList::read" tqptrlist.html#read +"TQPtrList::remove" tqptrlist.html#remove +"TQPtrList::removeFirst" tqptrlist.html#removeFirst +"TQPtrList::removeLast" tqptrlist.html#removeLast +"TQPtrList::removeNode" tqptrlist.html#removeNode +"TQPtrList::removeRef" tqptrlist.html#removeRef +"TQPtrList::replace" tqptrlist.html#replace +"TQPtrList::sort" tqptrlist.html#sort +"TQPtrList::take" tqptrlist.html#take +"TQPtrList::takeNode" tqptrlist.html#takeNode +"TQPtrList::toVector" tqptrlist.html#toVector +"TQPtrList::write" tqptrlist.html#write +"TQPtrList::~TQPtrList" tqptrlist.html#~TQPtrList +"TQPtrListIterator" tqptrlistiterator.html +"TQPtrListIterator::atFirst" tqptrlistiterator.html#atFirst +"TQPtrListIterator::atLast" tqptrlistiterator.html#atLast +"TQPtrListIterator::count" tqptrlistiterator.html#count +"TQPtrListIterator::current" tqptrlistiterator.html#current +"TQPtrListIterator::isEmpty" tqptrlistiterator.html#isEmpty +"TQPtrListIterator::operator type *" tqptrlistiterator.html#operator-type-* +"TQPtrListIterator::operator()" tqptrlistiterator.html#operator() +"TQPtrListIterator::operator*" tqptrlistiterator.html#operator* +"TQPtrListIterator::operator++" tqptrlistiterator.html#operator++ +"TQPtrListIterator::operator+=" tqptrlistiterator.html#operator+-eq +"TQPtrListIterator::operator--" tqptrlistiterator.html#operator-- +"TQPtrListIterator::operator-=" tqptrlistiterator.html#operator--eq +"TQPtrListIterator::operator=" tqptrlistiterator.html#operator-eq +"TQPtrListIterator::toFirst" tqptrlistiterator.html#toFirst +"TQPtrListIterator::toLast" tqptrlistiterator.html#toLast +"TQPtrListIterator::~TQPtrListIterator" tqptrlistiterator.html#~TQPtrListIterator +"TQPtrQueue" tqptrqueue.html +"TQPtrQueue::autoDelete" tqptrqueue.html#autoDelete +"TQPtrQueue::clear" tqptrqueue.html#clear +"TQPtrQueue::count" tqptrqueue.html#count +"TQPtrQueue::current" tqptrqueue.html#current +"TQPtrQueue::dequeue" tqptrqueue.html#dequeue +"TQPtrQueue::enqueue" tqptrqueue.html#enqueue +"TQPtrQueue::head" tqptrqueue.html#head +"TQPtrQueue::isEmpty" tqptrqueue.html#isEmpty +"TQPtrQueue::operator type *" tqptrqueue.html#operator-type-* +"TQPtrQueue::operator=" tqptrqueue.html#operator-eq +"TQPtrQueue::read" tqptrqueue.html#read +"TQPtrQueue::remove" tqptrqueue.html#remove +"TQPtrQueue::setAutoDelete" tqptrqueue.html#setAutoDelete +"TQPtrQueue::write" tqptrqueue.html#write +"TQPtrQueue::~TQPtrQueue" tqptrqueue.html#~TQPtrQueue +"TQPtrStack" tqptrstack.html +"TQPtrStack::autoDelete" tqptrstack.html#autoDelete +"TQPtrStack::clear" tqptrstack.html#clear +"TQPtrStack::count" tqptrstack.html#count +"TQPtrStack::current" tqptrstack.html#current +"TQPtrStack::isEmpty" tqptrstack.html#isEmpty +"TQPtrStack::operator type *" tqptrstack.html#operator-type-* +"TQPtrStack::operator=" tqptrstack.html#operator-eq +"TQPtrStack::pop" tqptrstack.html#pop +"TQPtrStack::push" tqptrstack.html#push +"TQPtrStack::read" tqptrstack.html#read +"TQPtrStack::remove" tqptrstack.html#remove +"TQPtrStack::setAutoDelete" tqptrstack.html#setAutoDelete +"TQPtrStack::top" tqptrstack.html#top +"TQPtrStack::write" tqptrstack.html#write +"TQPtrStack::~TQPtrStack" tqptrstack.html#~TQPtrStack +"TQPtrVector" tqptrvector.html +"TQPtrVector::at" tqptrvector.html#at +"TQPtrVector::bsearch" tqptrvector.html#bsearch +"TQPtrVector::clear" tqptrvector.html#clear +"TQPtrVector::compareItems" tqptrvector.html#compareItems +"TQPtrVector::contains" tqptrvector.html#contains +"TQPtrVector::containsRef" tqptrvector.html#containsRef +"TQPtrVector::count" tqptrvector.html#count +"TQPtrVector::data" tqptrvector.html#data +"TQPtrVector::fill" tqptrvector.html#fill +"TQPtrVector::find" tqptrvector.html#find +"TQPtrVector::findRef" tqptrvector.html#findRef +"TQPtrVector::insert" tqptrvector.html#insert +"TQPtrVector::isEmpty" tqptrvector.html#isEmpty +"TQPtrVector::isNull" tqptrvector.html#isNull +"TQPtrVector::operator=" tqptrvector.html#operator-eq +"TQPtrVector::operator==" tqptrvector.html#operator-eq-eq +"TQPtrVector::operator[]" tqptrvector.html#operator[] +"TQPtrVector::read" tqptrvector.html#read +"TQPtrVector::remove" tqptrvector.html#remove +"TQPtrVector::resize" tqptrvector.html#resize +"TQPtrVector::size" tqptrvector.html#size +"TQPtrVector::sort" tqptrvector.html#sort +"TQPtrVector::take" tqptrvector.html#take +"TQPtrVector::write" tqptrvector.html#write +"TQPtrVector::~TQPtrVector" tqptrvector.html#~TQPtrVector "QPushButton" ntqpushbutton.html "QPushButton::autoDefault" ntqpushbutton.html#autoDefault "QPushButton::autoDefault" ntqpushbutton.html#autoDefault-prop diff --git a/doc/html/listviews-example.html b/doc/html/listviews-example.html index 90f5c7037..7b3d668a6 100644 --- a/doc/html/listviews-example.html +++ b/doc/html/listviews-example.html @@ -55,7 +55,7 @@ and works like the main window of a mail client. #include <<a href="qstring-h.html">ntqstring.h</a>> #include <<a href="tqobject-h.html">tqobject.h</a>> #include <<a href="qdatetime-h.html">ntqdatetime.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> #include <<a href="qlistview-h.html">ntqlistview.h</a>> class TQListView; @@ -128,16 +128,16 @@ public: {} void addMessage( Message *m ) -<a name="x131"></a> { lstMessages.<a href="ntqptrlist.html#append">append</a>( m ); } +<a name="x131"></a> { lstMessages.<a href="tqptrlist.html#append">append</a>( m ); } <a href="ntqstring.html">TQString</a> folderName() { return fName; } -<a name="x132"></a> Message *firstMessage() { return lstMessages.<a href="ntqptrlist.html#first">first</a>(); } -<a name="x133"></a> Message *nextMessage() { return lstMessages.<a href="ntqptrlist.html#next">next</a>(); } +<a name="x132"></a> Message *firstMessage() { return lstMessages.<a href="tqptrlist.html#first">first</a>(); } +<a name="x133"></a> Message *nextMessage() { return lstMessages.<a href="tqptrlist.html#next">next</a>(); } protected: <a href="ntqstring.html">TQString</a> fName; - <a href="ntqptrlist.html">TQPtrList</a><Message> lstMessages; + <a href="tqptrlist.html">TQPtrList</a><Message> lstMessages; }; @@ -195,7 +195,7 @@ protected: <a href="ntqlabel.html">TQLabel</a> *message; <a href="ntqpopupmenu.html">TQPopupMenu</a>* menu; - <a href="ntqptrlist.html">TQPtrList</a><Folder> lstFolders; + <a href="tqptrlist.html">TQPtrList</a><Folder> lstFolders; protected slots: void slotFolderChanged( <a href="qlistviewitem.html">TQListViewItem</a>* ); @@ -366,7 +366,7 @@ void <a name="f210"></a>FolderListItem::insertSubFolders( const <a href="tqobjec message-><a href="ntqframe.html#setMargin">setMargin</a>( 5 ); <a href="tqvaluelist.html">TQValueList</a><int> lst; -<a name="x160"></a> lst.<a href="ntqptrlist.html#append">append</a>( 170 ); +<a name="x160"></a> lst.<a href="tqptrlist.html#append">append</a>( 170 ); <a href="ntqsplitter.html#setSizes">setSizes</a>( lst ); } diff --git a/doc/html/mdi-example.html b/doc/html/mdi-example.html index 7abea925d..52e941fa8 100644 --- a/doc/html/mdi-example.html +++ b/doc/html/mdi-example.html @@ -51,7 +51,7 @@ that it provides a Multiple Document Interface (MDI). #define APPLICATION_H #include <<a href="qmainwindow-h.html">ntqmainwindow.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> class TQTextEdit; class TQToolBar; diff --git a/doc/html/ntqapplication.html b/doc/html/ntqapplication.html index 22ce1183a..23534ff03 100644 --- a/doc/html/ntqapplication.html +++ b/doc/html/ntqapplication.html @@ -586,7 +586,7 @@ installed. </h3> Returns a list of all the widgets in the application. <p> The list is created using <tt>new</tt> and must be deleted by the caller. -<p> The list is empty (<a href="ntqptrlist.html#isEmpty">TQPtrList::isEmpty</a>()) if there are no widgets. +<p> The list is empty (<a href="tqptrlist.html#isEmpty">TQPtrList::isEmpty</a>()) if there are no widgets. <p> Note that some of the widgets may be hidden. <p> Example that updates all widgets: <pre> @@ -604,7 +604,7 @@ Returns a list of all the widgets in the application. file. <p> <b>Warning:</b> Delete the list as soon as you have finished using it. The widgets in the list may be deleted by someone else at any time. -<p> <p>See also <a href="#topLevelWidgets">topLevelWidgets</a>(), <a href="tqwidget.html#visible-prop">TQWidget::visible</a>, and <a href="ntqptrlist.html#isEmpty">TQPtrList::isEmpty</a>(). +<p> <p>See also <a href="#topLevelWidgets">topLevelWidgets</a>(), <a href="tqwidget.html#visible-prop">TQWidget::visible</a>, and <a href="tqptrlist.html#isEmpty">TQPtrList::isEmpty</a>(). <h3 class=fn><a href="ntqstring.html">TQString</a> <a name="applicationDirPath"></a>TQApplication::applicationDirPath () </h3> @@ -1638,7 +1638,7 @@ normally takes some time. Does nothing on other platforms. </h3> Returns a list of the top level widgets in the application. <p> The list is created using <tt>new</tt> and must be deleted by the caller. -<p> The list is empty (<a href="ntqptrlist.html#isEmpty">TQPtrList::isEmpty</a>()) if there are no top level +<p> The list is empty (<a href="tqptrlist.html#isEmpty">TQPtrList::isEmpty</a>()) if there are no top level widgets. <p> Note that some of the top level widgets may be hidden, for example the tooltip if no tooltip is currently shown. @@ -1658,7 +1658,7 @@ the tooltip if no tooltip is currently shown. <p> <b>Warning:</b> Delete the list as soon you have finished using it. The widgets in the list may be deleted by someone else at any time. -<p> <p>See also <a href="#allWidgets">allWidgets</a>(), <a href="tqwidget.html#isTopLevel-prop">TQWidget::isTopLevel</a>, <a href="tqwidget.html#visible-prop">TQWidget::visible</a>, and <a href="ntqptrlist.html#isEmpty">TQPtrList::isEmpty</a>(). +<p> <p>See also <a href="#allWidgets">allWidgets</a>(), <a href="tqwidget.html#isTopLevel-prop">TQWidget::isTopLevel</a>, <a href="tqwidget.html#visible-prop">TQWidget::visible</a>, and <a href="tqptrlist.html#isEmpty">TQPtrList::isEmpty</a>(). <h3 class=fn><a href="ntqstring.html">TQString</a> <a name="translate"></a>TQApplication::translate ( const char * context, const char * sourceText, const char * comment = 0, <a href="ntqapplication.html#Encoding-enum">Encoding</a> encoding = DefaultCodec ) const </h3><p><b>Note:</b> This function is <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> diff --git a/doc/html/ntqasciicache.html b/doc/html/ntqasciicache.html index 13df1f01c..0c71987ba 100644 --- a/doc/html/ntqasciicache.html +++ b/doc/html/ntqasciicache.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQAsciiCache class is a template class that provides a cache based on char* keys. <a href="#details">More...</a> <p><tt>#include <<a href="qasciicache-h.html">ntqasciicache.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p><a href="qasciicache-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -76,17 +76,17 @@ the least recently used items in the cache are removed. item, returns it, and by default marks it as being the most recently used item. <p> There are also methods to <a href="#remove">remove</a>() or <a href="#take">take</a>() an object from the -cache. Calling <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete(TRUE)</a> tells the cache to delete items that +cache. Calling <a href="tqptrcollection.html#setAutoDelete">setAutoDelete(TRUE)</a> tells the cache to delete items that are removed. The default is to not delete items when then are removed (i.e., remove() and take() are equivalent). <p> When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a <a href="shclass.html#shallow-copy">shallow copy</a>. It is possible to make the cache copy all of the item's data (known as a <a href="shclass.html#deep-copy">deep copy</a>) when an item is inserted. insert() calls the virtual -function <a href="ntqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. -Inherit a cache and reimplement <a href="ntqptrcollection.html#newItem">newItem</a>() if you want deep copies. +function <a href="tqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. +Inherit a cache and reimplement <a href="tqptrcollection.html#newItem">newItem</a>() if you want deep copies. <p> When removing a cache item the virtual function -<a href="ntqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. Its default implementation -in TQAsciiCache is to delete the item if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<a href="tqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. Its default implementation +in TQAsciiCache is to delete the item if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> There is a <a href="qasciicacheiterator.html">TQAsciiCacheIterator</a> which may be used to traverse the items in the cache in arbitrary order. <p> <p>See also <a href="qasciicacheiterator.html">TQAsciiCacheIterator</a>, <a href="ntqcache.html">TQCache</a>, <a href="ntqintcache.html">TQIntCache</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. @@ -122,19 +122,19 @@ All iterators that access this cache will be reset. <h3 class=fn>void <a name="clear"></a>TQAsciiCache::clear ()<tt> [virtual]</tt> </h3> -<p> Removes all items from the cache, and deletes them if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> has been +<p> Removes all items from the cache, and deletes them if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> has been enabled. <p> All cache iterators that operate on this cache are reset. <p> <p>See also <a href="#remove">remove</a>() and <a href="#take">take</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQAsciiCache::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the cache. <p> <p>See also <a href="#totalCost">totalCost</a>() and <a href="#size">size</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQAsciiCache::find ( const char * k, bool ref = TRUE ) const </h3> @@ -192,7 +192,7 @@ inserted last is returned. <p> Removes the item with key <em>k</em> and returns TRUE if the item was present in the cache; otherwise returns FALSE. <p> The item is deleted if auto-deletion has been enabled, i.e., if -you have called <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete(TRUE)</a>. +you have called <a href="tqptrcollection.html#setAutoDelete">setAutoDelete(TRUE)</a>. <p> If there are two or more items with equal keys, the one that was inserted last is removed. <p> All iterators that refer to the removed item are set to point to diff --git a/doc/html/ntqasciidict.html b/doc/html/ntqasciidict.html index 460792d7f..7c74e2021 100644 --- a/doc/html/ntqasciidict.html +++ b/doc/html/ntqasciidict.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQAsciiDict class is a template class that provides a dictionary based on char* keys. <a href="#details">More...</a> <p><tt>#include <<a href="qasciidict-h.html">ntqasciidict.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p><a href="qasciidict-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -107,10 +107,10 @@ performace as a TQAsciiDict. In this example we use a dictionary to keep track of the line edits we're using. We insert each line edit into the dictionary with a unique name and then access the line edits via the -dictionary. See <a href="ntqptrdict.html">TQPtrDict</a>, <a href="ntqintdict.html">TQIntDict</a> and <a href="ntqdict.html">TQDict</a>. +dictionary. See <a href="tqptrdict.html">TQPtrDict</a>, <a href="ntqintdict.html">TQIntDict</a> and <a href="ntqdict.html">TQDict</a>. <p> See TQDict for full details, including the choice of dictionary size, and how deletions are handled. -<p> <p>See also <a href="qasciidictiterator.html">TQAsciiDictIterator</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="ntqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="qasciidictiterator.html">TQAsciiDictIterator</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="tqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQAsciiDict"></a>TQAsciiDict::TQAsciiDict ( int size = 17, bool caseSensitive = TRUE, bool copyKeys = TRUE ) @@ -141,30 +141,30 @@ pointers are copied (shallow copy). <p> Removes all items from the dictionary and destroys it. <p> The items are deleted if auto-delete is enabled. <p> All iterators that access this dictionary will be reset. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>bool <a name="autoDelete"></a>TQPtrCollection::autoDelete () const </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQAsciiDict::clear ()<tt> [virtual]</tt> </h3> <p> Removes all items from the dictionary. -<p> The removed items are deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed items are deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that operate on dictionary are reset. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQAsciiDict::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the dictionary. <p> <p>See also <a href="#isEmpty">isEmpty</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQAsciiDict::find ( const char * key ) const </h3> @@ -200,7 +200,7 @@ otherwise it returns FALSE. dictionary. <p> This dictionary is first cleared and then each item in <em>dict</em> is inserted into this dictionary. Only the pointers are copied -(shallow copy) unless <a href="ntqptrcollection.html#newItem">newItem</a>() has been reimplemented(). +(shallow copy) unless <a href="tqptrcollection.html#newItem">newItem</a>() has been reimplemented(). <h3 class=fn>type * <a name="operator[]"></a>TQAsciiDict::operator[] ( const char * key ) const </h3> @@ -214,7 +214,7 @@ was most recently inserted will be found. <p> Equivalent to the <a href="#find">find</a>() function. <p> <p>See also <a href="#find">find</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQAsciiDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQAsciiDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a dictionary item from the stream <em>s</em> and returns a @@ -230,10 +230,10 @@ Returns TRUE if successful, i.e. if the key existed in the dictionary; otherwise returns FALSE. <p> If there are two or more items with equal keys, then the most recently inserted item will be removed. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary traversal order. -<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="replace"></a>TQAsciiDict::replace ( const char * key, const type * item ) </h3> @@ -276,7 +276,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>uint <a name="size"></a>TQAsciiDict::size () const @@ -296,16 +296,16 @@ distribution using <a href="ntqapplication.html#qDebug">tqDebug</a>(). </h3> <p> Takes the item associated with <em>key</em> out of the dictionary -without deleting it (even if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). +without deleting it (even if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). <p> If there are two or more items with equal keys, then the most recently inserted item will be taken. <p> Returns a pointer to the item taken out, or 0 if the key does not exist in the dictionary. <p> All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary traversal order. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQAsciiDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQAsciiDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> </h3> <p> Writes a dictionary item to the stream <em>s</em> and returns a diff --git a/doc/html/ntqcache.html b/doc/html/ntqcache.html index ed557bf54..da9c879d0 100644 --- a/doc/html/ntqcache.html +++ b/doc/html/ntqcache.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQCache class is a template class that provides a cache based on TQString keys. <a href="#details">More...</a> <p><tt>#include <<a href="qcache-h.html">ntqcache.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p><a href="qcache-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -79,16 +79,16 @@ operates on pointers to X, or X*. item, returns it, and by default marks it as being the most recently used item. <p> There are also methods to <a href="#remove">remove</a>() or <a href="#take">take</a>() an object from the -cache. Calling <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE) for a cache tells it to delete +cache. Calling <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE) for a cache tells it to delete items that are removed. The default is to not delete items when they are removed (i.e., remove() and take() are equivalent). <p> When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a <a href="shclass.html#shallow-copy">shallow copy</a>. It is possible to make the cache copy all of the item's data (known as a <a href="shclass.html#deep-copy">deep copy</a>) when an item is inserted. insert() calls the virtual -function <a href="ntqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. -Inherit a cache and reimplement <a href="ntqptrcollection.html#newItem">newItem</a>() if you want deep copies. +function <a href="tqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. +Inherit a cache and reimplement <a href="tqptrcollection.html#newItem">newItem</a>() if you want deep copies. <p> When removing a cache item, the virtual function -<a href="ntqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. The default +<a href="tqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. The default implementation deletes the item if auto-deletion is enabled, and does nothing otherwise. <p> There is a <a href="qcacheiterator.html">TQCacheIterator</a> that can be used to traverse the items @@ -127,7 +127,7 @@ that access this cache will be reset. </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQCache::clear ()<tt> [virtual]</tt> </h3> @@ -137,14 +137,14 @@ has been enabled. <p> All cache iterators that operate this on cache are reset. <p> <p>See also <a href="#remove">remove</a>() and <a href="#take">take</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQCache::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the cache. <p> <p>See also <a href="#totalCost">totalCost</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQCache::find ( const <a href="ntqstring.html">TQString</a> & k, bool ref = TRUE ) const </h3> @@ -201,7 +201,7 @@ inserted last is returned. <p> Removes the item associated with <em>k</em>, and returns TRUE if the item was present in the cache; otherwise returns FALSE. <p> The item is deleted if auto-deletion has been enabled, i.e., if -you have called <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE). +you have called <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE). <p> If there are two or more items with equal keys, the one that was inserted last is removed. <p> All iterators that refer to the removed item are set to point to @@ -223,7 +223,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>void <a name="setMaxCost"></a>TQCache::setMaxCost ( int m ) diff --git a/doc/html/ntqdict.html b/doc/html/ntqdict.html index cfca2729d..e8eade989 100644 --- a/doc/html/ntqdict.html +++ b/doc/html/ntqdict.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } dictionary based on TQString keys. <a href="#details">More...</a> <p><tt>#include <<a href="qdict-h.html">ntqdict.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p><a href="qdict-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -99,7 +99,7 @@ returns TRUE. You can change an item's value with <a href="#replace">replace</a> are looked up with <a href="#operator[]">operator[]</a>(), or with <a href="#find">find</a>() which return a pointer to the value or 0 if the given key does not exist. You can take an item out of the dictionary with <a href="#take">take</a>(). -<p> Calling <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE) for a dictionary tells it to delete +<p> Calling <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE) for a dictionary tells it to delete items that are removed. The default behaviour is not to delete items when they are removed. <p> When an item is inserted, the key is converted (hashed) to an @@ -115,11 +115,11 @@ the same dictionary. copied, not the item itself, i.e. a <a href="shclass.html#shallow-copy">shallow copy</a> is made. It is possible to make the dictionary copy all of the item's data (a <a href="shclass.html#deep-copy">deep copy</a>) when an item is inserted. <a href="#insert">insert</a>() calls the virtual -function <a href="ntqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. -Inherit a dictionary and reimplement <a href="ntqptrcollection.html#newItem">newItem</a>() if you want deep +function <a href="tqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. +Inherit a dictionary and reimplement <a href="tqptrcollection.html#newItem">newItem</a>() if you want deep copies. <p> When removing a dictionary item, the virtual function -<a href="ntqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. TQDict's default +<a href="tqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. TQDict's default implementation is to delete the item if auto-deletion is enabled. <p> Example #1: <pre> @@ -191,7 +191,7 @@ letter the style will simply have no accelerator. If the first letter of the style name is not in the dictionary we use it for the accelerator and add it to the dictionary. Finally we create a <a href="ntqaction.html">TQAction</a> for each style. -<p> <p>See also <a href="qdictiterator.html">TQDictIterator</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="ntqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="qdictiterator.html">TQDictIterator</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="tqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQDict"></a>TQDict::TQDict ( int size = 17, bool caseSensitive = TRUE ) @@ -216,32 +216,32 @@ pointers are copied (shallow copy). </h3> <p> Removes all items from the dictionary and destroys it. If -<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() is TRUE, each value is deleted. All iterators that +<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() is TRUE, each value is deleted. All iterators that access this dictionary will be reset. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>bool <a name="autoDelete"></a>TQPtrCollection::autoDelete () const </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQDict::clear ()<tt> [virtual]</tt> </h3> <p> Removes all items from the dictionary. -<p> The removed items are deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed items are deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that operate on the dictionary are reset. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQDict::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the dictionary. <p> <p>See also <a href="#isEmpty">isEmpty</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQDict::find ( const <a href="ntqstring.html">TQString</a> & key ) const </h3> @@ -276,7 +276,7 @@ otherwise returns FALSE. dictionary. <p> This dictionary is first cleared, then each item in <em>dict</em> is inserted into this dictionary. Only the pointers are copied -(shallow copy), unless <a href="ntqptrcollection.html#newItem">newItem</a>() has been reimplemented. +(shallow copy), unless <a href="tqptrcollection.html#newItem">newItem</a>() has been reimplemented. <h3 class=fn>type * <a name="operator[]"></a>TQDict::operator[] ( const <a href="ntqstring.html">TQString</a> & key ) const </h3> @@ -288,7 +288,7 @@ recently inserted item will be found. <p> Equivalent to the <a href="#find">find</a>() function. <p> <p>See also <a href="#find">find</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a dictionary item from the stream <em>s</em> and returns a @@ -304,10 +304,10 @@ successful, i.e. if the item is in the dictionary; otherwise returns FALSE. <p> If there are two or more items with equal keys, then the last item that was inserted will be removed. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary's traversal order. -<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="replace"></a>TQDict::replace ( const <a href="ntqstring.html">TQString</a> & key, const type * item ) </h3> @@ -350,7 +350,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>uint <a name="size"></a>TQDict::size () const @@ -370,16 +370,16 @@ distribution using <a href="ntqapplication.html#qDebug">tqDebug</a>(). </h3> <p> Takes the item with <em>key</em> out of the dictionary without deleting -it (even if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). +it (even if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). <p> If there are two or more items with equal keys, then the last item that was inserted will be taken. <p> Returns a pointer to the item taken out, or 0 if the key does not exist in the dictionary. <p> All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary traversal order. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> </h3> <p> Writes a dictionary item to the stream <em>s</em> and returns a diff --git a/doc/html/ntqdir.html b/doc/html/ntqdir.html index 5066c4f95..89372c3bf 100644 --- a/doc/html/ntqdir.html +++ b/doc/html/ntqdir.html @@ -451,7 +451,7 @@ list is owned by the TQDir object and will be reused on the next call to <a href="#entryInfoList">entryInfoList</a>() for the same TQDir instance. If you want to keep the entries of the list after a subsequent call to this function you must copy them. -<p> Note: TQFileInfoList is really a <a href="ntqptrlist.html">TQPtrList</a><TQFileInfo>. +<p> Note: TQFileInfoList is really a <a href="tqptrlist.html">TQPtrList</a><TQFileInfo>. <p> <p>See also <a href="#entryList">entryList</a>(), <a href="#setNameFilter">setNameFilter</a>(), <a href="#setSorting">setSorting</a>(), and <a href="#setFilter">setFilter</a>(). <p>Examples: <a href="dirview-example.html#x1666">dirview/dirview.cpp</a> and <a href="fileiconview-example.html#x812">fileiconview/qfileiconview.cpp</a>. @@ -470,7 +470,7 @@ list is owned by the TQDir object and will be reused on the next call to <a href="#entryInfoList">entryInfoList</a>() for the same TQDir instance. If you want to keep the entries of the list after a subsequent call to this function you must copy them. -<p> Note: TQFileInfoList is really a <a href="ntqptrlist.html">TQPtrList</a><TQFileInfo>. +<p> Note: TQFileInfoList is really a <a href="tqptrlist.html">TQPtrList</a><TQFileInfo>. <p> <p>See also <a href="#entryList">entryList</a>(), <a href="#setNameFilter">setNameFilter</a>(), <a href="#setSorting">setSorting</a>(), and <a href="#setFilter">setFilter</a>(). <h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="entryList"></a>TQDir::entryList ( const <a href="ntqstring.html">TQString</a> & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const<tt> [virtual]</tt> diff --git a/doc/html/ntqdockarea.html b/doc/html/ntqdockarea.html index 439d7a1ee..83db618fe 100644 --- a/doc/html/ntqdockarea.html +++ b/doc/html/ntqdockarea.html @@ -164,7 +164,7 @@ area. <h3 class=fn>int <a name="count"></a>TQDockArea::count () const </h3><p>Returns the number of dock windows in the dock area. See the <a href="ntqdockarea.html#count-prop">"count"</a> property for details. -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQDockWindow> <a name="dockWindowList"></a>TQDockArea::dockWindowList () const +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQDockWindow> <a name="dockWindowList"></a>TQDockArea::dockWindowList () const </h3> Returns a list of the dock windows in the dock area. diff --git a/doc/html/ntqintcache.html b/doc/html/ntqintcache.html index 8bd43af2e..61587a90e 100644 --- a/doc/html/ntqintcache.html +++ b/doc/html/ntqintcache.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQIntCache class is a template class that provides a cache based on long keys. <a href="#details">More...</a> <p><tt>#include <<a href="qintcache-h.html">ntqintcache.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p><a href="qintcache-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -74,14 +74,14 @@ the cache are removed. item, returns it, and by default marks it as being the most recently used item. <p> There are also methods to <a href="#remove">remove</a>() or <a href="#take">take</a>() an object from the -cache. Calling <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE) for a cache tells it to delete +cache. Calling <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE) for a cache tells it to delete items that are removed. The default is to not delete items when they are removed (i.e. remove() and take() are equivalent). <p> When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a <a href="shclass.html#shallow-copy">shallow copy</a>. It is possible to make the cache copy all of the item's data (known as a <a href="shclass.html#deep-copy">deep copy</a>) when an item is inserted. insert() calls the virtual -function <a href="ntqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. -Inherit a dictionary and reimplement <a href="ntqptrcollection.html#newItem">newItem</a>() if you want deep +function <a href="tqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. +Inherit a dictionary and reimplement <a href="tqptrcollection.html#newItem">newItem</a>() if you want deep copies. <p> When removing a cache item, the item will be automatically deleted if auto-deletion is enabled. @@ -119,14 +119,14 @@ auto-deletion has been enabled. <p> All cache iterators that operate this on cache are reset. <p> <p>See also <a href="#remove">remove</a>() and <a href="#take">take</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQIntCache::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the cache. <p> <p>See also <a href="#totalCost">totalCost</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQIntCache::find ( long k, bool ref = TRUE ) const </h3> @@ -182,7 +182,7 @@ inserted most recently is returned. <p> Removes the item associated with <em>k</em>, and returns TRUE if the item was present in the cache; otherwise returns FALSE. <p> The item is deleted if auto-deletion has been enabled, i.e. if you -have called <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE). +have called <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE). <p> If there are two or more items with equal keys, the one that was inserted most recently is removed. <p> All iterators that refer to the removed item are set to point to diff --git a/doc/html/ntqintdict.html b/doc/html/ntqintdict.html index 9b13c49e3..83339e183 100644 --- a/doc/html/ntqintdict.html +++ b/doc/html/ntqintdict.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQIntDict class is a template class that provides a dictionary based on long keys. <a href="#details">More...</a> <p><tt>#include <<a href="qintdict-h.html">ntqintdict.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p><a href="qintdict-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -104,7 +104,7 @@ pointer. Dictionaries provide very fast insertion and lookup. <p> See <a href="ntqdict.html">TQDict</a> for full details, including the choice of dictionary size, and how deletions are handled. -<p> <p>See also <a href="qintdictiterator.html">TQIntDictIterator</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="qintdictiterator.html">TQIntDictIterator</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="tqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQIntDict"></a>TQIntDict::TQIntDict ( int size = 17 ) @@ -127,30 +127,30 @@ pointers are copied (shallow copy). <p> Removes all items from the dictionary and destroys it. <p> All iterators that access this dictionary will be reset. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>bool <a name="autoDelete"></a>TQPtrCollection::autoDelete () const </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQIntDict::clear ()<tt> [virtual]</tt> </h3> <p> Removes all items from the dictionary. -<p> The removed items are deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed items are deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that access this dictionary will be reset. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQIntDict::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the dictionary. <p> <p>See also <a href="#isEmpty">isEmpty</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQIntDict::find ( long key ) const </h3> @@ -185,7 +185,7 @@ item will be accessible using <a href="#operator[]">operator[]</a>(). dictionary. <p> This dictionary is first cleared and then each item in <em>dict</em> is inserted into this dictionary. Only the pointers are copied -(shallow copy), unless <a href="ntqptrcollection.html#newItem">newItem</a>() has been reimplemented. +(shallow copy), unless <a href="tqptrcollection.html#newItem">newItem</a>() has been reimplemented. <h3 class=fn>type * <a name="operator[]"></a>TQIntDict::operator[] ( long key ) const </h3> @@ -197,7 +197,7 @@ recently inserted item will be found. <p> Equivalent to the <a href="#find">find</a>() function. <p> <p>See also <a href="#find">find</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQIntDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQIntDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a dictionary item from the stream <em>s</em> and returns a @@ -213,11 +213,11 @@ Returns TRUE if successful, i.e. if the <em>key</em> is in the dictionary; otherwise returns FALSE. <p> If there are two or more items with equal keys, then the most recently inserted item will be removed. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary's traversal order. -<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <p>Example: <a href="bigtable-example.html#x1287">table/bigtable/main.cpp</a>. <h3 class=fn>void <a name="replace"></a>TQIntDict::replace ( long key, const type * item ) @@ -263,7 +263,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>uint <a name="size"></a>TQIntDict::size () const @@ -283,17 +283,17 @@ distribution using <a href="ntqapplication.html#qDebug">tqDebug</a>(). </h3> <p> Takes the item associated with <em>key</em> out of the dictionary -without deleting it (even if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). +without deleting it (even if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). <p> If there are two or more items with equal keys, then the most recently inserted item will be taken. <p> Returns a pointer to the item taken out, or 0 if the key does not exist in the dictionary. <p> All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary's traversing order. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <p>Example: <a href="bigtable-example.html#x1289">table/bigtable/main.cpp</a>. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQIntDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQIntDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> </h3> <p> Writes a dictionary item to the stream <em>s</em> and returns a diff --git a/doc/html/ntqmainwindow.html b/doc/html/ntqmainwindow.html index ce9fbc405..c70ddd854 100644 --- a/doc/html/ntqmainwindow.html +++ b/doc/html/ntqmainwindow.html @@ -525,7 +525,7 @@ within its dock area or moved to another dock area (including the <a href="ntqt.html#Dock-enum">Minimized</a> and <tt>TearOff</tt> dock areas). <p> <p>See also <a href="#getLocation">getLocation</a>(). -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQDockWindow> <a name="dockWindows"></a>TQMainWindow::dockWindows ( <a href="ntqt.html#Dock-enum">Dock</a> dock ) const +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQDockWindow> <a name="dockWindows"></a>TQMainWindow::dockWindows ( <a href="ntqt.html#Dock-enum">Dock</a> dock ) const </h3> Returns a list of all the dock windows which are in the <em>dock</em> dock area, regardless of their state. @@ -533,7 +533,7 @@ dock area, regardless of their state. windows but these are returned along with the visible dock windows. -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQDockWindow> <a name="dockWindows-2"></a>TQMainWindow::dockWindows () const +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQDockWindow> <a name="dockWindows-2"></a>TQMainWindow::dockWindows () const </h3> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Returns the list of dock windows which belong to this main window, @@ -807,7 +807,7 @@ tip group too. <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. <p> -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQToolBar> <a name="toolBars"></a>TQMainWindow::toolBars ( <a href="ntqt.html#Dock-enum">Dock</a> dock ) const +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQToolBar> <a name="toolBars"></a>TQMainWindow::toolBars ( <a href="ntqt.html#Dock-enum">Dock</a> dock ) const </h3> Returns a list of all the toolbars which are in the <em>dock</em> dock area, regardless of their state. diff --git a/doc/html/ntqmemarray.html b/doc/html/ntqmemarray.html index cba6fdccf..de5956cca 100644 --- a/doc/html/ntqmemarray.html +++ b/doc/html/ntqmemarray.html @@ -101,7 +101,7 @@ only deal with simple types (i.e. C++ types, structs, and classes that have no constructors, destructors, or virtual functions). TQMemArray uses bitwise operations to copy and compare array elements. -<p> The <a href="ntqptrvector.html">TQPtrVector</a> collection class is also a kind of array. Like most +<p> The <a href="tqptrvector.html">TQPtrVector</a> collection class is also a kind of array. Like most <a href="collection.html">collection classes</a>, it uses pointers to the contained items. <p> TQMemArray uses <a href="shclass.html">explicit sharing</a> with a diff --git a/doc/html/ntqstrlist.html b/doc/html/ntqstrlist.html index 1c2db91ab..a5a72f043 100644 --- a/doc/html/ntqstrlist.html +++ b/doc/html/ntqstrlist.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/doc/qptrlist.doc:1044 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrlist.doc:1044 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQStrList class provides a doubly-linked list of char*. <a href="#details">More...</a> <p><tt>#include <<a href="qstrlist-h.html">ntqstrlist.h</a>></tt> -<p>Inherits <a href="ntqptrlist.html">TQPtrList</a><char>. +<p>Inherits <a href="tqptrlist.html">TQPtrList</a><char>. <p>Inherited by <a href="qstrilist.html">TQStrIList</a>. <p><a href="qstrlist-members.html">List of all member functions.</a> <h2>Public Members</h2> @@ -52,7 +52,7 @@ The TQStrList class provides a doubly-linked list of char*. <p> If you want a string list of <a href="ntqstring.html">TQString</a>s use <a href="ntqstringlist.html">TQStringList</a>. -<p> This class is a <a href="ntqptrlist.html">TQPtrList</a><char> instance (a list of char*). +<p> This class is a <a href="tqptrlist.html">TQPtrList</a><char> instance (a list of char*). <p> TQStrList can make deep or shallow copies of the strings that are inserted. <p> A <a href="shclass.html#deep-copy">deep copy</a> means that memory is allocated for the string and then @@ -67,12 +67,12 @@ shallow copies is that they consume far less memory than deep copies. It is also much faster to copy a pointer (typically 4 or 8 bytes) than to copy string data. <p> A TQStrList that operates on deep copies will, by default, turn on -auto-deletion (see <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>()). Thus, by default TQStrList +auto-deletion (see <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>()). Thus, by default TQStrList will deallocate any string copies it allocates. -<p> The virtual <a href="ntqptrlist.html#compareItems">compareItems</a>() function is reimplemented and does a -case-sensitive string comparison. The <a href="ntqptrlist.html#inSort">inSort</a>() function will +<p> The virtual <a href="tqptrlist.html#compareItems">compareItems</a>() function is reimplemented and does a +case-sensitive string comparison. The <a href="tqptrlist.html#inSort">inSort</a>() function will insert strings in sorted order. In general it is fastest to insert -the strings as they come and <a href="ntqptrlist.html#sort">sort</a>() at the end; inSort() is useful +the strings as they come and <a href="tqptrlist.html#sort">sort</a>() at the end; inSort() is useful when you just have to add a few extra strings to an already sorted list. <p> The <a href="qstrlistiterator.html">TQStrListIterator</a> class is an iterator for TQStrList. diff --git a/doc/html/ntqtabbar.html b/doc/html/ntqtabbar.html index a9cb783bc..6c2b28f1f 100644 --- a/doc/html/ntqtabbar.html +++ b/doc/html/ntqtabbar.html @@ -285,7 +285,7 @@ Returns the tab with id <em>id</em> or 0 if there is no such tab. Returns the tab at position <em>index</em>. <p> <p>See also <a href="#indexOf">indexOf</a>(). -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQTab> * <a name="tabList"></a>TQTabBar::tabList ()<tt> [protected]</tt> +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQTab> * <a name="tabList"></a>TQTabBar::tabList ()<tt> [protected]</tt> </h3> The list of <a href="qtab.html">TQTab</a> objects in the tab bar. <p> This list is unlikely to be in the order that the TQTab elements diff --git a/doc/html/ntqurloperator.html b/doc/html/ntqurloperator.html index 918e42c2b..b42a245ce 100644 --- a/doc/html/ntqurloperator.html +++ b/doc/html/ntqurloperator.html @@ -180,7 +180,7 @@ state changes. <em>state</em> describes the new state, which is a <p> <em>data</em> is a string that describes the change of the connection. This can be used to display a message to the user. -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQNetworkOperation> <a name="copy"></a>TQUrlOperator::copy ( const <a href="ntqstring.html">TQString</a> & from, const <a href="ntqstring.html">TQString</a> & to, bool move = FALSE, bool toPath = TRUE )<tt> [virtual]</tt> +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQNetworkOperation> <a name="copy"></a>TQUrlOperator::copy ( const <a href="ntqstring.html">TQString</a> & from, const <a href="ntqstring.html">TQString</a> & to, bool move = FALSE, bool toPath = TRUE )<tt> [virtual]</tt> </h3> Copies the file <em>from</em> to <em>to</em>. If <em>move</em> is TRUE, the file is moved (copied and removed). <em>from</em> must point to a file and <em>to</em> @@ -479,7 +479,7 @@ operation object which contains all the information about the operation, including the state. <p> <p>See also <a href="qnetworkoperation.html">TQNetworkOperation</a> and <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>. -<h3 class=fn>void <a name="startedNextCopy"></a>TQUrlOperator::startedNextCopy ( const <a href="ntqptrlist.html">TQPtrList</a><TQNetworkOperation> & lst )<tt> [signal]</tt> +<h3 class=fn>void <a name="startedNextCopy"></a>TQUrlOperator::startedNextCopy ( const <a href="tqptrlist.html">TQPtrList</a><TQNetworkOperation> & lst )<tt> [signal]</tt> </h3> <p> This signal is emitted if <a href="#copy">copy</a>() starts a new copy operation. <em>lst</em> contains all TQNetworkOperations related to this copy diff --git a/doc/html/ntqworkspace.html b/doc/html/ntqworkspace.html index 8a5e7a45f..86f10f3e5 100644 --- a/doc/html/ntqworkspace.html +++ b/doc/html/ntqworkspace.html @@ -190,8 +190,8 @@ Returns a list of all windows. If <em>order</em> is CreationOrder had been inserted into the workspace. If <em>order</em> is StackingOrder the windows are listed in their stacking order, with the topmost window being the last window in the list. -<p> TQWidgetList is the same as <a href="ntqptrlist.html">TQPtrList</a><TQWidget>. -<p> <p>See also <a href="ntqptrlist.html">TQPtrList</a>. +<p> TQWidgetList is the same as <a href="tqptrlist.html">TQPtrList</a><TQWidget>. +<p> <p>See also <a href="tqptrlist.html">TQPtrList</a>. <p>Example: <a href="mdi-example.html#x2094">mdi/application.cpp</a>. <h3 class=fn>TQWidgetList <a name="windowList-2"></a>TQWorkspace::windowList () const diff --git a/doc/html/porting.html b/doc/html/porting.html index e0850be85..db22665e8 100644 --- a/doc/html/porting.html +++ b/doc/html/porting.html @@ -305,7 +305,7 @@ new code. <li> <a href="tqcanvasitem.html#enabled">TQCanvasItem::enabled</a>() const <li> <a href="tqcanvasitem.html#selected">TQCanvasItem::selected</a>() const <li> <a href="tqcanvasitem.html#visible">TQCanvasItem::visible</a>() const -<li> <a href="tqcanvaspixmaparray.html#TQCanvasPixmapArray">TQCanvasPixmapArray::TQCanvasPixmapArray</a>( <a href="ntqptrlist.html">TQPtrList</a><TQPixmap> list, TQPtrList<TQPoint> hotspots ) +<li> <a href="tqcanvaspixmaparray.html#TQCanvasPixmapArray">TQCanvasPixmapArray::TQCanvasPixmapArray</a>( <a href="tqptrlist.html">TQPtrList</a><TQPixmap> list, TQPtrList<TQPoint> hotspots ) <li> <a href="tqcanvaspixmaparray.html#operator!">TQCanvasPixmapArray::operator!</a>() <li> <a href="qcolorgroup.html#TQColorGroup">TQColorGroup::TQColorGroup</a>( const <a href="ntqcolor.html">TQColor</a> & foreground, const TQColor & background, const TQColor & light, const TQColor & dark, const TQColor & mid, const TQColor & text, const TQColor & base ) <li> <a href="ntqcombobox.html#autoResize">TQComboBox::autoResize</a>() const @@ -417,12 +417,12 @@ names are no longer avaialable. <p> <center><table cellpadding="4" cellspacing="2" border="0"> <tr bgcolor="#a2c511"> <th valign="top">Old Name <th valign="top">New Name <th valign="top">New Header File <tr bgcolor="#f0f0f0"> <td valign="top">TQArray <td valign="top"><a href="ntqmemarray.html">TQMemArray</a> <td valign="top"><tt><ntqmemarray.h></tt> -<tr bgcolor="#d0d0d0"> <td valign="top">TQCollection <td valign="top"><a href="ntqptrcollection.html">TQPtrCollection</a> <td valign="top"><tt><ntqptrcollection.h></tt> -<tr bgcolor="#f0f0f0"> <td valign="top">TQList <td valign="top"><a href="ntqptrlist.html">TQPtrList</a> <td valign="top"><tt><ntqptrlist.h></tt> -<tr bgcolor="#d0d0d0"> <td valign="top">TQListIterator <td valign="top"><a href="qptrlistiterator.html">TQPtrListIterator</a> <td valign="top"><tt><ntqptrlist.h></tt> -<tr bgcolor="#f0f0f0"> <td valign="top">TQQueue <td valign="top"><a href="ntqptrqueue.html">TQPtrQueue</a> <td valign="top"><tt><ntqptrqueue.h></tt> -<tr bgcolor="#d0d0d0"> <td valign="top">TQStack <td valign="top"><a href="ntqptrstack.html">TQPtrStack</a> <td valign="top"><tt><ntqptrstack.h></tt> -<tr bgcolor="#f0f0f0"> <td valign="top">TQVector <td valign="top"><a href="ntqptrvector.html">TQPtrVector</a> <td valign="top"><tt><ntqptrvector.h></tt> +<tr bgcolor="#d0d0d0"> <td valign="top">TQCollection <td valign="top"><a href="tqptrcollection.html">TQPtrCollection</a> <td valign="top"><tt><tqptrcollection.h></tt> +<tr bgcolor="#f0f0f0"> <td valign="top">TQList <td valign="top"><a href="tqptrlist.html">TQPtrList</a> <td valign="top"><tt><tqptrlist.h></tt> +<tr bgcolor="#d0d0d0"> <td valign="top">TQListIterator <td valign="top"><a href="tqptrlistiterator.html">TQPtrListIterator</a> <td valign="top"><tt><tqptrlist.h></tt> +<tr bgcolor="#f0f0f0"> <td valign="top">TQQueue <td valign="top"><a href="tqptrqueue.html">TQPtrQueue</a> <td valign="top"><tt><tqptrqueue.h></tt> +<tr bgcolor="#d0d0d0"> <td valign="top">TQStack <td valign="top"><a href="tqptrstack.html">TQPtrStack</a> <td valign="top"><tt><tqptrstack.h></tt> +<tr bgcolor="#f0f0f0"> <td valign="top">TQVector <td valign="top"><a href="tqptrvector.html">TQPtrVector</a> <td valign="top"><tt><tqptrvector.h></tt> </table></center> <p> <h2> <a href="ntqbuttongroup.html">TQButtonGroup</a> </h2> @@ -650,7 +650,7 @@ modal dialog instead. <p> <h2> TQSortedList </h2> <a name="19"></a><p> The TQSortedList class is now obsolete. Consider using a <a href="ntqdict.html">TQDict</a>, a <a href="tqmap.html">TQMap</a> -or a plain <a href="ntqptrlist.html">TQPtrList</a> instead. +or a plain <a href="tqptrlist.html">TQPtrList</a> instead. <p> <h2> TQTableView </h2> <a name="20"></a><p> The TQTableView class has been obsoleted and is no longer a part of the diff --git a/doc/html/qasciicache-members.html b/doc/html/qasciicache-members.html index dc6e43560..7bc0d2e46 100644 --- a/doc/html/qasciicache-members.html +++ b/doc/html/qasciicache-members.html @@ -36,18 +36,18 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqasciicache.html#~TQAsciiCache">~TQAsciiCache</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() <li><a href="ntqasciicache.html#clear">clear</a>() <li><a href="ntqasciicache.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() <li><a href="ntqasciicache.html#find">find</a>() <li><a href="ntqasciicache.html#insert">insert</a>() <li><a href="ntqasciicache.html#isEmpty">isEmpty</a>() <li><a href="ntqasciicache.html#maxCost">maxCost</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() <li><a href="ntqasciicache.html#operator[]">operator[]</a>() <li><a href="ntqasciicache.html#remove">remove</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() <li><a href="ntqasciicache.html#setMaxCost">setMaxCost</a>() <li><a href="ntqasciicache.html#size">size</a>() <li><a href="ntqasciicache.html#statistics">statistics</a>() diff --git a/doc/html/qasciidict-members.html b/doc/html/qasciidict-members.html index e9da96799..d5cac0965 100644 --- a/doc/html/qasciidict-members.html +++ b/doc/html/qasciidict-members.html @@ -37,21 +37,21 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqasciidict.html#TQAsciiDict">TQAsciiDict</a>() <li><a href="ntqasciidict.html#~TQAsciiDict">~TQAsciiDict</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() <li><a href="ntqasciidict.html#clear">clear</a>() <li><a href="ntqasciidict.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() <li><a href="ntqasciidict.html#find">find</a>() <li><a href="ntqasciidict.html#insert">insert</a>() <li><a href="ntqasciidict.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() <li><a href="ntqasciidict.html#operator-eq">operator=</a>() <li><a href="ntqasciidict.html#operator[]">operator[]</a>() <li><a href="ntqasciidict.html#read">read</a>() <li><a href="ntqasciidict.html#remove">remove</a>() <li><a href="ntqasciidict.html#replace">replace</a>() <li><a href="ntqasciidict.html#resize">resize</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() <li><a href="ntqasciidict.html#size">size</a>() <li><a href="ntqasciidict.html#statistics">statistics</a>() <li><a href="ntqasciidict.html#take">take</a>() diff --git a/doc/html/qcache-members.html b/doc/html/qcache-members.html index 05dd1bc8e..e6de67e7d 100644 --- a/doc/html/qcache-members.html +++ b/doc/html/qcache-members.html @@ -36,18 +36,18 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqcache.html#~TQCache">~TQCache</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() <li><a href="ntqcache.html#clear">clear</a>() <li><a href="ntqcache.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() <li><a href="ntqcache.html#find">find</a>() <li><a href="ntqcache.html#insert">insert</a>() <li><a href="ntqcache.html#isEmpty">isEmpty</a>() <li><a href="ntqcache.html#maxCost">maxCost</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() <li><a href="ntqcache.html#operator[]">operator[]</a>() <li><a href="ntqcache.html#remove">remove</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() <li><a href="ntqcache.html#setMaxCost">setMaxCost</a>() <li><a href="ntqcache.html#size">size</a>() <li><a href="ntqcache.html#statistics">statistics</a>() diff --git a/doc/html/qdict-members.html b/doc/html/qdict-members.html index 103ab44b6..124d9ab91 100644 --- a/doc/html/qdict-members.html +++ b/doc/html/qdict-members.html @@ -37,21 +37,21 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqdict.html#TQDict">TQDict</a>() <li><a href="ntqdict.html#~TQDict">~TQDict</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() <li><a href="ntqdict.html#clear">clear</a>() <li><a href="ntqdict.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() <li><a href="ntqdict.html#find">find</a>() <li><a href="ntqdict.html#insert">insert</a>() <li><a href="ntqdict.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() <li><a href="ntqdict.html#operator-eq">operator=</a>() <li><a href="ntqdict.html#operator[]">operator[]</a>() <li><a href="ntqdict.html#read">read</a>() <li><a href="ntqdict.html#remove">remove</a>() <li><a href="ntqdict.html#replace">replace</a>() <li><a href="ntqdict.html#resize">resize</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() <li><a href="ntqdict.html#size">size</a>() <li><a href="ntqdict.html#statistics">statistics</a>() <li><a href="ntqdict.html#take">take</a>() diff --git a/doc/html/qdockarea-h.html b/doc/html/qdockarea-h.html index 50d7c1133..655170550 100644 --- a/doc/html/qdockarea-h.html +++ b/doc/html/qdockarea-h.html @@ -79,7 +79,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqdockwindow.h" #include "ntqlayout.h" #include "tqvaluelist.h" diff --git a/doc/html/qfontmanager_qws-h.html b/doc/html/qfontmanager_qws-h.html index 1ea95d141..40f47881d 100644 --- a/doc/html/qfontmanager_qws-h.html +++ b/doc/html/qfontmanager_qws-h.html @@ -77,7 +77,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqfont.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include <private/qtextengine_p.h> #endif // QT_H diff --git a/doc/html/qintcache-members.html b/doc/html/qintcache-members.html index c6762f89e..570dbd6d7 100644 --- a/doc/html/qintcache-members.html +++ b/doc/html/qintcache-members.html @@ -36,18 +36,18 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqintcache.html#~TQIntCache">~TQIntCache</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() <li><a href="ntqintcache.html#clear">clear</a>() <li><a href="ntqintcache.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() <li><a href="ntqintcache.html#find">find</a>() <li><a href="ntqintcache.html#insert">insert</a>() <li><a href="ntqintcache.html#isEmpty">isEmpty</a>() <li><a href="ntqintcache.html#maxCost">maxCost</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() <li><a href="ntqintcache.html#operator[]">operator[]</a>() <li><a href="ntqintcache.html#remove">remove</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() <li><a href="ntqintcache.html#setMaxCost">setMaxCost</a>() <li><a href="ntqintcache.html#size">size</a>() <li><a href="ntqintcache.html#statistics">statistics</a>() diff --git a/doc/html/qintdict-members.html b/doc/html/qintdict-members.html index 7839c1dd4..d84ef48a5 100644 --- a/doc/html/qintdict-members.html +++ b/doc/html/qintdict-members.html @@ -37,21 +37,21 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqintdict.html#TQIntDict">TQIntDict</a>() <li><a href="ntqintdict.html#~TQIntDict">~TQIntDict</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() <li><a href="ntqintdict.html#clear">clear</a>() <li><a href="ntqintdict.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() <li><a href="ntqintdict.html#find">find</a>() <li><a href="ntqintdict.html#insert">insert</a>() <li><a href="ntqintdict.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() <li><a href="ntqintdict.html#operator-eq">operator=</a>() <li><a href="ntqintdict.html#operator[]">operator[]</a>() <li><a href="ntqintdict.html#read">read</a>() <li><a href="ntqintdict.html#remove">remove</a>() <li><a href="ntqintdict.html#replace">replace</a>() <li><a href="ntqintdict.html#resize">resize</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() <li><a href="ntqintdict.html#size">size</a>() <li><a href="ntqintdict.html#statistics">statistics</a>() <li><a href="ntqintdict.html#take">take</a>() diff --git a/doc/html/qlistviewitemiterator.html b/doc/html/qlistviewitemiterator.html index 907797f9e..cc82a4750 100644 --- a/doc/html/qlistviewitemiterator.html +++ b/doc/html/qlistviewitemiterator.html @@ -72,21 +72,21 @@ sibling, the next sibling of the parent becomes current. been selected by the user, storing pointers to the items in a TQPtrList: <pre> - <a href="ntqptrlist.html">TQPtrList</a><TQListViewItem> lst; + <a href="tqptrlist.html">TQPtrList</a><TQListViewItem> lst; TQListViewItemIterator it( myListView ); while ( it.<a href="#current">current</a>() ) { if ( it.<a href="#current">current</a>()->isSelected() ) - lst.<a href="ntqptrlist.html#append">append</a>( it.<a href="#current">current</a>() ); + lst.<a href="tqptrlist.html#append">append</a>( it.<a href="#current">current</a>() ); ++it; } </pre> <p> An alternative approach is to use an <a href="#IteratorFlag-enum">IteratorFlag</a>: <pre> - <a href="ntqptrlist.html">TQPtrList</a><TQListViewItem> lst; + <a href="tqptrlist.html">TQPtrList</a><TQListViewItem> lst; TQListViewItemIterator it( myListView, TQListViewItemIterator::<a href="#IteratorFlag-enum">Selected</a> ); while ( it.<a href="#current">current</a>() ) { - lst.<a href="ntqptrlist.html#append">append</a>( it.<a href="#current">current</a>() ); + lst.<a href="tqptrlist.html#append">append</a>( it.<a href="#current">current</a>() ); ++it; } </pre> diff --git a/doc/html/qmacmime.html b/doc/html/qmacmime.html index 03ccf64e5..04208b70e 100644 --- a/doc/html/qmacmime.html +++ b/doc/html/qmacmime.html @@ -96,7 +96,7 @@ globally accessed list of available convertors. Destroys a conversion object, removing it from the global list of available convertors. -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQMacMime> <a name="all"></a>TQMacMime::all ( TQMacMimeType t )<tt> [static]</tt> +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQMacMime> <a name="all"></a>TQMacMime::all ( TQMacMimeType t )<tt> [static]</tt> </h3> Returns a list of all currently defined TQMacMime objects of type <em>t</em>. diff --git a/doc/html/qmainwindow-h.html b/doc/html/qmainwindow-h.html index 7fbbea8a2..f87aab5b8 100644 --- a/doc/html/qmainwindow-h.html +++ b/doc/html/qmainwindow-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqwidget.h" #include "ntqtoolbar.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqtextstream.h" #endif // QT_H diff --git a/doc/html/qmenudata-h.html b/doc/html/qmenudata-h.html index fb6dfa4de..d06d5dcc9 100644 --- a/doc/html/qmenudata-h.html +++ b/doc/html/qmenudata-h.html @@ -154,7 +154,7 @@ private: // Disabled copy constructor and operator= #endif }; -#include "ntqptrlist.h" +#include "tqptrlist.h" typedef TQPtrList<TQMenuItem> TQMenuItemList; typedef TQPtrListIterator<TQMenuItem> TQMenuItemListIt; diff --git a/doc/html/qmime-h.html b/doc/html/qmime-h.html index 015b91e5f..c9a402b3e 100644 --- a/doc/html/qmime-h.html +++ b/doc/html/qmime-h.html @@ -161,7 +161,7 @@ private: #if defined(TQ_WS_WIN) #ifndef QT_H -#include "ntqptrlist.h" // down here for GCC 2.7.* compatibility +#include "tqptrlist.h" // down here for GCC 2.7.* compatibility #endif // QT_H /* @@ -197,7 +197,7 @@ public: #if defined(TQ_WS_MAC) #ifndef QT_H -#include "ntqptrlist.h" // down here for GCC 2.7.* compatibility +#include "tqptrlist.h" // down here for GCC 2.7.* compatibility #endif // QT_H /* diff --git a/doc/html/qptrlist-members.html b/doc/html/qptrlist-members.html deleted file mode 100644 index 0c964296c..000000000 --- a/doc/html/qptrlist-members.html +++ /dev/null @@ -1,90 +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/ntqptrlist.h:61 --> -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>TQPtrList 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 TQPtrList</h1> - -<p>This is the complete list of member functions for -<a href="ntqptrlist.html">TQPtrList</a>, including inherited members. - -<ul> -<li><a href="ntqptrlist.html#TQPtrList">TQPtrList</a>() -<li><a href="ntqptrlist.html#~TQPtrList">~TQPtrList</a>() -<li><a href="ntqptrlist.html#append">append</a>() -<li><a href="ntqptrlist.html#at">at</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrlist.html#clear">clear</a>() -<li><a href="ntqptrlist.html#compareItems">compareItems</a>() -<li><a href="ntqptrlist.html#contains">contains</a>() -<li><a href="ntqptrlist.html#containsRef">containsRef</a>() -<li><a href="ntqptrlist.html#count">count</a>() -<li><a href="ntqptrlist.html#current">current</a>() -<li><a href="ntqptrlist.html#currentNode">currentNode</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrlist.html#find">find</a>() -<li><a href="ntqptrlist.html#findNext">findNext</a>() -<li><a href="ntqptrlist.html#findNextRef">findNextRef</a>() -<li><a href="ntqptrlist.html#findRef">findRef</a>() -<li><a href="ntqptrlist.html#first">first</a>() -<li><a href="ntqptrlist.html#getFirst">getFirst</a>() -<li><a href="ntqptrlist.html#getLast">getLast</a>() -<li><a href="ntqptrlist.html#inSort">inSort</a>() -<li><a href="ntqptrlist.html#insert">insert</a>() -<li><a href="ntqptrlist.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrlist.html#last">last</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrlist.html#next">next</a>() -<li><a href="ntqptrlist.html#operator!-eq">operator!=</a>() -<li><a href="ntqptrlist.html#operator-eq">operator=</a>() -<li><a href="ntqptrlist.html#operator-eq-eq">operator==</a>() -<li><a href="ntqptrlist.html#prepend">prepend</a>() -<li><a href="ntqptrlist.html#prev">prev</a>() -<li><a href="ntqptrlist.html#read">read</a>() -<li><a href="ntqptrlist.html#remove">remove</a>() -<li><a href="ntqptrlist.html#removeFirst">removeFirst</a>() -<li><a href="ntqptrlist.html#removeLast">removeLast</a>() -<li><a href="ntqptrlist.html#removeNode">removeNode</a>() -<li><a href="ntqptrlist.html#removeRef">removeRef</a>() -<li><a href="ntqptrlist.html#replace">replace</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrlist.html#sort">sort</a>() -<li><a href="ntqptrlist.html#take">take</a>() -<li><a href="ntqptrlist.html#takeNode">takeNode</a>() -<li><a href="ntqptrlist.html#toVector">toVector</a>() -<li><a href="ntqptrlist.html#write">write</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/qptrvector-members.html b/doc/html/qptrvector-members.html deleted file mode 100644 index a5a5a3b85..000000000 --- a/doc/html/qptrvector-members.html +++ /dev/null @@ -1,76 +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/ntqptrvector.h:48 --> -<html> -<head> -<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>TQPtrVector 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 TQPtrVector</h1> - -<p>This is the complete list of member functions for -<a href="ntqptrvector.html">TQPtrVector</a>, including inherited members. - -<ul> -<li><a href="ntqptrvector.html#TQPtrVector">TQPtrVector</a>() -<li><a href="ntqptrvector.html#~TQPtrVector">~TQPtrVector</a>() -<li><a href="ntqptrvector.html#at">at</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrvector.html#bsearch">bsearch</a>() -<li><a href="ntqptrvector.html#clear">clear</a>() -<li><a href="ntqptrvector.html#compareItems">compareItems</a>() -<li><a href="ntqptrvector.html#contains">contains</a>() -<li><a href="ntqptrvector.html#containsRef">containsRef</a>() -<li><a href="ntqptrvector.html#count">count</a>() -<li><a href="ntqptrvector.html#data">data</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrvector.html#fill">fill</a>() -<li><a href="ntqptrvector.html#find">find</a>() -<li><a href="ntqptrvector.html#findRef">findRef</a>() -<li><a href="ntqptrvector.html#insert">insert</a>() -<li><a href="ntqptrvector.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrvector.html#isNull">isNull</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrvector.html#operator-eq">operator=</a>() -<li><a href="ntqptrvector.html#operator-eq-eq">operator==</a>() -<li><a href="ntqptrvector.html#operator[]">operator[]</a>() -<li><a href="ntqptrvector.html#read">read</a>() -<li><a href="ntqptrvector.html#remove">remove</a>() -<li><a href="ntqptrvector.html#resize">resize</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrvector.html#size">size</a>() -<li><a href="ntqptrvector.html#sort">sort</a>() -<li><a href="ntqptrvector.html#take">take</a>() -<li><a href="ntqptrvector.html#write">write</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/qstrilist-members.html b/doc/html/qstrilist-members.html index 2a58e291d..3f4fd3dce 100644 --- a/doc/html/qstrilist-members.html +++ b/doc/html/qstrilist-members.html @@ -37,48 +37,48 @@ body { background: #ffffff; color: black; } <ul> <li><a href="qstrilist.html#TQStrIList">TQStrIList</a>() <li><a href="qstrilist.html#~TQStrIList">~TQStrIList</a>() -<li><a href="ntqptrlist.html#append">append</a>() -<li><a href="ntqptrlist.html#at">at</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrlist.html#clear">clear</a>() -<li><a href="ntqptrlist.html#compareItems">compareItems</a>() -<li><a href="ntqptrlist.html#contains">contains</a>() -<li><a href="ntqptrlist.html#containsRef">containsRef</a>() -<li><a href="ntqptrlist.html#count">count</a>() -<li><a href="ntqptrlist.html#current">current</a>() -<li><a href="ntqptrlist.html#currentNode">currentNode</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrlist.html#find">find</a>() -<li><a href="ntqptrlist.html#findNext">findNext</a>() -<li><a href="ntqptrlist.html#findNextRef">findNextRef</a>() -<li><a href="ntqptrlist.html#findRef">findRef</a>() -<li><a href="ntqptrlist.html#first">first</a>() -<li><a href="ntqptrlist.html#getFirst">getFirst</a>() -<li><a href="ntqptrlist.html#getLast">getLast</a>() -<li><a href="ntqptrlist.html#inSort">inSort</a>() -<li><a href="ntqptrlist.html#insert">insert</a>() -<li><a href="ntqptrlist.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrlist.html#last">last</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrlist.html#next">next</a>() -<li><a href="ntqptrlist.html#operator!-eq">operator!=</a>() +<li><a href="tqptrlist.html#append">append</a>() +<li><a href="tqptrlist.html#at">at</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrlist.html#clear">clear</a>() +<li><a href="tqptrlist.html#compareItems">compareItems</a>() +<li><a href="tqptrlist.html#contains">contains</a>() +<li><a href="tqptrlist.html#containsRef">containsRef</a>() +<li><a href="tqptrlist.html#count">count</a>() +<li><a href="tqptrlist.html#current">current</a>() +<li><a href="tqptrlist.html#currentNode">currentNode</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrlist.html#find">find</a>() +<li><a href="tqptrlist.html#findNext">findNext</a>() +<li><a href="tqptrlist.html#findNextRef">findNextRef</a>() +<li><a href="tqptrlist.html#findRef">findRef</a>() +<li><a href="tqptrlist.html#first">first</a>() +<li><a href="tqptrlist.html#getFirst">getFirst</a>() +<li><a href="tqptrlist.html#getLast">getLast</a>() +<li><a href="tqptrlist.html#inSort">inSort</a>() +<li><a href="tqptrlist.html#insert">insert</a>() +<li><a href="tqptrlist.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlist.html#last">last</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrlist.html#next">next</a>() +<li><a href="tqptrlist.html#operator!-eq">operator!=</a>() <li><a href="ntqstrlist.html#operator-eq">operator=</a>() -<li><a href="ntqptrlist.html#operator-eq-eq">operator==</a>() -<li><a href="ntqptrlist.html#prepend">prepend</a>() -<li><a href="ntqptrlist.html#prev">prev</a>() -<li><a href="ntqptrlist.html#read">read</a>() -<li><a href="ntqptrlist.html#remove">remove</a>() -<li><a href="ntqptrlist.html#removeFirst">removeFirst</a>() -<li><a href="ntqptrlist.html#removeLast">removeLast</a>() -<li><a href="ntqptrlist.html#removeNode">removeNode</a>() -<li><a href="ntqptrlist.html#removeRef">removeRef</a>() -<li><a href="ntqptrlist.html#replace">replace</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrlist.html#sort">sort</a>() -<li><a href="ntqptrlist.html#take">take</a>() -<li><a href="ntqptrlist.html#takeNode">takeNode</a>() -<li><a href="ntqptrlist.html#toVector">toVector</a>() -<li><a href="ntqptrlist.html#write">write</a>() +<li><a href="tqptrlist.html#operator-eq-eq">operator==</a>() +<li><a href="tqptrlist.html#prepend">prepend</a>() +<li><a href="tqptrlist.html#prev">prev</a>() +<li><a href="tqptrlist.html#read">read</a>() +<li><a href="tqptrlist.html#remove">remove</a>() +<li><a href="tqptrlist.html#removeFirst">removeFirst</a>() +<li><a href="tqptrlist.html#removeLast">removeLast</a>() +<li><a href="tqptrlist.html#removeNode">removeNode</a>() +<li><a href="tqptrlist.html#removeRef">removeRef</a>() +<li><a href="tqptrlist.html#replace">replace</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrlist.html#sort">sort</a>() +<li><a href="tqptrlist.html#take">take</a>() +<li><a href="tqptrlist.html#takeNode">takeNode</a>() +<li><a href="tqptrlist.html#toVector">toVector</a>() +<li><a href="tqptrlist.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qstrilist.html b/doc/html/qstrilist.html index 417f7c6be..26b2b8876 100644 --- a/doc/html/qstrilist.html +++ b/doc/html/qstrilist.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/doc/qptrlist.doc:1125 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrlist.doc:1125 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -49,12 +49,12 @@ The TQStrIList class provides a doubly-linked list of char* with case-insensitive comparison. <p> -<p> This class is a <a href="ntqptrlist.html">TQPtrList</a><char> instance (a list of char*). +<p> This class is a <a href="tqptrlist.html">TQPtrList</a><char> instance (a list of char*). <p> TQStrIList is identical to <a href="ntqstrlist.html">TQStrList</a> except that the virtual -<a href="ntqptrlist.html#compareItems">compareItems</a>() function is reimplemented to compare strings -case-insensitively. The <a href="ntqptrlist.html#inSort">inSort</a>() function inserts strings in a +<a href="tqptrlist.html#compareItems">compareItems</a>() function is reimplemented to compare strings +case-insensitively. The <a href="tqptrlist.html#inSort">inSort</a>() function inserts strings in a sorted order. In general it is fastest to insert the strings as -they come and <a href="ntqptrlist.html#sort">sort</a>() at the end; inSort() is useful when you just +they come and <a href="tqptrlist.html#sort">sort</a>() at the end; inSort() is useful when you just have to add a few extra strings to an already sorted list. <p> The <a href="qstrlistiterator.html">TQStrListIterator</a> class works for TQStrIList. <p> <p>See also <a href="ntqstringlist.html">TQStringList</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. diff --git a/doc/html/qstrlist-h.html b/doc/html/qstrlist-h.html index 4624cfca1..798614f49 100644 --- a/doc/html/qstrlist-h.html +++ b/doc/html/qstrlist-h.html @@ -79,7 +79,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqstring.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqdatastream.h" #endif // QT_H diff --git a/doc/html/qstrlist-members.html b/doc/html/qstrlist-members.html index 48fcff3a5..2fe06f41f 100644 --- a/doc/html/qstrlist-members.html +++ b/doc/html/qstrlist-members.html @@ -37,48 +37,48 @@ body { background: #ffffff; color: black; } <ul> <li><a href="ntqstrlist.html#TQStrList">TQStrList</a>() <li><a href="ntqstrlist.html#~TQStrList">~TQStrList</a>() -<li><a href="ntqptrlist.html#append">append</a>() -<li><a href="ntqptrlist.html#at">at</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrlist.html#clear">clear</a>() -<li><a href="ntqptrlist.html#compareItems">compareItems</a>() -<li><a href="ntqptrlist.html#contains">contains</a>() -<li><a href="ntqptrlist.html#containsRef">containsRef</a>() -<li><a href="ntqptrlist.html#count">count</a>() -<li><a href="ntqptrlist.html#current">current</a>() -<li><a href="ntqptrlist.html#currentNode">currentNode</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrlist.html#find">find</a>() -<li><a href="ntqptrlist.html#findNext">findNext</a>() -<li><a href="ntqptrlist.html#findNextRef">findNextRef</a>() -<li><a href="ntqptrlist.html#findRef">findRef</a>() -<li><a href="ntqptrlist.html#first">first</a>() -<li><a href="ntqptrlist.html#getFirst">getFirst</a>() -<li><a href="ntqptrlist.html#getLast">getLast</a>() -<li><a href="ntqptrlist.html#inSort">inSort</a>() -<li><a href="ntqptrlist.html#insert">insert</a>() -<li><a href="ntqptrlist.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrlist.html#last">last</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrlist.html#next">next</a>() -<li><a href="ntqptrlist.html#operator!-eq">operator!=</a>() +<li><a href="tqptrlist.html#append">append</a>() +<li><a href="tqptrlist.html#at">at</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrlist.html#clear">clear</a>() +<li><a href="tqptrlist.html#compareItems">compareItems</a>() +<li><a href="tqptrlist.html#contains">contains</a>() +<li><a href="tqptrlist.html#containsRef">containsRef</a>() +<li><a href="tqptrlist.html#count">count</a>() +<li><a href="tqptrlist.html#current">current</a>() +<li><a href="tqptrlist.html#currentNode">currentNode</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrlist.html#find">find</a>() +<li><a href="tqptrlist.html#findNext">findNext</a>() +<li><a href="tqptrlist.html#findNextRef">findNextRef</a>() +<li><a href="tqptrlist.html#findRef">findRef</a>() +<li><a href="tqptrlist.html#first">first</a>() +<li><a href="tqptrlist.html#getFirst">getFirst</a>() +<li><a href="tqptrlist.html#getLast">getLast</a>() +<li><a href="tqptrlist.html#inSort">inSort</a>() +<li><a href="tqptrlist.html#insert">insert</a>() +<li><a href="tqptrlist.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlist.html#last">last</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrlist.html#next">next</a>() +<li><a href="tqptrlist.html#operator!-eq">operator!=</a>() <li><a href="ntqstrlist.html#operator-eq">operator=</a>() -<li><a href="ntqptrlist.html#operator-eq-eq">operator==</a>() -<li><a href="ntqptrlist.html#prepend">prepend</a>() -<li><a href="ntqptrlist.html#prev">prev</a>() -<li><a href="ntqptrlist.html#read">read</a>() -<li><a href="ntqptrlist.html#remove">remove</a>() -<li><a href="ntqptrlist.html#removeFirst">removeFirst</a>() -<li><a href="ntqptrlist.html#removeLast">removeLast</a>() -<li><a href="ntqptrlist.html#removeNode">removeNode</a>() -<li><a href="ntqptrlist.html#removeRef">removeRef</a>() -<li><a href="ntqptrlist.html#replace">replace</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrlist.html#sort">sort</a>() -<li><a href="ntqptrlist.html#take">take</a>() -<li><a href="ntqptrlist.html#takeNode">takeNode</a>() -<li><a href="ntqptrlist.html#toVector">toVector</a>() -<li><a href="ntqptrlist.html#write">write</a>() +<li><a href="tqptrlist.html#operator-eq-eq">operator==</a>() +<li><a href="tqptrlist.html#prepend">prepend</a>() +<li><a href="tqptrlist.html#prev">prev</a>() +<li><a href="tqptrlist.html#read">read</a>() +<li><a href="tqptrlist.html#remove">remove</a>() +<li><a href="tqptrlist.html#removeFirst">removeFirst</a>() +<li><a href="tqptrlist.html#removeLast">removeLast</a>() +<li><a href="tqptrlist.html#removeNode">removeNode</a>() +<li><a href="tqptrlist.html#removeRef">removeRef</a>() +<li><a href="tqptrlist.html#replace">replace</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrlist.html#sort">sort</a>() +<li><a href="tqptrlist.html#take">take</a>() +<li><a href="tqptrlist.html#takeNode">takeNode</a>() +<li><a href="tqptrlist.html#toVector">toVector</a>() +<li><a href="tqptrlist.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qstrlistiterator-members.html b/doc/html/qstrlistiterator-members.html index c4f095fc8..2a9c4af48 100644 --- a/doc/html/qstrlistiterator-members.html +++ b/doc/html/qstrlistiterator-members.html @@ -35,21 +35,21 @@ body { background: #ffffff; color: black; } <a href="qstrlistiterator.html">TQStrListIterator</a>, including inherited members. <ul> -<li><a href="qptrlistiterator.html#atFirst">atFirst</a>() -<li><a href="qptrlistiterator.html#atLast">atLast</a>() -<li><a href="qptrlistiterator.html#count">count</a>() -<li><a href="qptrlistiterator.html#current">current</a>() -<li><a href="qptrlistiterator.html#isEmpty">isEmpty</a>() -<li><a href="qptrlistiterator.html#operator-type-*">operator type *</a>() -<li><a href="qptrlistiterator.html#operator()">operator()</a>() -<li><a href="qptrlistiterator.html#operator*">operator*</a>() -<li><a href="qptrlistiterator.html#operator++">operator++</a>() -<li><a href="qptrlistiterator.html#operator+-eq">operator+=</a>() -<li><a href="qptrlistiterator.html#operator--">operator--</a>() -<li><a href="qptrlistiterator.html#operator--eq">operator-=</a>() -<li><a href="qptrlistiterator.html#operator-eq">operator=</a>() -<li><a href="qptrlistiterator.html#toFirst">toFirst</a>() -<li><a href="qptrlistiterator.html#toLast">toLast</a>() +<li><a href="tqptrlistiterator.html#atFirst">atFirst</a>() +<li><a href="tqptrlistiterator.html#atLast">atLast</a>() +<li><a href="tqptrlistiterator.html#count">count</a>() +<li><a href="tqptrlistiterator.html#current">current</a>() +<li><a href="tqptrlistiterator.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlistiterator.html#operator-type-*">operator type *</a>() +<li><a href="tqptrlistiterator.html#operator()">operator()</a>() +<li><a href="tqptrlistiterator.html#operator*">operator*</a>() +<li><a href="tqptrlistiterator.html#operator++">operator++</a>() +<li><a href="tqptrlistiterator.html#operator+-eq">operator+=</a>() +<li><a href="tqptrlistiterator.html#operator--">operator--</a>() +<li><a href="tqptrlistiterator.html#operator--eq">operator-=</a>() +<li><a href="tqptrlistiterator.html#operator-eq">operator=</a>() +<li><a href="tqptrlistiterator.html#toFirst">toFirst</a>() +<li><a href="tqptrlistiterator.html#toLast">toLast</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qstrlistiterator.html b/doc/html/qstrlistiterator.html index 77fb6185c..920d3d980 100644 --- a/doc/html/qstrlistiterator.html +++ b/doc/html/qstrlistiterator.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/doc/qptrlist.doc:1232 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrlist.doc:1232 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } and TQStrIList classes. <a href="#details">More...</a> <p><tt>#include <<a href="qstrlist-h.html">ntqstrlist.h</a>></tt> -<p>Inherits <a href="qptrlistiterator.html">TQPtrListIterator</a><char>. +<p>Inherits <a href="tqptrlistiterator.html">TQPtrListIterator</a><char>. <p><a href="qstrlistiterator-members.html">List of all member functions.</a> <hr><a name="details"></a><h2>Detailed Description</h2> @@ -43,7 +43,7 @@ and TQStrIList classes. The TQStrListIterator class is an iterator for the <a href="ntqstrlist.html">TQStrList</a> and <a href="qstrilist.html">TQStrIList</a> classes. <p> -<p> This class is a <a href="qptrlistiterator.html">TQPtrListIterator</a><char> instance. It can traverse +<p> This class is a <a href="tqptrlistiterator.html">TQPtrListIterator</a><char> instance. It can traverse the strings in the TQStrList and TQStrIList classes. <p>See also <a href="tools.html">Non-GUI Classes</a>. diff --git a/doc/html/qstylesheet-h.html b/doc/html/qstylesheet-h.html index 09f042485..32f9d8632 100644 --- a/doc/html/qstylesheet-h.html +++ b/doc/html/qstylesheet-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqstring.h" #include "tqvaluelist.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqdict.h" #include "tqobject.h" #endif // QT_H diff --git a/doc/html/qt-template-lib.html b/doc/html/qt-template-lib.html index 296778444..a96e9b7f0 100644 --- a/doc/html/qt-template-lib.html +++ b/doc/html/qt-template-lib.html @@ -51,11 +51,11 @@ of the STL container API. Compared with the STL, TQTL has no platform differences, but is often a little slower and often expands to less object code. <p> If you cannot make copies of the objects you want to store you should -use <a href="ntqptrcollection.html">TQPtrCollection</a> and friends, all of which operate on pointers +use <a href="tqptrcollection.html">TQPtrCollection</a> and friends, all of which operate on pointers rather than values. This applies, for example, to all classes derived from <a href="tqobject.html">TQObject</a>. A <a href="tqobject.html">TQObject</a> does not have a copy constructor, so using it as value is impossible. You may choose to store pointers to -TQObjects in a <a href="tqvaluelist.html">TQValueList</a>, but using <a href="ntqptrlist.html">TQPtrList</a> directly seems to be the +TQObjects in a <a href="tqvaluelist.html">TQValueList</a>, but using <a href="tqptrlist.html">TQPtrList</a> directly seems to be the better choice for this kind of application domain. TQPtrList, like all other TQPtrCollection based containers, provides far more sanity checking than a speed-optimized value based container. @@ -76,7 +76,7 @@ your data's class. <a href="ntqstring.html">TQString</a> and all simple C++ types, such as int, bool or double. <p> The TQt Template Library is designed for speed. Iterators are extremely fast. To achieve this performance, less error checking is done than in -the <a href="ntqptrcollection.html">TQPtrCollection</a> based containers. A TQTL container, for example, +the <a href="tqptrcollection.html">TQPtrCollection</a> based containers. A TQTL container, for example, does not track any associated iterators. This makes certain validity checks, for example when removing items, impossible to perform automatically, but does lead to extremely good performance. diff --git a/doc/html/qt.dcf b/doc/html/qt.dcf index e6530294d..85fcc0afa 100644 --- a/doc/html/qt.dcf +++ b/doc/html/qt.dcf @@ -5805,189 +5805,189 @@ <section ref="qprogressdialog-members.html" title="List of All Member Functions"/> <section ref="qprogressdialog-h.html" title="Header File"/> </section> -<section ref="ntqptrcollection.html" title="QPtrCollection Class Reference"> - <keyword ref="ntqptrcollection.html">QPtrCollection</keyword> - <keyword ref="ntqptrcollection.html#Item">Item</keyword> - <keyword ref="ntqptrcollection.html#autoDelete">autoDelete</keyword> - <keyword ref="ntqptrcollection.html#clear">clear</keyword> - <keyword ref="ntqptrcollection.html#count">count</keyword> - <keyword ref="ntqptrcollection.html#deleteItem">deleteItem</keyword> - <keyword ref="ntqptrcollection.html#newItem">newItem</keyword> - <keyword ref="ntqptrcollection.html#setAutoDelete">setAutoDelete</keyword> - <keyword ref="ntqptrcollection.html#~QPtrCollection">~QPtrCollection</keyword> - <section ref="qptrcollection-members.html" title="List of All Member Functions"/> - <section ref="qptrcollection-h.html" title="Header File"/> -</section> -<section ref="ntqptrdict.html" title="QPtrDict Class Reference"> - <keyword ref="ntqptrdict.html">QPtrDict</keyword> - <keyword ref="ntqptrdict.html#clear">clear</keyword> - <keyword ref="ntqptrdict.html#count">count</keyword> - <keyword ref="ntqptrdict.html#find">find</keyword> - <keyword ref="ntqptrdict.html#insert">insert</keyword> - <keyword ref="ntqptrdict.html#isEmpty">isEmpty</keyword> - <keyword ref="ntqptrdict.html#operator-eq">operator=</keyword> - <keyword ref="ntqptrdict.html#operator[]">operator[]</keyword> - <keyword ref="ntqptrdict.html#read">read</keyword> - <keyword ref="ntqptrdict.html#remove">remove</keyword> - <keyword ref="ntqptrdict.html#replace">replace</keyword> - <keyword ref="ntqptrdict.html#resize">resize</keyword> - <keyword ref="ntqptrdict.html#size">size</keyword> - <keyword ref="ntqptrdict.html#statistics">statistics</keyword> - <keyword ref="ntqptrdict.html#take">take</keyword> - <keyword ref="ntqptrdict.html#write">write</keyword> - <keyword ref="ntqptrdict.html#~QPtrDict">~QPtrDict</keyword> - <section ref="qptrdict-members.html" title="List of All Member Functions"/> - <section ref="qptrdict-h.html" title="Header File"/> -</section> -<section ref="qptrdictiterator.html" title="QPtrDictIterator Class Reference"> - <keyword ref="qptrdictiterator.html">QPtrDictIterator</keyword> - <keyword ref="qptrdictiterator.html#count">count</keyword> - <keyword ref="qptrdictiterator.html#current">current</keyword> - <keyword ref="qptrdictiterator.html#currentKey">currentKey</keyword> - <keyword ref="qptrdictiterator.html#isEmpty">isEmpty</keyword> - <keyword ref="qptrdictiterator.html#operator-type-*">operator type *</keyword> - <keyword ref="qptrdictiterator.html#operator()">operator()</keyword> - <keyword ref="qptrdictiterator.html#operator++">operator++</keyword> - <keyword ref="qptrdictiterator.html#operator+-eq">operator+=</keyword> - <keyword ref="qptrdictiterator.html#toFirst">toFirst</keyword> - <keyword ref="qptrdictiterator.html#~QPtrDictIterator">~QPtrDictIterator</keyword> - <section ref="qptrdictiterator-members.html" title="List of All Member Functions"/> - <section ref="qptrdict-h.html" title="Header File"/> -</section> -<section ref="ntqptrlist.html" title="QPtrList Class Reference"> - <keyword ref="ntqptrlist.html">QPtrList</keyword> - <keyword ref="ntqptrlist.html#append">append</keyword> - <keyword ref="ntqptrlist.html#at">at</keyword> - <keyword ref="ntqptrlist.html#clear">clear</keyword> - <keyword ref="ntqptrlist.html#compareItems">compareItems</keyword> - <keyword ref="ntqptrlist.html#contains">contains</keyword> - <keyword ref="ntqptrlist.html#containsRef">containsRef</keyword> - <keyword ref="ntqptrlist.html#count">count</keyword> - <keyword ref="ntqptrlist.html#current">current</keyword> - <keyword ref="ntqptrlist.html#currentNode">currentNode</keyword> - <keyword ref="ntqptrlist.html#find">find</keyword> - <keyword ref="ntqptrlist.html#findNext">findNext</keyword> - <keyword ref="ntqptrlist.html#findNextRef">findNextRef</keyword> - <keyword ref="ntqptrlist.html#findRef">findRef</keyword> - <keyword ref="ntqptrlist.html#first">first</keyword> - <keyword ref="ntqptrlist.html#getFirst">getFirst</keyword> - <keyword ref="ntqptrlist.html#getLast">getLast</keyword> - <keyword ref="ntqptrlist.html#inSort">inSort</keyword> - <keyword ref="ntqptrlist.html#insert">insert</keyword> - <keyword ref="ntqptrlist.html#isEmpty">isEmpty</keyword> - <keyword ref="ntqptrlist.html#last">last</keyword> - <keyword ref="ntqptrlist.html#next">next</keyword> - <keyword ref="ntqptrlist.html#operator!-eq">operator!=</keyword> - <keyword ref="ntqptrlist.html#operator-eq">operator=</keyword> - <keyword ref="ntqptrlist.html#operator-eq-eq">operator==</keyword> - <keyword ref="ntqptrlist.html#prepend">prepend</keyword> - <keyword ref="ntqptrlist.html#prev">prev</keyword> - <keyword ref="ntqptrlist.html#read">read</keyword> - <keyword ref="ntqptrlist.html#remove">remove</keyword> - <keyword ref="ntqptrlist.html#removeFirst">removeFirst</keyword> - <keyword ref="ntqptrlist.html#removeLast">removeLast</keyword> - <keyword ref="ntqptrlist.html#removeNode">removeNode</keyword> - <keyword ref="ntqptrlist.html#removeRef">removeRef</keyword> - <keyword ref="ntqptrlist.html#replace">replace</keyword> - <keyword ref="ntqptrlist.html#sort">sort</keyword> - <keyword ref="ntqptrlist.html#take">take</keyword> - <keyword ref="ntqptrlist.html#takeNode">takeNode</keyword> - <keyword ref="ntqptrlist.html#toVector">toVector</keyword> - <keyword ref="ntqptrlist.html#write">write</keyword> - <keyword ref="ntqptrlist.html#~QPtrList">~QPtrList</keyword> - <section ref="qptrlist-members.html" title="List of All Member Functions"/> - <section ref="qptrlist-h.html" title="Header File"/> -</section> -<section ref="qptrlistiterator.html" title="QPtrListIterator Class Reference"> - <keyword ref="qptrlistiterator.html">QPtrListIterator</keyword> - <keyword ref="qptrlistiterator.html#atFirst">atFirst</keyword> - <keyword ref="qptrlistiterator.html#atLast">atLast</keyword> - <keyword ref="qptrlistiterator.html#count">count</keyword> - <keyword ref="qptrlistiterator.html#current">current</keyword> - <keyword ref="qptrlistiterator.html#isEmpty">isEmpty</keyword> - <keyword ref="qptrlistiterator.html#operator-type-*">operator type *</keyword> - <keyword ref="qptrlistiterator.html#operator()">operator()</keyword> - <keyword ref="qptrlistiterator.html#operator*">operator*</keyword> - <keyword ref="qptrlistiterator.html#operator++">operator++</keyword> - <keyword ref="qptrlistiterator.html#operator+-eq">operator+=</keyword> - <keyword ref="qptrlistiterator.html#operator--">operator--</keyword> - <keyword ref="qptrlistiterator.html#operator--eq">operator-=</keyword> - <keyword ref="qptrlistiterator.html#operator-eq">operator=</keyword> - <keyword ref="qptrlistiterator.html#toFirst">toFirst</keyword> - <keyword ref="qptrlistiterator.html#toLast">toLast</keyword> - <keyword ref="qptrlistiterator.html#~QPtrListIterator">~QPtrListIterator</keyword> - <section ref="qptrlistiterator-members.html" title="List of All Member Functions"/> - <section ref="qptrlist-h.html" title="Header File"/> -</section> -<section ref="ntqptrqueue.html" title="QPtrQueue Class Reference"> - <keyword ref="ntqptrqueue.html">QPtrQueue</keyword> - <keyword ref="ntqptrqueue.html#autoDelete">autoDelete</keyword> - <keyword ref="ntqptrqueue.html#clear">clear</keyword> - <keyword ref="ntqptrqueue.html#count">count</keyword> - <keyword ref="ntqptrqueue.html#current">current</keyword> - <keyword ref="ntqptrqueue.html#dequeue">dequeue</keyword> - <keyword ref="ntqptrqueue.html#enqueue">enqueue</keyword> - <keyword ref="ntqptrqueue.html#head">head</keyword> - <keyword ref="ntqptrqueue.html#isEmpty">isEmpty</keyword> - <keyword ref="ntqptrqueue.html#operator-type-*">operator type *</keyword> - <keyword ref="ntqptrqueue.html#operator-eq">operator=</keyword> - <keyword ref="ntqptrqueue.html#read">read</keyword> - <keyword ref="ntqptrqueue.html#remove">remove</keyword> - <keyword ref="ntqptrqueue.html#setAutoDelete">setAutoDelete</keyword> - <keyword ref="ntqptrqueue.html#write">write</keyword> - <keyword ref="ntqptrqueue.html#~QPtrQueue">~QPtrQueue</keyword> - <section ref="qptrqueue-members.html" title="List of All Member Functions"/> - <section ref="qptrqueue-h.html" title="Header File"/> -</section> -<section ref="ntqptrstack.html" title="QPtrStack Class Reference"> - <keyword ref="ntqptrstack.html">QPtrStack</keyword> - <keyword ref="ntqptrstack.html#autoDelete">autoDelete</keyword> - <keyword ref="ntqptrstack.html#clear">clear</keyword> - <keyword ref="ntqptrstack.html#count">count</keyword> - <keyword ref="ntqptrstack.html#current">current</keyword> - <keyword ref="ntqptrstack.html#isEmpty">isEmpty</keyword> - <keyword ref="ntqptrstack.html#operator-type-*">operator type *</keyword> - <keyword ref="ntqptrstack.html#operator-eq">operator=</keyword> - <keyword ref="ntqptrstack.html#pop">pop</keyword> - <keyword ref="ntqptrstack.html#push">push</keyword> - <keyword ref="ntqptrstack.html#read">read</keyword> - <keyword ref="ntqptrstack.html#remove">remove</keyword> - <keyword ref="ntqptrstack.html#setAutoDelete">setAutoDelete</keyword> - <keyword ref="ntqptrstack.html#top">top</keyword> - <keyword ref="ntqptrstack.html#write">write</keyword> - <keyword ref="ntqptrstack.html#~QPtrStack">~QPtrStack</keyword> - <section ref="qptrstack-members.html" title="List of All Member Functions"/> - <section ref="qptrstack-h.html" title="Header File"/> -</section> -<section ref="ntqptrvector.html" title="QPtrVector Class Reference"> - <keyword ref="ntqptrvector.html">QPtrVector</keyword> - <keyword ref="ntqptrvector.html#at">at</keyword> - <keyword ref="ntqptrvector.html#bsearch">bsearch</keyword> - <keyword ref="ntqptrvector.html#clear">clear</keyword> - <keyword ref="ntqptrvector.html#compareItems">compareItems</keyword> - <keyword ref="ntqptrvector.html#contains">contains</keyword> - <keyword ref="ntqptrvector.html#containsRef">containsRef</keyword> - <keyword ref="ntqptrvector.html#count">count</keyword> - <keyword ref="ntqptrvector.html#data">data</keyword> - <keyword ref="ntqptrvector.html#fill">fill</keyword> - <keyword ref="ntqptrvector.html#find">find</keyword> - <keyword ref="ntqptrvector.html#findRef">findRef</keyword> - <keyword ref="ntqptrvector.html#insert">insert</keyword> - <keyword ref="ntqptrvector.html#isEmpty">isEmpty</keyword> - <keyword ref="ntqptrvector.html#isNull">isNull</keyword> - <keyword ref="ntqptrvector.html#operator-eq">operator=</keyword> - <keyword ref="ntqptrvector.html#operator-eq-eq">operator==</keyword> - <keyword ref="ntqptrvector.html#operator[]">operator[]</keyword> - <keyword ref="ntqptrvector.html#read">read</keyword> - <keyword ref="ntqptrvector.html#remove">remove</keyword> - <keyword ref="ntqptrvector.html#resize">resize</keyword> - <keyword ref="ntqptrvector.html#size">size</keyword> - <keyword ref="ntqptrvector.html#sort">sort</keyword> - <keyword ref="ntqptrvector.html#take">take</keyword> - <keyword ref="ntqptrvector.html#write">write</keyword> - <keyword ref="ntqptrvector.html#~QPtrVector">~QPtrVector</keyword> - <section ref="qptrvector-members.html" title="List of All Member Functions"/> - <section ref="qptrvector-h.html" title="Header File"/> +<section ref="tqptrcollection.html" title="TQPtrCollection Class Reference"> + <keyword ref="tqptrcollection.html">TQPtrCollection</keyword> + <keyword ref="tqptrcollection.html#Item">Item</keyword> + <keyword ref="tqptrcollection.html#autoDelete">autoDelete</keyword> + <keyword ref="tqptrcollection.html#clear">clear</keyword> + <keyword ref="tqptrcollection.html#count">count</keyword> + <keyword ref="tqptrcollection.html#deleteItem">deleteItem</keyword> + <keyword ref="tqptrcollection.html#newItem">newItem</keyword> + <keyword ref="tqptrcollection.html#setAutoDelete">setAutoDelete</keyword> + <keyword ref="tqptrcollection.html#~TQPtrCollection">~TQPtrCollection</keyword> + <section ref="tqptrcollection-members.html" title="List of All Member Functions"/> + <section ref="tqptrcollection-h.html" title="Header File"/> +</section> +<section ref="tqptrdict.html" title="TQPtrDict Class Reference"> + <keyword ref="tqptrdict.html">TQPtrDict</keyword> + <keyword ref="tqptrdict.html#clear">clear</keyword> + <keyword ref="tqptrdict.html#count">count</keyword> + <keyword ref="tqptrdict.html#find">find</keyword> + <keyword ref="tqptrdict.html#insert">insert</keyword> + <keyword ref="tqptrdict.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrdict.html#operator-eq">operator=</keyword> + <keyword ref="tqptrdict.html#operator[]">operator[]</keyword> + <keyword ref="tqptrdict.html#read">read</keyword> + <keyword ref="tqptrdict.html#remove">remove</keyword> + <keyword ref="tqptrdict.html#replace">replace</keyword> + <keyword ref="tqptrdict.html#resize">resize</keyword> + <keyword ref="tqptrdict.html#size">size</keyword> + <keyword ref="tqptrdict.html#statistics">statistics</keyword> + <keyword ref="tqptrdict.html#take">take</keyword> + <keyword ref="tqptrdict.html#write">write</keyword> + <keyword ref="tqptrdict.html#~TQPtrDict">~TQPtrDict</keyword> + <section ref="tqptrdict-members.html" title="List of All Member Functions"/> + <section ref="tqptrdict-h.html" title="Header File"/> +</section> +<section ref="tqptrdictiterator.html" title="TQPtrDictIterator Class Reference"> + <keyword ref="tqptrdictiterator.html">TQPtrDictIterator</keyword> + <keyword ref="tqptrdictiterator.html#count">count</keyword> + <keyword ref="tqptrdictiterator.html#current">current</keyword> + <keyword ref="tqptrdictiterator.html#currentKey">currentKey</keyword> + <keyword ref="tqptrdictiterator.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrdictiterator.html#operator-type-*">operator type *</keyword> + <keyword ref="tqptrdictiterator.html#operator()">operator()</keyword> + <keyword ref="tqptrdictiterator.html#operator++">operator++</keyword> + <keyword ref="tqptrdictiterator.html#operator+-eq">operator+=</keyword> + <keyword ref="tqptrdictiterator.html#toFirst">toFirst</keyword> + <keyword ref="tqptrdictiterator.html#~TQPtrDictIterator">~TQPtrDictIterator</keyword> + <section ref="tqptrdictiterator-members.html" title="List of All Member Functions"/> + <section ref="tqptrdict-h.html" title="Header File"/> +</section> +<section ref="tqptrlist.html" title="TQPtrList Class Reference"> + <keyword ref="tqptrlist.html">TQPtrList</keyword> + <keyword ref="tqptrlist.html#append">append</keyword> + <keyword ref="tqptrlist.html#at">at</keyword> + <keyword ref="tqptrlist.html#clear">clear</keyword> + <keyword ref="tqptrlist.html#compareItems">compareItems</keyword> + <keyword ref="tqptrlist.html#contains">contains</keyword> + <keyword ref="tqptrlist.html#containsRef">containsRef</keyword> + <keyword ref="tqptrlist.html#count">count</keyword> + <keyword ref="tqptrlist.html#current">current</keyword> + <keyword ref="tqptrlist.html#currentNode">currentNode</keyword> + <keyword ref="tqptrlist.html#find">find</keyword> + <keyword ref="tqptrlist.html#findNext">findNext</keyword> + <keyword ref="tqptrlist.html#findNextRef">findNextRef</keyword> + <keyword ref="tqptrlist.html#findRef">findRef</keyword> + <keyword ref="tqptrlist.html#first">first</keyword> + <keyword ref="tqptrlist.html#getFirst">getFirst</keyword> + <keyword ref="tqptrlist.html#getLast">getLast</keyword> + <keyword ref="tqptrlist.html#inSort">inSort</keyword> + <keyword ref="tqptrlist.html#insert">insert</keyword> + <keyword ref="tqptrlist.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrlist.html#last">last</keyword> + <keyword ref="tqptrlist.html#next">next</keyword> + <keyword ref="tqptrlist.html#operator!-eq">operator!=</keyword> + <keyword ref="tqptrlist.html#operator-eq">operator=</keyword> + <keyword ref="tqptrlist.html#operator-eq-eq">operator==</keyword> + <keyword ref="tqptrlist.html#prepend">prepend</keyword> + <keyword ref="tqptrlist.html#prev">prev</keyword> + <keyword ref="tqptrlist.html#read">read</keyword> + <keyword ref="tqptrlist.html#remove">remove</keyword> + <keyword ref="tqptrlist.html#removeFirst">removeFirst</keyword> + <keyword ref="tqptrlist.html#removeLast">removeLast</keyword> + <keyword ref="tqptrlist.html#removeNode">removeNode</keyword> + <keyword ref="tqptrlist.html#removeRef">removeRef</keyword> + <keyword ref="tqptrlist.html#replace">replace</keyword> + <keyword ref="tqptrlist.html#sort">sort</keyword> + <keyword ref="tqptrlist.html#take">take</keyword> + <keyword ref="tqptrlist.html#takeNode">takeNode</keyword> + <keyword ref="tqptrlist.html#toVector">toVector</keyword> + <keyword ref="tqptrlist.html#write">write</keyword> + <keyword ref="tqptrlist.html#~TQPtrList">~TQPtrList</keyword> + <section ref="tqptrlist-members.html" title="List of All Member Functions"/> + <section ref="tqptrlist-h.html" title="Header File"/> +</section> +<section ref="tqptrlistiterator.html" title="TQPtrListIterator Class Reference"> + <keyword ref="tqptrlistiterator.html">TQPtrListIterator</keyword> + <keyword ref="tqptrlistiterator.html#atFirst">atFirst</keyword> + <keyword ref="tqptrlistiterator.html#atLast">atLast</keyword> + <keyword ref="tqptrlistiterator.html#count">count</keyword> + <keyword ref="tqptrlistiterator.html#current">current</keyword> + <keyword ref="tqptrlistiterator.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrlistiterator.html#operator-type-*">operator type *</keyword> + <keyword ref="tqptrlistiterator.html#operator()">operator()</keyword> + <keyword ref="tqptrlistiterator.html#operator*">operator*</keyword> + <keyword ref="tqptrlistiterator.html#operator++">operator++</keyword> + <keyword ref="tqptrlistiterator.html#operator+-eq">operator+=</keyword> + <keyword ref="tqptrlistiterator.html#operator--">operator--</keyword> + <keyword ref="tqptrlistiterator.html#operator--eq">operator-=</keyword> + <keyword ref="tqptrlistiterator.html#operator-eq">operator=</keyword> + <keyword ref="tqptrlistiterator.html#toFirst">toFirst</keyword> + <keyword ref="tqptrlistiterator.html#toLast">toLast</keyword> + <keyword ref="tqptrlistiterator.html#~TQPtrListIterator">~TQPtrListIterator</keyword> + <section ref="tqptrlistiterator-members.html" title="List of All Member Functions"/> + <section ref="tqptrlist-h.html" title="Header File"/> +</section> +<section ref="tqptrqueue.html" title="TQPtrQueue Class Reference"> + <keyword ref="tqptrqueue.html">TQPtrQueue</keyword> + <keyword ref="tqptrqueue.html#autoDelete">autoDelete</keyword> + <keyword ref="tqptrqueue.html#clear">clear</keyword> + <keyword ref="tqptrqueue.html#count">count</keyword> + <keyword ref="tqptrqueue.html#current">current</keyword> + <keyword ref="tqptrqueue.html#dequeue">dequeue</keyword> + <keyword ref="tqptrqueue.html#enqueue">enqueue</keyword> + <keyword ref="tqptrqueue.html#head">head</keyword> + <keyword ref="tqptrqueue.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrqueue.html#operator-type-*">operator type *</keyword> + <keyword ref="tqptrqueue.html#operator-eq">operator=</keyword> + <keyword ref="tqptrqueue.html#read">read</keyword> + <keyword ref="tqptrqueue.html#remove">remove</keyword> + <keyword ref="tqptrqueue.html#setAutoDelete">setAutoDelete</keyword> + <keyword ref="tqptrqueue.html#write">write</keyword> + <keyword ref="tqptrqueue.html#~TQPtrQueue">~TQPtrQueue</keyword> + <section ref="tqptrqueue-members.html" title="List of All Member Functions"/> + <section ref="tqptrqueue-h.html" title="Header File"/> +</section> +<section ref="tqptrstack.html" title="TQPtrStack Class Reference"> + <keyword ref="tqptrstack.html">TQPtrStack</keyword> + <keyword ref="tqptrstack.html#autoDelete">autoDelete</keyword> + <keyword ref="tqptrstack.html#clear">clear</keyword> + <keyword ref="tqptrstack.html#count">count</keyword> + <keyword ref="tqptrstack.html#current">current</keyword> + <keyword ref="tqptrstack.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrstack.html#operator-type-*">operator type *</keyword> + <keyword ref="tqptrstack.html#operator-eq">operator=</keyword> + <keyword ref="tqptrstack.html#pop">pop</keyword> + <keyword ref="tqptrstack.html#push">push</keyword> + <keyword ref="tqptrstack.html#read">read</keyword> + <keyword ref="tqptrstack.html#remove">remove</keyword> + <keyword ref="tqptrstack.html#setAutoDelete">setAutoDelete</keyword> + <keyword ref="tqptrstack.html#top">top</keyword> + <keyword ref="tqptrstack.html#write">write</keyword> + <keyword ref="tqptrstack.html#~TQPtrStack">~TQPtrStack</keyword> + <section ref="tqptrstack-members.html" title="List of All Member Functions"/> + <section ref="tqptrstack-h.html" title="Header File"/> +</section> +<section ref="tqptrvector.html" title="TQPtrVector Class Reference"> + <keyword ref="tqptrvector.html">TQPtrVector</keyword> + <keyword ref="tqptrvector.html#at">at</keyword> + <keyword ref="tqptrvector.html#bsearch">bsearch</keyword> + <keyword ref="tqptrvector.html#clear">clear</keyword> + <keyword ref="tqptrvector.html#compareItems">compareItems</keyword> + <keyword ref="tqptrvector.html#contains">contains</keyword> + <keyword ref="tqptrvector.html#containsRef">containsRef</keyword> + <keyword ref="tqptrvector.html#count">count</keyword> + <keyword ref="tqptrvector.html#data">data</keyword> + <keyword ref="tqptrvector.html#fill">fill</keyword> + <keyword ref="tqptrvector.html#find">find</keyword> + <keyword ref="tqptrvector.html#findRef">findRef</keyword> + <keyword ref="tqptrvector.html#insert">insert</keyword> + <keyword ref="tqptrvector.html#isEmpty">isEmpty</keyword> + <keyword ref="tqptrvector.html#isNull">isNull</keyword> + <keyword ref="tqptrvector.html#operator-eq">operator=</keyword> + <keyword ref="tqptrvector.html#operator-eq-eq">operator==</keyword> + <keyword ref="tqptrvector.html#operator[]">operator[]</keyword> + <keyword ref="tqptrvector.html#read">read</keyword> + <keyword ref="tqptrvector.html#remove">remove</keyword> + <keyword ref="tqptrvector.html#resize">resize</keyword> + <keyword ref="tqptrvector.html#size">size</keyword> + <keyword ref="tqptrvector.html#sort">sort</keyword> + <keyword ref="tqptrvector.html#take">take</keyword> + <keyword ref="tqptrvector.html#write">write</keyword> + <keyword ref="tqptrvector.html#~TQPtrVector">~TQPtrVector</keyword> + <section ref="tqptrvector-members.html" title="List of All Member Functions"/> + <section ref="tqptrvector-h.html" title="Header File"/> </section> <section ref="ntqpushbutton.html" title="QPushButton Class Reference"> <keyword ref="ntqpushbutton.html">QPushButton</keyword> diff --git a/doc/html/qtabbar-h.html b/doc/html/qtabbar-h.html index 1efa0cf36..9684d5546 100644 --- a/doc/html/qtabbar-h.html +++ b/doc/html/qtabbar-h.html @@ -77,7 +77,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H #ifndef TQT_NO_TABBAR diff --git a/doc/html/qtable-h.html b/doc/html/qtable-h.html index 362ba7f62..5b454902e 100644 --- a/doc/html/qtable-h.html +++ b/doc/html/qtable-h.html @@ -79,10 +79,10 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqscrollview.h" #include "ntqpixmap.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqheader.h" #include "ntqmemarray.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqguardedptr.h" #include "ntqshared.h" #include "ntqintdict.h" diff --git a/doc/html/qtextbrowser-h.html b/doc/html/qtextbrowser-h.html index 65596b236..0932d2839 100644 --- a/doc/html/qtextbrowser-h.html +++ b/doc/html/qtextbrowser-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #define TQTEXTBROWSER_H #ifndef QT_H -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqpixmap.h" #include "ntqcolor.h" #include "ntqtextedit.h" diff --git a/doc/html/qtextedit-h.html b/doc/html/qtextedit-h.html index 8cda9e170..c03747801 100644 --- a/doc/html/qtextedit-h.html +++ b/doc/html/qtextedit-h.html @@ -80,9 +80,9 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqscrollview.h" #include "ntqstylesheet.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "tqvaluelist.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H #ifndef TQT_NO_TEXTEDIT diff --git a/doc/html/qurloperator-h.html b/doc/html/qurloperator-h.html index 8d8734515..18887aadc 100644 --- a/doc/html/qurloperator-h.html +++ b/doc/html/qurloperator-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqobject.h" #include "ntqurl.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqnetworkprotocol.h" #include "ntqstringlist.h" // TQString->TQStringList conversion #endif // QT_H diff --git a/doc/html/qwerty-example.html b/doc/html/qwerty-example.html index a69de6000..09d52e78e 100644 --- a/doc/html/qwerty-example.html +++ b/doc/html/qwerty-example.html @@ -117,7 +117,7 @@ private: #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="qpaintdevicemetrics-h.html">ntqpaintdevicemetrics.h</a>> -#include <<a href="qptrlist-h.html">ntqptrlist.h</a>> +#include <<a href="tqptrlist-h.html">tqptrlist.h</a>> #include <<a href="qfontdialog-h.html">ntqfontdialog.h</a>> #include <<a href="qtextcodec-h.html">ntqtextcodec.h</a>> @@ -205,12 +205,12 @@ Editor::~Editor() void <a name="f236"></a>Editor::rebuildCodecList() { delete codecList; - codecList = new <a href="ntqptrlist.html">TQPtrList</a><TQTextCodec>; + codecList = new <a href="tqptrlist.html">TQPtrList</a><TQTextCodec>; <a href="ntqtextcodec.html">TQTextCodec</a> *codec; int i; <a name="x392"></a> for (i = 0; (codec = TQTextCodec::<a href="ntqtextcodec.html#codecForIndex">codecForIndex</a>(i)); i++) -<a name="x387"></a> codecList-><a href="ntqptrlist.html#append">append</a>( codec ); -<a name="x389"></a> int n = codecList-><a href="ntqptrlist.html#count">count</a>(); +<a name="x387"></a> codecList-><a href="tqptrlist.html#append">append</a>( codec ); +<a name="x389"></a> int n = codecList-><a href="tqptrlist.html#count">count</a>(); for (int pm=0; pm<2; pm++) { <a href="ntqpopupmenu.html">TQPopupMenu</a>* menu = pm ? open_as : save_as; <a name="x370"></a> menu-><a href="ntqmenudata.html#clear">clear</a>(); @@ -224,7 +224,7 @@ void <a name="f236"></a>Editor::rebuildCodecList() if ( pm ) menu-><a href="ntqmenudata.html#insertItem">insertItem</a>( "[guess]", Guess ); for ( i = 0; i < n; i++ ) -<a name="x388"></a> menu-><a href="ntqmenudata.html#insertItem">insertItem</a>( codecList-><a href="ntqptrlist.html#at">at</a>(i)->name(), Codec + i ); +<a name="x388"></a> menu-><a href="ntqmenudata.html#insertItem">insertItem</a>( codecList-><a href="tqptrlist.html#at">at</a>(i)->name(), Codec + i ); } } @@ -260,7 +260,7 @@ void Editor::load( const <a href="ntqstring.html">TQString</a>& fileName, in <a href="ntqtextstream.html">TQTextStream</a> t(&f); if ( code >= Codec ) -<a name="x402"></a> t.<a href="ntqtextstream.html#setCodec">setCodec</a>( codecList-><a href="ntqptrlist.html#at">at</a>(code-Codec) ); +<a name="x402"></a> t.<a href="ntqtextstream.html#setCodec">setCodec</a>( codecList-><a href="tqptrlist.html#at">at</a>(code-Codec) ); else if ( code == Uni ) <a name="x403"></a> t.<a href="ntqtextstream.html#setEncoding">setEncoding</a>( TQTextStream::Unicode ); else if ( code == MBug ) @@ -360,7 +360,7 @@ bool <a name="f243"></a>Editor::saveAs( const <a href="ntqstring.html">TQString< } <a href="ntqtextstream.html">TQTextStream</a> t(&f); if ( code >= Codec ) - t.<a href="ntqtextstream.html#setCodec">setCodec</a>( codecList-><a href="ntqptrlist.html#at">at</a>(code-Codec) ); + t.<a href="ntqtextstream.html#setCodec">setCodec</a>( codecList-><a href="tqptrlist.html#at">at</a>(code-Codec) ); else if ( code == Uni ) t.<a href="ntqtextstream.html#setEncoding">setEncoding</a>( TQTextStream::Unicode ); else if ( code == MBug ) diff --git a/doc/html/qwindowsmime.html b/doc/html/qwindowsmime.html index 537ef6188..b47810182 100644 --- a/doc/html/qwindowsmime.html +++ b/doc/html/qwindowsmime.html @@ -103,7 +103,7 @@ list of available convertors. Destroys a conversion object, removing it from the global list of available convertors. -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><TQWindowsMime> <a name="all"></a>TQWindowsMime::all ()<tt> [static]</tt> +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><TQWindowsMime> <a name="all"></a>TQWindowsMime::all ()<tt> [static]</tt> </h3> Returns a list of all currently defined TQWindowsMime objects. diff --git a/doc/html/qwindowsystem_qws-h.html b/doc/html/qwindowsystem_qws-h.html index 998606cdd..02a40b3a9 100644 --- a/doc/html/qwindowsystem_qws-h.html +++ b/doc/html/qwindowsystem_qws-h.html @@ -79,7 +79,7 @@ body { background: #ffffff; color: black; } #include "qwssocket_qws.h" #include "tqmap.h" #include "ntqdatetime.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqimage.h" #include "qwsproperty_qws.h" diff --git a/doc/html/qwsserver.html b/doc/html/qwsserver.html index 48863b51c..9467193d7 100644 --- a/doc/html/qwsserver.html +++ b/doc/html/qwsserver.html @@ -159,7 +159,7 @@ parent is <em>parent</em> and it is called <em>name</em>. </h3> Destruct TQWSServer -<h3 class=fn>const <a href="ntqptrlist.html">TQPtrList</a><TQWSWindow> & <a name="clientWindows"></a>TQWSServer::clientWindows () +<h3 class=fn>const <a href="tqptrlist.html">TQPtrList</a><TQWSWindow> & <a name="clientWindows"></a>TQWSServer::clientWindows () </h3> <p> Returns the list of top-level windows. This list will change as diff --git a/doc/html/scribble-example.html b/doc/html/scribble-example.html index 5c60e2591..753a87546 100644 --- a/doc/html/scribble-example.html +++ b/doc/html/scribble-example.html @@ -280,7 +280,7 @@ void <a name="f342"></a>Scribble::slotSave() { <a href="ntqpopupmenu.html">TQPopupMenu</a> *menu = new <a href="ntqpopupmenu.html">TQPopupMenu</a>( 0 ); <a href="ntqintdict.html">TQIntDict</a><TQString> formats; -<a name="x924"></a> formats.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); +<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 ) ); diff --git a/doc/html/showimg-example.html b/doc/html/showimg-example.html index 218dcf0a0..561715f38 100644 --- a/doc/html/showimg-example.html +++ b/doc/html/showimg-example.html @@ -181,7 +181,7 @@ private slots: <a name="x1323"></a> <a href="ntqstrlist.html">TQStrList</a> fmt = TQImage::<a href="ntqimage.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="ntqptrlist.html#first">first</a>(); f; f = fmt.<a href="ntqptrlist.html#next">next</a>()) { +<a name="x1344"></a><a name="x1343"></a> for (const char* f = fmt.<a href="tqptrlist.html#first">first</a>(); f; f = fmt.<a href="tqptrlist.html#next">next</a>()) { <a name="x1327"></a> saveimage-><a href="ntqmenudata.html#insertItem">insertItem</a>( f ); savepixmap-><a href="ntqmenudata.html#insertItem">insertItem</a>( f ); } diff --git a/doc/html/table-bigtable-main-cpp.html b/doc/html/table-bigtable-main-cpp.html index 1c5419102..5333f34fc 100644 --- a/doc/html/table-bigtable-main-cpp.html +++ b/doc/html/table-bigtable-main-cpp.html @@ -54,8 +54,8 @@ class MyTable : public <a href="ntqtable.html">TQTable</a> { public: MyTable( int r, int c ) : <a href="ntqtable.html">TQTable</a>( r, c ) { -<a name="x1291"></a> items.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); - widgets.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); +<a name="x1291"></a> items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); + widgets.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); setCaption( tr( "A 1 Million x 1 Million Cell Table" ) ); setLeftMargin( fontMetrics().width( "W999999W" ) ); } @@ -66,9 +66,9 @@ public: <a name="x1287"></a> void clearCell( int r, int c ) { items.<a href="ntqintdict.html#remove">remove</a>( indexOf( r, c ) ); } void takeItem( <a href="qtableitem.html">TQTableItem</a> *item ) { - items.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( FALSE ); + items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( FALSE ); <a name="x1294"></a><a name="x1293"></a> items.<a href="ntqintdict.html#remove">remove</a>( indexOf( item-><a href="qtableitem.html#row">row</a>(), item-><a href="qtableitem.html#col">col</a>() ) ); - items.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); + items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); } void insertWidget( int r, int c, TQWidget *w ) { widgets.<a href="ntqintdict.html#replace">replace</a>( indexOf( r, c ), w ); } <a href="tqwidget.html">TQWidget</a> *cellWidget( int r, int c ) const { return widgets.<a href="ntqintdict.html#find">find</a>( indexOf( r, c ) ); } diff --git a/doc/html/tagreader-with-features-example.html b/doc/html/tagreader-with-features-example.html index 43725f287..fa71f2533 100644 --- a/doc/html/tagreader-with-features-example.html +++ b/doc/html/tagreader-with-features-example.html @@ -53,7 +53,7 @@ $Id: qt/structureparser.h 3.3.8 edited May 27 2003 $ #define STRUCTUREPARSER_H #include <<a href="tqxml-h.html">tqxml.h</a>> -#include <<a href="qptrstack-h.html">ntqptrstack.h</a>> +#include <<a href="tqptrstack-h.html">tqptrstack.h</a>> class TQListView; class TQListViewItem; @@ -70,7 +70,7 @@ public: void setListView( <a href="ntqlistview.html">TQListView</a> * ); private: - <a href="ntqptrstack.html">TQPtrStack</a><TQListViewItem> stack; + <a href="tqptrstack.html">TQPtrStack</a><TQListViewItem> stack; <a href="ntqlistview.html">TQListView</a> * table; }; diff --git a/doc/html/tictac-example.html b/doc/html/tictac-example.html index 2fd58a3c9..ae4812965 100644 --- a/doc/html/tictac-example.html +++ b/doc/html/tictac-example.html @@ -55,7 +55,7 @@ widget. #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> -#include <<a href="qptrvector-h.html">ntqptrvector.h</a>> +#include <<a href="tqptrvector-h.html">tqptrvector.h</a>> class TQComboBox; class TQLabel; diff --git a/doc/html/titleindex b/doc/html/titleindex index fcb74f45e..a639bbc1b 100644 --- a/doc/html/titleindex +++ b/doc/html/titleindex @@ -697,22 +697,22 @@ QProgressBar Class | ntqprogressbar.html QProgressBar Member List | qprogressbar-members.html QProgressDialog Class | ntqprogressdialog.html QProgressDialog Member List | qprogressdialog-members.html -QPtrCollection Class | ntqptrcollection.html -QPtrCollection Member List | qptrcollection-members.html -QPtrDict Class | ntqptrdict.html -QPtrDict Member List | qptrdict-members.html -QPtrDictIterator Class | qptrdictiterator.html -QPtrDictIterator Member List | qptrdictiterator-members.html -QPtrList Class | ntqptrlist.html -QPtrList Member List | qptrlist-members.html -QPtrListIterator Class | qptrlistiterator.html -QPtrListIterator Member List | qptrlistiterator-members.html -QPtrQueue Class | ntqptrqueue.html -QPtrQueue Member List | qptrqueue-members.html -QPtrStack Class | ntqptrstack.html -QPtrStack Member List | qptrstack-members.html -QPtrVector Class | ntqptrvector.html -QPtrVector Member List | qptrvector-members.html +TQPtrCollection Class | tqptrcollection.html +TQPtrCollection Member List | tqptrcollection-members.html +TQPtrDict Class | tqptrdict.html +TQPtrDict Member List | tqptrdict-members.html +TQPtrDictIterator Class | tqptrdictiterator.html +TQPtrDictIterator Member List | tqptrdictiterator-members.html +TQPtrList Class | tqptrlist.html +TQPtrList Member List | tqptrlist-members.html +TQPtrListIterator Class | tqptrlistiterator.html +TQPtrListIterator Member List | tqptrlistiterator-members.html +TQPtrQueue Class | tqptrqueue.html +TQPtrQueue Member List | tqptrqueue-members.html +TQPtrStack Class | tqptrstack.html +TQPtrStack Member List | tqptrstack-members.html +TQPtrVector Class | tqptrvector.html +TQPtrVector Member List | tqptrvector-members.html QPushButton Class | ntqpushbutton.html QPushButton Member List | qpushbutton-members.html QRadioButton Class | ntqradiobutton.html @@ -1321,12 +1321,12 @@ ntqprinter.h Include File | qprinter-h.html ntqprocess.h Include File | qprocess-h.html ntqprogressbar.h Include File | qprogressbar-h.html ntqprogressdialog.h Include File | qprogressdialog-h.html -ntqptrcollection.h Include File | qptrcollection-h.html -ntqptrdict.h Include File | qptrdict-h.html -ntqptrlist.h Include File | qptrlist-h.html -ntqptrqueue.h Include File | qptrqueue-h.html -ntqptrstack.h Include File | qptrstack-h.html -ntqptrvector.h Include File | qptrvector-h.html +tqptrcollection.h Include File | tqptrcollection-h.html +tqptrdict.h Include File | tqptrdict-h.html +tqptrlist.h Include File | tqptrlist-h.html +tqptrqueue.h Include File | tqptrqueue-h.html +tqptrstack.h Include File | tqptrstack-h.html +tqptrvector.h Include File | tqptrvector-h.html ntqpushbutton.h Include File | qpushbutton-h.html ntqradiobutton.h Include File | qradiobutton-h.html ntqrangecontrol.h Include File | qrangecontrol-h.html diff --git a/doc/html/tools.html b/doc/html/tools.html index 7a2969da0..9d55de4f7 100644 --- a/doc/html/tools.html +++ b/doc/html/tools.html @@ -63,14 +63,14 @@ classes.</a> <tr bgcolor=#f0f0f0><td><b><a href="tqobjectlist.html">TQObjectList</a></b><td>TQPtrList of TQObjects <tr bgcolor=#f0f0f0><td><b><a href="tqobjectlistiterator.html">TQObjectListIterator</a></b><td>Iterator for TQObjectLists <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="ntqptrcollection.html">TQPtrCollection</a></b><td>The base class of most pointer-based TQt collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrdict.html">TQPtrDict</a></b><td>Template class that provides a dictionary based on void* keys -<tr bgcolor=#f0f0f0><td><b><a href="qptrdictiterator.html">TQPtrDictIterator</a></b><td>Iterator for TQPtrDict collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrlist.html">TQPtrList</a></b><td>Template class that provides a list -<tr bgcolor=#f0f0f0><td><b><a href="qptrlistiterator.html">TQPtrListIterator</a></b><td>Iterator for TQPtrList collections -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrqueue.html">TQPtrQueue</a></b><td>Template class that provides a queue -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrstack.html">TQPtrStack</a></b><td>Template class that provides a stack -<tr bgcolor=#f0f0f0><td><b><a href="ntqptrvector.html">TQPtrVector</a></b><td>Template collection class that provides a vector (array) +<tr bgcolor=#f0f0f0><td><b><a href="tqptrcollection.html">TQPtrCollection</a></b><td>The base class of most pointer-based TQt collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrdict.html">TQPtrDict</a></b><td>Template class that provides a dictionary based on void* keys +<tr bgcolor=#f0f0f0><td><b><a href="tqptrdictiterator.html">TQPtrDictIterator</a></b><td>Iterator for TQPtrDict collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrlist.html">TQPtrList</a></b><td>Template class that provides a list +<tr bgcolor=#f0f0f0><td><b><a href="tqptrlistiterator.html">TQPtrListIterator</a></b><td>Iterator for TQPtrList collections +<tr bgcolor=#f0f0f0><td><b><a href="tqptrqueue.html">TQPtrQueue</a></b><td>Template class that provides a queue +<tr bgcolor=#f0f0f0><td><b><a href="tqptrstack.html">TQPtrStack</a></b><td>Template class that provides a stack +<tr bgcolor=#f0f0f0><td><b><a href="tqptrvector.html">TQPtrVector</a></b><td>Template collection class that provides a vector (array) <tr bgcolor=#f0f0f0><td><b><a href="ntqregexp.html">TQRegExp</a></b><td>Pattern matching using regular expressions <tr bgcolor=#f0f0f0><td><b><a href="qstrilist.html">TQStrIList</a></b><td>Doubly-linked list of char* with case-insensitive comparison <tr bgcolor=#f0f0f0><td><b><a href="ntqstring.html">TQString</a></b><td>Abstraction of Unicode text and the classic C '\0'-terminated char array diff --git a/doc/html/tqcanvas-h.html b/doc/html/tqcanvas-h.html index 477dc2c0e..281ea932c 100644 --- a/doc/html/tqcanvas-h.html +++ b/doc/html/tqcanvas-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqscrollview.h" #include "ntqpixmap.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqbrush.h" #include "ntqpen.h" #include "tqvaluelist.h" diff --git a/doc/html/tqcanvaspixmaparray.html b/doc/html/tqcanvaspixmaparray.html index d7c259678..4e011751a 100644 --- a/doc/html/tqcanvaspixmaparray.html +++ b/doc/html/tqcanvaspixmaparray.html @@ -96,7 +96,7 @@ the first (and only) frame. an image, or some other error occurs, the array ends up empty and <a href="#isValid">isValid</a>() returns FALSE. -<h3 class=fn><a name="TQCanvasPixmapArray-3"></a>TQCanvasPixmapArray::TQCanvasPixmapArray ( <a href="ntqptrlist.html">TQPtrList</a><TQPixmap> list, <a href="ntqptrlist.html">TQPtrList</a><TQPoint> hotspots ) +<h3 class=fn><a name="TQCanvasPixmapArray-3"></a>TQCanvasPixmapArray::TQCanvasPixmapArray ( <a href="tqptrlist.html">TQPtrList</a><TQPixmap> list, <a href="tqptrlist.html">TQPtrList</a><TQPoint> hotspots ) </h3> <b>This function is obsolete.</b> It is provided to keep old source working. We strongly advise against using it in new code. <p> Use <a href="#TQCanvasPixmapArray">TQCanvasPixmapArray::TQCanvasPixmapArray</a>( <a href="tqvaluelist.html">TQValueList</a><TQPixmap>, <a href="ntqpointarray.html">TQPointArray</a> ) diff --git a/doc/html/tqmap.html b/doc/html/tqmap.html index 14a006d9e..57080728a 100644 --- a/doc/html/tqmap.html +++ b/doc/html/tqmap.html @@ -110,7 +110,7 @@ available on all your target platforms. TQMap is part of the <a href="ntqtl.html dictionary with keys of type Key and values of type Data. TQMap does not store pointers to the members of the map; instead, it holds a copy of every member. For this reason, TQMap is -value-based, whereas <a href="ntqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a> are pointer-based. +value-based, whereas <a href="tqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a> are pointer-based. <p> TQMap contains and manages a collection of objects of type Data with associated key values of type Key and provides iterators that allow the contained objects to be addressed. TQMap owns the diff --git a/doc/html/tqobject.html b/doc/html/tqobject.html index 43c77e4d4..58f4792c0 100644 --- a/doc/html/tqobject.html +++ b/doc/html/tqobject.html @@ -158,7 +158,7 @@ certain functions to exhibit undefined behaviour. <a href="#isWidgetType">isWidgetType</a>() returns whether an object is actually a widget. It is much faster than <a href="#inherits">inherits</a>( "TQWidget" ). <p> Some TQObject functions, e.g. <a href="#children">children</a>(), <a href="#objectTrees">objectTrees</a>() and -<a href="#queryList">queryList</a>() return a <a href="tqobjectlist.html">TQObjectList</a>. A TQObjectList is a <a href="ntqptrlist.html">TQPtrList</a> of +<a href="#queryList">queryList</a>() return a <a href="tqobjectlist.html">TQObjectList</a>. A TQObjectList is a <a href="tqptrlist.html">TQPtrList</a> of TQObjects. TQObjectLists support the same operations as TQPtrLists and have an iterator class, TQObjectListIt. <p>See also <a href="objectmodel.html">Object Model</a>. @@ -255,8 +255,8 @@ in functions that depend on the state. One notable example is children. <p> The <a href="tqobjectlist.html">TQObjectList</a> class is defined in the <a href="tqobjectlist-h.html">tqobjectlist.h</a> header file. -<p> The first child added is the <a href="ntqptrlist.html#first">first</a> -object in the list and the last child added is the <a href="ntqptrlist.html#last">last</a> object in the list, i.e. new +<p> The first child added is the <a href="tqptrlist.html#first">first</a> +object in the list and the last child added is the <a href="tqptrlist.html#last">last</a> object in the list, i.e. new children are appended at the end. <p> Note that the list order changes when <a href="tqwidget.html">TQWidget</a> children are <a href="tqwidget.html#raise">raised</a> or <a href="tqwidget.html#lower">lowered.</a> A widget that is raised becomes the last object in the list, and a widget that is lowered becomes the first object @@ -710,8 +710,8 @@ Returns a pointer to the list of all object trees (their root objects), or 0 if there are no objects. <p> The <a href="tqobjectlist.html">TQObjectList</a> class is defined in the <a href="tqobjectlist-h.html">tqobjectlist.h</a> header file. -<p> The most recent root object created is the <a href="ntqptrlist.html#first">first</a> object in the list and the first root object added -is the <a href="ntqptrlist.html#last">last</a> object in the list. +<p> The most recent root object created is the <a href="tqptrlist.html#first">first</a> object in the list and the first root object added +is the <a href="tqptrlist.html#last">last</a> object in the list. <p> <p>See also <a href="#children">children</a>(), <a href="#parent">parent</a>(), <a href="#insertChild">insertChild</a>(), and <a href="#removeChild">removeChild</a>(). <h3 class=fn><a href="tqobject.html">TQObject</a> * <a name="parent"></a>TQObject::parent () const diff --git a/doc/html/tqobjectlist-h.html b/doc/html/tqobjectlist-h.html index c1ca928bb..606061eb6 100644 --- a/doc/html/tqobjectlist-h.html +++ b/doc/html/tqobjectlist-h.html @@ -79,7 +79,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqobject.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H diff --git a/doc/html/tqobjectlist-members.html b/doc/html/tqobjectlist-members.html index a75d12fb6..606b9e3ae 100644 --- a/doc/html/tqobjectlist-members.html +++ b/doc/html/tqobjectlist-members.html @@ -37,48 +37,48 @@ body { background: #ffffff; color: black; } <ul> <li><a href="tqobjectlist.html#TQObjectList">TQObjectList</a>() <li><a href="tqobjectlist.html#~TQObjectList">~TQObjectList</a>() -<li><a href="ntqptrlist.html#append">append</a>() -<li><a href="ntqptrlist.html#at">at</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrlist.html#clear">clear</a>() -<li><a href="ntqptrlist.html#compareItems">compareItems</a>() -<li><a href="ntqptrlist.html#contains">contains</a>() -<li><a href="ntqptrlist.html#containsRef">containsRef</a>() -<li><a href="ntqptrlist.html#count">count</a>() -<li><a href="ntqptrlist.html#current">current</a>() -<li><a href="ntqptrlist.html#currentNode">currentNode</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrlist.html#find">find</a>() -<li><a href="ntqptrlist.html#findNext">findNext</a>() -<li><a href="ntqptrlist.html#findNextRef">findNextRef</a>() -<li><a href="ntqptrlist.html#findRef">findRef</a>() -<li><a href="ntqptrlist.html#first">first</a>() -<li><a href="ntqptrlist.html#getFirst">getFirst</a>() -<li><a href="ntqptrlist.html#getLast">getLast</a>() -<li><a href="ntqptrlist.html#inSort">inSort</a>() -<li><a href="ntqptrlist.html#insert">insert</a>() -<li><a href="ntqptrlist.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrlist.html#last">last</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrlist.html#next">next</a>() -<li><a href="ntqptrlist.html#operator!-eq">operator!=</a>() +<li><a href="tqptrlist.html#append">append</a>() +<li><a href="tqptrlist.html#at">at</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrlist.html#clear">clear</a>() +<li><a href="tqptrlist.html#compareItems">compareItems</a>() +<li><a href="tqptrlist.html#contains">contains</a>() +<li><a href="tqptrlist.html#containsRef">containsRef</a>() +<li><a href="tqptrlist.html#count">count</a>() +<li><a href="tqptrlist.html#current">current</a>() +<li><a href="tqptrlist.html#currentNode">currentNode</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrlist.html#find">find</a>() +<li><a href="tqptrlist.html#findNext">findNext</a>() +<li><a href="tqptrlist.html#findNextRef">findNextRef</a>() +<li><a href="tqptrlist.html#findRef">findRef</a>() +<li><a href="tqptrlist.html#first">first</a>() +<li><a href="tqptrlist.html#getFirst">getFirst</a>() +<li><a href="tqptrlist.html#getLast">getLast</a>() +<li><a href="tqptrlist.html#inSort">inSort</a>() +<li><a href="tqptrlist.html#insert">insert</a>() +<li><a href="tqptrlist.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlist.html#last">last</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrlist.html#next">next</a>() +<li><a href="tqptrlist.html#operator!-eq">operator!=</a>() <li><a href="tqobjectlist.html#operator-eq">operator=</a>() -<li><a href="ntqptrlist.html#operator-eq-eq">operator==</a>() -<li><a href="ntqptrlist.html#prepend">prepend</a>() -<li><a href="ntqptrlist.html#prev">prev</a>() -<li><a href="ntqptrlist.html#read">read</a>() -<li><a href="ntqptrlist.html#remove">remove</a>() -<li><a href="ntqptrlist.html#removeFirst">removeFirst</a>() -<li><a href="ntqptrlist.html#removeLast">removeLast</a>() -<li><a href="ntqptrlist.html#removeNode">removeNode</a>() -<li><a href="ntqptrlist.html#removeRef">removeRef</a>() -<li><a href="ntqptrlist.html#replace">replace</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrlist.html#sort">sort</a>() -<li><a href="ntqptrlist.html#take">take</a>() -<li><a href="ntqptrlist.html#takeNode">takeNode</a>() -<li><a href="ntqptrlist.html#toVector">toVector</a>() -<li><a href="ntqptrlist.html#write">write</a>() +<li><a href="tqptrlist.html#operator-eq-eq">operator==</a>() +<li><a href="tqptrlist.html#prepend">prepend</a>() +<li><a href="tqptrlist.html#prev">prev</a>() +<li><a href="tqptrlist.html#read">read</a>() +<li><a href="tqptrlist.html#remove">remove</a>() +<li><a href="tqptrlist.html#removeFirst">removeFirst</a>() +<li><a href="tqptrlist.html#removeLast">removeLast</a>() +<li><a href="tqptrlist.html#removeNode">removeNode</a>() +<li><a href="tqptrlist.html#removeRef">removeRef</a>() +<li><a href="tqptrlist.html#replace">replace</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrlist.html#sort">sort</a>() +<li><a href="tqptrlist.html#take">take</a>() +<li><a href="tqptrlist.html#takeNode">takeNode</a>() +<li><a href="tqptrlist.html#toVector">toVector</a>() +<li><a href="tqptrlist.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/tqobjectlist.html b/doc/html/tqobjectlist.html index 0b4a92539..28d8c4d4c 100644 --- a/doc/html/tqobjectlist.html +++ b/doc/html/tqobjectlist.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; } <p>The TQObjectList class is a TQPtrList of TQObjects. <a href="#details">More...</a> <p><tt>#include <<a href="tqobjectlist-h.html">tqobjectlist.h</a>></tt> -<p>Inherits <a href="ntqptrlist.html">TQPtrList</a><TQObject>. +<p>Inherits <a href="tqptrlist.html">TQPtrList</a><TQObject>. <p><a href="tqobjectlist-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -46,11 +46,11 @@ body { background: #ffffff; color: black; } <hr><a name="details"></a><h2>Detailed Description</h2> -The TQObjectList class is a <a href="ntqptrlist.html">TQPtrList</a> of TQObjects. +The TQObjectList class is a <a href="tqptrlist.html">TQPtrList</a> of TQObjects. <p> -<p> A TQObjectList is a <a href="ntqptrlist.html">TQPtrList<TQObject></a>. The list can be traversed using -inherited functions, e.g. <a href="ntqptrlist.html#getFirst">getFirst</a>(), <a href="ntqptrlist.html#next">next</a>(), etc., or using a +<p> A TQObjectList is a <a href="tqptrlist.html">TQPtrList<TQObject></a>. The list can be traversed using +inherited functions, e.g. <a href="tqptrlist.html#getFirst">getFirst</a>(), <a href="tqptrlist.html#next">next</a>(), etc., or using a <a href="tqobjectlistiterator.html">TQObjectListIterator</a> iterator. <p> See <a href="tqobject.html#queryList">TQObject::queryList</a>() for an example of use. <p> <p>See also <a href="tqobjectlistiterator.html">TQObjectListIterator</a>, <a href="tqobject.html">TQObject</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. @@ -65,7 +65,7 @@ inherited functions, e.g. <a href="ntqptrlist.html#getFirst">getFirst</a>(), <a </h3> <p> Constructs a copy of <em>list</em>. -<p> Each item in <em>list</em> is <a href="ntqptrlist.html#append">appended</a> to this +<p> Each item in <em>list</em> is <a href="tqptrlist.html#append">appended</a> to this list. Only the pointers are copied (shallow copy). <h3 class=fn><a name="~TQObjectList"></a>TQObjectList::~TQObjectList () @@ -74,14 +74,14 @@ list. Only the pointers are copied (shallow copy). <p> Removes all the object pointers from the list and destroys the list. <p> All list iterators that access this list will be reset. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn><a href="tqobjectlist.html">TQObjectList</a> & <a name="operator-eq"></a>TQObjectList::operator= ( const <a href="tqobjectlist.html">TQObjectList</a> & list ) </h3> <p> Assigns <em>list</em> to this list and returns a reference to this list. -<p> This list is first cleared and then each item in <em>list</em> is <a href="ntqptrlist.html#append">appended</a> to this list. Only the pointers are -copied (shallow copy) unless <a href="ntqptrcollection.html#newItem">newItem</a>() has been reimplemented(). +<p> This list is first cleared and then each item in <em>list</em> is <a href="tqptrlist.html#append">appended</a> to this list. Only the pointers are +copied (shallow copy) unless <a href="tqptrcollection.html#newItem">newItem</a>() has been reimplemented(). <!-- eof --> <hr><p> diff --git a/doc/html/tqobjectlistiterator-members.html b/doc/html/tqobjectlistiterator-members.html index f1d64f486..6a590d964 100644 --- a/doc/html/tqobjectlistiterator-members.html +++ b/doc/html/tqobjectlistiterator-members.html @@ -36,21 +36,21 @@ body { background: #ffffff; color: black; } <ul> <li><a href="tqobjectlistiterator.html#TQObjectListIterator">TQObjectListIterator</a>() -<li><a href="qptrlistiterator.html#atFirst">atFirst</a>() -<li><a href="qptrlistiterator.html#atLast">atLast</a>() -<li><a href="qptrlistiterator.html#count">count</a>() -<li><a href="qptrlistiterator.html#current">current</a>() -<li><a href="qptrlistiterator.html#isEmpty">isEmpty</a>() -<li><a href="qptrlistiterator.html#operator-type-*">operator type *</a>() -<li><a href="qptrlistiterator.html#operator()">operator()</a>() -<li><a href="qptrlistiterator.html#operator*">operator*</a>() -<li><a href="qptrlistiterator.html#operator++">operator++</a>() -<li><a href="qptrlistiterator.html#operator+-eq">operator+=</a>() -<li><a href="qptrlistiterator.html#operator--">operator--</a>() -<li><a href="qptrlistiterator.html#operator--eq">operator-=</a>() +<li><a href="tqptrlistiterator.html#atFirst">atFirst</a>() +<li><a href="tqptrlistiterator.html#atLast">atLast</a>() +<li><a href="tqptrlistiterator.html#count">count</a>() +<li><a href="tqptrlistiterator.html#current">current</a>() +<li><a href="tqptrlistiterator.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlistiterator.html#operator-type-*">operator type *</a>() +<li><a href="tqptrlistiterator.html#operator()">operator()</a>() +<li><a href="tqptrlistiterator.html#operator*">operator*</a>() +<li><a href="tqptrlistiterator.html#operator++">operator++</a>() +<li><a href="tqptrlistiterator.html#operator+-eq">operator+=</a>() +<li><a href="tqptrlistiterator.html#operator--">operator--</a>() +<li><a href="tqptrlistiterator.html#operator--eq">operator-=</a>() <li><a href="tqobjectlistiterator.html#operator-eq">operator=</a>() -<li><a href="qptrlistiterator.html#toFirst">toFirst</a>() -<li><a href="qptrlistiterator.html#toLast">toLast</a>() +<li><a href="tqptrlistiterator.html#toFirst">toFirst</a>() +<li><a href="tqptrlistiterator.html#toLast">toLast</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/tqobjectlistiterator.html b/doc/html/tqobjectlistiterator.html index aa89ee177..757d956bc 100644 --- a/doc/html/tqobjectlistiterator.html +++ b/doc/html/tqobjectlistiterator.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } TQObjectLists. <a href="#details">More...</a> <p><tt>#include <<a href="tqobjectlist-h.html">tqobjectlist.h</a>></tt> -<p>Inherits <a href="qptrlistiterator.html">TQPtrListIterator</a><TQObject>. +<p>Inherits <a href="tqptrlistiterator.html">TQPtrListIterator</a><TQObject>. <p><a href="tqobjectlistiterator-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> @@ -49,7 +49,7 @@ The TQObjectListIterator class provides an iterator for TQObjectLists. <p> -<p> A TQObjectListIterator iterator is a <a href="qptrlistiterator.html">TQPtrListIterator<TQObject></a>. +<p> A TQObjectListIterator iterator is a <a href="tqptrlistiterator.html">TQPtrListIterator<TQObject></a>. <p> See <a href="tqobject.html#queryList">TQObject::queryList</a>() for an example of use. <p> <p>See also <a href="tqobjectlist.html">TQObjectList</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. diff --git a/doc/html/tqpair.html b/doc/html/tqpair.html index 23a144018..06358d915 100644 --- a/doc/html/tqpair.html +++ b/doc/html/tqpair.html @@ -62,12 +62,12 @@ values that contains two values of type T1 and T2. Please note that TQPair does not store pointers to the two elements; it holds a copy of every member. This is why these kinds of classes are called <em>value based</em>. If you're interested in <em>pointer based</em> -classes see, for example, <a href="ntqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a>. +classes see, for example, <a href="tqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a>. <p> TQPair holds one copy of type T1 and one copy of type T2, but does not provide iterators to access these elements. Instead, the two elements (<tt>first</tt> and <tt>second</tt>) are public member variables of the pair. TQPair owns the contained elements. For more relaxed -ownership semantics, see <a href="ntqptrcollection.html">TQPtrCollection</a> and friends which are +ownership semantics, see <a href="tqptrcollection.html">TQPtrCollection</a> and friends which are pointer-based containers. <p> Some classes cannot be used within a TQPair: for example, all classes derived from <a href="tqobject.html">TQObject</a> and thus all classes that implement diff --git a/doc/html/qptrcollection-h.html b/doc/html/tqptrcollection-h.html index de63bc4f5..6ccde3862 100644 --- a/doc/html/qptrcollection-h.html +++ b/doc/html/tqptrcollection-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/ntqptrcollection.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrcollection.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqptrcollection.h Include File</title> +<title>tqptrcollection.h Include File</title> <style type="text/css"><!-- fn { margin-left: 1cm; text-indent: -1cm; } a:link { color: #004faf; text-decoration: none } @@ -29,9 +29,9 @@ 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>ntqptrcollection.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>tqptrcollection.h</h1> -<p>This is the verbatim text of the ntqptrcollection.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqptrcollection.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** diff --git a/doc/html/qptrcollection-members.html b/doc/html/tqptrcollection-members.html index 1d65205e1..e94fc9d67 100644 --- a/doc/html/qptrcollection-members.html +++ b/doc/html/tqptrcollection-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/ntqptrcollection.h:50 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrcollection.h:50 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,17 +32,17 @@ 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 TQPtrCollection</h1> <p>This is the complete list of member functions for -<a href="ntqptrcollection.html">TQPtrCollection</a>, including inherited members. +<a href="tqptrcollection.html">TQPtrCollection</a>, including inherited members. <ul> -<li><a href="ntqptrcollection.html#TQPtrCollection">TQPtrCollection</a>() -<li><a href="ntqptrcollection.html#~TQPtrCollection">~TQPtrCollection</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrcollection.html#clear">clear</a>() -<li><a href="ntqptrcollection.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrcollection.html#TQPtrCollection">TQPtrCollection</a>() +<li><a href="tqptrcollection.html#~TQPtrCollection">~TQPtrCollection</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrcollection.html#clear">clear</a>() +<li><a href="tqptrcollection.html#count">count</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/ntqptrcollection.html b/doc/html/tqptrcollection.html index 7ba1bd2f8..d24a722c5 100644 --- a/doc/html/ntqptrcollection.html +++ b/doc/html/tqptrcollection.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/tools/qptrcollection.cpp:40 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/tools/tqptrcollection.cpp:40 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,9 +34,9 @@ body { background: #ffffff; color: black; } <p>The TQPtrCollection class is the base class of most pointer-based TQt collections. <a href="#details">More...</a> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> -<p><tt>#include <<a href="qptrcollection-h.html">ntqptrcollection.h</a>></tt> -<p>Inherited by <a href="ntqasciicache.html">TQAsciiCache</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqcache.html">TQCache</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqintcache.html">TQIntCache</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="ntqptrlist.html">TQPtrList</a>, <a href="ntqptrdict.html">TQPtrDict</a>, and <a href="ntqptrvector.html">TQPtrVector</a>. -<p><a href="qptrcollection-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqptrcollection-h.html">tqptrcollection.h</a>></tt> +<p>Inherited by <a href="ntqasciicache.html">TQAsciiCache</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqcache.html">TQCache</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqintcache.html">TQIntCache</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="tqptrlist.html">TQPtrList</a>, <a href="tqptrdict.html">TQPtrDict</a>, and <a href="tqptrvector.html">TQPtrVector</a>. +<p><a href="tqptrcollection-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn>bool <a href="#autoDelete"><b>autoDelete</b></a> () const</li> @@ -61,7 +61,7 @@ The TQPtrCollection class is the base class of most pointer-based TQt collection <p> <p> The TQPtrCollection class is an abstract base class for the TQt -<a href="collection.html">collection classes</a> <a href="ntqdict.html">TQDict</a>, <a href="ntqptrlist.html">TQPtrList</a>, +<a href="collection.html">collection classes</a> <a href="ntqdict.html">TQDict</a>, <a href="tqptrlist.html">TQPtrList</a>, etc. TQt also includes value based collections, e.g. <a href="tqvaluelist.html">TQValueList</a>, <a href="tqmap.html">TQMap</a>, etc. <p> A TQPtrCollection only knows about the number of objects in the @@ -83,7 +83,7 @@ the real collections cast the <a href="#Item">Item</a> to the required type. <p> Constructs a collection. The constructor is protected because TQPtrCollection is an abstract class. -<h3 class=fn><a name="TQPtrCollection-2"></a>TQPtrCollection::TQPtrCollection ( const <a href="ntqptrcollection.html">TQPtrCollection</a> & source )<tt> [protected]</tt> +<h3 class=fn><a name="TQPtrCollection-2"></a>TQPtrCollection::TQPtrCollection ( const <a href="tqptrcollection.html">TQPtrCollection</a> & source )<tt> [protected]</tt> </h3> <p> Constructs a copy of <em>source</em> with <a href="#autoDelete">autoDelete</a>() set to FALSE. The @@ -111,14 +111,14 @@ TQPtrCollection is an abstract class. deleted if auto-delete has been enabled. <p> <p>See also <a href="#setAutoDelete">setAutoDelete</a>(). -<p>Reimplemented in <a href="ntqasciicache.html#clear">TQAsciiCache</a>, <a href="ntqasciidict.html#clear">TQAsciiDict</a>, <a href="ntqcache.html#clear">TQCache</a>, <a href="ntqdict.html#clear">TQDict</a>, <a href="ntqintcache.html#clear">TQIntCache</a>, <a href="ntqintdict.html#clear">TQIntDict</a>, <a href="ntqptrlist.html#clear">TQPtrList</a>, <a href="ntqptrdict.html#clear">TQPtrDict</a>, and <a href="ntqptrvector.html#clear">TQPtrVector</a>. +<p>Reimplemented in <a href="ntqasciicache.html#clear">TQAsciiCache</a>, <a href="ntqasciidict.html#clear">TQAsciiDict</a>, <a href="ntqcache.html#clear">TQCache</a>, <a href="ntqdict.html#clear">TQDict</a>, <a href="ntqintcache.html#clear">TQIntCache</a>, <a href="ntqintdict.html#clear">TQIntDict</a>, <a href="tqptrlist.html#clear">TQPtrList</a>, <a href="tqptrdict.html#clear">TQPtrDict</a>, and <a href="tqptrvector.html#clear">TQPtrVector</a>. <h3 class=fn>uint <a name="count"></a>TQPtrCollection::count () const<tt> [pure virtual]</tt> </h3> <p> Returns the number of objects in the collection. -<p>Reimplemented in <a href="ntqasciicache.html#count">TQAsciiCache</a>, <a href="ntqasciidict.html#count">TQAsciiDict</a>, <a href="ntqcache.html#count">TQCache</a>, <a href="ntqdict.html#count">TQDict</a>, <a href="ntqintcache.html#count">TQIntCache</a>, <a href="ntqintdict.html#count">TQIntDict</a>, <a href="ntqptrlist.html#count">TQPtrList</a>, <a href="ntqptrdict.html#count">TQPtrDict</a>, and <a href="ntqptrvector.html#count">TQPtrVector</a>. -<h3 class=fn>void <a name="deleteItem"></a>TQPtrCollection::deleteItem ( <a href="ntqptrcollection.html#Item">Item</a> d )<tt> [pure virtual protected]</tt> +<p>Reimplemented in <a href="ntqasciicache.html#count">TQAsciiCache</a>, <a href="ntqasciidict.html#count">TQAsciiDict</a>, <a href="ntqcache.html#count">TQCache</a>, <a href="ntqdict.html#count">TQDict</a>, <a href="ntqintcache.html#count">TQIntCache</a>, <a href="ntqintdict.html#count">TQIntDict</a>, <a href="tqptrlist.html#count">TQPtrList</a>, <a href="tqptrdict.html#count">TQPtrDict</a>, and <a href="tqptrvector.html#count">TQPtrVector</a>. +<h3 class=fn>void <a name="deleteItem"></a>TQPtrCollection::deleteItem ( <a href="tqptrcollection.html#Item">Item</a> d )<tt> [pure virtual protected]</tt> </h3> <p> Reimplement this function if you want to be able to delete items. @@ -135,7 +135,7 @@ cannot be called from a destructor. If you do not do this, your destroyed. <p> <p>See also <a href="#newItem">newItem</a>() and <a href="#setAutoDelete">setAutoDelete</a>(). -<h3 class=fn><a href="ntqptrcollection.html#Item">Item</a> <a name="newItem"></a>TQPtrCollection::newItem ( <a href="ntqptrcollection.html#Item">Item</a> d )<tt> [virtual protected]</tt> +<h3 class=fn><a href="tqptrcollection.html#Item">Item</a> <a name="newItem"></a>TQPtrCollection::newItem ( <a href="tqptrcollection.html#Item">Item</a> d )<tt> [virtual protected]</tt> </h3> Virtual function that creates a copy of an object that is about to be inserted into the collection. diff --git a/doc/html/qptrdict-h.html b/doc/html/tqptrdict-h.html index 0d8efdcb0..546458afa 100644 --- a/doc/html/qptrdict-h.html +++ b/doc/html/tqptrdict-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/ntqptrdict.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrdict.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqptrdict.h Include File</title> +<title>tqptrdict.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>ntqptrdict.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>tqptrdict.h</h1> -<p>This is the verbatim text of the ntqptrdict.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqptrdict.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqptrdict.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqptrdict.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of TQPtrDict template class ** diff --git a/doc/html/qptrdict-members.html b/doc/html/tqptrdict-members.html index 5df1ba1ae..a22a09f74 100644 --- a/doc/html/qptrdict-members.html +++ b/doc/html/tqptrdict-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/ntqptrdict.h:48 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrdict.h:48 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,30 +32,30 @@ 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 TQPtrDict</h1> <p>This is the complete list of member functions for -<a href="ntqptrdict.html">TQPtrDict</a>, including inherited members. +<a href="tqptrdict.html">TQPtrDict</a>, including inherited members. <ul> -<li><a href="ntqptrdict.html#TQPtrDict">TQPtrDict</a>() -<li><a href="ntqptrdict.html#~TQPtrDict">~TQPtrDict</a>() -<li><a href="ntqptrcollection.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrdict.html#clear">clear</a>() -<li><a href="ntqptrdict.html#count">count</a>() -<li><a href="ntqptrcollection.html#deleteItem">deleteItem</a>() -<li><a href="ntqptrdict.html#find">find</a>() -<li><a href="ntqptrdict.html#insert">insert</a>() -<li><a href="ntqptrdict.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrcollection.html#newItem">newItem</a>() -<li><a href="ntqptrdict.html#operator-eq">operator=</a>() -<li><a href="ntqptrdict.html#operator[]">operator[]</a>() -<li><a href="ntqptrdict.html#read">read</a>() -<li><a href="ntqptrdict.html#remove">remove</a>() -<li><a href="ntqptrdict.html#replace">replace</a>() -<li><a href="ntqptrdict.html#resize">resize</a>() -<li><a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrdict.html#size">size</a>() -<li><a href="ntqptrdict.html#statistics">statistics</a>() -<li><a href="ntqptrdict.html#take">take</a>() -<li><a href="ntqptrdict.html#write">write</a>() +<li><a href="tqptrdict.html#TQPtrDict">TQPtrDict</a>() +<li><a href="tqptrdict.html#~TQPtrDict">~TQPtrDict</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrdict.html#clear">clear</a>() +<li><a href="tqptrdict.html#count">count</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrdict.html#find">find</a>() +<li><a href="tqptrdict.html#insert">insert</a>() +<li><a href="tqptrdict.html#isEmpty">isEmpty</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrdict.html#operator-eq">operator=</a>() +<li><a href="tqptrdict.html#operator[]">operator[]</a>() +<li><a href="tqptrdict.html#read">read</a>() +<li><a href="tqptrdict.html#remove">remove</a>() +<li><a href="tqptrdict.html#replace">replace</a>() +<li><a href="tqptrdict.html#resize">resize</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrdict.html#size">size</a>() +<li><a href="tqptrdict.html#statistics">statistics</a>() +<li><a href="tqptrdict.html#take">take</a>() +<li><a href="tqptrdict.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/ntqptrdict.html b/doc/html/tqptrdict.html index 33ea4eb05..bed2cc493 100644 --- a/doc/html/ntqptrdict.html +++ b/doc/html/tqptrdict.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/doc/qptrdict.doc:41 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrdict.doc:41 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,9 +33,9 @@ body { background: #ffffff; color: black; } <p>The TQPtrDict class is a template class that provides a dictionary based on void* keys. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrdict-h.html">ntqptrdict.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. -<p><a href="qptrdict-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqptrdict-h.html">tqptrdict.h</a>></tt> +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. +<p><a href="tqptrdict-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrDict"><b>TQPtrDict</b></a> ( int size = 17 )</li> @@ -93,9 +93,9 @@ pointer. Dictionaries provide very fast insertion and lookup. fields.<a href="#insert">insert</a>( le2, "Forename" ); fields.<a href="#insert">insert</a>( le3, "Age" ); - <a href="qptrdictiterator.html">TQPtrDictIterator</a><char> it( fields ); - for( ; it.<a href="qptrdictiterator.html#current">current</a>(); ++it ) - cout << it.<a href="qptrdictiterator.html#current">current</a>() << endl; + <a href="tqptrdictiterator.html">TQPtrDictIterator</a><char> it( fields ); + for( ; it.<a href="tqptrdictiterator.html#current">current</a>(); ++it ) + cout << it.<a href="tqptrdictiterator.html#current">current</a>() << endl; cout << endl; if ( fields[le1] ) // Prints "Surname: Simpson" @@ -111,7 +111,7 @@ In this example we use a dictionary to add an extra property (a char*) to the line edits we're using. <p> See <a href="ntqdict.html">TQDict</a> for full details, including the choice of dictionary size, and how deletions are handled. -<p> <p>See also <a href="qptrdictiterator.html">TQPtrDictIterator</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="collection.html">Collection Classes</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="tqptrdictiterator.html">TQPtrDictIterator</a>, <a href="ntqdict.html">TQDict</a>, <a href="ntqasciidict.html">TQAsciiDict</a>, <a href="ntqintdict.html">TQIntDict</a>, <a href="collection.html">Collection Classes</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQPtrDict"></a>TQPtrDict::TQPtrDict ( int size = 17 ) @@ -123,7 +123,7 @@ size, and how deletions are handled. greater than the expected number of entries) makes the hash distribution better and improves lookup performance. -<h3 class=fn><a name="TQPtrDict-2"></a>TQPtrDict::TQPtrDict ( const <a href="ntqptrdict.html">TQPtrDict</a><type> & dict ) +<h3 class=fn><a name="TQPtrDict-2"></a>TQPtrDict::TQPtrDict ( const <a href="tqptrdict.html">TQPtrDict</a><type> & dict ) </h3> <p> Constructs a copy of <em>dict</em>. @@ -135,31 +135,31 @@ pointers are copied (shallow copy). <p> Removes all items from the dictionary and destroys it. <p> All iterators that access this dictionary will be reset. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>bool <a name="autoDelete"></a>TQPtrCollection::autoDelete () const </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQPtrDict::clear ()<tt> [virtual]</tt> </h3> <p> Removes all items from the dictionary. -<p> The removed items are deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed items are deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that access this dictionary will be reset. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. <h3 class=fn>uint <a name="count"></a>TQPtrDict::count () const<tt> [virtual]</tt> </h3> <p> Returns the number of items in the dictionary. <p> <p>See also <a href="#isEmpty">isEmpty</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="find"></a>TQPtrDict::find ( void * key ) const </h3> @@ -185,14 +185,14 @@ item will be accessible using <a href="#operator[]">operator[]</a>(). <p> Returns TRUE if the dictionary is empty; otherwise returns FALSE. <p> <p>See also <a href="#count">count</a>(). -<h3 class=fn><a href="ntqptrdict.html">TQPtrDict</a><type> & <a name="operator-eq"></a>TQPtrDict::operator= ( const <a href="ntqptrdict.html">TQPtrDict</a><type> & dict ) +<h3 class=fn><a href="tqptrdict.html">TQPtrDict</a><type> & <a name="operator-eq"></a>TQPtrDict::operator= ( const <a href="tqptrdict.html">TQPtrDict</a><type> & dict ) </h3> <p> Assigns <em>dict</em> to this dictionary and returns a reference to this dictionary. <p> This dictionary is first cleared and then each item in <em>dict</em> is inserted into the dictionary. Only the pointers are copied -(shallow copy), unless <a href="ntqptrcollection.html#newItem">newItem</a>() has been reimplemented. +(shallow copy), unless <a href="tqptrcollection.html#newItem">newItem</a>() has been reimplemented. <h3 class=fn>type * <a name="operator[]"></a>TQPtrDict::operator[] ( void * key ) const </h3> @@ -204,7 +204,7 @@ recently inserted item will be found. <p> Equivalent to the <a href="#find">find</a>() function. <p> <p>See also <a href="#find">find</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrDict::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a dictionary item from the stream <em>s</em> and returns a @@ -220,10 +220,10 @@ Returns TRUE if successful, i.e. if <em>key</em> is in the dictionary; otherwise returns FALSE. <p> If there are two or more items with equal keys, then the most recently inserted item will be removed. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary traversal order. -<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="replace"></a>TQPtrDict::replace ( void * key, const type * item ) </h3> @@ -267,7 +267,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>uint <a name="size"></a>TQPtrDict::size () const @@ -287,16 +287,16 @@ distribution using <a href="ntqapplication.html#qDebug">tqDebug</a>(). </h3> <p> Takes the item associated with <em>key</em> out of the dictionary -without deleting it (even if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). +without deleting it (even if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). <p> If there are two or more items with equal keys, then the most recently inserted item will be removed. <p> Returns a pointer to the item taken out, or 0 if the key does not exist in the dictionary. <p> All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary traversal order. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrDict::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> ) const<tt> [virtual protected]</tt> </h3> <p> Writes a dictionary item to the stream <em>s</em> and returns a diff --git a/doc/html/qptrdictiterator-members.html b/doc/html/tqptrdictiterator-members.html index d6806314e..874f9ed65 100644 --- a/doc/html/qptrdictiterator-members.html +++ b/doc/html/tqptrdictiterator-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/ntqptrdict.h:99 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrdict.h:99 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,20 +32,20 @@ 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 TQPtrDictIterator</h1> <p>This is the complete list of member functions for -<a href="qptrdictiterator.html">TQPtrDictIterator</a>, including inherited members. +<a href="tqptrdictiterator.html">TQPtrDictIterator</a>, including inherited members. <ul> -<li><a href="qptrdictiterator.html#TQPtrDictIterator">TQPtrDictIterator</a>() -<li><a href="qptrdictiterator.html#~TQPtrDictIterator">~TQPtrDictIterator</a>() -<li><a href="qptrdictiterator.html#count">count</a>() -<li><a href="qptrdictiterator.html#current">current</a>() -<li><a href="qptrdictiterator.html#currentKey">currentKey</a>() -<li><a href="qptrdictiterator.html#isEmpty">isEmpty</a>() -<li><a href="qptrdictiterator.html#operator-type-*">operator type *</a>() -<li><a href="qptrdictiterator.html#operator()">operator()</a>() -<li><a href="qptrdictiterator.html#operator++">operator++</a>() -<li><a href="qptrdictiterator.html#operator+-eq">operator+=</a>() -<li><a href="qptrdictiterator.html#toFirst">toFirst</a>() +<li><a href="tqptrdictiterator.html#TQPtrDictIterator">TQPtrDictIterator</a>() +<li><a href="tqptrdictiterator.html#~TQPtrDictIterator">~TQPtrDictIterator</a>() +<li><a href="tqptrdictiterator.html#count">count</a>() +<li><a href="tqptrdictiterator.html#current">current</a>() +<li><a href="tqptrdictiterator.html#currentKey">currentKey</a>() +<li><a href="tqptrdictiterator.html#isEmpty">isEmpty</a>() +<li><a href="tqptrdictiterator.html#operator-type-*">operator type *</a>() +<li><a href="tqptrdictiterator.html#operator()">operator()</a>() +<li><a href="tqptrdictiterator.html#operator++">operator++</a>() +<li><a href="tqptrdictiterator.html#operator+-eq">operator+=</a>() +<li><a href="tqptrdictiterator.html#toFirst">toFirst</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qptrdictiterator.html b/doc/html/tqptrdictiterator.html index 8e4f56d1c..857a2e7a4 100644 --- a/doc/html/qptrdictiterator.html +++ b/doc/html/tqptrdictiterator.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/doc/qptrdict.doc:319 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrdict.doc:319 --> <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 TQPtrDictIterator class provides an iterator for TQPtrDict collections. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrdict-h.html">ntqptrdict.h</a>></tt> -<p><a href="qptrdictiterator-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqptrdict-h.html">tqptrdict.h</a>></tt> +<p><a href="tqptrdictiterator-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrDictIterator"><b>TQPtrDictIterator</b></a> ( const TQPtrDict<type> & dict )</li> @@ -52,7 +52,7 @@ body { background: #ffffff; color: black; } <hr><a name="details"></a><h2>Detailed Description</h2> -The TQPtrDictIterator class provides an iterator for <a href="ntqptrdict.html">TQPtrDict</a> collections. +The TQPtrDictIterator class provides an iterator for <a href="tqptrdict.html">TQPtrDict</a> collections. <p> <p> TQPtrDictIterator is implemented as a template class. Define a @@ -60,7 +60,7 @@ template instance TQPtrDictIterator<X> to create a dictionary iterator that operates on TQPtrDict<X> (dictionary of X*). <p> Example: <pre> - <a href="ntqptrdict.html">TQPtrDict</a><char> fields; + <a href="tqptrdict.html">TQPtrDict</a><char> fields; <a href="ntqlineedit.html">TQLineEdit</a> *le1 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); le1-><a href="ntqlineedit.html#setText">setText</a>( "Simpson" ); @@ -69,9 +69,9 @@ iterator that operates on TQPtrDict<X> (dictionary of X*). <a href="ntqlineedit.html">TQLineEdit</a> *le3 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); le3-><a href="ntqlineedit.html#setText">setText</a>( "45" ); - fields.<a href="ntqptrdict.html#insert">insert</a>( le1, "Surname" ); - fields.<a href="ntqptrdict.html#insert">insert</a>( le2, "Forename" ); - fields.<a href="ntqptrdict.html#insert">insert</a>( le3, "Age" ); + fields.<a href="tqptrdict.html#insert">insert</a>( le1, "Surname" ); + fields.<a href="tqptrdict.html#insert">insert</a>( le2, "Forename" ); + fields.<a href="tqptrdict.html#insert">insert</a>( le3, "Age" ); TQPtrDictIterator<char> it( fields ); for( ; it.<a href="#current">current</a>(); ++it ) { @@ -90,14 +90,14 @@ In the example we insert some line edits into a dictionary, associating a string with each. We then iterate over the dictionary printing the associated strings. <p> Multiple iterators may independently traverse the same dictionary. -A <a href="ntqptrdict.html">TQPtrDict</a> knows about all the iterators that are operating on the +A <a href="tqptrdict.html">TQPtrDict</a> knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, TQPtrDict updates all iterators that refer the removed item to point to the next item in the traversing order. -<p> <p>See also <a href="ntqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="tqptrdict.html">TQPtrDict</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQPtrDictIterator"></a>TQPtrDictIterator::TQPtrDictIterator ( const <a href="ntqptrdict.html">TQPtrDict</a><type> & dict ) +<h3 class=fn><a name="TQPtrDictIterator"></a>TQPtrDictIterator::TQPtrDictIterator ( const <a href="tqptrdict.html">TQPtrDict</a><type> & dict ) </h3> <p> Constructs an iterator for <em>dict</em>. The current iterator item is diff --git a/doc/html/qptrlist-h.html b/doc/html/tqptrlist-h.html index d3d5dc02d..aa5e489bd 100644 --- a/doc/html/qptrlist-h.html +++ b/doc/html/tqptrlist-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/ntqptrlist.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrlist.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqptrlist.h Include File</title> +<title>tqptrlist.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>ntqptrlist.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>tqptrlist.h</h1> -<p>This is the verbatim text of the ntqptrlist.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqptrlist.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqptrlist.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqptrlist.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of TQPtrList template/macro class ** diff --git a/doc/html/tqptrlist-members.html b/doc/html/tqptrlist-members.html new file mode 100644 index 000000000..eacdb8645 --- /dev/null +++ b/doc/html/tqptrlist-members.html @@ -0,0 +1,90 @@ +<!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/tqptrlist.h:61 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>TQPtrList 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 TQPtrList</h1> + +<p>This is the complete list of member functions for +<a href="tqptrlist.html">TQPtrList</a>, including inherited members. + +<ul> +<li><a href="tqptrlist.html#TQPtrList">TQPtrList</a>() +<li><a href="tqptrlist.html#~TQPtrList">~TQPtrList</a>() +<li><a href="tqptrlist.html#append">append</a>() +<li><a href="tqptrlist.html#at">at</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrlist.html#clear">clear</a>() +<li><a href="tqptrlist.html#compareItems">compareItems</a>() +<li><a href="tqptrlist.html#contains">contains</a>() +<li><a href="tqptrlist.html#containsRef">containsRef</a>() +<li><a href="tqptrlist.html#count">count</a>() +<li><a href="tqptrlist.html#current">current</a>() +<li><a href="tqptrlist.html#currentNode">currentNode</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrlist.html#find">find</a>() +<li><a href="tqptrlist.html#findNext">findNext</a>() +<li><a href="tqptrlist.html#findNextRef">findNextRef</a>() +<li><a href="tqptrlist.html#findRef">findRef</a>() +<li><a href="tqptrlist.html#first">first</a>() +<li><a href="tqptrlist.html#getFirst">getFirst</a>() +<li><a href="tqptrlist.html#getLast">getLast</a>() +<li><a href="tqptrlist.html#inSort">inSort</a>() +<li><a href="tqptrlist.html#insert">insert</a>() +<li><a href="tqptrlist.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlist.html#last">last</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrlist.html#next">next</a>() +<li><a href="tqptrlist.html#operator!-eq">operator!=</a>() +<li><a href="tqptrlist.html#operator-eq">operator=</a>() +<li><a href="tqptrlist.html#operator-eq-eq">operator==</a>() +<li><a href="tqptrlist.html#prepend">prepend</a>() +<li><a href="tqptrlist.html#prev">prev</a>() +<li><a href="tqptrlist.html#read">read</a>() +<li><a href="tqptrlist.html#remove">remove</a>() +<li><a href="tqptrlist.html#removeFirst">removeFirst</a>() +<li><a href="tqptrlist.html#removeLast">removeLast</a>() +<li><a href="tqptrlist.html#removeNode">removeNode</a>() +<li><a href="tqptrlist.html#removeRef">removeRef</a>() +<li><a href="tqptrlist.html#replace">replace</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrlist.html#sort">sort</a>() +<li><a href="tqptrlist.html#take">take</a>() +<li><a href="tqptrlist.html#takeNode">takeNode</a>() +<li><a href="tqptrlist.html#toVector">toVector</a>() +<li><a href="tqptrlist.html#write">write</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/ntqptrlist.html b/doc/html/tqptrlist.html index 4b00f377d..15b7913c4 100644 --- a/doc/html/ntqptrlist.html +++ b/doc/html/tqptrlist.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/doc/qptrlist.doc:41 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrlist.doc:41 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -33,10 +33,10 @@ body { background: #ffffff; color: black; } <p>The TQPtrList class is a template class that provides a list. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrlist-h.html">ntqptrlist.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. +<p><tt>#include <<a href="tqptrlist-h.html">tqptrlist.h</a>></tt> +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. <p>Inherited by <a href="tqobjectlist.html">TQObjectList</a> and <a href="ntqstrlist.html">TQStrList</a>. -<p><a href="qptrlist-members.html">List of all member functions.</a> +<p><a href="tqptrlist-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrList"><b>TQPtrList</b></a> ()</li> @@ -117,7 +117,7 @@ or <a href="#containsRef">containsRef</a>(). You can get a pointer to the curren with <a href="#at">at</a>() or to the first or last item with <a href="#getFirst">getFirst</a>() and <a href="#getLast">getLast</a>(). You can also iterate over the list with <a href="#first">first</a>(), <a href="#last">last</a>(), <a href="#next">next</a>() and <a href="#prev">prev</a>() (which all update current()). The list's -deletion property is set with <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +deletion property is set with <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <p> <a name="example"></a> Example: <pre> @@ -142,7 +142,7 @@ Example: }; TQPtrList<Employee> list; - list.<a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); // the list owns the objects + list.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE ); // the list owns the objects list.<a href="#append">append</a>( new Employee("John", "Doe", 50000) ); list.<a href="#append">append</a>( new Employee("Jane", "Williams", 80000) ); @@ -173,10 +173,10 @@ Example: </pre> <p> TQPtrList has several member functions for traversing the list, but -using a <a href="qptrlistiterator.html">TQPtrListIterator</a> can be more practical. Multiple list +using a <a href="tqptrlistiterator.html">TQPtrListIterator</a> can be more practical. Multiple list iterators may traverse the same list, independently of each other and of the current list item. -<p> In the example above we make the call <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE). +<p> In the example above we make the call <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE). Enabling auto-deletion tells the list to delete items that are removed. The default is to not delete items when they are removed but this would cause a memory leak in the example because there @@ -185,10 +185,10 @@ are no other references to the list items. the item itself, i.e. a <a href="shclass.html#shallow-copy">shallow copy</a>. It is possible to make the list copy all of the item's data (deep copy) when an item is inserted. <a href="#insert">insert</a>(), <a href="#inSort">inSort</a>() and <a href="#append">append</a>() call the virtual -function <a href="ntqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. -Inherit a list and reimplement <a href="ntqptrcollection.html#newItem">newItem</a>() to have deep copies. +function <a href="tqptrcollection.html#newItem">TQPtrCollection::newItem</a>() for the item to be inserted. +Inherit a list and reimplement <a href="tqptrcollection.html#newItem">newItem</a>() to have deep copies. <p> When removing an item from a list, the virtual function -<a href="ntqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. TQPtrList's default +<a href="tqptrcollection.html#deleteItem">TQPtrCollection::deleteItem</a>() is called. TQPtrList's default implementation is to delete the item if auto-deletion is enabled. <p> The virtual function <a href="#compareItems">compareItems</a>() can be reimplemented to compare two list items. This function is called from all list @@ -203,9 +203,9 @@ functions <a href="#currentNode">currentNode</a>(), <a href="#removeNode">remove directly on the TQLNode, but they should be used with care. The data component of the node is available through TQLNode::getData(). <p> The <a href="ntqstrlist.html">TQStrList</a> class defined in <a href="qstrlist-h.html">ntqstrlist.h</a> is a list of <tt>char*</tt>. -It reimplements <a href="ntqptrcollection.html#newItem">newItem</a>(), <a href="ntqptrcollection.html#deleteItem">deleteItem</a>() and <a href="#compareItems">compareItems</a>(). (But +It reimplements <a href="tqptrcollection.html#newItem">newItem</a>(), <a href="tqptrcollection.html#deleteItem">deleteItem</a>() and <a href="#compareItems">compareItems</a>(). (But see <a href="ntqstringlist.html">TQStringList</a> for a list of Unicode TQStrings.) -<p> <p>See also <a href="qptrlistiterator.html">TQPtrListIterator</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="tqptrlistiterator.html">TQPtrListIterator</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQPtrList"></a>TQPtrList::TQPtrList () @@ -213,7 +213,7 @@ see <a href="ntqstringlist.html">TQStringList</a> for a list of Unicode TQString <p> Constructs an empty list. -<h3 class=fn><a name="TQPtrList-2"></a>TQPtrList::TQPtrList ( const <a href="ntqptrlist.html">TQPtrList</a><type> & list ) +<h3 class=fn><a name="TQPtrList-2"></a>TQPtrList::TQPtrList ( const <a href="tqptrlist.html">TQPtrList</a><type> & list ) </h3> <p> Constructs a copy of <em>list</em>. @@ -225,7 +225,7 @@ list. Only the pointers are copied (shallow copy). <p> Removes all items from the list and destroys the list. <p> All list iterators that access this list will be reset. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="append"></a>TQPtrList::append ( const type * item ) </h3> @@ -261,18 +261,18 @@ item, last item, or current item, whichever is closest to <em>index</em>. </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQPtrList::clear ()<tt> [virtual]</tt> </h3> <p> Removes all items from the list. -<p> The removed items are deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed items are deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> All list iterators that access this list will be reset. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#take">take</a>(), and <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. -<h3 class=fn>int <a name="compareItems"></a>TQPtrList::compareItems ( <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> item1, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> item2 )<tt> [virtual protected]</tt> +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. +<h3 class=fn>int <a name="compareItems"></a>TQPtrList::compareItems ( <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> item1, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> item2 )<tt> [virtual protected]</tt> </h3> <p> This virtual function compares two list items. @@ -321,7 +321,7 @@ contains() compares <em>item</em> with each list item using <p> <p>See also <a href="#isEmpty">isEmpty</a>(). <p>Examples: <a href="customlayout-example.html#x1502">customlayout/border.cpp</a>, <a href="customlayout-example.html#x1520">customlayout/card.cpp</a>, <a href="customlayout-example.html#x1479">customlayout/flow.cpp</a>, <a href="dirview-example.html#x1699">dirview/dirview.cpp</a>, <a href="grapher-nsplugin-example.html#x2771">grapher/grapher.cpp</a>, <a href="mdi-example.html#x2054">mdi/application.cpp</a>, and <a href="qwerty-example.html#x389">qwerty/qwerty.cpp</a>. -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type * <a name="current"></a>TQPtrList::current () const </h3> @@ -470,20 +470,20 @@ function call was the last item, the current item will be set to <p> <p>See also <a href="#first">first</a>(), <a href="#last">last</a>(), <a href="#prev">prev</a>(), and <a href="#current">current</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2773">grapher/grapher.cpp</a>, <a href="listviews-example.html#x133">listviews/listviews.h</a>, and <a href="showimg-example.html#x1344">showimg/showimg.cpp</a>. -<h3 class=fn>bool <a name="operator!-eq"></a>TQPtrList::operator!= ( const <a href="ntqptrlist.html">TQPtrList</a><type> & list ) const +<h3 class=fn>bool <a name="operator!-eq"></a>TQPtrList::operator!= ( const <a href="tqptrlist.html">TQPtrList</a><type> & list ) const </h3> <p> Compares this list with <em>list</em>. Returns TRUE if the lists contain different data; otherwise returns FALSE. -<h3 class=fn><a href="ntqptrlist.html">TQPtrList</a><type> & <a name="operator-eq"></a>TQPtrList::operator= ( const <a href="ntqptrlist.html">TQPtrList</a><type> & list ) +<h3 class=fn><a href="tqptrlist.html">TQPtrList</a><type> & <a name="operator-eq"></a>TQPtrList::operator= ( const <a href="tqptrlist.html">TQPtrList</a><type> & list ) </h3> <p> Assigns <em>list</em> to this list and returns a reference to this list. <p> This list is first cleared and then each item in <em>list</em> is <a href="#append">appended</a> to this list. Only the pointers are -copied (shallow copy) unless <a href="ntqptrcollection.html#newItem">newItem</a>() has been reimplemented. +copied (shallow copy) unless <a href="tqptrcollection.html#newItem">newItem</a>() has been reimplemented. -<h3 class=fn>bool <a name="operator-eq-eq"></a>TQPtrList::operator== ( const <a href="ntqptrlist.html">TQPtrList</a><type> & list ) const +<h3 class=fn>bool <a name="operator-eq-eq"></a>TQPtrList::operator== ( const <a href="tqptrlist.html">TQPtrList</a><type> & list ) const </h3> <p> Compares this list with <em>list</em>. Returns TRUE if the lists contain @@ -508,7 +508,7 @@ function call was the first item, the current item will be set to 0. If the current item was 0, this function does nothing. <p> <p>See also <a href="#first">first</a>(), <a href="#last">last</a>(), <a href="#next">next</a>(), and <a href="#current">current</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrList::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrList::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a list item from the stream <em>s</em> and returns a reference to @@ -523,13 +523,13 @@ the stream. <p> Returns TRUE if successful, i.e. if <em>index</em> is in range; otherwise returns FALSE. The valid range is <tt>0..(count() - 1)</tt> inclusive. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. <p> All list iterators that refer to the removed item will be set to point to the new current item. -<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#current">current</a>(), and <a href="#removeRef">removeRef</a>(). +<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#current">current</a>(), and <a href="#removeRef">removeRef</a>(). <h3 class=fn>bool <a name="remove-2"></a>TQPtrList::remove () </h3> @@ -538,14 +538,14 @@ point to the new current item. <p> Removes the current list item. <p> Returns TRUE if successful, i.e. if the current item isn't 0; otherwise returns FALSE. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> The item after the removed item becomes the new current list item if the removed item is not the last item in the list. If the last item is removed, the new last item becomes the current item. The current item is set to 0 if the list becomes empty. <p> All list iterators that refer to the removed item will be set to point to the new current item. -<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#current">current</a>(), and <a href="#removeRef">removeRef</a>(). +<p> <p>See also <a href="#take">take</a>(), <a href="#clear">clear</a>(), <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#current">current</a>(), and <a href="#removeRef">removeRef</a>(). <h3 class=fn>bool <a name="remove-3"></a>TQPtrList::remove ( const type * item ) </h3> @@ -554,7 +554,7 @@ point to the new current item. <p> Removes the first occurrence of <em>item</em> from the list. <p> Returns TRUE if successful, i.e. if <em>item</em> is in the list; otherwise returns FALSE. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> The <a href="#compareItems">compareItems</a>() function is called when searching for the item in the list. If compareItems() is not reimplemented, it is more efficient to call <a href="#removeRef">removeRef</a>(). @@ -565,38 +565,38 @@ item is removed, the new last item becomes the current item. The current item is set to 0 if the list becomes empty. <p> All list iterators that refer to the removed item will be set to point to the new current item. -<p> <p>See also <a href="#removeRef">removeRef</a>(), <a href="#take">take</a>(), <a href="#clear">clear</a>(), <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#compareItems">compareItems</a>(), and <a href="#current">current</a>(). +<p> <p>See also <a href="#removeRef">removeRef</a>(), <a href="#take">take</a>(), <a href="#clear">clear</a>(), <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#compareItems">compareItems</a>(), and <a href="#current">current</a>(). <h3 class=fn>bool <a name="removeFirst"></a>TQPtrList::removeFirst () </h3> <p> Removes the first item from the list. Returns TRUE if successful, i.e. if the list isn't empty; otherwise returns FALSE. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> The first item in the list becomes the new current list item. The current item is set to 0 if the list becomes empty. <p> All list iterators that refer to the removed item will be set to point to the new current item. -<p> <p>See also <a href="#removeLast">removeLast</a>(), <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#current">current</a>(), and <a href="#remove">remove</a>(). +<p> <p>See also <a href="#removeLast">removeLast</a>(), <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(), <a href="#current">current</a>(), and <a href="#remove">remove</a>(). <h3 class=fn>bool <a name="removeLast"></a>TQPtrList::removeLast () </h3> <p> Removes the last item from the list. Returns TRUE if successful, i.e. if the list isn't empty; otherwise returns FALSE. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> The last item in the list becomes the new current list item. The current item is set to 0 if the list becomes empty. <p> All list iterators that refer to the removed item will be set to point to the new current item. -<p> <p>See also <a href="#removeFirst">removeFirst</a>(), <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(), and <a href="#current">current</a>(). +<p> <p>See also <a href="#removeFirst">removeFirst</a>(), <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(), and <a href="#current">current</a>(). <h3 class=fn>void <a name="removeNode"></a>TQPtrList::removeNode ( TQLNode * node ) </h3> <p> Removes the <em>node</em> from the list. <p> This node must exist in the list, otherwise the program may crash. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> The first item in the list will become the new current list item. The current item is set to 0 if the list becomes empty. <p> All list iterators that refer to the removed item will be set to @@ -611,7 +611,7 @@ the removed item was the last item. <p> Removes the first occurrence of <em>item</em> from the list. <p> Returns TRUE if successful, i.e. if <em>item</em> is in the list; otherwise returns FALSE. -<p> The removed item is deleted if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. +<p> The removed item is deleted if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. <p> Equivalent to: <pre> if ( list.findRef( item ) != -1 ) @@ -624,7 +624,7 @@ item is removed, the new last item becomes the current item. The current item is set to 0 if the list becomes empty. <p> All list iterators that refer to the removed item will be set to point to the new current item. -<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(), and <a href="#current">current</a>(). +<p> <p>See also <a href="#remove">remove</a>(), <a href="#clear">clear</a>(), <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(), and <a href="#current">current</a>(). <h3 class=fn>bool <a name="replace"></a>TQPtrList::replace ( uint index, const type * item ) </h3> @@ -649,7 +649,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>void <a name="sort"></a>TQPtrList::sort () @@ -666,7 +666,7 @@ the sorting problem. </h3> <p> Takes the item at position <em>index</em> out of the list without -deleting it (even if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> +deleting it (even if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). <p> Returns a pointer to the item taken out of the list, or 0 if the index is out of range. The valid range is <tt>0..(count() - 1)</tt> @@ -685,7 +685,7 @@ point to the new current item. <p> This is an overloaded member function, provided for convenience. It behaves essentially like the above function. <p> Takes the current item out of the list without deleting it (even -if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). +if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). <p> Returns a pointer to the item taken out of the list, or 0 if the current item is 0. <p> The item after the removed item becomes the new current list item @@ -700,7 +700,7 @@ point to the new current item. </h3> <p> Takes the <em>node</em> out of the list without deleting its item (even -if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). +if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled). Returns a pointer to the item taken out of the list. <p> This node must exist in the list, otherwise the program may crash. <p> The first item in the list becomes the new current list item. @@ -717,7 +717,7 @@ the taken item was the last item. <p> The vector must be of the same item type, otherwise the result will be undefined. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrList::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrList::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> </h3> <p> Writes a list item, <em>item</em> to the stream <em>s</em> and returns a diff --git a/doc/html/qptrlistiterator-members.html b/doc/html/tqptrlistiterator-members.html index 468b6fd14..cc693c1c0 100644 --- a/doc/html/qptrlistiterator-members.html +++ b/doc/html/tqptrlistiterator-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/ntqptrlist.h:154 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrlist.h:154 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,26 +32,26 @@ 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 TQPtrListIterator</h1> <p>This is the complete list of member functions for -<a href="qptrlistiterator.html">TQPtrListIterator</a>, including inherited members. +<a href="tqptrlistiterator.html">TQPtrListIterator</a>, including inherited members. <ul> -<li><a href="qptrlistiterator.html#TQPtrListIterator">TQPtrListIterator</a>() -<li><a href="qptrlistiterator.html#~TQPtrListIterator">~TQPtrListIterator</a>() -<li><a href="qptrlistiterator.html#atFirst">atFirst</a>() -<li><a href="qptrlistiterator.html#atLast">atLast</a>() -<li><a href="qptrlistiterator.html#count">count</a>() -<li><a href="qptrlistiterator.html#current">current</a>() -<li><a href="qptrlistiterator.html#isEmpty">isEmpty</a>() -<li><a href="qptrlistiterator.html#operator-type-*">operator type *</a>() -<li><a href="qptrlistiterator.html#operator()">operator()</a>() -<li><a href="qptrlistiterator.html#operator*">operator*</a>() -<li><a href="qptrlistiterator.html#operator++">operator++</a>() -<li><a href="qptrlistiterator.html#operator+-eq">operator+=</a>() -<li><a href="qptrlistiterator.html#operator--">operator--</a>() -<li><a href="qptrlistiterator.html#operator--eq">operator-=</a>() -<li><a href="qptrlistiterator.html#operator-eq">operator=</a>() -<li><a href="qptrlistiterator.html#toFirst">toFirst</a>() -<li><a href="qptrlistiterator.html#toLast">toLast</a>() +<li><a href="tqptrlistiterator.html#TQPtrListIterator">TQPtrListIterator</a>() +<li><a href="tqptrlistiterator.html#~TQPtrListIterator">~TQPtrListIterator</a>() +<li><a href="tqptrlistiterator.html#atFirst">atFirst</a>() +<li><a href="tqptrlistiterator.html#atLast">atLast</a>() +<li><a href="tqptrlistiterator.html#count">count</a>() +<li><a href="tqptrlistiterator.html#current">current</a>() +<li><a href="tqptrlistiterator.html#isEmpty">isEmpty</a>() +<li><a href="tqptrlistiterator.html#operator-type-*">operator type *</a>() +<li><a href="tqptrlistiterator.html#operator()">operator()</a>() +<li><a href="tqptrlistiterator.html#operator*">operator*</a>() +<li><a href="tqptrlistiterator.html#operator++">operator++</a>() +<li><a href="tqptrlistiterator.html#operator+-eq">operator+=</a>() +<li><a href="tqptrlistiterator.html#operator--">operator--</a>() +<li><a href="tqptrlistiterator.html#operator--eq">operator-=</a>() +<li><a href="tqptrlistiterator.html#operator-eq">operator=</a>() +<li><a href="tqptrlistiterator.html#toFirst">toFirst</a>() +<li><a href="tqptrlistiterator.html#toLast">toLast</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/qptrlistiterator.html b/doc/html/tqptrlistiterator.html index 688404fe3..555aa4d88 100644 --- a/doc/html/qptrlistiterator.html +++ b/doc/html/tqptrlistiterator.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/doc/qptrlist.doc:840 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrlist.doc:840 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,9 +34,9 @@ body { background: #ffffff; color: black; } <p>The TQPtrListIterator class provides an iterator for TQPtrList collections. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrlist-h.html">ntqptrlist.h</a>></tt> +<p><tt>#include <<a href="tqptrlist-h.html">tqptrlist.h</a>></tt> <p>Inherited by <a href="tqobjectlistiterator.html">TQObjectListIterator</a> and <a href="qstrlistiterator.html">TQStrListIterator</a>. -<p><a href="qptrlistiterator-members.html">List of all member functions.</a> +<p><a href="tqptrlistiterator-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrListIterator"><b>TQPtrListIterator</b></a> ( const TQPtrList<type> & list )</li> @@ -61,19 +61,19 @@ TQPtrList collections. The TQPtrListIterator class provides an iterator for -<a href="ntqptrlist.html">TQPtrList</a> collections. +<a href="tqptrlist.html">TQPtrList</a> collections. <p> <p> Define a template instance TQPtrListIterator<X> to create a list iterator that operates on TQPtrList<X> (list of X*). -<p> The following example is similar to the <a href="ntqptrlist.html#example">example in the TQPtrList class documentation</a>, but it uses TQPtrListIterator. The class Employee is +<p> The following example is similar to the <a href="tqptrlist.html#example">example in the TQPtrList class documentation</a>, but it uses TQPtrListIterator. The class Employee is defined there. <p> <pre> - <a href="ntqptrlist.html">TQPtrList</a><Employee> list; + <a href="tqptrlist.html">TQPtrList</a><Employee> list; - list.<a href="ntqptrlist.html#append">append</a>( new Employee("John", "Doe", 50000) ); - list.<a href="ntqptrlist.html#append">append</a>( new Employee("Jane", "Williams", 80000) ); - list.<a href="ntqptrlist.html#append">append</a>( new Employee("Tom", "Jones", 60000) ); + list.<a href="tqptrlist.html#append">append</a>( new Employee("John", "Doe", 50000) ); + list.<a href="tqptrlist.html#append">append</a>( new Employee("Jane", "Williams", 80000) ); + list.<a href="tqptrlist.html#append">append</a>( new Employee("Tom", "Jones", 60000) ); TQPtrListIterator<Employee> it( list ); Employee *employee; @@ -93,17 +93,17 @@ defined there. </pre> <p> Using a list iterator is a more robust way of traversing the list -than using the <a href="ntqptrlist.html">TQPtrList</a> member functions <a href="ntqptrlist.html#first">first</a>(), <a href="ntqptrlist.html#next">next</a>(), <a href="ntqptrlist.html#current">current</a>(), etc., as many iterators can +than using the <a href="tqptrlist.html">TQPtrList</a> member functions <a href="tqptrlist.html#first">first</a>(), <a href="tqptrlist.html#next">next</a>(), <a href="tqptrlist.html#current">current</a>(), etc., as many iterators can traverse the same list independently. <p> An iterator has its own current list item and can get the next and previous list items. It doesn't modify the list in any way. <p> When an item is removed from the list, all iterators that point to -that item are updated to point to <a href="ntqptrlist.html#current">TQPtrList::current</a>() instead to +that item are updated to point to <a href="tqptrlist.html#current">TQPtrList::current</a>() instead to avoid dangling references. -<p> <p>See also <a href="ntqptrlist.html">TQPtrList</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="tqptrlist.html">TQPtrList</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> -<h3 class=fn><a name="TQPtrListIterator"></a>TQPtrListIterator::TQPtrListIterator ( const <a href="ntqptrlist.html">TQPtrList</a><type> & list ) +<h3 class=fn><a name="TQPtrListIterator"></a>TQPtrListIterator::TQPtrListIterator ( const <a href="tqptrlist.html">TQPtrList</a><type> & list ) </h3> <p> Constructs an iterator for <em>list</em>. The current iterator item is @@ -199,7 +199,7 @@ it was 0, 0 is returned. <p> Returns the item <em>jump</em> positions before the current item or 0 if it is beyond the first item. Makes this the current item. -<h3 class=fn><a href="qptrlistiterator.html">TQPtrListIterator</a><type> & <a name="operator-eq"></a>TQPtrListIterator::operator= ( const <a href="qptrlistiterator.html">TQPtrListIterator</a><type> & it ) +<h3 class=fn><a href="tqptrlistiterator.html">TQPtrListIterator</a><type> & <a name="operator-eq"></a>TQPtrListIterator::operator= ( const <a href="tqptrlistiterator.html">TQPtrListIterator</a><type> & it ) </h3> <p> Assignment. Makes a copy of the iterator <em>it</em> and returns a diff --git a/doc/html/qptrqueue-h.html b/doc/html/tqptrqueue-h.html index b7a69b437..8bc2e1302 100644 --- a/doc/html/qptrqueue-h.html +++ b/doc/html/tqptrqueue-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/ntqptrqueue.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrqueue.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqptrqueue.h Include File</title> +<title>tqptrqueue.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>ntqptrqueue.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>tqptrqueue.h</h1> -<p>This is the verbatim text of the ntqptrqueue.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqptrqueue.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqptrqueue.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqptrqueue.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of TQPtrQueue template/macro class ** diff --git a/doc/html/qptrqueue-members.html b/doc/html/tqptrqueue-members.html index 8f244e2f9..23d8331e8 100644 --- a/doc/html/qptrqueue-members.html +++ b/doc/html/tqptrqueue-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/ntqptrqueue.h:46 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrqueue.h:46 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,25 +32,25 @@ 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 TQPtrQueue</h1> <p>This is the complete list of member functions for -<a href="ntqptrqueue.html">TQPtrQueue</a>, including inherited members. +<a href="tqptrqueue.html">TQPtrQueue</a>, including inherited members. <ul> -<li><a href="ntqptrqueue.html#TQPtrQueue">TQPtrQueue</a>() -<li><a href="ntqptrqueue.html#~TQPtrQueue">~TQPtrQueue</a>() -<li><a href="ntqptrqueue.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrqueue.html#clear">clear</a>() -<li><a href="ntqptrqueue.html#count">count</a>() -<li><a href="ntqptrqueue.html#current">current</a>() -<li><a href="ntqptrqueue.html#dequeue">dequeue</a>() -<li><a href="ntqptrqueue.html#enqueue">enqueue</a>() -<li><a href="ntqptrqueue.html#head">head</a>() -<li><a href="ntqptrqueue.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrqueue.html#operator-type-*">operator type *</a>() -<li><a href="ntqptrqueue.html#operator-eq">operator=</a>() -<li><a href="ntqptrqueue.html#read">read</a>() -<li><a href="ntqptrqueue.html#remove">remove</a>() -<li><a href="ntqptrqueue.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrqueue.html#write">write</a>() +<li><a href="tqptrqueue.html#TQPtrQueue">TQPtrQueue</a>() +<li><a href="tqptrqueue.html#~TQPtrQueue">~TQPtrQueue</a>() +<li><a href="tqptrqueue.html#autoDelete">autoDelete</a>() +<li><a href="tqptrqueue.html#clear">clear</a>() +<li><a href="tqptrqueue.html#count">count</a>() +<li><a href="tqptrqueue.html#current">current</a>() +<li><a href="tqptrqueue.html#dequeue">dequeue</a>() +<li><a href="tqptrqueue.html#enqueue">enqueue</a>() +<li><a href="tqptrqueue.html#head">head</a>() +<li><a href="tqptrqueue.html#isEmpty">isEmpty</a>() +<li><a href="tqptrqueue.html#operator-type-*">operator type *</a>() +<li><a href="tqptrqueue.html#operator-eq">operator=</a>() +<li><a href="tqptrqueue.html#read">read</a>() +<li><a href="tqptrqueue.html#remove">remove</a>() +<li><a href="tqptrqueue.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrqueue.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/ntqptrqueue.html b/doc/html/tqptrqueue.html index b2ac1a832..58a98046b 100644 --- a/doc/html/ntqptrqueue.html +++ b/doc/html/tqptrqueue.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/doc/qptrqueue.doc:37 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrqueue.doc:37 --> <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 TQPtrQueue class is a template class that provides a queue. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrqueue-h.html">ntqptrqueue.h</a>></tt> -<p><a href="qptrqueue-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqptrqueue-h.html">tqptrqueue.h</a>></tt> +<p><a href="tqptrqueue-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrQueue"><b>TQPtrQueue</b></a> ()</li> @@ -73,9 +73,9 @@ tail of the queue with <a href="#enqueue">enqueue</a>() and retrieved from the h <a href="#dequeue">dequeue</a>(). You can peek at the head item without dequeing it using <a href="#head">head</a>(). <p> You can control the queue's deletion policy with <a href="#setAutoDelete">setAutoDelete</a>(). -<p> For compatibility with the <a href="ntqptrcollection.html">TQPtrCollection</a> classes, <a href="#current">current</a>() and +<p> For compatibility with the <a href="tqptrcollection.html">TQPtrCollection</a> classes, <a href="#current">current</a>() and <a href="#remove">remove</a>() are provided; both operate on the head(). -<p> <p>See also <a href="ntqptrlist.html">TQPtrList</a>, <a href="ntqptrstack.html">TQPtrStack</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="tqptrlist.html">TQPtrList</a>, <a href="tqptrstack.html">TQPtrStack</a>, <a href="collection.html">Collection Classes</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQPtrQueue"></a>TQPtrQueue::TQPtrQueue () @@ -83,7 +83,7 @@ tail of the queue with <a href="#enqueue">enqueue</a>() and retrieved from the h <p> Creates an empty queue with <a href="#autoDelete">autoDelete</a>() set to FALSE. -<h3 class=fn><a name="TQPtrQueue-2"></a>TQPtrQueue::TQPtrQueue ( const <a href="ntqptrqueue.html">TQPtrQueue</a><type> & queue ) +<h3 class=fn><a name="TQPtrQueue-2"></a>TQPtrQueue::TQPtrQueue ( const <a href="tqptrqueue.html">TQPtrQueue</a><type> & queue ) </h3> <p> Creates a queue from <em>queue</em>. @@ -156,7 +156,7 @@ changed. Returns 0 if the queue is empty. changed. Returns 0 if the queue is empty. <p> <p>See also <a href="#dequeue">dequeue</a>() and <a href="#isEmpty">isEmpty</a>(). -<h3 class=fn><a href="ntqptrqueue.html">TQPtrQueue</a><type> & <a name="operator-eq"></a>TQPtrQueue::operator= ( const <a href="ntqptrqueue.html">TQPtrQueue</a><type> & queue ) +<h3 class=fn><a href="tqptrqueue.html">TQPtrQueue</a><type> & <a name="operator-eq"></a>TQPtrQueue::operator= ( const <a href="tqptrqueue.html">TQPtrQueue</a><type> & queue ) </h3> <p> Assigns <em>queue</em> to this queue and returns a reference to this @@ -166,7 +166,7 @@ enqueued to this queue. Only the pointers are copied. <p> <b>Warning:</b> The <a href="#autoDelete">autoDelete</a>() flag is not modified. If it it TRUE for both <em>queue</em> and this queue, deleting the two lists will cause <em>double-deletion</em> of the items. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrQueue::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrQueue::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a queue item, <em>item</em>, from the stream <em>s</em> and returns a @@ -195,7 +195,7 @@ careful about copying the queue: you might find yourself with two queues deleting the same items. <p> <p>See also <a href="#autoDelete">autoDelete</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrQueue::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrQueue::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> </h3> <p> Writes a queue item, <em>item</em>, to the stream <em>s</em> and returns a diff --git a/doc/html/qptrstack-h.html b/doc/html/tqptrstack-h.html index 4270c79c9..19f0029c9 100644 --- a/doc/html/qptrstack-h.html +++ b/doc/html/tqptrstack-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/ntqptrstack.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrstack.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqptrstack.h Include File</title> +<title>tqptrstack.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>ntqptrstack.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>tqptrstack.h</h1> -<p>This is the verbatim text of the ntqptrstack.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqptrstack.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqptrstack.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqptrstack.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of TQPtrStack pointer based template class ** diff --git a/doc/html/qptrstack-members.html b/doc/html/tqptrstack-members.html index 9a4bf7d6f..63f99ea38 100644 --- a/doc/html/qptrstack-members.html +++ b/doc/html/tqptrstack-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/ntqptrstack.h:46 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrstack.h:46 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -32,25 +32,25 @@ 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 TQPtrStack</h1> <p>This is the complete list of member functions for -<a href="ntqptrstack.html">TQPtrStack</a>, including inherited members. +<a href="tqptrstack.html">TQPtrStack</a>, including inherited members. <ul> -<li><a href="ntqptrstack.html#TQPtrStack">TQPtrStack</a>() -<li><a href="ntqptrstack.html#~TQPtrStack">~TQPtrStack</a>() -<li><a href="ntqptrstack.html#autoDelete">autoDelete</a>() -<li><a href="ntqptrstack.html#clear">clear</a>() -<li><a href="ntqptrstack.html#count">count</a>() -<li><a href="ntqptrstack.html#current">current</a>() -<li><a href="ntqptrstack.html#isEmpty">isEmpty</a>() -<li><a href="ntqptrstack.html#operator-type-*">operator type *</a>() -<li><a href="ntqptrstack.html#operator-eq">operator=</a>() -<li><a href="ntqptrstack.html#pop">pop</a>() -<li><a href="ntqptrstack.html#push">push</a>() -<li><a href="ntqptrstack.html#read">read</a>() -<li><a href="ntqptrstack.html#remove">remove</a>() -<li><a href="ntqptrstack.html#setAutoDelete">setAutoDelete</a>() -<li><a href="ntqptrstack.html#top">top</a>() -<li><a href="ntqptrstack.html#write">write</a>() +<li><a href="tqptrstack.html#TQPtrStack">TQPtrStack</a>() +<li><a href="tqptrstack.html#~TQPtrStack">~TQPtrStack</a>() +<li><a href="tqptrstack.html#autoDelete">autoDelete</a>() +<li><a href="tqptrstack.html#clear">clear</a>() +<li><a href="tqptrstack.html#count">count</a>() +<li><a href="tqptrstack.html#current">current</a>() +<li><a href="tqptrstack.html#isEmpty">isEmpty</a>() +<li><a href="tqptrstack.html#operator-type-*">operator type *</a>() +<li><a href="tqptrstack.html#operator-eq">operator=</a>() +<li><a href="tqptrstack.html#pop">pop</a>() +<li><a href="tqptrstack.html#push">push</a>() +<li><a href="tqptrstack.html#read">read</a>() +<li><a href="tqptrstack.html#remove">remove</a>() +<li><a href="tqptrstack.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrstack.html#top">top</a>() +<li><a href="tqptrstack.html#write">write</a>() </ul> <!-- eof --> <p><address><hr><div align=center> diff --git a/doc/html/ntqptrstack.html b/doc/html/tqptrstack.html index 7c1964ae2..2a30d66e0 100644 --- a/doc/html/ntqptrstack.html +++ b/doc/html/tqptrstack.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/doc/qptrstack.doc:41 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrstack.doc: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 TQPtrStack class is a template class that provides a stack. <a href="#details">More...</a> -<p><tt>#include <<a href="qptrstack-h.html">ntqptrstack.h</a>></tt> -<p><a href="qptrstack-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqptrstack-h.html">tqptrstack.h</a>></tt> +<p><a href="tqptrstack-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrStack"><b>TQPtrStack</b></a> ()</li> @@ -71,9 +71,9 @@ to the top of the stack with <a href="#push">push</a>() and retrieved from the t with <a href="#pop">pop</a>(). Use <a href="#top">top</a>() to get a reference to the top element without changing the stack. <p> You can control the stack's deletion policy with <a href="#setAutoDelete">setAutoDelete</a>(). -<p> For compatibility with the <a href="ntqptrcollection.html">TQPtrCollection</a> classes <a href="#current">current</a>() and +<p> For compatibility with the <a href="tqptrcollection.html">TQPtrCollection</a> classes <a href="#current">current</a>() and <a href="#remove">remove</a>() are provided; they both operate on the top(). -<p> <p>See also <a href="ntqptrlist.html">TQPtrList</a>, <a href="ntqptrqueue.html">TQPtrQueue</a>, and <a href="tools.html">Non-GUI Classes</a>. +<p> <p>See also <a href="tqptrlist.html">TQPtrList</a>, <a href="tqptrqueue.html">TQPtrQueue</a>, and <a href="tools.html">Non-GUI Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQPtrStack"></a>TQPtrStack::TQPtrStack () @@ -81,7 +81,7 @@ without changing the stack. <p> Creates an empty stack. -<h3 class=fn><a name="TQPtrStack-2"></a>TQPtrStack::TQPtrStack ( const <a href="ntqptrstack.html">TQPtrStack</a><type> & s ) +<h3 class=fn><a name="TQPtrStack-2"></a>TQPtrStack::TQPtrStack ( const <a href="tqptrstack.html">TQPtrStack</a><type> & s ) </h3> <p> Creates a stack by making a <a href="shclass.html#shallow-copy">shallow copy</a> of another stack <em>s</em>. @@ -95,7 +95,7 @@ TRUE. <h3 class=fn>bool <a name="autoDelete"></a>TQPtrStack::autoDelete () const </h3> -<p> The same as <a href="ntqptrcollection.html#autoDelete">TQPtrCollection::autoDelete</a>(). +<p> The same as <a href="tqptrcollection.html#autoDelete">TQPtrCollection::autoDelete</a>(). <p> <p>See also <a href="#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>void <a name="clear"></a>TQPtrStack::clear () @@ -131,7 +131,7 @@ FALSE. pushed). The stack is not changed. Returns 0 if the stack is empty. -<h3 class=fn><a href="ntqptrstack.html">TQPtrStack</a><type> & <a name="operator-eq"></a>TQPtrStack::operator= ( const <a href="ntqptrstack.html">TQPtrStack</a><type> & s ) +<h3 class=fn><a href="tqptrstack.html">TQPtrStack</a><type> & <a name="operator-eq"></a>TQPtrStack::operator= ( const <a href="tqptrstack.html">TQPtrStack</a><type> & s ) </h3> <p> Sets the contents of this stack by making a <a href="shclass.html#shallow-copy">shallow copy</a> of @@ -149,7 +149,7 @@ not be empty. <p> Adds an element <em>d</em> to the top of the stack. Last in, first out. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrStack::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrStack::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a stack item, <em>item</em>, from the stream <em>s</em> and returns a @@ -169,7 +169,7 @@ returns FALSE. </h3> <p> Defines whether this stack auto-deletes its contents. The same as -<a href="ntqptrcollection.html#setAutoDelete">TQPtrCollection::setAutoDelete</a>(). +<a href="tqptrcollection.html#setAutoDelete">TQPtrCollection::setAutoDelete</a>(). <p> If <em>enable</em> is TRUE the stack auto-deletes its contents; if <em>enable</em> is FALSE the stack does not delete its contents. <p> <p>See also <a href="#autoDelete">autoDelete</a>(). @@ -180,7 +180,7 @@ returns FALSE. pushed). The stack is not changed. Returns 0 if the stack is empty. -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrStack::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrStack::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> </h3> <p> Writes a stack item, <em>item</em>, to the stream <em>s</em> and returns a diff --git a/doc/html/qptrvector-h.html b/doc/html/tqptrvector-h.html index 0a51044a8..ceeaf48ff 100644 --- a/doc/html/qptrvector-h.html +++ b/doc/html/tqptrvector-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/ntqptrvector.h:1 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqptrvector.h:1 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<title>ntqptrvector.h Include File</title> +<title>tqptrvector.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>ntqptrvector.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>tqptrvector.h</h1> -<p>This is the verbatim text of the ntqptrvector.h include file. It is provided only for illustration; the copyright remains with Trolltech. +<p>This is the verbatim text of the tqptrvector.h include file. It is provided only for illustration; the copyright remains with Trolltech. <hr> <pre> /**************************************************************************** -** $Id: qt/ntqptrvector.h 3.3.8 edited Jan 11 14:38 $ +** $Id: qt/tqptrvector.h 3.3.8 edited Jan 11 14:38 $ ** ** Definition of TQPtrVector pointer based template class ** diff --git a/doc/html/tqptrvector-members.html b/doc/html/tqptrvector-members.html new file mode 100644 index 000000000..7d20134e0 --- /dev/null +++ b/doc/html/tqptrvector-members.html @@ -0,0 +1,76 @@ +<!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/tqptrvector.h:48 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>TQPtrVector 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 TQPtrVector</h1> + +<p>This is the complete list of member functions for +<a href="tqptrvector.html">TQPtrVector</a>, including inherited members. + +<ul> +<li><a href="tqptrvector.html#TQPtrVector">TQPtrVector</a>() +<li><a href="tqptrvector.html#~TQPtrVector">~TQPtrVector</a>() +<li><a href="tqptrvector.html#at">at</a>() +<li><a href="tqptrcollection.html#autoDelete">autoDelete</a>() +<li><a href="tqptrvector.html#bsearch">bsearch</a>() +<li><a href="tqptrvector.html#clear">clear</a>() +<li><a href="tqptrvector.html#compareItems">compareItems</a>() +<li><a href="tqptrvector.html#contains">contains</a>() +<li><a href="tqptrvector.html#containsRef">containsRef</a>() +<li><a href="tqptrvector.html#count">count</a>() +<li><a href="tqptrvector.html#data">data</a>() +<li><a href="tqptrcollection.html#deleteItem">deleteItem</a>() +<li><a href="tqptrvector.html#fill">fill</a>() +<li><a href="tqptrvector.html#find">find</a>() +<li><a href="tqptrvector.html#findRef">findRef</a>() +<li><a href="tqptrvector.html#insert">insert</a>() +<li><a href="tqptrvector.html#isEmpty">isEmpty</a>() +<li><a href="tqptrvector.html#isNull">isNull</a>() +<li><a href="tqptrcollection.html#newItem">newItem</a>() +<li><a href="tqptrvector.html#operator-eq">operator=</a>() +<li><a href="tqptrvector.html#operator-eq-eq">operator==</a>() +<li><a href="tqptrvector.html#operator[]">operator[]</a>() +<li><a href="tqptrvector.html#read">read</a>() +<li><a href="tqptrvector.html#remove">remove</a>() +<li><a href="tqptrvector.html#resize">resize</a>() +<li><a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>() +<li><a href="tqptrvector.html#size">size</a>() +<li><a href="tqptrvector.html#sort">sort</a>() +<li><a href="tqptrvector.html#take">take</a>() +<li><a href="tqptrvector.html#write">write</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/ntqptrvector.html b/doc/html/tqptrvector.html index c4eef2b39..44e4cdcee 100644 --- a/doc/html/ntqptrvector.html +++ b/doc/html/tqptrvector.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/doc/qptrvector.doc:41 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/doc/tqptrvector.doc:41 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,9 +34,9 @@ body { background: #ffffff; color: black; } <p>The TQPtrVector class is a template collection class that provides a vector (array). <a href="#details">More...</a> -<p><tt>#include <<a href="qptrvector-h.html">ntqptrvector.h</a>></tt> -<p>Inherits <a href="ntqptrcollection.html">TQPtrCollection</a>. -<p><a href="qptrvector-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqptrvector-h.html">tqptrvector.h</a>></tt> +<p>Inherits <a href="tqptrcollection.html">TQPtrCollection</a>. +<p><a href="tqptrvector-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQPtrVector"><b>TQPtrVector</b></a> ()</li> @@ -95,10 +95,10 @@ TQMemArray is value-based and TQPtrVector is pointer-based). removed with <a href="#remove">remove</a>(). You can get a pointer to an item at a particular index position using <a href="#at">at</a>(). <p> Unless otherwise stated, all functions that remove items from the -vector will also delete the element pointed to if <a href="ntqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. By default, -auto-deletion is disabled; see <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). This behaviour can +vector will also delete the element pointed to if <a href="tqptrcollection.html#setAutoDelete">auto-deletion</a> is enabled. By default, +auto-deletion is disabled; see <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). This behaviour can be changed in a subclass by reimplementing the virtual function -<a href="ntqptrcollection.html#deleteItem">deleteItem</a>(). +<a href="tqptrcollection.html#deleteItem">deleteItem</a>(). <p> Functions that compare items (<a href="#find">find</a>() and <a href="#sort">sort</a>() for example) will do so using the virtual function <a href="#compareItems">compareItems</a>(). The default implementation of this function only compares the pointer values. @@ -125,7 +125,7 @@ vector if <em>size</em> == 0. <p> All <em>size</em> positions in the vector are initialized to 0. <p> <p>See also <a href="#size">size</a>(), <a href="#resize">resize</a>(), and <a href="#isNull">isNull</a>(). -<h3 class=fn><a name="TQPtrVector-3"></a>TQPtrVector::TQPtrVector ( const <a href="ntqptrvector.html">TQPtrVector</a><type> & v ) +<h3 class=fn><a name="TQPtrVector-3"></a>TQPtrVector::TQPtrVector ( const <a href="tqptrvector.html">TQPtrVector</a><type> & v ) </h3> <p> Constructs a copy of <em>v</em>. Only the pointers are copied (i.e. @@ -147,7 +147,7 @@ that position. <em>i</em> must be less than <a href="#size">size</a>(). </h3> <p> Returns the setting of the auto-delete option. The default is FALSE. -<p> <p>See also <a href="ntqptrcollection.html#setAutoDelete">setAutoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(). <h3 class=fn>int <a name="bsearch"></a>TQPtrVector::bsearch ( const type * d ) const </h3> @@ -166,8 +166,8 @@ than <a href="#find">find</a>(), which performs a linear search. <p> The vector becomes a null vector. <p> <p>See also <a href="#isNull">isNull</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#clear">TQPtrCollection</a>. -<h3 class=fn>int <a name="compareItems"></a>TQPtrVector::compareItems ( <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> d1, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> d2 )<tt> [virtual protected]</tt> +<p>Reimplemented from <a href="tqptrcollection.html#clear">TQPtrCollection</a>. +<h3 class=fn>int <a name="compareItems"></a>TQPtrVector::compareItems ( <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> d1, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> d2 )<tt> [virtual protected]</tt> </h3> <p> This virtual function compares two list items. @@ -211,7 +211,7 @@ vector. <a href="#count">count</a>() == 0. <p> <p>See also <a href="#isEmpty">isEmpty</a>(), <a href="#size">size</a>(), and <a href="#isNull">isNull</a>(). -<p>Reimplemented from <a href="ntqptrcollection.html#count">TQPtrCollection</a>. +<p>Reimplemented from <a href="tqptrcollection.html#count">TQPtrCollection</a>. <h3 class=fn>type ** <a name="data"></a>TQPtrVector::data () const </h3> @@ -277,7 +277,7 @@ removed. <p> A null vector has <a href="#size">size</a>() == 0 and <a href="#data">data</a>() == 0. <p> <p>See also <a href="#size">size</a>(). -<h3 class=fn><a href="ntqptrvector.html">TQPtrVector</a><type> & <a name="operator-eq"></a>TQPtrVector::operator= ( const <a href="ntqptrvector.html">TQPtrVector</a><type> & v ) +<h3 class=fn><a href="tqptrvector.html">TQPtrVector</a><type> & <a name="operator-eq"></a>TQPtrVector::operator= ( const <a href="tqptrvector.html">TQPtrVector</a><type> & v ) </h3> <p> Assigns <em>v</em> to this vector and returns a reference to this @@ -286,7 +286,7 @@ vector. copied into the vector. Only the pointers are copied (i.e. <a href="shclass.html#shallow-copy">shallow copy</a>). <p> <p>See also <a href="#clear">clear</a>(). -<h3 class=fn>bool <a name="operator-eq-eq"></a>TQPtrVector::operator== ( const <a href="ntqptrvector.html">TQPtrVector</a><type> & v ) const +<h3 class=fn>bool <a name="operator-eq-eq"></a>TQPtrVector::operator== ( const <a href="tqptrvector.html">TQPtrVector</a><type> & v ) const </h3> <p> Returns TRUE if this vector and <em>v</em> are equal; otherwise returns @@ -300,7 +300,7 @@ that position. <em>i</em> must be less than <a href="#size">size</a>(). <p> Equivalent to <a href="#at">at</a>( <em>i</em> ). <p> <p>See also <a href="#at">at</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrVector::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="read"></a>TQPtrVector::read ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> & item )<tt> [virtual protected]</tt> </h3> <p> Reads a vector item, <em>item</em>, from the stream <em>s</em> and returns a @@ -342,7 +342,7 @@ with two collections deleting the same items. in subclasses. For example, a subclass that has a <a href="#remove">remove</a>() function will remove the item from its data structure, and if auto-delete is enabled, will also delete the item. -<p> <p>See also <a href="ntqptrcollection.html#autoDelete">autoDelete</a>(). +<p> <p>See also <a href="tqptrcollection.html#autoDelete">autoDelete</a>(). <p>Examples: <a href="grapher-nsplugin-example.html#x2769">grapher/grapher.cpp</a>, <a href="scribble-example.html#x924">scribble/scribble.cpp</a>, and <a href="bigtable-example.html#x1291">table/bigtable/main.cpp</a>. <h3 class=fn>uint <a name="size"></a>TQPtrVector::size () const @@ -368,11 +368,11 @@ put last. <p> Returns the item at position <em>i</em> in the vector, and removes that item from the vector. <em>i</em> must be less than <a href="#size">size</a>(). If there is no item at position <em>i</em>, 0 is returned. -<p> Unlike <a href="#remove">remove</a>(), this function does <em>not</em> call <a href="ntqptrcollection.html#deleteItem">deleteItem</a>() for +<p> Unlike <a href="#remove">remove</a>(), this function does <em>not</em> call <a href="tqptrcollection.html#deleteItem">deleteItem</a>() for the removed item. <p> <p>See also <a href="#remove">remove</a>() and <a href="#at">at</a>(). -<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrVector::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="ntqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> +<h3 class=fn><a href="ntqdatastream.html">TQDataStream</a> & <a name="write"></a>TQPtrVector::write ( <a href="ntqdatastream.html">TQDataStream</a> & s, <a href="tqptrcollection.html#Item">TQPtrCollection::Item</a> item ) const<tt> [virtual protected]</tt> </h3> <p> Writes a vector item, <em>item</em>, to the stream <em>s</em> and returns a diff --git a/doc/html/tqsqldriver-h.html b/doc/html/tqsqldriver-h.html index de499fb11..0c9242d1b 100644 --- a/doc/html/tqsqldriver-h.html +++ b/doc/html/tqsqldriver-h.html @@ -78,7 +78,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "tqobject.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqstring.h" #include "tqsqlerror.h" #include "tqsqlquery.h" diff --git a/doc/html/tqvaluelist.html b/doc/html/tqvaluelist.html index e375b1943..bd899893b 100644 --- a/doc/html/tqvaluelist.html +++ b/doc/html/tqvaluelist.html @@ -130,11 +130,11 @@ available for your target platform(s). TQValueList is part of the values that all have the class T. Note that TQValueList does not store pointers to the members of the list; it holds a copy of every member. This is why these kinds of classes are called "value -based"; <a href="ntqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a> are "pointer based". +based"; <a href="tqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a> are "pointer based". <p> TQValueList contains and manages a collection of objects of type T and provides iterators that allow the contained objects to be addressed. TQValueList owns the contained items. For more relaxed -ownership semantics, see <a href="ntqptrcollection.html">TQPtrCollection</a> and friends which are +ownership semantics, see <a href="tqptrcollection.html">TQPtrCollection</a> and friends which are pointer-based containers. <p> Some classes cannot be used within a TQValueList, for example, all classes derived from <a href="tqobject.html">TQObject</a> and thus all classes that implement diff --git a/doc/html/tqvaluestack.html b/doc/html/tqvaluestack.html index 114dcc59f..86ed01bb8 100644 --- a/doc/html/tqvaluestack.html +++ b/doc/html/tqvaluestack.html @@ -59,7 +59,7 @@ The TQValueStack class is a value-based template class that provides a stack. values that all have the class X. TQValueStack is part of the <a href="ntqtl.html">TQt Template Library</a>. <p> Note that TQValueStack does not store pointers to the members of the stack; it holds a copy of every member. That is why these -kinds of classes are called "value based"; <a href="ntqptrstack.html">TQPtrStack</a>, <a href="ntqptrlist.html">TQPtrList</a>, +kinds of classes are called "value based"; <a href="tqptrstack.html">TQPtrStack</a>, <a href="tqptrlist.html">TQPtrList</a>, <a href="ntqdict.html">TQDict</a>, etc., are "pointer based". <p> A stack is a last in, first out (LIFO) structure. Items are added to the top of the stack with <a href="#push">push</a>() and retrieved from the top @@ -81,7 +81,7 @@ without removing it. </pre> <p> TQValueStack is a specialized <a href="tqvaluelist.html">TQValueList</a> provided for convenience. -All of TQValueList's functionality also applies to <a href="ntqptrstack.html">TQPtrStack</a>, for +All of TQValueList's functionality also applies to <a href="tqptrstack.html">TQPtrStack</a>, for example the facility to iterate over all elements using TQValueStack<T>::Iterator. See <a href="tqvaluelistiterator.html">TQValueListIterator</a> for further details. diff --git a/doc/html/tqvaluevector.html b/doc/html/tqvaluevector.html index 5930a8cd7..a8a28bdf6 100644 --- a/doc/html/tqvaluevector.html +++ b/doc/html/tqvaluevector.html @@ -110,11 +110,11 @@ part of the <a href="ntqtl.html">TQt Template Library</a>. of values that all have the class T. TQValueVector does not store pointers to the members of the vector; it holds a copy of every member. TQValueVector is said to be value based; in contrast, -<a href="ntqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a> are pointer based. +<a href="tqptrlist.html">TQPtrList</a> and <a href="ntqdict.html">TQDict</a> are pointer based. <p> TQValueVector contains and manages a collection of objects of type T and provides random access iterators that allow the contained objects to be addressed. TQValueVector owns the contained -elements. For more relaxed ownership semantics, see <a href="ntqptrcollection.html">TQPtrCollection</a> +elements. For more relaxed ownership semantics, see <a href="tqptrcollection.html">TQPtrCollection</a> and friends, which are pointer-based containers. <p> TQValueVector provides good performance if you append or remove elements from the end of the vector. If you insert or remove diff --git a/doc/html/tqwidgetfactory-h.html b/doc/html/tqwidgetfactory-h.html index 78e8155db..47a6e40da 100644 --- a/doc/html/tqwidgetfactory-h.html +++ b/doc/html/tqwidgetfactory-h.html @@ -71,7 +71,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include <ntqstring.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqimage.h> #include <ntqpixmap.h> #include <tqvaluelist.h> diff --git a/doc/html/tqwidgetstack-h.html b/doc/html/tqwidgetstack-h.html index 1ad40bfcc..275bd3186 100644 --- a/doc/html/tqwidgetstack-h.html +++ b/doc/html/tqwidgetstack-h.html @@ -80,7 +80,7 @@ body { background: #ffffff; color: black; } #ifndef QT_H #include "ntqframe.h" #include "ntqintdict.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #endif // QT_H #ifndef TQT_NO_WIDGETSTACK diff --git a/doc/html/whatsthis b/doc/html/whatsthis index 6a529e32c..df2ed25fd 100644 --- a/doc/html/whatsthis +++ b/doc/html/whatsthis @@ -209,8 +209,8 @@ Iterator for QIntDict collections. | QIntDictIterator Iterator for TQMap. | TQMapConstIterator Iterator for TQMap. | TQMapIterator Iterator for TQObjectLists. | TQObjectListIterator -Iterator for QPtrDict collections. | QPtrDictIterator -Iterator for QPtrList collections. | QPtrListIterator +Iterator for TQPtrDict collections. | TQPtrDictIterator +Iterator for TQPtrList collections. | TQPtrListIterator Iterator for TQValueList. | TQValueListIterator Iterator for collections of QListViewItems. | QListViewItemIterator Iterator for the QStrList and QStrIList classes. | QStrListIterator @@ -285,7 +285,7 @@ Popup menu widget. | QPopupMenu Powerful single-page rich text editor. | QTextEdit TQObject that is a web browser plugin. | QNPInstance TQObject that wraps a COM object. | QAxObject -QPtrList of TQObjects. | TQObjectList +TQPtrList of TQObjects. | TQObjectList TQWidget that is a web browser plugin window. | QNPWidget TQWidget that wraps an ActiveX control. | QAxWidget Quick-access button to commands or options, usually used inside a QToolBar. | QToolButton @@ -348,14 +348,14 @@ Template class that provides a cache based on long keys. | QIntCache Template class that provides a dictionary based on TQString keys. | QDict Template class that provides a dictionary based on char* keys. | QAsciiDict Template class that provides a dictionary based on long keys. | QIntDict -Template class that provides a dictionary based on void* keys. | QPtrDict -Template class that provides a list. | QPtrList -Template class that provides a queue. | QPtrQueue -Template class that provides a stack. | QPtrStack +Template class that provides a dictionary based on void* keys. | TQPtrDict +Template class that provides a list. | TQPtrList +Template class that provides a queue. | TQPtrQueue +Template class that provides a stack. | TQPtrStack Template class that provides arrays of simple types. | QMemArray Template class that provides guarded pointers to TQObjects. | QGuardedPtr Template class which ensures that implicitly shared and explicitly shared classes reference unique data. | QDeepCopy -Template collection class that provides a vector (array). | QPtrVector +Template collection class that provides a vector (array). | TQPtrVector Text object on a TQCanvas. | TQCanvasText Text or image display. | QLabel The QDialog API for Motif-based dialogs. | QMotifDialog @@ -370,7 +370,7 @@ The base class of all list box items. | QListBoxItem The base class of all user interface objects. | TQWidget The base class of dialog windows. | QDialog The base class of geometry managers. | QLayout -The base class of most pointer-based TQt collections. | QPtrCollection +The base class of most pointer-based TQt collections. | TQPtrCollection The base class of objects that can be painted. | QPaintDevice The base class of widgets that can have a frame. | QFrame The basis of the Motif Extension. | QMotif diff --git a/doc/html/xml-sax-features-walkthrough.html b/doc/html/xml-sax-features-walkthrough.html index 826b70bdd..be7e63f95 100644 --- a/doc/html/xml-sax-features-walkthrough.html +++ b/doc/html/xml-sax-features-walkthrough.html @@ -191,7 +191,7 @@ the GUI's event loop. <p> <pre> #include <<a href="tqxml-h.html">tqxml.h</a>> - #include <<a href="qptrstack-h.html">ntqptrstack.h</a>> + #include <<a href="tqptrstack-h.html">tqptrstack.h</a>> class TQListView; class TQListViewItem; @@ -222,7 +222,7 @@ takes a <a href="ntqlistview.html">TQListView</a> as an argument, <p> In addition we have a function that selects a listview for the output. <p> <pre> private: - <a href="ntqptrstack.html">TQPtrStack</a><TQListViewItem> stack; + <a href="tqptrstack.html">TQPtrStack</a><TQListViewItem> stack; </pre> <p> Keep in mind that we write a SAX2 parser that doesn't have an object model to keep all elements and attributes diff --git a/doc/layout.doc b/doc/layout.doc index b5339909c..fa8d95626 100644 --- a/doc/layout.doc +++ b/doc/layout.doc @@ -298,7 +298,7 @@ To write your own layout class, you must define the following: \list \i A data structure to store the items handled by the layout. Each item is a \link QLayoutItem QLayoutItem\endlink. We will use a -QPtrList in this example. +TQPtrList in this example. \i \link QLayout::addItem() addItem() \endlink, how to add items to the layout. \i \link QLayout::setGeometry() setGeometry() \endlink, how to perform @@ -319,7 +319,7 @@ minimumSize\endlink(). #define CARD_H #include <ntqlayout.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class CardLayout : public QLayout { @@ -339,7 +339,7 @@ public: void setGeometry(const QRect &rect); private: - QPtrList<QLayoutItem> list; + TQPtrList<QLayoutItem> list; }; #endif @@ -373,7 +373,7 @@ constructor. In our example we do not need a destructor. class CardLayoutIterator : public QGLayoutIterator { public: - CardLayoutIterator( QPtrList<QLayoutItem> *l ) + CardLayoutIterator( TQPtrList<QLayoutItem> *l ) : idx( 0 ), list( l ) {} QLayoutItem *current() @@ -387,7 +387,7 @@ public: private: int idx; - QPtrList<QLayoutItem> *list; + TQPtrList<QLayoutItem> *list; }; \endcode @@ -436,7 +436,7 @@ void CardLayout::setGeometry( const QRect &rect ) { QLayout::setGeometry( rect ); - QPtrListIterator<QLayoutItem> it( list ); + TQPtrListIterator<QLayoutItem> it( list ); if (it.count() == 0) return; @@ -468,7 +468,7 @@ QSize CardLayout::sizeHint() const int n = list.count(); if ( n > 0 ) s = QSize( 100, 70 ); // start with a nice default size - QPtrListIterator<QLayoutItem> it( list ); + TQPtrListIterator<QLayoutItem> it( list ); QLayoutItem *item; while ( (item = it.current()) != 0 ) { ++it; @@ -481,7 +481,7 @@ QSize CardLayout::minimumSize() const { QSize s( 0, 0 ); int n = list.count(); - QPtrListIterator<QLayoutItem> it( list ); + TQPtrListIterator<QLayoutItem> it( list ); QLayoutItem *item; while ( (item = it.current()) != 0 ) { ++it; diff --git a/doc/man/man3/tqapplication.3qt b/doc/man/man3/tqapplication.3qt index 7cb94cc41..bf39cc926 100644 --- a/doc/man/man3/tqapplication.3qt +++ b/doc/man/man3/tqapplication.3qt @@ -667,7 +667,7 @@ Returns a list of all the widgets in the application. .PP The list is created using \fCnew\fR and must be deleted by the caller. .PP -The list is empty (QPtrList::isEmpty()) if there are no widgets. +The list is empty (TQPtrList::isEmpty()) if there are no widgets. .PP Note that some of the widgets may be hidden. .PP @@ -697,7 +697,7 @@ The TQWidgetList class is defined in the \fCtqwidgetlist.h\fR header file. .PP \fBWarning:\fR Delete the list as soon as you have finished using it. The widgets in the list may be deleted by someone else at any time. .PP -See also topLevelWidgets(), TQWidget::visible, and QPtrList::isEmpty(). +See also topLevelWidgets(), TQWidget::visible, and TQPtrList::isEmpty(). .SH "TQString QApplication::applicationDirPath ()" Returns the directory that contains the application executable. .PP @@ -1549,7 +1549,7 @@ Returns a list of the top level widgets in the application. .PP The list is created using \fCnew\fR and must be deleted by the caller. .PP -The list is empty (QPtrList::isEmpty()) if there are no top level widgets. +The list is empty (TQPtrList::isEmpty()) if there are no top level widgets. .PP Note that some of the top level widgets may be hidden, for example the tooltip if no tooltip is currently shown. .PP @@ -1581,7 +1581,7 @@ Example: .PP \fBWarning:\fR Delete the list as soon you have finished using it. The widgets in the list may be deleted by someone else at any time. .PP -See also allWidgets(), TQWidget::isTopLevel, TQWidget::visible, and QPtrList::isEmpty(). +See also allWidgets(), TQWidget::isTopLevel, TQWidget::visible, and TQPtrList::isEmpty(). .SH "TQString QApplication::translate ( const char * context, const char * sourceText, const char * comment = 0, Encoding encoding = DefaultCodec ) const" \fBNote:\fR This function is reentrant when TQt is built with thread support.</p> Returns the translation text for \fIsourceText\fR, by querying the installed messages files. The message files are searched from the most recently installed message file back to the first installed message file. .PP diff --git a/doc/man/man3/tqasciicache.3qt b/doc/man/man3/tqasciicache.3qt index 9b1dadd68..7c6c7eff7 100644 --- a/doc/man/man3/tqasciicache.3qt +++ b/doc/man/man3/tqasciicache.3qt @@ -11,7 +11,7 @@ QAsciiCache \- Template class that provides a cache based on char* keys .SH SYNOPSIS \fC#include <ntqasciicache.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c @@ -74,9 +74,9 @@ Apart from insert(), by far the most important function is find() (which also ex .PP There are also methods to remove() or take() an object from the cache. Calling setAutoDelete(TRUE) tells the cache to delete items that are removed. The default is to not delete items when then are removed (i.e., remove() and take() are equivalent). .PP -When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual function QPtrCollection::newItem() for the item to be inserted. Inherit a cache and reimplement newItem() if you want deep copies. +When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual function TQPtrCollection::newItem() for the item to be inserted. Inherit a cache and reimplement newItem() if you want deep copies. .PP -When removing a cache item the virtual function QPtrCollection::deleteItem() is called. Its default implementation in QAsciiCache is to delete the item if auto-deletion is enabled. +When removing a cache item the virtual function TQPtrCollection::deleteItem() is called. Its default implementation in QAsciiCache is to delete the item if auto-deletion is enabled. .PP There is a QAsciiCacheIterator which may be used to traverse the items in the cache in arbitrary order. .PP @@ -99,13 +99,13 @@ All cache iterators that operate on this cache are reset. .PP See also remove() and take(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "uint QAsciiCache::count () const\fC [virtual]\fR" Returns the number of items in the cache. .PP See also totalCost() and size(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "type * QAsciiCache::find ( const char * k, bool ref = TRUE ) const" Returns the item with key \fIk\fR, or 0 if the key does not exist in the cache. If \fIref\fR is TRUE (the default), the item is moved to the front of the least recently used list. .PP diff --git a/doc/man/man3/tqasciidict.3qt b/doc/man/man3/tqasciidict.3qt index 734e53094..9b6d47eb1 100644 --- a/doc/man/man3/tqasciidict.3qt +++ b/doc/man/man3/tqasciidict.3qt @@ -11,7 +11,7 @@ QAsciiDict \- Template class that provides a dictionary based on char* keys .SH SYNOPSIS \fC#include <ntqasciidict.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c @@ -76,10 +76,10 @@ Inherits QPtrCollection. .SS "Protected Members" .in +1c .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item ) const" .br .in -1c .SH DESCRIPTION @@ -131,11 +131,11 @@ Example: cout << "forename is not in the dictionary" << endl; .br .fi -In this example we use a dictionary to keep track of the line edits we're using. We insert each line edit into the dictionary with a unique name and then access the line edits via the dictionary. See QPtrDict, QIntDict and QDict. +In this example we use a dictionary to keep track of the line edits we're using. We insert each line edit into the dictionary with a unique name and then access the line edits via the dictionary. See TQPtrDict, QIntDict and QDict. .PP See QDict for full details, including the choice of dictionary size, and how deletions are handled. .PP -See also QAsciiDictIterator, QDict, QIntDict, QPtrDict, Collection Classes, Collection Classes, and Non-GUI Classes. +See also QAsciiDictIterator, QDict, QIntDict, TQPtrDict, Collection Classes, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION .SH "QAsciiDict::QAsciiDict ( int size = 17, bool caseSensitive = TRUE, bool copyKeys = TRUE )" Constructs a dictionary optimized for less than \fIsize\fR entries. @@ -157,7 +157,7 @@ The items are deleted if auto-delete is enabled. All iterators that access this dictionary will be reset. .PP See also setAutoDelete(). -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). @@ -170,13 +170,13 @@ All dictionary iterators that operate on dictionary are reset. .PP See also remove(), take(), and setAutoDelete(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "uint QAsciiDict::count () const\fC [virtual]\fR" Returns the number of items in the dictionary. .PP See also isEmpty(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "type * QAsciiDict::find ( const char * key ) const" Returns the item associated with \fIkey\fR, or 0 if the key does not exist in the dictionary. .PP @@ -213,7 +213,7 @@ If there are two or more items with equal keys, then the item that was most rece Equivalent to the find() function. .PP See also find(). -.SH "QDataStream & QAsciiDict::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & QAsciiDict::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a dictionary item from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. @@ -257,7 +257,7 @@ If there are two or more items with equal keys, then the most recently inserted See also insert(). .SH "void QAsciiDict::resize ( uint newsize )" Changes the size of the hashtable to \fInewsize\fR. The contents of the dictionary are preserved but all iterators on the dictionary become invalid. -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -286,7 +286,7 @@ Returns a pointer to the item taken out, or 0 if the key does not exist in the d All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary traversal order. .PP See also remove(), clear(), and setAutoDelete(). -.SH "QDataStream & QAsciiDict::write ( QDataStream & s, QPtrCollection::Item ) const\fC [virtual protected]\fR" +.SH "QDataStream & QAsciiDict::write ( QDataStream & s, TQPtrCollection::Item ) const\fC [virtual protected]\fR" Writes a dictionary item to the stream \fIs\fR and returns a reference to the stream. .PP See also read(). diff --git a/doc/man/man3/tqcache.3qt b/doc/man/man3/tqcache.3qt index fd473a730..a37868537 100644 --- a/doc/man/man3/tqcache.3qt +++ b/doc/man/man3/tqcache.3qt @@ -11,7 +11,7 @@ QCache \- Template class that provides a cache based on TQString keys .SH SYNOPSIS \fC#include <ntqcache.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c @@ -81,9 +81,9 @@ Apart from insert(), by far the most important function is find() (which also ex .PP There are also methods to remove() or take() an object from the cache. Calling setAutoDelete(TRUE) for a cache tells it to delete items that are removed. The default is to not delete items when they are removed (i.e., remove() and take() are equivalent). .PP -When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual function QPtrCollection::newItem() for the item to be inserted. Inherit a cache and reimplement newItem() if you want deep copies. +When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual function TQPtrCollection::newItem() for the item to be inserted. Inherit a cache and reimplement newItem() if you want deep copies. .PP -When removing a cache item, the virtual function QPtrCollection::deleteItem() is called. The default implementation deletes the item if auto-deletion is enabled, and does nothing otherwise. +When removing a cache item, the virtual function TQPtrCollection::deleteItem() is called. The default implementation deletes the item if auto-deletion is enabled, and does nothing otherwise. .PP There is a QCacheIterator that can be used to traverse the items in the cache in arbitrary order. .PP @@ -101,7 +101,7 @@ Each inserted item has an associated cost. When inserting a new item, if the tot If \fIcaseSensitive\fR is TRUE (the default), the cache keys are case sensitive; if it is FALSE, they are case-insensitive. Case-insensitive comparison considers all Unicode letters. .SH "QCache::~QCache ()" Removes all items from the cache and destroys it. All iterators that access this cache will be reset. -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). @@ -112,13 +112,13 @@ All cache iterators that operate this on cache are reset. .PP See also remove() and take(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "uint QCache::count () const\fC [virtual]\fR" Returns the number of items in the cache. .PP See also totalCost(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "type * QCache::find ( const TQString & k, bool ref = TRUE ) const" Returns the item associated with key \fIk\fR, or 0 if the key does not exist in the cache. If \fIref\fR is TRUE (the default), the item is moved to the front of the least recently used list. .PP @@ -155,7 +155,7 @@ If there are two or more items with equal keys, the one that was inserted last i All iterators that refer to the removed item are set to point to the next item in the cache's traversal order. .PP See also take() and clear(). -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. diff --git a/doc/man/man3/tqcanvaspixmaparray.3qt b/doc/man/man3/tqcanvaspixmaparray.3qt index 5c3369c40..9bdc9e105 100644 --- a/doc/man/man3/tqcanvaspixmaparray.3qt +++ b/doc/man/man3/tqcanvaspixmaparray.3qt @@ -20,7 +20,7 @@ TQCanvasPixmapArray \- Array of TQCanvasPixmaps .BI "\fBTQCanvasPixmapArray\fR ( const TQString & datafilenamepattern, int fc = 0 )" .br .ti -1c -.BI "TQCanvasPixmapArray ( QPtrList<QPixmap> list, QPtrList<QPoint> hotspots ) \fI(obsolete)\fR" +.BI "TQCanvasPixmapArray ( TQPtrList<QPixmap> list, TQPtrList<QPoint> hotspots ) \fI(obsolete)\fR" .br .ti -1c .BI "\fBTQCanvasPixmapArray\fR ( TQValueList<QPixmap> list, QPointArray hotspots = QPointArray ( ) )" @@ -75,7 +75,7 @@ If \fIfc\fR is not 0, \fIdatafilenamepattern\fR should contain "%1", e.g. "foo%1 If \fIfc\fR is 0, \fIdatafilenamepattern\fR is asssumed to be a filename, and the image contained in this file will be loaded as the first (and only) frame. .PP If \fIdatafilenamepattern\fR does not exist, is not readable, isn't an image, or some other error occurs, the array ends up empty and isValid() returns FALSE. -.SH "TQCanvasPixmapArray::TQCanvasPixmapArray ( QPtrList<QPixmap> list, QPtrList<QPoint> hotspots )" +.SH "TQCanvasPixmapArray::TQCanvasPixmapArray ( TQPtrList<QPixmap> list, TQPtrList<QPoint> hotspots )" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. .PP Use TQCanvasPixmapArray::TQCanvasPixmapArray( TQValueList<QPixmap>, QPointArray ) instead. diff --git a/doc/man/man3/tqdict.3qt b/doc/man/man3/tqdict.3qt index e5e051efc..ad391b99c 100644 --- a/doc/man/man3/tqdict.3qt +++ b/doc/man/man3/tqdict.3qt @@ -11,7 +11,7 @@ QDict \- Template class that provides a dictionary based on TQString keys .SH SYNOPSIS \fC#include <ntqdict.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c @@ -76,10 +76,10 @@ Inherits QPtrCollection. .SS "Protected Members" .in +1c .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item ) const" .br .in -1c .SH DESCRIPTION @@ -105,9 +105,9 @@ Items with equal keys are allowed. When inserting two items with the same key, o .PP The QDictIterator class can traverse the dictionary, but only in an arbitrary order. Multiple iterators may independently traverse the same dictionary. .PP -When inserting an item into a dictionary, only the pointer is copied, not the item itself, i.e. a shallow copy is made. It is possible to make the dictionary copy all of the item's data (a deep copy) when an item is inserted. insert() calls the virtual function QPtrCollection::newItem() for the item to be inserted. Inherit a dictionary and reimplement newItem() if you want deep copies. +When inserting an item into a dictionary, only the pointer is copied, not the item itself, i.e. a shallow copy is made. It is possible to make the dictionary copy all of the item's data (a deep copy) when an item is inserted. insert() calls the virtual function TQPtrCollection::newItem() for the item to be inserted. Inherit a dictionary and reimplement newItem() if you want deep copies. .PP -When removing a dictionary item, the virtual function QPtrCollection::deleteItem() is called. QDict's default implementation is to delete the item if auto-deletion is enabled. +When removing a dictionary item, the virtual function TQPtrCollection::deleteItem() is called. QDict's default implementation is to delete the item if auto-deletion is enabled. .PP Example #1: .PP @@ -200,7 +200,7 @@ In the example we are using the dictionary to provide fast random access to the .PP We first obtain the list of available styles, then sort them so that the menu items will be ordered alphabetically. Next we create a dictionary of int pointers. The keys in the dictionary are each one character long, representing letters that have been used for accelerators. We iterate through our list of style names. If the first letter of the style name is in the dictionary, i.e. has been used, we iterate over all the characters in the style name to see if we can find a letter that hasn't been used. If we find an unused letter we put the accelerator ampersand (&) in front of it and add that letter to the dictionary. If we can't find an unused letter the style will simply have no accelerator. If the first letter of the style name is not in the dictionary we use it for the accelerator and add it to the dictionary. Finally we create a QAction for each style. .PP -See also QDictIterator, QAsciiDict, QIntDict, QPtrDict, Collection Classes, and Non-GUI Classes. +See also QDictIterator, QAsciiDict, QIntDict, TQPtrDict, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION .SH "QDict::QDict ( int size = 17, bool caseSensitive = TRUE )" Constructs a dictionary optimized for less than \fIsize\fR entries. @@ -216,7 +216,7 @@ Each item in \fIdict\fR is inserted into this dictionary. Only the pointers are Removes all items from the dictionary and destroys it. If setAutoDelete() is TRUE, each value is deleted. All iterators that access this dictionary will be reset. .PP See also setAutoDelete(). -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). @@ -229,13 +229,13 @@ All dictionary iterators that operate on the dictionary are reset. .PP See also remove(), take(), and setAutoDelete(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "uint QDict::count () const\fC [virtual]\fR" Returns the number of items in the dictionary. .PP See also isEmpty(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "type * QDict::find ( const TQString & key ) const" Returns the item with key \fIkey\fR, or 0 if the key does not exist in the dictionary. .PP @@ -270,7 +270,7 @@ If there are two or more items with equal keys, then the most recently inserted Equivalent to the find() function. .PP See also find(). -.SH "QDataStream & QDict::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & QDict::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a dictionary item from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. @@ -314,7 +314,7 @@ If there are two or more items with equal keys, then the last item that was inse See also insert(). .SH "void QDict::resize ( uint newsize )" Changes the size of the hash table to \fInewsize\fR. The contents of the dictionary are preserved, but all iterators on the dictionary become invalid. -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -343,7 +343,7 @@ Returns a pointer to the item taken out, or 0 if the key does not exist in the d All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary traversal order. .PP See also remove(), clear(), and setAutoDelete(). -.SH "QDataStream & QDict::write ( QDataStream & s, QPtrCollection::Item ) const\fC [virtual protected]\fR" +.SH "QDataStream & QDict::write ( QDataStream & s, TQPtrCollection::Item ) const\fC [virtual protected]\fR" Writes a dictionary item to the stream \fIs\fR and returns a reference to the stream. .PP See also read(). diff --git a/doc/man/man3/tqdir.3qt b/doc/man/man3/tqdir.3qt index c4a783abf..e28daa8f9 100644 --- a/doc/man/man3/tqdir.3qt +++ b/doc/man/man3/tqdir.3qt @@ -511,7 +511,7 @@ Returns 0 if the directory is unreadable or does not exist. .PP The returned pointer is a const pointer to a QFileInfoList. The list is owned by the QDir object and will be reused on the next call to entryInfoList() for the same QDir instance. If you want to keep the entries of the list after a subsequent call to this function you must copy them. .PP -Note: QFileInfoList is really a QPtrList<QFileInfo>. +Note: QFileInfoList is really a TQPtrList<QFileInfo>. .PP See also entryList(), setNameFilter(), setSorting(), and setFilter(). .PP @@ -528,7 +528,7 @@ Returns 0 if the directory is unreadable or does not exist. .PP The returned pointer is a const pointer to a QFileInfoList. The list is owned by the QDir object and will be reused on the next call to entryInfoList() for the same QDir instance. If you want to keep the entries of the list after a subsequent call to this function you must copy them. .PP -Note: QFileInfoList is really a QPtrList<QFileInfo>. +Note: QFileInfoList is really a TQPtrList<QFileInfo>. .PP See also entryList(), setNameFilter(), setSorting(), and setFilter(). .SH "QStringList QDir::entryList ( const TQString & nameFilter, int filterSpec = DefaultFilter, int sortSpec = DefaultSort ) const\fC [virtual]\fR" diff --git a/doc/man/man3/tqdockarea.3qt b/doc/man/man3/tqdockarea.3qt index b7e746ab5..c799b50df 100644 --- a/doc/man/man3/tqdockarea.3qt +++ b/doc/man/man3/tqdockarea.3qt @@ -49,7 +49,7 @@ Inherits TQWidget. .BI "int \fBcount\fR () const" .br .ti -1c -.BI "QPtrList<QDockWindow> \fBdockWindowList\fR () const" +.BI "TQPtrList<QDockWindow> \fBdockWindowList\fR () const" .br .ti -1c .BI "bool \fBisDockWindowAccepted\fR ( QDockWindow * dw )" @@ -144,7 +144,7 @@ Destroys the dock area and all the dock windows docked in the dock area. Does not affect any floating dock windows or dock windows in other dock areas, even if they first appeared in this dock area. Floating dock windows are effectively top level windows and are not child windows of the dock area. When a floating dock window is docked (dragged into a dock area) its parent becomes the dock area. .SH "int QDockArea::count () const" Returns the number of dock windows in the dock area. See the "count" property for details. -.SH "QPtrList<QDockWindow> QDockArea::dockWindowList () const" +.SH "TQPtrList<QDockWindow> QDockArea::dockWindowList () const" Returns a list of the dock windows in the dock area. .SH "HandlePosition QDockArea::handlePosition () const" Returns where the dock window splitter handle is placed in the dock area. See the "handlePosition" property for details. diff --git a/doc/man/man3/tqintcache.3qt b/doc/man/man3/tqintcache.3qt index 6b16b4e09..458b82178 100644 --- a/doc/man/man3/tqintcache.3qt +++ b/doc/man/man3/tqintcache.3qt @@ -11,7 +11,7 @@ QIntCache \- Template class that provides a cache based on long keys .SH SYNOPSIS \fC#include <ntqintcache.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c @@ -72,7 +72,7 @@ Apart from insert(), by far the most important function is find() (which also ex .PP There are also methods to remove() or take() an object from the cache. Calling setAutoDelete(TRUE) for a cache tells it to delete items that are removed. The default is to not delete items when they are removed (i.e. remove() and take() are equivalent). .PP -When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual function QPtrCollection::newItem() for the item to be inserted. Inherit a dictionary and reimplement newItem() if you want deep copies. +When inserting an item into the cache, only the pointer is copied, not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual function TQPtrCollection::newItem() for the item to be inserted. Inherit a dictionary and reimplement newItem() if you want deep copies. .PP When removing a cache item, the item will be automatically deleted if auto-deletion is enabled. .PP @@ -95,13 +95,13 @@ All cache iterators that operate this on cache are reset. .PP See also remove() and take(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "uint QIntCache::count () const\fC [virtual]\fR" Returns the number of items in the cache. .PP See also totalCost(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "type * QIntCache::find ( long k, bool ref = TRUE ) const" Returns the item associated with \fIk\fR, or 0 if the key does not exist in the cache. If \fIref\fR is TRUE (the default), the item is moved to the front of the least recently used list. .PP diff --git a/doc/man/man3/tqintdict.3qt b/doc/man/man3/tqintdict.3qt index 2b91b9839..936ca6cd0 100644 --- a/doc/man/man3/tqintdict.3qt +++ b/doc/man/man3/tqintdict.3qt @@ -11,7 +11,7 @@ QIntDict \- Template class that provides a dictionary based on long keys .SH SYNOPSIS \fC#include <ntqintdict.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c @@ -76,10 +76,10 @@ Inherits QPtrCollection. .SS "Protected Members" .in +1c .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item ) const" .br .in -1c .SH DESCRIPTION @@ -135,7 +135,7 @@ Example: .PP See QDict for full details, including the choice of dictionary size, and how deletions are handled. .PP -See also QIntDictIterator, QDict, QAsciiDict, QPtrDict, Collection Classes, Collection Classes, and Non-GUI Classes. +See also QIntDictIterator, QDict, QAsciiDict, TQPtrDict, Collection Classes, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION .SH "QIntDict::QIntDict ( int size = 17 )" Constructs a dictionary using an internal hash array of size \fIsize\fR. @@ -151,7 +151,7 @@ Removes all items from the dictionary and destroys it. All iterators that access this dictionary will be reset. .PP See also setAutoDelete(). -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). @@ -164,13 +164,13 @@ All dictionary iterators that access this dictionary will be reset. .PP See also remove(), take(), and setAutoDelete(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "uint QIntDict::count () const\fC [virtual]\fR" Returns the number of items in the dictionary. .PP See also isEmpty(). .PP -Reimplemented from QPtrCollection. +Reimplemented from TQPtrCollection. .SH "type * QIntDict::find ( long key ) const" Returns the item associated with \fIkey\fR, or 0 if the key does not exist in the dictionary. .PP @@ -207,7 +207,7 @@ If there are two or more items with equal keys, then the most recently inserted Equivalent to the find() function. .PP See also find(). -.SH "QDataStream & QIntDict::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & QIntDict::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a dictionary item from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. @@ -253,7 +253,7 @@ See also insert(). Example: table/bigtable/main.cpp. .SH "void QIntDict::resize ( uint newsize )" Changes the size of the hashtable to \fInewsize\fR. The contents of the dictionary are preserved, but all iterators on the dictionary become invalid. -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -284,7 +284,7 @@ All dictionary iterators that refer to the taken item will be set to point to th See also remove(), clear(), and setAutoDelete(). .PP Example: table/bigtable/main.cpp. -.SH "QDataStream & QIntDict::write ( QDataStream & s, QPtrCollection::Item ) const\fC [virtual protected]\fR" +.SH "QDataStream & QIntDict::write ( QDataStream & s, TQPtrCollection::Item ) const\fC [virtual protected]\fR" Writes a dictionary item to the stream \fIs\fR and returns a reference to the stream. .PP See also read(). diff --git a/doc/man/man3/tqlistviewitemiterator.3qt b/doc/man/man3/tqlistviewitemiterator.3qt index 013d26136..473df9747 100644 --- a/doc/man/man3/tqlistviewitemiterator.3qt +++ b/doc/man/man3/tqlistviewitemiterator.3qt @@ -72,11 +72,11 @@ Construct an instance of a QListViewItemIterator, with either a QListView* or a .PP A QListViewItemIterator iterates over all the items from its starting point. This means that it always makes the first child of the current item the new current item. If there is no child, the next sibling becomes the new current item; and if there is no next sibling, the next sibling of the parent becomes current. .PP -The following example creates a list of all the items that have been selected by the user, storing pointers to the items in a QPtrList: +The following example creates a list of all the items that have been selected by the user, storing pointers to the items in a TQPtrList: .PP .nf .br - QPtrList<QListViewItem> lst; + TQPtrList<QListViewItem> lst; .br QListViewItemIterator it( myListView ); .br @@ -96,7 +96,7 @@ An alternative approach is to use an IteratorFlag: .PP .nf .br - QPtrList<QListViewItem> lst; + TQPtrList<QListViewItem> lst; .br QListViewItemIterator it( myListView, QListViewItemIterator::Selected ); .br diff --git a/doc/man/man3/tqmacmime.3qt b/doc/man/man3/tqmacmime.3qt index 4166efc3c..76ffb3e65 100644 --- a/doc/man/man3/tqmacmime.3qt +++ b/doc/man/man3/tqmacmime.3qt @@ -47,7 +47,7 @@ QMacMime \- Maps open-standard MIME to Mac flavors .SS "Static Public Members" .in +1c .ti -1c -.BI "QPtrList<QMacMime> \fBall\fR ( QMacMimeType t )" +.BI "TQPtrList<QMacMime> \fBall\fR ( QMacMimeType t )" .br .ti -1c .BI "QMacMime * \fBconvertor\fR ( QMacMimeType t, const char * mime, int flav )" @@ -81,7 +81,7 @@ See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous C Constructs a new conversion object of type \fIt\fR, adding it to the globally accessed list of available convertors. .SH "QMacMime::~QMacMime ()\fC [virtual]\fR" Destroys a conversion object, removing it from the global list of available convertors. -.SH "QPtrList<QMacMime> QMacMime::all ( QMacMimeType t )\fC [static]\fR" +.SH "TQPtrList<QMacMime> QMacMime::all ( QMacMimeType t )\fC [static]\fR" Returns a list of all currently defined QMacMime objects of type \fIt\fR. .SH "bool QMacMime::canConvert ( const char * mime, int flav )\fC [pure virtual]\fR" Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIflav\fR; otherwise returns FALSE. diff --git a/doc/man/man3/tqmainwindow.3qt b/doc/man/man3/tqmainwindow.3qt index 0d5dda868..244760e10 100644 --- a/doc/man/man3/tqmainwindow.3qt +++ b/doc/man/man3/tqmainwindow.3qt @@ -88,10 +88,10 @@ Inherits TQWidget. .BI "bool \fBgetLocation\fR ( QDockWindow * dw, Dock & dock, int & index, bool & nl, int & extraOffset ) const" .br .ti -1c -.BI "QPtrList<QDockWindow> \fBdockWindows\fR ( Dock dock ) const" +.BI "TQPtrList<QDockWindow> \fBdockWindows\fR ( Dock dock ) const" .br .ti -1c -.BI "QPtrList<QDockWindow> \fBdockWindows\fR () const" +.BI "TQPtrList<QDockWindow> \fBdockWindows\fR () const" .br .ti -1c .BI "void \fBlineUpDockWindows\fR ( bool keepNewLines = FALSE )" @@ -121,7 +121,7 @@ Inherits TQWidget. .BI "bool toolBarsMovable () const \fI(obsolete)\fR" .br .ti -1c -.BI "QPtrList<QToolBar> \fBtoolBars\fR ( Dock dock ) const" +.BI "TQPtrList<QToolBar> \fBtoolBars\fR ( Dock dock ) const" .br .ti -1c .BI "void lineUpToolBars ( bool keepNewLines = FALSE ) \fI(obsolete)\fR" @@ -554,11 +554,11 @@ See also isCustomizable(). This signal is emitted when the \fIdockWindow\fR has changed its position. A change in position occurs when a dock window is moved within its dock area or moved to another dock area (including the Minimized and \fCTearOff\fR dock areas). .PP See also getLocation(). -.SH "QPtrList<QDockWindow> QMainWindow::dockWindows ( Dock dock ) const" +.SH "TQPtrList<QDockWindow> QMainWindow::dockWindows ( Dock dock ) const" Returns a list of all the dock windows which are in the \fIdock\fR dock area, regardless of their state. .PP For example, the DockTornOff dock area may contain closed dock windows but these are returned along with the visible dock windows. -.SH "QPtrList<QDockWindow> QMainWindow::dockWindows () const" +.SH "TQPtrList<QDockWindow> QMainWindow::dockWindows () const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns the list of dock windows which belong to this main window, regardless of which dock area they are in or what their state is, (e.g. irrespective of whether they are visible or not). @@ -720,7 +720,7 @@ See also menuBar() and toolTipGroup(). Example: qfd/qfd.cpp. .SH "void QMainWindow::toolBarPositionChanged ( QToolBar * )\fC [signal]\fR" \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. -.SH "QPtrList<QToolBar> QMainWindow::toolBars ( Dock dock ) const" +.SH "TQPtrList<QToolBar> QMainWindow::toolBars ( Dock dock ) const" Returns a list of all the toolbars which are in the \fIdock\fR dock area, regardless of their state. .PP For example, the TornOff dock area may contain closed toolbars but these are returned along with the visible toolbars. diff --git a/doc/man/man3/tqmap.3qt b/doc/man/man3/tqmap.3qt index 04b53cb7a..ca3bbdba7 100644 --- a/doc/man/man3/tqmap.3qt +++ b/doc/man/man3/tqmap.3qt @@ -172,7 +172,7 @@ The TQMap class is a value-based template class that provides a dictionary. .PP TQMap is a TQt implementation of an STL-like map container. It can be used in your application if the standard \fCmap\fR is not available on all your target platforms. TQMap is part of the TQt Template Library. .PP -TQMap<Key, Data> defines a template instance to create a dictionary with keys of type Key and values of type Data. TQMap does not store pointers to the members of the map; instead, it holds a copy of every member. For this reason, TQMap is value-based, whereas QPtrList and QDict are pointer-based. +TQMap<Key, Data> defines a template instance to create a dictionary with keys of type Key and values of type Data. TQMap does not store pointers to the members of the map; instead, it holds a copy of every member. For this reason, TQMap is value-based, whereas TQPtrList and QDict are pointer-based. .PP TQMap contains and manages a collection of objects of type Data with associated key values of type Key and provides iterators that allow the contained objects to be addressed. TQMap owns the contained items. .PP diff --git a/doc/man/man3/tqmemarray.3qt b/doc/man/man3/tqmemarray.3qt index 207ef97f9..94ae8f85b 100644 --- a/doc/man/man3/tqmemarray.3qt +++ b/doc/man/man3/tqmemarray.3qt @@ -157,7 +157,7 @@ QMemArray is implemented as a template class. Define a template instance QMemArr .PP QMemArray stores the array elements directly in the array. It can only deal with simple types (i.e. C++ types, structs, and classes that have no constructors, destructors, or virtual functions). QMemArray uses bitwise operations to copy and compare array elements. .PP -The QPtrVector collection class is also a kind of array. Like most collection classes, it uses pointers to the contained items. +The TQPtrVector collection class is also a kind of array. Like most collection classes, it uses pointers to the contained items. .PP QMemArray uses explicit sharing with a reference count. If more than one array shares common data and one of the arrays is modified, all the arrays are modified. .PP diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt index 08a22236f..b741deaf1 100644 --- a/doc/man/man3/tqobject.3qt +++ b/doc/man/man3/tqobject.3qt @@ -213,7 +213,7 @@ Notice that the TQ_OBJECT macro is mandatory for any object that implements sign .PP All TQt widgets inherit TQObject. The convenience function isWidgetType() returns whether an object is actually a widget. It is much faster than inherits( "TQWidget" ). .PP -Some TQObject functions, e.g. children(), objectTrees() and queryList() return a TQObjectList. A TQObjectList is a QPtrList of TQObjects. TQObjectLists support the same operations as QPtrLists and have an iterator class, TQObjectListIt. +Some TQObject functions, e.g. children(), objectTrees() and queryList() return a TQObjectList. A TQObjectList is a TQPtrList of TQObjects. TQObjectLists support the same operations as TQPtrLists and have an iterator class, TQObjectListIt. .PP See also Object Model. .SH MEMBER FUNCTION DOCUMENTATION diff --git a/doc/man/man3/tqobjectlist.3qt b/doc/man/man3/tqobjectlist.3qt index f196e35bc..a7c792292 100644 --- a/doc/man/man3/tqobjectlist.3qt +++ b/doc/man/man3/tqobjectlist.3qt @@ -7,11 +7,11 @@ .ad l .nh .SH NAME -TQObjectList \- QPtrList of TQObjects +TQObjectList \- TQPtrList of TQObjects .SH SYNOPSIS \fC#include <tqobjectlist.h>\fR .PP -Inherits QPtrList<TQObject>. +Inherits TQPtrList<TQObject>. .PP .SS "Public Members" .in +1c @@ -29,9 +29,9 @@ Inherits QPtrList<TQObject>. .br .in -1c .SH DESCRIPTION -The TQObjectList class is a QPtrList of TQObjects. +The TQObjectList class is a TQPtrList of TQObjects. .PP -A TQObjectList is a QPtrList<TQObject>. The list can be traversed using inherited functions, e.g. getFirst(), next(), etc., or using a TQObjectListIterator iterator. +A TQObjectList is a TQPtrList<TQObject>. The list can be traversed using inherited functions, e.g. getFirst(), next(), etc., or using a TQObjectListIterator iterator. .PP See TQObject::queryList() for an example of use. .PP diff --git a/doc/man/man3/tqobjectlistiterator.3qt b/doc/man/man3/tqobjectlistiterator.3qt index 67238755f..77d62fb30 100644 --- a/doc/man/man3/tqobjectlistiterator.3qt +++ b/doc/man/man3/tqobjectlistiterator.3qt @@ -11,7 +11,7 @@ TQObjectListIterator \- Iterator for TQObjectLists .SH SYNOPSIS \fC#include <tqobjectlist.h>\fR .PP -Inherits QPtrListIterator<TQObject>. +Inherits TQPtrListIterator<TQObject>. .PP .SS "Public Members" .in +1c @@ -25,7 +25,7 @@ Inherits QPtrListIterator<TQObject>. .SH DESCRIPTION The TQObjectListIterator class provides an iterator for TQObjectLists. .PP -A TQObjectListIterator iterator is a QPtrListIterator<TQObject>. +A TQObjectListIterator iterator is a TQPtrListIterator<TQObject>. .PP See TQObject::queryList() for an example of use. .PP diff --git a/doc/man/man3/tqpair.3qt b/doc/man/man3/tqpair.3qt index 00f83cdbf..63bc71687 100644 --- a/doc/man/man3/tqpair.3qt +++ b/doc/man/man3/tqpair.3qt @@ -40,9 +40,9 @@ The TQPair class is a value-based template class that provides a pair of element .PP TQPair is a TQt implementation of an STL-like pair. It can be used in your application if the standard pair<> is not available on your target platforms. .PP -TQPair<T1, T2> defines a template instance to create a pair of values that contains two values of type T1 and T2. Please note that TQPair does not store pointers to the two elements; it holds a copy of every member. This is why these kinds of classes are called \fIvalue based\fR. If you're interested in \fIpointer based\fR classes see, for example, QPtrList and QDict. +TQPair<T1, T2> defines a template instance to create a pair of values that contains two values of type T1 and T2. Please note that TQPair does not store pointers to the two elements; it holds a copy of every member. This is why these kinds of classes are called \fIvalue based\fR. If you're interested in \fIpointer based\fR classes see, for example, TQPtrList and QDict. .PP -TQPair holds one copy of type T1 and one copy of type T2, but does not provide iterators to access these elements. Instead, the two elements (\fCfirst\fR and \fCsecond\fR) are public member variables of the pair. TQPair owns the contained elements. For more relaxed ownership semantics, see QPtrCollection and friends which are pointer-based containers. +TQPair holds one copy of type T1 and one copy of type T2, but does not provide iterators to access these elements. Instead, the two elements (\fCfirst\fR and \fCsecond\fR) are public member variables of the pair. TQPair owns the contained elements. For more relaxed ownership semantics, see TQPtrCollection and friends which are pointer-based containers. .PP Some classes cannot be used within a TQPair: for example, all classes derived from TQObject and thus all classes that implement widgets. Only "values" can be used in a TQPair. To qualify as a value the class must provide: .TP diff --git a/doc/man/man3/tqptrcollection.3qt b/doc/man/man3/tqptrcollection.3qt index 101c81cb3..3932c2b58 100644 --- a/doc/man/man3/tqptrcollection.3qt +++ b/doc/man/man3/tqptrcollection.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrCollection 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrCollection 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,13 +7,13 @@ .ad l .nh .SH NAME -QPtrCollection \- The base class of most pointer-based TQt collections +TQPtrCollection \- The base class of most pointer-based TQt collections .SH SYNOPSIS All the functions in this class are reentrant when TQt is built with thread support.</p> .PP -\fC#include <ntqptrcollection.h>\fR +\fC#include <tqptrcollection.h>\fR .PP -Inherited by QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, QPtrList, QPtrDict, and QPtrVector. +Inherited by QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, TQPtrList, TQPtrDict, and TQPtrVector. .PP .SS "Public Members" .in +1c @@ -36,13 +36,13 @@ Inherited by QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, QPtrLi .SS "Protected Members" .in +1c .ti -1c -.BI "\fBQPtrCollection\fR ()" +.BI "\fBTQPtrCollection\fR ()" .br .ti -1c -.BI "\fBQPtrCollection\fR ( const QPtrCollection & source )" +.BI "\fBTQPtrCollection\fR ( const TQPtrCollection & source )" .br .ti -1c -.BI "virtual \fB~QPtrCollection\fR ()" +.BI "virtual \fB~TQPtrCollection\fR ()" .br .ti -1c .BI "virtual Item \fBnewItem\fR ( Item d )" @@ -52,42 +52,42 @@ Inherited by QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, QPtrLi .br .in -1c .SH DESCRIPTION -The QPtrCollection class is the base class of most pointer-based TQt collections. +The TQPtrCollection class is the base class of most pointer-based TQt collections. .PP -The QPtrCollection class is an abstract base class for the TQt collection classes QDict, QPtrList, etc. TQt also includes value based collections, e.g. TQValueList, TQMap, etc. +The TQPtrCollection class is an abstract base class for the TQt collection classes QDict, TQPtrList, etc. TQt also includes value based collections, e.g. TQValueList, TQMap, etc. .PP -A QPtrCollection only knows about the number of objects in the collection and the deletion strategy (see setAutoDelete()). +A TQPtrCollection only knows about the number of objects in the collection and the deletion strategy (see setAutoDelete()). .PP A collection is implemented using the Item (generic collection item) type, which is a \fCvoid*\fR. The template classes that create the real collections cast the Item to the required type. .PP See also Collection Classes and Non-GUI Classes. .SS "Member Type Documentation" -.SH "QPtrCollection::Item" -This type is the generic "item" in a QPtrCollection. +.SH "TQPtrCollection::Item" +This type is the generic "item" in a TQPtrCollection. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrCollection::QPtrCollection ()\fC [protected]\fR" -Constructs a collection. The constructor is protected because QPtrCollection is an abstract class. -.SH "QPtrCollection::QPtrCollection ( const QPtrCollection & source )\fC [protected]\fR" -Constructs a copy of \fIsource\fR with autoDelete() set to FALSE. The constructor is protected because QPtrCollection is an abstract class. +.SH "TQPtrCollection::TQPtrCollection ()\fC [protected]\fR" +Constructs a collection. The constructor is protected because TQPtrCollection is an abstract class. +.SH "TQPtrCollection::TQPtrCollection ( const TQPtrCollection & source )\fC [protected]\fR" +Constructs a copy of \fIsource\fR with autoDelete() set to FALSE. The constructor is protected because TQPtrCollection is an abstract class. .PP Note that if \fIsource\fR has autoDelete turned on, copying it will risk memory leaks, reading freed memory, or both. -.SH "QPtrCollection::~QPtrCollection ()\fC [virtual protected]\fR" -Destroys the collection. The destructor is protected because QPtrCollection is an abstract class. -.SH "bool QPtrCollection::autoDelete () const" +.SH "TQPtrCollection::~TQPtrCollection ()\fC [virtual protected]\fR" +Destroys the collection. The destructor is protected because TQPtrCollection is an abstract class. +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). -.SH "void QPtrCollection::clear ()\fC [pure virtual]\fR" +.SH "void TQPtrCollection::clear ()\fC [pure virtual]\fR" Removes all objects from the collection. The objects will be deleted if auto-delete has been enabled. .PP See also setAutoDelete(). .PP -Reimplemented in QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, QPtrList, QPtrDict, and QPtrVector. -.SH "uint QPtrCollection::count () const\fC [pure virtual]\fR" +Reimplemented in QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, TQPtrList, TQPtrDict, and TQPtrVector. +.SH "uint TQPtrCollection::count () const\fC [pure virtual]\fR" Returns the number of objects in the collection. .PP -Reimplemented in QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, QPtrList, QPtrDict, and QPtrVector. -.SH "void QPtrCollection::deleteItem ( Item d )\fC [pure virtual protected]\fR" +Reimplemented in QAsciiCache, QAsciiDict, QCache, QDict, QIntCache, QIntDict, TQPtrList, TQPtrDict, and TQPtrVector. +.SH "void TQPtrCollection::deleteItem ( Item d )\fC [pure virtual protected]\fR" Reimplement this function if you want to be able to delete items. .PP Deletes an item that is about to be removed from the collection. @@ -97,7 +97,7 @@ This function has to reimplemented in the collection template classes, and shoul \fBWarning:\fR If you reimplement this function you must also reimplement the destructor and call the virtual function clear() from your destructor. This is due to the way virtual functions and destructors work in C++: Virtual functions in derived classes cannot be called from a destructor. If you do not do this, your deleteItem() function will not be called when the container is destroyed. .PP See also newItem() and setAutoDelete(). -.SH "Item QPtrCollection::newItem ( Item d )\fC [virtual protected]\fR" +.SH "Item TQPtrCollection::newItem ( Item d )\fC [virtual protected]\fR" Virtual function that creates a copy of an object that is about to be inserted into the collection. .PP The default implementation returns the \fId\fR pointer, i.e. no copy is made. @@ -105,7 +105,7 @@ The default implementation returns the \fId\fR pointer, i.e. no copy is made. This function is seldom reimplemented in the collection template classes. It is not common practice to make a copy of something that is being inserted. .PP See also deleteItem(). -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -120,7 +120,7 @@ Examples: .)l grapher/grapher.cpp, scribble/scribble.cpp, and table/bigtable/main.cpp. .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqptrcollection.html +.BR http://doc.trolltech.com/tqptrcollection.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/tqptrdict.3qt b/doc/man/man3/tqptrdict.3qt index 8a8d1df7c..2adccce20 100644 --- a/doc/man/man3/tqptrdict.3qt +++ b/doc/man/man3/tqptrdict.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrDict 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrDict 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" license file included in the distribution for a complete license .\" statement. @@ -7,25 +7,25 @@ .ad l .nh .SH NAME -QPtrDict \- Template class that provides a dictionary based on void* keys +TQPtrDict \- Template class that provides a dictionary based on void* keys .SH SYNOPSIS -\fC#include <ntqptrdict.h>\fR +\fC#include <tqptrdict.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrDict\fR ( int size = 17 )" +.BI "\fBTQPtrDict\fR ( int size = 17 )" .br .ti -1c -.BI "\fBQPtrDict\fR ( const QPtrDict<type> & dict )" +.BI "\fBTQPtrDict\fR ( const TQPtrDict<type> & dict )" .br .ti -1c -.BI "\fB~QPtrDict\fR ()" +.BI "\fB~TQPtrDict\fR ()" .br .ti -1c -.BI "QPtrDict<type> & \fBoperator=\fR ( const QPtrDict<type> & dict )" +.BI "TQPtrDict<type> & \fBoperator=\fR ( const TQPtrDict<type> & dict )" .br .ti -1c .BI "virtual uint \fBcount\fR () const" @@ -76,16 +76,16 @@ Inherits QPtrCollection. .SS "Protected Members" .in +1c .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item ) const" .br .in -1c .SH DESCRIPTION -The QPtrDict class is a template class that provides a dictionary based on void* keys. +The TQPtrDict class is a template class that provides a dictionary based on void* keys. .PP -QPtrDict is implemented as a template class. Define a template instance QPtrDict<X> to create a dictionary that operates on pointers to X (X*). +TQPtrDict is implemented as a template class. Define a template instance TQPtrDict<X> to create a dictionary that operates on pointers to X (X*). .PP A dictionary is a collection of key-value pairs. The key is a void* used for insertion, removal and lookup. The value is a pointer. Dictionaries provide very fast insertion and lookup. .PP @@ -93,7 +93,7 @@ Example: .PP .nf .br - QPtrDict<char> fields; // void* keys, char* values + TQPtrDict<char> fields; // void* keys, char* values .br .br QLineEdit *le1 = new QLineEdit( this ); @@ -116,7 +116,7 @@ Example: fields.insert( le3, "Age" ); .br .br - QPtrDictIterator<char> it( fields ); + TQPtrDictIterator<char> it( fields ); .br for( ; it.current(); ++it ) .br @@ -145,27 +145,27 @@ In this example we use a dictionary to add an extra property (a char*) to the li .PP See QDict for full details, including the choice of dictionary size, and how deletions are handled. .PP -See also QPtrDictIterator, QDict, QAsciiDict, QIntDict, Collection Classes, Collection Classes, and Non-GUI Classes. +See also TQPtrDictIterator, QDict, QAsciiDict, QIntDict, Collection Classes, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrDict::QPtrDict ( int size = 17 )" +.SH "TQPtrDict::TQPtrDict ( int size = 17 )" Constructs a dictionary using an internal hash array with the size \fIsize\fR. .PP Setting \fIsize\fR to a suitably large prime number (equal to or greater than the expected number of entries) makes the hash distribution better and improves lookup performance. -.SH "QPtrDict::QPtrDict ( const QPtrDict<type> & dict )" +.SH "TQPtrDict::TQPtrDict ( const TQPtrDict<type> & dict )" Constructs a copy of \fIdict\fR. .PP Each item in \fIdict\fR is inserted into this dictionary. Only the pointers are copied (shallow copy). -.SH "QPtrDict::~QPtrDict ()" +.SH "TQPtrDict::~TQPtrDict ()" Removes all items from the dictionary and destroys it. .PP All iterators that access this dictionary will be reset. .PP See also setAutoDelete(). -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). -.SH "void QPtrDict::clear ()\fC [virtual]\fR" +.SH "void TQPtrDict::clear ()\fC [virtual]\fR" Removes all items from the dictionary. .PP The removed items are deleted if auto-deletion is enabled. @@ -174,14 +174,14 @@ All dictionary iterators that access this dictionary will be reset. .PP See also remove(), take(), and setAutoDelete(). .PP -Reimplemented from QPtrCollection. -.SH "uint QPtrDict::count () const\fC [virtual]\fR" +Reimplemented from TQPtrCollection. +.SH "uint TQPtrDict::count () const\fC [virtual]\fR" Returns the number of items in the dictionary. .PP See also isEmpty(). .PP -Reimplemented from QPtrCollection. -.SH "type * QPtrDict::find ( void * key ) const" +Reimplemented from TQPtrCollection. +.SH "type * TQPtrDict::find ( void * key ) const" Returns the item associated with \fIkey\fR, or 0 if the key does not exist in the dictionary. .PP If there are two or more items with equal keys, then the most recently inserted item will be found. @@ -189,7 +189,7 @@ If there are two or more items with equal keys, then the most recently inserted Equivalent to operator[]. .PP See also operator[](). -.SH "void QPtrDict::insert ( void * key, const type * item )" +.SH "void TQPtrDict::insert ( void * key, const type * item )" Inserts the \fIkey\fR with the \fIitem\fR into the dictionary. .PP Multiple items can have the same key, in which case only the last item will be accessible using operator[](). @@ -197,15 +197,15 @@ Multiple items can have the same key, in which case only the last item will be a \fIitem\fR may not be 0. .PP See also replace(). -.SH "bool QPtrDict::isEmpty () const" +.SH "bool TQPtrDict::isEmpty () const" Returns TRUE if the dictionary is empty; otherwise returns FALSE. .PP See also count(). -.SH "QPtrDict<type> & QPtrDict::operator= ( const QPtrDict<type> & dict )" +.SH "TQPtrDict<type> & TQPtrDict::operator= ( const TQPtrDict<type> & dict )" Assigns \fIdict\fR to this dictionary and returns a reference to this dictionary. .PP This dictionary is first cleared and then each item in \fIdict\fR is inserted into the dictionary. Only the pointers are copied (shallow copy), unless newItem() has been reimplemented. -.SH "type * QPtrDict::operator[] ( void * key ) const" +.SH "type * TQPtrDict::operator[] ( void * key ) const" Returns the item associated with \fIkey\fR, or 0 if the key does not exist in the dictionary. .PP If there are two or more items with equal keys, then the most recently inserted item will be found. @@ -213,13 +213,13 @@ If there are two or more items with equal keys, then the most recently inserted Equivalent to the find() function. .PP See also find(). -.SH "QDataStream & QPtrDict::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrDict::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a dictionary item from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. .PP See also write(). -.SH "bool QPtrDict::remove ( void * key )" +.SH "bool TQPtrDict::remove ( void * key )" Removes the item associated with \fIkey\fR from the dictionary. Returns TRUE if successful, i.e. if \fIkey\fR is in the dictionary; otherwise returns FALSE. .PP If there are two or more items with equal keys, then the most recently inserted item will be removed. @@ -229,7 +229,7 @@ The removed item is deleted if auto-deletion is enabled. All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary traversal order. .PP See also take(), clear(), and setAutoDelete(). -.SH "void QPtrDict::replace ( void * key, const type * item )" +.SH "void TQPtrDict::replace ( void * key, const type * item )" If the dictionary has key \fIkey\fR, this key's item is replaced with \fIitem\fR. If the dictionary doesn't contain key \fIkey\fR, \fIitem\fR is inserted into the dictionary using key \fIkey\fR. .PP \fIitem\fR may not be 0. @@ -238,7 +238,7 @@ Equivalent to .PP .nf .br - QPtrDict<ItemType> dict; + TQPtrDict<ItemType> dict; .br ... .br @@ -253,9 +253,9 @@ Equivalent to If there are two or more items with equal keys, then the most recently inserted item will be replaced. .PP See also insert(). -.SH "void QPtrDict::resize ( uint newsize )" +.SH "void TQPtrDict::resize ( uint newsize )" Changes the size of the hash table to \fInewsize\fR. The contents of the dictionary are preserved, but all iterators on the dictionary become invalid. -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -268,13 +268,13 @@ See also autoDelete(). .PP Examples: .)l grapher/grapher.cpp, scribble/scribble.cpp, and table/bigtable/main.cpp. -.SH "uint QPtrDict::size () const" +.SH "uint TQPtrDict::size () const" Returns the size of the internal hash table (as specified in the constructor). .PP See also count(). -.SH "void QPtrDict::statistics () const" +.SH "void TQPtrDict::statistics () const" Debugging-only function that prints out the dictionary distribution using tqDebug(). -.SH "type * QPtrDict::take ( void * key )" +.SH "type * TQPtrDict::take ( void * key )" Takes the item associated with \fIkey\fR out of the dictionary without deleting it (even if auto-deletion is enabled). .PP If there are two or more items with equal keys, then the most recently inserted item will be removed. @@ -284,13 +284,13 @@ Returns a pointer to the item taken out, or 0 if the key does not exist in the d All dictionary iterators that refer to the taken item will be set to point to the next item in the dictionary traversal order. .PP See also remove(), clear(), and setAutoDelete(). -.SH "QDataStream & QPtrDict::write ( QDataStream & s, QPtrCollection::Item ) const\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrDict::write ( QDataStream & s, TQPtrCollection::Item ) const\fC [virtual protected]\fR" Writes a dictionary item to the stream \fIs\fR and returns a reference to the stream. .PP See also read(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqptrdict.html +.BR http://doc.trolltech.com/tqptrdict.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/tqptrdictiterator.3qt b/doc/man/man3/tqptrdictiterator.3qt index 88861979a..e5a8e7448 100644 --- a/doc/man/man3/tqptrdictiterator.3qt +++ b/doc/man/man3/tqptrdictiterator.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrDictIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrDictIterator 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 -QPtrDictIterator \- Iterator for QPtrDict collections +TQPtrDictIterator \- Iterator for TQPtrDict collections .SH SYNOPSIS -\fC#include <ntqptrdict.h>\fR +\fC#include <tqptrdict.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrDictIterator\fR ( const QPtrDict<type> & dict )" +.BI "\fBTQPtrDictIterator\fR ( const TQPtrDict<type> & dict )" .br .ti -1c -.BI "\fB~QPtrDictIterator\fR ()" +.BI "\fB~TQPtrDictIterator\fR ()" .br .ti -1c .BI "uint \fBcount\fR () const" @@ -48,15 +48,15 @@ QPtrDictIterator \- Iterator for QPtrDict collections .br .in -1c .SH DESCRIPTION -The QPtrDictIterator class provides an iterator for QPtrDict collections. +The TQPtrDictIterator class provides an iterator for TQPtrDict collections. .PP -QPtrDictIterator is implemented as a template class. Define a template instance QPtrDictIterator<X> to create a dictionary iterator that operates on QPtrDict<X> (dictionary of X*). +TQPtrDictIterator is implemented as a template class. Define a template instance TQPtrDictIterator<X> to create a dictionary iterator that operates on TQPtrDict<X> (dictionary of X*). .PP Example: .PP .nf .br - QPtrDict<char> fields; + TQPtrDict<char> fields; .br .br QLineEdit *le1 = new QLineEdit( this ); @@ -79,7 +79,7 @@ Example: fields.insert( le3, "Age" ); .br .br - QPtrDictIterator<char> it( fields ); + TQPtrDictIterator<char> it( fields ); .br for( ; it.current(); ++it ) { .br @@ -103,47 +103,47 @@ Example: .fi In the example we insert some line edits into a dictionary, associating a string with each. We then iterate over the dictionary printing the associated strings. .PP -Multiple iterators may independently traverse the same dictionary. A QPtrDict knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, QPtrDict updates all iterators that refer the removed item to point to the next item in the traversing order. +Multiple iterators may independently traverse the same dictionary. A TQPtrDict knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, TQPtrDict updates all iterators that refer the removed item to point to the next item in the traversing order. .PP -See also QPtrDict, Collection Classes, and Non-GUI Classes. +See also TQPtrDict, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrDictIterator::QPtrDictIterator ( const QPtrDict<type> & dict )" +.SH "TQPtrDictIterator::TQPtrDictIterator ( const TQPtrDict<type> & dict )" Constructs an iterator for \fIdict\fR. The current iterator item is set to point on the first item in the \fIdict\fR. -.SH "QPtrDictIterator::~QPtrDictIterator ()" +.SH "TQPtrDictIterator::~TQPtrDictIterator ()" Destroys the iterator. -.SH "uint QPtrDictIterator::count () const" +.SH "uint TQPtrDictIterator::count () const" Returns the number of items in the dictionary this iterator operates on. .PP See also isEmpty(). -.SH "type * QPtrDictIterator::current () const" +.SH "type * TQPtrDictIterator::current () const" Returns a pointer to the current iterator item's value. -.SH "void * QPtrDictIterator::currentKey () const" +.SH "void * TQPtrDictIterator::currentKey () const" Returns the current iterator item's key. -.SH "bool QPtrDictIterator::isEmpty () const" +.SH "bool TQPtrDictIterator::isEmpty () const" Returns TRUE if the dictionary is empty; otherwise returns FALSE. .PP See also count(). -.SH "QPtrDictIterator::operator type * () const" +.SH "TQPtrDictIterator::operator type * () const" Cast operator. Returns a pointer to the current iterator item. Same as current(). -.SH "type * QPtrDictIterator::operator() ()" +.SH "type * TQPtrDictIterator::operator() ()" Makes the succeeding item current and returns the original current item. .PP If the current iterator item was the last item in the dictionary or if it was 0, 0 is returned. -.SH "type * QPtrDictIterator::operator++ ()" +.SH "type * TQPtrDictIterator::operator++ ()" Prefix ++ makes the succeeding item current and returns the new current item. .PP If the current iterator item was the last item in the dictionary or if it was 0, 0 is returned. -.SH "type * QPtrDictIterator::operator+= ( uint jump )" +.SH "type * TQPtrDictIterator::operator+= ( uint jump )" Sets the current item to the item \fIjump\fR positions after the current item and returns a pointer to that item. .PP If that item is beyond the last item or if the dictionary is empty, it sets the current item to 0 and returns 0. -.SH "type * QPtrDictIterator::toFirst ()" +.SH "type * TQPtrDictIterator::toFirst ()" Sets the current iterator item to point to the first item in the dictionary and returns a pointer to the item. If the dictionary is empty, it sets the current item to 0 and returns 0. .SH "SEE ALSO" -.BR http://doc.trolltech.com/qptrdictiterator.html +.BR http://doc.trolltech.com/tqptrdictiterator.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/tqptrlist.3qt b/doc/man/man3/tqptrlist.3qt index 2b40eccc6..62f86d03d 100644 --- a/doc/man/man3/tqptrlist.3qt +++ b/doc/man/man3/tqptrlist.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrList 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrList 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,33 +7,33 @@ .ad l .nh .SH NAME -QPtrList \- Template class that provides a list +TQPtrList \- Template class that provides a list .SH SYNOPSIS -\fC#include <ntqptrlist.h>\fR +\fC#include <tqptrlist.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP Inherited by TQObjectList and QStrList. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrList\fR ()" +.BI "\fBTQPtrList\fR ()" .br .ti -1c -.BI "\fBQPtrList\fR ( const QPtrList<type> & list )" +.BI "\fBTQPtrList\fR ( const TQPtrList<type> & list )" .br .ti -1c -.BI "\fB~QPtrList\fR ()" +.BI "\fB~TQPtrList\fR ()" .br .ti -1c -.BI "QPtrList<type> & \fBoperator=\fR ( const QPtrList<type> & list )" +.BI "TQPtrList<type> & \fBoperator=\fR ( const TQPtrList<type> & list )" .br .ti -1c -.BI "bool \fBoperator==\fR ( const QPtrList<type> & list ) const" +.BI "bool \fBoperator==\fR ( const TQPtrList<type> & list ) const" .br .ti -1c -.BI "bool \fBoperator!=\fR ( const QPtrList<type> & list ) const" +.BI "bool \fBoperator!=\fR ( const TQPtrList<type> & list ) const" .br .ti -1c .BI "virtual uint \fBcount\fR () const" @@ -156,21 +156,21 @@ Inherited by TQObjectList and QStrList. .SS "Protected Members" .in +1c .ti -1c -.BI "virtual int \fBcompareItems\fR ( QPtrCollection::Item item1, QPtrCollection::Item item2 )" +.BI "virtual int \fBcompareItems\fR ( TQPtrCollection::Item item1, TQPtrCollection::Item item2 )" .br .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item item ) const" .br .in -1c .SH DESCRIPTION -The QPtrList class is a template class that provides a list. +The TQPtrList class is a template class that provides a list. .PP TQValueList is an STL-compatible alternative to this class. .PP -Define a template instance QPtrList<X> to create a list that operates on pointers to X (X*). +Define a template instance TQPtrList<X> to create a list that operates on pointers to X (X*). .PP The list class is indexable and has a current index and a current item. The first item corresponds to index position 0. The current index is -1 if the current item is 0. .PP @@ -216,7 +216,7 @@ Example: }; .br .br - QPtrList<Employee> list; + TQPtrList<Employee> list; .br list.setAutoDelete( TRUE ); // the list owns the objects .br @@ -270,13 +270,13 @@ The output is .br .fi .PP -QPtrList has several member functions for traversing the list, but using a QPtrListIterator can be more practical. Multiple list iterators may traverse the same list, independently of each other and of the current list item. +TQPtrList has several member functions for traversing the list, but using a TQPtrListIterator can be more practical. Multiple list iterators may traverse the same list, independently of each other and of the current list item. .PP In the example above we make the call setAutoDelete(TRUE). Enabling auto-deletion tells the list to delete items that are removed. The default is to not delete items when they are removed but this would cause a memory leak in the example because there are no other references to the list items. .PP -When inserting an item into a list only the pointer is copied, not the item itself, i.e. a shallow copy. It is possible to make the list copy all of the item's data (deep copy) when an item is inserted. insert(), inSort() and append() call the virtual function QPtrCollection::newItem() for the item to be inserted. Inherit a list and reimplement newItem() to have deep copies. +When inserting an item into a list only the pointer is copied, not the item itself, i.e. a shallow copy. It is possible to make the list copy all of the item's data (deep copy) when an item is inserted. insert(), inSort() and append() call the virtual function TQPtrCollection::newItem() for the item to be inserted. Inherit a list and reimplement newItem() to have deep copies. .PP -When removing an item from a list, the virtual function QPtrCollection::deleteItem() is called. QPtrList's default implementation is to delete the item if auto-deletion is enabled. +When removing an item from a list, the virtual function TQPtrCollection::deleteItem() is called. TQPtrList's default implementation is to delete the item if auto-deletion is enabled. .PP The virtual function compareItems() can be reimplemented to compare two list items. This function is called from all list functions that need to compare list items, for instance remove(const type*). If you only want to deal with pointers, there are functions that compare pointers instead, for instance removeRef(const type*). These functions are somewhat faster than those that call compareItems(). .PP @@ -284,21 +284,21 @@ List items are stored as \fCvoid*\fR in an internal QLNode, which also holds poi .PP The QStrList class defined in ntqstrlist.h is a list of \fCchar*\fR. It reimplements newItem(), deleteItem() and compareItems(). (But see QStringList for a list of Unicode QStrings.) .PP -See also QPtrListIterator, Collection Classes, and Non-GUI Classes. +See also TQPtrListIterator, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrList::QPtrList ()" +.SH "TQPtrList::TQPtrList ()" Constructs an empty list. -.SH "QPtrList::QPtrList ( const QPtrList<type> & list )" +.SH "TQPtrList::TQPtrList ( const TQPtrList<type> & list )" Constructs a copy of \fIlist\fR. .PP Each item in \fIlist\fR is appended to this list. Only the pointers are copied (shallow copy). -.SH "QPtrList::~QPtrList ()" +.SH "TQPtrList::~TQPtrList ()" Removes all items from the list and destroys the list. .PP All list iterators that access this list will be reset. .PP See also setAutoDelete(). -.SH "void QPtrList::append ( const type * item )" +.SH "void TQPtrList::append ( const type * item )" Inserts the \fIitem\fR at the end of the list. .PP The inserted item becomes the current list item. This is equivalent to \fCinsert( count(), item )\fR. @@ -309,7 +309,7 @@ See also insert(), current(), and prepend(). .PP Examples: .)l customlayout/border.cpp, customlayout/card.cpp, customlayout/flow.cpp, grapher/grapher.cpp, listviews/listviews.cpp, listviews/listviews.h, and qwerty/qwerty.cpp. -.SH "type * QPtrList::at ( uint index )" +.SH "type * TQPtrList::at ( uint index )" Returns a pointer to the item at position \fIindex\fR in the list, or 0 if the index is out of range. .PP Sets the current list item to this item if \fIindex\fR is valid. The valid range is \fC0..(count() - 1)\fR inclusive. @@ -320,17 +320,17 @@ See also current(). .PP Examples: .)l customlayout/border.cpp, customlayout/card.cpp, customlayout/flow.cpp, dirview/dirview.cpp, mdi/application.cpp, and qwerty/qwerty.cpp. -.SH "int QPtrList::at () const" +.SH "int TQPtrList::at () const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns the index of the current list item. The returned value is -1 if the current item is 0. .PP See also current(). -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). -.SH "void QPtrList::clear ()\fC [virtual]\fR" +.SH "void TQPtrList::clear ()\fC [virtual]\fR" Removes all items from the list. .PP The removed items are deleted if auto-deletion is enabled. @@ -339,8 +339,8 @@ All list iterators that access this list will be reset. .PP See also remove(), take(), and setAutoDelete(). .PP -Reimplemented from QPtrCollection. -.SH "int QPtrList::compareItems ( QPtrCollection::Item item1, QPtrCollection::Item item2 )\fC [virtual protected]\fR" +Reimplemented from TQPtrCollection. +.SH "int TQPtrList::compareItems ( TQPtrCollection::Item item1, TQPtrCollection::Item item2 )\fC [virtual protected]\fR" This virtual function compares two list items. .PP Returns: @@ -362,7 +362,7 @@ inSort() requires that compareItems() is implemented as described here. This function should not modify the list because some const functions call compareItems(). .PP The default implementation compares the pointers. -.SH "uint QPtrList::contains ( const type * item ) const" +.SH "uint TQPtrList::contains ( const type * item ) const" Returns the number of occurrences of \fIitem\fR in the list. .PP The compareItems() function is called when looking for the \fIitem\fR in the list. If compareItems() is not reimplemented, it is more efficient to call containsRef(). @@ -370,7 +370,7 @@ The compareItems() function is called when looking for the \fIitem\fR in the lis This function does not affect the current list item. .PP See also containsRef() and compareItems(). -.SH "uint QPtrList::containsRef ( const type * item ) const" +.SH "uint TQPtrList::containsRef ( const type * item ) const" Returns the number of occurrences of \fIitem\fR in the list. .PP Calling this function is much faster than contains() because contains() compares \fIitem\fR with each list item using compareItems(), whereas his function only compares the pointers. @@ -378,7 +378,7 @@ Calling this function is much faster than contains() because contains() compares This function does not affect the current list item. .PP See also contains(). -.SH "uint QPtrList::count () const\fC [virtual]\fR" +.SH "uint TQPtrList::count () const\fC [virtual]\fR" Returns the number of items in the list. .PP See also isEmpty(). @@ -386,12 +386,12 @@ See also isEmpty(). Examples: .)l customlayout/border.cpp, customlayout/card.cpp, customlayout/flow.cpp, dirview/dirview.cpp, grapher/grapher.cpp, mdi/application.cpp, and qwerty/qwerty.cpp. .PP -Reimplemented from QPtrCollection. -.SH "type * QPtrList::current () const" +Reimplemented from TQPtrCollection. +.SH "type * TQPtrList::current () const" Returns a pointer to the current list item. The current item may be 0 (implies that the current index is -1). .PP See also at(). -.SH "QLNode * QPtrList::currentNode () const" +.SH "QLNode * TQPtrList::currentNode () const" Returns a pointer to the current list node. .PP The node can be kept and removed later using removeNode(). The advantage is that the item can be removed directly without searching the list. @@ -399,7 +399,7 @@ The node can be kept and removed later using removeNode(). The advantage is that \fBWarning:\fR Do not call this function unless you are an expert. .PP See also removeNode(), takeNode(), and current(). -.SH "int QPtrList::find ( const type * item )" +.SH "int TQPtrList::find ( const type * item )" Finds the first occurrence of \fIitem\fR in the list. .PP If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to 0, the current index to -1, and returns -1. @@ -407,7 +407,7 @@ If the item is found, the list sets the current item to point to the found item The compareItems() function is called when searching for the item in the list. If compareItems() is not reimplemented, it is more efficient to call findRef(). .PP See also findNext(), findRef(), compareItems(), and current(). -.SH "int QPtrList::findNext ( const type * item )" +.SH "int TQPtrList::findNext ( const type * item )" Finds the next occurrence of \fIitem\fR in the list, starting from the current list item. .PP If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to 0, the current index to -1, and returns -1. @@ -415,7 +415,7 @@ If the item is found, the list sets the current item to point to the found item The compareItems() function is called when searching for the item in the list. If compareItems() is not reimplemented, it is more efficient to call findNextRef(). .PP See also find(), findNextRef(), compareItems(), and current(). -.SH "int QPtrList::findNextRef ( const type * item )" +.SH "int TQPtrList::findNextRef ( const type * item )" Finds the next occurrence of \fIitem\fR in the list, starting from the current list item. .PP If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to 0, the current index to -1, and returns -1. @@ -423,7 +423,7 @@ If the item is found, the list sets the current item to point to the found item Calling this function is much faster than findNext() because findNext() compares \fIitem\fR with each list item using compareItems(), whereas this function only compares the pointers. .PP See also findRef(), findNext(), and current(). -.SH "int QPtrList::findRef ( const type * item )" +.SH "int TQPtrList::findRef ( const type * item )" Finds the first occurrence of \fIitem\fR in the list. .PP If the item is found, the list sets the current item to point to the found item and returns the index of this item. If the item is not found, the list sets the current item to 0, the current index to -1, and returns -1. @@ -431,26 +431,26 @@ If the item is found, the list sets the current item to point to the found item Calling this function is much faster than find() because find() compares \fIitem\fR with each list item using compareItems(), whereas this function only compares the pointers. .PP See also findNextRef(), find(), and current(). -.SH "type * QPtrList::first ()" +.SH "type * TQPtrList::first ()" Returns a pointer to the first item in the list and makes this the current list item; returns 0 if the list is empty. .PP See also getFirst(), last(), next(), prev(), and current(). .PP Examples: .)l grapher/grapher.cpp, listviews/listviews.h, and showimg/showimg.cpp. -.SH "type * QPtrList::getFirst () const" +.SH "type * TQPtrList::getFirst () const" Returns a pointer to the first item in the list, or 0 if the list is empty. .PP This function does not affect the current list item. .PP See also first() and getLast(). -.SH "type * QPtrList::getLast () const" +.SH "type * TQPtrList::getLast () const" Returns a pointer to the last item in the list, or 0 if the list is empty. .PP This function does not affect the current list item. .PP See also last() and getFirst(). -.SH "void QPtrList::inSort ( const type * item )" +.SH "void TQPtrList::inSort ( const type * item )" Inserts the \fIitem\fR at its sorted position in the list. .PP The sort order depends on the virtual compareItems() function. All items must be inserted with inSort() to maintain the sorting order. @@ -462,7 +462,7 @@ The inserted item becomes the current list item. \fBWarning:\fR Using inSort() is slow. An alternative, especially if you have lots of items, is to simply append() or insert() them and then use sort(). inSort() takes up to O(n) compares. That means inserting n items in your list will need O(n^2) compares whereas sort() only needs O(n*log n) for the same task. So use inSort() only if you already have a presorted list and want to insert just a few additional items. .PP See also insert(), compareItems(), current(), and sort(). -.SH "bool QPtrList::insert ( uint index, const type * item )" +.SH "bool TQPtrList::insert ( uint index, const type * item )" Inserts the \fIitem\fR at position \fIindex\fR in the list. .PP Returns TRUE if successful, i.e. if \fIindex\fR is in range; otherwise returns FALSE. The valid range is 0 to count() (inclusively). The item is appended if \fIindex\fR == count(). @@ -472,15 +472,15 @@ The inserted item becomes the current list item. \fIitem\fR must not be 0. .PP See also append(), current(), and replace(). -.SH "bool QPtrList::isEmpty () const" +.SH "bool TQPtrList::isEmpty () const" Returns TRUE if the list is empty; otherwise returns FALSE. .PP See also count(). -.SH "type * QPtrList::last ()" +.SH "type * TQPtrList::last ()" Returns a pointer to the last item in the list and makes this the current list item; returns 0 if the list is empty. .PP See also getLast(), first(), next(), prev(), and current(). -.SH "type * QPtrList::next ()" +.SH "type * TQPtrList::next ()" Returns a pointer to the item succeeding the current item. Returns 0 if the current item is 0 or equal to the last item. .PP Makes the succeeding item current. If the current item before this function call was the last item, the current item will be set to 0. If the current item was 0, this function does nothing. @@ -489,15 +489,15 @@ See also first(), last(), prev(), and current(). .PP Examples: .)l grapher/grapher.cpp, listviews/listviews.h, and showimg/showimg.cpp. -.SH "bool QPtrList::operator!= ( const QPtrList<type> & list ) const" +.SH "bool TQPtrList::operator!= ( const TQPtrList<type> & list ) const" Compares this list with \fIlist\fR. Returns TRUE if the lists contain different data; otherwise returns FALSE. -.SH "QPtrList<type> & QPtrList::operator= ( const QPtrList<type> & list )" +.SH "TQPtrList<type> & TQPtrList::operator= ( const TQPtrList<type> & list )" Assigns \fIlist\fR to this list and returns a reference to this list. .PP This list is first cleared and then each item in \fIlist\fR is appended to this list. Only the pointers are copied (shallow copy) unless newItem() has been reimplemented. -.SH "bool QPtrList::operator== ( const QPtrList<type> & list ) const" +.SH "bool TQPtrList::operator== ( const TQPtrList<type> & list ) const" Compares this list with \fIlist\fR. Returns TRUE if the lists contain the same data; otherwise returns FALSE. -.SH "void QPtrList::prepend ( const type * item )" +.SH "void TQPtrList::prepend ( const type * item )" Inserts the \fIitem\fR at the start of the list. .PP The inserted item becomes the current list item. This is equivalent to \fCinsert( 0, item )\fR. @@ -505,19 +505,19 @@ The inserted item becomes the current list item. This is equivalent to \fCinsert \fIitem\fR must not be 0. .PP See also append(), insert(), and current(). -.SH "type * QPtrList::prev ()" +.SH "type * TQPtrList::prev ()" Returns a pointer to the item preceding the current item. Returns 0 if the current item is 0 or equal to the first item. .PP Makes the preceding item current. If the current item before this function call was the first item, the current item will be set to 0. If the current item was 0, this function does nothing. .PP See also first(), last(), next(), and current(). -.SH "QDataStream & QPtrList::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrList::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a list item from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. .PP See also write(). -.SH "bool QPtrList::remove ( uint index )" +.SH "bool TQPtrList::remove ( uint index )" Removes the item at position \fIindex\fR in the list. .PP Returns TRUE if successful, i.e. if \fIindex\fR is in range; otherwise returns FALSE. The valid range is \fC0..(count() - 1)\fR inclusive. @@ -529,7 +529,7 @@ The item after the removed item becomes the new current list item if the removed All list iterators that refer to the removed item will be set to point to the new current item. .PP See also take(), clear(), setAutoDelete(), current(), and removeRef(). -.SH "bool QPtrList::remove ()" +.SH "bool TQPtrList::remove ()" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Removes the current list item. @@ -543,7 +543,7 @@ The item after the removed item becomes the new current list item if the removed All list iterators that refer to the removed item will be set to point to the new current item. .PP See also take(), clear(), setAutoDelete(), current(), and removeRef(). -.SH "bool QPtrList::remove ( const type * item )" +.SH "bool TQPtrList::remove ( const type * item )" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Removes the first occurrence of \fIitem\fR from the list. @@ -561,7 +561,7 @@ The item after the removed item becomes the new current list item if the removed All list iterators that refer to the removed item will be set to point to the new current item. .PP See also removeRef(), take(), clear(), setAutoDelete(), compareItems(), and current(). -.SH "bool QPtrList::removeFirst ()" +.SH "bool TQPtrList::removeFirst ()" Removes the first item from the list. Returns TRUE if successful, i.e. if the list isn't empty; otherwise returns FALSE. .PP The removed item is deleted if auto-deletion is enabled. @@ -571,7 +571,7 @@ The first item in the list becomes the new current list item. The current item i All list iterators that refer to the removed item will be set to point to the new current item. .PP See also removeLast(), setAutoDelete(), current(), and remove(). -.SH "bool QPtrList::removeLast ()" +.SH "bool TQPtrList::removeLast ()" Removes the last item from the list. Returns TRUE if successful, i.e. if the list isn't empty; otherwise returns FALSE. .PP The removed item is deleted if auto-deletion is enabled. @@ -581,7 +581,7 @@ The last item in the list becomes the new current list item. The current item is All list iterators that refer to the removed item will be set to point to the new current item. .PP See also removeFirst(), setAutoDelete(), and current(). -.SH "void QPtrList::removeNode ( QLNode * node )" +.SH "void TQPtrList::removeNode ( QLNode * node )" Removes the \fInode\fR from the list. .PP This node must exist in the list, otherwise the program may crash. @@ -595,7 +595,7 @@ All list iterators that refer to the removed item will be set to point to the it \fBWarning:\fR Do not call this function unless you are an expert. .PP See also takeNode(), currentNode(), remove(), and removeRef(). -.SH "bool QPtrList::removeRef ( const type * item )" +.SH "bool TQPtrList::removeRef ( const type * item )" Removes the first occurrence of \fIitem\fR from the list. .PP Returns TRUE if successful, i.e. if \fIitem\fR is in the list; otherwise returns FALSE. @@ -617,13 +617,13 @@ The item after the removed item becomes the new current list item if the removed All list iterators that refer to the removed item will be set to point to the new current item. .PP See also remove(), clear(), setAutoDelete(), and current(). -.SH "bool QPtrList::replace ( uint index, const type * item )" +.SH "bool TQPtrList::replace ( uint index, const type * item )" Replaces the item at position \fIindex\fR with the new \fIitem\fR. .PP Returns TRUE if successful, i.e. \fIindex\fR is in the range 0 to count()-1. .PP See also append(), current(), and insert(). -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -636,13 +636,13 @@ See also autoDelete(). .PP Examples: .)l grapher/grapher.cpp, scribble/scribble.cpp, and table/bigtable/main.cpp. -.SH "void QPtrList::sort ()" +.SH "void TQPtrList::sort ()" Sorts the list by the result of the virtual compareItems() function. .PP The heap sort algorithm is used for sorting. It sorts n items with O(n*log n) comparisons. This is the asymptotic optimal solution of the sorting problem. .PP See also inSort(). -.SH "type * QPtrList::take ( uint index )" +.SH "type * TQPtrList::take ( uint index )" Takes the item at position \fIindex\fR out of the list without deleting it (even if auto-deletion is enabled). .PP Returns a pointer to the item taken out of the list, or 0 if the index is out of range. The valid range is \fC0..(count() - 1)\fR inclusive. @@ -655,7 +655,7 @@ See also remove(), clear(), and current(). .PP Examples: .)l customlayout/border.cpp, customlayout/card.cpp, and customlayout/flow.cpp. -.SH "type * QPtrList::take ()" +.SH "type * TQPtrList::take ()" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Takes the current item out of the list without deleting it (even if auto-deletion is enabled). @@ -667,7 +667,7 @@ The item after the removed item becomes the new current list item if the removed All list iterators that refer to the taken item will be set to point to the new current item. .PP See also remove(), clear(), and current(). -.SH "type * QPtrList::takeNode ( QLNode * node )" +.SH "type * TQPtrList::takeNode ( QLNode * node )" Takes the \fInode\fR out of the list without deleting its item (even if auto-deletion is enabled). Returns a pointer to the item taken out of the list. .PP This node must exist in the list, otherwise the program may crash. @@ -679,11 +679,11 @@ All list iterators that refer to the taken item will be set to point to the item \fBWarning:\fR Do not call this function unless you are an expert. .PP See also removeNode() and currentNode(). -.SH "void QPtrList::toVector ( QGVector * vec ) const" +.SH "void TQPtrList::toVector ( QGVector * vec ) const" Stores all list items in the vector \fIvec\fR. .PP The vector must be of the same item type, otherwise the result will be undefined. -.SH "QDataStream & QPtrList::write ( QDataStream & s, QPtrCollection::Item item ) const\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrList::write ( QDataStream & s, TQPtrCollection::Item item ) const\fC [virtual protected]\fR" Writes a list item, \fIitem\fR to the stream \fIs\fR and returns a reference to the stream. .PP The default implementation does nothing. @@ -691,7 +691,7 @@ The default implementation does nothing. See also read(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqptrlist.html +.BR http://doc.trolltech.com/tqptrlist.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/tqptrlistiterator.3qt b/doc/man/man3/tqptrlistiterator.3qt index 8a06d3216..d9a4cefe5 100644 --- a/doc/man/man3/tqptrlistiterator.3qt +++ b/doc/man/man3/tqptrlistiterator.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrListIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrListIterator 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,19 +7,19 @@ .ad l .nh .SH NAME -QPtrListIterator \- Iterator for QPtrList collections +TQPtrListIterator \- Iterator for TQPtrList collections .SH SYNOPSIS -\fC#include <ntqptrlist.h>\fR +\fC#include <tqptrlist.h>\fR .PP Inherited by TQObjectListIterator and QStrListIterator. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrListIterator\fR ( const QPtrList<type> & list )" +.BI "\fBTQPtrListIterator\fR ( const TQPtrList<type> & list )" .br .ti -1c -.BI "\fB~QPtrListIterator\fR ()" +.BI "\fB~TQPtrListIterator\fR ()" .br .ti -1c .BI "uint \fBcount\fR () const" @@ -64,19 +64,19 @@ Inherited by TQObjectListIterator and QStrListIterator. .BI "type * \fBoperator-=\fR ( uint jump )" .br .ti -1c -.BI "QPtrListIterator<type> & \fBoperator=\fR ( const QPtrListIterator<type> & it )" +.BI "TQPtrListIterator<type> & \fBoperator=\fR ( const TQPtrListIterator<type> & it )" .br .in -1c .SH DESCRIPTION -The QPtrListIterator class provides an iterator for QPtrList collections. +The TQPtrListIterator class provides an iterator for TQPtrList collections. .PP -Define a template instance QPtrListIterator<X> to create a list iterator that operates on QPtrList<X> (list of X*). +Define a template instance TQPtrListIterator<X> to create a list iterator that operates on TQPtrList<X> (list of X*). .PP -The following example is similar to the example in the QPtrList class documentation, but it uses QPtrListIterator. The class Employee is defined there. +The following example is similar to the example in the TQPtrList class documentation, but it uses TQPtrListIterator. The class Employee is defined there. .PP .nf .br - QPtrList<Employee> list; + TQPtrList<Employee> list; .br .br list.append( new Employee("John", "Doe", 50000) ); @@ -86,7 +86,7 @@ The following example is similar to the example in the QPtrList class documentat list.append( new Employee("Tom", "Jones", 60000) ); .br .br - QPtrListIterator<Employee> it( list ); + TQPtrListIterator<Employee> it( list ); .br Employee *employee; .br @@ -116,76 +116,76 @@ The output is .br .fi .PP -Using a list iterator is a more robust way of traversing the list than using the QPtrList member functions first(), next(), current(), etc., as many iterators can traverse the same list independently. +Using a list iterator is a more robust way of traversing the list than using the TQPtrList member functions first(), next(), current(), etc., as many iterators can traverse the same list independently. .PP An iterator has its own current list item and can get the next and previous list items. It doesn't modify the list in any way. .PP -When an item is removed from the list, all iterators that point to that item are updated to point to QPtrList::current() instead to avoid dangling references. +When an item is removed from the list, all iterators that point to that item are updated to point to TQPtrList::current() instead to avoid dangling references. .PP -See also QPtrList, Collection Classes, and Non-GUI Classes. +See also TQPtrList, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrListIterator::QPtrListIterator ( const QPtrList<type> & list )" +.SH "TQPtrListIterator::TQPtrListIterator ( const TQPtrList<type> & list )" Constructs an iterator for \fIlist\fR. The current iterator item is set to point on the first item in the \fIlist\fR. -.SH "QPtrListIterator::~QPtrListIterator ()" +.SH "TQPtrListIterator::~TQPtrListIterator ()" Destroys the iterator. -.SH "bool QPtrListIterator::atFirst () const" +.SH "bool TQPtrListIterator::atFirst () const" Returns TRUE if the current iterator item is the first list item; otherwise returns FALSE. .PP See also toFirst() and atLast(). -.SH "bool QPtrListIterator::atLast () const" +.SH "bool TQPtrListIterator::atLast () const" Returns TRUE if the current iterator item is the last list item; otherwise returns FALSE. .PP See also toLast() and atFirst(). -.SH "uint QPtrListIterator::count () const" +.SH "uint TQPtrListIterator::count () const" Returns the number of items in the list this iterator operates on. .PP See also isEmpty(). .PP Example: customlayout/card.cpp. -.SH "type * QPtrListIterator::current () const" +.SH "type * TQPtrListIterator::current () const" Returns a pointer to the current iterator item. If the iterator is positioned before the first item in the list or after the last item in the list, 0 is returned. .PP Examples: .)l canvas/canvas.cpp, customlayout/card.cpp, and customlayout/flow.cpp. -.SH "bool QPtrListIterator::isEmpty () const" +.SH "bool TQPtrListIterator::isEmpty () const" Returns TRUE if the list is empty; otherwise returns FALSE. .PP See also count(). -.SH "QPtrListIterator::operator type * () const" +.SH "TQPtrListIterator::operator type * () const" Cast operator. Returns a pointer to the current iterator item. Same as current(). -.SH "type * QPtrListIterator::operator() ()" +.SH "type * TQPtrListIterator::operator() ()" Makes the succeeding item current and returns the original current item. .PP If the current iterator item was the last item in the list or if it was 0, 0 is returned. -.SH "type * QPtrListIterator::operator* ()" +.SH "type * TQPtrListIterator::operator* ()" Asterisk operator. Returns a pointer to the current iterator item. Same as current(). -.SH "type * QPtrListIterator::operator++ ()" +.SH "type * TQPtrListIterator::operator++ ()" Prefix ++ makes the succeeding item current and returns the new current item. .PP If the current iterator item was the last item in the list or if it was 0, 0 is returned. -.SH "type * QPtrListIterator::operator+= ( uint jump )" +.SH "type * TQPtrListIterator::operator+= ( uint jump )" Sets the current item to the item \fIjump\fR positions after the current item and returns a pointer to that item. .PP If that item is beyond the last item or if the list is empty, it sets the current item to 0 and returns 0 -.SH "type * QPtrListIterator::operator-- ()" +.SH "type * TQPtrListIterator::operator-- ()" Prefix - makes the preceding item current and returns the new current item. .PP If the current iterator item was the first item in the list or if it was 0, 0 is returned. -.SH "type * QPtrListIterator::operator-= ( uint jump )" +.SH "type * TQPtrListIterator::operator-= ( uint jump )" Returns the item \fIjump\fR positions before the current item or 0 if it is beyond the first item. Makes this the current item. -.SH "QPtrListIterator<type> & QPtrListIterator::operator= ( const QPtrListIterator<type> & it )" +.SH "TQPtrListIterator<type> & TQPtrListIterator::operator= ( const TQPtrListIterator<type> & it )" Assignment. Makes a copy of the iterator \fIit\fR and returns a reference to this iterator. -.SH "type * QPtrListIterator::toFirst ()" +.SH "type * TQPtrListIterator::toFirst ()" Sets the current iterator item to point to the first list item and returns a pointer to the item. Sets the current item to 0 and returns 0 if the list is empty. .PP See also toLast() and atFirst(). -.SH "type * QPtrListIterator::toLast ()" +.SH "type * TQPtrListIterator::toLast ()" Sets the current iterator item to point to the last list item and returns a pointer to the item. Sets the current item to 0 and returns 0 if the list is empty. .PP See also toFirst() and atLast(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/qptrlistiterator.html +.BR http://doc.trolltech.com/tqptrlistiterator.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/tqptrqueue.3qt b/doc/man/man3/tqptrqueue.3qt index 98c8e0e93..9eb1bd189 100644 --- a/doc/man/man3/tqptrqueue.3qt +++ b/doc/man/man3/tqptrqueue.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrQueue 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrQueue 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 -QPtrQueue \- Template class that provides a queue +TQPtrQueue \- Template class that provides a queue .SH SYNOPSIS -\fC#include <ntqptrqueue.h>\fR +\fC#include <tqptrqueue.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrQueue\fR ()" +.BI "\fBTQPtrQueue\fR ()" .br .ti -1c -.BI "\fBQPtrQueue\fR ( const QPtrQueue<type> & queue )" +.BI "\fBTQPtrQueue\fR ( const TQPtrQueue<type> & queue )" .br .ti -1c -.BI "\fB~QPtrQueue\fR ()" +.BI "\fB~TQPtrQueue\fR ()" .br .ti -1c -.BI "QPtrQueue<type> & \fBoperator=\fR ( const QPtrQueue<type> & queue )" +.BI "TQPtrQueue<type> & \fBoperator=\fR ( const TQPtrQueue<type> & queue )" .br .ti -1c .BI "bool \fBautoDelete\fR () const" @@ -62,90 +62,90 @@ QPtrQueue \- Template class that provides a queue .SS "Protected Members" .in +1c .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item item ) const" .br .in -1c .SH DESCRIPTION -The QPtrQueue class is a template class that provides a queue. +The TQPtrQueue class is a template class that provides a queue. .PP TQValueVector can be used as an STL-compatible alternative to this class. .PP -A template instance QPtrQueue<X> is a queue that operates on pointers to X (X*). +A template instance TQPtrQueue<X> is a queue that operates on pointers to X (X*). .PP A queue is a first in, first out structure. Items are added to the tail of the queue with enqueue() and retrieved from the head with dequeue(). You can peek at the head item without dequeing it using head(). .PP You can control the queue's deletion policy with setAutoDelete(). .PP -For compatibility with the QPtrCollection classes, current() and remove() are provided; both operate on the head(). +For compatibility with the TQPtrCollection classes, current() and remove() are provided; both operate on the head(). .PP -See also QPtrList, QPtrStack, Collection Classes, and Non-GUI Classes. +See also TQPtrList, TQPtrStack, Collection Classes, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrQueue::QPtrQueue ()" +.SH "TQPtrQueue::TQPtrQueue ()" Creates an empty queue with autoDelete() set to FALSE. -.SH "QPtrQueue::QPtrQueue ( const QPtrQueue<type> & queue )" +.SH "TQPtrQueue::TQPtrQueue ( const TQPtrQueue<type> & queue )" Creates a queue from \fIqueue\fR. .PP Only the pointers are copied; the items are not. The autoDelete() flag is set to FALSE. -.SH "QPtrQueue::~QPtrQueue ()" +.SH "TQPtrQueue::~TQPtrQueue ()" Destroys the queue. Items in the queue are deleted if autoDelete() is TRUE. -.SH "bool QPtrQueue::autoDelete () const" +.SH "bool TQPtrQueue::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). -.SH "void QPtrQueue::clear ()" +.SH "void TQPtrQueue::clear ()" Removes all items from the queue, and deletes them if autoDelete() is TRUE. .PP See also remove(). -.SH "uint QPtrQueue::count () const" +.SH "uint TQPtrQueue::count () const" Returns the number of items in the queue. .PP See also isEmpty(). -.SH "type * QPtrQueue::current () const" +.SH "type * TQPtrQueue::current () const" Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty. .PP See also dequeue() and isEmpty(). -.SH "type * QPtrQueue::dequeue ()" +.SH "type * TQPtrQueue::dequeue ()" Takes the head item from the queue and returns a pointer to it. Returns 0 if the queue is empty. .PP See also enqueue() and count(). -.SH "void QPtrQueue::enqueue ( const type * d )" +.SH "void TQPtrQueue::enqueue ( const type * d )" Adds item \fId\fR to the tail of the queue. .PP See also count() and dequeue(). -.SH "type * QPtrQueue::head () const" +.SH "type * TQPtrQueue::head () const" Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty. .PP See also dequeue() and isEmpty(). -.SH "bool QPtrQueue::isEmpty () const" +.SH "bool TQPtrQueue::isEmpty () const" Returns TRUE if the queue is empty; otherwise returns FALSE. .PP See also count(), dequeue(), and head(). -.SH "QPtrQueue::operator type * () const" +.SH "TQPtrQueue::operator type * () const" Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty. .PP See also dequeue() and isEmpty(). -.SH "QPtrQueue<type> & QPtrQueue::operator= ( const QPtrQueue<type> & queue )" +.SH "TQPtrQueue<type> & TQPtrQueue::operator= ( const TQPtrQueue<type> & queue )" Assigns \fIqueue\fR to this queue and returns a reference to this queue. .PP This queue is first cleared and then each item in \fIqueue\fR is enqueued to this queue. Only the pointers are copied. .PP \fBWarning:\fR The autoDelete() flag is not modified. If it it TRUE for both \fIqueue\fR and this queue, deleting the two lists will cause \fIdouble-deletion\fR of the items. -.SH "QDataStream & QPtrQueue::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrQueue::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a queue item, \fIitem\fR, from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. .PP See also write(). -.SH "bool QPtrQueue::remove ()" +.SH "bool TQPtrQueue::remove ()" Removes the head item from the queue, and returns TRUE if there was an item, i.e. the queue wasn't empty; otherwise returns FALSE. .PP The item is deleted if autoDelete() is TRUE. .PP See also head(), isEmpty(), and dequeue(). -.SH "void QPtrQueue::setAutoDelete ( bool enable )" +.SH "void TQPtrQueue::setAutoDelete ( bool enable )" Sets the queue to auto-delete its contents if \fIenable\fR is TRUE and not to delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a queue are deleted when the queue itself is deleted. This can be quite convenient if the queue has the only pointer to the items. @@ -153,7 +153,7 @@ If auto-deleting is turned on, all the items in a queue are deleted when the que The default setting is FALSE, for safety. If you turn it on, be careful about copying the queue: you might find yourself with two queues deleting the same items. .PP See also autoDelete(). -.SH "QDataStream & QPtrQueue::write ( QDataStream & s, QPtrCollection::Item item ) const\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrQueue::write ( QDataStream & s, TQPtrCollection::Item item ) const\fC [virtual protected]\fR" Writes a queue item, \fIitem\fR, to the stream \fIs\fR and returns a reference to the stream. .PP The default implementation does nothing. @@ -161,7 +161,7 @@ The default implementation does nothing. See also read(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqptrqueue.html +.BR http://doc.trolltech.com/tqptrqueue.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/tqptrstack.3qt b/doc/man/man3/tqptrstack.3qt index e6607756a..53c9769f5 100644 --- a/doc/man/man3/tqptrstack.3qt +++ b/doc/man/man3/tqptrstack.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrStack 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrStack 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 -QPtrStack \- Template class that provides a stack +TQPtrStack \- Template class that provides a stack .SH SYNOPSIS -\fC#include <ntqptrstack.h>\fR +\fC#include <tqptrstack.h>\fR .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrStack\fR ()" +.BI "\fBTQPtrStack\fR ()" .br .ti -1c -.BI "\fBQPtrStack\fR ( const QPtrStack<type> & s )" +.BI "\fBTQPtrStack\fR ( const TQPtrStack<type> & s )" .br .ti -1c -.BI "\fB~QPtrStack\fR ()" +.BI "\fB~TQPtrStack\fR ()" .br .ti -1c -.BI "QPtrStack<type> & \fBoperator=\fR ( const QPtrStack<type> & s )" +.BI "TQPtrStack<type> & \fBoperator=\fR ( const TQPtrStack<type> & s )" .br .ti -1c .BI "bool \fBautoDelete\fR () const" @@ -62,76 +62,76 @@ QPtrStack \- Template class that provides a stack .SS "Protected Members" .in +1c .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item item ) const" .br .in -1c .SH DESCRIPTION -The QPtrStack class is a template class that provides a stack. +The TQPtrStack class is a template class that provides a stack. .PP TQValueStack is an STL-compatible alternative to this class. .PP -Define a template instance QPtrStack<X> to create a stack that operates on pointers to X, (X*). +Define a template instance TQPtrStack<X> to create a stack that operates on pointers to X, (X*). .PP A stack is a last in, first out (LIFO) structure. Items are added to the top of the stack with push() and retrieved from the top with pop(). Use top() to get a reference to the top element without changing the stack. .PP You can control the stack's deletion policy with setAutoDelete(). .PP -For compatibility with the QPtrCollection classes current() and remove() are provided; they both operate on the top(). +For compatibility with the TQPtrCollection classes current() and remove() are provided; they both operate on the top(). .PP -See also QPtrList, QPtrQueue, and Non-GUI Classes. +See also TQPtrList, TQPtrQueue, and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrStack::QPtrStack ()" +.SH "TQPtrStack::TQPtrStack ()" Creates an empty stack. -.SH "QPtrStack::QPtrStack ( const QPtrStack<type> & s )" +.SH "TQPtrStack::TQPtrStack ( const TQPtrStack<type> & s )" Creates a stack by making a shallow copy of another stack \fIs\fR. -.SH "QPtrStack::~QPtrStack ()" +.SH "TQPtrStack::~TQPtrStack ()" Destroys the stack. All items will be deleted if autoDelete() is TRUE. -.SH "bool QPtrStack::autoDelete () const" -The same as QPtrCollection::autoDelete(). +.SH "bool TQPtrStack::autoDelete () const" +The same as TQPtrCollection::autoDelete(). .PP See also setAutoDelete(). -.SH "void QPtrStack::clear ()" +.SH "void TQPtrStack::clear ()" Removes all items from the stack, deleting them if autoDelete() is TRUE. .PP See also remove(). -.SH "uint QPtrStack::count () const" +.SH "uint TQPtrStack::count () const" Returns the number of items in the stack. .PP See also isEmpty(). -.SH "type * QPtrStack::current () const" +.SH "type * TQPtrStack::current () const" Returns a pointer to the top item on the stack (most recently pushed). The stack is not changed. Returns 0 if the stack is empty. -.SH "bool QPtrStack::isEmpty () const" +.SH "bool TQPtrStack::isEmpty () const" Returns TRUE if the stack contains no elements; otherwise returns FALSE. -.SH "QPtrStack::operator type * () const" +.SH "TQPtrStack::operator type * () const" Returns a pointer to the top item on the stack (most recently pushed). The stack is not changed. Returns 0 if the stack is empty. -.SH "QPtrStack<type> & QPtrStack::operator= ( const QPtrStack<type> & s )" +.SH "TQPtrStack<type> & TQPtrStack::operator= ( const TQPtrStack<type> & s )" Sets the contents of this stack by making a shallow copy of another stack \fIs\fR. Elements currently in this stack will be deleted if autoDelete() is TRUE. -.SH "type * QPtrStack::pop ()" +.SH "type * TQPtrStack::pop ()" Removes the top item from the stack and returns it. The stack must not be empty. -.SH "void QPtrStack::push ( const type * d )" +.SH "void TQPtrStack::push ( const type * d )" Adds an element \fId\fR to the top of the stack. Last in, first out. -.SH "QDataStream & QPtrStack::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrStack::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a stack item, \fIitem\fR, from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. .PP See also write(). -.SH "bool QPtrStack::remove ()" +.SH "bool TQPtrStack::remove ()" Removes the top item from the stack and deletes it if autoDelete() is TRUE. Returns TRUE if there was an item to pop; otherwise returns FALSE. .PP See also clear(). -.SH "void QPtrStack::setAutoDelete ( bool enable )" -Defines whether this stack auto-deletes its contents. The same as QPtrCollection::setAutoDelete(). +.SH "void TQPtrStack::setAutoDelete ( bool enable )" +Defines whether this stack auto-deletes its contents. The same as TQPtrCollection::setAutoDelete(). .PP If \fIenable\fR is TRUE the stack auto-deletes its contents; if \fIenable\fR is FALSE the stack does not delete its contents. .PP See also autoDelete(). -.SH "type * QPtrStack::top () const" +.SH "type * TQPtrStack::top () const" Returns a pointer to the top item on the stack (most recently pushed). The stack is not changed. Returns 0 if the stack is empty. -.SH "QDataStream & QPtrStack::write ( QDataStream & s, QPtrCollection::Item item ) const\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrStack::write ( QDataStream & s, TQPtrCollection::Item item ) const\fC [virtual protected]\fR" Writes a stack item, \fIitem\fR, to the stream \fIs\fR and returns a reference to the stream. .PP The default implementation does nothing. @@ -139,7 +139,7 @@ The default implementation does nothing. See also read(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqptrstack.html +.BR http://doc.trolltech.com/tqptrstack.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/tqptrvector.3qt b/doc/man/man3/tqptrvector.3qt index e2aaeede6..630cb0bd4 100644 --- a/doc/man/man3/tqptrvector.3qt +++ b/doc/man/man3/tqptrvector.3qt @@ -1,5 +1,5 @@ '\" t -.TH QPtrVector 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- +.TH TQPtrVector 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,31 +7,31 @@ .ad l .nh .SH NAME -QPtrVector \- Template collection class that provides a vector (array) +TQPtrVector \- Template collection class that provides a vector (array) .SH SYNOPSIS -\fC#include <ntqptrvector.h>\fR +\fC#include <tqptrvector.h>\fR .PP -Inherits QPtrCollection. +Inherits TQPtrCollection. .PP .SS "Public Members" .in +1c .ti -1c -.BI "\fBQPtrVector\fR ()" +.BI "\fBTQPtrVector\fR ()" .br .ti -1c -.BI "\fBQPtrVector\fR ( uint size )" +.BI "\fBTQPtrVector\fR ( uint size )" .br .ti -1c -.BI "\fBQPtrVector\fR ( const QPtrVector<type> & v )" +.BI "\fBTQPtrVector\fR ( const TQPtrVector<type> & v )" .br .ti -1c -.BI "\fB~QPtrVector\fR ()" +.BI "\fB~TQPtrVector\fR ()" .br .ti -1c -.BI "QPtrVector<type> & \fBoperator=\fR ( const QPtrVector<type> & v )" +.BI "TQPtrVector<type> & \fBoperator=\fR ( const TQPtrVector<type> & v )" .br .ti -1c -.BI "bool \fBoperator==\fR ( const QPtrVector<type> & v ) const" +.BI "bool \fBoperator==\fR ( const TQPtrVector<type> & v ) const" .br .ti -1c .BI "type ** \fBdata\fR () const" @@ -103,23 +103,23 @@ Inherits QPtrCollection. .SS "Protected Members" .in +1c .ti -1c -.BI "virtual int \fBcompareItems\fR ( QPtrCollection::Item d1, QPtrCollection::Item d2 )" +.BI "virtual int \fBcompareItems\fR ( TQPtrCollection::Item d1, TQPtrCollection::Item d2 )" .br .ti -1c -.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, QPtrCollection::Item & item )" +.BI "virtual QDataStream & \fBread\fR ( QDataStream & s, TQPtrCollection::Item & item )" .br .ti -1c -.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, QPtrCollection::Item item ) const" +.BI "virtual QDataStream & \fBwrite\fR ( QDataStream & s, TQPtrCollection::Item item ) const" .br .in -1c .SH DESCRIPTION -The QPtrVector class is a template collection class that provides a vector (array). +The TQPtrVector class is a template collection class that provides a vector (array). .PP TQValueVector is an STL-compatible alternative to this class. .PP -QPtrVector is implemented as a template class. Defines a template instance QPtrVector<X> to create a vector that contains pointers to X (X*). +TQPtrVector is implemented as a template class. Defines a template instance TQPtrVector<X> to create a vector that contains pointers to X (X*). .PP -A vector is the same as an array. The main difference between QPtrVector and QMemArray is that QPtrVector stores pointers to the elements, whereas QMemArray stores the elements themselves (i.e. QMemArray is value-based and QPtrVector is pointer-based). +A vector is the same as an array. The main difference between TQPtrVector and QMemArray is that TQPtrVector stores pointers to the elements, whereas QMemArray stores the elements themselves (i.e. QMemArray is value-based and TQPtrVector is pointer-based). .PP Items are added to the vector using insert() or fill(). Items are removed with remove(). You can get a pointer to an item at a particular index position using at(). .PP @@ -129,29 +129,29 @@ Functions that compare items (find() and sort() for example) will do so using th .PP See also QMemArray and Non-GUI Classes. .SH MEMBER FUNCTION DOCUMENTATION -.SH "QPtrVector::QPtrVector ()" +.SH "TQPtrVector::TQPtrVector ()" Constructs a null vector. .PP See also isNull(). -.SH "QPtrVector::QPtrVector ( uint size )" +.SH "TQPtrVector::TQPtrVector ( uint size )" Constructs an vector with room for \fIsize\fR items. Makes a null vector if \fIsize\fR == 0. .PP All \fIsize\fR positions in the vector are initialized to 0. .PP See also size(), resize(), and isNull(). -.SH "QPtrVector::QPtrVector ( const QPtrVector<type> & v )" +.SH "TQPtrVector::TQPtrVector ( const TQPtrVector<type> & v )" Constructs a copy of \fIv\fR. Only the pointers are copied (i.e. shallow copy). -.SH "QPtrVector::~QPtrVector ()" +.SH "TQPtrVector::~TQPtrVector ()" Removes all items from the vector, and destroys the vector itself. .PP See also clear(). -.SH "type * QPtrVector::at ( uint i ) const" +.SH "type * TQPtrVector::at ( uint i ) const" Returns the item at position \fIi\fR, or 0 if there is no item at that position. \fIi\fR must be less than size(). -.SH "bool QPtrCollection::autoDelete () const" +.SH "bool TQPtrCollection::autoDelete () const" Returns the setting of the auto-delete option. The default is FALSE. .PP See also setAutoDelete(). -.SH "int QPtrVector::bsearch ( const type * d ) const" +.SH "int TQPtrVector::bsearch ( const type * d ) const" In a sorted array, finds the first occurrence of \fId\fR using a binary search. For a sorted array, this is generally much faster than find(), which performs a linear search. .PP Returns the position of \fId\fR, or -1 if \fId\fR could not be found. \fId\fR must not be 0. @@ -159,15 +159,15 @@ Returns the position of \fId\fR, or -1 if \fId\fR could not be found. \fId\fR mu Compares items using the virtual function compareItems(). .PP See also sort() and find(). -.SH "void QPtrVector::clear ()\fC [virtual]\fR" +.SH "void TQPtrVector::clear ()\fC [virtual]\fR" Removes all items from the vector, and destroys the vector itself. .PP The vector becomes a null vector. .PP See also isNull(). .PP -Reimplemented from QPtrCollection. -.SH "int QPtrVector::compareItems ( QPtrCollection::Item d1, QPtrCollection::Item d2 )\fC [virtual protected]\fR" +Reimplemented from TQPtrCollection. +.SH "int TQPtrVector::compareItems ( TQPtrCollection::Item d1, TQPtrCollection::Item d2 )\fC [virtual protected]\fR" This virtual function compares two list items. .PP Returns: @@ -187,31 +187,31 @@ This function returns \fIint\fR rather than \fIbool\fR so that reimplementations The sort() and bsearch() functions require compareItems() to be implemented as described here. .PP This function should not modify the vector because some const functions call compareItems(). -.SH "uint QPtrVector::contains ( const type * d ) const" +.SH "uint TQPtrVector::contains ( const type * d ) const" Returns the number of occurrences of item \fId\fR in the vector. .PP Compares items using the virtual function compareItems(). .PP See also containsRef(). -.SH "uint QPtrVector::containsRef ( const type * d ) const" +.SH "uint TQPtrVector::containsRef ( const type * d ) const" Returns the number of occurrences of the item pointer \fId\fR in the vector. .PP This function does \fInot\fR use compareItems() to compare items. .PP See also findRef(). -.SH "uint QPtrVector::count () const\fC [virtual]\fR" +.SH "uint TQPtrVector::count () const\fC [virtual]\fR" Returns the number of items in the vector. The vector is empty if count() == 0. .PP See also isEmpty(), size(), and isNull(). .PP -Reimplemented from QPtrCollection. -.SH "type ** QPtrVector::data () const" +Reimplemented from TQPtrCollection. +.SH "type ** TQPtrVector::data () const" Returns a pointer to the actual vector data, which is an array of type*. .PP The vector is a null vector if data() == 0 (null pointer). .PP See also isNull(). -.SH "bool QPtrVector::fill ( const type * d, int size = -1 )" +.SH "bool TQPtrVector::fill ( const type * d, int size = -1 )" Inserts item \fId\fR in all positions in the vector. Any existing items are removed. If \fId\fR is 0, the vector becomes empty. .PP If \fIsize\fR >= 0, the vector is first resized to \fIsize\fR. By default, \fIsize\fR is -1. @@ -219,7 +219,7 @@ If \fIsize\fR >= 0, the vector is first resized to \fIsize\fR. By default, \fIsi Returns TRUE if successful, i.e. \fIsize\fR is the same as the current size, or \fIsize\fR is larger and the memory has successfully been allocated; otherwise returns FALSE. .PP See also resize(), insert(), and isEmpty(). -.SH "int QPtrVector::find ( const type * d, uint i = 0 ) const" +.SH "int TQPtrVector::find ( const type * d, uint i = 0 ) const" Finds the first occurrence of item \fId\fR in the vector using a linear search. The search starts at position \fIi\fR, which must be less than size(). \fIi\fR is by default 0; i.e. the search starts at the start of the vector. .PP Returns the position of \fId\fR, or -1 if \fId\fR could not be found. @@ -229,7 +229,7 @@ Compares items using the virtual function compareItems(). Use the much faster bsearch() to search a sorted vector. .PP See also findRef() and bsearch(). -.SH "int QPtrVector::findRef ( const type * d, uint i = 0 ) const" +.SH "int TQPtrVector::findRef ( const type * d, uint i = 0 ) const" Finds the first occurrence of the item pointer \fId\fR in the vector using a linear search. The search starts at position \fIi\fR, which must be less than size(). \fIi\fR is by default 0; i.e. the search starts at the start of the vector. .PP Returns the position of \fId\fR, or -1 if \fId\fR could not be found. @@ -239,47 +239,47 @@ This function does \fInot\fR use compareItems() to compare items. Use the much faster bsearch() to search a sorted vector. .PP See also find() and bsearch(). -.SH "bool QPtrVector::insert ( uint i, const type * d )" +.SH "bool TQPtrVector::insert ( uint i, const type * d )" Sets position \fIi\fR in the vector to contain the item \fId\fR. \fIi\fR must be less than size(). Any previous element in position \fIi\fR is removed. .PP See also at(). -.SH "bool QPtrVector::isEmpty () const" +.SH "bool TQPtrVector::isEmpty () const" Returns TRUE if the vector is empty; otherwise returns FALSE. .PP See also count(). -.SH "bool QPtrVector::isNull () const" +.SH "bool TQPtrVector::isNull () const" Returns TRUE if the vector is null; otherwise returns FALSE. .PP A null vector has size() == 0 and data() == 0. .PP See also size(). -.SH "QPtrVector<type> & QPtrVector::operator= ( const QPtrVector<type> & v )" +.SH "TQPtrVector<type> & TQPtrVector::operator= ( const TQPtrVector<type> & v )" Assigns \fIv\fR to this vector and returns a reference to this vector. .PP This vector is first cleared and then all the items from \fIv\fR are copied into the vector. Only the pointers are copied (i.e. shallow copy). .PP See also clear(). -.SH "bool QPtrVector::operator== ( const QPtrVector<type> & v ) const" +.SH "bool TQPtrVector::operator== ( const TQPtrVector<type> & v ) const" Returns TRUE if this vector and \fIv\fR are equal; otherwise returns FALSE. -.SH "type * QPtrVector::operator[] ( int i ) const" +.SH "type * TQPtrVector::operator[] ( int i ) const" Returns the item at position \fIi\fR, or 0 if there is no item at that position. \fIi\fR must be less than size(). .PP Equivalent to at( \fIi\fR ). .PP See also at(). -.SH "QDataStream & QPtrVector::read ( QDataStream & s, QPtrCollection::Item & item )\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrVector::read ( QDataStream & s, TQPtrCollection::Item & item )\fC [virtual protected]\fR" Reads a vector item, \fIitem\fR, from the stream \fIs\fR and returns a reference to the stream. .PP The default implementation sets \fIitem\fR to 0. .PP See also write(). -.SH "bool QPtrVector::remove ( uint i )" +.SH "bool TQPtrVector::remove ( uint i )" Removes the item at position \fIi\fR in the vector, if there is one. \fIi\fR must be less than size(). .PP Returns TRUE if \fIi\fR is within range; otherwise returns FALSE. .PP See also take() and at(). -.SH "bool QPtrVector::resize ( uint size )" +.SH "bool TQPtrVector::resize ( uint size )" Resizes (expands or shrinks) the vector to \fIsize\fR elements. The vector becomes a null vector if \fIsize\fR == 0. .PP Any items at position \fIsize\fR or beyond in the vector are removed. New positions are initialized to 0. @@ -287,7 +287,7 @@ Any items at position \fIsize\fR or beyond in the vector are removed. New positi Returns TRUE if successful, i.e. if the memory was successfully allocated; otherwise returns FALSE. .PP See also size() and isNull(). -.SH "void QPtrCollection::setAutoDelete ( bool enable )" +.SH "void TQPtrCollection::setAutoDelete ( bool enable )" Sets the collection to auto-delete its contents if \fIenable\fR is TRUE and to never delete them if \fIenable\fR is FALSE. .PP If auto-deleting is turned on, all the items in a collection are deleted when the collection itself is deleted. This is convenient if the collection has the only pointer to the items. @@ -300,25 +300,25 @@ See also autoDelete(). .PP Examples: .)l grapher/grapher.cpp, scribble/scribble.cpp, and table/bigtable/main.cpp. -.SH "uint QPtrVector::size () const" +.SH "uint TQPtrVector::size () const" Returns the size of the vector, i.e. the number of vector positions. This is also the maximum number of items the vector can hold. .PP The vector is a null vector if size() == 0. .PP See also isNull(), resize(), and count(). -.SH "void QPtrVector::sort ()" +.SH "void TQPtrVector::sort ()" Sorts the items in ascending order. Any empty positions will be put last. .PP Compares items using the virtual function compareItems(). .PP See also bsearch(). -.SH "type * QPtrVector::take ( uint i )" +.SH "type * TQPtrVector::take ( uint i )" Returns the item at position \fIi\fR in the vector, and removes that item from the vector. \fIi\fR must be less than size(). If there is no item at position \fIi\fR, 0 is returned. .PP Unlike remove(), this function does \fInot\fR call deleteItem() for the removed item. .PP See also remove() and at(). -.SH "QDataStream & QPtrVector::write ( QDataStream & s, QPtrCollection::Item item ) const\fC [virtual protected]\fR" +.SH "QDataStream & TQPtrVector::write ( QDataStream & s, TQPtrCollection::Item item ) const\fC [virtual protected]\fR" Writes a vector item, \fIitem\fR, to the stream \fIs\fR and returns a reference to the stream. .PP The default implementation does nothing. @@ -326,7 +326,7 @@ The default implementation does nothing. See also read(). .SH "SEE ALSO" -.BR http://doc.trolltech.com/ntqptrvector.html +.BR http://doc.trolltech.com/tqptrvector.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/tqstrilist.3qt b/doc/man/man3/tqstrilist.3qt index 50134bd25..923f99957 100644 --- a/doc/man/man3/tqstrilist.3qt +++ b/doc/man/man3/tqstrilist.3qt @@ -25,7 +25,7 @@ Inherits QStrList. .SH DESCRIPTION The QStrIList class provides a doubly-linked list of char* with case-insensitive comparison. .PP -This class is a QPtrList<char> instance (a list of char*). +This class is a TQPtrList<char> instance (a list of char*). .PP QStrIList is identical to QStrList except that the virtual compareItems() function is reimplemented to compare strings case-insensitively. The inSort() function inserts strings in a sorted order. In general it is fastest to insert the strings as they come and sort() at the end; inSort() is useful when you just have to add a few extra strings to an already sorted list. .PP diff --git a/doc/man/man3/tqstrlist.3qt b/doc/man/man3/tqstrlist.3qt index 7e8dbb816..2a7928964 100644 --- a/doc/man/man3/tqstrlist.3qt +++ b/doc/man/man3/tqstrlist.3qt @@ -11,7 +11,7 @@ QStrList \- Doubly-linked list of char* .SH SYNOPSIS \fC#include <ntqstrlist.h>\fR .PP -Inherits QPtrList<char>. +Inherits TQPtrList<char>. .PP Inherited by QStrIList. .PP @@ -35,7 +35,7 @@ The QStrList class provides a doubly-linked list of char*. .PP If you want a string list of QStrings use QStringList. .PP -This class is a QPtrList<char> instance (a list of char*). +This class is a TQPtrList<char> instance (a list of char*). .PP QStrList can make deep or shallow copies of the strings that are inserted. .PP diff --git a/doc/man/man3/tqstrlistiterator.3qt b/doc/man/man3/tqstrlistiterator.3qt index 8727bd1ba..68724fd5d 100644 --- a/doc/man/man3/tqstrlistiterator.3qt +++ b/doc/man/man3/tqstrlistiterator.3qt @@ -11,12 +11,12 @@ QStrListIterator \- Iterator for the QStrList and QStrIList classes .SH SYNOPSIS \fC#include <ntqstrlist.h>\fR .PP -Inherits QPtrListIterator<char>. +Inherits TQPtrListIterator<char>. .PP .SH DESCRIPTION The QStrListIterator class is an iterator for the QStrList and QStrIList classes. .PP -This class is a QPtrListIterator<char> instance. It can traverse the strings in the QStrList and QStrIList classes. +This class is a TQPtrListIterator<char> instance. It can traverse the strings in the QStrList and QStrIList classes. .PP See also Non-GUI Classes. diff --git a/doc/man/man3/tqtabbar.3qt b/doc/man/man3/tqtabbar.3qt index 35b01c984..288976e96 100644 --- a/doc/man/man3/tqtabbar.3qt +++ b/doc/man/man3/tqtabbar.3qt @@ -124,7 +124,7 @@ Inherits TQWidget. .BI "virtual void \fBpaintEvent\fR ( QPaintEvent * e )" .br .ti -1c -.BI "QPtrList<QTab> * \fBtabList\fR ()" +.BI "TQPtrList<QTab> * \fBtabList\fR ()" .br .in -1c .SH DESCRIPTION @@ -256,7 +256,7 @@ See also count. Returns the tab at position \fIindex\fR. .PP See also indexOf(). -.SH "QPtrList<QTab> * QTabBar::tabList ()\fC [protected]\fR" +.SH "TQPtrList<QTab> * QTabBar::tabList ()\fC [protected]\fR" The list of QTab objects in the tab bar. .PP This list is unlikely to be in the order that the QTab elements appear visually. One way of iterating over the tabs is like this: diff --git a/doc/man/man3/tqurloperator.3qt b/doc/man/man3/tqurloperator.3qt index 6e2f17b8a..23d5e38c3 100644 --- a/doc/man/man3/tqurloperator.3qt +++ b/doc/man/man3/tqurloperator.3qt @@ -49,7 +49,7 @@ Inherits TQObject and QUrl. .BI "virtual const QNetworkOperation * \fBput\fR ( const QByteArray & data, const TQString & location = TQString::null )" .br .ti -1c -.BI "virtual QPtrList<QNetworkOperation> \fBcopy\fR ( const TQString & from, const TQString & to, bool move = FALSE, bool toPath = TRUE )" +.BI "virtual TQPtrList<QNetworkOperation> \fBcopy\fR ( const TQString & from, const TQString & to, bool move = FALSE, bool toPath = TRUE )" .br .ti -1c .BI "virtual void \fBcopy\fR ( const QStringList & files, const TQString & dest, bool move = FALSE )" @@ -97,7 +97,7 @@ Inherits TQObject and QUrl. .BI "void \fBdataTransferProgress\fR ( int bytesDone, int bytesTotal, QNetworkOperation * op )" .br .ti -1c -.BI "void \fBstartedNextCopy\fR ( const QPtrList<QNetworkOperation> & lst )" +.BI "void \fBstartedNextCopy\fR ( const TQPtrList<QNetworkOperation> & lst )" .br .ti -1c .BI "void \fBconnectionStateChanged\fR ( int state, const TQString & data )" @@ -179,7 +179,7 @@ Clears the cache of children. This signal is emitted whenever the URL operator's connection state changes. \fIstate\fR describes the new state, which is a QNetworkProtocol::ConnectionState value. .PP \fIdata\fR is a string that describes the change of the connection. This can be used to display a message to the user. -.SH "QPtrList<QNetworkOperation> QUrlOperator::copy ( const TQString & from, const TQString & to, bool move = FALSE, bool toPath = TRUE )\fC [virtual]\fR" +.SH "TQPtrList<QNetworkOperation> QUrlOperator::copy ( const TQString & from, const TQString & to, bool move = FALSE, bool toPath = TRUE )\fC [virtual]\fR" Copies the file \fIfrom\fR to \fIto\fR. If \fImove\fR is TRUE, the file is moved (copied and removed). \fIfrom\fR must point to a file and \fIto\fR must point to a directory (into which \fIfrom\fR is copied) unless \fItoPath\fR is set to FALSE. If \fItoPath\fR is set to FALSE then the \fIto\fR variable is assumed to be the absolute file path (destination file path + file name). The copying is done using the get() and put() operations. If you want to be notified about the progress of the operation, connect to the dataTransferProgress() signal. Bear in mind that the get() and put() operations emit this signal through the QUrlOperator. The number of transferred bytes and the total bytes that you receive as arguments in this signal do not relate to the the whole copy operation; they relate first to the get() and then to the put() operation. Always check what type of operation the signal comes from; this is given in the signal's last argument. .PP At the end, finished() (with success or failure) is emitted, so check the state of the network operation object to see whether or not the operation was successful. @@ -341,7 +341,7 @@ See also QDir::setNameFilter(). Some operations (such as listChildren()) emit this signal when they start processing the operation. \fIop\fR is a pointer to the operation object which contains all the information about the operation, including the state. .PP See also QNetworkOperation and QNetworkProtocol. -.SH "void QUrlOperator::startedNextCopy ( const QPtrList<QNetworkOperation> & lst )\fC [signal]\fR" +.SH "void QUrlOperator::startedNextCopy ( const TQPtrList<QNetworkOperation> & lst )\fC [signal]\fR" This signal is emitted if copy() starts a new copy operation. \fIlst\fR contains all QNetworkOperations related to this copy operation. .PP See also copy(). diff --git a/doc/man/man3/tqvaluelist.3qt b/doc/man/man3/tqvaluelist.3qt index a01a41ce6..4b320eac9 100644 --- a/doc/man/man3/tqvaluelist.3qt +++ b/doc/man/man3/tqvaluelist.3qt @@ -230,9 +230,9 @@ The TQValueList class is a value-based template class that provides lists. .PP TQValueList is a TQt implementation of an STL-like list container. It can be used in your application if the standard \fClist\fR is not available for your target platform(s). TQValueList is part of the TQt Template Library. .PP -TQValueList<T> defines a template instance to create a list of values that all have the class T. Note that TQValueList does not store pointers to the members of the list; it holds a copy of every member. This is why these kinds of classes are called "value based"; QPtrList and QDict are "pointer based". +TQValueList<T> defines a template instance to create a list of values that all have the class T. Note that TQValueList does not store pointers to the members of the list; it holds a copy of every member. This is why these kinds of classes are called "value based"; TQPtrList and QDict are "pointer based". .PP -TQValueList contains and manages a collection of objects of type T and provides iterators that allow the contained objects to be addressed. TQValueList owns the contained items. For more relaxed ownership semantics, see QPtrCollection and friends which are pointer-based containers. +TQValueList contains and manages a collection of objects of type T and provides iterators that allow the contained objects to be addressed. TQValueList owns the contained items. For more relaxed ownership semantics, see TQPtrCollection and friends which are pointer-based containers. .PP Some classes cannot be used within a TQValueList, for example, all classes derived from TQObject and thus all classes that implement widgets. Only values can be used in a TQValueList. To qualify as a value the class must provide: .TP diff --git a/doc/man/man3/tqvaluestack.3qt b/doc/man/man3/tqvaluestack.3qt index ba24f2b80..19c7ba41a 100644 --- a/doc/man/man3/tqvaluestack.3qt +++ b/doc/man/man3/tqvaluestack.3qt @@ -41,7 +41,7 @@ The TQValueStack class is a value-based template class that provides a stack. .PP Define a template instance TQValueStack<X> to create a stack of values that all have the class X. TQValueStack is part of the TQt Template Library. .PP -Note that TQValueStack does not store pointers to the members of the stack; it holds a copy of every member. That is why these kinds of classes are called "value based"; QPtrStack, QPtrList, QDict, etc., are "pointer based". +Note that TQValueStack does not store pointers to the members of the stack; it holds a copy of every member. That is why these kinds of classes are called "value based"; TQPtrStack, TQPtrList, QDict, etc., are "pointer based". .PP A stack is a last in, first out (LIFO) structure. Items are added to the top of the stack with push() and retrieved from the top with pop(). The top() function provides access to the topmost item without removing it. .PP @@ -72,7 +72,7 @@ Example: .br .fi .PP -TQValueStack is a specialized TQValueList provided for convenience. All of TQValueList's functionality also applies to QPtrStack, for example the facility to iterate over all elements using TQValueStack<T>::Iterator. See TQValueListIterator for further details. +TQValueStack is a specialized TQValueList provided for convenience. All of TQValueList's functionality also applies to TQPtrStack, for example the facility to iterate over all elements using TQValueStack<T>::Iterator. See TQValueListIterator for further details. .PP Some classes cannot be used within a TQValueStack, for example everything derived from TQObject and thus all classes that implement widgets. Only values can be used in a TQValueStack. To qualify as a value, the class must provide .TP diff --git a/doc/man/man3/tqvaluevector.3qt b/doc/man/man3/tqvaluevector.3qt index 2e8dba809..fa8ec1dc3 100644 --- a/doc/man/man3/tqvaluevector.3qt +++ b/doc/man/man3/tqvaluevector.3qt @@ -186,9 +186,9 @@ The TQValueVector class is a value-based template class that provides a dynamic .PP TQValueVector is a TQt implementation of an STL-like vector container. It can be used in your application if the standard \fCvector\fR is not available for your target platforms. TQValueVector is part of the TQt Template Library. .PP -TQValueVector<T> defines a template instance to create a vector of values that all have the class T. TQValueVector does not store pointers to the members of the vector; it holds a copy of every member. TQValueVector is said to be value based; in contrast, QPtrList and QDict are pointer based. +TQValueVector<T> defines a template instance to create a vector of values that all have the class T. TQValueVector does not store pointers to the members of the vector; it holds a copy of every member. TQValueVector is said to be value based; in contrast, TQPtrList and QDict are pointer based. .PP -TQValueVector contains and manages a collection of objects of type T and provides random access iterators that allow the contained objects to be addressed. TQValueVector owns the contained elements. For more relaxed ownership semantics, see QPtrCollection and friends, which are pointer-based containers. +TQValueVector contains and manages a collection of objects of type T and provides random access iterators that allow the contained objects to be addressed. TQValueVector owns the contained elements. For more relaxed ownership semantics, see TQPtrCollection and friends, which are pointer-based containers. .PP TQValueVector provides good performance if you append or remove elements from the end of the vector. If you insert or remove elements from anywhere but the end, performance is very bad. The reason for this is that elements must to be copied into new positions. .PP diff --git a/doc/man/man3/tqwindowsmime.3qt b/doc/man/man3/tqwindowsmime.3qt index 68ac7f763..b0ef199f2 100644 --- a/doc/man/man3/tqwindowsmime.3qt +++ b/doc/man/man3/tqwindowsmime.3qt @@ -50,7 +50,7 @@ QWindowsMime \- Maps open-standard MIME to Window Clipboard formats .BI "void \fBinitialize\fR ()" .br .ti -1c -.BI "QPtrList<QWindowsMime> \fBall\fR ()" +.BI "TQPtrList<QWindowsMime> \fBall\fR ()" .br .ti -1c .BI "QWindowsMime * \fBconvertor\fR ( const char * mime, int cf )" @@ -86,7 +86,7 @@ See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous C Constructs a new conversion object, adding it to the globally accessed list of available convertors. .SH "QWindowsMime::~QWindowsMime ()\fC [virtual]\fR" Destroys a conversion object, removing it from the global list of available convertors. -.SH "QPtrList<QWindowsMime> QWindowsMime::all ()\fC [static]\fR" +.SH "TQPtrList<QWindowsMime> QWindowsMime::all ()\fC [static]\fR" Returns a list of all currently defined QWindowsMime objects. .SH "bool QWindowsMime::canConvert ( const char * mime, int cf )\fC [pure virtual]\fR" Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIcf\fR; otherwise returns FALSE. diff --git a/doc/man/man3/tqworkspace.3qt b/doc/man/man3/tqworkspace.3qt index 89de0dda2..49d152636 100644 --- a/doc/man/man3/tqworkspace.3qt +++ b/doc/man/man3/tqworkspace.3qt @@ -152,9 +152,9 @@ See also activeWindow() and windowList(). .SH "TQWidgetList QWorkspace::windowList ( WindowOrder order ) const" Returns a list of all windows. If \fIorder\fR is CreationOrder (the default) the windows are listed in the order in which they had been inserted into the workspace. If \fIorder\fR is StackingOrder the windows are listed in their stacking order, with the topmost window being the last window in the list. .PP -TQWidgetList is the same as QPtrList<TQWidget>. +TQWidgetList is the same as TQPtrList<TQWidget>. .PP -See also QPtrList. +See also TQPtrList. .PP Example: mdi/application.cpp. .SH "TQWidgetList QWorkspace::windowList () const" diff --git a/doc/man/man3/tqwsserver.3qt b/doc/man/man3/tqwsserver.3qt index 161a40ebc..c9c625af9 100644 --- a/doc/man/man3/tqwsserver.3qt +++ b/doc/man/man3/tqwsserver.3qt @@ -41,7 +41,7 @@ QWSServer \- Server-specific functionality in Qt/Embedded .BI "QWSWindow * \fBwindowAt\fR ( const QPoint & pos )" .br .ti -1c -.BI "const QPtrList<QWSWindow> & \fBclientWindows\fR ()" +.BI "const TQPtrList<QWSWindow> & \fBclientWindows\fR ()" .br .ti -1c .BI "void \fBopenMouse\fR ()" @@ -206,7 +206,7 @@ Construct a QWSServer object. The \fIflags\fR are used for keyboard and mouse setting. The server's parent is \fIparent\fR and it is called \fIname\fR. .SH "QWSServer::~QWSServer ()" Destruct QWSServer -.SH "const QPtrList<QWSWindow> & QWSServer::clientWindows ()" +.SH "const TQPtrList<QWSWindow> & QWSServer::clientWindows ()" Returns the list of top-level windows. This list will change as applications add and remove wigdets so it should not be stored for future use. The windows are sorted in stacking order from top-most to bottom-most. .SH "void QWSServer::closeKeyboard ()" Closes keyboard device(s). diff --git a/doc/porting3.doc b/doc/porting3.doc index 3be95f6df..829a3fde7 100644 --- a/doc/porting3.doc +++ b/doc/porting3.doc @@ -258,7 +258,7 @@ new code. \i TQCanvasItem::enabled() const \i TQCanvasItem::selected() const \i TQCanvasItem::visible() const -\i TQCanvasPixmapArray::TQCanvasPixmapArray( QPtrList\<QPixmap\> list, QPtrList\<QPoint\> hotspots ) +\i TQCanvasPixmapArray::TQCanvasPixmapArray( TQPtrList\<QPixmap\> list, TQPtrList\<QPoint\> hotspots ) \i TQCanvasPixmapArray::operator!() \i QColorGroup::QColorGroup( const TQColor \& foreground, const TQColor \& background, const TQColor \& light, const TQColor \& dark, const TQColor \& mid, const TQColor \& text, const TQColor \& base ) \i QComboBox::autoResize() const @@ -375,12 +375,12 @@ names are no longer avaialable. \table \header \i Old Name \i New Name \i New Header File \row \i QArray \i \l QMemArray \i \c <ntqmemarray.h> -\row \i QCollection \i \l QPtrCollection \i \c <ntqptrcollection.h> -\row \i QList \i \l QPtrList \i \c <ntqptrlist.h> -\row \i QListIterator \i \l QPtrListIterator \i \c <ntqptrlist.h> -\row \i QQueue \i \l QPtrQueue \i \c <ntqptrqueue.h> -\row \i QStack \i \l QPtrStack \i \c <ntqptrstack.h> -\row \i QVector \i \l QPtrVector \i \c <ntqptrvector.h> +\row \i QCollection \i \l TQPtrCollection \i \c <tqptrcollection.h> +\row \i QList \i \l TQPtrList \i \c <tqptrlist.h> +\row \i QListIterator \i \l TQPtrListIterator \i \c <tqptrlist.h> +\row \i QQueue \i \l TQPtrQueue \i \c <tqptrqueue.h> +\row \i QStack \i \l TQPtrStack \i \c <tqptrstack.h> +\row \i QVector \i \l TQPtrVector \i \c <tqptrvector.h> \endtable \section1 QButtonGroup @@ -642,7 +642,7 @@ modal dialog instead. \section1 QSortedList The QSortedList class is now obsolete. Consider using a QDict, a TQMap -or a plain QPtrList instead. +or a plain TQPtrList instead. \section1 QTableView diff --git a/doc/qasciicache.doc b/doc/qasciicache.doc index 576b82af2..12b86ad70 100644 --- a/doc/qasciicache.doc +++ b/doc/qasciicache.doc @@ -69,7 +69,7 @@ recently used item. There are also methods to remove() or take() an object from the - cache. Calling \link QPtrCollection::setAutoDelete() + cache. Calling \link TQPtrCollection::setAutoDelete() setAutoDelete(TRUE)\endlink tells the cache to delete items that are removed. The default is to not delete items when then are removed (i.e., remove() and take() are equivalent). @@ -78,13 +78,13 @@ not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual - function QPtrCollection::newItem() for the item to be inserted. + function TQPtrCollection::newItem() for the item to be inserted. Inherit a cache and reimplement newItem() if you want deep copies. When removing a cache item the virtual function - QPtrCollection::deleteItem() is called. Its default implementation + TQPtrCollection::deleteItem() is called. Its default implementation in QAsciiCache is to delete the item if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. There is a QAsciiCacheIterator which may be used to traverse the items in the cache in arbitrary order. @@ -222,7 +222,7 @@ present in the cache; otherwise returns FALSE. The item is deleted if auto-deletion has been enabled, i.e., if - you have called \link QPtrCollection::setAutoDelete() + you have called \link TQPtrCollection::setAutoDelete() setAutoDelete(TRUE)\endlink. If there are two or more items with equal keys, the one that was @@ -254,7 +254,7 @@ \fn void QAsciiCache::clear() Removes all items from the cache, and deletes them if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink has been + TQPtrCollection::setAutoDelete() auto-deletion\endlink has been enabled. All cache iterators that operate on this cache are reset. diff --git a/doc/qasciidict.doc b/doc/qasciidict.doc index 198fbf134..2e7f5b94b 100644 --- a/doc/qasciidict.doc +++ b/doc/qasciidict.doc @@ -87,12 +87,12 @@ In this example we use a dictionary to keep track of the line edits we're using. We insert each line edit into the dictionary with a unique name and then access the line edits via the - dictionary. See QPtrDict, QIntDict and QDict. + dictionary. See TQPtrDict, QIntDict and QDict. See QDict for full details, including the choice of dictionary size, and how deletions are handled. - \sa QAsciiDictIterator, QDict, QIntDict, QPtrDict, + \sa QAsciiDictIterator, QDict, QIntDict, TQPtrDict, \link collection.html Collection Classes\endlink */ @@ -230,7 +230,7 @@ recently inserted item will be removed. The removed item is deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary traversal order. @@ -242,7 +242,7 @@ \fn type *QAsciiDict::take( const char *key ) Takes the item associated with \a key out of the dictionary - without deleting it (even if \link QPtrCollection::setAutoDelete() + without deleting it (even if \link TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled). If there are two or more items with equal keys, then the most @@ -263,7 +263,7 @@ Removes all items from the dictionary. The removed items are deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that operate on dictionary are reset. @@ -313,7 +313,7 @@ /*! \fn QDataStream& QAsciiDict::read( QDataStream &s, - QPtrCollection::Item &item ) + TQPtrCollection::Item &item ) Reads a dictionary item from the stream \a s and returns a reference to the stream. @@ -325,7 +325,7 @@ /*! \fn QDataStream& QAsciiDict::write( QDataStream &s, - QPtrCollection::Item ) const + TQPtrCollection::Item ) const Writes a dictionary item to the stream \a s and returns a reference to the stream. diff --git a/doc/qcache.doc b/doc/qcache.doc index 14bc9c926..edf60fdb2 100644 --- a/doc/qcache.doc +++ b/doc/qcache.doc @@ -74,11 +74,11 @@ not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual - function QPtrCollection::newItem() for the item to be inserted. + function TQPtrCollection::newItem() for the item to be inserted. Inherit a cache and reimplement newItem() if you want deep copies. When removing a cache item, the virtual function - QPtrCollection::deleteItem() is called. The default + TQPtrCollection::deleteItem() is called. The default implementation deletes the item if auto-deletion is enabled, and does nothing otherwise. diff --git a/doc/qdict.doc b/doc/qdict.doc index c28967d8f..bb80e3301 100644 --- a/doc/qdict.doc +++ b/doc/qdict.doc @@ -102,12 +102,12 @@ copied, not the item itself, i.e. a shallow copy is made. It is possible to make the dictionary copy all of the item's data (a deep copy) when an item is inserted. insert() calls the virtual - function QPtrCollection::newItem() for the item to be inserted. + function TQPtrCollection::newItem() for the item to be inserted. Inherit a dictionary and reimplement newItem() if you want deep copies. When removing a dictionary item, the virtual function - QPtrCollection::deleteItem() is called. QDict's default + TQPtrCollection::deleteItem() is called. QDict's default implementation is to delete the item if auto-deletion is enabled. Example #1: @@ -181,7 +181,7 @@ the accelerator and add it to the dictionary. Finally we create a QAction for each style. - \sa QDictIterator, QAsciiDict, QIntDict, QPtrDict + \sa QDictIterator, QAsciiDict, QIntDict, TQPtrDict */ @@ -311,7 +311,7 @@ that was inserted will be removed. The removed item is deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary's traversal order. @@ -323,7 +323,7 @@ \fn type *QDict::take( const TQString &key ) Takes the item with \a key out of the dictionary without deleting - it (even if \link QPtrCollection::setAutoDelete() + it (even if \link TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled). If there are two or more items with equal keys, then the last item @@ -344,7 +344,7 @@ Removes all items from the dictionary. The removed items are deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that operate on the dictionary are reset. @@ -387,7 +387,7 @@ */ /*! - \fn QDataStream& QDict::read( QDataStream &s, QPtrCollection::Item &item ) + \fn QDataStream& QDict::read( QDataStream &s, TQPtrCollection::Item &item ) Reads a dictionary item from the stream \a s and returns a reference to the stream. @@ -398,7 +398,7 @@ */ /*! - \fn QDataStream& QDict::write( QDataStream &s, QPtrCollection::Item ) const + \fn QDataStream& QDict::write( QDataStream &s, TQPtrCollection::Item ) const Writes a dictionary item to the stream \a s and returns a reference to the stream. diff --git a/doc/qintcache.doc b/doc/qintcache.doc index 7d444ed86..b1fa8f0d9 100644 --- a/doc/qintcache.doc +++ b/doc/qintcache.doc @@ -73,7 +73,7 @@ not the item itself. This is called a shallow copy. It is possible to make the cache copy all of the item's data (known as a deep copy) when an item is inserted. insert() calls the virtual - function QPtrCollection::newItem() for the item to be inserted. + function TQPtrCollection::newItem() for the item to be inserted. Inherit a dictionary and reimplement newItem() if you want deep copies. diff --git a/doc/qintdict.doc b/doc/qintdict.doc index be269316f..22a772de1 100644 --- a/doc/qintdict.doc +++ b/doc/qintdict.doc @@ -87,7 +87,7 @@ See QDict for full details, including the choice of dictionary size, and how deletions are handled. - \sa QIntDictIterator, QDict, QAsciiDict, QPtrDict, + \sa QIntDictIterator, QDict, QAsciiDict, TQPtrDict, \link collection.html Collection Classes\endlink */ @@ -214,7 +214,7 @@ recently inserted item will be removed. The removed item is deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary's traversal @@ -227,7 +227,7 @@ \fn type *QIntDict::take( long key ) Takes the item associated with \a key out of the dictionary - without deleting it (even if \link QPtrCollection::setAutoDelete() + without deleting it (even if \link TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled). If there are two or more items with equal keys, then the most @@ -248,7 +248,7 @@ Removes all items from the dictionary. The removed items are deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that access this dictionary will be reset. @@ -291,7 +291,7 @@ */ /*! - \fn QDataStream& QIntDict::read( QDataStream &s, QPtrCollection::Item &item ) + \fn QDataStream& QIntDict::read( QDataStream &s, TQPtrCollection::Item &item ) Reads a dictionary item from the stream \a s and returns a reference to the stream. @@ -302,7 +302,7 @@ */ /*! - \fn QDataStream& QIntDict::write( QDataStream &s, QPtrCollection::Item ) const + \fn QDataStream& QIntDict::write( QDataStream &s, TQPtrCollection::Item ) const Writes a dictionary item to the stream \a s and returns a reference to the stream. diff --git a/doc/qmemarray.doc b/doc/qmemarray.doc index 566731eeb..20e2f68b8 100644 --- a/doc/qmemarray.doc +++ b/doc/qmemarray.doc @@ -57,7 +57,7 @@ QMemArray uses bitwise operations to copy and compare array elements. - The QPtrVector collection class is also a kind of array. Like most + The TQPtrVector collection class is also a kind of array. Like most \link collection.html collection classes\endlink, it uses pointers to the contained items. diff --git a/doc/qtl.doc b/doc/qtl.doc index 2c3ab4e34..173bd6fdd 100644 --- a/doc/qtl.doc +++ b/doc/qtl.doc @@ -64,13 +64,13 @@ differences, but is often a little slower and often expands to less object code. If you cannot make copies of the objects you want to store you should -use QPtrCollection and friends, all of which operate on pointers +use TQPtrCollection and friends, all of which operate on pointers rather than values. This applies, for example, to all classes derived from \l TQObject. A TQObject does not have a copy constructor, so using it as value is impossible. You may choose to store pointers to -TQObjects in a TQValueList, but using QPtrList directly seems to be the -better choice for this kind of application domain. QPtrList, like all -other QPtrCollection based containers, provides far more sanity +TQObjects in a TQValueList, but using TQPtrList directly seems to be the +better choice for this kind of application domain. TQPtrList, like all +other TQPtrCollection based containers, provides far more sanity checking than a speed-optimized value based container. If you have objects that implement value semantics, and the STL is not @@ -94,7 +94,7 @@ TQString and all simple C++ types, such as int, bool or double. The TQt Template Library is designed for speed. Iterators are extremely fast. To achieve this performance, less error checking is done than in -the QPtrCollection based containers. A QTL container, for example, +the TQPtrCollection based containers. A QTL container, for example, does not track any associated iterators. This makes certain validity checks, for example when removing items, impossible to perform automatically, but does lead to extremely good performance. diff --git a/doc/tqmap.doc b/doc/tqmap.doc index 6c1266052..e702440cc 100644 --- a/doc/tqmap.doc +++ b/doc/tqmap.doc @@ -60,7 +60,7 @@ dictionary with keys of type Key and values of type Data. TQMap does not store pointers to the members of the map; instead, it holds a copy of every member. For this reason, TQMap is - value-based, whereas QPtrList and QDict are pointer-based. + value-based, whereas TQPtrList and QDict are pointer-based. TQMap contains and manages a collection of objects of type Data with associated key values of type Key and provides iterators that diff --git a/doc/tqobjectlist.doc b/doc/tqobjectlist.doc index 14d687fe7..f83403fde 100644 --- a/doc/tqobjectlist.doc +++ b/doc/tqobjectlist.doc @@ -5,7 +5,7 @@ \ingroup collection \ingroup tools - A TQObjectList is a \link ntqptrlist.html + A TQObjectList is a \link tqptrlist.html TQPtrList\<TQObject\>\endlink. The list can be traversed using inherited functions, e.g. getFirst(), next(), etc., or using a TQObjectListIterator iterator. @@ -60,7 +60,7 @@ \ingroup collection \ingroup tools - A TQObjectListIterator iterator is a \link qptrlistiterator.html + A TQObjectListIterator iterator is a \link tqptrlistiterator.html TQPtrListIterator\<TQObject\>\endlink. See \l TQObject::queryList() for an example of use. diff --git a/doc/tqpair.doc b/doc/tqpair.doc index fed6658cc..8818fa022 100644 --- a/doc/tqpair.doc +++ b/doc/tqpair.doc @@ -58,13 +58,13 @@ that TQPair does not store pointers to the two elements; it holds a copy of every member. This is why these kinds of classes are called \e{value based}. If you're interested in \e{pointer based} - classes see, for example, QPtrList and QDict. + classes see, for example, TQPtrList and QDict. TQPair holds one copy of type T1 and one copy of type T2, but does not provide iterators to access these elements. Instead, the two elements (\c first and \c second) are public member variables of the pair. TQPair owns the contained elements. For more relaxed - ownership semantics, see QPtrCollection and friends which are + ownership semantics, see TQPtrCollection and friends which are pointer-based containers. Some classes cannot be used within a TQPair: for example, all diff --git a/doc/qptrdict.doc b/doc/tqptrdict.doc index ebf58f1bf..b11c2b493 100644 --- a/doc/qptrdict.doc +++ b/doc/tqptrdict.doc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** QPtrDict and QPtrDictIterator class documentation +** TQPtrDict and TQPtrDictIterator class documentation ** ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. ** @@ -38,20 +38,20 @@ /***************************************************************************** - QPtrDict documentation + TQPtrDict documentation *****************************************************************************/ /*! - \class QPtrDict - \brief The QPtrDict class is a template class that provides a dictionary based on void* keys. + \class TQPtrDict + \brief The TQPtrDict class is a template class that provides a dictionary based on void* keys. \ingroup collection \ingroup tools \important autoDelete setAutoDelete - QPtrDict is implemented as a template class. Define a template - instance QPtrDict\<X\> to create a dictionary that operates on + TQPtrDict is implemented as a template class. Define a template + instance TQPtrDict\<X\> to create a dictionary that operates on pointers to X (X*). A dictionary is a collection of key-value pairs. The key is a @@ -60,7 +60,7 @@ Example: \code - QPtrDict<char> fields; // void* keys, char* values + TQPtrDict<char> fields; // void* keys, char* values QLineEdit *le1 = new QLineEdit( this ); le1->setText( "Simpson" ); @@ -73,7 +73,7 @@ fields.insert( le2, "Forename" ); fields.insert( le3, "Age" ); - QPtrDictIterator<char> it( fields ); + TQPtrDictIterator<char> it( fields ); for( ; it.current(); ++it ) cout << it.current() << endl; cout << endl; @@ -92,13 +92,13 @@ See QDict for full details, including the choice of dictionary size, and how deletions are handled. - \sa QPtrDictIterator, QDict, QAsciiDict, QIntDict, + \sa TQPtrDictIterator, QDict, QAsciiDict, QIntDict, \link collection.html Collection Classes\endlink */ /*! - \fn QPtrDict::QPtrDict( int size ) + \fn TQPtrDict::TQPtrDict( int size ) Constructs a dictionary using an internal hash array with the size \a size. @@ -109,7 +109,7 @@ */ /*! - \fn QPtrDict::QPtrDict( const QPtrDict<type> &dict ) + \fn TQPtrDict::TQPtrDict( const TQPtrDict<type> &dict ) Constructs a copy of \a dict. @@ -118,7 +118,7 @@ */ /*! - \fn QPtrDict::~QPtrDict() + \fn TQPtrDict::~TQPtrDict() Removes all items from the dictionary and destroys it. @@ -128,7 +128,7 @@ */ /*! - \fn QPtrDict<type> &QPtrDict::operator=(const QPtrDict<type> &dict) + \fn TQPtrDict<type> &TQPtrDict::operator=(const TQPtrDict<type> &dict) Assigns \a dict to this dictionary and returns a reference to this dictionary. @@ -139,7 +139,7 @@ */ /*! - \fn uint QPtrDict::count() const + \fn uint TQPtrDict::count() const Returns the number of items in the dictionary. @@ -147,7 +147,7 @@ */ /*! - \fn uint QPtrDict::size() const + \fn uint TQPtrDict::size() const Returns the size of the internal hash table (as specified in the constructor). @@ -156,7 +156,7 @@ */ /*! - \fn void QPtrDict::resize( uint newsize ) + \fn void TQPtrDict::resize( uint newsize ) Changes the size of the hash table to \a newsize. The contents of the dictionary are preserved, but all iterators on the dictionary @@ -164,7 +164,7 @@ */ /*! - \fn bool QPtrDict::isEmpty() const + \fn bool TQPtrDict::isEmpty() const Returns TRUE if the dictionary is empty; otherwise returns FALSE. @@ -172,7 +172,7 @@ */ /*! - \fn void QPtrDict::insert( void *key, const type *item ) + \fn void TQPtrDict::insert( void *key, const type *item ) Inserts the \a key with the \a item into the dictionary. @@ -185,7 +185,7 @@ */ /*! - \fn void QPtrDict::replace( void *key, const type *item ) + \fn void TQPtrDict::replace( void *key, const type *item ) If the dictionary has key \a key, this key's item is replaced with \a item. If the dictionary doesn't contain key \a key, \a item is @@ -195,7 +195,7 @@ Equivalent to \code - QPtrDict<ItemType> dict; + TQPtrDict<ItemType> dict; ... if ( dict.find( key ) ) dict.remove( key ); @@ -209,7 +209,7 @@ */ /*! - \fn bool QPtrDict::remove( void *key ) + \fn bool TQPtrDict::remove( void *key ) Removes the item associated with \a key from the dictionary. Returns TRUE if successful, i.e. if \a key is in the dictionary; @@ -219,7 +219,7 @@ recently inserted item will be removed. The removed item is deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that refer to the removed item will be set to point to the next item in the dictionary traversal order. @@ -228,10 +228,10 @@ */ /*! - \fn type *QPtrDict::take( void *key ) + \fn type *TQPtrDict::take( void *key ) Takes the item associated with \a key out of the dictionary - without deleting it (even if \link QPtrCollection::setAutoDelete() + without deleting it (even if \link TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled). If there are two or more items with equal keys, then the most @@ -247,12 +247,12 @@ */ /*! - \fn void QPtrDict::clear() + \fn void TQPtrDict::clear() Removes all items from the dictionary. The removed items are deleted if \link - QPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. + TQPtrCollection::setAutoDelete() auto-deletion\endlink is enabled. All dictionary iterators that access this dictionary will be reset. @@ -261,7 +261,7 @@ */ /*! - \fn type *QPtrDict::find( void *key ) const + \fn type *TQPtrDict::find( void *key ) const Returns the item associated with \a key, or 0 if the key does not exist in the dictionary. @@ -275,7 +275,7 @@ */ /*! - \fn type *QPtrDict::operator[]( void *key ) const + \fn type *TQPtrDict::operator[]( void *key ) const Returns the item associated with \a key, or 0 if the key does not exist in the dictionary. @@ -289,14 +289,14 @@ */ /*! - \fn void QPtrDict::statistics() const + \fn void TQPtrDict::statistics() const Debugging-only function that prints out the dictionary distribution using tqDebug(). */ /*! - \fn QDataStream& QPtrDict::read( QDataStream &s, QPtrCollection::Item &item ) + \fn QDataStream& TQPtrDict::read( QDataStream &s, TQPtrCollection::Item &item ) Reads a dictionary item from the stream \a s and returns a reference to the stream. @@ -307,7 +307,7 @@ */ /*! - \fn QDataStream& QPtrDict::write( QDataStream &s, QPtrCollection::Item ) const + \fn QDataStream& TQPtrDict::write( QDataStream &s, TQPtrCollection::Item ) const Writes a dictionary item to the stream \a s and returns a reference to the stream. @@ -316,23 +316,23 @@ */ /***************************************************************************** - QPtrDictIterator documentation + TQPtrDictIterator documentation *****************************************************************************/ /*! - \class QPtrDictIterator ntqptrdict.h - \brief The QPtrDictIterator class provides an iterator for QPtrDict collections. + \class TQPtrDictIterator tqptrdict.h + \brief The TQPtrDictIterator class provides an iterator for TQPtrDict collections. \ingroup collection \ingroup tools - QPtrDictIterator is implemented as a template class. Define a - template instance QPtrDictIterator\<X\> to create a dictionary - iterator that operates on QPtrDict\<X\> (dictionary of X*). + TQPtrDictIterator is implemented as a template class. Define a + template instance TQPtrDictIterator\<X\> to create a dictionary + iterator that operates on TQPtrDict\<X\> (dictionary of X*). Example: \code - QPtrDict<char> fields; + TQPtrDict<char> fields; QLineEdit *le1 = new QLineEdit( this ); le1->setText( "Simpson" ); @@ -345,7 +345,7 @@ fields.insert( le2, "Forename" ); fields.insert( le3, "Age" ); - QPtrDictIterator<char> it( fields ); + TQPtrDictIterator<char> it( fields ); for( ; it.current(); ++it ) { QLineEdit *le = (QLineEdit)it.currentKey(); cout << it.current() << ": " << le->text() << endl; @@ -362,29 +362,29 @@ dictionary printing the associated strings. Multiple iterators may independently traverse the same dictionary. - A QPtrDict knows about all the iterators that are operating on the - dictionary. When an item is removed from the dictionary, QPtrDict + A TQPtrDict knows about all the iterators that are operating on the + dictionary. When an item is removed from the dictionary, TQPtrDict updates all iterators that refer the removed item to point to the next item in the traversing order. - \sa QPtrDict + \sa TQPtrDict */ /*! - \fn QPtrDictIterator::QPtrDictIterator( const QPtrDict<type> &dict ) + \fn TQPtrDictIterator::TQPtrDictIterator( const TQPtrDict<type> &dict ) Constructs an iterator for \a dict. The current iterator item is set to point on the first item in the \a dict. */ /*! - \fn QPtrDictIterator::~QPtrDictIterator() + \fn TQPtrDictIterator::~TQPtrDictIterator() Destroys the iterator. */ /*! - \fn uint QPtrDictIterator::count() const + \fn uint TQPtrDictIterator::count() const Returns the number of items in the dictionary this iterator operates on. @@ -393,7 +393,7 @@ */ /*! - \fn bool QPtrDictIterator::isEmpty() const + \fn bool TQPtrDictIterator::isEmpty() const Returns TRUE if the dictionary is empty; otherwise returns FALSE. @@ -401,7 +401,7 @@ */ /*! - \fn type *QPtrDictIterator::toFirst() + \fn type *TQPtrDictIterator::toFirst() Sets the current iterator item to point to the first item in the dictionary and returns a pointer to the item. If the dictionary is @@ -409,26 +409,26 @@ */ /*! - \fn QPtrDictIterator::operator type *() const + \fn TQPtrDictIterator::operator type *() const Cast operator. Returns a pointer to the current iterator item. Same as current(). */ /*! - \fn type *QPtrDictIterator::current() const + \fn type *TQPtrDictIterator::current() const Returns a pointer to the current iterator item's value. */ /*! - \fn void *QPtrDictIterator::currentKey() const + \fn void *TQPtrDictIterator::currentKey() const Returns the current iterator item's key. */ /*! - \fn type *QPtrDictIterator::operator()() + \fn type *TQPtrDictIterator::operator()() Makes the succeeding item current and returns the original current item. @@ -438,7 +438,7 @@ */ /*! - \fn type *QPtrDictIterator::operator++() + \fn type *TQPtrDictIterator::operator++() Prefix ++ makes the succeeding item current and returns the new current item. @@ -448,7 +448,7 @@ */ /*! - \fn type *QPtrDictIterator::operator+=( uint jump ) + \fn type *TQPtrDictIterator::operator+=( uint jump ) Sets the current item to the item \a jump positions after the current item and returns a pointer to that item. diff --git a/doc/qptrlist.doc b/doc/tqptrlist.doc index 14b51645d..502abaf26 100644 --- a/doc/qptrlist.doc +++ b/doc/tqptrlist.doc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** QPtrList and QPtrListIterator class documentation +** TQPtrList and TQPtrListIterator class documentation ** ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. ** @@ -38,12 +38,12 @@ /***************************************************************************** - QPtrList documentation + TQPtrList documentation *****************************************************************************/ /*! - \class QPtrList - \brief The QPtrList class is a template class that provides a list. + \class TQPtrList + \brief The TQPtrList class is a template class that provides a list. \ingroup collection \ingroup tools @@ -52,7 +52,7 @@ TQValueList is an STL-compatible alternative to this class. - Define a template instance QPtrList\<X\> to create a list that + Define a template instance TQPtrList\<X\> to create a list that operates on pointers to X (X*). The list class is indexable and has a \link at() current @@ -95,7 +95,7 @@ int sal; }; - QPtrList<Employee> list; + TQPtrList<Employee> list; list.setAutoDelete( TRUE ); // the list owns the objects list.append( new Employee("John", "Doe", 50000) ); @@ -126,8 +126,8 @@ Jones \endcode - QPtrList has several member functions for traversing the list, but - using a QPtrListIterator can be more practical. Multiple list + TQPtrList has several member functions for traversing the list, but + using a TQPtrListIterator can be more practical. Multiple list iterators may traverse the same list, independently of each other and of the current list item. @@ -141,11 +141,11 @@ the item itself, i.e. a shallow copy. It is possible to make the list copy all of the item's data (deep copy) when an item is inserted. insert(), inSort() and append() call the virtual - function QPtrCollection::newItem() for the item to be inserted. + function TQPtrCollection::newItem() for the item to be inserted. Inherit a list and reimplement newItem() to have deep copies. When removing an item from a list, the virtual function - QPtrCollection::deleteItem() is called. QPtrList's default + TQPtrCollection::deleteItem() is called. TQPtrList's default implementation is to delete the item if auto-deletion is enabled. The virtual function compareItems() can be reimplemented to @@ -166,18 +166,18 @@ It reimplements newItem(), deleteItem() and compareItems(). (But see QStringList for a list of Unicode QStrings.) - \sa QPtrListIterator + \sa TQPtrListIterator */ /*! - \fn QPtrList::QPtrList() + \fn TQPtrList::TQPtrList() Constructs an empty list. */ /*! - \fn QPtrList::QPtrList( const QPtrList<type> &list ) + \fn TQPtrList::TQPtrList( const TQPtrList<type> &list ) Constructs a copy of \a list. @@ -186,7 +186,7 @@ */ /*! - \fn QPtrList::~QPtrList() + \fn TQPtrList::~TQPtrList() Removes all items from the list and destroys the list. @@ -196,7 +196,7 @@ */ /*! - \fn QPtrList<type> &QPtrList::operator=(const QPtrList<type> &list) + \fn TQPtrList<type> &TQPtrList::operator=(const TQPtrList<type> &list) Assigns \a list to this list and returns a reference to this list. @@ -206,14 +206,14 @@ */ /*! - \fn bool QPtrList::operator==(const QPtrList<type> &list ) const + \fn bool TQPtrList::operator==(const TQPtrList<type> &list ) const Compares this list with \a list. Returns TRUE if the lists contain the same data; otherwise returns FALSE. */ /*! - \fn uint QPtrList::count() const + \fn uint TQPtrList::count() const Returns the number of items in the list. @@ -221,7 +221,7 @@ */ /*! - \fn bool QPtrList::operator!=(const QPtrList<type> &list ) const + \fn bool TQPtrList::operator!=(const TQPtrList<type> &list ) const Compares this list with \a list. Returns TRUE if the lists contain different data; otherwise returns FALSE. @@ -229,7 +229,7 @@ /*! - \fn void QPtrList::sort() + \fn void TQPtrList::sort() Sorts the list by the result of the virtual compareItems() function. @@ -242,7 +242,7 @@ */ /*! - \fn bool QPtrList::isEmpty() const + \fn bool TQPtrList::isEmpty() const Returns TRUE if the list is empty; otherwise returns FALSE. @@ -250,7 +250,7 @@ */ /*! - \fn bool QPtrList::insert( uint index, const type *item ) + \fn bool TQPtrList::insert( uint index, const type *item ) Inserts the \a item at position \a index in the list. @@ -266,7 +266,7 @@ */ /*! - \fn bool QPtrList::replace( uint index, const type *item ) + \fn bool TQPtrList::replace( uint index, const type *item ) Replaces the item at position \a index with the new \a item. @@ -277,7 +277,7 @@ */ /*! - \fn void QPtrList::inSort( const type *item ) + \fn void TQPtrList::inSort( const type *item ) Inserts the \a item at its sorted position in the list. @@ -301,7 +301,7 @@ */ /*! - \fn void QPtrList::append( const type *item ) + \fn void TQPtrList::append( const type *item ) Inserts the \a item at the end of the list. @@ -314,7 +314,7 @@ */ /*! - \fn void QPtrList::prepend( const type *item ) + \fn void TQPtrList::prepend( const type *item ) Inserts the \a item at the start of the list. @@ -327,7 +327,7 @@ */ /*! - \fn bool QPtrList::remove( uint index ) + \fn bool TQPtrList::remove( uint index ) Removes the item at position \a index in the list. @@ -349,7 +349,7 @@ */ /*! - \fn bool QPtrList::remove() + \fn bool TQPtrList::remove() \overload @@ -373,7 +373,7 @@ */ /*! - \fn bool QPtrList::remove( const type *item ) + \fn bool TQPtrList::remove( const type *item ) \overload @@ -404,7 +404,7 @@ */ /*! - \fn bool QPtrList::removeRef( const type *item ) + \fn bool TQPtrList::removeRef( const type *item ) Removes the first occurrence of \a item from the list. @@ -432,7 +432,7 @@ */ /*! - \fn void QPtrList::removeNode( QLNode *node ) + \fn void TQPtrList::removeNode( QLNode *node ) Removes the \a node from the list. @@ -454,7 +454,7 @@ */ /*! - \fn bool QPtrList::removeFirst() + \fn bool TQPtrList::removeFirst() Removes the first item from the list. Returns TRUE if successful, i.e. if the list isn't empty; otherwise returns FALSE. @@ -472,7 +472,7 @@ */ /*! - \fn bool QPtrList::removeLast() + \fn bool TQPtrList::removeLast() Removes the last item from the list. Returns TRUE if successful, i.e. if the list isn't empty; otherwise returns FALSE. @@ -490,7 +490,7 @@ */ /*! - \fn type *QPtrList::take( uint index ) + \fn type *TQPtrList::take( uint index ) Takes the item at position \a index out of the list without deleting it (even if \link setAutoDelete() auto-deletion\endlink @@ -512,7 +512,7 @@ */ /*! - \fn type *QPtrList::take() + \fn type *TQPtrList::take() \overload @@ -534,7 +534,7 @@ */ /*! - \fn type *QPtrList::takeNode( QLNode *node ) + \fn type *TQPtrList::takeNode( QLNode *node ) Takes the \a node out of the list without deleting its item (even if \link setAutoDelete() auto-deletion\endlink is enabled). @@ -554,7 +554,7 @@ */ /*! - \fn void QPtrList::clear() + \fn void TQPtrList::clear() Removes all items from the list. @@ -567,7 +567,7 @@ */ /*! - \fn int QPtrList::find( const type *item ) + \fn int TQPtrList::find( const type *item ) Finds the first occurrence of \a item in the list. @@ -584,7 +584,7 @@ */ /*! - \fn int QPtrList::findNext( const type *item ) + \fn int TQPtrList::findNext( const type *item ) Finds the next occurrence of \a item in the list, starting from the current list item. @@ -602,7 +602,7 @@ */ /*! - \fn int QPtrList::findRef( const type *item ) + \fn int TQPtrList::findRef( const type *item ) Finds the first occurrence of \a item in the list. @@ -619,7 +619,7 @@ */ /*! - \fn int QPtrList::findNextRef( const type *item ) + \fn int TQPtrList::findNextRef( const type *item ) Finds the next occurrence of \a item in the list, starting from the current list item. @@ -637,7 +637,7 @@ */ /*! - \fn uint QPtrList::contains( const type *item ) const + \fn uint TQPtrList::contains( const type *item ) const Returns the number of occurrences of \a item in the list. @@ -651,7 +651,7 @@ */ /*! - \fn uint QPtrList::containsRef( const type *item ) const + \fn uint TQPtrList::containsRef( const type *item ) const Returns the number of occurrences of \a item in the list. @@ -665,7 +665,7 @@ */ /*! - \fn type *QPtrList::at( uint index ) + \fn type *TQPtrList::at( uint index ) Returns a pointer to the item at position \a index in the list, or 0 if the index is out of range. @@ -681,7 +681,7 @@ */ /*! - \fn int QPtrList::at() const + \fn int TQPtrList::at() const \overload @@ -692,7 +692,7 @@ */ /*! - \fn type *QPtrList::current() const + \fn type *TQPtrList::current() const Returns a pointer to the current list item. The current item may be 0 (implies that the current index is -1). @@ -701,7 +701,7 @@ */ /*! - \fn QLNode *QPtrList::currentNode() const + \fn QLNode *TQPtrList::currentNode() const Returns a pointer to the current list node. @@ -715,7 +715,7 @@ */ /*! - \fn type *QPtrList::getFirst() const + \fn type *TQPtrList::getFirst() const Returns a pointer to the first item in the list, or 0 if the list is empty. @@ -726,7 +726,7 @@ */ /*! - \fn type *QPtrList::getLast() const + \fn type *TQPtrList::getLast() const Returns a pointer to the last item in the list, or 0 if the list is empty. @@ -737,7 +737,7 @@ */ /*! - \fn type *QPtrList::first() + \fn type *TQPtrList::first() Returns a pointer to the first item in the list and makes this the current list item; returns 0 if the list is empty. @@ -746,7 +746,7 @@ */ /*! - \fn type *QPtrList::last() + \fn type *TQPtrList::last() Returns a pointer to the last item in the list and makes this the current list item; returns 0 if the list is empty. @@ -755,7 +755,7 @@ */ /*! - \fn type *QPtrList::next() + \fn type *TQPtrList::next() Returns a pointer to the item succeeding the current item. Returns 0 if the current item is 0 or equal to the last item. @@ -768,7 +768,7 @@ */ /*! - \fn type *QPtrList::prev() + \fn type *TQPtrList::prev() Returns a pointer to the item preceding the current item. Returns 0 if the current item is 0 or equal to the first item. @@ -781,7 +781,7 @@ */ /*! - \fn void QPtrList::toVector( QGVector *vec ) const + \fn void TQPtrList::toVector( QGVector *vec ) const Stores all list items in the vector \a vec. @@ -790,76 +790,76 @@ */ /*! - \enum QPtrList::iterator + \enum TQPtrList::iterator \internal */ /*! - \enum QPtrList::Iterator + \enum TQPtrList::Iterator \internal */ /*! - \enum QPtrList::ConstIterator + \enum TQPtrList::ConstIterator \internal */ /*! - \enum QPtrList::const_iterator + \enum TQPtrList::const_iterator \internal */ /*! - \fn QPtrList::constBegin() const + \fn TQPtrList::constBegin() const \internal */ /*! - \fn QPtrList::constEnd() const + \fn TQPtrList::constEnd() const \internal */ /*! - \fn QPtrList::erase(Iterator) + \fn TQPtrList::erase(Iterator) \internal */ /***************************************************************************** - QPtrListIterator documentation + TQPtrListIterator documentation *****************************************************************************/ /*! - \class QPtrListIterator - \brief The QPtrListIterator class provides an iterator for - QPtrList collections. + \class TQPtrListIterator + \brief The TQPtrListIterator class provides an iterator for + TQPtrList collections. \ingroup collection \ingroup tools - Define a template instance QPtrListIterator\<X\> to create a list - iterator that operates on QPtrList\<X\> (list of X*). + Define a template instance TQPtrListIterator\<X\> to create a list + iterator that operates on TQPtrList\<X\> (list of X*). The following example is similar to the \link - ntqptrlist.html#example example in the QPtrList class documentation - \endlink, but it uses QPtrListIterator. The class Employee is + tqptrlist.html#example example in the TQPtrList class documentation + \endlink, but it uses TQPtrListIterator. The class Employee is defined there. \code - QPtrList<Employee> list; + TQPtrList<Employee> list; list.append( new Employee("John", "Doe", 50000) ); list.append( new Employee("Jane", "Williams", 80000) ); list.append( new Employee("Tom", "Jones", 60000) ); - QPtrListIterator<Employee> it( list ); + TQPtrListIterator<Employee> it( list ); Employee *employee; while ( (employee = it.current()) != 0 ) { ++it; @@ -877,36 +877,36 @@ \endcode Using a list iterator is a more robust way of traversing the list - than using the QPtrList member functions \link QPtrList::first() - first\endlink(), \link QPtrList::next() next\endlink(), \link - QPtrList::current() current\endlink(), etc., as many iterators can + than using the TQPtrList member functions \link TQPtrList::first() + first\endlink(), \link TQPtrList::next() next\endlink(), \link + TQPtrList::current() current\endlink(), etc., as many iterators can traverse the same list independently. An iterator has its own current list item and can get the next and previous list items. It doesn't modify the list in any way. When an item is removed from the list, all iterators that point to - that item are updated to point to QPtrList::current() instead to + that item are updated to point to TQPtrList::current() instead to avoid dangling references. - \sa QPtrList + \sa TQPtrList */ /*! - \fn QPtrListIterator::QPtrListIterator( const QPtrList<type> &list ) + \fn TQPtrListIterator::TQPtrListIterator( const TQPtrList<type> &list ) Constructs an iterator for \a list. The current iterator item is set to point on the first item in the \a list. */ /*! - \fn QPtrListIterator::~QPtrListIterator() + \fn TQPtrListIterator::~TQPtrListIterator() Destroys the iterator. */ /*! - \fn uint QPtrListIterator::count() const + \fn uint TQPtrListIterator::count() const Returns the number of items in the list this iterator operates on. @@ -914,7 +914,7 @@ */ /*! - \fn bool QPtrListIterator::isEmpty() const + \fn bool TQPtrListIterator::isEmpty() const Returns TRUE if the list is empty; otherwise returns FALSE. @@ -922,7 +922,7 @@ */ /*! - \fn bool QPtrListIterator::atFirst() const + \fn bool TQPtrListIterator::atFirst() const Returns TRUE if the current iterator item is the first list item; otherwise returns FALSE. @@ -931,7 +931,7 @@ */ /*! - \fn bool QPtrListIterator::atLast() const + \fn bool TQPtrListIterator::atLast() const Returns TRUE if the current iterator item is the last list item; otherwise returns FALSE. @@ -940,7 +940,7 @@ */ /*! - \fn type *QPtrListIterator::toFirst() + \fn type *TQPtrListIterator::toFirst() Sets the current iterator item to point to the first list item and returns a pointer to the item. Sets the current item to 0 and @@ -950,7 +950,7 @@ */ /*! - \fn type *QPtrListIterator::toLast() + \fn type *TQPtrListIterator::toLast() Sets the current iterator item to point to the last list item and returns a pointer to the item. Sets the current item to 0 and @@ -960,21 +960,21 @@ */ /*! - \fn QPtrListIterator::operator type *() const + \fn TQPtrListIterator::operator type *() const Cast operator. Returns a pointer to the current iterator item. Same as current(). */ /*! - \fn type *QPtrListIterator::operator*() + \fn type *TQPtrListIterator::operator*() Asterisk operator. Returns a pointer to the current iterator item. Same as current(). */ /*! - \fn type *QPtrListIterator::current() const + \fn type *TQPtrListIterator::current() const Returns a pointer to the current iterator item. If the iterator is positioned before the first item in the list or after the last @@ -982,7 +982,7 @@ */ /*! - \fn type *QPtrListIterator::operator()() + \fn type *TQPtrListIterator::operator()() Makes the succeeding item current and returns the original current item. @@ -992,7 +992,7 @@ */ /*! - \fn type *QPtrListIterator::operator++() + \fn type *TQPtrListIterator::operator++() Prefix ++ makes the succeeding item current and returns the new current item. @@ -1002,7 +1002,7 @@ */ /*! - \fn type *QPtrListIterator::operator+=( uint jump ) + \fn type *TQPtrListIterator::operator+=( uint jump ) Sets the current item to the item \a jump positions after the current item and returns a pointer to that item. @@ -1012,7 +1012,7 @@ */ /*! - \fn type *QPtrListIterator::operator--() + \fn type *TQPtrListIterator::operator--() Prefix - makes the preceding item current and returns the new current item. @@ -1022,14 +1022,14 @@ */ /*! - \fn type *QPtrListIterator::operator-=( uint jump ) + \fn type *TQPtrListIterator::operator-=( uint jump ) Returns the item \a jump positions before the current item or 0 if it is beyond the first item. Makes this the current item. */ /*! - \fn QPtrListIterator<type>& QPtrListIterator::operator=( const QPtrListIterator<type> &it ) + \fn TQPtrListIterator<type>& TQPtrListIterator::operator=( const TQPtrListIterator<type> &it ) Assignment. Makes a copy of the iterator \a it and returns a reference to this iterator. @@ -1050,7 +1050,7 @@ If you want a string list of \l{TQString}s use QStringList. - This class is a QPtrList\<char\> instance (a list of char*). + This class is a TQPtrList\<char\> instance (a list of char*). QStrList can make deep or shallow copies of the strings that are inserted. @@ -1129,7 +1129,7 @@ \ingroup collection \ingroup tools - This class is a QPtrList\<char\> instance (a list of char*). + This class is a TQPtrList\<char\> instance (a list of char*). QStrIList is identical to QStrList except that the virtual compareItems() function is reimplemented to compare strings @@ -1158,8 +1158,8 @@ */ /*! - \fn int QPtrList::compareItems( QPtrCollection::Item item1, - QPtrCollection::Item item2 ) + \fn int TQPtrList::compareItems( TQPtrCollection::Item item1, + TQPtrCollection::Item item2 ) This virtual function compares two list items. @@ -1188,8 +1188,8 @@ */ /*! - \fn QDataStream& QPtrList::read( QDataStream& s, - QPtrCollection::Item& item ) + \fn QDataStream& TQPtrList::read( QDataStream& s, + TQPtrCollection::Item& item ) Reads a list item from the stream \a s and returns a reference to the stream. @@ -1200,8 +1200,8 @@ */ /*! - \fn QDataStream& QPtrList::write( QDataStream& s, - QPtrCollection::Item item ) const + \fn QDataStream& TQPtrList::write( QDataStream& s, + TQPtrCollection::Item item ) const Writes a list item, \a item to the stream \a s and returns a reference to the stream. @@ -1211,16 +1211,16 @@ \sa read() */ -/*! \fn iterator QPtrList::begin() +/*! \fn iterator TQPtrList::begin() \internal */ -/*! \fn const_iterator QPtrList::begin() const +/*! \fn const_iterator TQPtrList::begin() const \internal */ -/*! \fn iterator QPtrList::end() +/*! \fn iterator TQPtrList::end() \internal */ -/*! \fn const_iterator QPtrList::end() const +/*! \fn const_iterator TQPtrList::end() const \internal */ @@ -1235,21 +1235,21 @@ \ingroup tools - This class is a QPtrListIterator\<char\> instance. It can traverse + This class is a TQPtrListIterator\<char\> instance. It can traverse the strings in the QStrList and QStrIList classes. */ /***************************************************************************** - QPtrListAutoDelete documentation + TQPtrListAutoDelete documentation *****************************************************************************/ /* - \class QPtrListAutoDelete - \brief The QPtrListAutoDelete class is a template class that provides a list that auto-deletes its data. + \class TQPtrListAutoDelete + \brief The TQPtrListAutoDelete class is a template class that provides a list that auto-deletes its data. \ingroup collection \ingroup tools - A QPtrListAutoDelete is identical to a QPtrList with + A TQPtrListAutoDelete is identical to a TQPtrList with setAutoDelete(TRUE). */ diff --git a/doc/qptrqueue.doc b/doc/tqptrqueue.doc index b0dd1a5b2..27b5952ff 100644 --- a/doc/qptrqueue.doc +++ b/doc/tqptrqueue.doc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** QPtrQueue class documentation +** TQPtrQueue class documentation ** ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. ** @@ -38,8 +38,8 @@ /*! - \class QPtrQueue - \brief The QPtrQueue class is a template class that provides a queue. + \class TQPtrQueue + \brief The TQPtrQueue class is a template class that provides a queue. \ingroup collection \ingroup tools @@ -47,7 +47,7 @@ TQValueVector can be used as an STL-compatible alternative to this class. - A template instance QPtrQueue\<X\> is a queue that operates on + A template instance TQPtrQueue\<X\> is a queue that operates on pointers to X (X*). A queue is a first in, first out structure. Items are added to the @@ -57,20 +57,20 @@ You can control the queue's deletion policy with setAutoDelete(). - For compatibility with the QPtrCollection classes, current() and + For compatibility with the TQPtrCollection classes, current() and remove() are provided; both operate on the head(). - \sa QPtrList QPtrStack + \sa TQPtrList TQPtrStack */ /*! - \fn QPtrQueue::QPtrQueue () + \fn TQPtrQueue::TQPtrQueue () Creates an empty queue with autoDelete() set to FALSE. */ /*! - \fn QPtrQueue::QPtrQueue( const QPtrQueue<type>& queue ) + \fn TQPtrQueue::TQPtrQueue( const TQPtrQueue<type>& queue ) Creates a queue from \a queue. @@ -79,14 +79,14 @@ */ /*! - \fn QPtrQueue::~QPtrQueue() + \fn TQPtrQueue::~TQPtrQueue() Destroys the queue. Items in the queue are deleted if autoDelete() is TRUE. */ /*! - \fn QPtrQueue<type>& QPtrQueue::operator= (const QPtrQueue<type>& queue) + \fn TQPtrQueue<type>& TQPtrQueue::operator= (const TQPtrQueue<type>& queue) Assigns \a queue to this queue and returns a reference to this queue. @@ -100,7 +100,7 @@ */ /*! - \fn bool QPtrQueue::isEmpty() const + \fn bool TQPtrQueue::isEmpty() const Returns TRUE if the queue is empty; otherwise returns FALSE. @@ -108,7 +108,7 @@ */ /*! - \fn void QPtrQueue::enqueue (const type* d) + \fn void TQPtrQueue::enqueue (const type* d) Adds item \a d to the tail of the queue. @@ -116,7 +116,7 @@ */ /*! - \fn type* QPtrQueue::dequeue () + \fn type* TQPtrQueue::dequeue () Takes the head item from the queue and returns a pointer to it. Returns 0 if the queue is empty. @@ -125,7 +125,7 @@ */ /*! - \fn bool QPtrQueue::remove() + \fn bool TQPtrQueue::remove() Removes the head item from the queue, and returns TRUE if there was an item, i.e. the queue wasn't empty; otherwise returns FALSE. @@ -136,7 +136,7 @@ */ /*! - \fn void QPtrQueue::clear() + \fn void TQPtrQueue::clear() Removes all items from the queue, and deletes them if autoDelete() is TRUE. @@ -145,7 +145,7 @@ */ /*! - \fn uint QPtrQueue::count() const + \fn uint TQPtrQueue::count() const Returns the number of items in the queue. @@ -153,7 +153,7 @@ */ /*! - \fn type* QPtrQueue::head() const + \fn type* TQPtrQueue::head() const Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty. @@ -162,7 +162,7 @@ */ /*! - \fn QPtrQueue::operator type*() const + \fn TQPtrQueue::operator type*() const Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty. @@ -171,7 +171,7 @@ */ /*! - \fn type* QPtrQueue::current() const + \fn type* TQPtrQueue::current() const Returns a pointer to the head item in the queue. The queue is not changed. Returns 0 if the queue is empty. @@ -180,7 +180,7 @@ */ /*! - \fn bool QPtrQueue::autoDelete() const + \fn bool TQPtrQueue::autoDelete() const Returns the setting of the auto-delete option. The default is FALSE. @@ -189,7 +189,7 @@ */ /*! - \fn void QPtrQueue::setAutoDelete( bool enable ) + \fn void TQPtrQueue::setAutoDelete( bool enable ) Sets the queue to auto-delete its contents if \a enable is TRUE and not to delete them if \a enable is FALSE. @@ -206,8 +206,8 @@ */ /*! - \fn QDataStream& QPtrQueue::read( QDataStream& s, - QPtrCollection::Item& item ) + \fn QDataStream& TQPtrQueue::read( QDataStream& s, + TQPtrCollection::Item& item ) Reads a queue item, \a item, from the stream \a s and returns a reference to the stream. @@ -218,8 +218,8 @@ */ /*! - \fn QDataStream& QPtrQueue::write( QDataStream& s, - QPtrCollection::Item item ) const + \fn QDataStream& TQPtrQueue::write( QDataStream& s, + TQPtrCollection::Item item ) const Writes a queue item, \a item, to the stream \a s and returns a reference to the stream. diff --git a/doc/qptrstack.doc b/doc/tqptrstack.doc index 585d93c44..6c07f7188 100644 --- a/doc/qptrstack.doc +++ b/doc/tqptrstack.doc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** QPtrStack class documentation +** TQPtrStack class documentation ** ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. ** @@ -38,18 +38,18 @@ /***************************************************************************** - QPtrStack documentation + TQPtrStack documentation *****************************************************************************/ /*! - \class QPtrStack ntqptrstack.h - \brief The QPtrStack class is a template class that provides a stack. + \class TQPtrStack tqptrstack.h + \brief The TQPtrStack class is a template class that provides a stack. \ingroup tools TQValueStack is an STL-compatible alternative to this class. - Define a template instance QPtrStack\<X\> to create a stack that + Define a template instance TQPtrStack\<X\> to create a stack that operates on pointers to X, (X*). A stack is a last in, first out (LIFO) structure. Items are added @@ -59,33 +59,33 @@ You can control the stack's deletion policy with setAutoDelete(). - For compatibility with the QPtrCollection classes current() and + For compatibility with the TQPtrCollection classes current() and remove() are provided; they both operate on the top(). - \sa QPtrList QPtrQueue + \sa TQPtrList TQPtrQueue */ /*! - \fn QPtrStack::QPtrStack () + \fn TQPtrStack::TQPtrStack () Creates an empty stack. */ /*! - \fn QPtrStack::QPtrStack (const QPtrStack<type>& s) + \fn TQPtrStack::TQPtrStack (const TQPtrStack<type>& s) Creates a stack by making a shallow copy of another stack \a s. */ /*! - \fn QPtrStack::~QPtrStack () + \fn TQPtrStack::~TQPtrStack () Destroys the stack. All items will be deleted if autoDelete() is TRUE. */ /*! - \fn QPtrStack<type>& QPtrStack::operator= (const QPtrStack<type>& s) + \fn TQPtrStack<type>& TQPtrStack::operator= (const TQPtrStack<type>& s) Sets the contents of this stack by making a shallow copy of another stack \a s. Elements currently in this stack will be @@ -93,27 +93,27 @@ */ /*! - \fn bool QPtrStack::isEmpty () const + \fn bool TQPtrStack::isEmpty () const Returns TRUE if the stack contains no elements; otherwise returns FALSE. */ /*! - \fn void QPtrStack::push (const type* d) + \fn void TQPtrStack::push (const type* d) Adds an element \a d to the top of the stack. Last in, first out. */ /*! - \fn type* QPtrStack::pop () + \fn type* TQPtrStack::pop () Removes the top item from the stack and returns it. The stack must not be empty. */ /*! - \fn bool QPtrStack::remove () + \fn bool TQPtrStack::remove () Removes the top item from the stack and deletes it if autoDelete() is TRUE. Returns TRUE if there was an item to pop; otherwise @@ -123,7 +123,7 @@ */ /*! - \fn void QPtrStack::clear() + \fn void TQPtrStack::clear() Removes all items from the stack, deleting them if autoDelete() is TRUE. @@ -132,7 +132,7 @@ */ /*! - \fn uint QPtrStack::count() const + \fn uint TQPtrStack::count() const Returns the number of items in the stack. @@ -140,7 +140,7 @@ */ /*! - \fn type* QPtrStack::top () const + \fn type* TQPtrStack::top () const Returns a pointer to the top item on the stack (most recently pushed). The stack is not changed. Returns 0 if the stack is @@ -148,7 +148,7 @@ */ /*! - \fn QPtrStack::operator type* ()const + \fn TQPtrStack::operator type* ()const Returns a pointer to the top item on the stack (most recently pushed). The stack is not changed. Returns 0 if the stack is @@ -156,7 +156,7 @@ */ /*! - \fn type* QPtrStack::current () const + \fn type* TQPtrStack::current () const Returns a pointer to the top item on the stack (most recently pushed). The stack is not changed. Returns 0 if the stack is @@ -164,18 +164,18 @@ */ /*! - \fn bool QPtrStack::autoDelete() const + \fn bool TQPtrStack::autoDelete() const - The same as QPtrCollection::autoDelete(). + The same as TQPtrCollection::autoDelete(). \sa setAutoDelete() */ /*! - \fn void QPtrStack::setAutoDelete( bool enable ) + \fn void TQPtrStack::setAutoDelete( bool enable ) Defines whether this stack auto-deletes its contents. The same as - QPtrCollection::setAutoDelete(). + TQPtrCollection::setAutoDelete(). If \a enable is TRUE the stack auto-deletes its contents; if \a enable is FALSE the stack does not delete its contents. @@ -184,8 +184,8 @@ */ /*! - \fn QDataStream& QPtrStack::read( QDataStream& s, - QPtrCollection::Item& item ) + \fn QDataStream& TQPtrStack::read( QDataStream& s, + TQPtrCollection::Item& item ) Reads a stack item, \a item, from the stream \a s and returns a reference to the stream. @@ -196,8 +196,8 @@ */ /*! - \fn QDataStream& QPtrStack::write( QDataStream& s, - QPtrCollection::Item item ) const + \fn QDataStream& TQPtrStack::write( QDataStream& s, + TQPtrCollection::Item item ) const Writes a stack item, \a item, to the stream \a s and returns a reference to the stream. diff --git a/doc/qptrvector.doc b/doc/tqptrvector.doc index 05ea6f45c..abc4be395 100644 --- a/doc/qptrvector.doc +++ b/doc/tqptrvector.doc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** QPtrVector class documentation +** TQPtrVector class documentation ** ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. ** @@ -38,12 +38,12 @@ /***************************************************************************** - QPtrVector documentation + TQPtrVector documentation *****************************************************************************/ /*! - \class QPtrVector ntqptrvector.h - \brief The QPtrVector class is a template collection class that + \class TQPtrVector tqptrvector.h + \brief The TQPtrVector class is a template collection class that provides a vector (array). \ingroup tools @@ -52,14 +52,14 @@ TQValueVector is an STL-compatible alternative to this class. - QPtrVector is implemented as a template class. Defines a template - instance QPtrVector\<X\> to create a vector that contains pointers + TQPtrVector is implemented as a template class. Defines a template + instance TQPtrVector\<X\> to create a vector that contains pointers to X (X*). A vector is the same as an array. The main difference between - QPtrVector and QMemArray is that QPtrVector stores pointers to the + TQPtrVector and QMemArray is that TQPtrVector stores pointers to the elements, whereas QMemArray stores the elements themselves (i.e. - QMemArray is value-based and QPtrVector is pointer-based). + QMemArray is value-based and TQPtrVector is pointer-based). Items are added to the vector using insert() or fill(). Items are removed with remove(). You can get a pointer to an item at a @@ -86,7 +86,7 @@ */ /*! - \fn QPtrVector::QPtrVector() + \fn TQPtrVector::TQPtrVector() Constructs a null vector. @@ -94,7 +94,7 @@ */ /*! - \fn QPtrVector::QPtrVector( uint size ) + \fn TQPtrVector::TQPtrVector( uint size ) Constructs an vector with room for \a size items. Makes a null vector if \a size == 0. @@ -105,14 +105,14 @@ */ /*! - \fn QPtrVector::QPtrVector( const QPtrVector<type> &v ) + \fn TQPtrVector::TQPtrVector( const TQPtrVector<type> &v ) Constructs a copy of \a v. Only the pointers are copied (i.e. shallow copy). */ /*! - \fn QPtrVector::~QPtrVector() + \fn TQPtrVector::~TQPtrVector() Removes all items from the vector, and destroys the vector itself. @@ -120,7 +120,7 @@ */ /*! - \fn QPtrVector<type> &QPtrVector::operator=( const QPtrVector<type> &v ) + \fn TQPtrVector<type> &TQPtrVector::operator=( const TQPtrVector<type> &v ) Assigns \a v to this vector and returns a reference to this vector. @@ -133,7 +133,7 @@ */ /*! - \fn type **QPtrVector::data() const + \fn type **TQPtrVector::data() const Returns a pointer to the actual vector data, which is an array of type*. @@ -144,7 +144,7 @@ */ /*! - \fn uint QPtrVector::size() const + \fn uint TQPtrVector::size() const Returns the size of the vector, i.e. the number of vector positions. This is also the maximum number of items the vector can @@ -156,7 +156,7 @@ */ /*! - \fn uint QPtrVector::count() const + \fn uint TQPtrVector::count() const Returns the number of items in the vector. The vector is empty if count() == 0. @@ -165,7 +165,7 @@ */ /*! - \fn bool QPtrVector::isEmpty() const + \fn bool TQPtrVector::isEmpty() const Returns TRUE if the vector is empty; otherwise returns FALSE. @@ -173,7 +173,7 @@ */ /*! - \fn bool QPtrVector::isNull() const + \fn bool TQPtrVector::isNull() const Returns TRUE if the vector is null; otherwise returns FALSE. @@ -183,7 +183,7 @@ */ /*! - \fn bool QPtrVector::resize( uint size ) + \fn bool TQPtrVector::resize( uint size ) Resizes (expands or shrinks) the vector to \a size elements. The vector becomes a null vector if \a size == 0. @@ -198,7 +198,7 @@ */ /*! - \fn bool QPtrVector::insert( uint i, const type *d ) + \fn bool TQPtrVector::insert( uint i, const type *d ) Sets position \a i in the vector to contain the item \a d. \a i must be less than size(). Any previous element in position \a i is @@ -208,7 +208,7 @@ */ /*! - \fn bool QPtrVector::remove( uint i ) + \fn bool TQPtrVector::remove( uint i ) Removes the item at position \a i in the vector, if there is one. \a i must be less than size(). @@ -219,7 +219,7 @@ */ /*! - \fn type* QPtrVector::take( uint i ) + \fn type* TQPtrVector::take( uint i ) Returns the item at position \a i in the vector, and removes that item from the vector. \a i must be less than size(). If there is @@ -232,7 +232,7 @@ */ /*! - \fn void QPtrVector::clear() + \fn void TQPtrVector::clear() Removes all items from the vector, and destroys the vector itself. @@ -242,7 +242,7 @@ */ /*! - \fn bool QPtrVector::fill( const type *d, int size ) + \fn bool TQPtrVector::fill( const type *d, int size ) Inserts item \a d in all positions in the vector. Any existing items are removed. If \a d is 0, the vector becomes empty. @@ -258,7 +258,7 @@ */ /*! - \fn void QPtrVector::sort() + \fn void TQPtrVector::sort() Sorts the items in ascending order. Any empty positions will be put last. @@ -269,7 +269,7 @@ */ /*! - \fn int QPtrVector::bsearch( const type* d ) const + \fn int TQPtrVector::bsearch( const type* d ) const In a sorted array, finds the first occurrence of \a d using a binary search. For a sorted array, this is generally much faster @@ -285,7 +285,7 @@ /*! - \fn int QPtrVector::findRef( const type *d, uint i ) const + \fn int TQPtrVector::findRef( const type *d, uint i ) const Finds the first occurrence of the item pointer \a d in the vector using a linear search. The search starts at position \a i, which @@ -302,7 +302,7 @@ */ /*! - \fn int QPtrVector::find( const type *d, uint i ) const + \fn int TQPtrVector::find( const type *d, uint i ) const Finds the first occurrence of item \a d in the vector using a linear search. The search starts at position \a i, which must be @@ -320,7 +320,7 @@ /*! - \fn uint QPtrVector::containsRef( const type *d ) const + \fn uint TQPtrVector::containsRef( const type *d ) const Returns the number of occurrences of the item pointer \a d in the vector. @@ -331,7 +331,7 @@ */ /*! - \fn uint QPtrVector::contains( const type *d ) const + \fn uint TQPtrVector::contains( const type *d ) const Returns the number of occurrences of item \a d in the vector. @@ -341,7 +341,7 @@ */ /*! - \fn type *QPtrVector::operator[]( int i ) const + \fn type *TQPtrVector::operator[]( int i ) const Returns the item at position \a i, or 0 if there is no item at that position. \a i must be less than size(). @@ -352,7 +352,7 @@ */ /*! - \fn type *QPtrVector::at( uint i ) const + \fn type *TQPtrVector::at( uint i ) const Returns the item at position \a i, or 0 if there is no item at that position. \a i must be less than size(). @@ -360,19 +360,19 @@ /*! - \fn void QPtrVector::toList( QGList *list ) const + \fn void TQPtrVector::toList( QGList *list ) const \internal Copies all items in this vector to the list \a list. \a list is first cleared and then all items are appended to \a list. - \sa QPtrList, QPtrStack, QPtrQueue + \sa TQPtrList, TQPtrStack, TQPtrQueue */ /*! - \fn int QPtrVector::compareItems( QPtrCollection::Item d1, - QPtrCollection::Item d2 ) + \fn int TQPtrVector::compareItems( TQPtrCollection::Item d1, + TQPtrCollection::Item d2 ) This virtual function compares two list items. @@ -399,8 +399,8 @@ */ /*! - \fn QDataStream& QPtrVector::read( QDataStream &s, - QPtrCollection::Item &item ) + \fn QDataStream& TQPtrVector::read( QDataStream &s, + TQPtrCollection::Item &item ) Reads a vector item, \a item, from the stream \a s and returns a reference to the stream. @@ -411,8 +411,8 @@ */ /*! - \fn QDataStream& QPtrVector::write( QDataStream &s, - QPtrCollection::Item item ) const + \fn QDataStream& TQPtrVector::write( QDataStream &s, + TQPtrCollection::Item item ) const Writes a vector item, \a item, to the stream \a s and returns a reference to the stream. @@ -423,7 +423,7 @@ */ /*! - \fn bool QPtrVector::operator==( const QPtrVector<type> &v ) const + \fn bool TQPtrVector::operator==( const TQPtrVector<type> &v ) const Returns TRUE if this vector and \a v are equal; otherwise returns FALSE. diff --git a/doc/tqvaluelist.doc b/doc/tqvaluelist.doc index 846282e09..4eba79409 100644 --- a/doc/tqvaluelist.doc +++ b/doc/tqvaluelist.doc @@ -61,12 +61,12 @@ values that all have the class T. Note that TQValueList does not store pointers to the members of the list; it holds a copy of every member. This is why these kinds of classes are called "value - based"; QPtrList and QDict are "pointer based". + based"; TQPtrList and QDict are "pointer based". TQValueList contains and manages a collection of objects of type T and provides iterators that allow the contained objects to be addressed. TQValueList owns the contained items. For more relaxed - ownership semantics, see QPtrCollection and friends which are + ownership semantics, see TQPtrCollection and friends which are pointer-based containers. Some classes cannot be used within a TQValueList, for example, all diff --git a/doc/tqvaluestack.doc b/doc/tqvaluestack.doc index 39f9f07ac..9197110ec 100644 --- a/doc/tqvaluestack.doc +++ b/doc/tqvaluestack.doc @@ -57,7 +57,7 @@ Note that TQValueStack does not store pointers to the members of the stack; it holds a copy of every member. That is why these - kinds of classes are called "value based"; QPtrStack, QPtrList, + kinds of classes are called "value based"; TQPtrStack, TQPtrList, QDict, etc., are "pointer based". A stack is a last in, first out (LIFO) structure. Items are added @@ -81,7 +81,7 @@ \endcode TQValueStack is a specialized TQValueList provided for convenience. - All of TQValueList's functionality also applies to QPtrStack, for + All of TQValueList's functionality also applies to TQPtrStack, for example the facility to iterate over all elements using TQValueStack<T>::Iterator. See TQValueListIterator for further details. diff --git a/doc/tqvaluevector.doc b/doc/tqvaluevector.doc index bb2c12a5b..ecb09f2c5 100644 --- a/doc/tqvaluevector.doc +++ b/doc/tqvaluevector.doc @@ -60,12 +60,12 @@ of values that all have the class T. TQValueVector does not store pointers to the members of the vector; it holds a copy of every member. TQValueVector is said to be value based; in contrast, - QPtrList and QDict are pointer based. + TQPtrList and QDict are pointer based. TQValueVector contains and manages a collection of objects of type T and provides random access iterators that allow the contained objects to be addressed. TQValueVector owns the contained - elements. For more relaxed ownership semantics, see QPtrCollection + elements. For more relaxed ownership semantics, see TQPtrCollection and friends, which are pointer-based containers. TQValueVector provides good performance if you append or remove diff --git a/doc/xml-sax-features-walkthrough.doc b/doc/xml-sax-features-walkthrough.doc index baffbbe1d..72ca41d2a 100644 --- a/doc/xml-sax-features-walkthrough.doc +++ b/doc/xml-sax-features-walkthrough.doc @@ -235,7 +235,7 @@ All we have to implement so far is content handling. In addition we have a function that selects a listview for the output. -\printuntil QPtrStack +\printuntil TQPtrStack Keep in mind that we write a SAX2 parser that doesn't have an object model to keep all elements and attributes @@ -323,13 +323,13 @@ Therefore we define a \l QListViewItem variable. As long as the element \e stack isn't empty the current element is a child of the topmost (last unclosed) element on the stack. Thus we -create a new \l QListViewItem as a child of QPtrStack::stack.top() with +create a new \l QListViewItem as a child of TQPtrStack::stack.top() with the new element's qualified name in the first column and the according namespace URI (or nothing) in the second one. The QListViewItem is usally inserted as the first child. This means that we would get the elements in reverse order. So we first search for the last -child of the QPtrStack::stack.top() element and insert it after this +child of the TQPtrStack::stack.top() element and insert it after this element. In a valid XML document this applies to all elements except diff --git a/examples/customlayout/border.h b/examples/customlayout/border.h index 98788aa61..8229b118e 100644 --- a/examples/customlayout/border.h +++ b/examples/customlayout/border.h @@ -15,7 +15,7 @@ #define BORDER_H #include <ntqlayout.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class BorderWidgetItem : public TQWidgetItem { diff --git a/examples/customlayout/card.h b/examples/customlayout/card.h index 0e7f8ed79..dfe314877 100644 --- a/examples/customlayout/card.h +++ b/examples/customlayout/card.h @@ -15,7 +15,7 @@ #define CARD_H #include <ntqlayout.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class CardLayout : public TQLayout { diff --git a/examples/customlayout/flow.h b/examples/customlayout/flow.h index 5b5421cdf..a2c854556 100644 --- a/examples/customlayout/flow.h +++ b/examples/customlayout/flow.h @@ -15,7 +15,7 @@ #define FLOW_H #include <ntqlayout.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class SimpleFlow : public TQLayout { diff --git a/examples/demo/qasteroids/ledmeter.h b/examples/demo/qasteroids/ledmeter.h index 720afd6e0..4cdf62bad 100644 --- a/examples/demo/qasteroids/ledmeter.h +++ b/examples/demo/qasteroids/ledmeter.h @@ -8,7 +8,7 @@ #define __LEDMETER_H__ #include <ntqframe.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class KALedMeter : public TQFrame diff --git a/examples/demo/qasteroids/view.h b/examples/demo/qasteroids/view.h index bbc873b31..89c1ba421 100644 --- a/examples/demo/qasteroids/view.h +++ b/examples/demo/qasteroids/view.h @@ -8,7 +8,7 @@ #define __AST_VIEW_H__ #include <tqwidget.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqintdict.h> #include <ntqtimer.h> #include <tqcanvas.h> diff --git a/examples/helpdemo/helpdemo.h b/examples/helpdemo/helpdemo.h index c6d40ac48..4c808adb9 100644 --- a/examples/helpdemo/helpdemo.h +++ b/examples/helpdemo/helpdemo.h @@ -1,7 +1,7 @@ #ifndef HELPDEMO_H #define HELPDEMO_H -#include <ntqptrdict.h> +#include <tqptrdict.h> #include "helpdemobase.h" diff --git a/examples/listviews/listviews.h b/examples/listviews/listviews.h index f6c2b461a..6b9cc7ea4 100644 --- a/examples/listviews/listviews.h +++ b/examples/listviews/listviews.h @@ -14,7 +14,7 @@ #include <ntqstring.h> #include <tqobject.h> #include <ntqdatetime.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqlistview.h> class TQListView; diff --git a/examples/mdi/application.h b/examples/mdi/application.h index 33e87fac1..15562ac54 100644 --- a/examples/mdi/application.h +++ b/examples/mdi/application.h @@ -11,7 +11,7 @@ #define APPLICATION_H #include <ntqmainwindow.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class TQTextEdit; class TQToolBar; diff --git a/examples/qwerty/qwerty.cpp b/examples/qwerty/qwerty.cpp index 28dbc48a9..928fd27ab 100644 --- a/examples/qwerty/qwerty.cpp +++ b/examples/qwerty/qwerty.cpp @@ -16,7 +16,7 @@ #include <ntqpainter.h> #include <ntqmessagebox.h> #include <ntqpaintdevicemetrics.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqfontdialog.h> #include <ntqtextcodec.h> diff --git a/examples/tetrix/qdragapp.cpp b/examples/tetrix/qdragapp.cpp index de234f16f..7004f4784 100644 --- a/examples/tetrix/qdragapp.cpp +++ b/examples/tetrix/qdragapp.cpp @@ -8,7 +8,7 @@ *****************************************************************************/ #include "qdragapp.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqintdict.h" #include "ntqpopupmenu.h" #include "ntqguardedptr.h" diff --git a/examples/tictac/tictac.h b/examples/tictac/tictac.h index 1bf3927e6..ceb7fc506 100644 --- a/examples/tictac/tictac.h +++ b/examples/tictac/tictac.h @@ -12,7 +12,7 @@ #include <ntqpushbutton.h> -#include <ntqptrvector.h> +#include <tqptrvector.h> class TQComboBox; class TQLabel; diff --git a/examples/xml/tagreader-with-features/structureparser.h b/examples/xml/tagreader-with-features/structureparser.h index 56b7b5fc9..e1aa81593 100644 --- a/examples/xml/tagreader-with-features/structureparser.h +++ b/examples/xml/tagreader-with-features/structureparser.h @@ -5,7 +5,7 @@ #define STRUCTUREPARSER_H #include <tqxml.h> -#include <ntqptrstack.h> +#include <tqptrstack.h> class TQListView; class TQListViewItem; diff --git a/extensions/nsplugin/examples/grapher/grapher.cpp b/extensions/nsplugin/examples/grapher/grapher.cpp index 328a6b359..bbf24ba78 100644 --- a/extensions/nsplugin/examples/grapher/grapher.cpp +++ b/extensions/nsplugin/examples/grapher/grapher.cpp @@ -8,7 +8,7 @@ #include <ntqpixmap.h> #include <ntqmenubar.h> #include <ntqpushbutton.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqmessagebox.h> // Include some C library functions. diff --git a/include/ntqptrcollection.h b/include/ntqptrcollection.h deleted file mode 120000 index db4a3c1a7..000000000 --- a/include/ntqptrcollection.h +++ /dev/null @@ -1 +0,0 @@ -../src/tools/ntqptrcollection.h
\ No newline at end of file diff --git a/include/ntqptrdict.h b/include/ntqptrdict.h deleted file mode 120000 index b015621ed..000000000 --- a/include/ntqptrdict.h +++ /dev/null @@ -1 +0,0 @@ -../src/tools/ntqptrdict.h
\ No newline at end of file diff --git a/include/ntqptrlist.h b/include/ntqptrlist.h deleted file mode 120000 index 18d351546..000000000 --- a/include/ntqptrlist.h +++ /dev/null @@ -1 +0,0 @@ -../src/tools/ntqptrlist.h
\ No newline at end of file diff --git a/include/ntqptrqueue.h b/include/ntqptrqueue.h deleted file mode 120000 index c5f4fd822..000000000 --- a/include/ntqptrqueue.h +++ /dev/null @@ -1 +0,0 @@ -../src/tools/ntqptrqueue.h
\ No newline at end of file diff --git a/include/ntqptrstack.h b/include/ntqptrstack.h deleted file mode 120000 index 4b778a409..000000000 --- a/include/ntqptrstack.h +++ /dev/null @@ -1 +0,0 @@ -../src/tools/ntqptrstack.h
\ No newline at end of file diff --git a/include/ntqptrvector.h b/include/ntqptrvector.h deleted file mode 120000 index d6fcf2d07..000000000 --- a/include/ntqptrvector.h +++ /dev/null @@ -1 +0,0 @@ -../src/tools/ntqptrvector.h
\ No newline at end of file diff --git a/include/tqptrcollection.h b/include/tqptrcollection.h new file mode 120000 index 000000000..5d7529f3a --- /dev/null +++ b/include/tqptrcollection.h @@ -0,0 +1 @@ +../src/tools/tqptrcollection.h
\ No newline at end of file diff --git a/include/tqptrdict.h b/include/tqptrdict.h new file mode 120000 index 000000000..eed77ac54 --- /dev/null +++ b/include/tqptrdict.h @@ -0,0 +1 @@ +../src/tools/tqptrdict.h
\ No newline at end of file diff --git a/include/tqptrlist.h b/include/tqptrlist.h new file mode 120000 index 000000000..46f5f7654 --- /dev/null +++ b/include/tqptrlist.h @@ -0,0 +1 @@ +../src/tools/tqptrlist.h
\ No newline at end of file diff --git a/include/tqptrqueue.h b/include/tqptrqueue.h new file mode 120000 index 000000000..2f589c5df --- /dev/null +++ b/include/tqptrqueue.h @@ -0,0 +1 @@ +../src/tools/tqptrqueue.h
\ No newline at end of file diff --git a/include/tqptrstack.h b/include/tqptrstack.h new file mode 120000 index 000000000..74d599b7a --- /dev/null +++ b/include/tqptrstack.h @@ -0,0 +1 @@ +../src/tools/tqptrstack.h
\ No newline at end of file diff --git a/include/tqptrvector.h b/include/tqptrvector.h new file mode 120000 index 000000000..062547f3e --- /dev/null +++ b/include/tqptrvector.h @@ -0,0 +1 @@ +../src/tools/tqptrvector.h
\ No newline at end of file diff --git a/plugins/src/codecs/cn/main.cpp b/plugins/src/codecs/cn/main.cpp index 36ea2709e..b5a7f2cf8 100644 --- a/plugins/src/codecs/cn/main.cpp +++ b/plugins/src/codecs/cn/main.cpp @@ -1,6 +1,6 @@ #include <ntqtextcodecplugin.h> #include <ntqtextcodec.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqapplication.h> #include <ntqgb18030codec.h> diff --git a/plugins/src/codecs/jp/main.cpp b/plugins/src/codecs/jp/main.cpp index 5c34c16d2..e8de7fef6 100644 --- a/plugins/src/codecs/jp/main.cpp +++ b/plugins/src/codecs/jp/main.cpp @@ -1,6 +1,6 @@ #include <ntqtextcodecplugin.h> #include <ntqtextcodec.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqeucjpcodec.h> #include <ntqjiscodec.h> diff --git a/plugins/src/codecs/kr/main.cpp b/plugins/src/codecs/kr/main.cpp index e024d64c0..72f0b5cdf 100644 --- a/plugins/src/codecs/kr/main.cpp +++ b/plugins/src/codecs/kr/main.cpp @@ -1,6 +1,6 @@ #include <ntqtextcodecplugin.h> #include <ntqtextcodec.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqeuckrcodec.h> #include <private/qfontcodecs_p.h> diff --git a/plugins/src/codecs/tw/main.cpp b/plugins/src/codecs/tw/main.cpp index 85e746b32..0e8ec6a52 100644 --- a/plugins/src/codecs/tw/main.cpp +++ b/plugins/src/codecs/tw/main.cpp @@ -1,6 +1,6 @@ #include <ntqtextcodecplugin.h> #include <ntqtextcodec.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqbig5codec.h> #include <private/qfontcodecs_p.h> diff --git a/plugins/src/inputmethods/xim/qximinputcontext_x11.cpp b/plugins/src/inputmethods/xim/qximinputcontext_x11.cpp index 024395274..a18ece998 100644 --- a/plugins/src/inputmethods/xim/qximinputcontext_x11.cpp +++ b/plugins/src/inputmethods/xim/qximinputcontext_x11.cpp @@ -48,7 +48,7 @@ const int XKeyRelease = KeyRelease; #include "ntqapplication.h" #include "tqwidget.h" #include "ntqstring.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqintdict.h" #include "ntqtextcodec.h" diff --git a/qmake/Makefile.unix b/qmake/Makefile.unix index 9f4749190..51042f19d 100644 --- a/qmake/Makefile.unix +++ b/qmake/Makefile.unix @@ -6,7 +6,7 @@ OBJS=project.o property.o main.o makefile.o unixmake2.o unixmake.o msvc_nmake.o #qt code QOBJS=qstring.o qtextstream.o qiodevice.o qglobal.o qgdict.o qcstring.o \ - qdatastream.o qgarray.o qbuffer.o qglist.o qptrcollection.o qfile.o \ + qdatastream.o qgarray.o qbuffer.o qglist.o tqptrcollection.o qfile.o \ qfile_unix.o qregexp.o qgvector.o qgcache.o qbitarray.o qdir.o quuid.o \ qfileinfo_unix.o qdir_unix.o qfileinfo.o qdatetime.o qstringlist.o tqmap.o \ qconfig.o qunicodetables.o qsettings.o qlocale.o @QMAKE_QTOBJS@ @@ -21,7 +21,7 @@ DEPEND_SRC=project.cpp property.cpp meta.cpp main.cpp qtmd5.cpp generators/makef @SOURCE_PATH@/src/tools/qgdict.cpp @SOURCE_PATH@/src/tools/qcstring.cpp \ @SOURCE_PATH@/src/tools/qdatastream.cpp @SOURCE_PATH@/src/tools/qgarray.cpp \ @SOURCE_PATH@/src/tools/qbuffer.cpp @SOURCE_PATH@/src/tools/qglist.cpp \ - @SOURCE_PATH@/src/tools/qptrcollection.cpp @SOURCE_PATH@/src/tools/qfile.cpp \ + @SOURCE_PATH@/src/tools/tqptrcollection.cpp @SOURCE_PATH@/src/tools/qfile.cpp \ @SOURCE_PATH@/src/tools/qfile_unix.cpp @SOURCE_PATH@/src/tools/qregexp.cpp \ @SOURCE_PATH@/src/tools/qgvector.cpp @SOURCE_PATH@/src/tools/qgcache.cpp \ @SOURCE_PATH@/src/tools/qbitarray.cpp @SOURCE_PATH@/src/tools/qdir.cpp \ @@ -105,8 +105,8 @@ qbuffer.o: @SOURCE_PATH@/src/tools/qbuffer.cpp qglist.o: @SOURCE_PATH@/src/tools/qglist.cpp $(CXX) -c -o $@ $(CXXFLAGS) @SOURCE_PATH@/src/tools/qglist.cpp -qptrcollection.o: @SOURCE_PATH@/src/tools/qptrcollection.cpp - $(CXX) -c -o $@ $(CXXFLAGS) @SOURCE_PATH@/src/tools/qptrcollection.cpp +tqptrcollection.o: @SOURCE_PATH@/src/tools/tqptrcollection.cpp + $(CXX) -c -o $@ $(CXXFLAGS) @SOURCE_PATH@/src/tools/tqptrcollection.cpp qfile.o: @SOURCE_PATH@/src/tools/qfile.cpp $(CXX) -c -o $@ $(CXXFLAGS) @SOURCE_PATH@/src/tools/qfile.cpp diff --git a/qmake/Makefile.win32-g++ b/qmake/Makefile.win32-g++ index b0f8f1371..f961f6118 100644 --- a/qmake/Makefile.win32-g++ +++ b/qmake/Makefile.win32-g++ @@ -20,7 +20,7 @@ OBJS=project.o main.o makefile.o unixmake.o unixmake2.o borland_bmake.o mingw_ma #qt code QTOBJS=qstring.o quuid.o qtextstream.o qiodevice.o qglobal.o qgdict.o qcstring.o qdatastream.o \ - qgarray.o qbuffer.o qglist.o qptrcollection.o qfile.o qfile_win.o qregexp.o qgvector.o \ + qgarray.o qbuffer.o qglist.o tqptrcollection.o qfile.o qfile_win.o qregexp.o qgvector.o \ qgcache.o qbitarray.o qdir.o qfileinfo_win.o qdir_win.o qfileinfo.o qdatetime.o \ qstringlist.o tqmap.o qlibrary.o qlibrary_win.o qconfig.o qsettings.o qsettings_win.o qunicodetables.o \ qlocale.o @@ -88,8 +88,8 @@ qbuffer.o: ..\src\tools\qbuffer.cpp qglist.o: ..\src\tools\qglist.cpp $(CXX) $(CXXFLAGS) ..\src\tools\qglist.cpp -qptrcollection.o: ..\src\tools\qptrcollection.cpp - $(CXX) $(CXXFLAGS) ..\src\tools\qptrcollection.cpp +tqptrcollection.o: ..\src\tools\tqptrcollection.cpp + $(CXX) $(CXXFLAGS) ..\src\tools\tqptrcollection.cpp qfile.o: ..\src\tools\qfile.cpp $(CXX) $(CXXFLAGS) ..\src\tools\qfile.cpp diff --git a/src/canvas/tqcanvas.cpp b/src/canvas/tqcanvas.cpp index cd03790a4..6e1db596b 100644 --- a/src/canvas/tqcanvas.cpp +++ b/src/canvas/tqcanvas.cpp @@ -43,7 +43,7 @@ #include "ntqapplication.h" #include "ntqbitmap.h" #include "ntqimage.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqpainter.h" #include "ntqpolygonscanner.h" #include "ntqtimer.h" diff --git a/src/canvas/tqcanvas.h b/src/canvas/tqcanvas.h index 744f21f53..2a8475247 100644 --- a/src/canvas/tqcanvas.h +++ b/src/canvas/tqcanvas.h @@ -44,7 +44,7 @@ #ifndef QT_H #include "ntqscrollview.h" #include "ntqpixmap.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqbrush.h" #include "ntqpen.h" #include "tqvaluelist.h" diff --git a/src/dialogs/qfiledialog.cpp b/src/dialogs/qfiledialog.cpp index 8812f2102..911b22c28 100644 --- a/src/dialogs/qfiledialog.cpp +++ b/src/dialogs/qfiledialog.cpp @@ -82,7 +82,7 @@ #include "ntqpainter.h" #include "ntqpopupmenu.h" #include "ntqprogressbar.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqpushbutton.h" #include "ntqregexp.h" #include "ntqsplitter.h" diff --git a/src/dialogs/qwizard.cpp b/src/dialogs/qwizard.cpp index 9e1d31a7f..e5b3f8f46 100644 --- a/src/dialogs/qwizard.cpp +++ b/src/dialogs/qwizard.cpp @@ -48,7 +48,7 @@ #include "ntqlabel.h" #include "tqwidgetstack.h" #include "ntqapplication.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqpainter.h" #include "ntqaccel.h" diff --git a/src/kernel/ntqinputcontext.h b/src/kernel/ntqinputcontext.h index a37c01670..f782c1f7c 100644 --- a/src/kernel/ntqinputcontext.h +++ b/src/kernel/ntqinputcontext.h @@ -43,7 +43,7 @@ #include "ntqglobal.h" #include "ntqevent.h" #include "ntqstring.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif class TQWidget; diff --git a/src/kernel/ntqmime.h b/src/kernel/ntqmime.h index 50ed27994..00c31a375 100644 --- a/src/kernel/ntqmime.h +++ b/src/kernel/ntqmime.h @@ -125,7 +125,7 @@ private: #if defined(TQ_WS_WIN) #ifndef QT_H -#include "ntqptrlist.h" // down here for GCC 2.7.* compatibility +#include "tqptrlist.h" // down here for GCC 2.7.* compatibility #endif // QT_H /* @@ -161,7 +161,7 @@ public: #if defined(TQ_WS_MAC) #ifndef QT_H -#include "ntqptrlist.h" // down here for GCC 2.7.* compatibility +#include "tqptrlist.h" // down here for GCC 2.7.* compatibility #endif // QT_H /* diff --git a/src/kernel/ntqsignalslotimp.h b/src/kernel/ntqsignalslotimp.h index 375f8eaa8..80c18b5d2 100644 --- a/src/kernel/ntqsignalslotimp.h +++ b/src/kernel/ntqsignalslotimp.h @@ -43,8 +43,8 @@ #ifndef QT_H #include "ntqconnection.h" -#include "ntqptrlist.h" -#include "ntqptrvector.h" +#include "tqptrlist.h" +#include "tqptrvector.h" #endif // QT_H class TQ_EXPORT TQConnectionList : public TQPtrList<TQConnection> diff --git a/src/kernel/ntqstylesheet.h b/src/kernel/ntqstylesheet.h index d11548744..dbf5fd6ef 100644 --- a/src/kernel/ntqstylesheet.h +++ b/src/kernel/ntqstylesheet.h @@ -44,7 +44,7 @@ #ifndef QT_H #include "ntqstring.h" #include "tqvaluelist.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqdict.h" #include "tqobject.h" #endif // QT_H diff --git a/src/kernel/ntqt.h b/src/kernel/ntqt.h index eef4df773..fd10a18b0 100644 --- a/src/kernel/ntqt.h +++ b/src/kernel/ntqt.h @@ -18,7 +18,7 @@ #include "ntqglobal.h" #include "ntqfeatures.h" #include "ntqshared.h" -#include "ntqptrcollection.h" +#include "tqptrcollection.h" #include "ntqglist.h" #include "tqobjectdefs.h" #include "ntqnamespace.h" @@ -26,7 +26,7 @@ #include "ntqmemarray.h" #include "ntqcstring.h" #include "ntqstring.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqiodevice.h" #include "ntqkeysequence.h" #include "ntqwindowdefs.h" @@ -135,7 +135,7 @@ #include <ntqmotifplusstyle.h> #include <ntqcdestyle.h> #include <ntqmovie.h> -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqmutex.h" #include <ntqnetwork.h> #include <ntqftp.h> @@ -164,10 +164,10 @@ #include <ntqprocess.h> #include "ntqprogressbar.h" #include <ntqasciicache.h> -#include "ntqptrdict.h" +#include "tqptrdict.h" #include <ntqcleanuphandler.h> -#include <ntqptrqueue.h> -#include <ntqptrstack.h> +#include <tqptrqueue.h> +#include <tqptrstack.h> #include "ntqstylesheet.h" #include <ntqpushbutton.h> #include <ntqradiobutton.h> diff --git a/src/kernel/ntqurloperator.h b/src/kernel/ntqurloperator.h index 986fb25aa..f290b37f3 100644 --- a/src/kernel/ntqurloperator.h +++ b/src/kernel/ntqurloperator.h @@ -44,7 +44,7 @@ #ifndef QT_H #include "tqobject.h" #include "ntqurl.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqnetworkprotocol.h" #include "ntqstringlist.h" // TQString->TQStringList conversion #endif // QT_H diff --git a/src/kernel/qaccel.cpp b/src/kernel/qaccel.cpp index beb504052..8b37b92ef 100644 --- a/src/kernel/qaccel.cpp +++ b/src/kernel/qaccel.cpp @@ -45,7 +45,7 @@ #include "ntqsignal.h" #include "ntqapplication.h" #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqwhatsthis.h" #include "ntqguardedptr.h" #include "ntqstatusbar.h" diff --git a/src/kernel/qaccessible.cpp b/src/kernel/qaccessible.cpp index 8306faa0a..d486607ca 100644 --- a/src/kernel/qaccessible.cpp +++ b/src/kernel/qaccessible.cpp @@ -40,7 +40,7 @@ #if defined(QT_ACCESSIBILITY_SUPPORT) -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqmetaobject.h" #include <private/qpluginmanager_p.h> #include "ntqapplication.h" diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp index 39f8abc5a..e5b28642b 100644 --- a/src/kernel/qapplication.cpp +++ b/src/kernel/qapplication.cpp @@ -45,7 +45,7 @@ #include "tqwidget.h" #include "tqwidgetlist.h" #include "tqwidgetintdict.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqcleanuphandler.h" #include "ntqtranslator.h" diff --git a/src/kernel/qasyncimageio.cpp b/src/kernel/qasyncimageio.cpp index 8605c79ad..c89036719 100644 --- a/src/kernel/qasyncimageio.cpp +++ b/src/kernel/qasyncimageio.cpp @@ -42,7 +42,7 @@ #ifndef TQT_NO_ASYNC_IMAGE_IO -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqgif.h" #include <stdlib.h> diff --git a/src/kernel/qeventloop_glib_p.h b/src/kernel/qeventloop_glib_p.h index b5dbbada1..f3711b62c 100644 --- a/src/kernel/qeventloop_glib_p.h +++ b/src/kernel/qeventloop_glib_p.h @@ -63,7 +63,7 @@ class TQSocketNotifier; -#include "ntqptrlist.h" +#include "tqptrlist.h" #include <glib.h> diff --git a/src/kernel/qeventloop_p.h b/src/kernel/qeventloop_p.h index d0e00f669..8ab5f954f 100644 --- a/src/kernel/qeventloop_p.h +++ b/src/kernel/qeventloop_p.h @@ -70,7 +70,7 @@ class TQMacSockNotPrivate; #endif #if defined(Q_OS_UNIX) || defined (TQ_WS_WIN) -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // Q_OS_UNIX || TQ_WS_WIN #if defined(Q_OS_UNIX) diff --git a/src/kernel/qfontengine_p.h b/src/kernel/qfontengine_p.h index 09fa32001..17aa618b6 100644 --- a/src/kernel/qfontengine_p.h +++ b/src/kernel/qfontengine_p.h @@ -43,7 +43,7 @@ #ifdef TQ_WS_WIN #include "qt_windows.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #endif #include "qtextengine_p.h" diff --git a/src/kernel/qimage.cpp b/src/kernel/qimage.cpp index 1097a5f80..3d7c15bfa 100644 --- a/src/kernel/qimage.cpp +++ b/src/kernel/qimage.cpp @@ -44,7 +44,7 @@ #include "ntqdatastream.h" #include "ntqtextstream.h" #include "ntqbuffer.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqasyncimageio.h" #include "ntqpngio.h" #include "ntqmngio.h" diff --git a/src/kernel/qinternal_p.h b/src/kernel/qinternal_p.h index e8142c8f5..6b4139f32 100644 --- a/src/kernel/qinternal_p.h +++ b/src/kernel/qinternal_p.h @@ -55,7 +55,7 @@ #ifndef QT_H #include "ntqnamespace.h" #include "ntqrect.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqcstring.h" #include "ntqiodevice.h" #endif // QT_H diff --git a/src/kernel/qlayout.cpp b/src/kernel/qlayout.cpp index 229a9ed7d..6fd85c407 100644 --- a/src/kernel/qlayout.cpp +++ b/src/kernel/qlayout.cpp @@ -44,7 +44,7 @@ #include "ntqapplication.h" #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqsizepolicy.h" #include "qlayoutengine_p.h" diff --git a/src/kernel/qmovie.cpp b/src/kernel/qmovie.cpp index 2f83cabff..cccfff435 100644 --- a/src/kernel/qmovie.cpp +++ b/src/kernel/qmovie.cpp @@ -42,7 +42,7 @@ #include "ntqtimer.h" #include "ntqpainter.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqbitmap.h" #include "ntqmovie.h" #include "ntqfile.h" diff --git a/src/kernel/qnetworkprotocol.cpp b/src/kernel/qnetworkprotocol.cpp index b8ad2b55d..8d7ff8f1a 100644 --- a/src/kernel/qnetworkprotocol.cpp +++ b/src/kernel/qnetworkprotocol.cpp @@ -46,7 +46,7 @@ #include "ntqurloperator.h" #include "ntqtimer.h" #include "tqmap.h" -#include "ntqptrqueue.h" +#include "tqptrqueue.h" //#define TQNETWORKPROTOCOL_DEBUG #define NETWORK_OP_DELAY 1000 diff --git a/src/kernel/qpainter.cpp b/src/kernel/qpainter.cpp index 3e3574dff..da78db89f 100644 --- a/src/kernel/qpainter.cpp +++ b/src/kernel/qpainter.cpp @@ -41,8 +41,8 @@ #include "ntqpainter.h" #include "qpainter_p.h" #include "ntqbitmap.h" -#include "ntqptrstack.h" -#include "ntqptrdict.h" +#include "tqptrstack.h" +#include "tqptrdict.h" #include "ntqdatastream.h" #include "tqwidget.h" #include "ntqimage.h" diff --git a/src/kernel/qprocess_unix.cpp b/src/kernel/qprocess_unix.cpp index 6d0f27abf..87f76848d 100644 --- a/src/kernel/qprocess_unix.cpp +++ b/src/kernel/qprocess_unix.cpp @@ -50,8 +50,8 @@ #ifndef TQT_NO_PROCESS #include "ntqapplication.h" -#include "ntqptrqueue.h" -#include "ntqptrlist.h" +#include "tqptrqueue.h" +#include "tqptrlist.h" #include "ntqsocketnotifier.h" #include "ntqtimer.h" #include "ntqcleanuphandler.h" diff --git a/src/kernel/qrichtext.cpp b/src/kernel/qrichtext.cpp index a2ab4d0e0..a74433d47 100644 --- a/src/kernel/qrichtext.cpp +++ b/src/kernel/qrichtext.cpp @@ -58,8 +58,8 @@ #include "ntqpainter.h" #include "ntqdrawutil.h" #include "ntqcursor.h" -#include "ntqptrstack.h" -#include "ntqptrdict.h" +#include "tqptrstack.h" +#include "tqptrdict.h" #include "ntqstyle.h" #include "ntqcleanuphandler.h" #include "qtextengine_p.h" diff --git a/src/kernel/qrichtext_p.h b/src/kernel/qrichtext_p.h index 874e61557..1d0c7627c 100644 --- a/src/kernel/qrichtext_p.h +++ b/src/kernel/qrichtext_p.h @@ -55,7 +55,7 @@ #ifndef QT_H #include "ntqstring.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqrect.h" #include "ntqfontmetrics.h" #include "ntqintdict.h" @@ -70,7 +70,7 @@ #include "ntqdict.h" #include "ntqpixmap.h" #include "ntqstylesheet.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqpainter.h" #include "ntqlayout.h" #include "tqobject.h" diff --git a/src/kernel/qsignalmapper.cpp b/src/kernel/qsignalmapper.cpp index 8efd27371..aff53a3c2 100644 --- a/src/kernel/qsignalmapper.cpp +++ b/src/kernel/qsignalmapper.cpp @@ -40,7 +40,7 @@ #include "ntqsignalmapper.h" #ifndef TQT_NO_SIGNALMAPPER -#include "ntqptrdict.h" +#include "tqptrdict.h" struct TQSignalMapperRec { TQSignalMapperRec() diff --git a/src/kernel/qsound.cpp b/src/kernel/qsound.cpp index 98d210427..adfdf84ee 100644 --- a/src/kernel/qsound.cpp +++ b/src/kernel/qsound.cpp @@ -42,7 +42,7 @@ #ifndef TQT_NO_SOUND -#include "ntqptrlist.h" +#include "tqptrlist.h" static TQPtrList<TQAuServer> *servers=0; diff --git a/src/kernel/qsound_x11.cpp b/src/kernel/qsound_x11.cpp index 2eaf0b46b..11d34e476 100644 --- a/src/kernel/qsound_x11.cpp +++ b/src/kernel/qsound_x11.cpp @@ -42,7 +42,7 @@ #ifndef TQT_NO_SOUND -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqsocketnotifier.h" #include "ntqapplication.h" diff --git a/src/kernel/qt_pch.h b/src/kernel/qt_pch.h index 3e5224ae6..54b968234 100644 --- a/src/kernel/qt_pch.h +++ b/src/kernel/qt_pch.h @@ -34,7 +34,7 @@ #include <ntqpainter.h> #include <ntqpixmap.h> #include <qplatformdefs.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqstring.h> #include <ntqstringlist.h> #include <ntqstyle.h> diff --git a/src/kernel/qurloperator.cpp b/src/kernel/qurloperator.cpp index e5b84ca51..5dc39e29c 100644 --- a/src/kernel/qurloperator.cpp +++ b/src/kernel/qurloperator.cpp @@ -46,7 +46,7 @@ #include "ntqnetworkprotocol.h" #include "tqmap.h" #include "ntqdir.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqguardedptr.h" //#define TQURLOPERATOR_DEBUG diff --git a/src/kernel/tqobject.cpp b/src/kernel/tqobject.cpp index d66f8cf16..b87fd8d07 100644 --- a/src/kernel/tqobject.cpp +++ b/src/kernel/tqobject.cpp @@ -47,7 +47,7 @@ #include "ntqmetaobject.h" #include <private/qucom_p.h> #include "qucomextra_p.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" // TQStyleControlElementData #include "ntqstyle.h" diff --git a/src/kernel/tqobjectlist.h b/src/kernel/tqobjectlist.h index 830a32e33..c7a965444 100644 --- a/src/kernel/tqobjectlist.h +++ b/src/kernel/tqobjectlist.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "tqobject.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H diff --git a/src/kernel/tqwidget.cpp b/src/kernel/tqwidget.cpp index 9345c31e4..118429a11 100644 --- a/src/kernel/tqwidget.cpp +++ b/src/kernel/tqwidget.cpp @@ -43,7 +43,7 @@ #include "tqwidget.h" #include "tqwidgetlist.h" #include "tqwidgetintdict.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqfocusdata.h" #include "ntqcursor.h" #include "ntqpixmap.h" diff --git a/src/kernel/tqwidgetlist.h b/src/kernel/tqwidgetlist.h index bcd7637cf..fe03669c7 100644 --- a/src/kernel/tqwidgetlist.h +++ b/src/kernel/tqwidgetlist.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H class TQ_EXPORT TQWidgetList : public TQPtrList<TQWidget> diff --git a/src/moc/moc.pro b/src/moc/moc.pro index 6871d9d93..f053ae338 100644 --- a/src/moc/moc.pro +++ b/src/moc/moc.pro @@ -13,7 +13,7 @@ DEPENDPATH += $$QT_SOURCE_TREE/include ../tools . LIBS = OBJECTS_DIR = . SOURCES = ../tools/qbuffer.cpp \ - ../tools/qptrcollection.cpp \ + ../tools/tqptrcollection.cpp \ ../tools/qcstring.cpp \ ../tools/qdatastream.cpp \ ../tools/qdatetime.cpp \ diff --git a/src/moc/moc.y b/src/moc/moc.y index 796647595..222ff3f27 100644 --- a/src/moc/moc.y +++ b/src/moc/moc.y @@ -64,7 +64,7 @@ void yyerror( const char *msg ); #include "ntqdict.h" #include "ntqfile.h" #include "ntqdir.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqregexp.h" #include "ntqstrlist.h" #ifdef MOC_MWERKS_PLUGIN diff --git a/src/moc/moc_yacc.cpp b/src/moc/moc_yacc.cpp index d6b97ad85..07406ceda 100644 --- a/src/moc/moc_yacc.cpp +++ b/src/moc/moc_yacc.cpp @@ -77,7 +77,7 @@ void yyerror( const char *msg ); #include "ntqdict.h" #include "ntqfile.h" #include "ntqdir.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqregexp.h" #include "ntqstrlist.h" #ifdef MOC_MWERKS_PLUGIN diff --git a/src/network/qdns.cpp b/src/network/qdns.cpp index b1eeaa53f..db93c4e92 100644 --- a/src/network/qdns.cpp +++ b/src/network/qdns.cpp @@ -66,13 +66,13 @@ #include "ntqdatetime.h" #include "ntqdict.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqstring.h" #include "ntqtimer.h" #include "ntqapplication.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqstrlist.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqfile.h" #include "ntqtextstream.h" #include "ntqsocketdevice.h" diff --git a/src/network/qftp.cpp b/src/network/qftp.cpp index 7a23afbf6..bdbfe47b5 100644 --- a/src/network/qftp.cpp +++ b/src/network/qftp.cpp @@ -50,7 +50,7 @@ #include "ntqregexp.h" #include "ntqtimer.h" #include "ntqfileinfo.h" -#include "ntqptrdict.h" // binary compatibility +#include "tqptrdict.h" // binary compatibility #ifndef TQT_NO_TEXTCODEC #include "ntqtextcodec.h" diff --git a/src/network/qsocket.cpp b/src/network/qsocket.cpp index 381a1a8e6..687c13f90 100644 --- a/src/network/qsocket.cpp +++ b/src/network/qsocket.cpp @@ -40,7 +40,7 @@ #include "ntqsocket.h" #ifndef TQT_NO_NETWORK -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqtimer.h" #include "ntqsocketdevice.h" #include "ntqdns.h" diff --git a/src/opengl/qgl.cpp b/src/opengl/qgl.cpp index 83b27a0c3..6882259d8 100644 --- a/src/opengl/qgl.cpp +++ b/src/opengl/qgl.cpp @@ -43,7 +43,7 @@ #include "ntqpaintdevicemetrics.h" #include "ntqimage.h" #include "ntqcleanuphandler.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" static TQGLFormat* qgl_default_format = 0; static TQGLFormat* qgl_default_overlay_format = 0; diff --git a/src/sql/drivers/cache/tqsqlcachedresult.h b/src/sql/drivers/cache/tqsqlcachedresult.h index 3542a1749..11aa63d99 100644 --- a/src/sql/drivers/cache/tqsqlcachedresult.h +++ b/src/sql/drivers/cache/tqsqlcachedresult.h @@ -53,7 +53,7 @@ #include <ntqglobal.h> #include <ntqvariant.h> -#include <ntqptrvector.h> +#include <tqptrvector.h> #include <tqvaluevector.h> #include <tqsqlresult.h> diff --git a/src/sql/drivers/sqlite/tqsql_sqlite.cpp b/src/sql/drivers/sqlite/tqsql_sqlite.cpp index 3f0053d39..4b7191bb4 100644 --- a/src/sql/drivers/sqlite/tqsql_sqlite.cpp +++ b/src/sql/drivers/sqlite/tqsql_sqlite.cpp @@ -17,7 +17,7 @@ #include <ntqdatetime.h> #include <ntqregexp.h> #include <ntqfile.h> -#include <ntqptrvector.h> +#include <tqptrvector.h> #if !defined TQ_WS_WIN32 # include <unistd.h> #endif diff --git a/src/sql/drivers/sqlite3/tqsql_sqlite3.cpp b/src/sql/drivers/sqlite3/tqsql_sqlite3.cpp index afa21ac86..ec577c873 100644 --- a/src/sql/drivers/sqlite3/tqsql_sqlite3.cpp +++ b/src/sql/drivers/sqlite3/tqsql_sqlite3.cpp @@ -19,7 +19,7 @@ #include <ntqregexp.h> #include <ntqfile.h> #include <sqlite3.h> -#include <ntqptrvector.h> +#include <tqptrvector.h> #if !defined TQ_WS_WIN32 # include <unistd.h> #endif diff --git a/src/sql/tqsqldriver.h b/src/sql/tqsqldriver.h index ba865f099..10548880c 100644 --- a/src/sql/tqsqldriver.h +++ b/src/sql/tqsqldriver.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "tqobject.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqstring.h" #include "tqsqlerror.h" #include "tqsqlquery.h" diff --git a/src/table/ntqtable.h b/src/table/ntqtable.h index 490909e1c..0e890df2c 100644 --- a/src/table/ntqtable.h +++ b/src/table/ntqtable.h @@ -44,10 +44,10 @@ #ifndef QT_H #include "ntqscrollview.h" #include "ntqpixmap.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqheader.h" #include "ntqmemarray.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqguardedptr.h" #include "ntqshared.h" #include "ntqintdict.h" diff --git a/src/tools/ntqcleanuphandler.h b/src/tools/ntqcleanuphandler.h index e1dc339b3..b6347f7ea 100644 --- a/src/tools/ntqcleanuphandler.h +++ b/src/tools/ntqcleanuphandler.h @@ -40,7 +40,7 @@ #define TQCLEANUPHANDLER_H #ifndef QT_H -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H template<class Type> diff --git a/src/tools/ntqgcache.h b/src/tools/ntqgcache.h index cbcb0723f..9082af762 100644 --- a/src/tools/ntqgcache.h +++ b/src/tools/ntqgcache.h @@ -42,7 +42,7 @@ #define TQGCACHE_H #ifndef QT_H -#include "ntqptrcollection.h" +#include "tqptrcollection.h" #include "ntqglist.h" #include "ntqgdict.h" #endif // QT_H diff --git a/src/tools/ntqgdict.h b/src/tools/ntqgdict.h index c3f8fb365..0e29a51eb 100644 --- a/src/tools/ntqgdict.h +++ b/src/tools/ntqgdict.h @@ -42,7 +42,7 @@ #define TQGDICT_H #ifndef QT_H -#include "ntqptrcollection.h" +#include "tqptrcollection.h" #include "ntqstring.h" #endif // QT_H diff --git a/src/tools/ntqglist.h b/src/tools/ntqglist.h index 247c4f68f..95a5786d3 100644 --- a/src/tools/ntqglist.h +++ b/src/tools/ntqglist.h @@ -42,7 +42,7 @@ #define TQGLIST_H #ifndef QT_H -#include "ntqptrcollection.h" +#include "tqptrcollection.h" #endif // QT_H class TQ_EXPORT TQLNode diff --git a/src/tools/ntqgvector.h b/src/tools/ntqgvector.h index 4702c0e4a..d1e8385df 100644 --- a/src/tools/ntqgvector.h +++ b/src/tools/ntqgvector.h @@ -42,7 +42,7 @@ #define TQGVECTOR_H #ifndef QT_H -#include "ntqptrcollection.h" +#include "tqptrcollection.h" #endif // QT_H diff --git a/src/tools/ntqstrlist.h b/src/tools/ntqstrlist.h index 2495f55a5..e8eb3d3f3 100644 --- a/src/tools/ntqstrlist.h +++ b/src/tools/ntqstrlist.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "ntqstring.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqdatastream.h" #endif // QT_H diff --git a/src/tools/ntqstrvec.h b/src/tools/ntqstrvec.h index 9f2245081..82fea5e97 100644 --- a/src/tools/ntqstrvec.h +++ b/src/tools/ntqstrvec.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "ntqstring.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqdatastream.h" #endif // QT_H diff --git a/src/tools/qgcache.cpp b/src/tools/qgcache.cpp index 07a91fd26..9cde4b24e 100644 --- a/src/tools/qgcache.cpp +++ b/src/tools/qgcache.cpp @@ -39,7 +39,7 @@ **********************************************************************/ #include "ntqgcache.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqdict.h" #include "ntqstring.h" diff --git a/src/tools/qgdict.cpp b/src/tools/qgdict.cpp index fe68644cb..639014870 100644 --- a/src/tools/qgdict.cpp +++ b/src/tools/qgdict.cpp @@ -39,7 +39,7 @@ **********************************************************************/ #include "ntqgdict.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqstring.h" #include "ntqdatastream.h" #include <ctype.h> diff --git a/src/tools/qgpluginmanager.cpp b/src/tools/qgpluginmanager.cpp index dc72dad30..3a7c321fd 100644 --- a/src/tools/qgpluginmanager.cpp +++ b/src/tools/qgpluginmanager.cpp @@ -287,7 +287,7 @@ static int similarity( const TQString& s1, const TQString& s2 ) -#include <ntqptrlist.h> +#include <tqptrlist.h> TQGPluginManager::TQGPluginManager( const TQUuid& id, const TQStringList& paths, const TQString &suffix, bool cs ) : interfaceId( id ), plugDict( 17, cs ), casesens( cs ), autounload( TRUE ) diff --git a/src/tools/qregexp.cpp b/src/tools/qregexp.cpp index 19b983f75..ab6f0ee89 100644 --- a/src/tools/qregexp.cpp +++ b/src/tools/qregexp.cpp @@ -48,7 +48,7 @@ #include "ntqcleanuphandler.h" #include "ntqintdict.h" #include "tqmap.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqstring.h" #include "ntqtl.h" diff --git a/src/tools/qt_tools.pri b/src/tools/qt_tools.pri index 5026f3791..e5e7a7af4 100644 --- a/src/tools/qt_tools.pri +++ b/src/tools/qt_tools.pri @@ -36,21 +36,21 @@ tools { $$TOOLS_P/qlibrary_p.h \ $$TOOLS_H/ntqlocale.h \ $$TOOLS_P/qlocale_p.h \ - $$TOOLS_H/ntqptrlist.h \ + $$TOOLS_H/tqptrlist.h \ $$TOOLS_H/tqmap.h \ $$TOOLS_H/ntqmutex.h \ $$TOOLS_P/qmutex_p.h \ $$TOOLS_P/qmutexpool_p.h \ $$TOOLS_P/qpluginmanager_p.h \ - $$TOOLS_H/ntqptrcollection.h \ - $$TOOLS_H/ntqptrdict.h \ - $$TOOLS_H/ntqptrqueue.h \ + $$TOOLS_H/tqptrcollection.h \ + $$TOOLS_H/tqptrdict.h \ + $$TOOLS_H/tqptrqueue.h \ $$TOOLS_H/ntqregexp.h \ $$TOOLS_H/ntqsemaphore.h \ $$TOOLS_H/ntqsettings.h \ $$TOOLS_P/qsettings_p.h \ $$TOOLS_H/ntqshared.h \ - $$TOOLS_H/ntqptrstack.h \ + $$TOOLS_H/tqptrstack.h \ $$TOOLS_H/ntqstring.h \ $$TOOLS_H/ntqstringlist.h \ $$TOOLS_H/ntqstrlist.h \ @@ -59,7 +59,7 @@ tools { $$TOOLS_P/qthreadinstance_p.h \ $$TOOLS_H/ntqthreadstorage.h\ $$TOOLS_P/qunicodetables_p.h \ - $$TOOLS_H/ntqptrvector.h \ + $$TOOLS_H/tqptrvector.h \ $$TOOLS_H/tqvaluelist.h \ $$TOOLS_H/tqvaluestack.h \ $$TOOLS_H/tqvaluevector.h \ @@ -129,7 +129,7 @@ tools { $$TOOLS_CPP/qlocale.cpp \ $$TOOLS_CPP/tqmap.cpp \ $$TOOLS_CPP/qmutexpool.cpp \ - $$TOOLS_CPP/qptrcollection.cpp \ + $$TOOLS_CPP/tqptrcollection.cpp \ $$TOOLS_CPP/qregexp.cpp \ $$TOOLS_CPP/qstring.cpp \ $$TOOLS_CPP/qsemaphore.cpp \ diff --git a/src/tools/qwinexport.cpp b/src/tools/qwinexport.cpp index 244db1cea..12d8832da 100644 --- a/src/tools/qwinexport.cpp +++ b/src/tools/qwinexport.cpp @@ -22,8 +22,8 @@ #include <ntqlibrary.h> #include <tqmap.h> #include <ntqmemarray.h> -#include <ntqptrlist.h> -#include <ntqptrvector.h> +#include <tqptrlist.h> +#include <tqptrvector.h> #include <ntqstring.h> #include <tqvaluelist.h> #include <tqvaluevector.h> diff --git a/src/tools/qptrcollection.cpp b/src/tools/tqptrcollection.cpp index 718a739d1..7a9258c5e 100644 --- a/src/tools/qptrcollection.cpp +++ b/src/tools/tqptrcollection.cpp @@ -38,10 +38,10 @@ ** **********************************************************************/ -#include "ntqptrcollection.h" +#include "tqptrcollection.h" /*! - \class TQPtrCollection ntqptrcollection.h + \class TQPtrCollection tqptrcollection.h \reentrant \brief The TQPtrCollection class is the base class of most pointer-based TQt collections. diff --git a/src/tools/ntqptrcollection.h b/src/tools/tqptrcollection.h index da6fc6670..da6fc6670 100644 --- a/src/tools/ntqptrcollection.h +++ b/src/tools/tqptrcollection.h diff --git a/src/tools/ntqptrdict.h b/src/tools/tqptrdict.h index 181492bd9..181492bd9 100644 --- a/src/tools/ntqptrdict.h +++ b/src/tools/tqptrdict.h diff --git a/src/tools/ntqptrlist.h b/src/tools/tqptrlist.h index 579c1b226..579c1b226 100644 --- a/src/tools/ntqptrlist.h +++ b/src/tools/tqptrlist.h diff --git a/src/tools/ntqptrqueue.h b/src/tools/tqptrqueue.h index c905b4fd6..c905b4fd6 100644 --- a/src/tools/ntqptrqueue.h +++ b/src/tools/tqptrqueue.h diff --git a/src/tools/ntqptrstack.h b/src/tools/tqptrstack.h index 6f404f1b9..6f404f1b9 100644 --- a/src/tools/ntqptrstack.h +++ b/src/tools/tqptrstack.h diff --git a/src/tools/ntqptrvector.h b/src/tools/tqptrvector.h index b2e641e7a..b2e641e7a 100644 --- a/src/tools/ntqptrvector.h +++ b/src/tools/tqptrvector.h diff --git a/src/widgets/ntqdockarea.h b/src/widgets/ntqdockarea.h index 85dce12b5..441f4b828 100644 --- a/src/widgets/ntqdockarea.h +++ b/src/widgets/ntqdockarea.h @@ -43,7 +43,7 @@ #ifndef QT_H #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqdockwindow.h" #include "ntqlayout.h" #include "tqvaluelist.h" diff --git a/src/widgets/ntqmainwindow.h b/src/widgets/ntqmainwindow.h index 647c23206..73265436a 100644 --- a/src/widgets/ntqmainwindow.h +++ b/src/widgets/ntqmainwindow.h @@ -44,7 +44,7 @@ #ifndef QT_H #include "tqwidget.h" #include "ntqtoolbar.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqtextstream.h" #endif // QT_H diff --git a/src/widgets/ntqmenudata.h b/src/widgets/ntqmenudata.h index 0f7e08afc..063392333 100644 --- a/src/widgets/ntqmenudata.h +++ b/src/widgets/ntqmenudata.h @@ -132,7 +132,7 @@ private: // Disabled copy constructor and operator= #endif }; -#include "ntqptrlist.h" +#include "tqptrlist.h" typedef TQPtrList<TQMenuItem> TQMenuItemList; typedef TQPtrListIterator<TQMenuItem> TQMenuItemListIt; diff --git a/src/widgets/ntqtabbar.h b/src/widgets/ntqtabbar.h index c7010ed53..b9abccde0 100644 --- a/src/widgets/ntqtabbar.h +++ b/src/widgets/ntqtabbar.h @@ -41,7 +41,7 @@ #ifndef QT_H #include "tqwidget.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H #ifndef TQT_NO_TABBAR diff --git a/src/widgets/ntqtextbrowser.h b/src/widgets/ntqtextbrowser.h index 32806a539..c9ac4ae9e 100644 --- a/src/widgets/ntqtextbrowser.h +++ b/src/widgets/ntqtextbrowser.h @@ -42,7 +42,7 @@ #define TQTEXTBROWSER_H #ifndef QT_H -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqpixmap.h" #include "ntqcolor.h" #include "ntqtextedit.h" diff --git a/src/widgets/ntqtextedit.h b/src/widgets/ntqtextedit.h index f14e06ff8..40906dbfc 100644 --- a/src/widgets/ntqtextedit.h +++ b/src/widgets/ntqtextedit.h @@ -44,9 +44,9 @@ #ifndef QT_H #include "ntqscrollview.h" #include "ntqstylesheet.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "tqvaluelist.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #endif // QT_H #ifndef TQT_NO_TEXTEDIT diff --git a/src/widgets/qaction.cpp b/src/widgets/qaction.cpp index cbeb093c3..49f1108c8 100644 --- a/src/widgets/qaction.cpp +++ b/src/widgets/qaction.cpp @@ -41,7 +41,7 @@ #ifndef TQT_NO_ACTION #include "ntqtoolbar.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqpopupmenu.h" #include "ntqaccel.h" #include "ntqtoolbutton.h" diff --git a/src/widgets/qbuttongroup.cpp b/src/widgets/qbuttongroup.cpp index 15495edff..c1a708b80 100644 --- a/src/widgets/qbuttongroup.cpp +++ b/src/widgets/qbuttongroup.cpp @@ -41,7 +41,7 @@ #include "ntqbuttongroup.h" #ifndef TQT_NO_BUTTONGROUP #include "ntqbutton.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqapplication.h" #include "ntqradiobutton.h" diff --git a/src/widgets/qdockarea.cpp b/src/widgets/qdockarea.cpp index 1f982a1de..702de25a2 100644 --- a/src/widgets/qdockarea.cpp +++ b/src/widgets/qdockarea.cpp @@ -43,7 +43,7 @@ #ifndef TQT_NO_MAINWINDOW #include "ntqsplitter.h" #include "ntqlayout.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqapplication.h" #include "ntqpainter.h" #include "tqwidgetlist.h" diff --git a/src/widgets/qheader.cpp b/src/widgets/qheader.cpp index f764b653f..d8d2a88b0 100644 --- a/src/widgets/qheader.cpp +++ b/src/widgets/qheader.cpp @@ -44,7 +44,7 @@ #include "ntqdrawutil.h" #include "ntqpixmap.h" #include "ntqbitarray.h" -#include "ntqptrvector.h" +#include "tqptrvector.h" #include "ntqapplication.h" #include "ntqstyle.h" diff --git a/src/widgets/qiconview.cpp b/src/widgets/qiconview.cpp index 154702ea7..82ee76060 100644 --- a/src/widgets/qiconview.cpp +++ b/src/widgets/qiconview.cpp @@ -61,12 +61,12 @@ #include "ntqapplication.h" #include "ntqtextedit.h" #include "ntqmemarray.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqvbox.h" #include "ntqtooltip.h" #include "ntqbitmap.h" #include "ntqpixmapcache.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqstringlist.h" #include "ntqcleanuphandler.h" #include "private/qrichtext_p.h" diff --git a/src/widgets/qlistbox.cpp b/src/widgets/qlistbox.cpp index 3669b3e25..e4b4f8066 100644 --- a/src/widgets/qlistbox.cpp +++ b/src/widgets/qlistbox.cpp @@ -52,7 +52,7 @@ #include "ntqstrlist.h" #include "ntqpixmap.h" #include "ntqapplication.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqtimer.h" #include "ntqstringlist.h" #include "ntqstyle.h" diff --git a/src/widgets/qlistview.cpp b/src/widgets/qlistview.cpp index 599c99439..91a62c7de 100644 --- a/src/widgets/qlistview.cpp +++ b/src/widgets/qlistview.cpp @@ -44,14 +44,14 @@ #include "ntqheader.h" #include "ntqpainter.h" #include "ntqcursor.h" -#include "ntqptrstack.h" -#include "ntqptrlist.h" +#include "tqptrstack.h" +#include "tqptrlist.h" #include "ntqstrlist.h" #include "ntqapplication.h" #include "ntqbitmap.h" #include "ntqdatetime.h" -#include "ntqptrdict.h" -#include "ntqptrvector.h" +#include "tqptrdict.h" +#include "tqptrvector.h" #include "ntqiconset.h" #include "ntqcleanuphandler.h" #include "ntqpixmapcache.h" diff --git a/src/widgets/qmainwindow.cpp b/src/widgets/qmainwindow.cpp index 3510c8290..da20228b6 100644 --- a/src/widgets/qmainwindow.cpp +++ b/src/widgets/qmainwindow.cpp @@ -46,7 +46,7 @@ #include "tqobjectlist.h" #include "ntqintdict.h" #include "ntqapplication.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "tqmap.h" #include "ntqcursor.h" #include "ntqpainter.h" diff --git a/src/widgets/qscrollview.cpp b/src/widgets/qscrollview.cpp index 8b9981ffa..a9ce4f876 100644 --- a/src/widgets/qscrollview.cpp +++ b/src/widgets/qscrollview.cpp @@ -47,7 +47,7 @@ #include "ntqcursor.h" #include "ntqfocusdata.h" #include "ntqscrollview.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqapplication.h" #include "ntqtimer.h" #include "ntqstyle.h" diff --git a/src/widgets/qsplitter.cpp b/src/widgets/qsplitter.cpp index 33e5250bf..3e261f286 100644 --- a/src/widgets/qsplitter.cpp +++ b/src/widgets/qsplitter.cpp @@ -49,7 +49,7 @@ #include "ntqmemarray.h" #include "tqobjectlist.h" #include "ntqpainter.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqstyle.h" const uint Default = QT_QSPLITTER_DEFAULT; diff --git a/src/widgets/qstatusbar.cpp b/src/widgets/qstatusbar.cpp index f5830d4b8..b0f0b1ea8 100644 --- a/src/widgets/qstatusbar.cpp +++ b/src/widgets/qstatusbar.cpp @@ -41,7 +41,7 @@ #include "ntqstatusbar.h" #ifndef TQT_NO_STATUSBAR -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqlayout.h" #include "ntqpainter.h" #include "ntqtimer.h" diff --git a/src/widgets/qtextedit.cpp b/src/widgets/qtextedit.cpp index fcb39a7f7..0fb328bf9 100644 --- a/src/widgets/qtextedit.cpp +++ b/src/widgets/qtextedit.cpp @@ -71,7 +71,7 @@ #include "ntqcursor.h" #include "ntqregexp.h" #include "ntqpopupmenu.h" -#include "ntqptrstack.h" +#include "tqptrstack.h" #include "ntqmetaobject.h" #include "ntqtextbrowser.h" #include <private/qucom_p.h> diff --git a/src/widgets/qtooltip.cpp b/src/widgets/qtooltip.cpp index d576d203f..a9f9624f5 100644 --- a/src/widgets/qtooltip.cpp +++ b/src/widgets/qtooltip.cpp @@ -39,7 +39,7 @@ #include "ntqtooltip.h" #ifndef TQT_NO_TOOLTIP #include "ntqlabel.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqapplication.h" #include "ntqguardedptr.h" #include "ntqtimer.h" diff --git a/src/widgets/qwhatsthis.cpp b/src/widgets/qwhatsthis.cpp index 086c3f0cc..41cb9fd82 100644 --- a/src/widgets/qwhatsthis.cpp +++ b/src/widgets/qwhatsthis.cpp @@ -43,7 +43,7 @@ #include "ntqpixmap.h" #include "ntqpainter.h" #include "ntqtimer.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #include "ntqtoolbutton.h" #include "ntqshared.h" #include "ntqcursor.h" diff --git a/src/widgets/tqwidgetstack.h b/src/widgets/tqwidgetstack.h index 4967804c8..774ccb45c 100644 --- a/src/widgets/tqwidgetstack.h +++ b/src/widgets/tqwidgetstack.h @@ -44,7 +44,7 @@ #ifndef QT_H #include "ntqframe.h" #include "ntqintdict.h" -#include "ntqptrdict.h" +#include "tqptrdict.h" #endif // QT_H #ifndef TQT_NO_WIDGETSTACK diff --git a/src/xml/tqdom.cpp b/src/xml/tqdom.cpp index 1abd76bc6..4feaf47a6 100644 --- a/src/xml/tqdom.cpp +++ b/src/xml/tqdom.cpp @@ -43,7 +43,7 @@ #ifndef TQT_NO_DOM #include "tqxml.h" -#include "ntqptrlist.h" +#include "tqptrlist.h" #include "ntqdict.h" #include "ntqtextstream.h" #include "ntqtextcodec.h" diff --git a/src/xml/tqxml.cpp b/src/xml/tqxml.cpp index a0d3f7f18..4a2b8615d 100644 --- a/src/xml/tqxml.cpp +++ b/src/xml/tqxml.cpp @@ -42,7 +42,7 @@ #include "ntqtextcodec.h" #include "ntqbuffer.h" #include "ntqregexp.h" -#include "ntqptrstack.h" +#include "tqptrstack.h" #include "tqmap.h" #include "tqvaluestack.h" diff --git a/tools/assistant/docuparser.h b/tools/assistant/docuparser.h index f27957cce..f09b913d7 100644 --- a/tools/assistant/docuparser.h +++ b/tools/assistant/docuparser.h @@ -35,7 +35,7 @@ #define DOCUPARSER_H #include <tqxml.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <tqmap.h> class Profile; diff --git a/tools/assistant/helpdialogimpl.cpp b/tools/assistant/helpdialogimpl.cpp index a75573f3c..0e8623b9e 100644 --- a/tools/assistant/helpdialogimpl.cpp +++ b/tools/assistant/helpdialogimpl.cpp @@ -52,8 +52,8 @@ #include <ntqmessagebox.h> #include <ntqpixmap.h> #include <ntqprogressbar.h> -#include <ntqptrlist.h> -#include <ntqptrstack.h> +#include <tqptrlist.h> +#include <tqptrstack.h> #include <ntqpushbutton.h> #include <ntqregexp.h> #include <ntqsettings.h> diff --git a/tools/assistant/main.cpp b/tools/assistant/main.cpp index 4f7d21b9d..85d2ade0e 100644 --- a/tools/assistant/main.cpp +++ b/tools/assistant/main.cpp @@ -39,7 +39,7 @@ #include <ntqserversocket.h> #include <ntqsocket.h> #include <ntqpixmap.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqstringlist.h> #include <ntqdir.h> #include <ntqmessagebox.h> diff --git a/tools/assistant/mainwindow.ui b/tools/assistant/mainwindow.ui index b4ffa8f4a..bd353eaab 100644 --- a/tools/assistant/mainwindow.ui +++ b/tools/assistant/mainwindow.ui @@ -596,7 +596,7 @@ <include location="global" impldecl="in implementation">ntqsettings.h</include> <include location="global" impldecl="in implementation">ntqcheckbox.h</include> <include location="local" impldecl="in implementation">tabbedbrowser.h</include> - <include location="global" impldecl="in declaration">ntqptrlist.h</include> + <include location="global" impldecl="in declaration">tqptrlist.h</include> <include location="global" impldecl="in declaration">ntqguardedptr.h</include> <include location="global" impldecl="in declaration">tqmap.h</include> <include location="local" impldecl="in declaration">finddialog.h</include> diff --git a/tools/assistant/settingsdialogimpl.cpp b/tools/assistant/settingsdialogimpl.cpp index 5cf462b4b..2e4257ab0 100644 --- a/tools/assistant/settingsdialogimpl.cpp +++ b/tools/assistant/settingsdialogimpl.cpp @@ -46,7 +46,7 @@ #include <ntqlistbox.h> #include <ntqlistview.h> #include <ntqmessagebox.h> -#include <ntqptrstack.h> +#include <tqptrstack.h> #include <ntqsettings.h> #include <ntqtimer.h> #include <ntqtoolbutton.h> diff --git a/tools/assistant/settingsdialogimpl.h b/tools/assistant/settingsdialogimpl.h index 6402dc619..24f105d27 100644 --- a/tools/assistant/settingsdialogimpl.h +++ b/tools/assistant/settingsdialogimpl.h @@ -37,7 +37,7 @@ #include "settingsdialog.h" #include <ntqstringlist.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqlistview.h> class SettingsDialog : public SettingsDialogBase diff --git a/tools/designer/designer/actiondnd.h b/tools/designer/designer/actiondnd.h index 29d454a05..9f03b2f4e 100644 --- a/tools/designer/designer/actiondnd.h +++ b/tools/designer/designer/actiondnd.h @@ -40,7 +40,7 @@ #include <ntqmenubar.h> #include <ntqpixmap.h> #include <ntqpopupmenu.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqtoolbar.h> #include <ntqguardedptr.h> #include "../shared/widgetdatabase.h" diff --git a/tools/designer/designer/command.cpp b/tools/designer/designer/command.cpp index 8eb22fb34..51bb600a6 100644 --- a/tools/designer/designer/command.cpp +++ b/tools/designer/designer/command.cpp @@ -55,7 +55,7 @@ #include <ntqlistbox.h> #include <ntqiconview.h> #include <ntqtextedit.h> -#include <ntqptrstack.h> +#include <tqptrstack.h> #include <ntqheader.h> #include <ntqsplitter.h> #ifndef TQT_NO_TABLE diff --git a/tools/designer/designer/command.h b/tools/designer/designer/command.h index 5bc5fd20e..74f5ec881 100644 --- a/tools/designer/designer/command.h +++ b/tools/designer/designer/command.h @@ -43,7 +43,7 @@ #include <ntqvariant.h> #include <tqobject.h> #include <ntqlistview.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <tqmap.h> #include <ntqiconset.h> diff --git a/tools/designer/designer/connectiondialog.ui b/tools/designer/designer/connectiondialog.ui index b938be930..fb56606a4 100644 --- a/tools/designer/designer/connectiondialog.ui +++ b/tools/designer/designer/connectiondialog.ui @@ -199,7 +199,7 @@ </connection> </connections> <includes> - <include location="global" impldecl="in declaration">ntqptrlist.h</include> + <include location="global" impldecl="in declaration">tqptrlist.h</include> <include location="local" impldecl="in declaration">connectionitems.h</include> <include location="local" impldecl="in implementation">connectiondialog.ui.h</include> </includes> diff --git a/tools/designer/designer/dbconnectionsimpl.cpp b/tools/designer/designer/dbconnectionsimpl.cpp index 8aaf45217..c08e9554e 100644 --- a/tools/designer/designer/dbconnectionsimpl.cpp +++ b/tools/designer/designer/dbconnectionsimpl.cpp @@ -32,7 +32,7 @@ **********************************************************************/ #include "dbconnectionsimpl.h" -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqgroupbox.h> #include <ntqlayout.h> #include "project.h" diff --git a/tools/designer/designer/formwindow.h b/tools/designer/designer/formwindow.h index a934bcdb8..7fd0e5ff6 100644 --- a/tools/designer/designer/formwindow.h +++ b/tools/designer/designer/formwindow.h @@ -40,7 +40,7 @@ #include "actiondnd.h" #include <tqwidget.h> -#include <ntqptrdict.h> +#include <tqptrdict.h> #include <ntqpixmap.h> #include <tqwidgetlist.h> #include <tqmap.h> diff --git a/tools/designer/designer/listboxdnd.h b/tools/designer/designer/listboxdnd.h index 546f6a2a3..745d899e4 100644 --- a/tools/designer/designer/listboxdnd.h +++ b/tools/designer/designer/listboxdnd.h @@ -34,7 +34,7 @@ #ifndef LISTBOXDND_H #define LISTBOXDND_H -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqlistbox.h> #include "listdnd.h" diff --git a/tools/designer/designer/listviewdnd.h b/tools/designer/designer/listviewdnd.h index a58773d72..2f79f1adb 100644 --- a/tools/designer/designer/listviewdnd.h +++ b/tools/designer/designer/listviewdnd.h @@ -34,7 +34,7 @@ #ifndef LISTVIEWDND_H #define LISTVIEWDND_H -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqlistview.h> #include "listdnd.h" diff --git a/tools/designer/designer/listvieweditorimpl.cpp b/tools/designer/designer/listvieweditorimpl.cpp index b8cef9064..9bce2ffaf 100644 --- a/tools/designer/designer/listvieweditorimpl.cpp +++ b/tools/designer/designer/listvieweditorimpl.cpp @@ -49,7 +49,7 @@ #include <ntqtabwidget.h> #include <ntqspinbox.h> #include <ntqpushbutton.h> -#include <ntqptrstack.h> +#include <tqptrstack.h> ListViewEditor::ListViewEditor( TQWidget *parent, TQListView *lv, FormWindow *fw ) : ListViewEditorBase( parent, 0, TRUE ), listview( lv ), formwindow( fw ) diff --git a/tools/designer/designer/menubareditor.h b/tools/designer/designer/menubareditor.h index f1d87f206..ccb90574b 100644 --- a/tools/designer/designer/menubareditor.h +++ b/tools/designer/designer/menubareditor.h @@ -35,7 +35,7 @@ #define MENUBAREDITOR_H #include <ntqmenubar.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> class PopupMenuEditor; class MenuBarEditor; diff --git a/tools/designer/designer/metadatabase.cpp b/tools/designer/designer/metadatabase.cpp index 1f0b9782c..e533d350f 100644 --- a/tools/designer/designer/metadatabase.cpp +++ b/tools/designer/designer/metadatabase.cpp @@ -44,7 +44,7 @@ #include <ntqapplication.h> #include <tqobject.h> #include <ntqlayout.h> -#include <ntqptrdict.h> +#include <tqptrdict.h> #include <tqobjectlist.h> #include <ntqstrlist.h> #include <ntqmetaobject.h> diff --git a/tools/designer/designer/metadatabase.h b/tools/designer/designer/metadatabase.h index 269d829c0..9e5165042 100644 --- a/tools/designer/designer/metadatabase.h +++ b/tools/designer/designer/metadatabase.h @@ -38,7 +38,7 @@ #include <ntqstring.h> #include <ntqstringlist.h> #include <tqmap.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqsizepolicy.h> #include <ntqsize.h> #include <tqwidgetlist.h> diff --git a/tools/designer/designer/popupmenueditor.h b/tools/designer/designer/popupmenueditor.h index 306629ba3..b60a22c3c 100644 --- a/tools/designer/designer/popupmenueditor.h +++ b/tools/designer/designer/popupmenueditor.h @@ -35,7 +35,7 @@ #define POPUPMENUEDITOR_H #include <tqwidget.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqaction.h> class PopupMenuEditor; diff --git a/tools/designer/designer/project.h b/tools/designer/designer/project.h index ceb42afcf..e39a82561 100644 --- a/tools/designer/designer/project.h +++ b/tools/designer/designer/project.h @@ -38,14 +38,14 @@ #include <ntqstring.h> #include <ntqstringlist.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <tqmap.h> #include <private/qpluginmanager_p.h> #include "../interfaces/projectsettingsiface.h" #include "sourcefile.h" #include "formfile.h" #include <tqobjectlist.h> -#include <ntqptrdict.h> +#include <tqptrdict.h> #include "formfile.h" class TQObjectList; diff --git a/tools/designer/designer/propertyeditor.h b/tools/designer/designer/propertyeditor.h index 45f22481c..ca3b426f4 100644 --- a/tools/designer/designer/propertyeditor.h +++ b/tools/designer/designer/propertyeditor.h @@ -37,11 +37,11 @@ #include <ntqfeatures.h> #include <ntqvariant.h> #include <ntqlistview.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqguardedptr.h> #include <ntqtabwidget.h> #include <ntqmodules.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqlayout.h> #include <ntqcheckbox.h> #include <ntqcombobox.h> diff --git a/tools/designer/designer/propertyobject.cpp b/tools/designer/designer/propertyobject.cpp index 3244ec52e..61c789d27 100644 --- a/tools/designer/designer/propertyobject.cpp +++ b/tools/designer/designer/propertyobject.cpp @@ -33,8 +33,8 @@ #include "propertyobject.h" #include "metadatabase.h" -#include <ntqptrvector.h> -#include <ntqptrlist.h> +#include <tqptrvector.h> +#include <tqptrlist.h> #include <ntqmetaobject.h> #include <ntqvariant.h> diff --git a/tools/designer/designer/sizehandle.h b/tools/designer/designer/sizehandle.h index 7027736b7..8760afc71 100644 --- a/tools/designer/designer/sizehandle.h +++ b/tools/designer/designer/sizehandle.h @@ -36,7 +36,7 @@ #include <tqwidget.h> #include <ntqintdict.h> -#include <ntqptrdict.h> +#include <tqptrdict.h> class TQMouseEvent; class FormWindow; diff --git a/tools/designer/designer/startdialogimpl.cpp b/tools/designer/designer/startdialogimpl.cpp index aec2362be..e254396ff 100644 --- a/tools/designer/designer/startdialogimpl.cpp +++ b/tools/designer/designer/startdialogimpl.cpp @@ -1,6 +1,6 @@ #include <ntqstring.h> #include <ntqstringlist.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqiconview.h> #include <ntqcombobox.h> #include <ntqlabel.h> diff --git a/tools/designer/designer/widgetfactory.h b/tools/designer/designer/widgetfactory.h index dc1ee3d29..1220d81cc 100644 --- a/tools/designer/designer/widgetfactory.h +++ b/tools/designer/designer/widgetfactory.h @@ -46,7 +46,7 @@ #include <tqobjectlist.h> #include <ntqlabel.h> #include <ntqwizard.h> -#include <ntqptrdict.h> +#include <tqptrdict.h> #include <ntqpushbutton.h> #include <ntqtoolbutton.h> #include <ntqcheckbox.h> diff --git a/tools/designer/designer/wizardeditorimpl.h b/tools/designer/designer/wizardeditorimpl.h index c83268938..99c402e36 100644 --- a/tools/designer/designer/wizardeditorimpl.h +++ b/tools/designer/designer/wizardeditorimpl.h @@ -37,7 +37,7 @@ class TQWizard; class FormWindow; -#include <ntqptrlist.h> +#include <tqptrlist.h> #include "wizardeditor.h" #include "command.h" diff --git a/tools/designer/interfaces/designerinterface.h b/tools/designer/interfaces/designerinterface.h index 10084bebf..aa81f68a3 100644 --- a/tools/designer/interfaces/designerinterface.h +++ b/tools/designer/interfaces/designerinterface.h @@ -48,7 +48,7 @@ // #include <private/qcom_p.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqstring.h> #include <tqmap.h> #include <ntqstringlist.h> diff --git a/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp b/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp index e92301924..dc52d1e47 100644 --- a/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp +++ b/tools/designer/plugins/kdevdlg/kdevdlg2ui.cpp @@ -35,7 +35,7 @@ #include "kdevdlg2ui.h" #include <ntqdir.h> #include <ntqstring.h> -#include <ntqptrstack.h> +#include <tqptrstack.h> /// some little helpers /// diff --git a/tools/designer/uilib/tqwidgetfactory.h b/tools/designer/uilib/tqwidgetfactory.h index a188c0be3..80df0bbbc 100644 --- a/tools/designer/uilib/tqwidgetfactory.h +++ b/tools/designer/uilib/tqwidgetfactory.h @@ -36,7 +36,7 @@ #ifndef QT_H #include <ntqstring.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqimage.h> #include <ntqpixmap.h> #include <tqvaluelist.h> diff --git a/tools/linguist/linguist/listviews.h b/tools/linguist/linguist/listviews.h index 62bc42943..65a296bf8 100644 --- a/tools/linguist/linguist/listviews.h +++ b/tools/linguist/linguist/listviews.h @@ -37,7 +37,7 @@ #include "msgedit.h" #include <ntqstring.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqregexp.h> #include <ntqlistview.h> diff --git a/tools/linguist/linguist/trwindow.h b/tools/linguist/linguist/trwindow.h index 82fc4ec10..f702b7f07 100644 --- a/tools/linguist/linguist/trwindow.h +++ b/tools/linguist/linguist/trwindow.h @@ -39,7 +39,7 @@ #include <metatranslator.h> #include <ntqmainwindow.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqdict.h> #include <ntqprinter.h> #include <ntqstringlist.h> diff --git a/tools/qembed/qembed.cpp b/tools/qembed/qembed.cpp index d13cf46a7..978a4f3d4 100644 --- a/tools/qembed/qembed.cpp +++ b/tools/qembed/qembed.cpp @@ -19,7 +19,7 @@ #include <ntqstring.h> #include <ntqfile.h> #include <ntqfileinfo.h> -#include <ntqptrlist.h> +#include <tqptrlist.h> #include <ntqtextstream.h> #include <ntqdatetime.h> #include <ntqimage.h> |