]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
Cleanup mouse/selection/context-menu interactions.
[lyx.git] / src / insets / InsetCitation.h
index 6a88473826775f5e8b56fbaefab20a1e36734371..85f3f0ae22167621daa8fe90af23c43ca02d3600 100644 (file)
@@ -30,24 +30,28 @@ public:
        ///
        InsetCitation(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       bool isLabeled() const { return true; }
+       ///
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        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
-       void textString(Buffer const &, odocstream &) const;
+       void textString(odocstream &) const;
        ///
        void validate(LaTeXFeatures &) const;
+       ///
+       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.
@@ -60,13 +64,12 @@ public:
        static bool isCompatibleCommand(std::string const & cmd);
 private:
        ///
-       virtual Inset * clone() const
-               { return 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 {