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