Disable bookmarksopenlevel SL when bookmarksopen is false

Fixes #11289
This commit is contained in:
Juergen Spitzmueller 2020-05-16 10:31:48 +02:00
parent 91c2d66983
commit f2243a3bc7
2 changed files with 11 additions and 0 deletions

View File

@ -1696,6 +1696,8 @@ GuiDocument::GuiDocument(GuiView & lv)
this, SLOT(change_adaptor()));
connect(pdfSupportModule->bookmarksopenGB, SIGNAL(toggled(bool)),
this, SLOT(change_adaptor()));
connect(pdfSupportModule->bookmarksopenGB, SIGNAL(toggled(bool)),
this, SLOT(bookmarksopenChanged(bool)));
connect(pdfSupportModule->bookmarksopenlevelSB, SIGNAL(valueChanged(int)),
this, SLOT(change_adaptor()));
connect(pdfSupportModule->breaklinksCB, SIGNAL(toggled(bool)),
@ -1819,6 +1821,12 @@ void GuiDocument::shellescapeChanged()
changed();
}
void GuiDocument::bookmarksopenChanged(bool state)
{
pdfSupportModule->bookmarksopenlevelSB->setEnabled(state);
pdfSupportModule->bookmarksopenlevelLA->setEnabled(state);
}
void GuiDocument::slotApply()
{
@ -4435,6 +4443,8 @@ void GuiDocument::paramsToDialog()
pdfSupportModule->bookmarksopenGB->setChecked(pdf.bookmarksopen);
pdfSupportModule->bookmarksopenlevelSB->setValue(pdf.bookmarksopenlevel);
pdfSupportModule->bookmarksopenlevelSB->setEnabled(pdf.bookmarksopen);
pdfSupportModule->bookmarksopenlevelLA->setEnabled(pdf.bookmarksopen);
pdfSupportModule->breaklinksCB->setChecked(pdf.breaklinks);
pdfSupportModule->pdfborderCB->setChecked(pdf.pdfborder);

View File

@ -166,6 +166,7 @@ private Q_SLOTS:
void linenoToggled(bool);
void outputChangesToggled(bool);
void setOutputSync(bool);
void bookmarksopenChanged(bool);
private:
/// validate listings parameters and return an error message, if any
QString validateListingsParameters();