]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.h
Fix glitch in drawing fractions
[lyx.git] / src / Buffer.h
index 477a8ac8adb55419abb3f89f4c40a5be068e9849..04539647c91fed35c658f0a4acbf37d2eb573438 100644 (file)
@@ -69,11 +69,12 @@ class WorkAreaManager;
 namespace support {
 class DocFileName;
 class FileName;
-class FileNameList;
+class FileNamePairList;
 }
 
 namespace graphics {
 class PreviewLoader;
+class Cache;
 }
 
 
@@ -416,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.
@@ -587,6 +600,8 @@ public:
        void updatePreviews() const;
        /// Remove any previewed LaTeX snippets associated with this buffer
        void removePreviews() const;
+       ///
+       graphics::Cache & graphicsCache() const;
 
        /// Our main text (inside the top InsetText)
        Text & text() const;
@@ -787,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;