📄 qdoublevalidator.3qt
字号:
'\" t.TH QDoubleValidator 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQDoubleValidator \- Range checking of floating-point numbers.SH SYNOPSIS\fC#include <qvalidator.h>\fR.PPInherits QValidator..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQDoubleValidator\fR ( QObject * parent, const char * name = 0 )".br.ti -1c.BI "\fBQDoubleValidator\fR ( double bottom, double top, int decimals, QObject * parent, const char * name = 0 )".br.ti -1c.BI "\fB~QDoubleValidator\fR ()".br.ti -1c.BI "virtual QValidator::State \fBvalidate\fR ( QString & input, int & ) const".br.ti -1c.BI "virtual void \fBsetRange\fR ( double minimum, double maximum, int decimals = 0 )".br.ti -1c.BI "void \fBsetBottom\fR ( double )".br.ti -1c.BI "void \fBsetTop\fR ( double )".br.ti -1c.BI "void \fBsetDecimals\fR ( int )".br.ti -1c.BI "double \fBbottom\fR () const".br.ti -1c.BI "double \fBtop\fR () const".br.ti -1c.BI "int \fBdecimals\fR () const".br.in -1c.SS "Properties".in +1c.ti -1c.BI "double \fBbottom\fR - the validator's minimum acceptable value".br.ti -1c.BI "int \fBdecimals\fR - the validator's maximum number of digits after the decimal point".br.ti -1c.BI "double \fBtop\fR - the validator's maximum acceptable value".br.in -1c.SH DESCRIPTIONThe QDoubleValidator class provides range checking of floating-point numbers..PPQDoubleValidator 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..PPYou 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..PPSee also QIntValidator, QRegExpValidator, and Miscellaneous Classes..SH MEMBER FUNCTION DOCUMENTATION.SH "QDoubleValidator::QDoubleValidator ( QObject * parent, const char * name = 0 )"Constructs a validator object with parent \fIparent\fR, called \fIname\fR, which accepts any double..SH "QDoubleValidator::QDoubleValidator ( double bottom, double top, int decimals, QObject * parent, const char * name = 0 )"Constructs a validator object with parent \fIparent\fR, called \fIname\fR. This validator will accept doubles from \fIbottom\fR to \fItop\fR inclusive, with up to \fIdecimals\fR digits after the decimal point..SH "QDoubleValidator::~QDoubleValidator ()"Destroys the validator, freeing any resources used..SH "double QDoubleValidator::bottom () const"Returns the validator's minimum acceptable value. See the "bottom" property for details..SH "int QDoubleValidator::decimals () const"Returns the validator's maximum number of digits after the decimal point. See the "decimals" property for details..SH "void QDoubleValidator::setBottom ( double )"Sets the validator's minimum acceptable value. See the "bottom" property for details..SH "void QDoubleValidator::setDecimals ( int )"Sets the validator's maximum number of digits after the decimal point. See the "decimals" property for details..SH "void QDoubleValidator::setRange ( double minimum, double maximum, int decimals = 0 )\fC [virtual]\fR"Sets the validator to accept doubles from \fIminimum\fR to \fImaximum\fR inclusive, with at most \fIdecimals\fR digits after the decimal point..SH "void QDoubleValidator::setTop ( double )"Sets the validator's maximum acceptable value. See the "top" property for details..SH "double QDoubleValidator::top () const"Returns the validator's maximum acceptable value. See the "top" property for details..SH "QValidator::State QDoubleValidator::validate ( QString & input, int & ) const\fC [virtual]\fR"Returns Acceptable if the string \fIinput\fR contains a double that is within the valid range and is in the correct format..PPReturns Intermediate if \fIinput\fR 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..PPReturns Invalid if the \fIinput\fR is not a double..PPReimplemented from QValidator..SS "Property Documentation".SH "double bottom"This property holds the validator's minimum acceptable value..PPSet this property's value with setBottom() and get this property's value with bottom()..PPSee also setRange()..SH "int decimals"This property holds the validator's maximum number of digits after the decimal point..PPSet this property's value with setDecimals() and get this property's value with decimals()..PPSee also setRange()..SH "double top"This property holds the validator's maximum acceptable value..PPSet this property's value with setTop() and get this property's value with top()..PPSee also setRange()..SH "SEE ALSO".BR http://doc.trolltech.com/qdoublevalidator.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qdoublevalidator.3qt) and the Qtversion (3.1.1).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -