lyx_mirror/src/frontends/qt4/GuiNomencl.cpp
Abdelrazak Younes 2bf1c09376 header cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23049 a592a061-630c-0410-9148-cb99ea01b6c8
2008-02-18 07:14:42 +00:00

105 lines
2.1 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 "qt_helpers.h"
#include "support/debug.h"
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QTextEdit>
#include <QWhatsThis>
using namespace std;
namespace lyx {
namespace frontend {
GuiNomenclature::GuiNomenclature(GuiView & lv)
: GuiCommand(lv, "nomenclature", qt_("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::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(GuiView & lv)
{
return new GuiNomenclature(lv);
}
} // namespace frontend
} // namespace lyx
#include "GuiNomencl_moc.cpp"