mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
ba9cdda813
a View. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6410 a592a061-630c-0410-9148-cb99ea01b6c8
89 lines
2.0 KiB
C
89 lines
2.0 KiB
C
/**
|
|
* \file QExternal.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 "ControlExternal.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include <qlineedit.h>
|
|
#include <qpushbutton.h>
|
|
#include <qcombobox.h>
|
|
#include <qtextview.h>
|
|
|
|
#include "QExternalDialog.h"
|
|
#include "QExternal.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include <vector>
|
|
|
|
typedef QController<ControlExternal, QView<QExternalDialog> > base_class;
|
|
|
|
|
|
QExternal::QExternal(Dialog & parent)
|
|
: base_class(parent, qt_("LyX: Insert External Material"))
|
|
{
|
|
}
|
|
|
|
|
|
void QExternal::build_dialog()
|
|
{
|
|
dialog_.reset(new QExternalDialog(this));
|
|
|
|
bcview().setOK(dialog_->okPB);
|
|
bcview().setApply(dialog_->applyPB);
|
|
bcview().setCancel(dialog_->closePB);
|
|
bcview().addReadOnly(dialog_->externalCO);
|
|
bcview().addReadOnly(dialog_->fileED);
|
|
bcview().addReadOnly(dialog_->browsePB);
|
|
|
|
std::vector<string> templates(controller().getTemplates());
|
|
|
|
for (std::vector<string>::const_iterator cit = templates.begin();
|
|
cit != templates.end(); ++cit) {
|
|
dialog_->externalCO->insertItem(toqstr(*cit), -1);
|
|
}
|
|
}
|
|
|
|
|
|
void QExternal::update_contents()
|
|
{
|
|
InsetExternal::Params const & params = controller().params();
|
|
|
|
dialog_->fileED->setText(toqstr(params.filename));
|
|
dialog_->paramsED->setText(toqstr(params.parameters));
|
|
|
|
dialog_->externalCO->setCurrentItem(controller().getTemplateNumber(params.templ.lyxName));
|
|
dialog_->externalTV->setText(toqstr(params.templ.helpText));
|
|
isValid();
|
|
}
|
|
|
|
|
|
string const QExternal::helpText() const
|
|
{
|
|
ExternalTemplate templ =
|
|
controller().getTemplate(dialog_->externalCO->currentItem());
|
|
return templ.helpText;
|
|
}
|
|
|
|
|
|
void QExternal::apply()
|
|
{
|
|
InsetExternal::Params params = controller().params();
|
|
|
|
params.filename = fromqstr(dialog_->fileED->text());
|
|
params.parameters = fromqstr(dialog_->paramsED->text());
|
|
|
|
params.templ = controller().getTemplate(dialog_->externalCO->currentItem());
|
|
|
|
controller().setParams(params);
|
|
}
|