summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqintdictiterator.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-07 14:56:09 +0900
commit87d29563e3ccdeb7fea0197e262e667ef323ff9c (patch)
tree2d674f204c5205ca577a782e1b50583afd563972 /doc/man/man3/tqintdictiterator.3qt
parent628b0bb74c3fc327efff8add9c73ada04b1cbea2 (diff)
downloadtqt-87d29563.tar.gz
tqt-87d29563.zip
Rename utility class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqintdictiterator.3qt')
-rw-r--r--doc/man/man3/tqintdictiterator.3qt46
1 files changed, 23 insertions, 23 deletions
diff --git a/doc/man/man3/tqintdictiterator.3qt b/doc/man/man3/tqintdictiterator.3qt
index 0b36f19d2..71211a65c 100644
--- a/doc/man/man3/tqintdictiterator.3qt
+++ b/doc/man/man3/tqintdictiterator.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QIntDictIterator 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQIntDictIterator 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
-QIntDictIterator \- Iterator for QIntDict collections
+TQIntDictIterator \- Iterator for TQIntDict collections
.SH SYNOPSIS
-\fC#include <ntqintdict.h>\fR
+\fC#include <tqintdict.h>\fR
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQIntDictIterator\fR ( const QIntDict<type> & dict )"
+.BI "\fBTQIntDictIterator\fR ( const TQIntDict<type> & dict )"
.br
.ti -1c
-.BI "\fB~QIntDictIterator\fR ()"
+.BI "\fB~TQIntDictIterator\fR ()"
.br
.ti -1c
.BI "uint \fBcount\fR () const"
@@ -48,15 +48,15 @@ QIntDictIterator \- Iterator for QIntDict collections
.br
.in -1c
.SH DESCRIPTION
-The QIntDictIterator class provides an iterator for QIntDict collections.
+The TQIntDictIterator class provides an iterator for TQIntDict collections.
.PP
-QIntDictIterator is implemented as a template class. Define a template instance QIntDictIterator<X> to create a dictionary iterator that operates on QIntDict<X> (dictionary of X*).
+TQIntDictIterator is implemented as a template class. Define a template instance TQIntDictIterator<X> to create a dictionary iterator that operates on TQIntDict<X> (dictionary of X*).
.PP
Example:
.PP
.nf
.br
- QIntDict<QLineEdit> fields;
+ TQIntDict<QLineEdit> fields;
.br
for ( int i = 0; i < 3; i++ )
.br
@@ -70,7 +70,7 @@ Example:
fields[2]->setText( "45" );
.br
.br
- QIntDictIterator<QLineEdit> it( fields );
+ TQIntDictIterator<QLineEdit> it( fields );
.br
.br
for ( ; it.current(); ++it )
@@ -90,41 +90,41 @@ Example:
.PP
Note that the traversal order is arbitrary; you are not guaranteed the order shown above.
.PP
-Multiple iterators may independently traverse the same dictionary. A QIntDict knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, QIntDict updates all iterators that refer the removed item to point to the next item in the traversal order.
+Multiple iterators may independently traverse the same dictionary. A TQIntDict knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, TQIntDict updates all iterators that refer the removed item to point to the next item in the traversal order.
.PP
-See also QIntDict, Collection Classes, and Non-GUI Classes.
+See also TQIntDict, Collection Classes, and Non-GUI Classes.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QIntDictIterator::QIntDictIterator ( const QIntDict<type> & dict )"
+.SH "TQIntDictIterator::TQIntDictIterator ( const TQIntDict<type> & dict )"
Constructs an iterator for \fIdict\fR. The current iterator item is set to point to the 'first' item in the \fIdict\fR. The first item refers to the first item in the dictionary's arbitrary internal ordering.
-.SH "QIntDictIterator::~QIntDictIterator ()"
+.SH "TQIntDictIterator::~TQIntDictIterator ()"
Destroys the iterator.
-.SH "uint QIntDictIterator::count () const"
+.SH "uint TQIntDictIterator::count () const"
Returns the number of items in the dictionary this iterator operates over.
.PP
See also isEmpty().
-.SH "type * QIntDictIterator::current () const"
+.SH "type * TQIntDictIterator::current () const"
Returns a pointer to the current iterator item.
-.SH "long QIntDictIterator::currentKey () const"
+.SH "long TQIntDictIterator::currentKey () const"
Returns the key for the current iterator item.
-.SH "bool QIntDictIterator::isEmpty () const"
+.SH "bool TQIntDictIterator::isEmpty () const"
Returns TRUE if the dictionary is empty; otherwise eturns FALSE.
.PP
See also count().
-.SH "QIntDictIterator::operator type * () const"
+.SH "TQIntDictIterator::operator type * () const"
Cast operator. Returns a pointer to the current iterator item. Same as current().
-.SH "type * QIntDictIterator::operator() ()"
+.SH "type * TQIntDictIterator::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 * QIntDictIterator::operator++ ()"
+.SH "type * TQIntDictIterator::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 * QIntDictIterator::operator+= ( uint jump )"
+.SH "type * TQIntDictIterator::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 * QIntDictIterator::toFirst ()"
+.SH "type * TQIntDictIterator::toFirst ()"
Sets the current iterator item to point to the first item in the
dictionary and returns a pointer to the item. The first item
refers to the first item in the dictionary's arbitrary internal
@@ -132,7 +132,7 @@ ordering. If the dictionary is empty it sets the current item to
0 and returns 0.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qintdictiterator.html
+.BR http://doc.trolltech.com/tqintdictiterator.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the