]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/LaTeXHighlighter.h
LaTeX highlighter: make at a letter in the user preamble
[lyx.git] / src / frontends / qt4 / LaTeXHighlighter.h
1 // -*- C++ -*-
2 /**
3  * \file LaTeXHighlighter.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Bo Peng
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LATEXHIGHLIGHTER_H
13 #define LATEXHIGHLIGHTER_H
14
15 #include <QSyntaxHighlighter>
16 #include <QTextCharFormat>
17
18 class QTextDocument;
19 class QString;
20
21 namespace lyx {
22 namespace frontend {
23
24 // used already twice...
25 class LaTeXHighlighter : public QSyntaxHighlighter
26 {
27 public:
28         explicit LaTeXHighlighter(QTextDocument * parent,
29                                   bool const at_letter = false);
30
31 protected:
32         void highlightBlock(QString const & text);
33
34 private:
35         QTextCharFormat commentFormat;
36         QTextCharFormat keywordFormat;
37         QTextCharFormat mathFormat;
38         QTextCharFormat warningFormat;
39         // is at a letter (as in the preamble)
40         bool const at_letter_;
41 };
42
43 } // namespace frontend
44 } // namespace lyx
45
46 #endif // LATEXHIGHLIGHTER