]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Reduce caption hardcoding
[lyx.git] / src / insets / InsetBibtex.h
index ea0cecfc142d4fc3a483a27d6330684a4e80c7e1..8c4fa18d3da69c59365bef162e2d8e808fd65fcf 100644 (file)
@@ -50,9 +50,10 @@ 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 collectBibKeys(InsetIterator const &) const;
        ///
@@ -60,7 +61,7 @@ public:
        ///
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       docstring contextMenuName() const;
+       std::string contextMenuName() const;
        //@}
 
        /// \name Static public methods obligated for InsetCommand derived classes
@@ -70,13 +71,13 @@ 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;