summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqcombotableitem.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/man/man3/tqcombotableitem.3qt
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30.tar.gz
tqt-e6077c30.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqcombotableitem.3qt')
-rw-r--r--doc/man/man3/tqcombotableitem.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqcombotableitem.3qt b/doc/man/man3/tqcombotableitem.3qt
index 41e26a4c1..ca4314ea0 100644
--- a/doc/man/man3/tqcombotableitem.3qt
+++ b/doc/man/man3/tqcombotableitem.3qt
@@ -16,7 +16,7 @@ Inherits QTableItem.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQComboTableItem\fR ( QTable * table, const QStringList & list, bool editable = FALSE )"
+.BI "\fBQComboTableItem\fR ( QTable * table, const TQStringList & list, bool editable = FALSE )"
.br
.ti -1c
.BI "\fB~QComboTableItem\fR ()"
@@ -46,7 +46,7 @@ Inherits QTableItem.
.BI "bool \fBisEditable\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetStringList\fR ( const QStringList & l )"
+.BI "virtual void \fBsetStringList\fR ( const TQStringList & l )"
.br
.ti -1c
.BI "virtual int \fBrtti\fR () const"
@@ -57,7 +57,7 @@ The QComboTableItem class provides a means of using comboboxes in QTables.
.PP
A QComboTableItem is a table item which looks and behaves like a combobox. The advantage of using QComboTableItems rather than real comboboxes is that a QComboTableItem uses far less resources than real comboboxes in QTables. When the cell has the focus it displays a real combobox which the user can interact with. When the cell does not have the focus the cell \fIlooks\fR like a combobox. Only text items (i.e. no pixmaps) may be used in QComboTableItems.
.PP
-QComboTableItem items have the edit type WhenCurrent (see EditType). The QComboTableItem's list of items is provided by a QStringList passed to the constructor.
+QComboTableItem items have the edit type WhenCurrent (see EditType). The QComboTableItem's list of items is provided by a TQStringList passed to the constructor.
.PP
The list of items may be changed using setStringList(). The current item can be set with setCurrentItem() and retrieved with currentItem(). The text of the current item can be obtained with currentText(), and the text of a particular item can be retrieved with text().
.PP
@@ -77,7 +77,7 @@ QComboTableItems can be distinguished from QTableItems and QCheckTableItems usin
.PP
See also QCheckTableItem, QTableItem, QComboBox, and Advanced Widgets.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QComboTableItem::QComboTableItem ( QTable * table, const QStringList & list, bool editable = FALSE )"
+.SH "QComboTableItem::QComboTableItem ( QTable * table, const TQStringList & list, bool editable = FALSE )"
Creates a combo table item for the table \fItable\fR. The combobox's list of items is passed in the \fIlist\fR argument. If \fIeditable\fR is TRUE the user may type in new list items; if \fIeditable\fR is FALSE the user may only select from the list of items provided.
.PP
By default QComboTableItems cannot be replaced by other table items since isReplaceable() returns FALSE by default.
@@ -123,7 +123,7 @@ See also currentItem().
If \fIb\fR is TRUE the combo table item can be edited, i.e. the user may enter a new text item themselves. If \fIb\fR is FALSE the user may may only choose one of the existing items.
.PP
See also isEditable().
-.SH "void QComboTableItem::setStringList ( const QStringList & l )\fC [virtual]\fR"
+.SH "void QComboTableItem::setStringList ( const TQStringList & l )\fC [virtual]\fR"
Sets the list items of this QComboTableItem to the strings in the string list \fIl\fR.
.SH "TQString QComboTableItem::text ( int i ) const"
Returns the text of the combo's list item at index \fIi\fR.