]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlCitation.h
John's character.C patch (bug fix).
[lyx.git] / src / frontends / controllers / ControlCitation.h
index fc6b2c56a9ef3c31cf51a0d97380b464ee173a3d..4bbb8979b80ae6bd04a6ef3608e7baf7fe2541fa 100644 (file)
 #endif
 
 #include "ControlCommand.h"
+#include "biblio.h" // biblio::InfoMap
 
-/** A controller for Citation dialogs. All citation-specific functionality
-    should go in here.
+/** A controller for Citation dialogs.
  */
 class ControlCitation : public ControlCommand
 {
 public:
-       ///
-       typedef std::map<string, string> InfoMap;
-       ///
-       typedef std::map<string, string>::value_type InfoMapValue;
-       ///
-       enum Search {
-               ///
-               SIMPLE,
-               ///
-               REGEX
-       };
-       ///
-       enum Direction {
-               ///
-               FORWARD,
-               ///
-               BACKWARD
-       };
        ///
        ControlCitation(LyXView &, Dialogs &);
-       /// A vector of bibliography keys
-       std::vector<string> const getBibkeys();
-       /// Returns a reference to the map of stored keys
-       InfoMap const & bibkeysInfo() const { return bibkeysInfo_; }
-       /** Returns the BibTeX data associated with a given key.
-           Empty if no info exists. */
-       string const getBibkeyInfo(string const &);
-private:
-       /// Clean up, then hide dialog.
-       virtual void hide();
-       /// The info associated with each key
-       InfoMap bibkeysInfo_;
-};
-
 
-/** This class instantiates and makes available the GUI-specific
-    ButtonController and View.
- */
-template <class GUIview, class GUIbc>
-class GUICitation : public ControlCitation {
-public:
-       ///
-       GUICitation(LyXView &, Dialogs &);
-       ///
-       virtual ButtonControllerBase & bc() { return bc_; }
-       ///
-       virtual ViewBase & view() { return view_; }
+       /// Returns a reference to the map of stored keys
+       biblio::InfoMap const & bibkeysInfo() const;
 
-private:
        ///
-       ButtonController<NoRepeatedApplyReadOnlyPolicy, GUIbc> bc_;
-       ///
-       GUIview view_;
-};
-
-template <class GUIview, class GUIbc>
-GUICitation<GUIview, GUIbc>::GUICitation(LyXView & lv, Dialogs & d)
-       : ControlCitation(lv, d),
-         view_(*this)
-{}
-
-/** Helper functions, of possible use to all frontends
- */
+       bool usingNatbib() const;
+       /// Possible citations based on this key
+       std::vector<string> const getCiteStrings(string const & key) const;
 
-/** Search a BibTeX info field for the given key and return the
-    associated field. */
-string const parseBibTeX(string data, string const & findkey);
+       /// available CiteStyle-s (depends on availability of Natbib
+       static std::vector<biblio::CiteStyle> const & getCiteStyles()
+               { return citeStyles_; }
 
-/** Returns an iterator to the first key that meets the search criterion,
-    or end() if unsuccessful.
+private:
+       /// create the InfoMap of keys and data
+       virtual void setDaughterParams();
+       /// 
+       virtual void clearDaughterParams();
 
-    User supplies :
-    the controller with the map of bibkeys info,
-    the vector of keys to be searched,
-    the search criterion,
-    an iterator defining the starting point of the search,
-    an enum defining a Simple or Regex search,
-    an enum defining the search direction.
-*/
+       /// The info associated with each key
+       biblio::InfoMap bibkeysInfo_;
 
-std::vector<string>::const_iterator
-searchKeys(ControlCitation const & controller,
-          std::vector<string> const & keys_to_search,
-          string const & search_expression,
-          std::vector<string>::const_iterator start,
-          ControlCitation::Search,
-          ControlCitation::Direction,
-          bool caseSensitive=false);
+       ///
+       static std::vector<biblio::CiteStyle> citeStyles_;
+};
 
-/// Do the dirty work for the search. Should use through the function above
-std::vector<string>::const_iterator
-simpleSearch(ControlCitation const & controller,
-            std::vector<string> const & keys_to_search,
-            string const & search_expression,
-            std::vector<string>::const_iterator start,
-            ControlCitation::Direction,
-            bool caseSensitive=false);
 
-/// Should use through the function above
-std::vector<string>::const_iterator
-regexSearch(ControlCitation const & controller,
-           std::vector<string> const & keys_to_search,
-           string const & search_expression,
-           std::vector<string>::const_iterator start,
-           ControlCitation::Direction);
 #endif // CONTROLCITATION_H
-
-
-