2001-08-26 15:34:36 +00:00
|
|
|
/**
|
|
|
|
* \file QBibitem.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-26 15:34:36 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-08-26 15:34:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
|
2001-08-26 15:34:36 +00:00
|
|
|
|
2003-09-29 10:50:51 +00:00
|
|
|
#include "debug.h"
|
2003-03-07 14:08:10 +00:00
|
|
|
#include "ControlCommand.h"
|
2002-12-17 20:37:13 +00:00
|
|
|
#include "qt_helpers.h"
|
2001-08-26 15:34:36 +00:00
|
|
|
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "QBibitemDialog.h"
|
|
|
|
#include "QBibitem.h"
|
|
|
|
#include "Qt2BC.h"
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
typedef QController<ControlCommand, QView<QBibitemDialog> > base_class;
|
2001-08-26 15:34:36 +00:00
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
QBibitem::QBibitem(Dialog & parent)
|
2003-05-22 15:42:50 +00:00
|
|
|
: base_class(parent, _("LyX: Bibliography Item Settings"))
|
2001-08-26 15:34:36 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QBibitem::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QBibitemDialog(this));
|
|
|
|
|
2003-03-10 03:13:28 +00:00
|
|
|
bcview().setOK(dialog_->okPB);
|
|
|
|
bcview().setCancel(dialog_->closePB);
|
|
|
|
bcview().addReadOnly(dialog_->keyED);
|
|
|
|
bcview().addReadOnly(dialog_->labelED);
|
2001-08-26 15:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QBibitem::update_contents()
|
|
|
|
{
|
2002-12-17 20:37:13 +00:00
|
|
|
dialog_->keyED->setText(toqstr(controller().params().getContents()));
|
|
|
|
dialog_->labelED->setText(toqstr(controller().params().getOptions()));
|
2001-08-26 15:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QBibitem::apply()
|
|
|
|
{
|
2002-12-17 20:37:13 +00:00
|
|
|
controller().params().setContents(fromqstr(dialog_->keyED->text()));
|
|
|
|
controller().params().setOptions(fromqstr(dialog_->labelED->text()));
|
2001-08-26 15:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool QBibitem::isValid()
|
|
|
|
{
|
2002-12-17 20:37:13 +00:00
|
|
|
return !dialog_->keyED->text().isEmpty();
|
2001-08-26 15:34:36 +00:00
|
|
|
}
|