/** * \file QViewSource.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * \author Bo Peng * \author Abdelrazak Younes * * Full author contact details are available in file CREDITS. */ #include #include "QViewSource.h" #include "QViewSourceDialog.h" #include "qt_helpers.h" 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) { // $ $ QRegExp exprMath("\\$[^\\$]*\\$"); int index = text.indexOf(exprMath); while (index >= 0) { int length = exprMath.matchedLength(); setFormat(index, length, mathFormat); index = text.indexOf(exprMath, index + length); } // [ ] QRegExp exprStartDispMath("(\\\\\\[|" "\\\\begin\\{equation\\**\\}|" "\\\\begin\\{eqnarray\\**\\}|" "\\\\begin\\{align(ed|at)*\\**\\}|" "\\\\begin\\{flalign\\**\\}|" "\\\\begin\\{gather\\**\\}|" "\\\\begin\\{multline\\**\\}|" "\\\\begin\\{array\\**\\}|" "\\\\begin\\{cases\\**\\}" ")"); 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 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 QRegExp exprComment("(^|[^\\\\])%.*$"); index = text.indexOf(exprComment); while (index >= 0) { int length = exprComment.matchedLength(); setFormat(index, length, commentFormat); index = text.indexOf(exprComment, index + length); } } QViewSource::QViewSource(Dialog & parent) : ControlViewSource(parent) { document_ = new QTextDocument(this); // set syntex highlighting highlighter_ = new latexHighlighter(document_); } void QViewSource::update(bool full_source) { document_->setPlainText(toqstr(updateContent(full_source))); } } // namespace frontend } // namespace lyx #include "QViewSource_moc.cpp"