mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
dbc5bf6f8a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14177 a592a061-630c-0410-9148-cb99ea01b6c8
747 lines
21 KiB
C
747 lines
21 KiB
C
/**
|
|
* \file QDocument.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "checkedwidgets.h"
|
|
#include "QDocument.h"
|
|
#include "QDocumentDialog.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "bufferparams.h"
|
|
#include "floatplacement.h"
|
|
#include "gettext.h"
|
|
#include "helper_funcs.h" // getSecond()
|
|
#include "language.h"
|
|
#include "lyxrc.h" // defaultUnit
|
|
#include "lyxtextclasslist.h"
|
|
#include "tex-strings.h" // tex_graphics
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "controllers/ControlDocument.h"
|
|
#include "controllers/frnt_lang.h"
|
|
|
|
#include <qpushbutton.h>
|
|
#include <qmultilineedit.h>
|
|
#include <qradiobutton.h>
|
|
#include <qcheckbox.h>
|
|
#include <qspinbox.h>
|
|
#include <qslider.h>
|
|
#include <qlineedit.h>
|
|
#include <qlistview.h>
|
|
#include "lengthcombo.h"
|
|
|
|
|
|
using lyx::support::bformat;
|
|
using lyx::support::findToken;
|
|
using lyx::support::getVectorFromString;
|
|
|
|
using std::distance;
|
|
using std::vector;
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
typedef QController<ControlDocument, QView<QDocumentDialog> > base_class;
|
|
|
|
|
|
namespace {
|
|
|
|
char const * encodings[] = { "LaTeX default", "latin1", "latin2",
|
|
"latin3", "latin4", "latin5", "latin9",
|
|
"koi8-r", "koi8-u", "cp866", "cp1251",
|
|
"iso88595", "pt154", 0
|
|
};
|
|
|
|
}
|
|
|
|
|
|
QDocument::QDocument(Dialog & parent)
|
|
: base_class(parent, _("Document Settings")),
|
|
lang_(getSecond(getLanguageData(false)))
|
|
{}
|
|
|
|
|
|
void QDocument::build_dialog()
|
|
{
|
|
dialog_.reset(new QDocumentDialog(this));
|
|
|
|
// biblio
|
|
dialog_->biblioModule->citeStyleCO->insertItem(qt_("Author-year"));
|
|
dialog_->biblioModule->citeStyleCO->insertItem(qt_("Numerical"));
|
|
dialog_->biblioModule->citeStyleCO->setCurrentItem(0);
|
|
|
|
// language & quotes
|
|
vector<LanguagePair> const langs = getLanguageData(false);
|
|
vector<LanguagePair>::const_iterator lit = langs.begin();
|
|
vector<LanguagePair>::const_iterator lend = langs.end();
|
|
for (; lit != lend; ++lit) {
|
|
dialog_->langModule->languageCO->insertItem(
|
|
toqstr(lit->first));
|
|
}
|
|
|
|
int i = 0;
|
|
while (encodings[i]) {
|
|
dialog_->langModule->encodingCO->insertItem(qt_(encodings[i++]));
|
|
}
|
|
|
|
dialog_->langModule->quoteStyleCO->insertItem(qt_("``text''"));
|
|
dialog_->langModule->quoteStyleCO->insertItem(qt_("''text''"));
|
|
dialog_->langModule->quoteStyleCO->insertItem(qt_(",,text``"));
|
|
dialog_->langModule->quoteStyleCO->insertItem(qt_(",,text''"));
|
|
dialog_->langModule->quoteStyleCO->insertItem(qt_("<<text>>"));
|
|
dialog_->langModule->quoteStyleCO->insertItem(qt_(">>text<<"));
|
|
|
|
// packages
|
|
for (int n = 0; tex_graphics[n][0]; ++n) {
|
|
QString enc = tex_graphics[n];
|
|
dialog_->latexModule->psdriverCO->insertItem(enc);
|
|
}
|
|
|
|
// paper
|
|
QComboBox * cb = dialog_->pageLayoutModule->papersizeCO;
|
|
cb->insertItem(qt_("Default"));
|
|
cb->insertItem(qt_("Custom"));
|
|
cb->insertItem(qt_("US letter"));
|
|
cb->insertItem(qt_("US legal"));
|
|
cb->insertItem(qt_("US executive"));
|
|
cb->insertItem(qt_("A3"));
|
|
cb->insertItem(qt_("A4"));
|
|
cb->insertItem(qt_("A5"));
|
|
cb->insertItem(qt_("B3"));
|
|
cb->insertItem(qt_("B4"));
|
|
cb->insertItem(qt_("B5"));
|
|
// remove the %-items from the unit choice
|
|
dialog_->pageLayoutModule->paperwidthUnitCO->noPercents();
|
|
dialog_->pageLayoutModule->paperheightUnitCO->noPercents();
|
|
|
|
// text layout
|
|
for (LyXTextClassList::const_iterator cit = textclasslist.begin();
|
|
cit != textclasslist.end(); ++cit) {
|
|
if (cit->isTeXClassAvailable()) {
|
|
dialog_->latexModule->classCO->insertItem(toqstr(cit->description()));
|
|
} else {
|
|
string item =
|
|
bformat(_("Unavailable: %1$s"), cit->description());
|
|
dialog_->latexModule->classCO->insertItem(toqstr(item));
|
|
}
|
|
}
|
|
|
|
dialog_->textLayoutModule->skipCO->insertItem(qt_("SmallSkip"));
|
|
dialog_->textLayoutModule->skipCO->insertItem(qt_("MedSkip"));
|
|
dialog_->textLayoutModule->skipCO->insertItem(qt_("BigSkip"));
|
|
dialog_->textLayoutModule->skipCO->insertItem(qt_("Length"));
|
|
// remove the %-items from the unit choice
|
|
dialog_->textLayoutModule->skipLengthCO->noPercents();
|
|
|
|
// fonts
|
|
for (int n = 0; tex_fonts_roman[n][0]; ++n) {
|
|
QString font = toqstr(tex_fonts_roman_gui[n]);
|
|
if (!controller().isFontAvailable(tex_fonts_roman[n]))
|
|
font += qt_(" (not installed)");
|
|
dialog_->fontModule->fontsRomanCO->insertItem(font);
|
|
}
|
|
for (int n = 0; tex_fonts_sans[n][0]; ++n) {
|
|
QString font = toqstr(tex_fonts_sans_gui[n]);
|
|
if (!controller().isFontAvailable(tex_fonts_sans[n]))
|
|
font += qt_(" (not installed)");
|
|
dialog_->fontModule->fontsSansCO->insertItem(font);
|
|
}
|
|
for (int n = 0; tex_fonts_monospaced[n][0]; ++n) {
|
|
QString font = toqstr(tex_fonts_monospaced_gui[n]);
|
|
if (!controller().isFontAvailable(tex_fonts_monospaced[n]))
|
|
font += qt_(" (not installed)");
|
|
dialog_->fontModule->fontsTypewriterCO->insertItem(font);
|
|
}
|
|
|
|
for (int n = 0; ControlDocument::fontfamilies_gui[n][0]; ++n)
|
|
dialog_->fontModule->fontsDefaultCO->insertItem(
|
|
qt_(ControlDocument::fontfamilies_gui[n]));
|
|
|
|
dialog_->fontModule->fontsizeCO->insertItem(qt_("default"));
|
|
dialog_->fontModule->fontsizeCO->insertItem(qt_("10"));
|
|
dialog_->fontModule->fontsizeCO->insertItem(qt_("11"));
|
|
dialog_->fontModule->fontsizeCO->insertItem(qt_("12"));
|
|
|
|
// page layout
|
|
dialog_->pageLayoutModule->pagestyleCO->insertItem(qt_("default"));
|
|
dialog_->pageLayoutModule->pagestyleCO->insertItem(qt_("empty"));
|
|
dialog_->pageLayoutModule->pagestyleCO->insertItem(qt_("plain"));
|
|
dialog_->pageLayoutModule->pagestyleCO->insertItem(qt_("headings"));
|
|
dialog_->pageLayoutModule->pagestyleCO->insertItem(qt_("fancy"));
|
|
|
|
dialog_->textLayoutModule->lspacingCO->insertItem(
|
|
qt_("Single"), Spacing::Single);
|
|
dialog_->textLayoutModule->lspacingCO->insertItem(
|
|
qt_("OneHalf"), Spacing::Onehalf);
|
|
dialog_->textLayoutModule->lspacingCO->insertItem(
|
|
qt_("Double"), Spacing::Double);
|
|
dialog_->textLayoutModule->lspacingCO->insertItem(
|
|
qt_("Custom"), Spacing::Other);
|
|
|
|
|
|
// Manage the restore, ok, apply, restore and cancel/close buttons
|
|
bcview().setOK(dialog_->okPB);
|
|
bcview().setApply(dialog_->applyPB);
|
|
bcview().setCancel(dialog_->closePB);
|
|
bcview().setRestore(dialog_->restorePB);
|
|
|
|
// initialize the length validator
|
|
addCheckedLineEdit(bcview(), dialog_->textLayoutModule->skipLE);
|
|
addCheckedLineEdit(bcview(), dialog_->pageLayoutModule->paperheightLE,
|
|
dialog_->pageLayoutModule->paperheightL);
|
|
addCheckedLineEdit(bcview(), dialog_->pageLayoutModule->paperwidthLE,
|
|
dialog_->pageLayoutModule->paperwidthL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->topLE,
|
|
dialog_->marginsModule->topL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->bottomLE,
|
|
dialog_->marginsModule->bottomL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->innerLE,
|
|
dialog_->marginsModule->innerL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->outerLE,
|
|
dialog_->marginsModule->outerL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->headsepLE,
|
|
dialog_->marginsModule->headsepL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->headheightLE,
|
|
dialog_->marginsModule->headheightL);
|
|
addCheckedLineEdit(bcview(), dialog_->marginsModule->footskipLE,
|
|
dialog_->marginsModule->footskipL);
|
|
}
|
|
|
|
|
|
void QDocument::showPreamble()
|
|
{
|
|
dialog_->showPreamble();
|
|
}
|
|
|
|
|
|
void QDocument::apply()
|
|
{
|
|
BufferParams & params = controller().params();
|
|
|
|
// preamble
|
|
params.preamble =
|
|
fromqstr(dialog_->preambleModule->preambleMLE->text());
|
|
|
|
// biblio
|
|
params.cite_engine = biblio::ENGINE_BASIC;
|
|
|
|
if (dialog_->biblioModule->citeNatbibRB->isChecked()) {
|
|
bool const use_numerical_citations =
|
|
dialog_->biblioModule->citeStyleCO->currentItem();
|
|
if (use_numerical_citations)
|
|
params.cite_engine = biblio::ENGINE_NATBIB_NUMERICAL;
|
|
else
|
|
params.cite_engine = biblio::ENGINE_NATBIB_AUTHORYEAR;
|
|
|
|
} else if (dialog_->biblioModule->citeJurabibRB->isChecked())
|
|
params.cite_engine = biblio::ENGINE_JURABIB;
|
|
|
|
params.use_bibtopic =
|
|
dialog_->biblioModule->bibtopicCB->isChecked();
|
|
|
|
// language & quotes
|
|
if (dialog_->langModule->defaultencodingCB->isChecked()) {
|
|
params.inputenc = "auto";
|
|
} else {
|
|
int i = dialog_->langModule->encodingCO->currentItem();
|
|
if (i == 0) {
|
|
params.inputenc = "default";
|
|
} else {
|
|
params.inputenc = encodings[i];
|
|
}
|
|
}
|
|
|
|
InsetQuotes::quote_language lga = InsetQuotes::EnglishQ;
|
|
switch (dialog_->langModule->quoteStyleCO->currentItem()) {
|
|
case 0:
|
|
lga = InsetQuotes::EnglishQ;
|
|
break;
|
|
case 1:
|
|
lga = InsetQuotes::SwedishQ;
|
|
break;
|
|
case 2:
|
|
lga = InsetQuotes::GermanQ;
|
|
break;
|
|
case 3:
|
|
lga = InsetQuotes::PolishQ;
|
|
break;
|
|
case 4:
|
|
lga = InsetQuotes::FrenchQ;
|
|
break;
|
|
case 5:
|
|
lga = InsetQuotes::DanishQ;
|
|
break;
|
|
}
|
|
params.quotes_language = lga;
|
|
|
|
int const pos = dialog_->langModule->languageCO->currentItem();
|
|
params.language = languages.getLanguage(lang_[pos]);
|
|
|
|
// numbering
|
|
if (params.getLyXTextClass().hasTocLevels()) {
|
|
params.tocdepth = dialog_->numberingModule->tocSL->value();
|
|
params.secnumdepth = dialog_->numberingModule->depthSL->value();
|
|
}
|
|
|
|
// bullets
|
|
params.user_defined_bullet(0) = dialog_->bulletsModule->getBullet(0);
|
|
params.user_defined_bullet(1) = dialog_->bulletsModule->getBullet(1);
|
|
params.user_defined_bullet(2) = dialog_->bulletsModule->getBullet(2);
|
|
params.user_defined_bullet(3) = dialog_->bulletsModule->getBullet(3);
|
|
|
|
// packages
|
|
params.graphicsDriver =
|
|
fromqstr(dialog_->latexModule->psdriverCO->currentText());
|
|
|
|
if (dialog_->mathsModule->amsautoCB->isChecked()) {
|
|
params.use_amsmath = BufferParams::AMS_AUTO;
|
|
} else {
|
|
if (dialog_->mathsModule->amsCB->isChecked())
|
|
params.use_amsmath = BufferParams::AMS_ON;
|
|
else
|
|
params.use_amsmath = BufferParams::AMS_OFF;
|
|
}
|
|
|
|
// layout
|
|
params.textclass =
|
|
dialog_->latexModule->classCO->currentItem();
|
|
|
|
params.pagestyle =
|
|
fromqstr(dialog_->pageLayoutModule->pagestyleCO->currentText());
|
|
|
|
switch (dialog_->textLayoutModule->lspacingCO->currentItem()) {
|
|
case 0:
|
|
params.spacing().set(Spacing::Single);
|
|
break;
|
|
case 1:
|
|
params.spacing().set(Spacing::Onehalf);
|
|
break;
|
|
case 2:
|
|
params.spacing().set(Spacing::Double);
|
|
break;
|
|
case 3:
|
|
params.spacing().set(Spacing::Other,
|
|
fromqstr(dialog_->textLayoutModule->lspacingLE->text()));
|
|
break;
|
|
}
|
|
|
|
if (dialog_->textLayoutModule->twoColumnCB->isChecked())
|
|
params.columns = 2;
|
|
else
|
|
params.columns = 1;
|
|
|
|
if (dialog_->textLayoutModule->indentRB->isChecked())
|
|
params.paragraph_separation = BufferParams::PARSEP_INDENT;
|
|
else
|
|
params.paragraph_separation = BufferParams::PARSEP_SKIP;
|
|
|
|
switch (dialog_->textLayoutModule->skipCO->currentItem()) {
|
|
case 0:
|
|
params.setDefSkip(VSpace(VSpace::SMALLSKIP));
|
|
break;
|
|
case 1:
|
|
params.setDefSkip(VSpace(VSpace::MEDSKIP));
|
|
break;
|
|
case 2:
|
|
params.setDefSkip(VSpace(VSpace::BIGSKIP));
|
|
break;
|
|
case 3:
|
|
{
|
|
VSpace vs = VSpace(
|
|
widgetsToLength(dialog_->textLayoutModule->skipLE,
|
|
dialog_->textLayoutModule->skipLengthCO)
|
|
);
|
|
params.setDefSkip(vs);
|
|
break;
|
|
}
|
|
default:
|
|
// DocumentDefskipCB assures that this never happens
|
|
// so Assert then !!! - jbl
|
|
params.setDefSkip(VSpace(VSpace::MEDSKIP));
|
|
break;
|
|
}
|
|
|
|
params.options =
|
|
fromqstr(dialog_->latexModule->optionsLE->text());
|
|
|
|
params.float_placement = dialog_->floatModule->get();
|
|
|
|
// fonts
|
|
params.fontsRoman =
|
|
tex_fonts_roman[dialog_->fontModule->fontsRomanCO->currentItem()];
|
|
|
|
params.fontsSans =
|
|
tex_fonts_sans[dialog_->fontModule->fontsSansCO->currentItem()];
|
|
|
|
params.fontsTypewriter =
|
|
tex_fonts_monospaced[dialog_->fontModule->fontsTypewriterCO->currentItem()];
|
|
|
|
params.fontsSansScale = dialog_->fontModule->scaleSansSB->value();
|
|
|
|
params.fontsTypewriterScale = dialog_->fontModule->scaleTypewriterSB->value();
|
|
|
|
params.fontsSC = dialog_->fontModule->fontScCB->isChecked();
|
|
|
|
params.fontsOSF = dialog_->fontModule->fontOsfCB->isChecked();
|
|
|
|
params.fontsDefaultFamily =
|
|
ControlDocument::fontfamilies[
|
|
dialog_->fontModule->fontsDefaultCO->currentItem()];
|
|
|
|
if (dialog_->fontModule->fontsizeCO->currentItem() == 0)
|
|
params.fontsize = "default";
|
|
else
|
|
params.fontsize =
|
|
fromqstr(dialog_->fontModule->fontsizeCO->currentText());
|
|
|
|
// paper
|
|
params.papersize = PAPER_SIZE(
|
|
dialog_->pageLayoutModule->papersizeCO->currentItem());
|
|
|
|
// custom, A3, B3 and B4 paper sizes need geometry
|
|
int psize = dialog_->pageLayoutModule->papersizeCO->currentItem();
|
|
bool geom_papersize = (psize == 1 || psize == 5 || psize == 8 || psize == 9);
|
|
|
|
params.paperwidth = widgetsToLength(dialog_->pageLayoutModule->paperwidthLE,
|
|
dialog_->pageLayoutModule->paperwidthUnitCO);
|
|
|
|
params.paperheight = widgetsToLength(dialog_->pageLayoutModule->paperheightLE,
|
|
dialog_->pageLayoutModule->paperheightUnitCO);
|
|
|
|
if (dialog_->pageLayoutModule->facingPagesCB->isChecked())
|
|
params.sides = LyXTextClass::TwoSides;
|
|
else
|
|
params.sides = LyXTextClass::OneSide;
|
|
|
|
if (dialog_->pageLayoutModule->landscapeRB->isChecked())
|
|
params.orientation = ORIENTATION_LANDSCAPE;
|
|
else
|
|
params.orientation = ORIENTATION_PORTRAIT;
|
|
|
|
// margins
|
|
params.use_geometry =
|
|
(!dialog_->marginsModule->marginCB->isChecked()
|
|
|| geom_papersize);
|
|
|
|
MarginsModuleBase const * m(dialog_->marginsModule);
|
|
|
|
params.leftmargin = widgetsToLength(m->innerLE, m->innerUnit);
|
|
|
|
params.topmargin = widgetsToLength(m->topLE, m->topUnit);
|
|
|
|
params.rightmargin = widgetsToLength(m->outerLE, m->outerUnit);
|
|
|
|
params.bottommargin = widgetsToLength(m->bottomLE, m->bottomUnit);
|
|
|
|
params.headheight = widgetsToLength(m->headheightLE, m->headheightUnit);
|
|
|
|
params.headsep = widgetsToLength(m->headsepLE, m->headsepUnit);
|
|
|
|
params.footskip = widgetsToLength(m->footskipLE, m->footskipUnit);
|
|
|
|
params.branchlist() = branchlist_;
|
|
}
|
|
|
|
|
|
namespace {
|
|
|
|
/** Return the position of val in the vector if found.
|
|
If not found, return 0.
|
|
*/
|
|
template<class A>
|
|
typename std::vector<A>::size_type
|
|
findPos(std::vector<A> const & vec, A const & val)
|
|
{
|
|
typename std::vector<A>::const_iterator it =
|
|
std::find(vec.begin(), vec.end(), val);
|
|
if (it == vec.end())
|
|
return 0;
|
|
return distance(vec.begin(), it);
|
|
}
|
|
|
|
} // namespace anom
|
|
|
|
|
|
void QDocument::update_contents()
|
|
{
|
|
if (!dialog_.get())
|
|
return;
|
|
|
|
BufferParams const & params = controller().params();
|
|
|
|
// set the default unit
|
|
// FIXME: move to controller
|
|
LyXLength::UNIT defaultUnit = LyXLength::CM;
|
|
switch (lyxrc.default_papersize) {
|
|
case PAPER_DEFAULT: break;
|
|
|
|
case PAPER_USLETTER:
|
|
case PAPER_USLEGAL:
|
|
case PAPER_USEXECUTIVE:
|
|
defaultUnit = LyXLength::IN;
|
|
break;
|
|
|
|
case PAPER_A3:
|
|
case PAPER_A4:
|
|
case PAPER_A5:
|
|
case PAPER_B3:
|
|
case PAPER_B4:
|
|
case PAPER_B5:
|
|
defaultUnit = LyXLength::CM;
|
|
break;
|
|
case PAPER_CUSTOM:
|
|
break;
|
|
}
|
|
|
|
// preamble
|
|
QString preamble = toqstr(params.preamble);
|
|
dialog_->preambleModule->preambleMLE->setText(preamble);
|
|
|
|
// biblio
|
|
dialog_->biblioModule->citeDefaultRB->setChecked(
|
|
params.cite_engine == biblio::ENGINE_BASIC);
|
|
|
|
dialog_->biblioModule->citeNatbibRB->setChecked(
|
|
params.cite_engine == biblio::ENGINE_NATBIB_NUMERICAL ||
|
|
params.cite_engine == biblio::ENGINE_NATBIB_AUTHORYEAR);
|
|
|
|
dialog_->biblioModule->citeStyleCO->setCurrentItem(
|
|
params.cite_engine == biblio::ENGINE_NATBIB_NUMERICAL);
|
|
|
|
dialog_->biblioModule->citeJurabibRB->setChecked(
|
|
params.cite_engine == biblio::ENGINE_JURABIB);
|
|
|
|
dialog_->biblioModule->bibtopicCB->setChecked(
|
|
params.use_bibtopic);
|
|
|
|
// language & quotes
|
|
int const pos = int(findPos(lang_,
|
|
params.language->lang()));
|
|
dialog_->langModule->languageCO->setCurrentItem(pos);
|
|
|
|
dialog_->langModule->quoteStyleCO->setCurrentItem(
|
|
params.quotes_language);
|
|
|
|
dialog_->langModule->defaultencodingCB->setChecked(true);
|
|
|
|
if (params.inputenc != "auto") {
|
|
dialog_->langModule->defaultencodingCB->setChecked(false);
|
|
if (params.inputenc == "default") {
|
|
dialog_->langModule->encodingCO->setCurrentItem(0);
|
|
} else {
|
|
int i = 0;
|
|
while (encodings[i]) {
|
|
if (encodings[i] == params.inputenc)
|
|
dialog_->langModule->encodingCO->setCurrentItem(i);
|
|
++i;
|
|
}
|
|
}
|
|
}
|
|
|
|
// numbering
|
|
int const min_toclevel = controller().textClass().min_toclevel();
|
|
int const max_toclevel = controller().textClass().max_toclevel();
|
|
if (controller().textClass().hasTocLevels()) {
|
|
dialog_->numberingModule->setEnabled(true);
|
|
dialog_->numberingModule->depthSL->setMinValue(min_toclevel - 1);
|
|
dialog_->numberingModule->depthSL->setMaxValue(max_toclevel);
|
|
dialog_->numberingModule->depthSL->setValue(params.secnumdepth);
|
|
dialog_->numberingModule->tocSL->setMinValue(min_toclevel - 1);
|
|
dialog_->numberingModule->tocSL->setMaxValue(max_toclevel);
|
|
dialog_->numberingModule->tocSL->setValue(params.tocdepth);
|
|
dialog_->updateNumbering();
|
|
} else {
|
|
dialog_->numberingModule->setEnabled(false);
|
|
dialog_->numberingModule->tocLV->clear();
|
|
}
|
|
|
|
// bullets
|
|
dialog_->bulletsModule->setBullet(0,params.user_defined_bullet(0));
|
|
dialog_->bulletsModule->setBullet(1,params.user_defined_bullet(1));
|
|
dialog_->bulletsModule->setBullet(2,params.user_defined_bullet(2));
|
|
dialog_->bulletsModule->setBullet(3,params.user_defined_bullet(3));
|
|
|
|
// packages
|
|
QString text = toqstr(params.graphicsDriver);
|
|
int nitem = dialog_->latexModule->psdriverCO->count();
|
|
for (int n = 0; n < nitem ; ++n) {
|
|
QString enc = tex_graphics[n];
|
|
if (enc == text) {
|
|
dialog_->latexModule->psdriverCO->setCurrentItem(n);
|
|
}
|
|
}
|
|
|
|
|
|
dialog_->mathsModule->amsCB->setChecked(
|
|
params.use_amsmath == BufferParams::AMS_ON);
|
|
dialog_->mathsModule->amsautoCB->setChecked(
|
|
params.use_amsmath == BufferParams::AMS_AUTO);
|
|
|
|
switch (params.spacing().getSpace()) {
|
|
case Spacing::Other: nitem = 3; break;
|
|
case Spacing::Double: nitem = 2; break;
|
|
case Spacing::Onehalf: nitem = 1; break;
|
|
case Spacing::Default: case Spacing::Single: nitem = 0; break;
|
|
}
|
|
|
|
// text layout
|
|
dialog_->latexModule->classCO->setCurrentItem(params.textclass);
|
|
|
|
dialog_->updatePagestyle(controller().textClass().opt_pagestyle(),
|
|
params.pagestyle);
|
|
|
|
dialog_->textLayoutModule->lspacingCO->setCurrentItem(nitem);
|
|
if (params.spacing().getSpace() == Spacing::Other) {
|
|
dialog_->textLayoutModule->lspacingLE->setText(
|
|
toqstr(params.spacing().getValueAsString()));
|
|
}
|
|
dialog_->setLSpacing(nitem);
|
|
|
|
if (params.paragraph_separation
|
|
== BufferParams::PARSEP_INDENT) {
|
|
dialog_->textLayoutModule->indentRB->setChecked(true);
|
|
} else {
|
|
dialog_->textLayoutModule->skipRB->setChecked(true);
|
|
}
|
|
|
|
int skip = 0;
|
|
switch (params.getDefSkip().kind()) {
|
|
case VSpace::SMALLSKIP:
|
|
skip = 0;
|
|
break;
|
|
case VSpace::MEDSKIP:
|
|
skip = 1;
|
|
break;
|
|
case VSpace::BIGSKIP:
|
|
skip = 2;
|
|
break;
|
|
case VSpace::LENGTH:
|
|
{
|
|
skip = 3;
|
|
string const length = params.getDefSkip().asLyXCommand();
|
|
lengthToWidgets(dialog_->textLayoutModule->skipLE,
|
|
dialog_->textLayoutModule->skipLengthCO,
|
|
length, defaultUnit);
|
|
break;
|
|
}
|
|
default:
|
|
skip = 0;
|
|
break;
|
|
}
|
|
dialog_->textLayoutModule->skipCO->setCurrentItem(skip);
|
|
dialog_->setSkip(skip);
|
|
|
|
dialog_->textLayoutModule->twoColumnCB->setChecked(
|
|
params.columns == 2);
|
|
|
|
if (!params.options.empty()) {
|
|
dialog_->latexModule->optionsLE->setText(
|
|
toqstr(params.options));
|
|
} else {
|
|
dialog_->latexModule->optionsLE->setText("");
|
|
}
|
|
|
|
dialog_->floatModule->set(params.float_placement);
|
|
|
|
//fonts
|
|
dialog_->updateFontsize(controller().textClass().opt_fontsize(),
|
|
params.fontsize);
|
|
|
|
int n = findToken(tex_fonts_roman, params.fontsRoman);
|
|
if (n >= 0)
|
|
dialog_->fontModule->fontsRomanCO->setCurrentItem(n);
|
|
|
|
n = findToken(tex_fonts_sans, params.fontsSans);
|
|
if (n >= 0)
|
|
dialog_->fontModule->fontsSansCO->setCurrentItem(n);
|
|
|
|
n = findToken(tex_fonts_monospaced, params.fontsTypewriter);
|
|
if (n >= 0)
|
|
dialog_->fontModule->fontsTypewriterCO->setCurrentItem(n);
|
|
|
|
dialog_->fontModule->fontScCB->setChecked(params.fontsSC);
|
|
dialog_->fontModule->fontOsfCB->setChecked(params.fontsOSF);
|
|
dialog_->fontModule->fontScCB->setEnabled(
|
|
controller().providesSC(params.fontsRoman));
|
|
dialog_->fontModule->fontOsfCB->setEnabled(
|
|
controller().providesOSF(params.fontsRoman));
|
|
dialog_->fontModule->scaleSansSB->setValue(params.fontsSansScale);
|
|
dialog_->fontModule->scaleTypewriterSB->setValue(
|
|
params.fontsTypewriterScale);
|
|
dialog_->fontModule->scaleSansSB->setEnabled(
|
|
controller().providesScale(params.fontsSans));
|
|
dialog_->fontModule->scaleTypewriterSB->setEnabled(
|
|
controller().providesScale(params.fontsTypewriter));
|
|
|
|
n = findToken(ControlDocument::fontfamilies, params.fontsDefaultFamily);
|
|
if (n >= 0)
|
|
dialog_->fontModule->fontsDefaultCO->setCurrentItem(n);
|
|
|
|
// paper
|
|
int const psize = params.papersize;
|
|
dialog_->pageLayoutModule->papersizeCO->setCurrentItem(psize);
|
|
dialog_->setCustomPapersize(psize);
|
|
|
|
// margins
|
|
MarginsModuleBase * m = dialog_->marginsModule;
|
|
|
|
dialog_->setMargins(!params.use_geometry);
|
|
|
|
lengthToWidgets(m->topLE, m->topUnit,
|
|
params.topmargin, defaultUnit);
|
|
|
|
lengthToWidgets(m->bottomLE, m->bottomUnit,
|
|
params.bottommargin, defaultUnit);
|
|
|
|
lengthToWidgets(m->innerLE, m->innerUnit,
|
|
params.leftmargin, defaultUnit);
|
|
|
|
lengthToWidgets(m->outerLE, m->outerUnit,
|
|
params.rightmargin, defaultUnit);
|
|
|
|
lengthToWidgets(m->headheightLE, m->headheightUnit,
|
|
params.headheight, defaultUnit);
|
|
|
|
lengthToWidgets(m->headsepLE, m->headsepUnit,
|
|
params.headsep, defaultUnit);
|
|
|
|
lengthToWidgets(m->footskipLE, m->footskipUnit,
|
|
params.footskip, defaultUnit);
|
|
|
|
// branches
|
|
branchlist_ = params.branchlist();
|
|
dialog_->updateBranchView();
|
|
}
|
|
|
|
|
|
void QDocument::saveDocDefault()
|
|
{
|
|
// we have to apply the params first
|
|
apply();
|
|
controller().saveAsDefault();
|
|
}
|
|
|
|
|
|
void QDocument::useClassDefaults()
|
|
{
|
|
BufferParams & params = controller().params();
|
|
|
|
params.textclass = dialog_->latexModule->classCO->currentItem();
|
|
params.useClassDefaults();
|
|
update_contents();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|