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-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* 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
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-08-26 15:34:36 +00:00
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
|
|
#include "ControlBibitem.h"
|
|
|
|
#include "gettext.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
#include "debug.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"
|
|
|
|
|
2001-08-26 15:34:36 +00:00
|
|
|
typedef Qt2CB<ControlBibitem, Qt2DB<QBibitemDialog> > base_class;
|
|
|
|
|
2002-08-12 14:28:43 +00:00
|
|
|
QBibitem::QBibitem()
|
|
|
|
: base_class(_("Bibliography Item"))
|
2001-08-26 15:34:36 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QBibitem::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QBibitemDialog(this));
|
|
|
|
|
|
|
|
bc().setOK(dialog_->okPB);
|
|
|
|
bc().setCancel(dialog_->closePB);
|
|
|
|
bc().addReadOnly(dialog_->keyED);
|
|
|
|
bc().addReadOnly(dialog_->labelED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QBibitem::update_contents()
|
|
|
|
{
|
|
|
|
dialog_->keyED->setText(controller().params().getContents().c_str());
|
|
|
|
dialog_->labelED->setText(controller().params().getOptions().c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QBibitem::apply()
|
|
|
|
{
|
2002-03-21 21:21:28 +00:00
|
|
|
controller().params().setContents(dialog_->keyED->text().latin1());
|
|
|
|
controller().params().setOptions(dialog_->labelED->text().latin1());
|
2001-08-26 15:34:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool QBibitem::isValid()
|
|
|
|
{
|
|
|
|
return !string(dialog_->keyED->text().latin1()).empty();
|
|
|
|
}
|