2002-01-29 10:05:09 +00:00
|
|
|
/**
|
|
|
|
* \file QShowFile.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "ControlShowFile.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "QShowFile.h"
|
|
|
|
#include "QShowFileDialog.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
|
2002-01-29 10:05:09 +00:00
|
|
|
#include <qtextview.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
|
|
typedef Qt2CB<ControlShowFile, Qt2DB<QShowFileDialog> > base_class;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-07-11 01:01:38 +00:00
|
|
|
QShowFile::QShowFile(ControlShowFile & c, Dialogs &)
|
2002-01-29 10:05:09 +00:00
|
|
|
: base_class(c, _("ShowFile"))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QShowFile::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QShowFileDialog(this));
|
|
|
|
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-29 10:05:09 +00:00
|
|
|
void QShowFile::update_contents()
|
|
|
|
{
|
|
|
|
dialog_->setName(controller().getFileName().c_str());
|
|
|
|
|
|
|
|
string contents = controller().getFileContents();
|
|
|
|
if (contents.empty()) {
|
|
|
|
contents = "Error -> Cannot load file!";
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog_->text->setText(contents.c_str());
|
|
|
|
}
|