-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMusicNotationHighlighter.h
executable file
·86 lines (72 loc) · 2.36 KB
/
MusicNotationHighlighter.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* MusicNotationHighligher.h
*
* Created by Christophe Daudin on 12/05/09.
* Copyright 2009 Grame. All rights reserved.
*
* GNU Lesser General Public License Usage
* Alternatively, this file may be used under the terms of the GNU Lesser
* General Public License version 2.1 as published by the Free Software
* Foundation and appearing in the file LICENSE.LGPL included in the
* packaging of this file. Please review the following information to
* ensure the GNU Lesser General Public License version 2.1 requirements
* will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
*
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef MNHIGHLIGHTER_H_
#define MNHIGHLIGHTER_H_
#include <QSyntaxHighlighter>
#include <QHash>
#include <QTextCharFormat>
#include <QStack>
typedef enum BlockState {
OUTOFF_BLOCK=0,
IN_BLOCK
} BlockState ;
class MusicNotationHighlighter : public QSyntaxHighlighter
{
public:
MusicNotationHighlighter(QTextDocument *parent = 0);
virtual ~MusicNotationHighlighter();
void highlightBlock ( const QString & text );
protected:
void appendLineRule(const QStringList& patterns,
const QTextCharFormat& format,
bool setMinimal);
void appendMultilineRule(const QString& startPattern,
const QString& endPattern,
const QTextCharFormat& format,
bool setMinimal);
void highlightLine(const QString& text,bool useLastBackground);
bool highlightMultiline(const QString& text);
static QTextCharFormat buildTextCharFormat( const QColor& foreground , const QColor& background , QFont::Weight fontWeight );
class HighlightingLineRule
{
public:
QRegExp pattern;
QTextCharFormat format;
};
class HighlightingMultilineRule
{
public:
HighlightingMultilineRule()
{
currentState=OUTOFF_BLOCK;
previousState=OUTOFF_BLOCK;
};
QRegExp startPattern;
QRegExp endPattern;
QTextCharFormat format;
BlockState currentState;
BlockState previousState;
};
QTextCharFormat mLastFormat;
HighlightingLineRule mLineRule;
HighlightingMultilineRule mMultiLineRule;
QVector<HighlightingLineRule> mHighlightingLineRules;
QVector<HighlightingMultilineRule> mHighlightingMultilineRules;
};
#endif /*MNHIGHLIGHTER_H_*/