summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqcombobox.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-07-20 20:15:52 +0900
committerMichele Calgaro <[email protected]>2024-07-21 23:04:19 +0900
commit1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch)
tree5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/man/man3/tqcombobox.3qt
parent14c414378d96f7463b989384f4a0e5dd76632b6d (diff)
downloadtqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.tar.gz
tqt3-1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3.zip
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqcombobox.3qt')
-rw-r--r--doc/man/man3/tqcombobox.3qt24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqcombobox.3qt b/doc/man/man3/tqcombobox.3qt
index ff1346be7..fff211689 100644
--- a/doc/man/man3/tqcombobox.3qt
+++ b/doc/man/man3/tqcombobox.3qt
@@ -43,10 +43,10 @@ Inherits TQWidget.
.BI "void \fBinsertItem\fR ( const TQString & t, int index = -1 )"
.br
.ti -1c
-.BI "void \fBinsertItem\fR ( const QPixmap & pixmap, int index = -1 )"
+.BI "void \fBinsertItem\fR ( const TQPixmap & pixmap, int index = -1 )"
.br
.ti -1c
-.BI "void \fBinsertItem\fR ( const QPixmap & pixmap, const TQString & text, int index = -1 )"
+.BI "void \fBinsertItem\fR ( const TQPixmap & pixmap, const TQString & text, int index = -1 )"
.br
.ti -1c
.BI "void \fBremoveItem\fR ( int index )"
@@ -67,16 +67,16 @@ Inherits TQWidget.
.BI "TQString \fBtext\fR ( int index ) const"
.br
.ti -1c
-.BI "const QPixmap * \fBpixmap\fR ( int index ) const"
+.BI "const TQPixmap * \fBpixmap\fR ( int index ) const"
.br
.ti -1c
.BI "void \fBchangeItem\fR ( const TQString & t, int index )"
.br
.ti -1c
-.BI "void \fBchangeItem\fR ( const QPixmap & im, int index )"
+.BI "void \fBchangeItem\fR ( const TQPixmap & im, int index )"
.br
.ti -1c
-.BI "void \fBchangeItem\fR ( const QPixmap & im, const TQString & t, int index )"
+.BI "void \fBchangeItem\fR ( const TQPixmap & im, const TQString & t, int index )"
.br
.ti -1c
.BI "bool autoResize () const \fI(obsolete)\fR"
@@ -85,7 +85,7 @@ Inherits TQWidget.
.BI "virtual void setAutoResize ( bool ) \fI(obsolete)\fR"
.br
.ti -1c
-.BI "virtual void \fBsetPalette\fR ( const QPalette & palette )"
+.BI "virtual void \fBsetPalette\fR ( const TQPalette & palette )"
.br
.ti -1c
.BI "virtual void \fBsetFont\fR ( const TQFont & font )"
@@ -339,13 +339,13 @@ Returns TRUE if auto-completion is enabled; otherwise returns FALSE. See the "au
Returns TRUE if auto resize is enabled; otherwise returns FALSE. See the "autoResize" property for details.
.SH "void QComboBox::changeItem ( const TQString & t, int index )"
Replaces the item at position \fIindex\fR with the text \fIt\fR.
-.SH "void QComboBox::changeItem ( const QPixmap & im, int index )"
+.SH "void QComboBox::changeItem ( const TQPixmap & im, int index )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Replaces the item at position \fIindex\fR with the pixmap \fIim\fR, unless the combobox is editable.
.PP
See also insertItem().
-.SH "void QComboBox::changeItem ( const QPixmap & im, const TQString & t, int index )"
+.SH "void QComboBox::changeItem ( const TQPixmap & im, const TQString & t, int index )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Replaces the item at position \fIindex\fR with the pixmap \fIim\fR and the text \fIt\fR.
@@ -386,11 +386,11 @@ Inserts a text item with text \fIt\fR, at position \fIindex\fR. The item will be
.PP
Examples:
.)l chart/optionsform.cpp, fileiconview/mainwindow.cpp, helpviewer/helpwindow.cpp, lineedits/lineedits.cpp, listboxcombo/listboxcombo.cpp, regexptester/regexptester.cpp, and tictac/tictac.cpp.
-.SH "void QComboBox::insertItem ( const QPixmap & pixmap, int index = -1 )"
+.SH "void QComboBox::insertItem ( const TQPixmap & pixmap, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a \fIpixmap\fR item at position \fIindex\fR. The item will be appended if \fIindex\fR is negative.
-.SH "void QComboBox::insertItem ( const QPixmap & pixmap, const TQString & text, int index = -1 )"
+.SH "void QComboBox::insertItem ( const TQPixmap & pixmap, const TQString & text, int index = -1 )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Inserts a \fIpixmap\fR item with additional text \fItext\fR at position \fIindex\fR. The item will be appended if \fIindex\fR is negative.
@@ -440,7 +440,7 @@ See also setListBox().
Example: listboxcombo/listboxcombo.cpp.
.SH "int QComboBox::maxCount () const"
Returns the maximum number of items allowed in the combobox. See the "maxCount" property for details.
-.SH "const QPixmap * QComboBox::pixmap ( int index ) const"
+.SH "const TQPixmap * QComboBox::pixmap ( int index ) const"
Returns the pixmap item at position \fIindex\fR, or 0 if the item is not a pixmap.
.SH "void QComboBox::popup ()\fC [virtual]\fR"
Pops up the combobox popup list.
@@ -480,7 +480,7 @@ Sets the combobox to use \fInewListBox\fR instead of the current list box or pop
\fBWarning:\fR QComboBox assumes that newListBox->text(n) returns non-null for 0 <= n < newListbox->count(). This assumption is necessary because of the line edit in QComboBox.
.SH "void QComboBox::setMaxCount ( int )\fC [virtual]\fR"
Sets the maximum number of items allowed in the combobox. See the "maxCount" property for details.
-.SH "void QComboBox::setPalette ( const QPalette & palette )\fC [virtual]\fR"
+.SH "void QComboBox::setPalette ( const TQPalette & palette )\fC [virtual]\fR"
Sets the palette for both the combobox button and the combobox popup list to \fIpalette\fR.
.PP
Reimplemented from TQWidget.