]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.h
Fix glitch in drawing fractions
[lyx.git] / src / Buffer.h
index 0cb70266374682815ac5f271ff957329c09e62d6..04539647c91fed35c658f0a4acbf37d2eb573438 100644 (file)
@@ -69,7 +69,7 @@ class WorkAreaManager;
 namespace support {
 class DocFileName;
 class FileName;
-class FileNameList;
+class FileNamePairList;
 }
 
 namespace graphics {
@@ -417,6 +417,18 @@ public:
         */
        support::DocFileName getReferencedFileName(std::string const & fn) const;
 
+       /// Format a file name for LaTeX output (absolute or relative or filename only,
+       /// depending on file and context)
+       std::string const prepareFileNameForLaTeX(std::string const &,
+                                       std::string const &, bool nice) const;
+
+       /** Returns a vector of bibliography (*.bib) file paths suitable for the
+        *  output in the respective BibTeX/Biblatex macro
+        */
+       std::vector<docstring> const prepareBibFilePaths(OutputParams const &,
+                                   support::FileNamePairList const bibfilelist,
+                                   bool const extension = true) const;
+
        /** Returns the path where a local layout file lives.
         *  An empty string is returned for standard system and user layouts.
         *  If possible, it is always relative to the buffer path.
@@ -790,7 +802,7 @@ private:
        void updateBibfilesCache(UpdateScope scope = UpdateMaster) const;
        /// Return the list with all bibfiles in use (including bibfiles
        /// of loaded child documents).
-       support::FileNameList const &
+       support::FileNamePairList const &
                getBibfilesCache(UpdateScope scope = UpdateMaster) const;
        ///
        void collectChildren(ListOfBuffers & children, bool grand_children) const;