]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
s/updateLabels/updateBuffer/g, per a suggestion of Abdel's.
[lyx.git] / src / insets / InsetCitation.h
index e85c3b7d0f882aa6ef089b0cb41b8e3fb08317b6..036d25fbbdb918b0565f8ac7a63320ad1f69dd08 100644 (file)
@@ -56,7 +56,7 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       void updateLabels(ParIterator const & it);
+       void updateBuffer(ParIterator const & it, UpdateType);
        ///
        void addToToc(DocIterator const &);
 
@@ -74,11 +74,15 @@ public:
 private:
        ///
        Inset * clone() const { return new InsetCitation(*this); }
+       /// tries to make a pretty label and makes a basic one if not
+       docstring generateLabel(bool for_xhtml = false) const;
+       /// makes a pretty label
+       docstring complexLabel(bool for_xhtml = false) const;
+       /// makes a very basic label, in case we can't make a pretty one
+       docstring basicLabel(bool for_xhtml = false) const;
        /// 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 generateLabel() const;
 
        ///
        class Cache {