summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqcombobox.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-08-31 18:33:50 +0900
committerMichele Calgaro <[email protected]>2024-08-31 18:41:44 +0900
commite42ec295c2134770a1eb07032f5f22ca4ba1daa6 (patch)
tree1ecbc3ad607c79f1ce75ba953f9fe46ea1425b85 /doc/man/man3/tqcombobox.3qt
parent0917fbb5387978eb7b2e2fd68bcb6beaa8c46505 (diff)
downloadtqt3-e42ec295c2134770a1eb07032f5f22ca4ba1daa6.tar.gz
tqt3-e42ec295c2134770a1eb07032f5f22ca4ba1daa6.zip
Rename remaining ntq[d-h]* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/man/man3/tqcombobox.3qt')
-rw-r--r--doc/man/man3/tqcombobox.3qt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/man/man3/tqcombobox.3qt b/doc/man/man3/tqcombobox.3qt
index 239eda049..083dd60d5 100644
--- a/doc/man/man3/tqcombobox.3qt
+++ b/doc/man/man3/tqcombobox.3qt
@@ -112,10 +112,10 @@ Inherits TQWidget.
.BI "Policy \fBinsertionPolicy\fR () const"
.br
.ti -1c
-.BI "virtual void \fBsetValidator\fR ( const QValidator * v )"
+.BI "virtual void \fBsetValidator\fR ( const TQValidator * v )"
.br
.ti -1c
-.BI "const QValidator * \fBvalidator\fR () const"
+.BI "const TQValidator * \fBvalidator\fR () const"
.br
.ti -1c
.BI "virtual void \fBsetListBox\fR ( TQListBox * newListBox )"
@@ -257,7 +257,7 @@ A combobox emits two signals, activated() and highlighted(), when a new item has
.PP
When the user enters a new string in an editable combobox, the widget may or may not insert it, and it can insert it in several locations. The default policy is is AtBottom but you can change this using setInsertionPolicy().
.PP
-It is possible to constrain the input to an editable combobox using QValidator; see setValidator(). By default, any input is accepted.
+It is possible to constrain the input to an editable combobox using TQValidator; see setValidator(). By default, any input is accepted.
.PP
If the combobox is not editable then it has a default focusPolicy() of TabFocus, i.e. it will not grab focus if clicked. This differs from both Windows and Motif. If the combobox is editable then it has a default focusPolicy() of StrongFocus, i.e. it will grab focus if clicked.
.PP
@@ -486,12 +486,12 @@ Sets the palette for both the combobox button and the combobox popup list to \fI
Reimplemented from TQWidget.
.SH "void TQComboBox::setSizeLimit ( int )\fC [virtual]\fR"
Sets the maximum on-screen size of the combobox. See the "sizeLimit" property for details.
-.SH "void TQComboBox::setValidator ( const QValidator * v )\fC [virtual]\fR"
+.SH "void TQComboBox::setValidator ( const TQValidator * v )\fC [virtual]\fR"
Applies the validator \fIv\fR to the combobox so that only text which is valid according to \fIv\fR is accepted.
.PP
This function does nothing if the combobox is not editable.
.PP
-See also validator(), clearValidator(), and QValidator.
+See also validator(), clearValidator(), and TQValidator.
.SH "int TQComboBox::sizeLimit () const"
Returns the maximum on-screen size of the combobox. See the "sizeLimit" property for details.
.SH "TQString TQComboBox::text ( int index ) const"
@@ -503,10 +503,10 @@ Examples:
.)l fileiconview/mainwindow.cpp and helpviewer/helpwindow.cpp.
.SH "void TQComboBox::textChanged ( const TQString & string )\fC [signal]\fR"
This signal is used for editable comboboxes. It is emitted whenever the contents of the text entry field changes. \fIstring\fR contains the new text.
-.SH "const QValidator * TQComboBox::validator () const"
+.SH "const TQValidator * TQComboBox::validator () const"
Returns the validator which constrains editing for this combobox if there is one; otherwise returns 0.
.PP
-See also setValidator(), clearValidator(), and QValidator.
+See also setValidator(), clearValidator(), and TQValidator.
.SS "Property Documentation"
.SH "bool autoCompletion"
This property holds whether auto-completion is enabled.