mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
9f29ab3aa5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1796 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.4 KiB
C
70 lines
1.4 KiB
C
/**
|
|
* \file FormBibtex.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Angus Leeming
|
|
* \author John Levon
|
|
*/
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include <config.h>
|
|
#include "ControlBibtex.h"
|
|
#include "FormBibtex.h"
|
|
#include "form_bibtex.h"
|
|
#include "gettext.h"
|
|
#include "xformsBC.h"
|
|
#include "debug.h"
|
|
|
|
typedef FormCB<ControlBibtex, FormDB<FD_form_bibtex> > base_class;
|
|
|
|
FormBibtex::FormBibtex(ControlBibtex & c)
|
|
: base_class(c, _("BibTeX Database"))
|
|
{}
|
|
|
|
|
|
void FormBibtex::build()
|
|
{
|
|
dialog_.reset(build_bibtex());
|
|
|
|
fl_set_input_return(dialog_->database, FL_RETURN_CHANGED);
|
|
fl_set_input_return(dialog_->style, FL_RETURN_CHANGED);
|
|
|
|
// Manage the ok, apply, restore and cancel/close buttons
|
|
bc().setOK(dialog_->button_ok);
|
|
bc().setCancel(dialog_->button_cancel);
|
|
bc().refresh();
|
|
|
|
bc().addReadOnly(dialog_->database);
|
|
bc().addReadOnly(dialog_->style);
|
|
}
|
|
|
|
|
|
ButtonPolicy::SMInput FormBibtex::input(FL_OBJECT *, long)
|
|
{
|
|
// minimal validation
|
|
if (!compare(fl_get_input(dialog_->database),""))
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
return ButtonPolicy::SMI_VALID;
|
|
}
|
|
|
|
|
|
void FormBibtex::update()
|
|
{
|
|
fl_set_input(dialog_->database,
|
|
controller().params().getContents().c_str());
|
|
fl_set_input(dialog_->style,
|
|
controller().params().getOptions().c_str());
|
|
}
|
|
|
|
|
|
void FormBibtex::apply()
|
|
{
|
|
controller().params().setContents(fl_get_input(dialog_->database));
|
|
controller().params().setOptions(fl_get_input(dialog_->style));
|
|
}
|