mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
74 lines
1.3 KiB
C
74 lines
1.3 KiB
C
/**
|
|
* \file QLog.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <fstream>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include <qtextview.h>
|
|
#include <qpushbutton.h>
|
|
|
|
#include "QLogDialog.h"
|
|
#include "QLog.h"
|
|
#include "Qt2BC.h"
|
|
#include "gettext.h"
|
|
|
|
#include "QtLyXView.h"
|
|
#include "ControlLog.h"
|
|
|
|
using std::ifstream;
|
|
using std::getline;
|
|
|
|
typedef Qt2CB<ControlLog, Qt2DB<QLogDialog> > base_class;
|
|
|
|
QLog::QLog(ControlLog & c)
|
|
: base_class(c, _("Log"))
|
|
{
|
|
}
|
|
|
|
|
|
void QLog::build_dialog()
|
|
{
|
|
dialog_.reset(new QLogDialog(this));
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
}
|
|
|
|
|
|
void QLog::update_contents()
|
|
{
|
|
std::pair<Buffer::LogType, string> const logfile = controller().logfile();
|
|
|
|
if (logfile.first == Buffer::buildlog)
|
|
dialog_->setCaption(_("Build log"));
|
|
else
|
|
dialog_->setCaption(_("LaTeX log"));
|
|
|
|
dialog_->logTV->setText("");
|
|
|
|
ifstream ifstr(logfile.second.c_str());
|
|
if (!ifstr) {
|
|
if (logfile.first == Buffer::buildlog)
|
|
dialog_->logTV->setText(_("No build log file found"));
|
|
else
|
|
dialog_->logTV->setText(_("No LaTeX log file found"));
|
|
return;
|
|
}
|
|
|
|
string text;
|
|
string line;
|
|
|
|
while (getline(ifstr, line))
|
|
text += line + "\n";
|
|
|
|
dialog_->logTV->setText(text.c_str());
|
|
}
|