summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqinputdialog.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqinputdialog.html')
-rw-r--r--doc/html/ntqinputdialog.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/ntqinputdialog.html b/doc/html/ntqinputdialog.html
index c52d87e7d..af631ca60 100644
--- a/doc/html/ntqinputdialog.html
+++ b/doc/html/ntqinputdialog.html
@@ -56,10 +56,10 @@ label must be set to tell the user what they should enter.
functions can be used in a similar way, for example:
<pre>
bool ok;
- <a href="ntqstring.html">TQString</a> text = TQInputDialog::<a href="#getText">getText</a>(
+ <a href="tqstring.html">TQString</a> text = TQInputDialog::<a href="#getText">getText</a>(
"MyApp 3000", "Enter your name:", TQLineEdit::Normal,
- <a href="ntqstring.html#TQString-null">TQString::null</a>, &amp;ok, this );
- if ( ok &amp;&amp; !text.<a href="ntqstring.html#isEmpty">isEmpty</a>() ) {
+ <a href="tqstring.html#TQString-null">TQString::null</a>, &amp;ok, this );
+ if ( ok &amp;&amp; !text.<a href="tqstring.html#isEmpty">isEmpty</a>() ) {
// user entered something and pressed OK
} else {
// user entered nothing or pressed Cancel
@@ -69,7 +69,7 @@ functions can be used in a similar way, for example:
<p> <center><img src="inputdialogs.png" alt="Input Dialogs"></center> <p>See also <a href="dialogs.html">Dialog Classes</a>.
<hr><h2>Member Function Documentation</h2>
-<h3 class=fn>double <a name="getDouble"></a>TQInputDialog::getDouble ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, double&nbsp;value = 0, double&nbsp;minValue = -2147483647, double&nbsp;maxValue = 2147483647, int&nbsp;decimals = 1, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
+<h3 class=fn>double <a name="getDouble"></a>TQInputDialog::getDouble ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, double&nbsp;value = 0, double&nbsp;minValue = -2147483647, double&nbsp;maxValue = 2147483647, int&nbsp;decimals = 1, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
</h3>
Static convenience function to get a floating point number from
the user. <em>caption</em> is the text which is displayed in the title
@@ -98,7 +98,7 @@ entered by the user.
</pre>
-<h3 class=fn>int <a name="getInteger"></a>TQInputDialog::getInteger ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, int&nbsp;value = 0, int&nbsp;minValue = -2147483647, int&nbsp;maxValue = 2147483647, int&nbsp;step = 1, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
+<h3 class=fn>int <a name="getInteger"></a>TQInputDialog::getInteger ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, int&nbsp;value = 0, int&nbsp;minValue = -2147483647, int&nbsp;maxValue = 2147483647, int&nbsp;step = 1, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
</h3>
Static convenience function to get an integer input from the
user. <em>caption</em> is the text which is displayed in the title bar
@@ -126,7 +126,7 @@ be modal.
</pre>
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="getItem"></a>TQInputDialog::getItem ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, const&nbsp;<a href="ntqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;list, int&nbsp;current = 0, bool&nbsp;editable = TRUE, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getItem"></a>TQInputDialog::getItem ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, const&nbsp;<a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;list, int&nbsp;current = 0, bool&nbsp;editable = TRUE, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
</h3>
Static convenience function to let the user select an item from a
string list. <em>caption</em> is the text which is displayed in the title
@@ -143,10 +143,10 @@ be modal.
<p> This function returns the text of the current item, or if <em>editable</em> is TRUE, the current text of the combobox.
<p> Use this static function like this:
<p> <pre>
- <a href="ntqstringlist.html">TQStringList</a> lst;
+ <a href="tqstringlist.html">TQStringList</a> lst;
lst &lt;&lt; "First" &lt;&lt; "Second" &lt;&lt; "Third" &lt;&lt; "Fourth" &lt;&lt; "Fifth";
bool ok;
- <a href="ntqstring.html">TQString</a> res = TQInputDialog::<a href="#getItem">getItem</a>(
+ <a href="tqstring.html">TQString</a> res = TQInputDialog::<a href="#getItem">getItem</a>(
"MyApp 3000", "Select an item:", lst, 1, TRUE, &amp;ok,
this );
if ( ok ) {
@@ -157,7 +157,7 @@ be modal.
</pre>
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="getText"></a>TQInputDialog::getText ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="ntqlineedit.html#EchoMode-enum">TQLineEdit::EchoMode</a>&nbsp;mode = TQLineEdit::Normal, const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;text = TQString::null, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="getText"></a>TQInputDialog::getText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;caption, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="ntqlineedit.html#EchoMode-enum">TQLineEdit::EchoMode</a>&nbsp;mode = TQLineEdit::Normal, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text = TQString::null, bool&nbsp;*&nbsp;ok = 0, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;parent = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )<tt> [static]</tt>
</h3>
Static convenience function to get a string from the user. <em>caption</em> is the text which is displayed in the title bar of the
dialog. <em>label</em> is the text which is shown to the user (it should
@@ -172,10 +172,10 @@ edit. It will not return an empty string.
<p> Use this static function like this:
<p> <pre>
bool ok;
- <a href="ntqstring.html">TQString</a> text = TQInputDialog::<a href="#getText">getText</a>(
+ <a href="tqstring.html">TQString</a> text = TQInputDialog::<a href="#getText">getText</a>(
"MyApp 3000", "Enter your name:", TQLineEdit::Normal,
- <a href="ntqstring.html#TQString-null">TQString::null</a>, &amp;ok, this );
- if ( ok &amp;&amp; !text.<a href="ntqstring.html#isEmpty">isEmpty</a>() ) {
+ <a href="tqstring.html#TQString-null">TQString::null</a>, &amp;ok, this );
+ if ( ok &amp;&amp; !text.<a href="tqstring.html#isEmpty">isEmpty</a>() ) {
// user entered something and pressed OK
} else {
// user entered nothing or pressed Cancel