Framework for looking up contacts directly in nepomuk in addition to going through...
[kdepim.git] / templateparser / templatessyntaxhighlighter.h
blob523f4d93e4fb1ebe4fa36d6b84b9f581718e7b0d
1 /* Copyright (C) 2011 Laurent Montel <montel@kde.org>
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Library General Public
5 * License as published by the Free Software Foundation; either
6 * version 2 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Library General Public License for more details.
13 * You should have received a copy of the GNU Library General Public License
14 * along with this library; see the file COPYING.LIB. If not, write to
15 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 * Boston, MA 02110-1301, USA.
19 #ifndef TEMPLATEPARSER_TEMPLATESSYNTAXHIGHLIGHTER_H
20 #define TEMPLATEPARSER_TEMPLATESSYNTAXHIGHLIGHTER_H
22 #include "templateparser_export.h"
24 #include <QSyntaxHighlighter>
26 namespace TemplateParser {
28 class TEMPLATEPARSER_EXPORT TemplatesSyntaxHighlighter : public QSyntaxHighlighter
30 Q_OBJECT
31 public:
32 explicit TemplatesSyntaxHighlighter( QTextDocument *doc );
33 virtual ~TemplatesSyntaxHighlighter();
35 virtual void highlightBlock( const QString &text );
37 private:
38 void init();
39 struct Rule {
40 QRegExp pattern;
41 QTextCharFormat format;
43 Rule( const QRegExp &r, const QTextCharFormat &f )
44 : pattern( r ), format( f ) {}
46 QList<Rule> m_rules;
52 #endif