lyx_mirror/src/frontends/qt2/QBibitem.C
John Levon fabd5d2057 The big Qt toqstr/fromqstr patch.
This kind of wrapping will be needed anyway, and it's an
improvement on what we had. Please give it a run.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5846 a592a061-630c-0410-9148-cb99ea01b6c8
2002-12-17 20:37:13 +00:00

68 lines
1.3 KiB
C

/**
* \file QBibitem.C
* 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>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/lstrings.h"
#include "ControlBibitem.h"
#include "qt_helpers.h"
#include "debug.h"
#include <qlineedit.h>
#include <qpushbutton.h>
#include "QBibitemDialog.h"
#include "QBibitem.h"
#include "Qt2BC.h"
typedef Qt2CB<ControlBibitem, Qt2DB<QBibitemDialog> > base_class;
QBibitem::QBibitem()
: base_class(qt_("Bibliography Item"))
{
}
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(toqstr(controller().params().getContents()));
dialog_->labelED->setText(toqstr(controller().params().getOptions()));
}
void QBibitem::apply()
{
controller().params().setContents(fromqstr(dialog_->keyED->text()));
controller().params().setOptions(fromqstr(dialog_->labelED->text()));
}
bool QBibitem::isValid()
{
return !dialog_->keyED->text().isEmpty();
}