]> git.lyx.org Git - lyx.git/blob - src/paragraph_pimpl.h
fix some C++ parsing bugs
[lyx.git] / src / paragraph_pimpl.h
1 // -*- C++ -*-
2 /**
3  * \file paragraph_pimpl.h
4  * Copyright 1995-2002 the LyX Team
5  * Read the file COPYING
6  */
7
8 #ifndef PARAGRAPH_PIMPL_H
9 #define PARAGRAPH_PIMPL_H
10
11 #include "paragraph.h"
12 #include "ParagraphParameters.h"
13 #include "changes.h"
14 #include "counters.h"
15
16 #include <boost/scoped_ptr.hpp>
17
18 class LyXLayout;
19
20 struct Paragraph::Pimpl {
21         ///
22         typedef std::vector<value_type> TextContainer;
23
24         ///
25         Pimpl(Paragraph * owner);
26         /// Copy constructor
27         Pimpl(Pimpl const &, Paragraph * owner, bool same_ids = false);
28         ///
29         lyx::pos_type size() const {
30                 return text.size();
31         }
32         ///
33         bool empty() const {
34                 return text.empty();
35         }
36         ///
37         void clear();
38         ///
39         void setContentsFromPar(Paragraph const * par);
40         /// set tracking mode
41         void trackChanges(Change::Type type = Change::UNCHANGED);
42         /// stop tracking
43         void untrackChanges();
44         /// set all text as new for change mode
45         void cleanChanges();
46         /// look up change type at given pos
47         Change::Type lookupChange(lyx::pos_type pos) const;
48         /// look up change at given pos
49         Change const lookupChangeFull(lyx::pos_type pos) const;
50         /// is there a change in the given range ?
51         bool isChanged(lyx::pos_type start, lyx::pos_type end) const;
52         /// is there a non-addition in this range ?
53         bool isChangeEdited(lyx::pos_type start, lyx::pos_type end) const;
54
55         /// set change at pos
56         void setChange(lyx::pos_type pos, Change::Type type);
57
58         /// mark as erased
59         void markErased();
60
61         /// accept change
62         void acceptChange(lyx::pos_type start, lyx::pos_type end);
63
64         /// reject change
65         void rejectChange(lyx::pos_type start, lyx::pos_type end);
66
67         /// are we tracking changes ?
68         bool tracking() const {
69                 return changes_.get();
70         }
71
72         ///
73         value_type getChar(lyx::pos_type pos) const;
74         ///
75         void setChar(lyx::pos_type pos, value_type c);
76         ///
77         void insertChar(lyx::pos_type pos, value_type c, LyXFont const & font, Change change = Change(Change::INSERTED));
78         ///
79         void insertInset(lyx::pos_type pos, Inset * inset, LyXFont const & font, Change change = Change(Change::INSERTED));
80         /// definite erase
81         void eraseIntern(lyx::pos_type pos);
82         /// erase the given position
83         void erase(lyx::pos_type pos);
84         /// erase the given range
85         bool erase(lyx::pos_type start, lyx::pos_type end);
86         ///
87         LyXFont const realizeFont(LyXFont const & font,
88                                   BufferParams const & bparams) const;
89         ///
90         Inset * inset_owner;
91
92         /** A font entry covers a range of positions. Notice that the
93             entries in the list are inserted in random order.
94             I don't think it's worth the effort to implement a more effective
95             datastructure, because the number of different fonts in a paragraph
96             is limited. (Asger)
97             Nevertheless, I decided to store fontlist using a sorted vector:
98             fontlist = { {pos_1,font_1} , {pos_2,font_2} , ... } where
99             pos_1 < pos_2 < ..., font_{i-1} != font_i for all i,
100             and font_i covers the chars in positions pos_{i-1}+1,...,pos_i
101             (font_1 covers the chars 0,...,pos_1) (Dekel)
102         */
103         struct FontTable  {
104                 ///
105                 FontTable(lyx::pos_type p, LyXFont const & f)
106                         : pos_(p)
107                         {
108                                 font_ = container.get(f);
109                         }
110                 ///
111                 lyx::pos_type pos() const { return pos_; }
112                 ///
113                 void pos(lyx::pos_type p) { pos_ = p; }
114                 ///
115                 LyXFont const & font() const { return *font_; }
116                 ///
117                 void font(LyXFont const & f) { font_ = container.get(f);}
118         private:
119                 /// End position of paragraph this font attribute covers
120                 lyx::pos_type pos_;
121                 /** Font. Interpretation of the font values:
122                     If a value is LyXFont::INHERIT_*, it means that the font
123                     attribute is inherited from either the layout of this
124                     paragraph or, in the case of nested paragraphs, from the
125                     layout in the environment one level up until completely
126                     resolved.
127                     The values LyXFont::IGNORE_* and LyXFont::TOGGLE are NOT
128                     allowed in these font tables.
129                 */
130                 boost::shared_ptr<LyXFont> font_;
131                 ///
132                 static ShareContainer<LyXFont> container;
133         };
134         ///
135         friend struct matchFT;
136         ///
137         struct matchFT {
138                 /// used by lower_bound and upper_bound
139                 inline
140                 int operator()(FontTable const & a, FontTable const & b) const {
141                         return a.pos() < b.pos();
142                 }
143         };
144
145         ///
146         typedef std::vector<FontTable> FontList;
147         ///
148         FontList fontlist;
149
150         ///
151         void simpleTeXBlanks(std::ostream &, TexRow & texrow,
152                              lyx::pos_type const i,
153                              unsigned int & column,
154                              LyXFont const & font,
155                              LyXLayout const & style);
156         ///
157         void simpleTeXSpecialChars(Buffer const *, BufferParams const &,
158                                    std::ostream &, TexRow & texrow,
159                                    bool moving_arg,
160                                    LyXFont & font, LyXFont & running_font,
161                                    LyXFont & basefont, bool & open_font,
162                                    Change::Type & running_change,
163                                    LyXLayout const & style,
164                                    lyx::pos_type & i,
165                                    unsigned int & column, value_type const c);
166
167         ///
168         void validate(LaTeXFeatures & features,
169                       LyXLayout const & layout) const;
170
171         ///
172         unsigned int id_;
173         ///
174         static unsigned int paragraph_id;
175         ///
176         ParagraphParameters params;
177
178 private:
179         /// erase at the given position. Returns true if it was actually erased
180         bool erasePos(lyx::pos_type pos);
181
182         /// match a string against a particular point in the paragraph
183         bool isTextAt(string const & str, lyx::pos_type pos) const;
184
185         /// for recording and looking up changes in revision tracking mode
186         boost::scoped_ptr<Changes> changes_;
187
188         /// Who owns us?
189         Paragraph * owner_;
190         ///
191         TextContainer text;
192 };
193
194 #endif