2001-02-12 14:09:09 +00:00
|
|
|
/**
|
|
|
|
* \file FormBibtex.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
* \author John Levon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-03-19 16:37:01 +00:00
|
|
|
#include <config.h>
|
2001-03-21 13:27:03 +00:00
|
|
|
#include "xformsBC.h"
|
2001-03-19 16:37:01 +00:00
|
|
|
#include "ControlBibtex.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
#include "FormBibtex.h"
|
2001-03-20 10:14:03 +00:00
|
|
|
#include "form_bibtex.h"
|
2001-03-19 16:37:01 +00:00
|
|
|
#include "gettext.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
#include "debug.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
typedef FormCB<ControlBibtex, FormDB<FD_form_bibtex> > base_class;
|
|
|
|
|
2001-03-19 16:37:01 +00:00
|
|
|
FormBibtex::FormBibtex(ControlBibtex & c)
|
2001-03-20 10:14:03 +00:00
|
|
|
: base_class(c, _("BibTeX Database"))
|
2001-03-19 16:37:01 +00:00
|
|
|
{}
|
2001-02-12 14:09:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
void FormBibtex::build()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
dialog_.reset(build_bibtex());
|
2001-02-12 14:09:09 +00:00
|
|
|
|
|
|
|
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
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().setOK(dialog_->button_ok);
|
|
|
|
bc().setCancel(dialog_->button_cancel);
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().addReadOnly(dialog_->database);
|
|
|
|
bc().addReadOnly(dialog_->style);
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-19 16:37:01 +00:00
|
|
|
ButtonPolicy::SMInput FormBibtex::input(FL_OBJECT *, long)
|
2001-02-12 14:09:09 +00:00
|
|
|
{
|
|
|
|
// minimal validation
|
2001-02-16 09:25:43 +00:00
|
|
|
if (!compare(fl_get_input(dialog_->database),""))
|
2001-03-19 16:37:01 +00:00
|
|
|
return ButtonPolicy::SMI_NOOP;
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-19 16:37:01 +00:00
|
|
|
return ButtonPolicy::SMI_VALID;
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormBibtex::update()
|
|
|
|
{
|
2001-03-19 16:37:01 +00:00
|
|
|
fl_set_input(dialog_->database,
|
|
|
|
controller().params().getContents().c_str());
|
|
|
|
fl_set_input(dialog_->style,
|
|
|
|
controller().params().getOptions().c_str());
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormBibtex::apply()
|
|
|
|
{
|
2001-03-19 16:37:01 +00:00
|
|
|
controller().params().setContents(fl_get_input(dialog_->database));
|
|
|
|
controller().params().setOptions(fl_get_input(dialog_->style));
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|