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
|
2001-08-20 13:41:06 +00:00
|
|
|
* \author Herbert Voss <voss@lyx.org>
|
2001-02-12 14:09:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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-08-20 13:41:06 +00:00
|
|
|
#include "support/filetools.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-08-20 13:41:06 +00:00
|
|
|
bc().addReadOnly(dialog_->database_browse);
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().addReadOnly(dialog_->database);
|
2001-08-20 13:41:06 +00:00
|
|
|
bc().addReadOnly(dialog_->style_browse);
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().addReadOnly(dialog_->style);
|
2001-08-20 13:41:06 +00:00
|
|
|
bc().addReadOnly(dialog_->radio_bibtotoc);
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-20 13:41:06 +00:00
|
|
|
ButtonPolicy::SMInput FormBibtex::input(FL_OBJECT * ob, long)
|
2001-02-12 14:09:09 +00:00
|
|
|
{
|
2001-08-20 13:41:06 +00:00
|
|
|
if (ob == dialog_->database_browse) {
|
|
|
|
string const in_name = fl_get_input(dialog_->database);
|
|
|
|
string out_name =
|
|
|
|
controller().Browse(in_name,
|
|
|
|
"Select Database",
|
|
|
|
"*.bib| BibTeX Databases (*.bib)");
|
2001-08-20 15:44:24 +00:00
|
|
|
if (!out_name.empty()) {
|
2001-08-21 13:33:25 +00:00
|
|
|
out_name = OnlyFilename(out_name);
|
|
|
|
if (suffixIs(out_name,".bst")) {
|
|
|
|
// to prevent names like xxxbst.bst
|
2001-08-20 15:44:24 +00:00
|
|
|
out_name = ChangeExtension(out_name,"");
|
|
|
|
}
|
2001-08-21 13:33:25 +00:00
|
|
|
|
2001-08-20 15:44:24 +00:00
|
|
|
fl_freeze_form(form());
|
|
|
|
fl_set_input(dialog_->database, out_name.c_str());
|
|
|
|
fl_unfreeze_form(form());
|
|
|
|
}
|
2001-08-20 13:41:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ob == dialog_->style_browse) {
|
|
|
|
string const in_name = fl_get_input(dialog_->style);
|
|
|
|
string out_name =
|
|
|
|
controller().Browse(in_name,
|
|
|
|
"Select BibTeX-Style",
|
|
|
|
"*.bst| BibTeX Styles (*.bst)");
|
2001-08-20 15:44:24 +00:00
|
|
|
if (!out_name.empty()) {
|
|
|
|
if (suffixIs(out_name,".bst")) {
|
|
|
|
// to prevent names like xxxbib.bib
|
|
|
|
// name for display only
|
|
|
|
out_name = OnlyFilename(ChangeExtension(out_name,""));
|
|
|
|
}
|
|
|
|
|
|
|
|
fl_freeze_form(form());
|
|
|
|
fl_set_input(dialog_->style, out_name.c_str());
|
|
|
|
fl_unfreeze_form(form());
|
2001-08-20 13:41:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!compare(fl_get_input(dialog_->database),"")) {
|
2001-03-19 16:37:01 +00:00
|
|
|
return ButtonPolicy::SMI_NOOP;
|
2001-08-20 13:41:06 +00:00
|
|
|
}
|
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());
|
2001-08-20 13:41:06 +00:00
|
|
|
string bibtotoc = "bibtotoc";
|
|
|
|
string bibstyle (controller().params().getOptions().c_str());
|
|
|
|
if (prefixIs(bibstyle,bibtotoc)) { // bibtotoc exists?
|
|
|
|
fl_set_button(dialog_->radio_bibtotoc,1);
|
|
|
|
if (contains(bibstyle,',')) { // bibstyle exists?
|
|
|
|
bibstyle = split(bibstyle,bibtotoc,',');
|
|
|
|
} else {
|
|
|
|
bibstyle = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
fl_set_input(dialog_->style,bibstyle.c_str());
|
|
|
|
|
|
|
|
} else {
|
|
|
|
fl_set_button(dialog_->radio_bibtotoc,0);
|
|
|
|
fl_set_input(dialog_->style,bibstyle.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));
|
2001-08-20 13:41:06 +00:00
|
|
|
string const bibstyle = fl_get_input(dialog_->style); // may be empty!
|
|
|
|
|
|
|
|
if ((fl_get_button(dialog_->radio_bibtotoc) > 0) &&
|
|
|
|
(!bibstyle.empty())) {
|
|
|
|
// both bibtotoc and style
|
|
|
|
controller().params().setOptions("bibtotoc,"+bibstyle);
|
|
|
|
} else {
|
|
|
|
if (fl_get_button(dialog_->radio_bibtotoc) > 0) {
|
|
|
|
// bibtotoc and no style
|
|
|
|
controller().params().setOptions("bibtotoc");
|
|
|
|
} else {
|
|
|
|
// only style
|
|
|
|
controller().params().setOptions(bibstyle);
|
|
|
|
}
|
|
|
|
}
|
2001-02-12 14:09:09 +00:00
|
|
|
}
|
2001-08-20 13:41:06 +00:00
|
|
|
|