]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Reduce caption hardcoding
[lyx.git] / src / insets / InsetBibtex.h
index ec6ed3a7070e77693ef67f1722328d167f22646d..8c4fa18d3da69c59365bef162e2d8e808fd65fcf 100644 (file)
@@ -50,17 +50,18 @@ public:
        ///
        DisplayType display() const { return AlignCenter; }
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
-       void updateBuffer(ParIterator const &, UpdateType);
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
-       void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
+       void collectBibKeys(InsetIterator const &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       docstring contextMenuName() const;
+       std::string contextMenuName() const;
        //@}
 
        /// \name Static public methods obligated for InsetCommand derived classes
@@ -70,18 +71,18 @@ public:
        ///
        static std::string defaultCommand() { return "bibtex"; }
        ///
-       static bool isCompatibleCommand(std::string const & s) 
+       static bool isCompatibleCommand(std::string const & s)
                { return s == "bibtex"; }
        //@}
 
 private:
        /// look up the path to the file using TeX
-       static support::FileName 
+       static support::FileName
                getBibTeXPath(docstring const & filename, Buffer const & buf);
        ///
        void editDatabases() const;
        ///
-       void fillWithBibKeys(BiblioInfo &) const;
+       void parseBibTeXFiles() const;
 
        /// \name Private functions inherited from Inset class
        //@{