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

系统编程

开发平台:

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 QtCore 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 QREGEXP_H
  38. #define QREGEXP_H
  39. #ifndef QT_NO_REGEXP
  40. #include <QtCore/qstring.h>
  41. #ifdef QT3_SUPPORT
  42. #include <new>
  43. #endif
  44. QT_BEGIN_HEADER
  45. QT_BEGIN_NAMESPACE
  46. QT_MODULE(Core)
  47. struct QRegExpPrivate;
  48. class QStringList;
  49. class Q_CORE_EXPORT QRegExp
  50. {
  51. public:
  52.     enum PatternSyntax { RegExp, Wildcard, FixedString, RegExp2 };
  53.     enum CaretMode { CaretAtZero, CaretAtOffset, CaretWontMatch };
  54.     QRegExp();
  55.     explicit QRegExp(const QString &pattern, Qt::CaseSensitivity cs = Qt::CaseSensitive,
  56.      PatternSyntax syntax = RegExp);
  57.     QRegExp(const QRegExp &rx);
  58.     ~QRegExp();
  59.     QRegExp &operator=(const QRegExp &rx);
  60.     bool operator==(const QRegExp &rx) const;
  61.     inline bool operator!=(const QRegExp &rx) const { return !operator==(rx); }
  62.     bool isEmpty() const;
  63.     bool isValid() const;
  64.     QString pattern() const;
  65.     void setPattern(const QString &pattern);
  66.     Qt::CaseSensitivity caseSensitivity() const;
  67.     void setCaseSensitivity(Qt::CaseSensitivity cs);
  68. #ifdef QT3_SUPPORT
  69.     inline QT3_SUPPORT bool caseSensitive() const { return caseSensitivity() == Qt::CaseSensitive; }
  70.     inline QT3_SUPPORT void setCaseSensitive(bool sensitive)
  71.     { setCaseSensitivity(sensitive ? Qt::CaseSensitive : Qt::CaseInsensitive); }
  72. #endif
  73.     PatternSyntax patternSyntax() const;
  74.     void setPatternSyntax(PatternSyntax syntax);
  75. #ifdef QT3_SUPPORT
  76.     inline QT3_SUPPORT bool wildcard() const { return patternSyntax() == Wildcard; }
  77.     inline QT3_SUPPORT void setWildcard(bool aWildcard)
  78.     { setPatternSyntax(aWildcard ? Wildcard : RegExp); }
  79. #endif
  80.     bool isMinimal() const;
  81.     void setMinimal(bool minimal);
  82. #ifdef QT3_SUPPORT
  83.     inline QT3_SUPPORT bool minimal() const { return isMinimal(); }
  84. #endif
  85.     bool exactMatch(const QString &str) const;
  86.     int indexIn(const QString &str, int offset = 0, CaretMode caretMode = CaretAtZero) const;
  87.     int lastIndexIn(const QString &str, int offset = -1, CaretMode caretMode = CaretAtZero) const;
  88. #ifdef QT3_SUPPORT
  89.     inline QT3_SUPPORT int search(const QString &str, int from = 0,
  90.                                 CaretMode caretMode = CaretAtZero) const
  91.     { return indexIn(str, from, caretMode); }
  92.     inline QT3_SUPPORT int searchRev(const QString &str, int from = -1,
  93.                                    CaretMode caretMode = CaretAtZero) const
  94.     { return lastIndexIn(str, from, caretMode); }
  95. #endif
  96.     int matchedLength() const;
  97. #ifndef QT_NO_REGEXP_CAPTURE
  98.     int numCaptures() const;
  99.     QStringList capturedTexts();
  100.     QString cap(int nth = 0);
  101.     int pos(int nth = 0);
  102.     QString errorString();
  103. #endif
  104.     static QString escape(const QString &str);
  105. #ifdef QT3_SUPPORT
  106.     inline QT3_SUPPORT_CONSTRUCTOR QRegExp(const QString &aPattern, bool cs, bool aWildcard = false)
  107.     {
  108.         new (this)
  109.             QRegExp(aPattern, cs ? Qt::CaseSensitive : Qt::CaseInsensitive,
  110.                     aWildcard ? Wildcard : RegExp);
  111.     }
  112. #endif
  113. private:
  114.     QRegExpPrivate *priv;
  115. };
  116. Q_DECLARE_TYPEINFO(QRegExp, Q_MOVABLE_TYPE);
  117. #ifndef QT_NO_DATASTREAM
  118. Q_CORE_EXPORT QDataStream &operator<<(QDataStream &out, const QRegExp &regExp);
  119. Q_CORE_EXPORT QDataStream &operator>>(QDataStream &in, QRegExp &regExp);
  120. #endif
  121. QT_END_NAMESPACE
  122. QT_END_HEADER
  123. #endif // QT_NO_REGEXP
  124. #endif // QREGEXP_H