2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QDocumentDialog.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-19 13:25:15 +00:00
|
|
|
*
|
2002-10-09 08:59:02 +00:00
|
|
|
* \author Edwin Leuven
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2002-12-17 20:37:13 +00:00
|
|
|
#include "qt_helpers.h"
|
2002-10-09 08:59:02 +00:00
|
|
|
|
|
|
|
#include "ControlDocument.h"
|
|
|
|
#include "QDocument.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
#include "QDocumentDialog.h"
|
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
#include "ui/TextLayoutModuleBase.h"
|
|
|
|
#include "ui/MathsModuleBase.h"
|
|
|
|
#include "ui/LaTeXModuleBase.h"
|
|
|
|
#include "ui/PageLayoutModuleBase.h"
|
2002-10-09 08:59:02 +00:00
|
|
|
#include "ui/LanguageModuleBase.h"
|
|
|
|
#include "ui/BulletsModuleBase.h"
|
|
|
|
#include "BulletsModule.h"
|
|
|
|
#include "ui/BiblioModuleBase.h"
|
|
|
|
#include "ui/NumberingModuleBase.h"
|
|
|
|
#include "ui/MarginsModuleBase.h"
|
|
|
|
#include "ui/PreambleModuleBase.h"
|
2003-03-28 02:10:23 +00:00
|
|
|
#include "panelstack.h"
|
2003-03-28 17:19:49 +00:00
|
|
|
#include "floatplacement.h"
|
2002-10-09 08:59:02 +00:00
|
|
|
|
|
|
|
#include "Spacing.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
|
|
|
|
#include <qwidgetstack.h>
|
|
|
|
#include <qlistbox.h>
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qmultilineedit.h>
|
2001-08-19 13:25:15 +00:00
|
|
|
#include <qlineedit.h>
|
2002-12-16 22:24:33 +00:00
|
|
|
#include <qlistview.h>
|
2002-10-09 08:59:02 +00:00
|
|
|
#include <qpushbutton.h>
|
2001-08-19 13:25:15 +00:00
|
|
|
#include <qcombobox.h>
|
2002-10-09 08:59:02 +00:00
|
|
|
#include <qradiobutton.h>
|
|
|
|
#include <qcheckbox.h>
|
2001-08-19 13:25:15 +00:00
|
|
|
#include <qspinbox.h>
|
2002-10-09 08:59:02 +00:00
|
|
|
#include "lengthcombo.h"
|
2002-10-20 01:48:28 +00:00
|
|
|
|
|
|
|
|
2002-11-13 00:52:15 +00:00
|
|
|
QDocumentDialog::QDocumentDialog(QDocument * form)
|
|
|
|
: QDocumentDialogBase(0, 0, false, 0), form_(form)
|
2002-10-09 08:59:02 +00:00
|
|
|
{
|
|
|
|
connect(okPB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotOK()));
|
|
|
|
connect(applyPB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotApply()));
|
2002-11-13 05:36:07 +00:00
|
|
|
connect(closePB, SIGNAL(clicked()),
|
2002-10-09 08:59:02 +00:00
|
|
|
form, SLOT(slotClose()));
|
|
|
|
connect(restorePB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotRestore()));
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
textLayoutModule = new TextLayoutModuleBase(this);
|
|
|
|
pageLayoutModule = new PageLayoutModuleBase(this);
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule = new MarginsModuleBase(this);
|
|
|
|
langModule = new LanguageModuleBase(this);
|
|
|
|
bulletsModule = new BulletsModule(this);
|
|
|
|
numberingModule = new NumberingModuleBase(this);
|
|
|
|
biblioModule = new BiblioModuleBase(this);
|
2003-03-28 17:19:49 +00:00
|
|
|
mathsModule = new MathsModuleBase(this);
|
|
|
|
floatModule = new FloatPlacement(this, "floatplacement");
|
|
|
|
latexModule = new LaTeXModuleBase(this);
|
2002-10-09 08:59:02 +00:00
|
|
|
preambleModule = new PreambleModuleBase(this);
|
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
docPS->addPanel(latexModule, _("Document Class"));
|
|
|
|
docPS->addPanel(textLayoutModule, _("Text Layout"));
|
|
|
|
docPS->addPanel(pageLayoutModule, _("Page Layout"));
|
|
|
|
docPS->addPanel(marginsModule, _("Page Margins"));
|
2003-03-28 02:10:23 +00:00
|
|
|
docPS->addPanel(langModule, _("Language"));
|
|
|
|
docPS->addPanel(numberingModule, _("Table of Contents"));
|
|
|
|
docPS->addPanel(biblioModule, _("Bibliography"));
|
2003-03-28 17:19:49 +00:00
|
|
|
docPS->addPanel(mathsModule, _("Math options"));
|
|
|
|
docPS->addPanel(floatModule, _("Float Placement"));
|
2003-03-28 02:10:23 +00:00
|
|
|
docPS->addPanel(bulletsModule, _("Bullets"));
|
|
|
|
docPS->addPanel(preambleModule, _("LaTeX Preamble"));
|
2003-03-28 17:19:49 +00:00
|
|
|
docPS->setCurrentPanel(_("Document Class"));
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-12-01 22:59:25 +00:00
|
|
|
// preamble
|
2003-03-28 02:10:23 +00:00
|
|
|
connect(preambleModule->preambleMLE, SIGNAL(textChanged()), this, SLOT(change_adaptor()));
|
2002-12-01 22:59:25 +00:00
|
|
|
// biblio
|
2003-03-28 02:10:23 +00:00
|
|
|
connect(biblioModule->natbibCB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(biblioModule->citeStyleCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
2002-12-01 22:59:25 +00:00
|
|
|
// language & quote
|
2003-03-28 02:10:23 +00:00
|
|
|
connect(langModule->singleQuoteRB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(langModule->doubleQuoteRB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(langModule->languageCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(langModule->defaultencodingCB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(langModule->encodingCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(langModule->quoteStyleCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
2002-12-01 22:59:25 +00:00
|
|
|
// numbering
|
2003-03-28 02:10:23 +00:00
|
|
|
connect(numberingModule->sectionnrDepthSB, SIGNAL(valueChanged(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(numberingModule->tocDepthSB, SIGNAL(valueChanged(int)), this, SLOT(change_adaptor()));
|
2003-03-28 17:19:49 +00:00
|
|
|
// maths
|
|
|
|
connect(mathsModule->amsCB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(mathsModule->amsautoCB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
// float
|
|
|
|
connect(floatModule, SIGNAL(changed()), this, SLOT(change_adaptor()));
|
|
|
|
// latex class
|
|
|
|
connect(latexModule->classCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(latexModule->optionsLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(latexModule->psdriverCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(latexModule->classCO, SIGNAL(activated(int)), this, SLOT(classChanged()));
|
|
|
|
// text layout
|
|
|
|
connect(textLayoutModule->fontsCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->fontsizeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->lspacingCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->lspacingCO, SIGNAL(activated(int)), this, SLOT(setLSpacing(int)));
|
|
|
|
connect(textLayoutModule->lspacingLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->skipRB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->indentRB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->skipCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->skipLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->skipLengthCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(textLayoutModule->skipCO, SIGNAL(activated(int)), this, SLOT(setSkip(int)));
|
|
|
|
connect(textLayoutModule->skipRB, SIGNAL(toggled(bool)), this, SLOT(enableSkip(bool)));
|
|
|
|
connect(textLayoutModule->twoColumnCB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
2002-11-13 00:52:15 +00:00
|
|
|
|
2002-12-01 22:59:25 +00:00
|
|
|
// margins
|
2003-03-28 02:10:23 +00:00
|
|
|
connect(marginsModule->marginCO, SIGNAL(activated(int)), this, SLOT(setCustomMargins(int)));
|
|
|
|
connect(marginsModule->marginCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->topLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->topUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->bottomLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->bottomUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->innerLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->innerUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->outerLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->outerUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->headheightLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->headheightUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->headsepLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->headsepUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->footskipLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(marginsModule->footskipUnit, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
2002-11-13 00:52:15 +00:00
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
// page layout
|
|
|
|
connect(pageLayoutModule->papersizeCO, SIGNAL(activated(int)), this, SLOT(setMargins(int)));
|
|
|
|
connect(pageLayoutModule->papersizeCO, SIGNAL(activated(int)), this, SLOT(setCustomPapersize(int)));
|
|
|
|
connect(pageLayoutModule->papersizeCO, SIGNAL(activated(int)), this, SLOT(setCustomPapersize(int)));
|
|
|
|
connect(pageLayoutModule->portraitRB, SIGNAL(toggled(bool)), this, SLOT(portraitChanged()));
|
|
|
|
connect(pageLayoutModule->papersizeCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->paperheightLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->paperwidthLE, SIGNAL(textChanged(const QString&)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->paperwidthUnitCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->paperheightUnitCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->portraitRB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->landscapeRB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->facingPagesCB, SIGNAL(toggled(bool)), this, SLOT(change_adaptor()));
|
|
|
|
connect(pageLayoutModule->pagestyleCO, SIGNAL(activated(int)), this, SLOT(change_adaptor()));
|
2002-11-13 00:52:15 +00:00
|
|
|
|
2003-02-25 13:35:26 +00:00
|
|
|
// bullets
|
2003-03-29 01:29:20 +00:00
|
|
|
connect(bulletsModule, SIGNAL(changed()), this, SLOT(change_adaptor()));
|
2002-10-09 08:59:02 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
QDocumentDialog::~QDocumentDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2003-03-28 02:10:23 +00:00
|
|
|
void QDocumentDialog::showPreamble()
|
2002-10-09 08:59:02 +00:00
|
|
|
{
|
2003-03-28 02:10:23 +00:00
|
|
|
docPS->setCurrentPanel(_("LaTeX Preamble"));
|
2002-10-09 08:59:02 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-11-07 15:48:38 +00:00
|
|
|
void QDocumentDialog::saveDefaultClicked()
|
|
|
|
{
|
|
|
|
form_->saveDocDefault();
|
|
|
|
}
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-11-07 15:48:38 +00:00
|
|
|
void QDocumentDialog::useDefaultsClicked()
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-11-07 15:48:38 +00:00
|
|
|
form_->useClassDefaults();
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::change_adaptor()
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-10-09 08:59:02 +00:00
|
|
|
form_->changed();
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::closeEvent(QCloseEvent * e)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-10-09 08:59:02 +00:00
|
|
|
form_->slotWMHide();
|
|
|
|
e->accept();
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::setLSpacing(int item)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2003-03-28 17:19:49 +00:00
|
|
|
textLayoutModule->lspacingLE->setEnabled(item == 3);
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::setSkip(int item)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-11-13 00:52:15 +00:00
|
|
|
bool const enable = (item == 3);
|
2003-03-28 17:19:49 +00:00
|
|
|
textLayoutModule->skipLE->setEnabled(enable);
|
|
|
|
textLayoutModule->skipLengthCO->setEnabled(enable);
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::enableSkip(bool skip)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2003-03-28 17:19:49 +00:00
|
|
|
textLayoutModule->skipCO->setEnabled(skip);
|
|
|
|
textLayoutModule->skipLE->setEnabled(skip);
|
|
|
|
textLayoutModule->skipLengthCO->setEnabled(skip);
|
2002-10-09 08:59:02 +00:00
|
|
|
if (skip)
|
2003-03-28 17:19:49 +00:00
|
|
|
setSkip(textLayoutModule->skipCO->currentItem());
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2003-02-12 17:05:56 +00:00
|
|
|
void QDocumentDialog::portraitChanged()
|
|
|
|
{
|
2003-03-28 17:19:49 +00:00
|
|
|
setMargins(pageLayoutModule->papersizeCO->currentItem());
|
2003-02-12 17:05:56 +00:00
|
|
|
}
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::setMargins(int papersize)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-10-09 08:59:02 +00:00
|
|
|
int olditem = marginsModule->marginCO->currentItem();
|
|
|
|
marginsModule->marginCO->clear();
|
2002-12-17 20:37:13 +00:00
|
|
|
marginsModule->marginCO->insertItem(qt_("Default"));
|
|
|
|
marginsModule->marginCO->insertItem(qt_("Custom"));
|
2003-02-12 17:05:56 +00:00
|
|
|
bool a4size = (papersize == 6 || papersize == 0
|
|
|
|
&& lyxrc.default_papersize == BufferParams::PAPER_A4PAPER);
|
2003-03-28 17:19:49 +00:00
|
|
|
if (a4size && pageLayoutModule->portraitRB->isChecked()) {
|
2002-12-17 20:37:13 +00:00
|
|
|
marginsModule->marginCO->insertItem(qt_("Small margins"));
|
|
|
|
marginsModule->marginCO->insertItem(qt_("Very small margins"));
|
|
|
|
marginsModule->marginCO->insertItem(qt_("Very wide margins"));
|
|
|
|
} else if (olditem > 1) {
|
|
|
|
olditem = 0;
|
2002-10-09 08:59:02 +00:00
|
|
|
}
|
|
|
|
marginsModule->marginCO->setCurrentItem(olditem);
|
|
|
|
setCustomMargins(olditem);
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::setCustomPapersize(int papersize)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-10-20 01:48:28 +00:00
|
|
|
bool const custom = (papersize == 1);
|
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
pageLayoutModule->paperwidthL->setEnabled(custom);
|
|
|
|
pageLayoutModule->paperwidthLE->setEnabled(custom);
|
|
|
|
pageLayoutModule->paperwidthUnitCO->setEnabled(custom);
|
|
|
|
pageLayoutModule->paperheightL->setEnabled(custom);
|
|
|
|
pageLayoutModule->paperheightLE->setEnabled(custom);
|
|
|
|
pageLayoutModule->paperheightLE->setFocus();
|
|
|
|
pageLayoutModule->paperheightUnitCO->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::setCustomMargins(int margin)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-10-20 01:48:28 +00:00
|
|
|
bool const custom = (margin == 1);
|
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->topL->setEnabled(custom);
|
|
|
|
marginsModule->topLE->setEnabled(custom);
|
|
|
|
marginsModule->topUnit->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->bottomL->setEnabled(custom);
|
|
|
|
marginsModule->bottomLE->setEnabled(custom);
|
|
|
|
marginsModule->bottomUnit->setEnabled(custom);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->innerL->setEnabled(custom);
|
|
|
|
marginsModule->innerLE->setEnabled(custom);
|
|
|
|
marginsModule->innerUnit->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->outerL->setEnabled(custom);
|
|
|
|
marginsModule->outerLE->setEnabled(custom);
|
|
|
|
marginsModule->outerUnit->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->headheightL->setEnabled(custom);
|
|
|
|
marginsModule->headheightLE->setEnabled(custom);
|
|
|
|
marginsModule->headheightUnit->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->headsepL->setEnabled(custom);
|
|
|
|
marginsModule->headsepLE->setEnabled(custom);
|
|
|
|
marginsModule->headsepUnit->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
marginsModule->footskipL->setEnabled(custom);
|
|
|
|
marginsModule->footskipLE->setEnabled(custom);
|
|
|
|
marginsModule->footskipUnit->setEnabled(custom);
|
2001-08-19 13:25:15 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::updateFontsize(string const & items, string const & sel)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2003-03-28 17:19:49 +00:00
|
|
|
textLayoutModule->fontsizeCO->clear();
|
|
|
|
textLayoutModule->fontsizeCO->insertItem("default");
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
for (int n=0; !token(items,'|',n).empty(); ++n)
|
2003-03-28 17:19:49 +00:00
|
|
|
textLayoutModule->fontsizeCO->
|
2002-12-17 20:37:13 +00:00
|
|
|
insertItem(toqstr(token(items,'|',n)));
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
for (int n = 0; n<textLayoutModule->fontsizeCO->count(); ++n) {
|
|
|
|
if (fromqstr(textLayoutModule->fontsizeCO->text(n)) == sel) {
|
|
|
|
textLayoutModule->fontsizeCO->setCurrentItem(n);
|
2002-10-09 08:59:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::updatePagestyle(string const & items, string const & sel)
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2003-03-28 17:19:49 +00:00
|
|
|
pageLayoutModule->pagestyleCO->clear();
|
|
|
|
pageLayoutModule->pagestyleCO->insertItem("default");
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
for (int n=0; !token(items,'|',n).empty(); ++n)
|
2003-03-28 17:19:49 +00:00
|
|
|
pageLayoutModule->pagestyleCO->
|
2002-12-17 20:37:13 +00:00
|
|
|
insertItem(toqstr(token(items,'|',n)));
|
2001-08-19 13:25:15 +00:00
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
for (int n = 0; n<pageLayoutModule->pagestyleCO->count(); ++n) {
|
|
|
|
if (fromqstr(pageLayoutModule->pagestyleCO->text(n))==sel) {
|
|
|
|
pageLayoutModule->pagestyleCO->setCurrentItem(n);
|
2002-10-09 08:59:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-08-19 13:25:15 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2002-10-09 08:59:02 +00:00
|
|
|
void QDocumentDialog::classChanged()
|
2001-08-19 13:25:15 +00:00
|
|
|
{
|
2002-11-22 10:47:56 +00:00
|
|
|
ControlDocument & cntrl = form_->controller();
|
|
|
|
BufferParams & params = cntrl.params();
|
2002-11-07 15:48:38 +00:00
|
|
|
|
2003-03-28 17:19:49 +00:00
|
|
|
lyx::textclass_type const tc = latexModule->classCO->currentItem();
|
2002-11-07 15:48:38 +00:00
|
|
|
|
2002-11-24 14:54:50 +00:00
|
|
|
if (form_->controller().loadTextclass(tc)) {
|
2002-11-07 15:48:38 +00:00
|
|
|
params.textclass = tc;
|
|
|
|
|
2002-11-22 10:47:56 +00:00
|
|
|
if (lyxrc.auto_reset_options) {
|
|
|
|
params.useClassDefaults();
|
|
|
|
form_->update_contents();
|
|
|
|
} else {
|
|
|
|
updateFontsize(cntrl.textClass().opt_fontsize(),
|
|
|
|
params.fontsize);
|
|
|
|
|
|
|
|
updatePagestyle(cntrl.textClass().opt_pagestyle(),
|
|
|
|
params.pagestyle);
|
|
|
|
}
|
|
|
|
} else {
|
2003-03-28 17:19:49 +00:00
|
|
|
for (int n = 0; n<latexModule->classCO->count(); ++n) {
|
|
|
|
if (latexModule->classCO->text(n) ==
|
2002-12-17 20:37:13 +00:00
|
|
|
toqstr(cntrl.textClass().description())) {
|
2003-03-28 17:19:49 +00:00
|
|
|
latexModule->classCO->setCurrentItem(n);
|
2002-11-22 10:47:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-11-07 15:48:38 +00:00
|
|
|
}
|
2002-10-20 01:48:28 +00:00
|
|
|
}
|