diff options
Diffstat (limited to 'doc/html/qdoublevalidator.html')
-rw-r--r-- | doc/html/qdoublevalidator.html | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/doc/html/qdoublevalidator.html b/doc/html/qdoublevalidator.html index 81764a7ac..1278f5fbb 100644 --- a/doc/html/qdoublevalidator.html +++ b/doc/html/qdoublevalidator.html @@ -1,5 +1,5 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/qvalidator.cpp:348 --> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/widgets/tqvalidator.cpp:348 --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> @@ -34,9 +34,9 @@ body { background: #ffffff; color: black; } <p>The TQDoubleValidator class provides range checking of floating-point numbers. <a href="#details">More...</a> -<p><tt>#include <<a href="qvalidator-h.html">ntqvalidator.h</a>></tt> -<p>Inherits <a href="ntqvalidator.html">TQValidator</a>. -<p><a href="qdoublevalidator-members.html">List of all member functions.</a> +<p><tt>#include <<a href="tqvalidator-h.html">tqvalidator.h</a>></tt> +<p>Inherits <a href="tqvalidator.html">TQValidator</a>. +<p><a href="tqdoublevalidator-members.html">List of all member functions.</a> <h2>Public Members</h2> <ul> <li class=fn><a href="#TQDoubleValidator"><b>TQDoubleValidator</b></a> ( TQObject * parent, const char * name = 0 )</li> @@ -65,7 +65,7 @@ floating-point numbers. <p> <p> TQDoubleValidator provides an upper bound, a lower bound and a limit on the number of digits after the decimal point. It does not -provide a <a href="ntqvalidator.html#fixup">fixup</a>() function. +provide a <a href="tqvalidator.html#fixup">fixup</a>() function. <p> You can set the acceptable range in one call with <a href="#setRange">setRange</a>(), or with <a href="#setBottom">setBottom</a>() and <a href="#setTop">setTop</a>(). Set the number of decimal places with <a href="#setDecimals">setDecimals</a>(). The <a href="#validate">validate</a>() function returns the validation @@ -88,16 +88,16 @@ Destroys the validator, freeing any resources used. <h3 class=fn>double <a name="bottom"></a>TQDoubleValidator::bottom () const </h3><p>Returns the validator's minimum acceptable value. -See the <a href="qdoublevalidator.html#bottom-prop">"bottom"</a> property for details. +See the <a href="tqdoublevalidator.html#bottom-prop">"bottom"</a> property for details. <h3 class=fn>int <a name="decimals"></a>TQDoubleValidator::decimals () const </h3><p>Returns the validator's maximum number of digits after the decimal point. -See the <a href="qdoublevalidator.html#decimals-prop">"decimals"</a> property for details. +See the <a href="tqdoublevalidator.html#decimals-prop">"decimals"</a> property for details. <h3 class=fn>void <a name="setBottom"></a>TQDoubleValidator::setBottom ( double ) </h3><p>Sets the validator's minimum acceptable value. -See the <a href="qdoublevalidator.html#bottom-prop">"bottom"</a> property for details. +See the <a href="tqdoublevalidator.html#bottom-prop">"bottom"</a> property for details. <h3 class=fn>void <a name="setDecimals"></a>TQDoubleValidator::setDecimals ( int ) </h3><p>Sets the validator's maximum number of digits after the decimal point. -See the <a href="qdoublevalidator.html#decimals-prop">"decimals"</a> property for details. +See the <a href="tqdoublevalidator.html#decimals-prop">"decimals"</a> property for details. <h3 class=fn>void <a name="setRange"></a>TQDoubleValidator::setRange ( double minimum, double maximum, int decimals = 0 )<tt> [virtual]</tt> </h3> Sets the validator to accept doubles from <em>minimum</em> to <em>maximum</em> @@ -106,22 +106,22 @@ point. <h3 class=fn>void <a name="setTop"></a>TQDoubleValidator::setTop ( double ) </h3><p>Sets the validator's maximum acceptable value. -See the <a href="qdoublevalidator.html#top-prop">"top"</a> property for details. +See the <a href="tqdoublevalidator.html#top-prop">"top"</a> property for details. <h3 class=fn>double <a name="top"></a>TQDoubleValidator::top () const </h3><p>Returns the validator's maximum acceptable value. -See the <a href="qdoublevalidator.html#top-prop">"top"</a> property for details. -<h3 class=fn><a href="ntqvalidator.html#State-enum">TQValidator::State</a> <a name="validate"></a>TQDoubleValidator::validate ( <a href="tqstring.html">TQString</a> & input, int & ) const<tt> [virtual]</tt> +See the <a href="tqdoublevalidator.html#top-prop">"top"</a> property for details. +<h3 class=fn><a href="tqvalidator.html#State-enum">TQValidator::State</a> <a name="validate"></a>TQDoubleValidator::validate ( <a href="tqstring.html">TQString</a> & input, int & ) const<tt> [virtual]</tt> </h3> -Returns <a href="ntqvalidator.html#State-enum">Acceptable</a> if the string <em>input</em> contains a double +Returns <a href="tqvalidator.html#State-enum">Acceptable</a> if the string <em>input</em> contains a double that is within the valid range and is in the correct format. -<p> Returns <a href="ntqvalidator.html#State-enum">Intermediate</a> if <em>input</em> contains a double that is +<p> Returns <a href="tqvalidator.html#State-enum">Intermediate</a> if <em>input</em> contains a double that is outside the range or is in the wrong format, e.g. with too many digits after the decimal point or is empty. -<p> Returns <a href="ntqvalidator.html#State-enum">Invalid</a> if the <em>input</em> is not a double. +<p> Returns <a href="tqvalidator.html#State-enum">Invalid</a> if the <em>input</em> is not a double. <p> Note: If the valid range consists of just positive doubles (e.g. 0.0 - 100.0) and <em>input</em> is a negative double then Invalid is returned. -<p>Reimplemented from <a href="ntqvalidator.html#validate">TQValidator</a>. +<p>Reimplemented from <a href="tqvalidator.html#validate">TQValidator</a>. <hr><h2>Property Documentation</h2> <h3 class=fn>double <a name="bottom-prop"></a>bottom</h3> <p>This property holds the validator's minimum acceptable value. |