]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiPrintindex.cpp
Avoid extra space in tooltips
[lyx.git] / src / frontends / qt4 / GuiPrintindex.cpp
index 3542ebfdef81af1b967e23c5aaba475e695ab1ac..be8c0cd9b621b5c75a497870b315df42a06c1d6a 100644 (file)
@@ -43,6 +43,7 @@ GuiPrintindex::GuiPrintindex(GuiView & lv)
        connect(cancelPB, SIGNAL(clicked()), this, SLOT(slotClose()));
        connect(indicesCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
        connect(subindexCB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
+       connect(literalCB, SIGNAL(clicked()), this, SLOT(change_adaptor()));
 
        bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
        bc().setOK(okPB);
@@ -78,6 +79,7 @@ void GuiPrintindex::updateContents()
        int const pos = indicesCO->findData(toqstr(cur_index));
        indicesCO->setCurrentIndex(pos);
        subindexCB->setChecked(params_.getCmdName() == "printsubindex");
+       literalCB->setChecked(params_["literal"] == "true");
 }
 
 
@@ -95,6 +97,8 @@ void GuiPrintindex::applyView()
                params_["type"] = docstring();
        else
                params_["type"] = qstring_to_ucs4(index);
+       params_["literal"] = literalCB->isChecked()
+                       ? from_ascii("true") : from_ascii("false");
 }
 
 
@@ -105,6 +109,7 @@ void GuiPrintindex::paramsToDialog(InsetCommandParams const & /*icp*/)
                indicesCO->findData(toqstr(params_["type"]));
        subindexCB->setChecked(params_.getCmdName() == "printsubindex");
        indicesCO->setCurrentIndex(pos);
+       literalCB->setChecked(params_["literal"] == "true");
        bc().setValid(isValid());
 }
 
@@ -113,14 +118,15 @@ bool GuiPrintindex::initialiseParams(string const & data)
 {
        // The name passed with LFUN_INSET_APPLY is also the name
        // used to identify the mailer.
-       InsetCommand::string2params("index_print", data, params_);
+       InsetCommand::string2params(data, params_);
+       paramsToDialog(params_);
        return true;
 }
 
 
 void GuiPrintindex::dispatchParams()
 {
-       std::string const lfun = InsetCommand::params2string("index_print", params_);
+       std::string const lfun = InsetCommand::params2string(params_);
        dispatch(FuncRequest(getLfun(), lfun));
 }