]> git.lyx.org Git - lyx.git/blob - src/buffer.h
compile fix
[lyx.git] / src / buffer.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *           Copyright 1995 Matthias Ettrich
7  *
8  *           This file is Copyleft 1996
9  *           Lars Gullik Bjønnes
10  *
11  * ====================================================== */
12
13 #ifndef BUFFER_H
14 #define BUFFER_H
15
16 #ifdef __GNUG__
17 #pragma interface
18 #endif
19
20 #include "LString.h"
21 #include "undo.h"
22 #include "support/limited_stack.h"
23
24 #include "lyxvc.h"
25 #include "bufferparams.h"
26 #include "texrow.h"
27 #include "ParagraphList.h"
28 #include "paragraph.h"
29
30 #include <boost/scoped_ptr.hpp>
31 #include <boost/shared_ptr.hpp>
32
33 class BufferView;
34 class Counters;
35 class LyXRC;
36 class TeXErrors;
37 class LaTeXFeatures;
38 class Language;
39 class ParIterator;
40
41 #define NO_COMPABILITY 1
42
43 ///
44 struct DEPCLEAN {
45         ///
46         bool clean;
47         ///
48         string master;
49         ///
50         DEPCLEAN * next;
51 };
52
53 /** The buffer object.
54   This is the buffer object. It contains all the informations about
55   a document loaded into LyX. I am not sure if the class is complete or
56   minimal, probably not.
57   \author Lars Gullik Bjønnes
58   */
59 class Buffer {
60 public:
61         /// What type of log will \c getLogName() return?
62         enum LogType {
63                 latexlog, ///< LaTeX log
64                 buildlog  ///< Literate build log
65         };
66
67         /** Constructor
68             \param file
69             \param b  optional \c false by default
70         */
71         explicit Buffer(string const & file, bool b = false);
72
73         /// Destructor
74         ~Buffer();
75
76         /** High-level interface to buffer functionality.
77             This function parses a command string and executes it
78         */
79         bool dispatch(string const & command, bool * result = 0);
80
81         /// Maybe we know the function already by number...
82         bool dispatch(int ac, string const & argument, bool * result = 0);
83
84         ///
85         void resizeInsets(BufferView *);
86
87         /// Update window titles of all users.
88         void updateTitles() const;
89
90         /// Reset autosave timers for all users.
91         void resetAutosaveTimers() const;
92
93         /** Adds the BufferView to the users list.
94             Later this func will insert the \c BufferView into a real list,
95             not just setting a pointer.
96         */
97         void addUser(BufferView * u);
98
99         /** Removes the #BufferView# from the users list.
100             Since we only can have one at the moment, we just reset it.
101         */
102         void delUser(BufferView *);
103
104         ///
105         void redraw();
106
107         /// Load the autosaved file.
108         void loadAutoSaveFile();
109
110         /** Reads a file.
111             \param par if != 0 insert the file.
112             \return \c false if method fails.
113         */
114         bool readFile(LyXLex &, Paragraph * par = 0);
115
116         /** Reads a file without header.
117             \param par if != 0 insert the file.
118             \return \c false if file is not completely read.
119         */
120         bool readLyXformat2(LyXLex &, Paragraph * par = 0);
121
122         /// This parses a single LyXformat-Token.
123         bool parseSingleLyXformat2Token(LyXLex &, Paragraph *& par,
124                                         Paragraph *& return_par,
125                                         string const & token, int & pos,
126                                         Paragraph::depth_type & depth,
127                                         LyXFont &);
128         ///
129         void insertStringAsLines(Paragraph *&, lyx::pos_type &,
130                                  LyXFont const &, string const &) const;
131 #ifndef NO_COMPABILITY
132         ///
133         Inset * isErtInset(Paragraph * par, int pos) const;
134         ///
135         void insertErtContents(Paragraph * par, int & pos,
136                                bool set_inactive = true);
137 #endif
138         ///
139         Paragraph * getParFromID(int id) const;
140 private:
141         /// Parse a single inset.
142         void readInset(LyXLex &, Paragraph *& par, int & pos, LyXFont &);
143 public:
144         /** Save file.
145             Takes care of auto-save files and backup file if requested.
146             Returns \c true if the save is successful, \c false otherwise.
147         */
148         bool save() const;
149
150         /// Write file. Returns \c false if unsuccesful.
151         bool writeFile(string const &) const;
152
153         ///
154         void writeFileAscii(string const & , int);
155         ///
156         void writeFileAscii(std::ostream &, int);
157         ///
158         string const asciiParagraph(Paragraph const &, unsigned int linelen,
159                                     bool noparbreak = false) const;
160         /// Just a wrapper for the method below, first creating the ofstream.
161         void makeLaTeXFile(string const & filename,
162                            string const & original_path,
163                            bool nice,
164                            bool only_body = false,
165                            bool only_preamble = false);
166         ///
167         void makeLaTeXFile(std::ostream & os,
168                            string const & original_path,
169                            bool nice,
170                            bool only_body = false,
171                            bool only_preamble = false);
172         /** LaTeX all paragraphs from par to endpar.
173             \param \a endpar if == 0 then to the end
174         */
175         void latexParagraphs(std::ostream & os, Paragraph * par,
176                              Paragraph * endpar, TexRow & texrow, bool moving_arg = false) const;
177         ///
178         void simpleDocBookOnePar(std::ostream &,
179                                  Paragraph * par, int & desc_on,
180                                  Paragraph::depth_type depth) const ;
181         ///
182         void simpleLinuxDocOnePar(std::ostream & os, Paragraph * par,
183                                   Paragraph::depth_type depth);
184         ///
185         void makeLinuxDocFile(string const & filename,
186                               bool nice, bool only_body = false);
187         ///
188         void makeDocBookFile(string const & filename,
189                              bool nice, bool only_body = false);
190         /// Open SGML/XML tag.
191         int sgmlOpenTag(std::ostream & os, Paragraph::depth_type depth, bool mixcont,
192                 string const & latexname) const;
193         /// Closes SGML/XML tag.
194         int sgmlCloseTag(std::ostream & os, Paragraph::depth_type depth, bool mixcont,
195                 string const & latexname) const;
196         ///
197         void sgmlError(Paragraph * par, int pos, string const & message) const;
198
199         /// returns the main language for the buffer (document)
200         Language const * getLanguage() const;
201         ///
202         int runChktex();
203         /// return true if the main lyx file does not need saving
204         bool isClean() const;
205         ///
206         bool isBakClean() const;
207         ///
208         bool isDepClean(string const & name) const;
209
210         /// mark the main lyx file as not needing saving
211         void markClean() const;
212
213         ///
214         void markBakClean();
215
216         ///
217         void markDepClean(string const & name);
218
219         ///
220         void setUnnamed(bool flag = true);
221
222         ///
223         bool isUnnamed();
224
225         /// Mark this buffer as dirty.
226         void markDirty();
227
228         /// Returns the buffer's filename. It is always an absolute path.
229         string const & fileName() const;
230
231         /// Returns the the path where the buffer lives.
232         /// It is always an absolute path.
233         string const & filePath() const;
234
235         /** A transformed version of the file name, adequate for LaTeX.
236             \param no_path optional if \c true then the path is stripped.
237         */
238         string const getLatexName(bool no_path = true) const;
239
240         /// Get the name and type of the log.
241         std::pair<LogType, string> const getLogName() const;
242
243         /// Change name of buffer. Updates "read-only" flag.
244         void setFileName(string const & newfile);
245
246         /// Name of the document's parent
247         void setParentName(string const &);
248
249         /// Is buffer read-only?
250         bool isReadonly() const;
251
252         /// Set buffer read-only flag
253         void setReadonly(bool flag = true);
254
255         /// returns \c true if the buffer contains a LaTeX document
256         bool isLatex() const;
257         /// returns \c true if the buffer contains a LinuxDoc document
258         bool isLinuxDoc() const;
259         /// returns \c true if the buffer contains a DocBook document
260         bool isDocBook() const;
261         /** returns \c true if the buffer contains either a LinuxDoc
262             or DocBook document */
263         bool isSGML() const;
264         /// returns \c true if the buffer contains a Wed document
265         bool isLiterate() const;
266
267         /** Validate a buffer for LaTeX.
268             This validates the buffer, and returns a struct for use by
269             #makeLaTeX# and others. Its main use is to figure out what
270             commands and packages need to be included in the LaTeX file.
271             It (should) also check that the needed constructs are there
272             (i.e. that the \refs points to coresponding \labels). It
273             should perhaps inset "error" insets to help the user correct
274             obvious mistakes.
275         */
276         void validate(LaTeXFeatures &) const;
277
278         ///
279         string const getIncludeonlyList(char delim = ',');
280         ///
281         std::vector<std::pair<string, string> > const getBibkeyList() const;
282         ///
283         std::vector<string> const getLabelList() const;
284
285         /** This will clearly have to change later. Later we can have more
286             than one user per buffer. */
287         BufferView * getUser() const;
288
289         ///
290         void changeLanguage(Language const * from, Language const * to);
291         ///
292         bool isMultiLingual();
293
294         /// Does this mean that this is buffer local?
295         limited_stack<boost::shared_ptr<Undo> > undostack;
296
297         /// Does this mean that this is buffer local?
298         limited_stack<boost::shared_ptr<Undo> > redostack;
299
300         ///
301         BufferParams params;
302
303         /** The list of paragraphs.
304             This is a linked list of paragraph, this list holds the
305             whole contents of the document.
306          */
307         ParagraphList paragraphs;
308
309         /// LyX version control object.
310         LyXVC lyxvc;
311
312         /// Where to put temporary files.
313         string tmppath;
314
315         /** If we are writing a nice LaTeX file or not.
316             While writing as LaTeX, tells whether we are
317             doing a 'nice' LaTeX file */
318         bool niceFile;
319
320         /// Used when typesetting to place errorboxes.
321         TexRow texrow;
322         /// Buffer-wide counter array
323         Counters & counters() const;
324
325 private:
326         /// is save needed
327         mutable bool lyx_clean;
328
329         /// is autosave needed
330         mutable bool bak_clean;
331
332         /// is this a unnamed file (New...)
333         bool unnamed;
334
335         /// is regenerating #.tex# necessary
336         DEPCLEAN * dep_clean;
337
338         /// buffer is r/o
339         bool read_only;
340
341         /// name of the file the buffer is associated with.
342         string filename_;
343
344         /// The path to the document file.
345         string filepath_;
346
347         /// Format number of buffer
348         int file_format;
349         /** A list of views using this buffer.
350             Why not keep a list of the BufferViews that use this buffer?
351
352             At least then we don't have to do a lot of magic like:
353             #buffer->lyx_gui->bufferview->updateLayoutChoice#. Just ask each
354             of the buffers in the list of users to do a #updateLayoutChoice#.
355         */
356         BufferView * users;
357
358         /// The pointer is const although its contents may not be
359         boost::scoped_ptr<Counters> const ctrs;
360
361 public:
362         ///
363         class inset_iterator {
364         public:
365                 typedef std::input_iterator_tag iterator_category;
366                 typedef Inset value_type;
367                 typedef ptrdiff_t difference_type;
368                 typedef Inset * pointer;
369                 typedef Inset & reference;
370                 typedef ParagraphList::iterator base_type;
371
372                 ///
373                 inset_iterator();
374                 ///
375                 inset_iterator(base_type p, base_type e);
376                 ///
377                 inset_iterator(base_type p, lyx::pos_type pos, base_type e);
378
379                 /// prefix ++
380                 inset_iterator & operator++();
381                 /// postfix ++
382                 inset_iterator operator++(int);
383                 ///
384                 reference operator*();
385                 ///
386                 pointer operator->();
387
388                 ///
389                 Paragraph * getPar();
390                 ///
391                 lyx::pos_type getPos() const;
392                 ///
393                 friend
394                 bool operator==(inset_iterator const & iter1,
395                                 inset_iterator const & iter2);
396         private:
397                 ///
398                 void setParagraph();
399                 ///
400                 ParagraphList::iterator pit;
401                 ///
402                 ParagraphList::iterator pend;
403                 ///
404                 InsetList::iterator it;
405         };
406
407         ///
408         inset_iterator inset_iterator_begin() {
409                 return inset_iterator(paragraphs.begin(), paragraphs.end());
410         }
411
412         ///
413         inset_iterator inset_iterator_end() {
414                 return inset_iterator();
415         }
416
417         ///
418         inset_iterator inset_const_iterator_begin() const {
419                 return inset_iterator(paragraphs.begin(), paragraphs.end());
420         }
421
422         ///
423         inset_iterator inset_const_iterator_end() const {
424                 return inset_iterator();
425         }
426
427         ///
428         ParIterator par_iterator_begin();
429         ///
430         ParIterator par_iterator_end();
431
432         ///
433         Inset * getInsetFromID(int id_arg) const;
434 };
435
436 bool operator==(Buffer::inset_iterator const & iter1,
437                 Buffer::inset_iterator const & iter2);
438
439 bool operator!=(Buffer::inset_iterator const & iter1,
440                 Buffer::inset_iterator const & iter2);
441 #endif