lyx_mirror/src/frontends/qt4/GuiBibitem.cpp

108 lines
2.2 KiB
C++
Raw Normal View History

/**
* \file GuiBibitem.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 "GuiBibitem.h"
#include "Qt2BC.h"
#include "qt_helpers.h"
#include "controllers/ControlCommand.h"
#include <QLineEdit>
#include <QPushButton>
namespace lyx {
namespace frontend {
/////////////////////////////////////////////////////////////////////
//
// QBibItemDialog
//
/////////////////////////////////////////////////////////////////////
GuiBibitemDialog::GuiBibitemDialog(GuiBibitem * form)
: form_(form)
{
setupUi(this);
connect(okPB, SIGNAL(clicked()), form, SLOT(slotOK()));
connect(closePB, SIGNAL(clicked()), form, SLOT(slotClose()));
connect(keyED, SIGNAL(textChanged(const QString &)),
this, SLOT(change_adaptor()));
connect(labelED, SIGNAL(textChanged(const QString &)),
this, SLOT(change_adaptor()));
}
void GuiBibitemDialog::change_adaptor()
{
form_->changed();
}
void GuiBibitemDialog::closeEvent(QCloseEvent *e)
{
form_->slotWMHide();
e->accept();
}
/////////////////////////////////////////////////////////////////////
//
// QBibItem
//
/////////////////////////////////////////////////////////////////////
typedef QController<ControlCommand, GuiView<GuiBibitemDialog> > BibItemBase;
GuiBibitem::GuiBibitem(Dialog & parent)
: BibItemBase(parent, _("Bibliography Entry Settings"))
{
}
void GuiBibitem::build_dialog()
{
dialog_.reset(new GuiBibitemDialog(this));
bcview().setOK(dialog_->okPB);
bcview().setCancel(dialog_->closePB);
bcview().addReadOnly(dialog_->keyED);
bcview().addReadOnly(dialog_->labelED);
}
void GuiBibitem::update_contents()
{
dialog_->keyED->setText(toqstr(controller().params()["key"]));
dialog_->labelED->setText(toqstr(controller().params()["label"]));
}
void GuiBibitem::apply()
{
controller().params()["key"] = qstring_to_ucs4(dialog_->keyED->text());
controller().params()["label"] = qstring_to_ucs4(dialog_->labelED->text());
}
bool GuiBibitem::isValid()
{
return !dialog_->keyED->text().isEmpty();
}
} // namespace frontend
} // namespace lyx
#include "GuiBibitem_moc.cpp"