]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetBibitem.h
Improved character count statistics for letter based insets (e.g. the LyX logo).
[features.git] / src / insets / InsetBibitem.h
index f18356b9d469286795f718c21952eab6f87a158a..f0528f82c8077a89788c2346266d161341fb6071 100644 (file)
@@ -58,11 +58,13 @@ public:
        int plaintext(odocstringstream &, OutputParams const &,
                      size_t max_length = INT_MAX) const;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const;
        ///
-       void collectBibKeys(InsetIterator const &) const;
+       void docbook(XMLStream &, OutputParams const &) const;
+       ///
+       void collectBibKeys(InsetIterator const &, support::FileNameList &) const;
        /// update the counter of this inset
-       void updateBuffer(ParIterator const &, UpdateType);
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false);
        ///@}
 
        /// \name Static public methods obligated for InsetCommand derived classes
@@ -74,18 +76,19 @@ public:
        ///
        static bool isCompatibleCommand(std::string const & s)
                { return s == "bibitem"; }
-       ///@}
-
-private:
        ///
        docstring bibLabel() const;
+       ///@}
 
+private:
        /// \name Private functions inherited from Inset class
        //@{
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        Inset * clone() const { return new InsetBibitem(*this); }
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return false; }
        ///@}
 
        /// \name Private functions inherited from InsetCommand class