2002-01-29 10:05:09 +00:00
|
|
|
/**
|
|
|
|
* \file QShowFile.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-01-29 10:05:09 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-01-29 10:05:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2003-09-29 10:50:51 +00:00
|
|
|
#include "debug.h"
|
2002-01-29 10:05:09 +00:00
|
|
|
#include "ControlShowFile.h"
|
2002-12-17 20:37:13 +00:00
|
|
|
#include "qt_helpers.h"
|
2002-01-29 10:05:09 +00:00
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "QShowFile.h"
|
|
|
|
#include "QShowFileDialog.h"
|
|
|
|
#include "Qt2BC.h"
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-01-29 10:05:09 +00:00
|
|
|
#include <qtextview.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
2003-03-25 18:13:46 +00:00
|
|
|
typedef QController<ControlShowFile, QView<QShowFileDialog> > base_class;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2003-03-25 18:13:46 +00:00
|
|
|
QShowFile::QShowFile(Dialog & parent)
|
2003-05-22 15:42:50 +00:00
|
|
|
: base_class(parent, _("LyX: Show File"))
|
2002-01-29 10:05:09 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QShowFile::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QShowFileDialog(this));
|
|
|
|
|
2003-03-10 03:13:28 +00:00
|
|
|
bcview().setCancel(dialog_->closePB);
|
2002-01-29 10:05:09 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-01-29 10:05:09 +00:00
|
|
|
void QShowFile::update_contents()
|
|
|
|
{
|
2002-12-17 20:37:13 +00:00
|
|
|
dialog_->setName(toqstr(controller().getFileName()));
|
2002-01-29 10:05:09 +00:00
|
|
|
|
|
|
|
string contents = controller().getFileContents();
|
|
|
|
if (contents.empty()) {
|
|
|
|
contents = "Error -> Cannot load file!";
|
|
|
|
}
|
|
|
|
|
2002-12-17 20:37:13 +00:00
|
|
|
dialog_->text->setText(toqstr(contents));
|
2002-01-29 10:05:09 +00:00
|
|
|
}
|