mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
c5b9664476
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35891 a592a061-630c-0410-9148-cb99ea01b6c8
136 lines
3.2 KiB
C++
136 lines
3.2 KiB
C++
/**
|
|
* \file GuiPrintindex.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
* \author Martin Vermeer
|
|
* \author Jürgen Spitzmüller
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GuiPrintindex.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "Buffer.h"
|
|
#include "BufferParams.h"
|
|
#include "FuncRequest.h"
|
|
#include "IndicesList.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "insets/InsetCommand.h"
|
|
|
|
#include <QPushButton>
|
|
|
|
using namespace std;
|
|
using namespace lyx::support;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
GuiPrintindex::GuiPrintindex(GuiView & lv)
|
|
: GuiDialog(lv, "index_print", qt_("Index Settings")),
|
|
params_(insetCode("index_print"))
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
|
|
connect(cancelPB, SIGNAL(clicked()), this, SLOT(slotClose()));
|
|
connect(indicesCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
connect(subindexCB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
|
|
|
|
bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
|
|
bc().setOK(okPB);
|
|
bc().setCancel(cancelPB);
|
|
}
|
|
|
|
|
|
void GuiPrintindex::change_adaptor()
|
|
{
|
|
changed();
|
|
}
|
|
|
|
|
|
void GuiPrintindex::updateContents()
|
|
{
|
|
typedef IndicesList::const_iterator const_iterator;
|
|
|
|
IndicesList const & indiceslist = buffer().params().indiceslist();
|
|
docstring const cur_index = suffixIs(params_.getCmdName(), '*') ?
|
|
from_ascii("printall") : params_["type"];
|
|
|
|
indicesCO->clear();
|
|
|
|
indicesCO->addItem(qt_("<All indexes>"),
|
|
QVariant(QString("printall")));
|
|
|
|
const_iterator const begin = indiceslist.begin();
|
|
const_iterator const end = indiceslist.end();
|
|
for (const_iterator it = begin; it != end; ++it)
|
|
indicesCO->addItem(toqstr(it->index()),
|
|
QVariant(toqstr(it->shortcut())));
|
|
|
|
int const pos = indicesCO->findData(toqstr(cur_index));
|
|
indicesCO->setCurrentIndex(pos);
|
|
subindexCB->setChecked(params_.getCmdName() == "printsubindex");
|
|
}
|
|
|
|
|
|
void GuiPrintindex::applyView()
|
|
{
|
|
QString const index = indicesCO->itemData(
|
|
indicesCO->currentIndex()).toString();
|
|
string cmd = "printindex";
|
|
if (subindexCB->isChecked())
|
|
cmd = "printsubindex";
|
|
if (index == QString("printall"))
|
|
cmd += '*';
|
|
params_.setCmdName(cmd);
|
|
if (index == QString("printall"))
|
|
params_["type"] = docstring();
|
|
else
|
|
params_["type"] = qstring_to_ucs4(index);
|
|
}
|
|
|
|
|
|
void GuiPrintindex::paramsToDialog(InsetCommandParams const & /*icp*/)
|
|
{
|
|
int const pos = suffixIs(params_.getCmdName(), '*') ?
|
|
indicesCO->findData(QString("printall")) :
|
|
indicesCO->findData(toqstr(params_["type"]));
|
|
subindexCB->setChecked(params_.getCmdName() == "printsubindex");
|
|
indicesCO->setCurrentIndex(pos);
|
|
bc().setValid(isValid());
|
|
}
|
|
|
|
|
|
bool GuiPrintindex::initialiseParams(string const & data)
|
|
{
|
|
// The name passed with LFUN_INSET_APPLY is also the name
|
|
// used to identify the mailer.
|
|
InsetCommand::string2params(data, params_);
|
|
paramsToDialog(params_);
|
|
return true;
|
|
}
|
|
|
|
|
|
void GuiPrintindex::dispatchParams()
|
|
{
|
|
std::string const lfun = InsetCommand::params2string(params_);
|
|
dispatch(FuncRequest(getLfun(), lfun));
|
|
}
|
|
|
|
|
|
Dialog * createGuiPrintindex(GuiView & lv) { return new GuiPrintindex(lv); }
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "moc_GuiPrintindex.cpp"
|