📄 qvalidator.h
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QVALIDATOR_H#define QVALIDATOR_H#include <QtCore/qobject.h>#include <QtCore/qstring.h>#include <QtCore/qregexp.h>QT_BEGIN_HEADERQT_MODULE(Gui)#ifndef QT_NO_VALIDATORclass Q_GUI_EXPORT QValidator : public QObject{ Q_OBJECTpublic: explicit QValidator(QObject * parent); ~QValidator(); enum State { Invalid, Intermediate,#if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN) Valid = Intermediate,#endif Acceptable }; virtual State validate(QString &, int &) const = 0; virtual void fixup(QString &) const;#ifdef QT3_SUPPORTpublic: QT3_SUPPORT_CONSTRUCTOR QValidator(QObject * parent, const char *name);#endifprivate: Q_DISABLE_COPY(QValidator)};class Q_GUI_EXPORT QIntValidator : public QValidator{ Q_OBJECT Q_PROPERTY(int bottom READ bottom WRITE setBottom) Q_PROPERTY(int top READ top WRITE setTop)public: explicit QIntValidator(QObject * parent); QIntValidator(int bottom, int top, QObject * parent); ~QIntValidator(); QValidator::State validate(QString &, int &) const; void setBottom(int); void setTop(int); virtual void setRange(int bottom, int top); int bottom() const { return b; } int top() const { return t; }#ifdef QT3_SUPPORTpublic: QT3_SUPPORT_CONSTRUCTOR QIntValidator(QObject * parent, const char *name); QT3_SUPPORT_CONSTRUCTOR QIntValidator(int bottom, int top, QObject * parent, const char *name);#endifprivate: Q_DISABLE_COPY(QIntValidator) int b; int t;};#ifndef QT_NO_REGEXPclass Q_GUI_EXPORT QDoubleValidator : public QValidator{ Q_OBJECT Q_PROPERTY(double bottom READ bottom WRITE setBottom) Q_PROPERTY(double top READ top WRITE setTop) Q_PROPERTY(int decimals READ decimals WRITE setDecimals)public: explicit QDoubleValidator(QObject * parent); QDoubleValidator(double bottom, double top, int decimals, QObject * parent); ~QDoubleValidator(); QValidator::State validate(QString &, int &) const; virtual void setRange(double bottom, double top, int decimals = 0); void setBottom(double); void setTop(double); void setDecimals(int); double bottom() const { return b; } double top() const { return t; } int decimals() const { return d; }#ifdef QT3_SUPPORTpublic: QT3_SUPPORT_CONSTRUCTOR QDoubleValidator(QObject * parent, const char *name); QT3_SUPPORT_CONSTRUCTOR QDoubleValidator(double bottom, double top, int decimals, QObject * parent, const char *name);#endifprivate: Q_DISABLE_COPY(QDoubleValidator) double b; double t; int d;};class Q_GUI_EXPORT QRegExpValidator : public QValidator{ Q_OBJECT Q_PROPERTY(QRegExp regExp READ regExp WRITE setRegExp)public: explicit QRegExpValidator(QObject *parent); QRegExpValidator(const QRegExp& rx, QObject *parent); ~QRegExpValidator(); virtual QValidator::State validate(QString& input, int& pos) const; void setRegExp(const QRegExp& rx); const QRegExp& regExp() const { return r; } // ### make inline for 5.0#ifdef QT3_SUPPORTpublic: QT3_SUPPORT_CONSTRUCTOR QRegExpValidator(QObject *parent, const char *name); QT3_SUPPORT_CONSTRUCTOR QRegExpValidator(const QRegExp& rx, QObject *parent, const char *name);#endifprivate: Q_DISABLE_COPY(QRegExpValidator) QRegExp r;};#endif // QT_NO_REGEXP#endif // QT_NO_VALIDATORQT_END_HEADER#endif // QVALIDATOR_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -