mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
b8e1e86676
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21803 a592a061-630c-0410-9148-cb99ea01b6c8
108 lines
3.0 KiB
C++
108 lines
3.0 KiB
C++
/**
|
|
* \file LaTeXHighlighter.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Bo Peng
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "LaTeXHighlighter.h"
|
|
|
|
#include <QString>
|
|
#include <QTextDocument>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
LaTeXHighlighter::LaTeXHighlighter(QTextDocument * parent)
|
|
: QSyntaxHighlighter(parent)
|
|
{
|
|
keywordFormat.setForeground(Qt::darkBlue);
|
|
keywordFormat.setFontWeight(QFont::Bold);
|
|
commentFormat.setForeground(Qt::darkGray);
|
|
mathFormat.setForeground(Qt::red);
|
|
}
|
|
|
|
|
|
void LaTeXHighlighter::highlightBlock(QString const & text)
|
|
{
|
|
// $ $
|
|
static const QRegExp exprMath("\\$[^\\$]*\\$");
|
|
int index = text.indexOf(exprMath);
|
|
while (index >= 0) {
|
|
int length = exprMath.matchedLength();
|
|
setFormat(index, length, mathFormat);
|
|
index = text.indexOf(exprMath, index + length);
|
|
}
|
|
// [ ]
|
|
static const QRegExp exprStartDispMath("(\\\\\\[|"
|
|
"\\\\begin\\{equation\\**\\}|"
|
|
"\\\\begin\\{eqnarray\\**\\}|"
|
|
"\\\\begin\\{align(ed|at)*\\**\\}|"
|
|
"\\\\begin\\{flalign\\**\\}|"
|
|
"\\\\begin\\{gather\\**\\}|"
|
|
"\\\\begin\\{multline\\**\\}|"
|
|
"\\\\begin\\{array\\**\\}|"
|
|
"\\\\begin\\{cases\\**\\}"
|
|
")");
|
|
static const QRegExp exprEndDispMath("(\\\\\\]|"
|
|
"\\\\end\\{equation\\**\\}|"
|
|
"\\\\end\\{eqnarray\\**\\}|"
|
|
"\\\\end\\{align(ed|at)*\\**\\}|"
|
|
"\\\\end\\{flalign\\**\\}|"
|
|
"\\\\end\\{gather\\**\\}|"
|
|
"\\\\end\\{multline\\**\\}|"
|
|
"\\\\end\\{array\\**\\}|"
|
|
"\\\\end\\{cases\\**\\}"
|
|
")");
|
|
int startIndex = 0;
|
|
// if previous block was in 'disp math'
|
|
// start search from 0 (for end disp math)
|
|
// otherwise, start search from 'begin disp math'
|
|
if (previousBlockState() != 1)
|
|
startIndex = text.indexOf(exprStartDispMath);
|
|
while (startIndex >= 0) {
|
|
int endIndex = text.indexOf(exprEndDispMath, startIndex);
|
|
int length;
|
|
if (endIndex == -1) {
|
|
setCurrentBlockState(1);
|
|
length = text.length() - startIndex;
|
|
} else {
|
|
length = endIndex - startIndex + exprEndDispMath.matchedLength();
|
|
}
|
|
setFormat(startIndex, length, mathFormat);
|
|
startIndex = text.indexOf(exprStartDispMath, startIndex + length);
|
|
}
|
|
// \whatever
|
|
static const QRegExp exprKeyword("\\\\[A-Za-z]+");
|
|
index = text.indexOf(exprKeyword);
|
|
while (index >= 0) {
|
|
int length = exprKeyword.matchedLength();
|
|
setFormat(index, length, keywordFormat);
|
|
index = text.indexOf(exprKeyword, index + length);
|
|
}
|
|
// %comment
|
|
// Treat a line as a comment starting at a percent sign
|
|
// * that is the first character in a line
|
|
// * that is preceded by
|
|
// ** an even number of backslashes
|
|
// ** any character other than a backslash
|
|
QRegExp exprComment("(?:^|[^\\\\])(?:\\\\\\\\)*(%).*$");
|
|
text.indexOf(exprComment);
|
|
index = exprComment.pos(1);
|
|
while (index >= 0) {
|
|
int const length = exprComment.matchedLength()
|
|
- (index - exprComment.pos(0));
|
|
setFormat(index, length, commentFormat);
|
|
text.indexOf(exprComment, index + length);
|
|
index = exprComment.pos(1);
|
|
}
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|