]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormCitation.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormCitation.C
index 670d237fa1cfe35e71408a5a2570d7e02cd3c245..87829f432463bf81d1e434581be05c73feafabaf 100644 (file)
@@ -1,38 +1,44 @@
 /**
- * \file xforms/FormCitation.C
- * See the file COPYING.
+ * \file FormCitation.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming 
+ * \author Angus Leeming
+ * \author Rob Lahaye
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
-#include <algorithm>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include "xformsBC.h"
-#include "ControlCitation.h"
 #include "FormCitation.h"
+#include "ControlCitation.h"
 #include "forms/form_citation.h"
+
 #include "Tooltips.h"
-#include "helper_funcs.h"
 #include "xforms_helpers.h"
-#include FORMS_H_LOCATION
+#include "xformsBC.h"
+
+#include "bufferparams.h"
 
-#include "gettext.h"
-#include "support/LAssert.h"
 #include "support/lstrings.h"
 
+#include "lyx_forms.h"
+
 using std::find;
 using std::max;
-using std::min;
-using std::pair;
-using std::sort;
+
 using std::vector;
+using std::string;
+
+
+namespace lyx {
+
+using support::getStringFromVector;
+using support::getVectorFromString;
+using support::trim;
+
+namespace frontend {
 
 namespace {
 
@@ -49,41 +55,18 @@ void fillChoice(FD_citation * dialog, vector<string> vec)
 {
        // Check whether the current contents of the browser will be
        // changed by loading the contents of the vec...
-       vector<string> const choice_style =
-               getVector(dialog->choice_style);
+       vector<string> const choice_style = getVector(dialog->choice_style);
 
        if (vec == choice_style)
                return;
 
        // They will be changed. Proceed
-       string str = " ";
-       if (!vec.empty())
-               str += getStringFromVector(vec, " | ") + " ";
+       bool const noVec = vec.empty();
+       string const str = noVec ? string() : getStringFromVector(vec, "|");
 
        fl_clear_choice(dialog->choice_style);
        fl_addto_choice(dialog->choice_style, str.c_str());
-
-       setEnabled(dialog->choice_style, !vec.empty());
-       if (vec.empty())
-               return;
-
-       // The width of the choice varies with the contents.
-       // Ensure that it is centred in the frame.
-
-       int width = 0;
-       for (vector<string>::const_iterator it = vec.begin();
-            it != vec.end(); ++it) {
-               width = max(width, string_width(*it));
-       }
-
-       int const dx =
-               max(5, int(0.5 * (dialog->frame_style->w - width)));
-
-       fl_set_object_geometry(dialog->choice_style,
-                              dialog->frame_style->x + dx,
-                              dialog->choice_style->y,
-                              width,
-                              dialog->choice_style->h);
+       setEnabled(dialog->choice_style, !noVec);
 }
 
 
@@ -92,39 +75,36 @@ void updateStyle(FD_citation * dialog, string command)
        // Find the style of the citekeys
        vector<biblio::CiteStyle> const & styles =
                ControlCitation::getCiteStyles();
-       biblio::CitationStyle cs = biblio::getCitationStyle(command);
+       biblio::CitationStyle const cs(command);
 
        vector<biblio::CiteStyle>::const_iterator cit =
                find(styles.begin(), styles.end(), cs.style);
 
        // Use this to initialise the GUI
-       if (cit == styles.end()) {
-               fl_set_choice(dialog->choice_style, 1);
-               fl_set_button(dialog->check_full_author_list, 0);
-               fl_set_button(dialog->check_force_uppercase, 0);
-       } else {
-               int const i = int(cit - styles.begin());
-               fl_set_choice(dialog->choice_style, i+1);
-               fl_set_button(dialog->check_full_author_list,  cs.full);
-               fl_set_button(dialog->check_force_uppercase, cs.forceUCase);
-       }
+       bool const noStyles = cit == styles.end();
+       int const index = 1 + ( noStyles ? 0 : int(cit - styles.begin()) );
+       fl_set_choice(dialog->choice_style, index);
+
+       // Disable if there are no styles, otherwise use cs member settings.
+       fl_set_button(dialog->check_full_author_list, !noStyles && cs.full);
+       fl_set_button(dialog->check_force_uppercase, !noStyles && cs.forceUCase);
 }
 
 } // namespace anon
 
 
-typedef FormCB<ControlCitation, FormDB<FD_citation> > base_class;
+typedef FormController<ControlCitation, FormView<FD_citation> > base_class;
 
 
-FormCitation::FormCitation()
-       : base_class(_("Citation"), false)
+FormCitation::FormCitation(Dialog & parent)
+       : base_class(parent, _("Citation"))
 {}
 
 
 void FormCitation::apply()
 {
        string command = "cite";
-       if (dialog_->choice_style->active != 0) {
+       if (isActive(dialog_->choice_style)) {
                vector<biblio::CiteStyle> const & styles =
                        ControlCitation::getCiteStyles();
 
@@ -135,13 +115,19 @@ void FormCitation::apply()
                bool const force =
                        fl_get_button(dialog_->check_force_uppercase);
 
-               command = biblio::getCiteCommand(styles[choice], full, force);
+               command =
+                       biblio::CitationStyle(styles[choice], full, force)
+                       .asLatexStr();
+
        }
 
        controller().params().setCmdName(command);
        controller().params().setContents(getStringFromVector(citekeys));
 
-       string const after  = fl_get_input(dialog_->input_after);
+       string const before  = getString(dialog_->input_before);
+       controller().params().setSecOptions(before);
+
+       string const after  = getString(dialog_->input_after);
        controller().params().setOptions(after);
 }
 
@@ -151,7 +137,7 @@ void FormCitation::hide()
        citekeys.clear();
        bibkeys.clear();
 
-       FormBase::hide();
+       FormDialogView::hide();
 }
 
 
@@ -159,32 +145,31 @@ void FormCitation::build()
 {
        dialog_.reset(build_citation(this));
 
-       fl_set_input_return(dialog_->input_after,  FL_RETURN_CHANGED);
-       fl_set_input_return(dialog_->input_before, FL_RETURN_CHANGED);
-       fl_set_input_return(dialog_->input_search, FL_RETURN_END);
-
-       fl_set_button(dialog_->check_search_case, 0);
-       fl_set_button(dialog_->check_search_type, 0);
-
+       // Manage the ok, apply, restore and cancel/close buttons
+       bcview().setOK(dialog_->button_ok);
+       bcview().setApply(dialog_->button_apply);
+       bcview().setCancel(dialog_->button_close);
+       bcview().setRestore(dialog_->button_restore);
+
+       // disable for read-only documents
+       bcview().addReadOnly(dialog_->button_add);
+       bcview().addReadOnly(dialog_->button_del);
+       bcview().addReadOnly(dialog_->button_up);
+       bcview().addReadOnly(dialog_->button_down);
+       bcview().addReadOnly(dialog_->choice_style);
+       bcview().addReadOnly(dialog_->input_before);
+       bcview().addReadOnly(dialog_->input_after);
+       bcview().addReadOnly(dialog_->check_full_author_list);
+       bcview().addReadOnly(dialog_->check_force_uppercase);
+
+       // trigger an input event for cut&paste with middle mouse button.
        setPrehandler(dialog_->input_search);
        setPrehandler(dialog_->input_before);
        setPrehandler(dialog_->input_after);
 
-       // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_close);
-       bc().setRestore(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);
-       bc().addReadOnly(dialog_->check_full_author_list);
-       bc().addReadOnly(dialog_->check_force_uppercase);
+       fl_set_input_return(dialog_->input_after,  FL_RETURN_CHANGED);
+       fl_set_input_return(dialog_->input_before, FL_RETURN_CHANGED);
+       fl_set_input_return(dialog_->input_search, FL_RETURN_END);
 
        //set up the tooltip mechanism
        string str = _("Add the selected entry to the current citation reference.");
@@ -201,12 +186,24 @@ void FormCitation::build()
 
        str = _("The entries which will be cited. Select them with the arrow buttons from the right browser window.");
        tooltips().init(dialog_->browser_cite, str);
+#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
+       // Work-around xforms' bug; enable tooltips for browser widgets.
+       setPrehandler(dialog_->browser_cite);
+#endif
 
        str = _("All entries in the database you have loaded (via \"Insert->Lists&TOC->BibTex Reference\"). Move the ones you want to cite with the arrow buttons into the left browser window.");
        tooltips().init(dialog_->browser_bib, str);
+#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
+       // Work-around xforms' bug; enable tooltips for browser widgets.
+       setPrehandler(dialog_->browser_bib);
+#endif
 
        str = _("Information about the selected entry");
        tooltips().init(dialog_->browser_info, str);
+#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
+       // Work-around xforms' bug; enable tooltips for browser widgets.
+       setPrehandler(dialog_->browser_info);
+#endif
 
        str = _("Here you may select how the citation label should look inside the text (Natbib).");
        tooltips().init(dialog_->choice_style, str);
@@ -236,7 +233,7 @@ void FormCitation::build()
 
 void FormCitation::findBiblio(biblio::Direction const dir)
 {
-       string const str = fl_get_input(dialog_->input_search);
+       string const str = getString(dialog_->input_search);
        biblio::InfoMap const & theMap = controller().bibkeysInfo();
        bool const caseSensitive =
                fl_get_button(dialog_->check_search_case);
@@ -308,7 +305,7 @@ ButtonPolicy::SMInput FormCitation::input(FL_OBJECT * ob, long)
                        fl_set_browser_topline(dialog_->browser_cite, n + 1);
                }
 
-               if (!controller().bufferIsReadonly()) {
+               if (!kernel().isBufferReadonly()) {
                        if (cit != citekeys.end()) {
                                setBibButtons(OFF);
                                setCiteButtons(ON);
@@ -323,7 +320,7 @@ ButtonPolicy::SMInput FormCitation::input(FL_OBJECT * ob, long)
                if (sel < 1 || sel > citekeys.size())
                        return ButtonPolicy::SMI_NOOP;
 
-               if (!controller().bufferIsReadonly()) {
+               if (!kernel().isBufferReadonly()) {
                        setBibButtons(OFF);
                        setCiteButtons(ON);
                }
@@ -341,8 +338,7 @@ ButtonPolicy::SMInput FormCitation::input(FL_OBJECT * ob, long)
                        // with the selected browser_cite key
                        fl_clear_browser(dialog_->browser_info);
                        string const tmp =
-                               formatted(biblio::getInfo(theMap,
-                                                         citekeys[sel - 1]),
+                               formatted(biblio::getInfo(theMap, citekeys[sel - 1]),
                                          dialog_->browser_info->w - 10);
                        fl_add_browser_line(dialog_->browser_info, tmp.c_str());
                }
@@ -438,6 +434,10 @@ ButtonPolicy::SMInput FormCitation::input(FL_OBJECT * ob, long)
                fl_set_choice(dialog_->choice_style, choice);
        }
 
+       // Invalid if no citation has been chosen
+       if (fl_get_browser_maxline(dialog_->browser_cite) < 1)
+               activate = ButtonPolicy::SMI_INVALID;
+
        return activate;
 }
 
@@ -454,17 +454,24 @@ void FormCitation::update()
 
        // Use the first citekey to fill choice_style
        string key;
-       if (!citekeys.empty()) key = citekeys[0];
+       if (!citekeys.empty())
+               key = citekeys[0];
 
        fillChoice(dialog_.get(), controller().getCiteStrings(key));
 
        // Use the citation command to update the GUI
        updateStyle(dialog_.get(), controller().params().getCmdName());
 
-       bool const natbib = controller().usingNatbib();
-       setEnabled(dialog_->check_full_author_list, natbib);
-       setEnabled(dialog_->check_force_uppercase, natbib);
-       setEnabled(dialog_->choice_style, natbib);
+       biblio::CiteEngine const engine = controller().getEngine();
+       bool const natbib_engine =
+               engine == biblio::ENGINE_NATBIB_AUTHORYEAR ||
+               engine == biblio::ENGINE_NATBIB_NUMERICAL;
+       bool const basic_engine = engine == biblio::ENGINE_BASIC;
+
+       setEnabled(dialog_->check_full_author_list, natbib_engine);
+       setEnabled(dialog_->check_force_uppercase, natbib_engine);
+       setEnabled(dialog_->choice_style, !basic_engine);
+       setEnabled(dialog_->input_before, !basic_engine);
 
        // No keys have been selected yet, so...
        fl_clear_browser(dialog_->browser_info);
@@ -472,12 +479,11 @@ void FormCitation::update()
        setCiteButtons(OFF);
 
        // Natbib can have comments before and after the citation.
-       // This is not yet supported. After only.
        fl_set_input(dialog_->input_after,
                     controller().params().getOptions().c_str());
 
-       fl_set_input(dialog_->input_before, _("Not yet supported"));
-       setEnabled(dialog_->input_before, false);
+       fl_set_input(dialog_->input_before,
+                    controller().params().getSecOptions().c_str());
 }
 
 
@@ -488,14 +494,17 @@ void FormCitation::updateBrowser(FL_OBJECT * browser,
        // changed by loading the contents of the vec...
        vector<string> browser_keys = getVector(browser);
 
-       if (browser_keys == keys)
+       if (browser_keys == keys) {
+               fl_deselect_browser(browser);
+               fl_set_browser_topline(browser, 1);
                return;
+       }
 
        // They will be changed. Proceed.
        fl_clear_browser(browser);
 
        for (vector<string>::const_iterator it = keys.begin();
-            it < keys.end(); ++it) {
+            it != keys.end(); ++it) {
                string key = trim(*it);
                if (!key.empty())
                        fl_add_browser_line(browser, key.c_str());
@@ -521,3 +530,6 @@ void FormCitation::setCiteButtons(State status) const
        setEnabled(dialog_->button_up,   activate_up);
        setEnabled(dialog_->button_down, activate_down);
 }
+
+} // namespace frontend
+} // namespace lyx