lyx_mirror/src/frontends/qt4/QShowFile.C
André Pönitz 24bb9669a5 more Foo/FooDialog merge
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17956 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-24 19:37:34 +00:00

86 lines
1.6 KiB
C

/**
* \file QShowFile.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 <config.h>
#include "QShowFile.h"
#include "Qt2BC.h"
#include "qt_helpers.h"
#include "controllers/ControlShowFile.h"
#include <QTextBrowser>
#include <QPushButton>
namespace lyx {
namespace frontend {
/////////////////////////////////////////////////////////////////////
//
// QShowFileDialog
//
/////////////////////////////////////////////////////////////////////
QShowFileDialog::QShowFileDialog(QShowFile * form)
: form_(form)
{
setupUi(this);
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
}
void QShowFileDialog::closeEvent(QCloseEvent * e)
{
form_->slotWMHide();
e->accept();
}
/////////////////////////////////////////////////////////////////////
//
// QShowFile
//
/////////////////////////////////////////////////////////////////////
typedef QController<ControlShowFile, QView<QShowFileDialog> >
ShowFileBase;
QShowFile::QShowFile(Dialog & parent)
: ShowFileBase(parent, _("Show File"))
{
}
void QShowFile::build_dialog()
{
dialog_.reset(new QShowFileDialog(this));
bcview().setCancel(dialog_->closePB);
}
void QShowFile::update_contents()
{
dialog_->setWindowTitle(toqstr(controller().getFileName()));
std::string contents = controller().getFileContents();
if (contents.empty()) {
contents = "Error -> Cannot load file!";
}
dialog_->textTB->setPlainText(toqstr(contents));
}
} // namespace frontend
} // namespace lyx
#include "QShowFile_moc.cpp"