]> git.lyx.org Git - lyx.git/blob - src/Buffer.h
UserGuide.lyx: first step of revision
[lyx.git] / src / Buffer.h
1 // -*- C++ -*-
2 /**
3  * \file Buffer.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef BUFFER_H
13 #define BUFFER_H
14
15 #include "OutputEnums.h"
16 #include "OutputParams.h"
17
18 #include "insets/InsetCode.h"
19
20 #include "support/strfwd.h"
21 #include "support/types.h"
22
23 #include <map>
24 #include <list>
25 #include <set>
26 #include <string>
27 #include <vector>
28
29
30 namespace lyx {
31
32 class BiblioInfo;
33 class BibTeXInfo;
34 class BufferParams;
35 class DispatchResult;
36 class DocIterator;
37 class docstring_list;
38 class ErrorList;
39 class FuncRequest;
40 class FuncStatus;
41 class Inset;
42 class InsetLabel;
43 class InsetRef;
44 class Font;
45 class Format;
46 class Lexer;
47 class Text;
48 class LyXVC;
49 class LaTeXFeatures;
50 class Language;
51 class MacroData;
52 class MacroNameSet;
53 class MacroSet;
54 class OutputParams;
55 class Paragraph;
56 class ParConstIterator;
57 class ParIterator;
58 class ParagraphList;
59 class TeXErrors;
60 class TexRow;
61 class TocBackend;
62 class Undo;
63 class WordLangTuple;
64
65 namespace frontend {
66 class GuiBufferDelegate;
67 class WorkAreaManager;
68 }
69
70 namespace support {
71 class FileName;
72 class FileNameList;
73 }
74
75 namespace graphics {
76 class PreviewLoader;
77 }
78
79
80 class Buffer;
81 typedef std::list<Buffer *> ListOfBuffers;
82 /// a list of Buffers we cloned
83 typedef std::set<Buffer *> CloneList;
84
85
86 /** The buffer object.
87  * This is the buffer object. It contains all the information about
88  * a document loaded into LyX.
89  * The buffer object owns the Text (wrapped in an InsetText), which
90  * contains the individual paragraphs of the document.
91  *
92  *
93  * I am not sure if the class is complete or
94  * minimal, probably not.
95  * \author Lars Gullik Bjønnes
96  */
97 class Buffer {
98 public:
99         /// What type of log will \c getLogName() return?
100         enum LogType {
101                 latexlog, ///< LaTeX log
102                 buildlog  ///< Literate build log
103         };
104
105         /// Result of \c readFile()
106         enum ReadStatus {
107                 ReadSuccess,
108                 ReadCancel,
109                 // failures
110                 ReadFailure,
111                 ReadWrongVersion,
112                 ReadFileNotFound,
113                 ReadVCError,
114                 ReadAutosaveFailure,
115                 ReadEmergencyFailure,
116                 ReadNoLyXFormat,
117                 ReadDocumentFailure,
118                 // lyx2lyx
119                 LyX2LyXNoTempFile,
120                 LyX2LyXNotFound,
121                 LyX2LyXOlderFormat,
122                 LyX2LyXNewerFormat,
123                 // other
124                 ReadOriginal
125         };
126
127         enum ExportStatus {
128                 // export
129                 ExportSuccess,
130                 ExportCancel,
131                 ExportError,
132                 ExportNoPathToFormat,
133                 ExportTexPathHasSpaces,
134                 ExportConverterError,
135                 // preview
136                 PreviewSuccess,
137                 PreviewError
138         };
139
140         /// Method to check if a file is externally modified, used by
141         /// isExternallyModified()
142         /**
143          * timestamp is fast but inaccurate. For example, the granularity
144          * of timestamp on a FAT filesystem is 2 seconds. Also, various operations
145          * may touch the timestamp of a file even when its content is unchanged.
146          *
147          * checksum is accurate but slow, which can be a problem when it is
148          * frequently used, or used for a large file on a slow (network) file
149          * system.
150          *
151          * FIXME: replace this method with support/FileMonitor.
152          */
153         enum CheckMethod {
154                 checksum_method, ///< Use file checksum
155                 timestamp_method ///< Use timestamp, and checksum if timestamp has changed
156         };
157
158         ///
159         enum UpdateScope {
160                 UpdateMaster,
161                 UpdateChildOnly
162         };
163
164         /// Constructor
165         explicit Buffer(std::string const & file, bool readonly = false,
166                 Buffer const * cloned_buffer = 0);
167
168         /// Destructor
169         ~Buffer();
170
171         /// Clones the entire structure of which this Buffer is part, starting
172         /// with the master and cloning all the children, too.
173         Buffer * cloneFromMaster() const;
174         /// Just clones this single Buffer. For autosave.
175         Buffer * cloneBufferOnly() const;
176         ///
177         bool isClone() const;
178
179         /** High-level interface to buffer functionality.
180             This function parses a command string and executes it.
181         */
182         void dispatch(std::string const & command, DispatchResult & result);
183
184         /// Maybe we know the function already by number...
185         void dispatch(FuncRequest const & func, DispatchResult & result);
186
187         /// Can this function be exectued?
188         /// \return true if we made a decision
189         bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
190
191         ///
192         DocIterator getParFromID(int id) const;
193         /// do we have a paragraph with this id?
194         bool hasParWithID(int id) const;
195
196         ///
197         frontend::WorkAreaManager & workAreaManager() const;
198
199         /** Save file.
200             Takes care of auto-save files and backup file if requested.
201             Returns \c true if the save is successful, \c false otherwise.
202         */
203         bool save() const;
204         /// Renames and saves the buffer
205         bool saveAs(support::FileName const & fn);
206
207         /// Write document to stream. Returns \c false if unsuccessful.
208         bool write(std::ostream &) const;
209         /// Write file. Returns \c false if unsuccessful.
210         bool writeFile(support::FileName const &) const;
211
212         /// \name Functions involved in reading files/strings.
213         //@{
214         /// Loads the LyX file into the buffer. This function
215         /// tries to extract the file from version control if it
216         /// cannot be found. If it can be found, it will try to
217         /// read an emergency save file or an autosave file.
218         /// \sa loadThisLyXFile
219         ReadStatus loadLyXFile();
220         /// Loads the LyX file \c fn into the buffer. If you want
221         /// to check for files in a version control container,
222         /// emergency or autosave files, one should use \c loadLyXFile.
223         /// /sa loadLyXFile
224         ReadStatus loadThisLyXFile(support::FileName const & fn);
225         /// import a new document from a string
226         bool importString(std::string const &, docstring const &, ErrorList &);
227         /// import a new file
228         bool importFile(std::string const &, support::FileName const &, ErrorList &);
229         /// read a new document from a string
230         bool readString(std::string const &);
231         /// Reloads the LyX file
232         /// \param clearUndo if false, leave alone the undo stack.
233         ReadStatus reload(bool clearUndo = true);
234 //FIXME: The following function should be private
235 //private:
236         /// read the header, returns number of unknown tokens
237         int readHeader(Lexer & lex);
238
239 private:
240         ///
241         typedef std::map<Buffer const *, Buffer *> BufferMap;
242         ///
243         void cloneWithChildren(BufferMap &, CloneList *) const;
244         /// save timestamp and checksum of the given file.
245         void saveCheckSum() const;
246         /// read a new file
247         ReadStatus readFile(support::FileName const & fn);
248         /// Reads a file without header.
249         /// \param par if != 0 insert the file.
250         /// \return \c true if file is not completely read.
251         bool readDocument(Lexer &);
252         /// Try to extract the file from a version control container
253         /// before reading if the file cannot be found.
254         /// \sa LyXVC::file_not_found_hook
255         ReadStatus extractFromVC();
256         /// Reads the first tag of a LyX File and
257         /// returns the file format number.
258         ReadStatus parseLyXFormat(Lexer & lex, support::FileName const & fn,
259                 int & file_format) const;
260         /// Convert the LyX file to the LYX_FORMAT using
261         /// the lyx2lyx script and returns the filename
262         /// of the temporary file to be read
263         ReadStatus convertLyXFormat(support::FileName const & fn,
264                 support::FileName & tmpfile, int from_format);
265         //@}
266
267 public:
268         /// \name Functions involved in autosave and emergency files.
269         //@{
270         /// Save an autosave file to #filename.lyx#
271         bool autoSave() const;
272         /// save emergency file
273         /// \return a status message towards the user.
274         docstring emergencyWrite();
275
276 //FIXME:The following function should be private
277 //private:
278         ///
279         void removeAutosaveFile() const;
280
281 private:
282         /// Try to load an autosave file associated to \c fn.
283         ReadStatus loadAutosave();
284         /// Try to load an emergency file associated to \c fn.
285         ReadStatus loadEmergency();
286         /// Get the filename of the emergency file associated with the Buffer
287         support::FileName getEmergencyFileName() const;
288         /// Get the filename of the autosave file associated with the Buffer
289         support::FileName getAutosaveFileName() const;
290         ///
291         void moveAutosaveFile(support::FileName const & old) const;
292         //@}
293
294 public:
295         /// Fill in the ErrorList with the TeXErrors
296         void bufferErrors(TeXErrors const &, ErrorList &) const;
297
298         enum OutputWhat {
299                 FullSource,
300                 OnlyBody,
301                 IncludedFile,
302                 OnlyPreamble,
303                 CurrentParagraph
304         };
305
306         /// Just a wrapper for writeLaTeXSource, first creating the ofstream.
307         bool makeLaTeXFile(support::FileName const & filename,
308                            std::string const & original_path,
309                            OutputParams const &,
310                            OutputWhat output = FullSource) const;
311         /** Export the buffer to LaTeX.
312             If \p os is a file stream, and params().inputenc is "auto" or
313             "default", and the buffer contains text in different languages
314             with more than one encoding, then this method will change the
315             encoding associated to \p os. Therefore you must not call this
316             method with a string stream if the output is supposed to go to a
317             file. \code
318             ofdocstream ofs;
319             otexstream os(ofs, texrow);
320             ofs.open("test.tex");
321             writeLaTeXSource(os, ...);
322             ofs.close();
323             \endcode is NOT equivalent to \code
324             odocstringstream oss;
325             otexstream os(oss, texrow);
326             writeLaTeXSource(os, ...);
327             ofdocstream ofs;
328             ofs.open("test.tex");
329             ofs << oss.str();
330             ofs.close();
331             \endcode
332          */
333         void writeLaTeXSource(otexstream & os,
334                            std::string const & original_path,
335                            OutputParams const &,
336                            OutputWhat output = FullSource) const;
337         ///
338         void makeDocBookFile(support::FileName const & filename,
339                              OutputParams const & runparams_in,
340                              OutputWhat output = FullSource) const;
341         ///
342         void writeDocBookSource(odocstream & os, std::string const & filename,
343                              OutputParams const & runparams_in,
344                              OutputWhat output = FullSource) const;
345         ///
346         void makeLyXHTMLFile(support::FileName const & filename,
347                              OutputParams const & runparams_in) const;
348         ///
349         void writeLyXHTMLSource(odocstream & os,
350                              OutputParams const & runparams_in,
351                              OutputWhat output = FullSource) const;
352         /// returns the main language for the buffer (document)
353         Language const * language() const;
354         /// get l10n translated to the buffers language
355         docstring const B_(std::string const & l10n) const;
356
357         ///
358         int runChktex();
359         /// return true if the main lyx file does not need saving
360         bool isClean() const;
361         ///
362         bool isDepClean(std::string const & name) const;
363
364         /// whether or not disk file has been externally modified
365         bool isExternallyModified(CheckMethod method) const;
366
367         /// mark the main lyx file as not needing saving
368         void markClean() const;
369
370         ///
371         void markDepClean(std::string const & name);
372
373         ///
374         void setUnnamed(bool flag = true);
375
376         /// Whether or not a filename has been assigned to this buffer
377         bool isUnnamed() const;
378
379         /// Whether or not this buffer is internal.
380         ///
381         /// An internal buffer does not contain a real document, but some auxiliary text segment.
382         /// It is not associated with a filename, it is never saved, thus it does not need to be
383         /// automatically saved, nor it needs to trigger any "do you want to save ?" question.
384         bool isInternal() const;
385
386         void setInternal(bool flag);
387
388         /// Mark this buffer as dirty.
389         void markDirty();
390
391         /// Returns the buffer's filename. It is always an absolute path.
392         support::FileName fileName() const;
393
394         /// Returns the buffer's filename. It is always an absolute path.
395         std::string absFileName() const;
396
397         /// Returns the the path where the buffer lives.
398         /// It is always an absolute path.
399         std::string filePath() const;
400
401         /** A transformed version of the file name, adequate for LaTeX.
402             \param no_path optional if \c true then the path is stripped.
403         */
404         std::string latexName(bool no_path = true) const;
405
406         /// Get the name and type of the log.
407         std::string logName(LogType * type = 0) const;
408
409         /// Set document's parent Buffer.
410         void setParent(Buffer const *);
411         Buffer const * parent() const;
412
413         /** Get the document's master (or \c this if this is not a
414             child document)
415          */
416         Buffer const * masterBuffer() const;
417
418         /// \return true if \p child is a child of this \c Buffer.
419         bool isChild(Buffer * child) const;
420
421         /// \return true if this \c Buffer has children
422         bool hasChildren() const;
423
424         /// \return a list of the direct children of this Buffer.
425         /// this list has no duplicates and is in the order in which
426         /// the children appear.
427         ListOfBuffers getChildren() const;
428
429         /// \return a list of all descendents of this Buffer (children,
430         /// grandchildren, etc). this list has no duplicates and is in
431         /// the order in which the children appear.
432         ListOfBuffers getDescendents() const;
433
434         /// Collect all relative buffers, in the order in which they appear.
435         /// I.e., the "root" Buffer is first, then its first child, then any
436         /// of its children, etc. However, there are no duplicates in this
437         /// list.
438         /// This is "stable", too, in the sense that it returns the same
439         /// thing from whichever Buffer it is called.
440         ListOfBuffers allRelatives() const;
441
442         /// Is buffer read-only?
443         bool isReadonly() const;
444
445         /// Set buffer read-only flag
446         void setReadonly(bool flag = true);
447
448         /** Validate a buffer for LaTeX.
449             This validates the buffer, and returns a struct for use by
450             #makeLaTeX# and others. Its main use is to figure out what
451             commands and packages need to be included in the LaTeX file.
452             It (should) also check that the needed constructs are there
453             (i.e. that the \refs points to coresponding \labels). It
454             should perhaps inset "error" insets to help the user correct
455             obvious mistakes.
456         */
457         void validate(LaTeXFeatures &) const;
458
459         /// Reference information is cached in the Buffer, so we do not
460         /// have to check or read things over and over.
461         ///
462         /// There are two caches.
463         ///
464         /// One is a cache of the BibTeX files from which reference info is
465         /// being gathered. This cache is PER BUFFER, and the cache for the
466         /// master essentially includes the cache for its children. This gets
467         /// invalidated when an InsetBibtex is created, deleted, or modified.
468         ///
469         /// The other is a cache of the reference information itself. This
470         /// exists only in the master buffer, and when it needs to be updated,
471         /// the children add their information to the master's cache.
472
473         /// Calling this method invalidates the cache and so requires a
474         /// re-read.
475         void invalidateBibinfoCache() const;
476         /// This invalidates the cache of files we need to check.
477         void invalidateBibfileCache() const;
478         /// Updates the cached bibliography information, checking first to see
479         /// whether the cache is valid. If so, we do nothing. If not, then we
480         /// reload all the BibTeX info.
481         /// Note that this operates on the master document.
482         void reloadBibInfoCache() const;
483         /// \return the bibliography information for this buffer's master,
484         /// or just for it, if it isn't a child.
485         BiblioInfo const & masterBibInfo() const;
486         /// collect bibliography info from the various insets in this buffer.
487         void collectBibKeys() const;
488         /// add some BiblioInfo to our cache
489         void addBiblioInfo(BiblioInfo const & bi) const;
490         /// add a single piece of bibliography info to our cache
491         void addBibTeXInfo(docstring const & key, BibTeXInfo const & bi) const;
492         ///
493         void makeCitationLabels() const;
494         ///
495         bool citeLabelsValid() const;
496         ///
497         void getLabelList(std::vector<docstring> &) const;
498
499         /// This removes the .aux and .bbl files from the temp dir.
500         void removeBiblioTempFiles() const;
501
502         ///
503         void changeLanguage(Language const * from, Language const * to);
504
505         ///
506         bool isMultiLingual() const;
507         ///
508         std::set<Language const *> getLanguages() const;
509
510         ///
511         BufferParams & params();
512         BufferParams const & params() const;
513
514         /** The list of paragraphs.
515             This is a linked list of paragraph, this list holds the
516             whole contents of the document.
517          */
518         ParagraphList & paragraphs();
519         ParagraphList const & paragraphs() const;
520
521         /// LyX version control object.
522         LyXVC & lyxvc();
523         LyXVC const & lyxvc() const;
524
525         /// Where to put temporary files.
526         std::string const temppath() const;
527
528         /// Used when typesetting to place errorboxes.
529         TexRow const & texrow() const;
530         TexRow & texrow();
531
532         ///
533         ParIterator par_iterator_begin();
534         ///
535         ParConstIterator par_iterator_begin() const;
536         ///
537         ParIterator par_iterator_end();
538         ///
539         ParConstIterator par_iterator_end() const;
540
541         // Position of the child buffer where it appears first in the master.
542         DocIterator firstChildPosition(Buffer const * child);
543
544         /** \returns true only when the file is fully loaded.
545          *  Used to prevent the premature generation of previews
546          *  and by the citation inset.
547          */
548         bool isFullyLoaded() const;
549         /// Set by buffer_funcs' newFile.
550         void setFullyLoaded(bool);
551
552         /// FIXME: Needed by RenderPreview.
553         graphics::PreviewLoader * loader() const;
554         /// Update the LaTeX preview snippets associated with this buffer
555         void updatePreviews() const;
556         /// Remove any previewed LaTeX snippets associated with this buffer
557         void removePreviews() const;
558
559         /// Our main text (inside the top InsetText)
560         Text & text() const;
561
562         /// Our top InsetText
563         Inset & inset() const;
564
565         //
566         // Macro handling
567         //
568         /// Collect macro definitions in paragraphs
569         void updateMacros() const;
570         /// Iterate through the whole buffer and try to resolve macros
571         void updateMacroInstances(UpdateType) const;
572
573         /// List macro names of this buffer, the parent and the children
574         void listMacroNames(MacroNameSet & macros) const;
575         /// Collect macros of the parent and its children in front of this buffer.
576         void listParentMacros(MacroSet & macros, LaTeXFeatures & features) const;
577
578         /// Return macro defined before pos (or in the master buffer)
579         MacroData const * getMacro(docstring const & name, DocIterator const & pos, bool global = true) const;
580         /// Return macro defined anywhere in the buffer (or in the master buffer)
581         MacroData const * getMacro(docstring const & name, bool global = true) const;
582         /// Return macro defined before the inclusion of the child
583         MacroData const * getMacro(docstring const & name, Buffer const & child, bool global = true) const;
584
585         /// Collect user macro names at loading time
586         typedef std::set<docstring> UserMacroSet;
587         mutable UserMacroSet usermacros;
588
589         /// Replace the inset contents for insets which InsetCode is equal
590         /// to the passed \p inset_code.
591         void changeRefsIfUnique(docstring const & from, docstring const & to,
592                 InsetCode code);
593
594         /// get source code (latex/docbook) for some paragraphs, or all paragraphs
595         /// including preamble
596         void getSourceCode(odocstream & os, std::string const format,
597                            pit_type par_begin, pit_type par_end, OutputWhat output,
598                            bool master) const;
599
600         /// Access to error list.
601         /// This method is used only for GUI visualisation of Buffer related
602         /// errors (like parsing or LateX compilation). This method is const
603         /// because modifying the returned ErrorList does not touch the document
604         /// contents.
605         ErrorList & errorList(std::string const & type) const;
606
607         /// The Toc backend.
608         /// This is useful only for screen visualisation of the Buffer. This
609         /// method is const because modifying this backend does not touch
610         /// the document contents.
611         TocBackend & tocBackend() const;
612
613         ///
614         Undo & undo();
615
616         /// This function is called when the buffer is changed.
617         void changed(bool update_metrics) const;
618         ///
619         void setChild(DocIterator const & dit, Buffer * child);
620         ///
621         void updateTocItem(std::string const &, DocIterator const &) const;
622         /// This function is called when the buffer structure is changed.
623         void structureChanged() const;
624         /// This function is called when some parsing error shows up.
625         void errors(std::string const & err, bool from_master = false) const;
626         /// This function is called when the buffer busy status change.
627         void setBusy(bool on) const;
628         /// Update window titles of all users.
629         void updateTitles() const;
630         /// Reset autosave timers for all users.
631         void resetAutosaveTimers() const;
632         ///
633         void message(docstring const & msg) const;
634
635         ///
636         void setGuiDelegate(frontend::GuiBufferDelegate * gui);
637         ///
638         bool hasGuiDelegate() const;
639
640         ///
641         ExportStatus doExport(std::string const & target, bool put_in_tempdir) const;
642         ///
643         ExportStatus doExport(std::string const & target, bool put_in_tempdir,
644                 std::string & result_file) const;
645         ///
646         ExportStatus preview(std::string const & format) const;
647
648 private:
649         /// target is a format name optionally followed by a space
650         /// and a destination file-name
651         ExportStatus doExport(std::string const & target, bool put_in_tempdir,
652                 bool includeall, std::string & result_file) const;
653         ///
654         ExportStatus doExport(std::string const & target, bool put_in_tempdir,
655                 bool includeall) const;
656         ///
657         ExportStatus preview(std::string const & format, bool includeall = false) const;
658         ///
659         void setMathFlavor(OutputParams & op) const;
660
661 public:
662         ///
663         bool isExporting() const;
664
665         ///
666         typedef std::vector<std::pair<Inset *, ParIterator> > References;
667         ///
668         References const & references(docstring const & label) const;
669         ///
670         void addReference(docstring const & label, Inset * inset, ParIterator it);
671         ///
672         void clearReferenceCache() const;
673         ///
674         void setInsetLabel(docstring const & label, InsetLabel const * il);
675         ///
676         InsetLabel const * insetLabel(docstring const & label) const;
677
678         /// return a list of all used branches (also in children)
679         void getUsedBranches(std::list<docstring> &, bool const from_master = false) const;
680
681         /// sets the buffer_ member for every inset in this buffer.
682         // FIXME This really shouldn't be needed, but at the moment it's not
683         // clear how to do it just for the individual pieces we need.
684         void setBuffersForInsets() const;
685         /// Updates screen labels and some other information associated with
686         /// insets and paragraphs. Actually, it's more like a general "recurse
687         /// through the Buffer" routine, that visits all the insets and paragraphs.
688         void updateBuffer() const { updateBuffer(UpdateMaster, InternalUpdate); }
689         /// \param scope: whether to start with the master document or just
690         /// do this one.
691         /// \param output: whether we are preparing for output.
692         void updateBuffer(UpdateScope scope, UpdateType utype) const;
693         ///
694         void updateBuffer(ParIterator & parit, UpdateType utype) const;
695
696         /// Spellcheck starting from \p from.
697         /// \p from initial position, will then points to the next misspelled
698         ///    word.
699         /// \p to will points to the end of the next misspelled word.
700         /// \p word_lang will contain the found misspelled word.
701         /// \return progress if a new word was found.
702         int spellCheck(DocIterator & from, DocIterator & to,
703                 WordLangTuple & word_lang, docstring_list & suggestions) const;
704         ///
705         void checkChildBuffers();
706         ///
707         void checkMasterBuffer();
708
709         /// compute statistics between \p from and \p to
710         /// \p from initial position
711         /// \p to points to the end position
712         /// \p skipNoOutput if notes etc. should be ignored
713         void updateStatistics(DocIterator & from, DocIterator & to,
714                                                   bool skipNoOutput = true) const;
715         /// statistics accessor functions
716         int wordCount() const;
717         int charCount(bool with_blanks) const;
718
719 private:
720         class MarkAsExporting;
721         friend class MarkAsExporting;
722         /// mark the buffer as busy exporting something, or not
723         void setExportStatus(bool e) const;
724
725         ///
726         References & getReferenceCache(docstring const & label);
727         /// Change name of buffer. Updates "read-only" flag.
728         void setFileName(support::FileName const & fname);
729         ///
730         void getLanguages(std::set<Language const *> &) const;
731         /// Checks whether any of the referenced bibfiles have changed since the
732         /// last time we loaded the cache. Note that this does NOT update the
733         /// cached information.
734         void checkIfBibInfoCacheIsValid() const;
735         /// Update the list of all bibfiles in use (including bibfiles
736         /// of loaded child documents).
737         void updateBibfilesCache(UpdateScope scope = UpdateMaster) const;
738         /// Return the list with all bibfiles in use (including bibfiles
739         /// of loaded child documents).
740         support::FileNameList const &
741                 getBibfilesCache(UpdateScope scope = UpdateMaster) const;
742         ///
743         void collectChildren(ListOfBuffers & children, bool grand_children) const;
744
745         /// noncopyable
746         Buffer(Buffer const &);
747         void operator=(Buffer const &);
748
749         /// Use the Pimpl idiom to hide the internals.
750         class Impl;
751         /// The pointer never changes although *pimpl_'s contents may.
752         Impl * const d;
753 };
754
755
756 } // namespace lyx
757
758 #endif