qvalidator.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Copyright (C) 2012 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
  5. ** Contact: https://www.qt.io/licensing/
  6. **
  7. ** This file is part of the QtGui module of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:LGPL$
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see https://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at https://www.qt.io/contact-us.
  17. **
  18. ** GNU Lesser General Public License Usage
  19. ** Alternatively, this file may be used under the terms of the GNU Lesser
  20. ** General Public License version 3 as published by the Free Software
  21. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  22. ** packaging of this file. Please review the following information to
  23. ** ensure the GNU Lesser General Public License version 3 requirements
  24. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  25. **
  26. ** GNU General Public License Usage
  27. ** Alternatively, this file may be used under the terms of the GNU
  28. ** General Public License version 2.0 or (at your option) the GNU General
  29. ** Public license version 3 or any later version approved by the KDE Free
  30. ** Qt Foundation. The licenses are as published by the Free Software
  31. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  32. ** included in the packaging of this file. Please review the following
  33. ** information to ensure the GNU General Public License requirements will
  34. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  35. ** https://www.gnu.org/licenses/gpl-3.0.html.
  36. **
  37. ** $QT_END_LICENSE$
  38. **
  39. ****************************************************************************/
  40. #ifndef QVALIDATOR_H
  41. #define QVALIDATOR_H
  42. #include <QtCore/qobject.h>
  43. #include <QtCore/qstring.h>
  44. #include <QtCore/qregexp.h>
  45. #include <QtCore/qregularexpression.h>
  46. #include <QtCore/qlocale.h>
  47. QT_BEGIN_NAMESPACE
  48. #ifndef QT_NO_VALIDATOR
  49. class QValidatorPrivate;
  50. class Q_GUI_EXPORT QValidator : public QObject
  51. {
  52. Q_OBJECT
  53. public:
  54. explicit QValidator(QObject * parent = Q_NULLPTR);
  55. ~QValidator();
  56. enum State {
  57. Invalid,
  58. Intermediate,
  59. Acceptable
  60. };
  61. void setLocale(const QLocale &locale);
  62. QLocale locale() const;
  63. virtual State validate(QString &, int &) const = 0;
  64. virtual void fixup(QString &) const;
  65. Q_SIGNALS:
  66. void changed();
  67. protected:
  68. QValidator(QObjectPrivate &d, QObject *parent);
  69. QValidator(QValidatorPrivate &d, QObject *parent);
  70. private:
  71. Q_DISABLE_COPY(QValidator)
  72. Q_DECLARE_PRIVATE(QValidator)
  73. };
  74. class Q_GUI_EXPORT QIntValidator : public QValidator
  75. {
  76. Q_OBJECT
  77. Q_PROPERTY(int bottom READ bottom WRITE setBottom NOTIFY bottomChanged)
  78. Q_PROPERTY(int top READ top WRITE setTop NOTIFY topChanged)
  79. public:
  80. explicit QIntValidator(QObject * parent = Q_NULLPTR);
  81. QIntValidator(int bottom, int top, QObject *parent = Q_NULLPTR);
  82. ~QIntValidator();
  83. QValidator::State validate(QString &, int &) const Q_DECL_OVERRIDE;
  84. void fixup(QString &input) const Q_DECL_OVERRIDE;
  85. void setBottom(int);
  86. void setTop(int);
  87. virtual void setRange(int bottom, int top);
  88. int bottom() const { return b; }
  89. int top() const { return t; }
  90. Q_SIGNALS:
  91. void bottomChanged(int bottom);
  92. void topChanged(int top);
  93. private:
  94. Q_DISABLE_COPY(QIntValidator)
  95. int b;
  96. int t;
  97. };
  98. #ifndef QT_NO_REGEXP
  99. class QDoubleValidatorPrivate;
  100. class Q_GUI_EXPORT QDoubleValidator : public QValidator
  101. {
  102. Q_OBJECT
  103. Q_PROPERTY(double bottom READ bottom WRITE setBottom NOTIFY bottomChanged)
  104. Q_PROPERTY(double top READ top WRITE setTop NOTIFY topChanged)
  105. Q_PROPERTY(int decimals READ decimals WRITE setDecimals NOTIFY decimalsChanged)
  106. Q_PROPERTY(Notation notation READ notation WRITE setNotation NOTIFY notationChanged)
  107. public:
  108. explicit QDoubleValidator(QObject * parent = Q_NULLPTR);
  109. QDoubleValidator(double bottom, double top, int decimals, QObject *parent = Q_NULLPTR);
  110. ~QDoubleValidator();
  111. enum Notation {
  112. StandardNotation,
  113. ScientificNotation
  114. };
  115. Q_ENUM(Notation)
  116. QValidator::State validate(QString &, int &) const Q_DECL_OVERRIDE;
  117. virtual void setRange(double bottom, double top, int decimals = 0);
  118. void setBottom(double);
  119. void setTop(double);
  120. void setDecimals(int);
  121. void setNotation(Notation);
  122. double bottom() const { return b; }
  123. double top() const { return t; }
  124. int decimals() const { return dec; }
  125. Notation notation() const;
  126. Q_SIGNALS:
  127. void bottomChanged(double bottom);
  128. void topChanged(double top);
  129. void decimalsChanged(int decimals);
  130. void notationChanged(QDoubleValidator::Notation notation);
  131. private:
  132. Q_DECLARE_PRIVATE(QDoubleValidator)
  133. Q_DISABLE_COPY(QDoubleValidator)
  134. double b;
  135. double t;
  136. int dec;
  137. };
  138. class Q_GUI_EXPORT QRegExpValidator : public QValidator
  139. {
  140. Q_OBJECT
  141. Q_PROPERTY(QRegExp regExp READ regExp WRITE setRegExp NOTIFY regExpChanged)
  142. public:
  143. explicit QRegExpValidator(QObject *parent = Q_NULLPTR);
  144. explicit QRegExpValidator(const QRegExp& rx, QObject *parent = Q_NULLPTR);
  145. ~QRegExpValidator();
  146. virtual QValidator::State validate(QString& input, int& pos) const Q_DECL_OVERRIDE;
  147. void setRegExp(const QRegExp& rx);
  148. const QRegExp& regExp() const { return r; }
  149. Q_SIGNALS:
  150. void regExpChanged(const QRegExp& regExp);
  151. private:
  152. Q_DISABLE_COPY(QRegExpValidator)
  153. QRegExp r;
  154. };
  155. #endif // QT_NO_REGEXP
  156. #ifndef QT_NO_REGULAREXPRESSION
  157. class QRegularExpressionValidatorPrivate;
  158. class Q_GUI_EXPORT QRegularExpressionValidator : public QValidator
  159. {
  160. Q_OBJECT
  161. Q_PROPERTY(QRegularExpression regularExpression READ regularExpression WRITE setRegularExpression NOTIFY regularExpressionChanged)
  162. public:
  163. explicit QRegularExpressionValidator(QObject *parent = Q_NULLPTR);
  164. explicit QRegularExpressionValidator(const QRegularExpression &re, QObject *parent = Q_NULLPTR);
  165. ~QRegularExpressionValidator();
  166. virtual QValidator::State validate(QString &input, int &pos) const Q_DECL_OVERRIDE;
  167. QRegularExpression regularExpression() const;
  168. public Q_SLOTS:
  169. void setRegularExpression(const QRegularExpression &re);
  170. Q_SIGNALS:
  171. void regularExpressionChanged(const QRegularExpression &re);
  172. private:
  173. Q_DISABLE_COPY(QRegularExpressionValidator)
  174. Q_DECLARE_PRIVATE(QRegularExpressionValidator)
  175. };
  176. #endif // QT_NO_REGULAREXPRESSION
  177. #endif // QT_NO_VALIDATOR
  178. QT_END_NAMESPACE
  179. #endif // QVALIDATOR_H