]> git.lyx.org Git - lyx.git/blob - src/paragraph.h
get rid of NO_NEXT add some NO_STD_LIST instead
[lyx.git] / src / paragraph.h
1 // -*- C++ -*-
2 /**
3  *  \file paragraph.h
4  *  Copyright 1995 Matthias Ettrich
5  *  Copyright 2002 the LyX Team
6  *  Read the file COPYING
7  */
8
9 #ifndef PARAGRAPH_H
10 #define PARAGRAPH_H
11
12 #include "lyxlayout_ptr_fwd.h"
13 #include "lyxfont.h" // Just for LyXFont::FONT_SIZE
14 #include "InsetList.h"
15
16 #include "insets/inset.h" // Just for Inset::Code
17
18 #include "support/types.h"
19 #include "changes.h"
20
21 #include "ParagraphList.h"
22 #include "LString.h"
23
24 class BufferParams;
25 class BufferView;
26 class Counters;
27 class InsetBibitem;
28 class Language;
29 class LaTeXFeatures;
30 class LatexRunParams;
31 class ParagraphParameters;
32 class TexRow;
33
34 // Define this if you want to try out the new storage container for
35 // paragraphs. (Lgb)
36 // This is non working and far from finished.
37 #define NO_STD_LIST 1
38
39 /// A Paragraph holds all text, attributes and insets in a text paragraph
40 class Paragraph  {
41 public:
42 #ifdef NO_STD_LIST
43         // Remove this whan ParagraphList transition is over. (Lgb)
44         friend class ParagraphList;
45         friend class ParagraphList::iterator;
46 #endif
47         ///
48         enum META_KIND {
49                 /// Note that this is 1 right now to avoid
50                 /// crashes where getChar() is called wrongly
51                 /// (returning 0) - if this was 0, then we'd
52                 /// try getInset() and crash. We should fix
53                 /// all these places.
54                 META_INSET = 1
55         };
56         ///
57         typedef char value_type;
58         /// The same as ParameterStruct::depth_type
59         typedef unsigned int depth_type;
60
61         ///
62         Paragraph();
63
64         ///
65         Paragraph(Paragraph const &, bool same_ids);
66         /// the destructor removes the new paragraph from the list
67         ~Paragraph();
68
69         ///
70         Language const * getParLanguage(BufferParams const &) const;
71         ///
72         bool isRightToLeftPar(BufferParams const &) const;
73         ///
74         void changeLanguage(BufferParams const & bparams,
75                             Language const * from, Language const * to);
76         ///
77         bool isMultiLingual(BufferParams const &);
78
79         ///
80         string const asString(Buffer const *, bool label) const;
81         ///
82         string const asString(Buffer const *, lyx::pos_type beg, lyx::pos_type end,
83                               bool label) const;
84
85         ///
86         void write(Buffer const *, std::ostream &, BufferParams const &,
87                        depth_type & depth) const;
88         ///
89         void validate(LaTeXFeatures &) const;
90
91         /// return the unique ID of this paragraph
92         int id() const;
93
94         ///
95         int startTeXParParams(BufferParams const &, std::ostream &, bool) const;
96
97         ///
98         int endTeXParParams(BufferParams const &, std::ostream &, bool) const;
99
100
101         ///
102         bool simpleTeXOnePar(Buffer const *, BufferParams const &,
103                              LyXFont const & outerfont, std::ostream &,
104                              TexRow & texrow, LatexRunParams const &);
105
106         ///
107         bool hasSameLayout(Paragraph const & par) const;
108
109         ///
110         void makeSameLayout(Paragraph const & par);
111
112         ///
113         Inset * inInset() const;
114         ///
115         void setInsetOwner(Inset * i);
116         ///
117         void deleteInsetsLyXText(BufferView *);
118         ///
119         void resizeInsetsLyXText(BufferView *);
120
121         ///
122         lyx::pos_type size() const;
123         ///
124         bool empty() const;
125         ///
126         void setContentsFromPar(Paragraph const & par);
127         ///
128         void clearContents();
129
130         ///
131         LyXLayout_ptr const & layout() const;
132         ///
133         void layout(LyXLayout_ptr const & new_layout);
134
135         ///
136         char enumdepth;
137
138         ///
139         char itemdepth;
140
141         ///
142         InsetBibitem * bibitem();  // ale970302
143
144         /// initialise tracking for this par
145         void trackChanges(Change::Type = Change::UNCHANGED);
146
147         /// stop tracking
148         void untrackChanges();
149
150         /// set entire paragraph to new text for change tracking
151         void cleanChanges();
152
153         /// look up change type at given pos
154         Change::Type lookupChange(lyx::pos_type pos) const;
155
156         /// look up change at given pos
157         Change const lookupChangeFull(lyx::pos_type pos) const;
158
159         /// is there a change within the given range ?
160         bool isChanged(lyx::pos_type start, lyx::pos_type end) const;
161
162         /// is there a non-addition in this range ?
163         bool isChangeEdited(lyx::pos_type start, lyx::pos_type end) const;
164
165         /// set change at pos
166         void setChange(lyx::pos_type pos, Change::Type type);
167
168         /// accept change
169         void acceptChange(lyx::pos_type start, lyx::pos_type end);
170
171         /// reject change
172         void rejectChange(lyx::pos_type start, lyx::pos_type end);
173
174         /// mark whole par as erased
175         void markErased();
176
177         /// Paragraphs can contain "manual labels", for example, Description environment.
178         /// The text for this user-editable label is stored in the paragraph alongside
179         /// the text of the rest of the paragraph (the body). This function returns
180         /// the starting position of the body of the text in the paragraph.
181         int beginningOfBody() const;
182
183         ///
184         string const & getLabelstring() const;
185
186         /// the next two functions are for the manual labels
187         string const getLabelWidthString() const;
188         ///
189         void setLabelWidthString(string const & s);
190         ///
191         char getAlign() const;
192         /// The nesting depth of a paragraph
193         depth_type getDepth() const;
194         /// The maximal possible depth of a paragraph after this one
195         depth_type getMaxDepthAfter() const;
196         ///
197         void applyLayout(LyXLayout_ptr const & new_layout);
198
199         /// definite erase
200         void eraseIntern(lyx::pos_type pos);
201         /// erase the char at the given position
202         bool erase(lyx::pos_type pos);
203         /// erase the given range. Returns the number of chars actually erased
204         int erase(lyx::pos_type start, lyx::pos_type end);
205
206         /** Get uninstantiated font setting. Returns the difference
207             between the characters font and the layoutfont.
208             This is what is stored in the fonttable
209         */
210         LyXFont const
211         getFontSettings(BufferParams const &, lyx::pos_type pos) const;
212         ///
213         LyXFont const getFirstFontSettings() const;
214
215         /** Get fully instantiated font. If pos == -1, use the layout
216             font attached to this paragraph.
217             If pos == -2, use the label font of the layout attached here.
218             In all cases, the font is instantiated, i.e. does not have any
219             attributes with values LyXFont::INHERIT, LyXFont::IGNORE or
220             LyXFont::TOGGLE.
221         */
222         LyXFont const getFont(BufferParams const &, lyx::pos_type pos,
223                               LyXFont const & outerfont) const;
224         LyXFont const getLayoutFont(BufferParams const &,
225                                     LyXFont const & outerfont) const;
226         LyXFont const getLabelFont(BufferParams const &,
227                                    LyXFont const & outerfont) const;
228         ///
229         value_type getChar(lyx::pos_type pos) const;
230         ///
231         value_type getUChar(BufferParams const &, lyx::pos_type pos) const;
232         /// The position must already exist.
233         void setChar(lyx::pos_type pos, value_type c);
234         /// pos <= size() (there is a dummy font change at the end of each par)
235         void setFont(lyx::pos_type pos, LyXFont const & font);
236         /// Returns the height of the highest font in range
237         LyXFont::FONT_SIZE
238         highestFontInRange(lyx::pos_type startpos,
239                            lyx::pos_type endpos,
240                            LyXFont::FONT_SIZE const def_size) const;
241         ///
242         void insertChar(lyx::pos_type pos, value_type c);
243         ///
244         void insertChar(lyx::pos_type pos, value_type c, LyXFont const &, Change change = Change(Change::INSERTED));
245         ///
246         bool checkInsertChar(LyXFont &);
247         ///
248         void insertInset(lyx::pos_type pos, Inset * inset);
249         ///
250         void insertInset(lyx::pos_type pos, Inset * inset, LyXFont const &, Change change = Change(Change::INSERTED));
251         ///
252         bool insetAllowed(Inset::Code code);
253         ///
254         Inset * getInset(lyx::pos_type pos);
255         ///
256         Inset const * getInset(lyx::pos_type pos) const;
257         /** important for cut and paste
258             Temporary change from BufferParams to Buffer. Will revert when we
259             get rid of the argument to Inset::clone(Buffer const &) */
260         void copyIntoMinibuffer(Buffer const &, lyx::pos_type pos) const;
261         ///
262         void cutIntoMinibuffer(BufferParams const &, lyx::pos_type pos);
263         ///
264         bool insertFromMinibuffer(lyx::pos_type pos);
265
266         ///
267         bool isHfill(lyx::pos_type pos) const;
268         ///
269         bool isInset(lyx::pos_type pos) const;
270         ///
271         bool isNewline(lyx::pos_type pos) const;
272         ///
273         bool isSeparator(lyx::pos_type pos) const;
274         ///
275         bool isLineSeparator(lyx::pos_type pos) const;
276         ///
277         bool isKomma(lyx::pos_type pos) const;
278         /// Used by the spellchecker
279         bool isLetter(lyx::pos_type pos) const;
280         ///
281         bool isWord(lyx::pos_type pos) const;
282
283         /// returns -1 if inset not found
284         int getPositionOfInset(Inset const * inset) const;
285
286         ///
287         int stripLeadingSpaces();
288
289         ///
290         bool isFreeSpacing() const;
291
292         ///
293         ParagraphParameters & params();
294         ///
295         ParagraphParameters const & params() const;
296         ///
297         InsetList insetlist;
298         ///
299         //Counters & counters();
300 private:
301         ///
302         LyXLayout_ptr layout_;
303         /// if anything uses this we don't want it to.
304         Paragraph(Paragraph const &);
305 #ifdef NO_STD_LIST
306         Paragraph * next_par_;
307         Paragraph * prev_par_;
308 #endif
309         struct Pimpl;
310         ///
311         friend struct Paragraph::Pimpl;
312         ///
313         Pimpl * pimpl_;
314
315         /// unimplemented
316         void operator=(Paragraph const &);
317 };
318
319
320 inline bool isInsertedText(Paragraph const & par, lyx::pos_type pos)
321 {
322         return par.lookupChange(pos) == Change::INSERTED;
323 }
324
325
326 inline bool isDeletedText(Paragraph const & par, lyx::pos_type pos)
327 {
328         return par.lookupChange(pos) == Change::DELETED;
329 }
330
331 #endif // PARAGRAPH_H