summaryrefslogtreecommitdiffstats
path: root/doc/html/propertydocs
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/propertydocs')
-rw-r--r--doc/html/propertydocs40
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/html/propertydocs b/doc/html/propertydocs
index 555610418..7bd06c2e0 100644
--- a/doc/html/propertydocs
+++ b/doc/html/propertydocs
@@ -315,7 +315,7 @@ toggle buttons, for example.
<name>QButton::text</name>
<doc href="ntqbutton.html#text-prop">
&lt;p&gt;This property holds the text shown on the button.
-&lt;p&gt;This property will return a &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt; if the button has no
+&lt;p&gt;This property will return a &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt; if the button has no
text. If the text has an ampersand (&amp;amp;) in it, then an
accelerator is automatically created for it using the character
that follows the '&amp;amp;' as the accelerator key. Any previous
@@ -641,8 +641,8 @@ the form 'fieldname order', e.g. 'id ASC', 'surname DESC'.
&lt;p&gt; Note that if you want to iterate over the list, you should iterate
over a copy, e.g.
&lt;pre&gt;
- &lt;a href="ntqstringlist.html"&gt;QStringList&lt;/a&gt; list = myDataBrowser.sort();
- QStringList::Iterator it = list.&lt;a href="tqvaluelist.html#begin"&gt;begin&lt;/a&gt;();
+ &lt;a href="tqstringlist.html"&gt;TQStringList&lt;/a&gt; list = myDataBrowser.sort();
+ TQStringList::Iterator it = list.&lt;a href="tqvaluelist.html#begin"&gt;begin&lt;/a&gt;();
while( it != list.&lt;a href="tqvaluelist.html#end"&gt;end&lt;/a&gt;() ) {
myProcessing( *it );
++it;
@@ -805,8 +805,8 @@ each item having the form 'fieldname order' (e.g., 'id ASC',
&lt;p&gt; Note that if you want to iterate over the sort list, you should
iterate over a copy, e.g.
&lt;pre&gt;
- &lt;a href="ntqstringlist.html"&gt;QStringList&lt;/a&gt; list = myDataTable.sort();
- QStringList::Iterator it = list.&lt;a href="tqvaluelist.html#begin"&gt;begin&lt;/a&gt;();
+ &lt;a href="tqstringlist.html"&gt;TQStringList&lt;/a&gt; list = myDataTable.sort();
+ TQStringList::Iterator it = list.&lt;a href="tqvaluelist.html#begin"&gt;begin&lt;/a&gt;();
while( it != list.&lt;a href="tqvaluelist.html#end"&gt;end&lt;/a&gt;() ) {
myProcessing( *it );
++it;
@@ -1264,7 +1264,7 @@ widget(s) with &lt;a href="ntqfiledialog.html#setInfoPreviewEnabled"&gt;setInfoP
&lt;p&gt;This property holds the name of the selected file.
&lt;p&gt;If a file was selected selectedFile contains the file's name including
its absolute path; otherwise selectedFile is empty.
-&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqstring.html#isEmpty"&gt;TQString::isEmpty&lt;/a&gt;(), &lt;a href="ntqfiledialog.html#selectedFiles-prop"&gt;selectedFiles&lt;/a&gt;, and &lt;a href="ntqfiledialog.html#selectedFilter-prop"&gt;selectedFilter&lt;/a&gt;.
+&lt;p&gt; &lt;p&gt;See also &lt;a href="tqstring.html#isEmpty"&gt;TQString::isEmpty&lt;/a&gt;(), &lt;a href="ntqfiledialog.html#selectedFiles-prop"&gt;selectedFiles&lt;/a&gt;, and &lt;a href="ntqfiledialog.html#selectedFilter-prop"&gt;selectedFilter&lt;/a&gt;.
&lt;p&gt;Get this property's value with &lt;a href="ntqfiledialog.html#selectedFile"&gt;selectedFile&lt;/a&gt;().
</doc>
@@ -1281,8 +1281,8 @@ the mode isn't ExistingFiles selectedFiles is an empty list.
&lt;p&gt; Note that if you want to iterate over the list, you should
iterate over a copy, e.g.
&lt;pre&gt;
- &lt;a href="ntqstringlist.html"&gt;QStringList&lt;/a&gt; list = myFileDialog.selectedFiles();
- QStringList::Iterator it = list.&lt;a href="tqvaluelist.html#begin"&gt;begin&lt;/a&gt;();
+ &lt;a href="tqstringlist.html"&gt;TQStringList&lt;/a&gt; list = myFileDialog.selectedFiles();
+ TQStringList::Iterator it = list.&lt;a href="tqvaluelist.html#begin"&gt;begin&lt;/a&gt;();
while( it != list.&lt;a href="tqvaluelist.html#end"&gt;end&lt;/a&gt;() ) {
myProcessing( *it );
++it;
@@ -2117,7 +2117,7 @@ selected by the user; otherwise returns FALSE.
<name>QLineEdit::inputMask</name>
<doc href="ntqlineedit.html#inputMask-prop">
&lt;p&gt;This property holds the validation input mask.
-&lt;p&gt;If no mask is set, &lt;a href="ntqlineedit.html#inputMask"&gt;inputMask&lt;/a&gt;() returns &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;p&gt;If no mask is set, &lt;a href="ntqlineedit.html#inputMask"&gt;inputMask&lt;/a&gt;() returns &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; Sets the QLineEdit's validation mask. Validators can be used
instead of, or in conjunction with masks; see &lt;a href="ntqlineedit.html#setValidator"&gt;setValidator&lt;/a&gt;().
&lt;p&gt; Unset the mask and return to normal QLineEdit operation by passing
@@ -2224,7 +2224,7 @@ but cannot edit it.
<doc href="ntqlineedit.html#selectedText-prop">
&lt;p&gt;This property holds the selected text.
&lt;p&gt;If there is no selected text this property's value is
-&lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqlineedit.html#hasSelectedText-prop"&gt;hasSelectedText&lt;/a&gt;.
&lt;p&gt;Get this property's value with &lt;a href="ntqlineedit.html#selectedText"&gt;selectedText&lt;/a&gt;().
@@ -2687,7 +2687,7 @@ Windows GUI styles; you may want to draw two pixmaps.
&lt;p&gt;The text will be interpreted either as a plain text or as rich
text, depending on the text format setting (&lt;a href="ntqmessagebox.html#textFormat-prop"&gt;QMessageBox::textFormat&lt;/a&gt;). The default setting is &lt;a href="ntqt.html#TextFormat-enum"&gt;AutoText&lt;/a&gt;, i.e.
the message box will try to auto-detect the format of the text.
-&lt;p&gt; The default value of this property is &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;p&gt; The default value of this property is &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqmessagebox.html#textFormat-prop"&gt;textFormat&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="ntqmessagebox.html#setText"&gt;setText&lt;/a&gt;() and get this property's value with &lt;a href="ntqmessagebox.html#text"&gt;text&lt;/a&gt;().
@@ -2826,7 +2826,7 @@ to FALSE. The default is TRUE.
<name>QProgressBar::progressString</name>
<doc href="ntqprogressbar.html#progressString-prop">
&lt;p&gt;This property holds the amount of progress as a string.
-&lt;p&gt;This property is &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt; if progress counting has not started.
+&lt;p&gt;This property is &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt; if progress counting has not started.
&lt;p&gt;Get this property's value with &lt;a href="ntqprogressbar.html#progressString"&gt;progressString&lt;/a&gt;().
</doc>
@@ -2865,7 +2865,7 @@ indicator.
<name>QProgressDialog::labelText</name>
<doc href="ntqprogressdialog.html#labelText-prop">
&lt;p&gt;This property holds the label's text.
-&lt;p&gt;The default text is &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;p&gt;The default text is &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="ntqprogressdialog.html#setLabelText"&gt;setLabelText&lt;/a&gt;() and get this property's value with &lt;a href="ntqprogressdialog.html#labelText"&gt;labelText&lt;/a&gt;().
</doc>
@@ -3365,7 +3365,7 @@ symbol. For example:
&lt;p&gt; To turn off the prefix display, set this property to an empty
string. The default is no prefix. The prefix is not displayed for
the &lt;a href="ntqspinbox.html#minValue"&gt;minValue&lt;/a&gt;() if &lt;a href="ntqspinbox.html#specialValueText"&gt;specialValueText&lt;/a&gt;() is not empty.
-&lt;p&gt; If no prefix is set, &lt;a href="ntqspinbox.html#prefix"&gt;prefix&lt;/a&gt;() returns &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;p&gt; If no prefix is set, &lt;a href="ntqspinbox.html#prefix"&gt;prefix&lt;/a&gt;() returns &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqspinbox.html#suffix-prop"&gt;suffix&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="ntqspinbox.html#setPrefix"&gt;setPrefix&lt;/a&gt;() and get this property's value with &lt;a href="ntqspinbox.html#prefix"&gt;prefix&lt;/a&gt;().
@@ -3399,7 +3399,7 @@ value text.
with an empty string. The default is no special-value text, i.e.
the numeric value is shown as usual.
&lt;p&gt; If no special-value text is set, &lt;a href="ntqspinbox.html#specialValueText"&gt;specialValueText&lt;/a&gt;() returns
-&lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="ntqspinbox.html#setSpecialValueText"&gt;setSpecialValueText&lt;/a&gt;() and get this property's value with &lt;a href="ntqspinbox.html#specialValueText"&gt;specialValueText&lt;/a&gt;().
</doc>
@@ -3418,7 +3418,7 @@ example:
&lt;p&gt; To turn off the suffix display, set this property to an empty
string. The default is no suffix. The suffix is not displayed for
the &lt;a href="ntqspinbox.html#minValue"&gt;minValue&lt;/a&gt;() if &lt;a href="ntqspinbox.html#specialValueText"&gt;specialValueText&lt;/a&gt;() is not empty.
-&lt;p&gt; If no suffix is set, &lt;a href="ntqspinbox.html#suffix"&gt;suffix&lt;/a&gt;() returns a &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+&lt;p&gt; If no suffix is set, &lt;a href="ntqspinbox.html#suffix"&gt;suffix&lt;/a&gt;() returns a &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqspinbox.html#prefix-prop"&gt;prefix&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="ntqspinbox.html#setSuffix"&gt;setSuffix&lt;/a&gt;() and get this property's value with &lt;a href="ntqspinbox.html#suffix"&gt;suffix&lt;/a&gt;().
@@ -3865,7 +3865,7 @@ multiple ranges of cells.
<name>QTextBrowser::source</name>
<doc href="ntqtextbrowser.html#source-prop">
&lt;p&gt;This property holds the name of the displayed document.
-&lt;p&gt;This is a &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt; if no document is displayed or if the
+&lt;p&gt;This is a &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt; if no document is displayed or if the
source is unknown.
&lt;p&gt; Setting this property uses the &lt;a href="ntqtextedit.html#mimeSourceFactory"&gt;mimeSourceFactory&lt;/a&gt;() to lookup the
named document. It also checks for optional anchors and scrolls
@@ -4014,7 +4014,7 @@ depending on the &lt;a href="ntqtextedit.html#textFormat"&gt;textFormat&lt;/a&gt
i.e. the text edit auto-detects the format of the text.
&lt;p&gt; For richtext, calling &lt;a href="ntqtextedit.html#text"&gt;text&lt;/a&gt;() on an editable QTextEdit will cause
the text to be regenerated from the textedit. This may mean that
-the &lt;a href="ntqstring.html"&gt;TQString&lt;/a&gt; returned may not be exactly the same as the one that
+the &lt;a href="tqstring.html"&gt;TQString&lt;/a&gt; returned may not be exactly the same as the one that
was set.
&lt;p&gt; &lt;p&gt;See also &lt;a href="ntqtextedit.html#textFormat-prop"&gt;textFormat&lt;/a&gt;.
@@ -4404,7 +4404,7 @@ widget defines &lt;a href="tqwidget.html#sizeIncrement"&gt;sizeIncrement&lt;/a&g
<doc href="tqwidget.html#caption-prop">
&lt;p&gt;This property holds the window caption (title).
&lt;p&gt;This property only makes sense for top-level widgets. If no
-caption has been set, the caption is &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+caption has been set, the caption is &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; &lt;p&gt;See also &lt;a href="tqwidget.html#icon-prop"&gt;icon&lt;/a&gt; and &lt;a href="tqwidget.html#iconText-prop"&gt;iconText&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="tqwidget.html#setCaption"&gt;setCaption&lt;/a&gt;() and get this property's value with &lt;a href="tqwidget.html#caption"&gt;caption&lt;/a&gt;().
@@ -4653,7 +4653,7 @@ has been set, &lt;a href="tqwidget.html#icon"&gt;icon&lt;/a&gt;() returns 0.
<doc href="tqwidget.html#iconText-prop">
&lt;p&gt;This property holds the widget's icon text.
&lt;p&gt;This property only makes sense for top-level widgets. If no icon
-text has been set, this functions returns &lt;a href="ntqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
+text has been set, this functions returns &lt;a href="tqstring.html#TQString-null"&gt;TQString::null&lt;/a&gt;.
&lt;p&gt; &lt;p&gt;See also &lt;a href="tqwidget.html#icon-prop"&gt;icon&lt;/a&gt; and &lt;a href="tqwidget.html#caption-prop"&gt;caption&lt;/a&gt;.
&lt;p&gt;Set this property's value with &lt;a href="tqwidget.html#setIconText"&gt;setIconText&lt;/a&gt;() and get this property's value with &lt;a href="tqwidget.html#iconText"&gt;iconText&lt;/a&gt;().