lyx_mirror/src/frontends/qt4/GuiIndex.cpp

163 lines
3.2 KiB
C++
Raw Normal View History

/**
* \file GuiIndex.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "GuiIndex.h"
#include "debug.h"
#include "qt_helpers.h"
#include <QLabel>
#include <QPushButton>
#include <QLineEdit>
#include <QCloseEvent>
using std::string;
namespace lyx {
namespace frontend {
/////////////////////////////////////////////////////////////////
//
// Base implementation
//
/////////////////////////////////////////////////////////////////
GuiIndexDialogBase::GuiIndexDialogBase(LyXView & lv,
docstring const & title, QString const & label, std::string const & name)
: GuiCommand(lv, name)
{
label_ = label;
setupUi(this);
setViewTitle(title);
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
connect(keywordED, SIGNAL(textChanged(const QString &)),
this, SLOT(change_adaptor()));
setFocusProxy(keywordED);
keywordLA->setText(label_);
keywordED->setWhatsThis( qt_(
"The format of the entry in the index.\n"
"\n"
"An entry can be specified as a sub-entry of\n"
"another with \"!\":\n"
"\n"
"cars!mileage\n"
"\n"
"You can cross-refer to another entry like so:\n"
"\n"
"cars!mileage|see{economy}\n"
"\n"
"For further details refer to the local LaTeX\n"
"documentation.\n")
);
bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy);
bc().setOK(okPB);
bc().setCancel(closePB);
bc().addReadOnly(keywordED);
}
void GuiIndexDialogBase::change_adaptor()
{
changed();
}
void GuiIndexDialogBase::reject()
{
slotClose();
}
void GuiIndexDialogBase::closeEvent(QCloseEvent * e)
{
slotClose();
e->accept();
}
void GuiIndexDialogBase::updateContents()
{
docstring const contents = params_["name"];
keywordED->setText(toqstr(contents));
bc().setValid(!contents.empty());
}
void GuiIndexDialogBase::applyView()
{
params_["name"] = qstring_to_ucs4(keywordED->text());
}
bool GuiIndexDialogBase::isValid()
{
return !keywordED->text().isEmpty();
}
/////////////////////////////////////////////////////////////////
//
// Index Dialog
//
/////////////////////////////////////////////////////////////////
GuiIndex::GuiIndex(LyXView & lv)
: GuiIndexDialogBase(lv, _("Index Entry"), qt_("&Keyword:"), "index")
{
keywordED->setWhatsThis( qt_(
"The format of the entry in the index.\n"
"\n"
"An entry can be specified as a sub-entry of\n"
"another with \"!\":\n"
"\n"
"cars!mileage\n"
"\n"
"You can cross-refer to another entry like so:\n"
"\n"
"cars!mileage|see{economy}\n"
"\n"
"For further details refer to the local LaTeX\n"
"documentation.\n")
);
}
Dialog * createGuiIndex(LyXView & lv) { return new GuiIndex(lv); }
/////////////////////////////////////////////////////////////////
//
// Label Dialog
//
/////////////////////////////////////////////////////////////////
GuiLabel::GuiLabel(LyXView & lv)
: GuiIndexDialogBase(lv, _("Label"), qt_("&Label:"), "label")
{}
Dialog * createGuiLabel(LyXView & lv) { return new GuiLabel(lv); }
} // namespace frontend
} // namespace lyx
#include "GuiIndex_moc.cpp"