/** * \file QVCLog.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 #include "Lsstream.h" #include "qt_helpers.h" #include "LyXView.h" #include "ControlVCLog.h" #include "QVCLog.h" #include "QVCLogDialog.h" #include "Qt2BC.h" #include #include #include "BoostFormat.h" typedef Qt2CB > base_class; QVCLog::QVCLog() : base_class(qt_("VCLog")) { } void QVCLog::build_dialog() { dialog_.reset(new QVCLogDialog(this)); bc().setCancel(dialog_->closePB); } void QVCLog::update_contents() { #if USE_BOOST_FORMAT dialog_->setCaption(toqstr(boost::io::str(boost::format(_("Version control log for %1$s")) % controller().getBufferFileName()))); #else dialog_->setCaption(toqstr(string(_("Version control log for ")) + controller().getBufferFileName())); #endif dialog_->vclogTV->setText(""); ostringstream ss; controller().getVCLogFile(ss); dialog_->vclogTV->setText(toqstr(ss.str())); }