-
Notifications
You must be signed in to change notification settings - Fork 1
/
htmlhighlighter.h
49 lines (42 loc) · 1.27 KB
/
htmlhighlighter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef HTMLHIGHLIGHTER_H
#define HTMLHIGHLIGHTER_H
#include <QSyntaxHighlighter>
#include <QTextEdit>
/**
* @author Lucie LAGARRIGUE
* @author Ludovic VIMONT
* @brief Classe HtmlHighlighter : permet de faire la coloration syntaxique du HTML
*/
class HtmlHighlighter : public QSyntaxHighlighter {
Q_OBJECT
public:
enum Construct {
Entity,
Tag,
Comment,
Attribute,
Value,
LastConstruct = Value
};
HtmlHighlighter(QTextDocument *document);
void setFormatFor(Construct construct, const QTextCharFormat &format);
QTextCharFormat formatFor(Construct construct) const
{ return m_formats[construct]; }
protected:
enum State {
NormalState = -1,
InComment,
InTag
};
/**
* @brief highlightBlock : colore syntaxiquement text en repérant les différents éléments HTML possibles.
* @param text : le texte à colorer.
*/
void highlightBlock(const QString &text);
private:
/**
* @brief m_formats : tableau contenant la liste des différents formatages.
*/
QTextCharFormat m_formats[LastConstruct + 1];
};
#endif // HTMLHIGHLIGHTER_H