]> git.lyx.org Git - lyx.git/blob - src/Buffer.h
Fix dialog handling of Insert Plain Text
[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 "insets/InsetCode.h"
16
17 #include "support/FileName.h"
18 #include "support/strfwd.h"
19 #include "support/types.h"
20
21 #include <string>
22 #include <vector>
23
24
25 namespace lyx {
26
27 class BufferParams;
28 class EmbeddedFiles;
29 class ErrorItem;
30 class ErrorList;
31 class FuncRequest;
32 class Inset;
33 class Font;
34 class Format;
35 class Lexer;
36 class LyXRC;
37 class Text;
38 class LyXVC;
39 class LaTeXFeatures;
40 class Language;
41 class MacroData;
42 class OutputParams;
43 class Paragraph;
44 class ParConstIterator;
45 class ParIterator;
46 class ParagraphList;
47 class TeXErrors;
48 class TexRow;
49 class TocBackend;
50 class Undo;
51
52 namespace frontend {
53 class GuiBufferDelegate;
54 class WorkAreaManager;
55 }
56
57 /** The buffer object.
58  * This is the buffer object. It contains all the informations about
59  * a document loaded into LyX.
60  * The buffer object owns the Text (wrapped in an InsetText), which
61  * contains the individual paragraphs of the document.
62  *
63  *
64  * I am not sure if the class is complete or
65  * minimal, probably not.
66  * \author Lars Gullik Bjønnes
67  */
68 class Buffer {
69 public:
70         /// What type of log will \c getLogName() return?
71         enum LogType {
72                 latexlog, ///< LaTeX log
73                 buildlog  ///< Literate build log
74         };
75
76         /// Result of \c readFile()
77         enum ReadStatus {
78                 failure, ///< The file could not be read
79                 success, ///< The file could not be read
80                 wrongversion ///< The version of the file does not match ours
81         };
82
83         /// Method to check if a file is externally modified, used by 
84         /// isExternallyModified()
85         /**
86          * timestamp is fast but inaccurate. For example, the granularity
87          * of timestamp on a FAT filesystem is 2 second. Also, various operations
88          * may touch the timestamp of a file even when its content is unchanged.
89          *
90          * checksum is accurate but slow, which can be a problem when it is 
91          * frequently used, or used for a large file on a slow (network) file
92          * system.
93          */
94         enum CheckMethod {
95                 checksum_method,  ///< Use file check sum
96                 timestamp_method, ///< Use timestamp, and checksum if timestamp has changed
97         };
98         
99         /** Constructor
100             \param file
101             \param b  optional \c false by default
102         */
103         explicit Buffer(std::string const & file, bool b = false);
104
105         /// Destructor
106         ~Buffer();
107
108         /** High-level interface to buffer functionality.
109             This function parses a command string and executes it
110         */
111         bool dispatch(std::string const & command, bool * result = 0);
112
113         /// Maybe we know the function already by number...
114         bool dispatch(FuncRequest const & func, bool * result = 0);
115
116         /// Load the autosaved file.
117         void loadAutoSaveFile();
118
119         /// read a new document from a string
120         bool readString(std::string const &);
121         /// load a new file
122         bool readFile(support::FileName const & filename);
123
124         /// read the header, returns number of unknown tokens
125         int readHeader(Lexer & lex);
126
127         /** Reads a file without header.
128             \param par if != 0 insert the file.
129             \return \c false if file is not completely read.
130         */
131         bool readDocument(Lexer &);
132
133         ///
134         void insertStringAsLines(ParagraphList & plist,
135                 pit_type &, pos_type &,
136                 Font const &, docstring const &, bool);
137         ///
138         ParIterator getParFromID(int id) const;
139         /// do we have a paragraph with this id?
140         bool hasParWithID(int id) const;
141
142         ///
143         frontend::WorkAreaManager & workAreaManager() const;
144
145         /** Save file.
146             Takes care of auto-save files and backup file if requested.
147             Returns \c true if the save is successful, \c false otherwise.
148         */
149         bool save() const;
150
151         /// Write document to stream. Returns \c false if unsuccesful.
152         bool write(std::ostream &) const;
153         /// Write file. Returns \c false if unsuccesful.
154         bool writeFile(support::FileName const &) const;
155
156   /// Loads LyX file \c filename into buffer, *  and \return success 
157         bool loadLyXFile(support::FileName const & s);
158
159         /// Fill in the ErrorList with the TeXErrors
160         void bufferErrors(TeXErrors const &, ErrorList &) const;
161
162         /// Just a wrapper for writeLaTeXSource, first creating the ofstream.
163         bool makeLaTeXFile(support::FileName const & filename,
164                            std::string const & original_path,
165                            OutputParams const &,
166                            bool output_preamble = true,
167                            bool output_body = true);
168         /** Export the buffer to LaTeX.
169             If \p os is a file stream, and params().inputenc is "auto" or
170             "default", and the buffer contains text in different languages
171             with more than one encoding, then this method will change the
172             encoding associated to \p os. Therefore you must not call this
173             method with a string stream if the output is supposed to go to a
174             file. \code
175             odocfstream ofs;
176             ofs.open("test.tex");
177             writeLaTeXSource(ofs, ...);
178             ofs.close();
179             \endcode is NOT equivalent to \code
180             odocstringstream oss;
181             writeLaTeXSource(oss, ...);
182             odocfstream ofs;
183             ofs.open("test.tex");
184             ofs << oss.str();
185             ofs.close();
186             \endcode
187          */
188         void writeLaTeXSource(odocstream & os,
189                            std::string const & original_path,
190                            OutputParams const &,
191                            bool output_preamble = true,
192                            bool output_body = true);
193         ///
194         void makeDocBookFile(support::FileName const & filename,
195                              OutputParams const & runparams_in,
196                              bool only_body = false);
197         ///
198         void writeDocBookSource(odocstream & os, std::string const & filename,
199                              OutputParams const & runparams_in,
200                              bool only_body = false);
201         /// returns the main language for the buffer (document)
202         Language const * language() const;
203         /// get l10n translated to the buffers language
204         docstring const B_(std::string const & l10n) const;
205
206         ///
207         int runChktex();
208         /// return true if the main lyx file does not need saving
209         bool isClean() const;
210         ///
211         bool isBakClean() const;
212         ///
213         bool isDepClean(std::string const & name) const;
214
215         /// whether or not disk file has been externally modified
216         bool isExternallyModified(CheckMethod method) const;
217
218         /// save timestamp and checksum of the given file.
219         void saveCheckSum(support::FileName const & file) const;
220
221         /// mark the main lyx file as not needing saving
222         void markClean() const;
223
224         ///
225         void markBakClean() const;
226
227         ///
228         void markDepClean(std::string const & name);
229
230         ///
231         void setUnnamed(bool flag = true);
232
233         ///
234         bool isUnnamed() const;
235
236         /// Mark this buffer as dirty.
237         void markDirty();
238
239         /// Returns the buffer's filename. It is always an absolute path.
240         support::FileName fileName() const;
241
242         /// Returns the buffer's filename. It is always an absolute path.
243         std::string absFileName() const;
244
245         /// Returns the the path where the buffer lives.
246         /// It is always an absolute path.
247         std::string const & filePath() const;
248
249         /** A transformed version of the file name, adequate for LaTeX.
250             \param no_path optional if \c true then the path is stripped.
251         */
252         std::string latexName(bool no_path = true) const;
253
254         /// Get thee name and type of the log.
255         std::string logName(LogType * type = 0) const;
256
257         /// Change name of buffer. Updates "read-only" flag.
258         void setFileName(std::string const & newfile);
259
260         /// Name of the document's parent
261         void setParentName(std::string const &);
262
263         /** Get the document's master (or \c this if this is not a
264             child document)
265          */
266         Buffer const * masterBuffer() const;
267         /** Get the document's master (or \c this if this is not a
268             child document)
269          */
270         Buffer * masterBuffer();
271
272         /// Is buffer read-only?
273         bool isReadonly() const;
274
275         /// Set buffer read-only flag
276         void setReadonly(bool flag = true);
277
278         /// returns \c true if the buffer contains a LaTeX document
279         bool isLatex() const;
280         /// returns \c true if the buffer contains a DocBook document
281         bool isDocBook() const;
282         /// returns \c true if the buffer contains a Wed document
283         bool isLiterate() const;
284
285         /** Validate a buffer for LaTeX.
286             This validates the buffer, and returns a struct for use by
287             #makeLaTeX# and others. Its main use is to figure out what
288             commands and packages need to be included in the LaTeX file.
289             It (should) also check that the needed constructs are there
290             (i.e. that the \refs points to coresponding \labels). It
291             should perhaps inset "error" insets to help the user correct
292             obvious mistakes.
293         */
294         void validate(LaTeXFeatures &) const;
295
296         /// Update the cache with all bibfiles in use (including bibfiles
297         /// of loaded child documents).
298         void updateBibfilesCache();
299         /// Return the cache with all bibfiles in use (including bibfiles
300         /// of loaded child documents).
301         std::vector<support::FileName> const & getBibfilesCache() const;
302         ///
303         void getLabelList(std::vector<docstring> &) const;
304
305         ///
306         void changeLanguage(Language const * from, Language const * to);
307
308         ///
309         bool isMultiLingual() const;
310
311         ///
312         BufferParams & params();
313         BufferParams const & params() const;
314
315         /** The list of paragraphs.
316             This is a linked list of paragraph, this list holds the
317             whole contents of the document.
318          */
319         ParagraphList & paragraphs();
320         ParagraphList const & paragraphs() const;
321
322         /// LyX version control object.
323         LyXVC & lyxvc();
324         LyXVC const & lyxvc() const;
325
326         /// Where to put temporary files.
327         std::string const & temppath() const;
328
329         /// Used when typesetting to place errorboxes.
330         TexRow & texrow();
331         TexRow const & texrow() const;
332
333         ///
334         ParIterator par_iterator_begin();
335         ///
336         ParConstIterator par_iterator_begin() const;
337         ///
338         ParIterator par_iterator_end();
339         ///
340         ParConstIterator par_iterator_end() const;
341
342         /** \returns true only when the file is fully loaded.
343          *  Used to prevent the premature generation of previews
344          *  and by the citation inset.
345          */
346         bool isFullyLoaded() const;
347         /// Set by buffer_funcs' newFile.
348         void setFullyLoaded(bool);
349
350         /// Our main text (inside the top InsetText)
351         Text & text() const;
352
353         /// Our top InsetText
354         Inset & inset() const;
355
356         //
357         // Macro handling
358         //
359         /// Collect macros in paragraphs
360         void updateMacros();
361         /// Look for macro defined before par (or in the master buffer)
362         bool hasMacro(docstring const & name, Paragraph const & par) const;
363         /// Look for macro defined anywhere in the buffer (or in the master buffer)
364         bool hasMacro(docstring const & name) const;
365         /// Return macro defined before par (or in the master buffer)
366         MacroData const & getMacro(docstring const & name, Paragraph const & par) const;
367         /// Return macro defined anywhere in the buffer (or in the master buffer)
368         MacroData const & getMacro(docstring const & name) const;
369
370         /// Replace the inset contents for insets which InsetCode is equal
371         /// to the passed \p inset_code.
372         void changeRefsIfUnique(docstring const & from, docstring const & to,
373                 InsetCode code);
374
375         /// get source code (latex/docbook) for some paragraphs, or all paragraphs
376         /// including preamble
377         void getSourceCode(odocstream & os, pit_type par_begin, pit_type par_end,
378                 bool full_source);
379
380         /// Access to error list
381         ErrorList const & errorList(std::string const & type) const;
382         ErrorList & errorList(std::string const & type);
383
384         //@{
385         TocBackend & tocBackend();
386         TocBackend const & tocBackend() const;
387         //@}
388         
389         //@{
390         EmbeddedFiles & embeddedFiles();
391         EmbeddedFiles const & embeddedFiles() const;
392         //@}
393
394         Undo & undo();
395        
396         /// This function is called when the buffer is changed.
397         void changed() const;
398         /// This function is called when the buffer structure is changed.
399         void structureChanged() const;
400         /// This function is called when some parsing error shows up.
401         void errors(std::string const & err) const;
402         /// This function is called when the buffer busy status change.
403         void setBusy(bool on) const;
404         /// This function is called when the buffer readonly status change.
405         void setReadOnly(bool on) const;
406         /// Update window titles of all users.
407         void updateTitles() const;
408         /// Reset autosave timers for all users.
409         void resetAutosaveTimers() const;
410         ///
411         void message(docstring const & msg) const;
412
413         void setGuiDelegate(frontend::GuiBufferDelegate * gui);
414
415         ///
416         void autoSave() const;
417         ///
418         bool writeAs(std::string const & newname = std::string());
419         ///
420         bool menuWrite();
421         ///
422         void loadChildDocuments() const;
423         /// return the format of the buffer on a string
424         std::string bufferFormat() const;
425
426         ///
427         bool doExport(std::string const & format, bool put_in_tempdir,
428                 std::string & result_file);
429         ///
430         bool doExport(std::string const & format, bool put_in_tempdir);
431         ///
432         bool preview(std::string const & format);
433         ///
434         bool isExportable(std::string const & format) const;
435         ///
436         std::vector<Format const *> exportableFormats(bool only_viewable) const;
437
438 private:
439   /// 
440         bool readFileHelper(support::FileName const & s);
441         ///
442         std::vector<std::string> backends() const;
443         /** Inserts a file into a document
444             \return \c false if method fails.
445         */
446         ReadStatus readFile(Lexer &, support::FileName const & filename,
447                             bool fromString = false);
448
449         /// Use the Pimpl idiom to hide the internals.
450         class Impl;
451         /// The pointer never changes although *pimpl_'s contents may.
452         Impl * const pimpl_;
453
454         /// A cache for the bibfiles (including bibfiles of loaded child
455         /// documents), needed for appropriate update of natbib labels.
456         mutable std::vector<support::FileName> bibfilesCache_;
457
458         frontend::GuiBufferDelegate * gui_;
459 };
460
461
462 } // namespace lyx
463
464 #endif