2001-08-29 00:37:04 +00:00
|
|
|
/**
|
|
|
|
* \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 <qtextview.h>
|
|
|
|
#include <qpushbutton.h>
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-29 00:37:04 +00:00
|
|
|
#include "QVCLogDialog.h"
|
|
|
|
#include "QVCLog.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
#include "gettext.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-29 00:37:04 +00:00
|
|
|
#include "QtLyXView.h"
|
|
|
|
#include "ControlVCLog.h"
|
|
|
|
|
|
|
|
typedef Qt2CB<ControlVCLog, Qt2DB<QVCLogDialog> > base_class;
|
|
|
|
|
|
|
|
QVCLog::QVCLog(ControlVCLog & c)
|
|
|
|
: base_class(c, _("VCLog"))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QVCLog::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QVCLogDialog(this));
|
|
|
|
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QVCLog::update_contents()
|
|
|
|
{
|
2002-03-21 21:21:28 +00:00
|
|
|
dialog_->setCaption(string(_("Version control log for ") + controller().getBufferFileName()).c_str());
|
2001-08-29 00:37:04 +00:00
|
|
|
|
|
|
|
dialog_->vclogTV->setText("");
|
|
|
|
|
|
|
|
stringstream ss;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-29 00:37:04 +00:00
|
|
|
dialog_->vclogTV->setText(controller().getVCLogFile(ss).str().c_str());
|
|
|
|
}
|