mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
09f09e2121
- better translatable error message for uncodable chars, now also displaying the code point value. * src/Paragraph.cpp: - do not throw in View Source mode, but mark up uncodable chars (fix bug 4437). * src/frontends/qt4/LaTeXHighlighter.{cpp,h}: - highlight LyX warnings. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22294 a592a061-630c-0410-9148-cb99ea01b6c8
44 lines
828 B
C++
44 lines
828 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file LaTeXHighlighter.h
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef LATEXHIGHLIGHTER_H
|
|
#define LATEXHIGHLIGHTER_H
|
|
|
|
#include <QSyntaxHighlighter>
|
|
#include <QTextCharFormat>
|
|
|
|
class QTextDocument;
|
|
class QString;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
// used already twice...
|
|
class LaTeXHighlighter : public QSyntaxHighlighter
|
|
{
|
|
public:
|
|
LaTeXHighlighter(QTextDocument * parent);
|
|
|
|
protected:
|
|
void highlightBlock(QString const & text);
|
|
|
|
private:
|
|
QTextCharFormat commentFormat;
|
|
QTextCharFormat keywordFormat;
|
|
QTextCharFormat mathFormat;
|
|
QTextCharFormat warningFormat;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // LATEXHIGHLIGHTER
|