]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
Strip et al. for citation search
[lyx.git] / src / insets / InsetBibitem.h
index 661795284c8913f873c44c305804df9d1ac8e3cf..2a210e8c907085a711a654c500af9803afc1df59 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef INSET_BIBITEM_H
 #define INSET_BIBITEM_H
 
-#include "BiblioInfo.h"
+
 #include "InsetCommand.h"
 
 
@@ -42,24 +42,27 @@ public:
        /// \name Public functions inherited from Inset class
        //@{
        ///
-       InsetCode lyxCode() const { return BIBITEM_CODE; }
+       InsetCode lyxCode() const override { return BIBITEM_CODE; }
        ///
-       bool hasSettings() const { return true; }
+       bool hasSettings() const override { return true; }
        /// \copydoc Inset::initView()
        /// verify label and update references.
-       void initView();
+       void initView() override;
+       ///
+       bool isLabeled() const override { return true; }
        ///
-       bool isLabeled() const { return true; }
+       void read(Lexer & lex) override;
        ///
-       void read(Lexer & lex);
+       int plaintext(odocstringstream &, OutputParams const &,
+                     size_t max_length = INT_MAX) const override;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
+       void collectBibKeys(InsetIterator const &, support::FileNameList &) const override;
        /// update the counter of this inset
-       void updateBuffer(ParIterator const &, UpdateType);
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
        ///@}
 
        /// \name Static public methods obligated for InsetCommand derived classes
@@ -69,26 +72,27 @@ public:
        ///
        static std::string defaultCommand() { return "bibitem"; }
        ///
-       static bool isCompatibleCommand(std::string const & s) 
+       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);
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
        ///
-       Inset * clone() const { return new InsetBibitem(*this); }
+       Inset * clone() const override { return new InsetBibitem(*this); }
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const override { return false; }
        ///@}
 
        /// \name Private functions inherited from InsetCommand class
        //@{
        ///
-       docstring screenLabel() const;
+       docstring screenLabel() const override;
        //@}
 
        friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &);