mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
151b065b45
* src/frontends/qt4/QLog.C (logHighlighter::logHighlighter): Use a darker gray. * src/frontends/qt4/QViewSource.C (latexHighlighter::latexHighlighter): Ditto. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17604 a592a061-630c-0410-9148-cb99ea01b6c8
103 lines
2.3 KiB
C
103 lines
2.3 KiB
C
/**
|
|
* \file QLog.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QLog.h"
|
|
#include "QLogDialog.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "frontends/Application.h"
|
|
|
|
#include "controllers/ControlLog.h"
|
|
|
|
#include <sstream>
|
|
|
|
#include <QTextBrowser>
|
|
#include <QPushButton>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
typedef QController<ControlLog, QView<QLogDialog> > log_base_class;
|
|
|
|
QLog::QLog(Dialog & parent)
|
|
: log_base_class(parent, lyx::docstring())
|
|
{}
|
|
|
|
|
|
logHighlighter::logHighlighter(QTextDocument * parent) :
|
|
QSyntaxHighlighter(parent)
|
|
{
|
|
infoFormat.setForeground(Qt::darkGray);
|
|
warningFormat.setForeground(Qt::darkBlue);
|
|
errorFormat.setForeground(Qt::red);
|
|
}
|
|
|
|
|
|
void logHighlighter::highlightBlock(QString const & text)
|
|
{
|
|
// Info
|
|
QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|Underfull|Overfull|\\(|\\\\).*$");
|
|
int index = text.indexOf(exprInfo);
|
|
while (index >= 0) {
|
|
int length = exprInfo.matchedLength();
|
|
setFormat(index, length, infoFormat);
|
|
index = text.indexOf(exprInfo, index + length);
|
|
}
|
|
// LaTeX Warning:
|
|
QRegExp exprWarning("^LaTeX Warning.*$");
|
|
index = text.indexOf(exprWarning);
|
|
while (index >= 0) {
|
|
int length = exprWarning.matchedLength();
|
|
setFormat(index, length, warningFormat);
|
|
index = text.indexOf(exprWarning, index + length);
|
|
}
|
|
// ! error
|
|
QRegExp exprError("^!.*$");
|
|
index = text.indexOf(exprError);
|
|
while (index >= 0) {
|
|
int length = exprError.matchedLength();
|
|
setFormat(index, length, errorFormat);
|
|
index = text.indexOf(exprError, index + length);
|
|
}
|
|
}
|
|
|
|
|
|
void QLog::build_dialog()
|
|
{
|
|
dialog_.reset(new QLogDialog(this));
|
|
// set syntax highlighting
|
|
highlighter = new logHighlighter(dialog_->logTB->document());
|
|
//
|
|
dialog_->logTB->setReadOnly(true);
|
|
QFont font(toqstr(theApp()->typewriterFontName()));
|
|
font.setKerning(false);
|
|
font.setFixedPitch(true);
|
|
font.setStyleHint(QFont::TypeWriter);
|
|
dialog_->logTB->setFont(font);
|
|
}
|
|
|
|
|
|
void QLog::update_contents()
|
|
{
|
|
setTitle(controller().title());
|
|
|
|
std::ostringstream ss;
|
|
controller().getContents(ss);
|
|
|
|
dialog_->logTB->setPlainText(toqstr(ss.str()));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "QLog_moc.cpp"
|