]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
Cleanup mouse/selection/context-menu interactions.
[lyx.git] / src / insets / InsetCitation.h
index 5b6a24964e2004b1c6a214f57611ad2dd77b2bf2..85f3f0ae22167621daa8fe90af23c43ca02d3600 100644 (file)
@@ -15,8 +15,9 @@
 
 
 #include "InsetCommand.h"
+#include "InsetCode.h"
 
-#include "frontends/controllers/frontend_helpers.h"
+#include "BiblioInfo.h"
 
 
 namespace lyx {
@@ -29,41 +30,52 @@ public:
        ///
        InsetCitation(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       bool isLabeled() const { return true; }
+       ///
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::CITE_CODE; }
+       InsetCode lyxCode() const { return CITE_CODE; }
        ///
-       int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &,
-                   OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
        /// the string that is passed to the TOC
-       virtual int textString(Buffer const &, odocstream &,
-               OutputParams const &) const;
+       void textString(odocstream &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       void replaceContents(std::string const & from, std::string const & to);
+       void updateLabels(ParIterator const & it);
+       ///
+       void addToToc(ParConstIterator const &) const;
 
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       //FIXME This is the locus of the design problem we have.
+       //It really ought to do what default_cite_command() does,
+       //but to do that it needs to know what CiteEngine we are
+       //using.
+       ///
+       static std::string defaultCommand() { return "cite"; };
+       ///
+       static bool isCompatibleCommand(std::string const & cmd);
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const
-       {
-               return std::auto_ptr<InsetBase>(new InsetCitation(params()));
-       }
-
+       ///
+       Inset * clone() const { return new InsetCitation(*this); }
+       /// we'll eventually want to be able to get info on this from the 
+       /// various CiteEngines
+       static ParamInfo param_info_;
        /// This function does the donkey work of creating the pretty label
-       docstring const generateLabel(Buffer const &) const;
+       docstring generateLabel() const;
 
+       ///
        class Cache {
        public:
                ///
-               Cache() : engine(biblio::ENGINE_BASIC), params("cite") {}
+               Cache() : engine(biblio::ENGINE_BASIC), params(CITE_CODE) {}
                ///
                biblio::CiteEngine engine;
                ///