2001-08-28 01:27:35 +00:00
|
|
|
/**
|
|
|
|
* \file QInclude.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ControlInclude.h"
|
|
|
|
#include "gettext.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
#include "debug.h"
|
2002-06-19 03:38:44 +00:00
|
|
|
|
|
|
|
#include "QIncludeDialog.h"
|
|
|
|
#include "QInclude.h"
|
|
|
|
#include "Qt2BC.h"
|
2001-08-28 01:27:35 +00:00
|
|
|
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qcheckbox.h>
|
2002-07-22 14:04:38 +00:00
|
|
|
#include <qcombobox.h>
|
2001-08-28 01:27:35 +00:00
|
|
|
|
|
|
|
typedef Qt2CB<ControlInclude, Qt2DB<QIncludeDialog> > base_class;
|
|
|
|
|
2002-08-12 14:28:43 +00:00
|
|
|
QInclude::QInclude()
|
|
|
|
: base_class(_("Include"))
|
2001-08-28 01:27:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QInclude::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QIncludeDialog(this));
|
|
|
|
|
|
|
|
bc().setOK(dialog_->okPB);
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
|
|
bc().addReadOnly(dialog_->filenameED);
|
|
|
|
bc().addReadOnly(dialog_->browsePB);
|
|
|
|
bc().addReadOnly(dialog_->visiblespaceCB);
|
2002-07-22 14:04:38 +00:00
|
|
|
bc().addReadOnly(dialog_->typeCO);
|
2001-08-28 01:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QInclude::update_contents()
|
|
|
|
{
|
|
|
|
dialog_->filenameED->setText(controller().params().cparams.getContents().c_str());
|
|
|
|
|
|
|
|
string const cmdname = controller().params().cparams.getCmdName();
|
|
|
|
|
|
|
|
dialog_->visiblespaceCB->setChecked(false);
|
|
|
|
dialog_->visiblespaceCB->setEnabled(false);
|
|
|
|
|
|
|
|
if (cmdname == "input")
|
2002-09-10 18:44:53 +00:00
|
|
|
dialog_->typeCO->setCurrentItem(0);
|
2001-08-28 01:27:35 +00:00
|
|
|
else if (!cmdname.empty()) {
|
2002-07-22 14:04:38 +00:00
|
|
|
dialog_->typeCO->setCurrentItem(2);
|
2001-08-28 01:27:35 +00:00
|
|
|
dialog_->visiblespaceCB->setChecked(cmdname == "verbatiminput*");
|
|
|
|
dialog_->visiblespaceCB->setEnabled(true);
|
2002-09-10 18:44:53 +00:00
|
|
|
} else {
|
|
|
|
dialog_->typeCO->setCurrentItem(1);
|
2001-08-28 01:27:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QInclude::apply()
|
|
|
|
{
|
|
|
|
controller().params().cparams.
|
|
|
|
setContents(dialog_->filenameED->text().latin1());
|
|
|
|
|
2002-07-22 14:04:38 +00:00
|
|
|
int const item = dialog_->typeCO->currentItem();
|
2002-09-10 18:44:53 +00:00
|
|
|
if (item == 0)
|
2001-08-28 01:27:35 +00:00
|
|
|
controller().params().flag = InsetInclude::INPUT;
|
2002-09-10 18:44:53 +00:00
|
|
|
else if (item == 1)
|
2001-08-28 01:27:35 +00:00
|
|
|
controller().params().flag = InsetInclude::INCLUDE;
|
|
|
|
else {
|
|
|
|
if (dialog_->visiblespaceCB->isChecked())
|
|
|
|
controller().params().flag = InsetInclude::VERBAST;
|
|
|
|
else
|
|
|
|
controller().params().flag = InsetInclude::VERB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QInclude::browse()
|
|
|
|
{
|
|
|
|
ControlInclude::Type type;
|
|
|
|
|
2002-07-22 14:04:38 +00:00
|
|
|
int const item = dialog_->typeCO->currentItem();
|
|
|
|
if (item==0)
|
2001-08-28 01:27:35 +00:00
|
|
|
type = ControlInclude::INPUT;
|
2002-09-10 18:44:53 +00:00
|
|
|
else if (item==1)
|
|
|
|
type = ControlInclude::INCLUDE;
|
2001-08-28 01:27:35 +00:00
|
|
|
else
|
|
|
|
type = ControlInclude::VERBATIM;
|
|
|
|
|
|
|
|
string const & name = controller().Browse(dialog_->filenameED->text().latin1(), type);
|
|
|
|
if (!name.empty())
|
2002-03-21 21:21:28 +00:00
|
|
|
dialog_->filenameED->setText(name.c_str());
|
2001-08-28 01:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QInclude::load()
|
|
|
|
{
|
|
|
|
if (isValid()) {
|
|
|
|
string const file(dialog_->filenameED->text().latin1());
|
|
|
|
slotOK();
|
|
|
|
controller().load(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool QInclude::isValid()
|
|
|
|
{
|
|
|
|
return !string(dialog_->filenameED->text().latin1()).empty();
|
|
|
|
}
|