blob: 1bd54d2c9a4c272710d772364aa101dd903be1f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef HIGHLIGHTER_H_
#define HIGHLIGHTER_H_
#include <QSyntaxHighlighter>
#ifdef _QCODE_EDIT_
#include "qdocument.h"
#endif
class Highlighter : public QSyntaxHighlighter
{
public:
#ifdef _QCODE_EDIT_
Highlighter(QDocument *parent);
#else
Highlighter(QTextDocument *parent);
#endif
void highlightBlock(const QString &text);
};
#endif
|