lyx_mirror/src/frontends/qt2/QVCLog.C
Angus Leeming 1e3d2fce7f No longer pass Controller & or Dialogs & to the View c-tors.
GUI now contains a controller rather than derives from a controller.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4942 a592a061-630c-0410-9148-cb99ea01b6c8
2002-08-12 14:28:43 +00:00

53 lines
894 B
C

/**
* \file QVCLog.C
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon <moz@compsoc.man.ac.uk>
*/
#include <config.h>
#include "Lsstream.h"
#ifdef __GNUG__
#pragma implementation
#endif
#include "gettext.h"
#include "LyXView.h"
#include "ControlVCLog.h"
#include "QVCLog.h"
#include "QVCLogDialog.h"
#include "Qt2BC.h"
#include <qtextview.h>
#include <qpushbutton.h>
typedef Qt2CB<ControlVCLog, Qt2DB<QVCLogDialog> > base_class;
QVCLog::QVCLog()
: base_class(_("VCLog"))
{
}
void QVCLog::build_dialog()
{
dialog_.reset(new QVCLogDialog(this));
bc().setCancel(dialog_->closePB);
}
void QVCLog::update_contents()
{
dialog_->setCaption(string(_("Version control log for ") + controller().getBufferFileName()).c_str());
dialog_->vclogTV->setText("");
stringstream ss;
dialog_->vclogTV->setText(controller().getVCLogFile(ss).str().c_str());
}