/** * \file GuiVSpace.cpp * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * \author Jürgen Vigna * \author Rob Lahaye * \author Angus Leeming * \author Edwin Leuven * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ #include #include "GuiVSpace.h" #include "LengthCombo.h" #include "qt_helpers.h" #include "Validator.h" #include "Spacing.h" #include "VSpace.h" #include "insets/InsetVSpace.h" #include "support/gettext.h" #include "support/lstrings.h" #include #include #include #include using namespace std; namespace lyx { namespace frontend { GuiVSpace::GuiVSpace(QWidget * parent) : InsetParamsWidget(parent) { setupUi(this); connect(valueLE, SIGNAL(textChanged(QString)), this, SIGNAL(changed())); connect(keepCB, SIGNAL(clicked()), this, SIGNAL(changed())); connect(unitCO, SIGNAL(selectionChanged(lyx::Length::UNIT)), this, SIGNAL(changed())); connect(spacingCO, SIGNAL(activated(int)), this, SLOT(enableCustom(int))); valueLE->setValidator(unsignedGlueLengthValidator(valueLE)); // initialize the length validator addCheckedWidget(valueLE, valueL); enableCustom(spacingCO->currentIndex()); } void GuiVSpace::enableCustom(int selection) { bool const enable = selection == 5; valueLE->setEnabled(enable); if (enable) valueLE->setFocus(); valueL->setEnabled(enable); unitCO->setEnabled(enable); changed(); } static void setWidgetsFromVSpace(VSpace const & space, QComboBox * spacing, QLineEdit * value, LengthCombo * unit, QCheckBox * keep) { int item = 0; switch (space.kind()) { case VSpace::DEFSKIP: item = 0; break; case VSpace::SMALLSKIP: item = 1; break; case VSpace::MEDSKIP: item = 2; break; case VSpace::BIGSKIP: item = 3; break; case VSpace::VFILL: item = 4; break; case VSpace::LENGTH: item = 5; break; } spacing->setCurrentIndex(item); keep->setChecked(space.keep()); Length::UNIT const default_unit = Length::defaultUnit(); bool const custom_vspace = space.kind() == VSpace::LENGTH; if (custom_vspace) { value->setEnabled(true); unit->setEnabled(true); string length = space.length().asString(); lengthToWidgets(value, unit, length, default_unit); } else { lengthToWidgets(value, unit, "", default_unit); value->setEnabled(false); unit->setEnabled(false); } } static VSpace setVSpaceFromWidgets(int spacing, QLineEdit * value, LengthCombo * unit, bool keep) { VSpace space; switch (spacing) { case 0: space = VSpace(VSpace::DEFSKIP); break; case 1: space = VSpace(VSpace::SMALLSKIP); break; case 2: space = VSpace(VSpace::MEDSKIP); break; case 3: space = VSpace(VSpace::BIGSKIP); break; case 4: space = VSpace(VSpace::VFILL); break; case 5: space = VSpace(GlueLength(widgetsToLength(value, unit))); break; } space.setKeep(keep); return space; } docstring GuiVSpace::dialogToParams() const { // If a vspace choice is "Length" but there's no text in // the input field, do not insert a vspace at all. if (spacingCO->currentIndex() == 5 && valueLE->text().isEmpty()) return docstring(); VSpace const params = setVSpaceFromWidgets(spacingCO->currentIndex(), valueLE, unitCO, keepCB->isChecked()); return from_ascii(InsetVSpace::params2string(params)); } void GuiVSpace::paramsToDialog(Inset const * inset) { InsetVSpace const * vs = static_cast(inset); VSpace const & params = vs->space(); setWidgetsFromVSpace(params, spacingCO, valueLE, unitCO, keepCB); enableCustom(spacingCO->currentIndex()); } bool GuiVSpace::checkWidgets(bool readonly) const { valueLE->setReadOnly(readonly); spacingCO->setEnabled(!readonly); unitCO->setEnabled(!readonly); keepCB->setEnabled(!readonly); return InsetParamsWidget::checkWidgets(); } } // namespace frontend } // namespace lyx #include "moc_GuiVSpace.cpp"