qvalidator.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QVALIDATOR_H
  38. #define QVALIDATOR_H
  39. #include <QtCore/qobject.h>
  40. #include <QtCore/qstring.h>
  41. #include <QtCore/qregexp.h>
  42. #include <QtCore/qlocale.h>
  43. QT_BEGIN_HEADER
  44. QT_BEGIN_NAMESPACE
  45. QT_MODULE(Gui)
  46. #ifndef QT_NO_VALIDATOR
  47. class QValidatorPrivate;
  48. class Q_GUI_EXPORT QValidator : public QObject
  49. {
  50.     Q_OBJECT
  51. public:
  52.     explicit QValidator(QObject * parent);
  53.     ~QValidator();
  54.     enum State {
  55.         Invalid,
  56.         Intermediate,
  57.         Acceptable
  58. #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN)
  59.         , Valid = Intermediate
  60. #endif
  61.     };
  62.     void setLocale(const QLocale &locale);
  63.     QLocale locale() const;
  64.     virtual State validate(QString &, int &) const = 0;
  65.     virtual void fixup(QString &) const;
  66. #ifdef QT3_SUPPORT
  67. public:
  68.     QT3_SUPPORT_CONSTRUCTOR QValidator(QObject * parent, const char *name);
  69. #endif
  70. protected:
  71.     QValidator(QObjectPrivate &d, QObject *parent);
  72.     QValidator(QValidatorPrivate &d, QObject *parent);
  73. private:
  74.     Q_DISABLE_COPY(QValidator)
  75.     Q_DECLARE_PRIVATE(QValidator)
  76. };
  77. class Q_GUI_EXPORT QIntValidator : public QValidator
  78. {
  79.     Q_OBJECT
  80.     Q_PROPERTY(int bottom READ bottom WRITE setBottom)
  81.     Q_PROPERTY(int top READ top WRITE setTop)
  82. public:
  83.     explicit QIntValidator(QObject * parent);
  84.     QIntValidator(int bottom, int top, QObject * parent);
  85.     ~QIntValidator();
  86.     QValidator::State validate(QString &, int &) const;
  87.     void setBottom(int);
  88.     void setTop(int);
  89.     virtual void setRange(int bottom, int top);
  90.     int bottom() const { return b; }
  91.     int top() const { return t; }
  92. #ifdef QT3_SUPPORT
  93. public:
  94.     QT3_SUPPORT_CONSTRUCTOR QIntValidator(QObject * parent, const char *name);
  95.     QT3_SUPPORT_CONSTRUCTOR QIntValidator(int bottom, int top, QObject * parent, const char *name);
  96. #endif
  97. private:
  98.     Q_DISABLE_COPY(QIntValidator)
  99.     int b;
  100.     int t;
  101. };
  102. #ifndef QT_NO_REGEXP
  103. class QDoubleValidatorPrivate;
  104. class Q_GUI_EXPORT QDoubleValidator : public QValidator
  105. {
  106.     Q_OBJECT
  107.     Q_PROPERTY(double bottom READ bottom WRITE setBottom)
  108.     Q_PROPERTY(double top READ top WRITE setTop)
  109.     Q_PROPERTY(int decimals READ decimals WRITE setDecimals)
  110.     Q_PROPERTY(Notation notation READ notation WRITE setNotation)
  111. public:
  112.     explicit QDoubleValidator(QObject * parent);
  113.     QDoubleValidator(double bottom, double top, int decimals, QObject * parent);
  114.     ~QDoubleValidator();
  115.     enum Notation {
  116.         StandardNotation,
  117.         ScientificNotation
  118.     };
  119.     QValidator::State validate(QString &, int &) const;
  120.     virtual void setRange(double bottom, double top, int decimals = 0);
  121.     void setBottom(double);
  122.     void setTop(double);
  123.     void setDecimals(int);
  124.     void setNotation(Notation);
  125.     double bottom() const { return b; }
  126.     double top() const { return t; }
  127.     int decimals() const { return dec; }
  128.     Notation notation() const;
  129. #ifdef QT3_SUPPORT
  130. public:
  131.     QT3_SUPPORT_CONSTRUCTOR QDoubleValidator(QObject * parent, const char *name);
  132.     QT3_SUPPORT_CONSTRUCTOR QDoubleValidator(double bottom, double top, int decimals,
  133.                                            QObject * parent, const char *name);
  134. #endif
  135. private:
  136.     Q_DECLARE_PRIVATE(QDoubleValidator)
  137.     Q_DISABLE_COPY(QDoubleValidator)
  138.     double b;
  139.     double t;
  140.     int dec;
  141. };
  142. class Q_GUI_EXPORT QRegExpValidator : public QValidator
  143. {
  144.     Q_OBJECT
  145.     Q_PROPERTY(QRegExp regExp READ regExp WRITE setRegExp)
  146. public:
  147.     explicit QRegExpValidator(QObject *parent);
  148.     QRegExpValidator(const QRegExp& rx, QObject *parent);
  149.     ~QRegExpValidator();
  150.     virtual QValidator::State validate(QString& input, int& pos) const;
  151.     void setRegExp(const QRegExp& rx);
  152.     const QRegExp& regExp() const { return r; } // ### make inline for 5.0
  153. #ifdef QT3_SUPPORT
  154. public:
  155.     QT3_SUPPORT_CONSTRUCTOR QRegExpValidator(QObject *parent, const char *name);
  156.     QT3_SUPPORT_CONSTRUCTOR QRegExpValidator(const QRegExp& rx, QObject *parent, const char *name);
  157. #endif
  158. private:
  159.     Q_DISABLE_COPY(QRegExpValidator)
  160.     QRegExp r;
  161. };
  162. #endif // QT_NO_REGEXP
  163. #endif // QT_NO_VALIDATOR
  164. QT_END_NAMESPACE
  165. QT_END_HEADER
  166. #endif // QVALIDATOR_H