2001-02-12 14:09:09 +00:00
|
|
|
/**
|
|
|
|
* \file FormBibitem.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
2002-03-21 21:21:28 +00:00
|
|
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
2001-03-23 18:46:11 +00:00
|
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
2001-02-12 14:09:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#include <config.h>
|
2001-03-21 13:27:03 +00:00
|
|
|
#include "xformsBC.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "ControlBibitem.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
#include "FormBibitem.h"
|
2002-06-13 13:43:51 +00:00
|
|
|
#include "forms/form_bibitem.h"
|
|
|
|
#include FORMS_H_LOCATION
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "support/lstrings.h" // compare
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2002-06-13 13:43:51 +00:00
|
|
|
typedef FormCB<ControlBibitem, FormDB<FD_bibitem> > base_class;
|
2001-03-20 10:14:03 +00:00
|
|
|
|
2002-08-12 14:28:43 +00:00
|
|
|
FormBibitem::FormBibitem()
|
|
|
|
: base_class(_("Bibliography Entry"))
|
2001-03-15 13:37:04 +00:00
|
|
|
{}
|
2001-02-12 14:09:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
void FormBibitem::build()
|
|
|
|
{
|
2002-06-13 13:43:51 +00:00
|
|
|
dialog_.reset(build_bibitem(this));
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2002-03-12 14:11:15 +00:00
|
|
|
fl_set_input_return(dialog_->input_key, FL_RETURN_CHANGED);
|
|
|
|
fl_set_input_return(dialog_->input_label, FL_RETURN_CHANGED);
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2002-03-12 14:11:15 +00:00
|
|
|
setPrehandler(dialog_->input_key);
|
|
|
|
setPrehandler(dialog_->input_label);
|
2002-03-11 18:24:31 +00:00
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
// Manage the ok, apply, restore and cancel/close buttons
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().setOK(dialog_->button_ok);
|
2002-03-12 14:11:15 +00:00
|
|
|
bc().setCancel(dialog_->button_close);
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2002-03-12 14:11:15 +00:00
|
|
|
bc().addReadOnly(dialog_->input_key);
|
|
|
|
bc().addReadOnly(dialog_->input_label);
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
ButtonPolicy::SMInput FormBibitem::input(FL_OBJECT *, long)
|
2001-02-12 14:09:09 +00:00
|
|
|
{
|
2002-03-21 21:21:28 +00:00
|
|
|
// minimal validation
|
2002-03-12 14:11:15 +00:00
|
|
|
if (!compare(fl_get_input(dialog_->input_key), ""))
|
2001-03-15 13:37:04 +00:00
|
|
|
return ButtonPolicy::SMI_NOOP;
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
return ButtonPolicy::SMI_VALID;
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormBibitem::update()
|
|
|
|
{
|
2002-03-12 14:11:15 +00:00
|
|
|
fl_set_input(dialog_->input_key,
|
2001-03-15 13:37:04 +00:00
|
|
|
controller().params().getContents().c_str());
|
2002-03-12 14:11:15 +00:00
|
|
|
fl_set_input(dialog_->input_label,
|
2001-03-15 13:37:04 +00:00
|
|
|
controller().params().getOptions().c_str());
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormBibitem::apply()
|
|
|
|
{
|
2002-03-12 14:11:15 +00:00
|
|
|
controller().params().setContents(fl_get_input(dialog_->input_key));
|
|
|
|
controller().params().setOptions(fl_get_input(dialog_->input_label));
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|