mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
43b77ba2d7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14952 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.1 KiB
C
59 lines
1.1 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 "QShowFileDialog.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "controllers/ControlShowFile.h"
|
|
|
|
#include <QTextBrowser>
|
|
#include <QPushButton>
|
|
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
typedef QController<ControlShowFile, QView<QShowFileDialog> > base_class;
|
|
|
|
|
|
QShowFile::QShowFile(Dialog & parent)
|
|
: base_class(parent, lyx::to_utf8(_("Show File")))
|
|
{
|
|
}
|
|
|
|
|
|
void QShowFile::build_dialog()
|
|
{
|
|
dialog_.reset(new QShowFileDialog(this));
|
|
|
|
bcview().setCancel(dialog_->closePB);
|
|
}
|
|
|
|
|
|
void QShowFile::update_contents()
|
|
{
|
|
dialog_->setWindowTitle(toqstr(controller().getFileName()));
|
|
|
|
string contents = controller().getFileContents();
|
|
if (contents.empty()) {
|
|
contents = "Error -> Cannot load file!";
|
|
}
|
|
|
|
dialog_->textTB->setPlainText(toqstr(contents));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|