// This is the SIP interface definition for QValidator, QDoubleValidator, // QIntValidator and QRegExpValidator. // // Copyright (c) 2007 // Riverbank Computing Limited // // This file is part of PyQt. // // This copy of PyQt is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2, or (at your option) any later // version. // // PyQt is supplied in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more // details. // // You should have received a copy of the GNU General Public License along with // PyQt; see the file LICENSE. If not, write to the Free Software Foundation, // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. %ExportedDoc QValidator virtual State validate QString& input int& pos The returned value is a tuple of the State result and the updated pos. QDoubleValidator State validate QString& input int& pos The returned value is a tuple of the State result and the updated pos. QIntValidator State validate QString& input int& pos The returned value is a tuple of the State result and the updated pos. QRegExpValidator (Qt v3+) virtual State validate QString& input int& pos The returned value is a tuple of the State result and the updated pos. %End class QValidator : QObject { %TypeHeaderCode #include %End public: %If (- Qt_3_0_0) QValidator(QWidget * /TransferThis/,const char * = 0); %End %If (Qt_3_0_0 -) QValidator(QObject * /TransferThis/,const char * = 0); %End %If (- Qt_2_1_0) enum State { Invalid, Valid, Acceptable }; %End %If (Qt_2_1_0 -) enum State { Invalid, Intermediate, Valid = Intermediate, Acceptable }; %End %If (Qt_2_00 -) virtual State validate(QString &,int & /In,Out/) const = 0; virtual void fixup(QString &) const; %End %If (- Qt_2_00) virtual State validate(QString &,int & /In,Out/) = 0; virtual void fixup(QString &); %End private: %If (Qt_2_1_0 -) QValidator(const QValidator &); %End }; class QIntValidator : QValidator { %TypeHeaderCode #include %End public: %If (Qt_3_0_0 -) QIntValidator(QObject * /TransferThis/,const char * = 0); QIntValidator(int,int,QObject * /TransferThis/,const char * = 0); %End %If (- Qt_3_0_0) QIntValidator(QWidget * /TransferThis/,const char * = 0); QIntValidator(int,int,QWidget * /TransferThis/,const char * = 0); %End %If (Qt_2_00 -) QValidator::State validate(QString &,int & /In,Out/) const; %End %If (- Qt_2_00) QValidator::State validate(QString &,int & /In,Out/); %End %If (Qt_2_1_0 -) void setBottom(int); void setTop(int); %End virtual void setRange(int,int); int bottom() const; int top() const; private: %If (Qt_2_1_0 -) QIntValidator(const QIntValidator &); %End }; class QDoubleValidator : QValidator { %TypeHeaderCode #include %End public: %If (Qt_3_0_0 -) QDoubleValidator(QObject * /TransferThis/,const char * = 0); QDoubleValidator(double,double,int,QObject * /TransferThis/, const char * = 0); %End %If (- Qt_3_0_0) QDoubleValidator(QWidget * /TransferThis/,const char * = 0); QDoubleValidator(double,double,int,QWidget * /TransferThis/, const char * = 0); %End %If (Qt_2_00 -) QValidator::State validate(QString &,int & /In,Out/) const; %End %If (- Qt_2_00) QValidator::State validate(QString &,int & /In,Out/); %End virtual void setRange(double,double,int = 0); %If (Qt_2_1_0 -) void setBottom(double); void setTop(double); void setDecimals(int); %End double bottom() const; double top() const; int decimals() const; private: %If (Qt_2_1_0 -) QDoubleValidator(const QDoubleValidator &); %End }; %If (Qt_3_0_0 -) class QRegExpValidator : QValidator { %TypeHeaderCode #include %End public: QRegExpValidator(QObject * /TransferThis/,const char * = 0); QRegExpValidator(const QRegExp &,QObject * /TransferThis/, const char * = 0); virtual QValidator::State validate(QString &,int & /In,Out/) const; void setRegExp(const QRegExp &); const QRegExp ®Exp() const; private: QRegExpValidator(const QRegExpValidator &); }; %End