~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to templateparser/templatessyntaxhighlighter.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2011 Laurent Montel <montel@kde.org>
 
2
 *
 
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.
 
7
 *
 
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.
 
12
 *
 
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.
 
17
 */
 
18
 
 
19
#ifndef TEMPLATESHIGHLIGHTER_H
 
20
#define TEMPLATESHIGHLIGHTER_H
 
21
 
 
22
#include <QSyntaxHighlighter>
 
23
#include "templateparser_export.h"
 
24
#include <QRegExp>
 
25
 
 
26
 
 
27
class QTextDocument;
 
28
 
 
29
namespace TemplateParser {
 
30
 
 
31
class TEMPLATEPARSER_EXPORT TemplatesSyntaxHighlighter : public QSyntaxHighlighter
 
32
{
 
33
  Q_OBJECT
 
34
public:
 
35
  explicit TemplatesSyntaxHighlighter( QTextDocument* doc );
 
36
  virtual ~TemplatesSyntaxHighlighter();
 
37
  
 
38
  virtual void highlightBlock(const QString& text);
 
39
private:
 
40
  void init();
 
41
  struct Rule {
 
42
    QRegExp pattern;
 
43
    QTextCharFormat format;
 
44
 
 
45
    Rule( const QRegExp & r, const QTextCharFormat & f )
 
46
      : pattern(r), format(f) {}
 
47
  };
 
48
  QList<Rule> m_rules;
 
49
 
 
50
};
 
51
 
 
52
}
 
53
 
 
54
 
 
55
 
 
56
 
 
57
#endif /* TEMPLATESHIGHLIGHTER_H */
 
58