mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
e43f9d3bbd
Removing debug.h makes debugging via lyxerr<< twice as hard.
118 lines
2.7 KiB
C++
118 lines
2.7 KiB
C++
/**
|
|
* \file GuiPrintNomencl.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jürgen Spitzmüller
|
|
* \author Uwe Stöhr
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "GuiPrintNomencl.h"
|
|
|
|
#include "LengthCombo.h"
|
|
#include "qt_helpers.h"
|
|
#include "Validator.h"
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
#include "insets/InsetNomencl.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/gettext.h"
|
|
#include "support/lstrings.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
GuiPrintNomencl::GuiPrintNomencl(QWidget * parent) : InsetParamsWidget(parent)
|
|
{
|
|
setupUi(this);
|
|
|
|
connect(valueLE, SIGNAL(textChanged(QString)),
|
|
this, SIGNAL(changed()));
|
|
connect(unitLC, SIGNAL(selectionChanged(lyx::Length::UNIT)),
|
|
this, SIGNAL(changed()));
|
|
|
|
valueLE->setValidator(unsignedLengthValidator(valueLE));
|
|
|
|
// initialize the length validator
|
|
addCheckedWidget(valueLE, valueLA);
|
|
|
|
setWidthCO->addItem(qt_("Default"),
|
|
QVariant(toqstr("none")));
|
|
setWidthCO->addItem(qt_("Longest label width"),
|
|
QVariant(toqstr("auto")));
|
|
setWidthCO->addItem(qt_("Custom"),
|
|
QVariant(toqstr("custom")));
|
|
}
|
|
|
|
|
|
void GuiPrintNomencl::on_setWidthCO_activated(int i)
|
|
{
|
|
bool const custom =
|
|
(setWidthCO->itemData(i).toString() == "custom");
|
|
valueLE->setEnabled(custom);
|
|
unitLC->setEnabled(custom);
|
|
valueLA->setEnabled(custom);
|
|
changed();
|
|
}
|
|
|
|
|
|
void GuiPrintNomencl::paramsToDialog(InsetCommandParams const & params)
|
|
{
|
|
setWidthCO->setCurrentIndex(
|
|
setWidthCO->findData(toqstr(params["set_width"])));
|
|
|
|
lengthToWidgets(valueLE, unitLC,
|
|
params["width"], Length::defaultUnit());
|
|
|
|
bool const custom =
|
|
(setWidthCO->itemData(setWidthCO->currentIndex()).toString() == "custom");
|
|
valueLE->setEnabled(custom);
|
|
unitLC->setEnabled(custom);
|
|
valueLA->setEnabled(custom);
|
|
}
|
|
|
|
|
|
void GuiPrintNomencl::paramsToDialog(Inset const * inset)
|
|
{
|
|
InsetNomencl const * nomencl = static_cast<InsetNomencl const *>(inset);
|
|
paramsToDialog(nomencl->params());
|
|
}
|
|
|
|
|
|
docstring GuiPrintNomencl::dialogToParams() const
|
|
{
|
|
InsetCommandParams params(insetCode());
|
|
docstring const set_width = qstring_to_ucs4(setWidthCO->itemData(
|
|
setWidthCO->currentIndex()).toString());
|
|
params["set_width"] = set_width;
|
|
docstring width;
|
|
if (set_width == from_ascii("custom"))
|
|
width = from_utf8(widgetsToLength(valueLE, unitLC));
|
|
params["width"] = width;
|
|
return from_ascii(InsetNomencl::params2string(params));
|
|
}
|
|
|
|
|
|
bool GuiPrintNomencl::checkWidgets() const
|
|
{
|
|
if (!InsetParamsWidget::checkWidgets())
|
|
return false;
|
|
return setWidthCO->itemData(
|
|
setWidthCO->currentIndex()).toString() != "custom"
|
|
|| !valueLE->text().isEmpty();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
|
|
#include "moc_GuiPrintNomencl.cpp"
|