]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCitation.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetCitation.h
index 602ff9541625cbf97ff1da9a2908bbf8eb1221ed..036d25fbbdb918b0565f8ac7a63320ad1f69dd08 100644 (file)
@@ -56,7 +56,7 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       void updateLabels(ParIterator const & it, bool);
+       void updateBuffer(ParIterator const & it, UpdateType);
        ///
        void addToToc(DocIterator const &);
 
@@ -74,12 +74,12 @@ public:
 private:
        ///
        Inset * clone() const { return new InsetCitation(*this); }
-       /// This function does the donkey work of creating the pretty label
-       docstring generateLabel() const;
-       ///
-       docstring complexLabel() const;
-       ///
-       docstring basicLabel() const;
+       /// 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_;