]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
Pure HTML output for math macros.
[lyx.git] / src / insets / InsetBibitem.h
index 4850f73a1f3193940dd6a13f4ea563e93e66b0c2..4c298c32d9e94f2d39f748d8f00b5ae56041dc38 100644 (file)
@@ -32,7 +32,7 @@ class InsetBibitem : public InsetCommand
 {
 public:
        ///
-       InsetBibitem(Buffer const &, InsetCommandParams const &);
+       InsetBibitem(Buffer *, InsetCommandParams const &);
        ///
        virtual ~InsetBibitem();
        ///
@@ -61,11 +61,11 @@ private:
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
-       int xhtml(odocstream &, OutputParams const &) const;
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        virtual void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        /// Update the counter of this inset
-       virtual void updateLabels(ParIterator const &);
+       void updateBuffer(ParIterator const &, UpdateType);
        ///
        void updateCommand(docstring const & new_key, bool dummy = false);
        ///
@@ -73,8 +73,8 @@ private:
        ///
        Inset * clone() const { return new InsetBibitem(*this); }
 
-       friend docstring bibitemWidest(Buffer const & buffer);
-       /// The label that is set by updateLabels
+       friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &);
+       /// The label that is set by updateBuffer
        docstring autolabel_;
        ///
        static int key_counter;
@@ -82,7 +82,7 @@ private:
 
 
 /// Return the widest label in the Bibliography.
-docstring bibitemWidest(Buffer const &);
+docstring bibitemWidest(Buffer const &, OutputParams const &);
 
 } // namespace lyx