mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
8c5f097b5d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18015 a592a061-630c-0410-9148-cb99ea01b6c8
108 lines
2.1 KiB
C++
108 lines
2.1 KiB
C++
/**
|
|
* \file QBibitem.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 "QBibitem.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "controllers/ControlCommand.h"
|
|
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// QBibItemDialog
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
QBibitemDialog::QBibitemDialog(QBibitem * 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 QBibitemDialog::change_adaptor()
|
|
{
|
|
form_->changed();
|
|
}
|
|
|
|
|
|
void QBibitemDialog::closeEvent(QCloseEvent *e)
|
|
{
|
|
form_->slotWMHide();
|
|
e->accept();
|
|
}
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
//
|
|
// QBibItem
|
|
//
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
typedef QController<ControlCommand, QView<QBibitemDialog> > BibItemBase;
|
|
|
|
|
|
QBibitem::QBibitem(Dialog & parent)
|
|
: BibItemBase(parent, _("Bibliography Entry Settings"))
|
|
{
|
|
}
|
|
|
|
|
|
void QBibitem::build_dialog()
|
|
{
|
|
dialog_.reset(new QBibitemDialog(this));
|
|
|
|
bcview().setOK(dialog_->okPB);
|
|
bcview().setCancel(dialog_->closePB);
|
|
bcview().addReadOnly(dialog_->keyED);
|
|
bcview().addReadOnly(dialog_->labelED);
|
|
}
|
|
|
|
|
|
void QBibitem::update_contents()
|
|
{
|
|
dialog_->keyED->setText(toqstr(controller().params()["key"]));
|
|
dialog_->labelED->setText(toqstr(controller().params()["label"]));
|
|
}
|
|
|
|
|
|
void QBibitem::apply()
|
|
{
|
|
controller().params()["key"] = qstring_to_ucs4(dialog_->keyED->text());
|
|
controller().params()["label"] = qstring_to_ucs4(dialog_->labelED->text());
|
|
}
|
|
|
|
|
|
bool QBibitem::isValid()
|
|
{
|
|
return !dialog_->keyED->text().isEmpty();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "QBibitem_moc.cpp"
|