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-08-22 15:34:39 +00:00
|
|
|
#include "helper_funcs.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) {
|
2001-08-22 15:34:39 +00:00
|
|
|
// When browsing, take the first file only
|
|
|
|
string const in_name = fl_get_input(dialog_->database);
|
|
|
|
string first;
|
|
|
|
split(in_name, first, ',');
|
|
|
|
first = strip(first);
|
|
|
|
|
2001-08-20 13:41:06 +00:00
|
|
|
string out_name =
|
2001-08-22 15:34:39 +00:00
|
|
|
controller().Browse(first,
|
2001-08-20 13:41:06 +00:00
|
|
|
"Select Database",
|
|
|
|
"*.bib| BibTeX Databases (*.bib)");
|
2001-08-20 15:44:24 +00:00
|
|
|
if (!out_name.empty()) {
|
2001-08-22 15:34:39 +00:00
|
|
|
// add the database to any existing ones
|
|
|
|
if (!in_name.empty())
|
|
|
|
out_name = in_name + ", " + out_name;
|
2001-08-21 14:52:50 +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-21 14:52:50 +00:00
|
|
|
}
|
2001-08-20 13:41:06 +00:00
|
|
|
|
|
|
|
if (ob == dialog_->style_browse) {
|
2001-08-21 14:52:50 +00:00
|
|
|
string const in_name = fl_get_input(dialog_->style);
|
2001-08-20 13:41:06 +00:00
|
|
|
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()) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2001-08-22 15:34:39 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Remove all duplicate entries in c.
|
|
|
|
// Taken stright out of Stroustrup
|
|
|
|
template<class C> void eliminate_duplicates(C & c)
|
|
|
|
{
|
|
|
|
std::sort(c.begin(), c.end()); // sort
|
|
|
|
typename C::iterator p = std::unique(c.begin(), c.end()); // compact
|
|
|
|
c.erase(p, c.end()); // shrink
|
|
|
|
}
|
|
|
|
|
|
|
|
string const unique_and_no_extensions(string const & str_in)
|
|
|
|
{
|
|
|
|
std::vector<string> dbase = getVectorFromString(str_in);
|
|
|
|
for (std::vector<string>::iterator it = dbase.begin();
|
|
|
|
it != dbase.end(); ++it) {
|
|
|
|
*it = ChangeExtension(*it, "");
|
|
|
|
}
|
|
|
|
eliminate_duplicates(dbase);
|
|
|
|
return getStringFromVector(dbase);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
2001-02-12 14:09:09 +00:00
|
|
|
|
|
|
|
void FormBibtex::apply()
|
|
|
|
{
|
2001-08-22 15:34:39 +00:00
|
|
|
string db = fl_get_input(dialog_->database);
|
|
|
|
controller().params().setContents(unique_and_no_extensions(db));
|
|
|
|
|
|
|
|
// empty is valid!
|
|
|
|
string bibstyle = fl_get_input(dialog_->style);
|
|
|
|
if (!bibstyle.empty()) {
|
|
|
|
// save the BibTeX style without any ".bst" extension
|
|
|
|
bibstyle = ChangeExtension(OnlyFilename(bibstyle), "");
|
|
|
|
}
|
2001-08-20 13:41:06 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|