2000-07-07 07:46:37 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
2001-03-20 10:14:03 +00:00
|
|
|
*
|
2001-03-30 09:51:46 +00:00
|
|
|
* \file FormCitation.C
|
|
|
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
2000-07-07 07:46:37 +00:00
|
|
|
*/
|
|
|
|
|
2001-03-28 13:11:08 +00:00
|
|
|
#include <config.h>
|
2000-08-01 18:11:14 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2000-07-27 10:26:38 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "xformsBC.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "ControlCitation.h"
|
2000-07-27 08:55:59 +00:00
|
|
|
#include "FormCitation.h"
|
|
|
|
#include "form_citation.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "support/lstrings.h"
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "biblio.h"
|
2001-03-21 13:27:03 +00:00
|
|
|
#include "helper_funcs.h"
|
2001-03-28 13:11:08 +00:00
|
|
|
#include "xforms_helpers.h"
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2000-11-29 15:06:42 +00:00
|
|
|
using std::find;
|
2000-07-07 07:46:37 +00:00
|
|
|
using std::max;
|
|
|
|
using std::min;
|
2000-11-29 15:06:42 +00:00
|
|
|
using std::pair;
|
|
|
|
using std::sort;
|
|
|
|
using std::vector;
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
typedef FormCB<ControlCitation, FormDB<FD_form_citation> > base_class;
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
FormCitation::FormCitation(ControlCitation & c)
|
2001-03-20 10:14:03 +00:00
|
|
|
: base_class(c, _("Citation"))
|
2001-03-15 13:37:04 +00:00
|
|
|
{}
|
2000-07-07 07:46:37 +00:00
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
void FormCitation::apply()
|
2000-10-03 05:53:25 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
controller().params().setCmdName("cite");
|
|
|
|
controller().params().setContents(getStringFromVector(citekeys));
|
2000-10-03 05:53:25 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
string const after = fl_get_input(dialog_->input_after);
|
|
|
|
controller().params().setOptions(after);
|
2000-10-20 09:50:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
void FormCitation::hide()
|
2000-08-03 12:56:25 +00:00
|
|
|
{
|
|
|
|
citekeys.clear();
|
|
|
|
bibkeys.clear();
|
2000-10-13 05:57:05 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
FormBase::hide();
|
2000-08-03 12:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-07 07:46:37 +00:00
|
|
|
void FormCitation::build()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
dialog_.reset(build_citation());
|
2000-10-20 09:50:09 +00:00
|
|
|
|
2001-02-19 14:01:23 +00:00
|
|
|
fl_set_input_return(dialog_->input_after, FL_RETURN_CHANGED);
|
|
|
|
fl_set_input_return(dialog_->input_before, FL_RETURN_CHANGED);
|
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
fl_set_button(dialog_->button_search_case, 0);
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_button(dialog_->button_search_type, 0);
|
|
|
|
fl_set_object_label(dialog_->button_search_type, _("Simple"));
|
|
|
|
|
2000-11-28 06:46:06 +00:00
|
|
|
// Manage the ok, apply, restore and cancel/close buttons
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().setOK(dialog_->button_ok);
|
|
|
|
bc().setApply(dialog_->button_apply);
|
|
|
|
bc().setCancel(dialog_->button_cancel);
|
|
|
|
bc().setUndoAll(dialog_->button_restore);
|
|
|
|
|
|
|
|
bc().addReadOnly(dialog_->button_add);
|
|
|
|
bc().addReadOnly(dialog_->button_del);
|
|
|
|
bc().addReadOnly(dialog_->button_up);
|
|
|
|
bc().addReadOnly(dialog_->button_down);
|
|
|
|
bc().addReadOnly(dialog_->choice_style);
|
|
|
|
bc().addReadOnly(dialog_->input_before);
|
|
|
|
bc().addReadOnly(dialog_->input_after);
|
2001-03-19 15:38:22 +00:00
|
|
|
|
|
|
|
bc().refresh();
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
ButtonPolicy::SMInput FormCitation::input(FL_OBJECT * ob, long)
|
2000-07-07 07:46:37 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
ButtonPolicy::SMInput activate = ButtonPolicy::SMI_NOOP;
|
2001-02-14 18:56:38 +00:00
|
|
|
|
2001-03-28 13:11:08 +00:00
|
|
|
biblio::InfoMap const & theMap = controller().bibkeysInfo();
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
if (ob == dialog_->browser_bib) {
|
|
|
|
fl_deselect_browser(dialog_->browser_cite);
|
|
|
|
|
|
|
|
unsigned int const sel = fl_get_browser(dialog_->browser_bib);
|
|
|
|
if (sel < 1 || sel > bibkeys.size())
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
// Put into browser_info the additional info associated with
|
|
|
|
// the selected browser_bib key
|
|
|
|
fl_clear_browser(dialog_->browser_info);
|
2001-03-28 13:11:08 +00:00
|
|
|
|
|
|
|
string const tmp = formatted(biblio::getInfo(theMap,
|
|
|
|
bibkeys[sel-1]),
|
2001-03-15 13:37:04 +00:00
|
|
|
dialog_->browser_info->w-10 );
|
|
|
|
fl_add_browser_line(dialog_->browser_info, tmp.c_str());
|
|
|
|
|
|
|
|
// Highlight the selected browser_bib key in browser_cite if
|
|
|
|
// present
|
|
|
|
vector<string>::const_iterator cit =
|
|
|
|
find(citekeys.begin(), citekeys.end(), bibkeys[sel-1]);
|
|
|
|
|
|
|
|
if (cit != citekeys.end()) {
|
|
|
|
int const n = int(cit - citekeys.begin());
|
|
|
|
fl_select_browser_line(dialog_->browser_cite, n+1);
|
|
|
|
fl_set_browser_topline(dialog_->browser_cite, n+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!controller().isReadonly()) {
|
|
|
|
if (cit != citekeys.end()) {
|
|
|
|
setBibButtons(OFF);
|
|
|
|
setCiteButtons(ON);
|
|
|
|
} else {
|
|
|
|
setBibButtons(ON);
|
|
|
|
setCiteButtons(OFF);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (ob == dialog_->browser_cite) {
|
|
|
|
unsigned int const sel = fl_get_browser(dialog_->browser_cite);
|
|
|
|
if (sel < 1 || sel > citekeys.size())
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
if (!controller().isReadonly()) {
|
|
|
|
setBibButtons(OFF);
|
|
|
|
setCiteButtons(ON);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Highlight the selected browser_cite key in browser_bib
|
|
|
|
vector<string>::const_iterator cit =
|
|
|
|
find(bibkeys.begin(), bibkeys.end(), citekeys[sel-1]);
|
|
|
|
|
|
|
|
if (cit != bibkeys.end()) {
|
|
|
|
int const n = int(cit - bibkeys.begin());
|
|
|
|
fl_select_browser_line(dialog_->browser_bib, n+1);
|
|
|
|
fl_set_browser_topline(dialog_->browser_bib, n+1);
|
|
|
|
|
|
|
|
// Put into browser_info the additional info associated
|
|
|
|
// with the selected browser_cite key
|
|
|
|
fl_clear_browser(dialog_->browser_info);
|
|
|
|
string const tmp =
|
2001-03-28 13:11:08 +00:00
|
|
|
formatted(biblio::getInfo(theMap,
|
|
|
|
bibkeys[sel-1]),
|
|
|
|
dialog_->browser_info->w-10);
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_add_browser_line(dialog_->browser_info, tmp.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (ob == dialog_->button_add) {
|
|
|
|
unsigned int const sel = fl_get_browser(dialog_->browser_bib);
|
|
|
|
if (sel < 1 || sel > bibkeys.size())
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
// Add the selected browser_bib key to browser_cite
|
|
|
|
fl_addto_browser(dialog_->browser_cite,
|
|
|
|
bibkeys[sel-1].c_str());
|
|
|
|
citekeys.push_back(bibkeys[sel-1]);
|
|
|
|
|
|
|
|
int const n = int(citekeys.size());
|
|
|
|
fl_select_browser_line(dialog_->browser_cite, n);
|
|
|
|
|
|
|
|
setBibButtons(OFF);
|
|
|
|
setCiteButtons(ON);
|
|
|
|
activate = ButtonPolicy::SMI_VALID;
|
|
|
|
|
|
|
|
} else if (ob == dialog_->button_del) {
|
|
|
|
unsigned int const sel = fl_get_browser(dialog_->browser_cite);
|
|
|
|
if (sel < 1 || sel > citekeys.size())
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
// Remove the selected key from browser_cite
|
|
|
|
fl_delete_browser_line(dialog_->browser_cite, sel) ;
|
|
|
|
citekeys.erase(citekeys.begin() + sel-1);
|
|
|
|
|
|
|
|
setBibButtons(ON);
|
|
|
|
setCiteButtons(OFF);
|
|
|
|
activate = ButtonPolicy::SMI_VALID;
|
|
|
|
|
|
|
|
} else if (ob == dialog_->button_up) {
|
|
|
|
unsigned int const sel = fl_get_browser(dialog_->browser_cite);
|
|
|
|
if (sel < 2 || sel > citekeys.size())
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
// Move the selected key up one line
|
|
|
|
vector<string>::iterator it = citekeys.begin() + sel-1;
|
|
|
|
string const tmp = *it;
|
|
|
|
|
|
|
|
fl_delete_browser_line(dialog_->browser_cite, sel);
|
|
|
|
citekeys.erase(it);
|
|
|
|
|
|
|
|
fl_insert_browser_line(dialog_->browser_cite, sel-1, tmp.c_str());
|
|
|
|
fl_select_browser_line(dialog_->browser_cite, sel-1);
|
|
|
|
citekeys.insert(it-1, tmp);
|
|
|
|
setCiteButtons(ON);
|
|
|
|
activate = ButtonPolicy::SMI_VALID;
|
|
|
|
|
|
|
|
} else if (ob == dialog_->button_down) {
|
|
|
|
unsigned int const sel = fl_get_browser(dialog_->browser_cite);
|
|
|
|
if (sel < 1 || sel > citekeys.size()-1)
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
// Move the selected key down one line
|
|
|
|
vector<string>::iterator it = citekeys.begin() + sel-1;
|
|
|
|
string const tmp = *it;
|
|
|
|
|
|
|
|
fl_delete_browser_line(dialog_->browser_cite, sel);
|
|
|
|
citekeys.erase(it);
|
|
|
|
|
|
|
|
fl_insert_browser_line(dialog_->browser_cite, sel+1, tmp.c_str());
|
|
|
|
fl_select_browser_line(dialog_->browser_cite, sel+1);
|
|
|
|
citekeys.insert(it+1, tmp);
|
|
|
|
setCiteButtons(ON);
|
|
|
|
activate = ButtonPolicy::SMI_VALID;
|
|
|
|
|
|
|
|
} else if (ob == dialog_->button_search_type) {
|
2001-03-30 09:51:46 +00:00
|
|
|
fl_freeze_form(form());
|
|
|
|
// Fudge to overcome xforms drawing bug
|
|
|
|
fl_hide_object(dialog_->button_search_type);
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
if (fl_get_button(dialog_->button_search_type))
|
|
|
|
fl_set_object_label(dialog_->button_search_type,
|
|
|
|
_("Regex"));
|
|
|
|
else
|
|
|
|
fl_set_object_label(dialog_->button_search_type,
|
|
|
|
_("Simple"));
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
fl_show_object(dialog_->button_search_type);
|
|
|
|
fl_unfreeze_form(form());
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
} else if (ob == dialog_->button_previous ||
|
|
|
|
ob == dialog_->button_next) {
|
|
|
|
|
|
|
|
string const str = fl_get_input(dialog_->input_search);
|
|
|
|
|
2001-03-28 13:11:08 +00:00
|
|
|
biblio::Direction const dir =
|
2001-03-15 13:37:04 +00:00
|
|
|
(ob == dialog_->button_previous) ?
|
2001-03-28 13:11:08 +00:00
|
|
|
biblio::BACKWARD : biblio::FORWARD;
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-28 13:11:08 +00:00
|
|
|
biblio::Search const type =
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_get_button(dialog_->button_search_type) ?
|
2001-03-28 13:11:08 +00:00
|
|
|
biblio::REGEX : biblio::SIMPLE;
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
vector<string>::const_iterator start = bibkeys.begin();
|
2001-03-20 10:14:03 +00:00
|
|
|
int const sel = fl_get_browser(dialog_->browser_bib);
|
2001-03-26 15:25:37 +00:00
|
|
|
if (sel >= 1 && sel <= int(bibkeys.size()))
|
2001-03-15 13:37:04 +00:00
|
|
|
start += sel-1;
|
|
|
|
|
|
|
|
// Find the NEXT instance...
|
2001-03-28 13:11:08 +00:00
|
|
|
if (dir == biblio::FORWARD)
|
2001-03-15 13:37:04 +00:00
|
|
|
start += 1;
|
|
|
|
else
|
|
|
|
start -= 1;
|
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
bool const caseSensitive =
|
|
|
|
fl_get_button(dialog_->button_search_case);
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
vector<string>::const_iterator const cit =
|
2001-03-28 13:11:08 +00:00
|
|
|
biblio::searchKeys(theMap, bibkeys, str,
|
2001-03-30 09:51:46 +00:00
|
|
|
start, type, dir, caseSensitive);
|
2001-03-15 13:37:04 +00:00
|
|
|
|
|
|
|
if (cit == bibkeys.end())
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
int const found = int(cit - bibkeys.begin()) + 1;
|
|
|
|
if (found == sel)
|
|
|
|
return ButtonPolicy::SMI_NOOP;
|
|
|
|
|
|
|
|
// Update the display
|
|
|
|
int const top = max(found-5, 1);
|
|
|
|
fl_set_browser_topline(dialog_->browser_bib, top);
|
|
|
|
fl_select_browser_line(dialog_->browser_bib, found);
|
|
|
|
input(dialog_->browser_bib, 0);
|
|
|
|
|
|
|
|
} else if (ob == dialog_->choice_style ||
|
|
|
|
ob == dialog_->input_before ||
|
|
|
|
ob == dialog_->input_after) {
|
|
|
|
activate = ButtonPolicy::SMI_VALID;
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|
2001-03-15 13:37:04 +00:00
|
|
|
|
|
|
|
return activate;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormCitation::update()
|
|
|
|
{
|
|
|
|
// Make the list of all available bibliography keys
|
2001-03-28 13:11:08 +00:00
|
|
|
bibkeys = biblio::getKeys(controller().bibkeysInfo());
|
2001-02-16 18:50:28 +00:00
|
|
|
updateBrowser(dialog_->browser_bib, bibkeys);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
// Ditto for the keys cited in this inset
|
2001-03-15 13:37:04 +00:00
|
|
|
citekeys = getVectorFromString(controller().params().getContents());
|
2001-02-16 18:50:28 +00:00
|
|
|
updateBrowser(dialog_->browser_cite, citekeys);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
|
|
|
// No keys have been selected yet, so...
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_clear_browser(dialog_->browser_info);
|
|
|
|
setBibButtons(OFF);
|
|
|
|
setCiteButtons(OFF);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
int noKeys = int(max(bibkeys.size(), citekeys.size()));
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2000-08-14 05:24:35 +00:00
|
|
|
// Place bounds, so that 4 <= noKeys <= 10
|
2001-02-16 18:50:28 +00:00
|
|
|
noKeys = max(4, min(10, noKeys));
|
2000-07-07 07:46:37 +00:00
|
|
|
|
|
|
|
// Re-size the form to accommodate the new browser size
|
2001-03-15 13:37:04 +00:00
|
|
|
int const size = 20 * noKeys;
|
|
|
|
bool const bibPresent = (bibkeys.size() > 0);
|
2001-02-16 18:50:28 +00:00
|
|
|
setSize(size, bibPresent);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_input(dialog_->input_after,
|
|
|
|
controller().params().getOptions().c_str());
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
void FormCitation::updateBrowser(FL_OBJECT * browser,
|
2001-03-15 13:37:04 +00:00
|
|
|
vector<string> const & keys) const
|
2000-07-07 07:46:37 +00:00
|
|
|
{
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_clear_browser(browser);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-21 13:27:03 +00:00
|
|
|
for (vector<string>::const_iterator it = keys.begin();
|
|
|
|
it < keys.end(); ++it) {
|
|
|
|
string key = frontStrip(strip(*it));
|
|
|
|
fl_add_browser_line(browser, key.c_str());
|
|
|
|
}
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
void FormCitation::setBibButtons(State status) const
|
2000-07-07 07:46:37 +00:00
|
|
|
{
|
2001-03-05 19:02:40 +00:00
|
|
|
setEnabled(dialog_->button_add, (status == ON));
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
void FormCitation::setCiteButtons(State status) const
|
2000-07-07 07:46:37 +00:00
|
|
|
{
|
2001-03-05 19:02:40 +00:00
|
|
|
int const sel = fl_get_browser(dialog_->browser_cite);
|
|
|
|
int const maxline = fl_get_browser_maxline(dialog_->browser_cite);
|
|
|
|
bool const activate = (status == ON);
|
|
|
|
bool const activate_up = (activate && sel != 1);
|
|
|
|
bool const activate_down = (activate && sel != maxline);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-05 19:02:40 +00:00
|
|
|
setEnabled(dialog_->button_del, activate);
|
|
|
|
setEnabled(dialog_->button_up, activate_up);
|
|
|
|
setEnabled(dialog_->button_down, activate_down);
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
void FormCitation::setSize(int hbrsr, bool bibPresent) const
|
2000-07-07 07:46:37 +00:00
|
|
|
{
|
2000-09-04 13:22:22 +00:00
|
|
|
bool const natbib = false; // will eventually be input
|
2001-02-16 18:50:28 +00:00
|
|
|
hbrsr = max(hbrsr, 175); // limit max size of cite/bib brsrs
|
2000-09-04 13:22:22 +00:00
|
|
|
|
|
|
|
// dh1, dh2, dh3 are the vertical separation between elements.
|
|
|
|
// These can be specified because the browser height is fixed
|
|
|
|
// so they are not changed by dynamic resizing
|
|
|
|
static int const dh1 = 30; // top of form to top of cite/bib brsrs;
|
|
|
|
// bottom of cite/bib brsrs to top of info;
|
2001-03-15 13:37:04 +00:00
|
|
|
// bottom of info to top search frame;
|
|
|
|
// bottom of search frame to top next elemnt;
|
2001-02-16 18:50:28 +00:00
|
|
|
// bottom of style to top input_before;
|
2000-09-04 13:22:22 +00:00
|
|
|
// bottom of text to top ok/cancel buttons.
|
2001-02-16 18:50:28 +00:00
|
|
|
static int const dh2 = 10; // bottom of input_before to top input_after;
|
2000-09-04 13:22:22 +00:00
|
|
|
// bottom of ok/cancel buttons to bottom form
|
|
|
|
static int const dh3 = 5; // spacing between add/delete/... buttons.
|
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
int const wbrsr = dialog_->browser_cite->w;
|
|
|
|
static int const hinfo = dialog_->browser_info->h;
|
2001-03-15 13:37:04 +00:00
|
|
|
static int const hframe = dialog_->frame_search->h;
|
2001-02-16 18:50:28 +00:00
|
|
|
static int const hstyle = dialog_->choice_style->h;
|
|
|
|
static int const htext = dialog_->input_after->h;
|
2000-10-03 05:53:25 +00:00
|
|
|
static int const hok = dialog_->button_ok->h;
|
2000-09-04 13:22:22 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
int hform = dh1 + hbrsr + dh1 + hframe + dh1;
|
2001-02-16 18:50:28 +00:00
|
|
|
if (bibPresent) hform += hinfo + dh1;
|
|
|
|
if (natbib) hform += hstyle + dh1 + htext + dh2;
|
2000-09-04 13:22:22 +00:00
|
|
|
hform += htext + dh1 + hok + dh2;
|
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
if (hform != minh_) {
|
2000-10-20 09:50:09 +00:00
|
|
|
minh_ = hform;
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_set_form_size(dialog_->form, minw_, minh_);
|
2000-10-20 09:50:09 +00:00
|
|
|
} else
|
|
|
|
return;
|
2000-09-04 13:22:22 +00:00
|
|
|
|
|
|
|
int x = 0;
|
2000-08-01 17:33:32 +00:00
|
|
|
int y = 0;
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_set_object_geometry(dialog_->box, x, y, minw_, minh_);
|
2000-07-19 08:37:26 +00:00
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
x = dialog_->browser_cite->x;
|
2000-09-04 13:22:22 +00:00
|
|
|
y += dh1;
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_set_object_geometry(dialog_->browser_cite, x, y, wbrsr, hbrsr);
|
|
|
|
x = dialog_->browser_bib->x;
|
|
|
|
fl_set_object_geometry(dialog_->browser_bib, x, y, wbrsr, hbrsr);
|
|
|
|
|
|
|
|
x = dialog_->button_add->x;
|
|
|
|
fl_set_object_position(dialog_->button_add, x, y);
|
|
|
|
y += dh3 + dialog_->button_add->h;
|
|
|
|
fl_set_object_position(dialog_->button_del, x, y);
|
|
|
|
y += dh3 + dialog_->button_del->h;
|
|
|
|
fl_set_object_position(dialog_->button_up, x, y);
|
|
|
|
y += dh3 + dialog_->button_up->h;
|
|
|
|
fl_set_object_position(dialog_->button_down, x, y);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2000-09-04 13:22:22 +00:00
|
|
|
y = dh1 + hbrsr + dh1; // in position for next element
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
if (bibPresent) {
|
2001-02-16 18:50:28 +00:00
|
|
|
x = dialog_->browser_info->x;
|
|
|
|
fl_set_object_position(dialog_->browser_info, x, y);
|
|
|
|
fl_show_object(dialog_->browser_info);
|
2000-09-04 13:22:22 +00:00
|
|
|
y += hinfo + dh1;
|
|
|
|
} else
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_hide_object(dialog_->browser_info);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
x = dialog_->frame_search->x;
|
|
|
|
// ??? The frame height seems to be reduced. Use geometry to enforce it.
|
|
|
|
fl_set_object_geometry(dialog_->frame_search, x, y,
|
|
|
|
dialog_->frame_search->w, hframe);
|
|
|
|
//fl_set_object_position(dialog_->frame_search, x, y);
|
|
|
|
|
|
|
|
x = dialog_->input_search->x;
|
|
|
|
y += 15;
|
|
|
|
fl_set_object_position(dialog_->input_search, x, y);
|
|
|
|
|
|
|
|
x = dialog_->button_previous->x;
|
|
|
|
y += dialog_->input_search->h + 5;
|
|
|
|
fl_set_object_position(dialog_->button_previous, x, y);
|
|
|
|
|
|
|
|
x = dialog_->button_next->x;
|
|
|
|
y += dialog_->button_previous->h + 5;
|
|
|
|
fl_set_object_position(dialog_->button_next, x, y);
|
|
|
|
|
|
|
|
x = dialog_->button_search_type->x;
|
|
|
|
y = dialog_->button_previous->y;
|
|
|
|
fl_set_object_position(dialog_->button_search_type, x, y);
|
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
x = dialog_->button_search_case->x;
|
|
|
|
y = dialog_->button_next->y;
|
|
|
|
fl_set_object_position(dialog_->button_search_case, x, y);
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
y = dialog_->frame_search->y + hframe + dh1;
|
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
if (natbib) {
|
2001-02-16 18:50:28 +00:00
|
|
|
x = dialog_->choice_style->x;
|
|
|
|
fl_set_object_position(dialog_->choice_style, x, y);
|
|
|
|
fl_show_object(dialog_->choice_style);
|
|
|
|
x = dialog_->input_before->x;
|
2000-09-04 13:22:22 +00:00
|
|
|
y += hstyle + dh1;
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_set_object_position(dialog_->input_before, x, y);
|
|
|
|
fl_show_object(dialog_->input_before);
|
2000-09-04 13:22:22 +00:00
|
|
|
y += htext + dh2;
|
|
|
|
} else {
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_hide_object(dialog_->choice_style);
|
|
|
|
fl_hide_object(dialog_->input_before);
|
2000-09-04 13:22:22 +00:00
|
|
|
}
|
|
|
|
|
2001-02-16 18:50:28 +00:00
|
|
|
x = dialog_->input_after->x;
|
|
|
|
fl_set_object_position(dialog_->input_after, x, y);
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2000-09-04 13:22:22 +00:00
|
|
|
y += htext + dh1;
|
2000-11-03 09:47:02 +00:00
|
|
|
x = dialog_->button_restore->x;
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_object_position(dialog_->button_restore, x, y);
|
2000-11-03 09:47:02 +00:00
|
|
|
x = dialog_->button_ok->x;
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_object_position(dialog_->button_ok, x, y);
|
2000-11-03 09:47:02 +00:00
|
|
|
x = dialog_->button_apply->x;
|
2001-03-15 13:37:04 +00:00
|
|
|
fl_set_object_position(dialog_->button_apply, x, y);
|
2000-10-03 05:53:25 +00:00
|
|
|
x = dialog_->button_cancel->x;
|
2001-02-16 18:50:28 +00:00
|
|
|
fl_set_object_position(dialog_->button_cancel, x, y);
|
2000-07-07 07:46:37 +00:00
|
|
|
}
|