2001-02-12 14:09:09 +00:00
|
|
|
/**
|
|
|
|
* \file FormBibitem.C
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-02-12 14:09:09 +00:00
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author Angus Leeming
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-02-12 14:09:09 +00:00
|
|
|
*/
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#include <config.h>
|
2003-09-05 13:15:43 +00:00
|
|
|
|
2001-02-12 14:09:09 +00:00
|
|
|
#include "FormBibitem.h"
|
2003-09-05 13:15:43 +00:00
|
|
|
#include "ControlCommand.h"
|
2002-06-13 13:43:51 +00:00
|
|
|
#include "forms/form_bibitem.h"
|
2003-09-05 13:15:43 +00:00
|
|
|
|
|
|
|
#include "Tooltips.h"
|
|
|
|
#include "xformsBC.h"
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "support/lstrings.h" // compare
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2003-09-05 13:15:43 +00:00
|
|
|
#include "lyx_forms.h"
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::compare;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2003-09-05 13:15:43 +00:00
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
typedef FormController<ControlCommand, FormView<FD_bibitem> > base_class;
|
2001-03-20 10:14:03 +00:00
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
FormBibitem::FormBibitem(Dialog & parent)
|
|
|
|
: base_class(parent, _("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
|
2003-03-10 03:13:28 +00:00
|
|
|
bcview().setOK(dialog_->button_ok);
|
|
|
|
bcview().setCancel(dialog_->button_close);
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2003-03-10 03:13:28 +00:00
|
|
|
bcview().addReadOnly(dialog_->input_key);
|
|
|
|
bcview().addReadOnly(dialog_->input_label);
|
2002-09-09 09:49:47 +00:00
|
|
|
|
|
|
|
// set up the tooltips
|
|
|
|
string str = _("Key used within LyX document.");
|
|
|
|
tooltips().init(dialog_->input_key, str);
|
|
|
|
str = _("Label used for final output.");
|
|
|
|
tooltips().init(dialog_->input_label, str);
|
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
|
|
|
}
|