Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

TQDoubleValidator Class Reference

The TQDoubleValidator class provides range checking of floating-point numbers. More...

#include <ntqvalidator.h>

Inherits TQValidator.

List of all member functions.

Public Members

Properties


Detailed Description

The TQDoubleValidator class provides range checking of floating-point numbers.

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 fixup() function.

You can set the acceptable range in one call with setRange(), or with setBottom() and setTop(). Set the number of decimal places with setDecimals(). The validate() function returns the validation state.

See also TQIntValidator, TQRegExpValidator, and Miscellaneous Classes.


Member Function Documentation

TQDoubleValidator::TQDoubleValidator ( TQObject * parent, const char * name = 0 )

Constructs a validator object with parent parent, called name, which accepts any double.

TQDoubleValidator::TQDoubleValidator ( double bottom, double top, int decimals, TQObject * parent, const char * name = 0 )

Constructs a validator object with parent parent, called name. This validator will accept doubles from bottom to top inclusive, with up to decimals digits after the decimal point.

TQDoubleValidator::~TQDoubleValidator ()

Destroys the validator, freeing any resources used.

double TQDoubleValidator::bottom () const

Returns the validator's minimum acceptable value. See the "bottom" property for details.

int TQDoubleValidator::decimals () const

Returns the validator's maximum number of digits after the decimal point. See the "decimals" property for details.

void TQDoubleValidator::setBottom ( double )

Sets the validator's minimum acceptable value. See the "bottom" property for details.

void TQDoubleValidator::setDecimals ( int )

Sets the validator's maximum number of digits after the decimal point. See the "decimals" property for details.

void TQDoubleValidator::setRange ( double minimum, double maximum, int decimals = 0 ) [virtual]

Sets the validator to accept doubles from minimum to maximum inclusive, with at most decimals digits after the decimal point.

void TQDoubleValidator::setTop ( double )

Sets the validator's maximum acceptable value. See the "top" property for details.

double TQDoubleValidator::top () const

Returns the validator's maximum acceptable value. See the "top" property for details.

TQValidator::State TQDoubleValidator::validate ( TQString & input, int & ) const [virtual]

Returns Acceptable if the string input contains a double that is within the valid range and is in the correct format.

Returns Intermediate if input 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.

Returns Invalid if the input is not a double.

Note: If the valid range consists of just positive doubles (e.g. 0.0 - 100.0) and input is a negative double then Invalid is returned.

Reimplemented from TQValidator.


Property Documentation

double bottom

This property holds the validator's minimum acceptable value.

Set this property's value with setBottom() and get this property's value with bottom().

See also setRange().

int decimals

This property holds the validator's maximum number of digits after the decimal point.

Set this property's value with setDecimals() and get this property's value with decimals().

See also setRange().

double top

This property holds the validator's maximum acceptable value.

Set this property's value with setTop() and get this property's value with top().

See also setRange().


This file is part of the TQt toolkit. Copyright © 1995-2007 Trolltech. All Rights Reserved.


Copyright © 2007 TrolltechTrademarks
TQt 3.3.8