2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
* \file GuiLog.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
* 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>
|
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
#include "GuiLog.h"
|
2007-09-05 20:33:29 +00:00
|
|
|
|
|
|
|
#include "ControlLog.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
2007-03-26 04:25:49 +00:00
|
|
|
#include "frontends/Application.h"
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
#include <QCloseEvent>
|
|
|
|
#include <QTextBrowser>
|
2007-09-05 20:33:29 +00:00
|
|
|
#include <QSyntaxHighlighter>
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
2007-04-24 19:37:34 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2007-09-05 20:33:29 +00:00
|
|
|
// LogHighlighter
|
2007-04-24 19:37:34 +00:00
|
|
|
//
|
2007-09-05 20:33:29 +00:00
|
|
|
////////////////////////////////////////////////////////////////////
|
2007-04-24 19:37:34 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
class LogHighlighter : public QSyntaxHighlighter
|
2007-04-24 19:37:34 +00:00
|
|
|
{
|
2007-09-05 20:33:29 +00:00
|
|
|
public:
|
|
|
|
LogHighlighter(QTextDocument * parent);
|
2007-04-24 19:37:34 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
private:
|
|
|
|
void highlightBlock(QString const & text);
|
2007-04-24 19:37:34 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
private:
|
|
|
|
QTextCharFormat infoFormat;
|
|
|
|
QTextCharFormat warningFormat;
|
|
|
|
QTextCharFormat errorFormat;
|
|
|
|
};
|
2007-04-24 19:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LogHighlighter::LogHighlighter(QTextDocument * parent)
|
|
|
|
: QSyntaxHighlighter(parent)
|
2007-03-26 04:25:49 +00:00
|
|
|
{
|
2007-03-28 00:26:04 +00:00
|
|
|
infoFormat.setForeground(Qt::darkGray);
|
2007-03-26 04:25:49 +00:00
|
|
|
warningFormat.setForeground(Qt::darkBlue);
|
|
|
|
errorFormat.setForeground(Qt::red);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-24 19:37:34 +00:00
|
|
|
void LogHighlighter::highlightBlock(QString const & text)
|
2007-03-26 04:25:49 +00:00
|
|
|
{
|
|
|
|
// 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);
|
|
|
|
}
|
2007-05-28 22:27:45 +00:00
|
|
|
// ! error
|
2007-03-26 04:25:49 +00:00
|
|
|
QRegExp exprError("^!.*$");
|
|
|
|
index = text.indexOf(exprError);
|
|
|
|
while (index >= 0) {
|
|
|
|
int length = exprError.matchedLength();
|
|
|
|
setFormat(index, length, errorFormat);
|
|
|
|
index = text.indexOf(exprError, index + length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-24 19:37:34 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2007-08-31 05:53:55 +00:00
|
|
|
// GuiLog
|
2007-04-24 19:37:34 +00:00
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
GuiLogDialog::GuiLogDialog(LyXView & lv)
|
|
|
|
: GuiDialog(lv, "log")
|
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
setController(new ControlLog(*this));
|
2007-04-24 19:37:34 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
|
|
|
|
connect(updatePB, SIGNAL(clicked()), this, SLOT(updateClicked()));
|
2007-04-24 19:37:34 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
bc().setPolicy(ButtonPolicy::OkCancelPolicy);
|
2007-04-24 19:37:34 +00:00
|
|
|
|
2007-03-26 04:25:49 +00:00
|
|
|
// set syntax highlighting
|
2007-09-05 20:33:29 +00:00
|
|
|
highlighter = new LogHighlighter(logTB->document());
|
|
|
|
|
|
|
|
logTB->setReadOnly(true);
|
2007-03-26 04:25:49 +00:00
|
|
|
QFont font(toqstr(theApp()->typewriterFontName()));
|
|
|
|
font.setKerning(false);
|
|
|
|
font.setFixedPitch(true);
|
|
|
|
font.setStyleHint(QFont::TypeWriter);
|
2007-09-05 20:33:29 +00:00
|
|
|
logTB->setFont(font);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ControlLog & GuiLogDialog::controller() const
|
|
|
|
{
|
|
|
|
return static_cast<ControlLog &>(Dialog::controller());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiLogDialog::closeEvent(QCloseEvent * e)
|
|
|
|
{
|
|
|
|
slotWMHide();
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GuiLogDialog::updateClicked()
|
|
|
|
{
|
|
|
|
update_contents();
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
void GuiLogDialog::update_contents()
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-09-03 20:28:26 +00:00
|
|
|
setViewTitle(controller().title());
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
std::ostringstream ss;
|
|
|
|
controller().getContents(ss);
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
logTB->setPlainText(toqstr(ss.str()));
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
2007-03-26 04:25:49 +00:00
|
|
|
|
2007-08-31 05:53:55 +00:00
|
|
|
#include "GuiLog_moc.cpp"
|