You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytqt/sip/qt/qvalidator.sip

228 lines
5.3 KiB

// This is the SIP interface definition for QValidator, QDoubleValidator,
// QIntValidator and QRegExpValidator.
//
// Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
//
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
%ExportedDoc
<Sect2><Title>QValidator</Title>
<FuncSynopsis>
<FuncDef>virtual State <Function>validate</Function></FuncDef>
<ParamDef>QString& <Parameter>input</Parameter></ParamDef>
<ParamDef>int& <Parameter>pos</Parameter></ParamDef>
</FuncSynopsis>
<Para>
The returned value is a tuple of the <Literal>State</Literal> result and the
updated <Literal>pos</Literal>.
</Para>
</Sect2>
<Sect2><Title>QDoubleValidator</Title>
<FuncSynopsis>
<FuncDef>State <Function>validate</Function></FuncDef>
<ParamDef>QString& <Parameter>input</Parameter></ParamDef>
<ParamDef>int& <Parameter>pos</Parameter></ParamDef>
</FuncSynopsis>
<Para>
The returned value is a tuple of the <Literal>State</Literal> result and the
updated <Literal>pos</Literal>.
</Para>
</Sect2>
<Sect2><Title>QIntValidator</Title>
<FuncSynopsis>
<FuncDef>State <Function>validate</Function></FuncDef>
<ParamDef>QString& <Parameter>input</Parameter></ParamDef>
<ParamDef>int& <Parameter>pos</Parameter></ParamDef>
</FuncSynopsis>
<Para>
The returned value is a tuple of the <Literal>State</Literal> result and the
updated <Literal>pos</Literal>.
</Para>
</Sect2>
<Sect2><Title>QRegExpValidator (Qt v3+)</Title>
<FuncSynopsis>
<FuncDef>virtual State <Function>validate</Function></FuncDef>
<ParamDef>QString& <Parameter>input</Parameter></ParamDef>
<ParamDef>int& <Parameter>pos</Parameter></ParamDef>
</FuncSynopsis>
<Para>
The returned value is a tuple of the <Literal>State</Literal> result and the
updated <Literal>pos</Literal>.
</Para>
</Sect2>
%End
class QValidator : QObject
{
%TypeHeaderCode
#include <qvalidator.h>
%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 <qvalidator.h>
%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 <qvalidator.h>
%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 <qvalidator.h>
%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 &regExp() const;
private:
QRegExpValidator(const QRegExpValidator &);
};
%End