]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Improve handling of top and bottom margin
[lyx.git] / src / insets / InsetBibtex.h
index f2b8dd15763a141ffaebd810b6cf5c00273372aa..932fb0f48a720e1b550ee34766f07ecfc293e3f3 100644 (file)
@@ -48,20 +48,25 @@ public:
        ///
        InsetCode lyxCode() const { return BIBTEX_CODE; }
        ///
-       DisplayType display() const { return AlignCenter; }
+       RowFlags rowFlags() const { return Display; }
        ///
        void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstringstream & ods, OutputParams const & op,
                      size_t max_length = INT_MAX) const;
        ///
-       void updateBuffer(ParIterator const &, UpdateType);
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false);
+       ///
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const;
        ///
        void collectBibKeys(InsetIterator const &, support::FileNameList &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const;
+       ///
+       void docbook(XMLStream &, OutputParams const &) const;
        ///
        std::string contextMenuName() const;
        //@}
@@ -79,11 +84,15 @@ public:
 
 private:
        ///
-       void editDatabases() const;
+       void editDatabases(docstring const & db = docstring()) const;
        ///
        void parseBibTeXFiles(support::FileNameList &) const;
        ///
        bool usingBiblatex() const;
+       ///
+       docstring getRefLabel() const;
+       ///
+       std::map<std::string, std::string> getFileEncodings() const;
 
        /// \name Private functions inherited from Inset class
        //@{