lyx_mirror/src/frontends/qt4/GuiNomencl.cpp
André Pönitz 99c9b0fbcf next ones
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20819 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-07 14:41:49 +00:00

112 lines
2.2 KiB
C++

/**
* \file GuiNomencl.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author O. U. Baran
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "GuiNomencl.h"
#include "debug.h"
#include "qt_helpers.h"
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QTextEdit>
#include <QWhatsThis>
#include <QCloseEvent>
using std::string;
namespace lyx {
namespace frontend {
GuiNomenclature::GuiNomenclature(LyXView & lv)
: GuiCommand(lv, "nomenclature")
{
setupUi(this);
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
connect(symbolED, SIGNAL(textChanged(QString)),
this, SLOT(change_adaptor()));
connect(descriptionTE, SIGNAL(textChanged()),
this, SLOT(change_adaptor()));
setFocusProxy(descriptionTE);
bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
bc().setOK(okPB);
bc().setCancel(closePB);
bc().addReadOnly(symbolED);
bc().addReadOnly(descriptionTE);
bc().addReadOnly(prefixED);
}
void GuiNomenclature::change_adaptor()
{
changed();
}
void GuiNomenclature::reject()
{
slotClose();
}
void GuiNomenclature::closeEvent(QCloseEvent * e)
{
slotClose();
e->accept();
}
void GuiNomenclature::updateContents()
{
prefixED->setText(toqstr(params_["prefix"]));
symbolED->setText(toqstr(params_["symbol"]));
QString description = toqstr(params_["description"]);
description.replace("\\\\","\n");
descriptionTE->setPlainText(description);
bc().setValid(isValid());
}
void GuiNomenclature::applyView()
{
params_["prefix"] = qstring_to_ucs4(prefixED->text());
params_["symbol"] = qstring_to_ucs4(symbolED->text());
QString description = descriptionTE->toPlainText();
description.replace('\n',"\\\\");
params_["description"] = qstring_to_ucs4(description);
}
bool GuiNomenclature::isValid()
{
QString const description = descriptionTE->toPlainText();
return !symbolED->text().isEmpty() && !description.isEmpty();
}
Dialog * createGuiNomenclature(LyXView & lv)
{
return new GuiNomenclature(lv);
}
} // namespace frontend
} // namespace lyx
#include "GuiNomencl_moc.cpp"