lyx_mirror/src/frontends/qt2/QLog.C
Angus Leeming dbd0f58ebc Rationalize the interface to the log dialog.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8204 a592a061-630c-0410-9148-cb99ea01b6c8
2003-12-05 13:37:23 +00:00

48 lines
792 B
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 "controllers/ControlLog.h"
#include "support/std_sstream.h"
#include "QLog.h"
#include "QLogDialog.h"
#include "qt_helpers.h"
#include <qtextview.h>
#include <qpushbutton.h>
typedef QController<ControlLog, QView<QLogDialog> > base_class;
QLog::QLog(Dialog & parent)
: base_class(parent, "")
{}
void QLog::build_dialog()
{
dialog_.reset(new QLogDialog(this));
}
void QLog::update_contents()
{
setTitle(controller().title());
std::ostringstream ss;
controller().getContents(ss);
dialog_->logTV->setText(toqstr(ss.str()));
}