Warning, file /sdk/cervisia/stringmatcher.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 * Copyright (c) 2003-2008 André Wöbbeking <Woebbeking@kde.org> 0003 * 0004 * This program is free software; you can redistribute it and/or modify 0005 * it under the terms of the GNU General Public License as published by 0006 * the Free Software Foundation; either version 2 of the License, or 0007 * (at your option) any later version. 0008 * 0009 * This program is distributed in the hope that it will be useful, 0010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0012 * GNU General Public License for more details. 0013 * 0014 * You should have received a copy of the GNU General Public License 0015 * along with this program; if not, write to the Free Software 0016 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 0017 */ 0018 0019 #ifndef CERVISIA_STRINGMATCHER_H 0020 #define CERVISIA_STRINGMATCHER_H 0021 0022 #include <QStringList> 0023 0024 namespace Cervisia 0025 { 0026 0027 class StringMatcher 0028 { 0029 public: 0030 /** 0031 * @return \c true, if text matches one of the given patterns. 0032 */ 0033 bool match(const QString &text) const; 0034 0035 /** 0036 * Adds pattern \a pattern. 0037 */ 0038 void add(const QString &pattern); 0039 0040 /** 0041 * Removes all patterns. 0042 */ 0043 void clear(); 0044 0045 private: 0046 /** 0047 * The patterns which are tested in match(). 0048 */ 0049 QStringList m_exactPatterns; 0050 0051 /** 0052 * The patterns which are tested in match(). 0053 */ 0054 QStringList m_startPatterns; 0055 0056 /** 0057 * The patterns which are tested in match(). 0058 */ 0059 QStringList m_endPatterns; 0060 0061 /** 0062 * The patterns which are tested in match(). 0063 */ 0064 QList<QByteArray> m_generalPatterns; 0065 }; 0066 0067 } // namespace Cervisia 0068 0069 #endif // CERVISIA_STRINGMATCHER_H