2001-02-12 14:09:09 +00:00
|
|
|
/**
|
|
|
|
* \file FormBibitem.C
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
* \author John Levon
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include "ControlBibitem.h"
|
2001-02-12 14:09:09 +00:00
|
|
|
#include "FormBibitem.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "xformsBC.h"
|
|
|
|
#include "support/lstrings.h" // compare
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
FormBibitem::FormBibitem(ControlBibitem & c)
|
|
|
|
: FormBase2<ControlBibitem, FD_form_bibitem>(c, _("Bibliography Entry"))
|
|
|
|
{}
|
2001-02-12 14:09:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
void FormBibitem::build()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
dialog_.reset(build_bibitem());
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_input_return(dialog_->key, FL_RETURN_CHANGED);
|
2001-02-12 14:09:09 +00:00
|
|
|
fl_set_input_return(dialog_->label, 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);
|
|
|
|
bc().refresh();
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().addReadOnly(dialog_->key);
|
|
|
|
bc().addReadOnly(dialog_->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
|
|
|
{
|
|
|
|
// minimal validation
|
2001-02-16 09:25:43 +00:00
|
|
|
if (!compare(fl_get_input(dialog_->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()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_input(dialog_->key,
|
|
|
|
controller().params().getContents().c_str());
|
|
|
|
fl_set_input(dialog_->label,
|
|
|
|
controller().params().getOptions().c_str());
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormBibitem::apply()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
controller().params().setContents(fl_get_input(dialog_->key));
|
|
|
|
controller().params().setOptions(fl_get_input(dialog_->label));
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|