]> git.lyx.org Git - lyx.git/blob - src/paragraph.h
6f0c26648dcfeef62b8c697e26b92c5959717115
[lyx.git] / src / paragraph.h
1 // -*- C++ -*-
2 /**
3  * \file paragraph.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Asger Alstrup
8  * \author Lars Gullik Bjønnes
9  * \author John Levon
10  * \author André Pönitz
11  * \author Jürgen Vigna
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #ifndef PARAGRAPH_H
17 #define PARAGRAPH_H
18
19 #include "lyxlayout_ptr_fwd.h"
20 #include "lyxfont.h" // Just for LyXFont::FONT_SIZE
21 #include "InsetList.h"
22
23 #include "insets/inset.h" // Just for InsetOld::Code
24
25 #include "support/types.h"
26 #include "changes.h"
27 #include "RowList.h"
28
29 #include "LString.h"
30
31 class Buffer;
32 class BufferParams;
33 class BufferView;
34 class Counters;
35 class InsetBibitem;
36 class Language;
37 class LaTeXFeatures;
38 class LatexRunParams;
39 class ParagraphParameters;
40 class TexRow;
41 class ParagraphList;
42 class UpdatableInset;
43
44 /// A Paragraph holds all text, attributes and insets in a text paragraph
45 class Paragraph  {
46 public:
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 &);
66         ///
67         void operator=(Paragraph const &);
68         /// the destructor removes the new paragraph from the list
69         ~Paragraph();
70
71         ///
72         Language const * getParLanguage(BufferParams const &) const;
73         ///
74         bool isRightToLeftPar(BufferParams const &) const;
75         ///
76         void changeLanguage(BufferParams const & bparams,
77                             Language const * from, Language const * to);
78         ///
79         bool isMultiLingual(BufferParams const &);
80
81         ///
82         string const asString(Buffer const &, bool label) const;
83         ///
84         string const asString(Buffer const &, lyx::pos_type beg, lyx::pos_type end,
85                               bool label) const;
86
87         ///
88         void write(Buffer const &, std::ostream &, BufferParams const &,
89                        depth_type & depth) const;
90         ///
91         void validate(LaTeXFeatures &) const;
92
93         /// return the unique ID of this paragraph
94         int id() const;
95         /// Set the Id of this paragraph.
96         void id(int);
97
98         ///
99         int startTeXParParams(BufferParams const &, std::ostream &, bool) const;
100
101         ///
102         int endTeXParParams(BufferParams const &, std::ostream &, bool) const;
103
104
105         ///
106         bool simpleTeXOnePar(Buffer const &, BufferParams const &,
107                              LyXFont const & outerfont, std::ostream &,
108                              TexRow & texrow, LatexRunParams const &);
109
110         ///
111         bool hasSameLayout(Paragraph const & par) const;
112
113         ///
114         void makeSameLayout(Paragraph const & par);
115
116         ///
117         UpdatableInset * inInset() const;
118         ///
119         void setInsetOwner(UpdatableInset * inset);
120         ///
121         void deleteInsetsLyXText(BufferView *);
122
123         ///
124         lyx::pos_type size() const;
125         ///
126         bool empty() const;
127         ///
128         void setContentsFromPar(Paragraph const & par);
129         ///
130         void clearContents();
131
132         ///
133         LyXLayout_ptr const & layout() const;
134         ///
135         void layout(LyXLayout_ptr const & new_layout);
136
137         ///
138         char enumdepth;
139
140         ///
141         char itemdepth;
142
143         ///
144         InsetBibitem * bibitem() const;  // ale970302
145
146         /// initialise tracking for this par
147         void trackChanges(Change::Type = Change::UNCHANGED);
148
149         /// stop tracking
150         void untrackChanges();
151
152         /// set entire paragraph to new text for change tracking
153         void cleanChanges();
154
155         /// look up change type at given pos
156         Change::Type lookupChange(lyx::pos_type pos) const;
157
158         /// look up change at given pos
159         Change const lookupChangeFull(lyx::pos_type pos) const;
160
161         /// is there a change within the given range ?
162         bool isChanged(lyx::pos_type start, lyx::pos_type end) const;
163
164         /// is there a non-addition in this range ?
165         bool isChangeEdited(lyx::pos_type start, lyx::pos_type end) const;
166
167         /// set change at pos
168         void setChange(lyx::pos_type pos, Change::Type type);
169
170         /// accept change
171         void acceptChange(lyx::pos_type start, lyx::pos_type end);
172
173         /// reject change
174         void rejectChange(lyx::pos_type start, lyx::pos_type end);
175
176         /// mark whole par as erased
177         void markErased();
178
179         /// Paragraphs can contain "manual labels", for example, Description
180         /// environment. The text for this user-editable label is stored in
181         /// the paragraph alongside the text of the rest of the paragraph
182         /// (the body). This function returns the starting position of the
183         /// body of the text in the paragraph.
184         int beginningOfBody() const;
185
186         ///
187         string const & getLabelstring() const;
188
189         /// the next two functions are for the manual labels
190         string const getLabelWidthString() const;
191         ///
192         void setLabelWidthString(string const & s);
193         ///
194         char getAlign() const;
195         /// The nesting depth of a paragraph
196         depth_type getDepth() const;
197         /// The maximal possible depth of a paragraph after this one
198         depth_type getMaxDepthAfter() const;
199         ///
200         void applyLayout(LyXLayout_ptr const & new_layout);
201
202         /// definite erase
203         void eraseIntern(lyx::pos_type pos);
204         /// erase the char at the given position
205         bool erase(lyx::pos_type pos);
206         /// erase the given range. Returns the number of chars actually erased
207         int erase(lyx::pos_type start, lyx::pos_type end);
208
209         /** Get uninstantiated font setting. Returns the difference
210             between the characters font and the layoutfont.
211             This is what is stored in the fonttable
212         */
213         LyXFont const
214         getFontSettings(BufferParams const &, lyx::pos_type pos) const;
215         ///
216         LyXFont const getFirstFontSettings() const;
217
218         /** Get fully instantiated font. If pos == -1, use the layout
219             font attached to this paragraph.
220             If pos == -2, use the label font of the layout attached here.
221             In all cases, the font is instantiated, i.e. does not have any
222             attributes with values LyXFont::INHERIT, LyXFont::IGNORE or
223             LyXFont::TOGGLE.
224         */
225         LyXFont const getFont(BufferParams const &, lyx::pos_type pos,
226                               LyXFont const & outerfont) const;
227         LyXFont const getLayoutFont(BufferParams const &,
228                                     LyXFont const & outerfont) const;
229         LyXFont const getLabelFont(BufferParams const &,
230                                    LyXFont const & outerfont) const;
231         /**
232          * The font returned by the above functions is the same in a
233          * span of characters. This method will return the last position
234          * in the paragraph for which that font is the same.
235          * This can be used to avoid unnecessary calls to getFont.
236          */
237         lyx::pos_type getEndPosOfFontSpan(lyx::pos_type pos) const;
238         ///
239         value_type getChar(lyx::pos_type pos) const;
240         ///
241         value_type getUChar(BufferParams const &, lyx::pos_type pos) const;
242         /// The position must already exist.
243         void setChar(lyx::pos_type pos, value_type c);
244         /// pos <= size() (there is a dummy font change at the end of each par)
245         void setFont(lyx::pos_type pos, LyXFont const & font);
246         /// Returns the height of the highest font in range
247         LyXFont::FONT_SIZE
248         highestFontInRange(lyx::pos_type startpos,
249                            lyx::pos_type endpos,
250                            LyXFont::FONT_SIZE const def_size) const;
251         ///
252         void insertChar(lyx::pos_type pos, value_type c);
253         ///
254         void insertChar(lyx::pos_type pos, value_type c, LyXFont const &, Change change = Change(Change::INSERTED));
255         ///
256         bool checkInsertChar(LyXFont &);
257         ///
258         void insertInset(lyx::pos_type pos, InsetOld * inset);
259         ///
260         void insertInset(lyx::pos_type pos, InsetOld * inset, LyXFont const &, Change change = Change(Change::INSERTED));
261         ///
262         bool insetAllowed(InsetOld::Code code);
263         ///
264         InsetOld * getInset(lyx::pos_type pos);
265         ///
266         InsetOld const * getInset(lyx::pos_type pos) const;
267
268         ///
269         bool isHfill(lyx::pos_type pos) const;
270         ///
271         bool isInset(lyx::pos_type pos) const;
272         ///
273         bool isNewline(lyx::pos_type pos) const;
274         ///
275         bool isSeparator(lyx::pos_type pos) const;
276         ///
277         bool isLineSeparator(lyx::pos_type pos) const;
278         ///
279         bool isKomma(lyx::pos_type pos) const;
280         /// Used by the spellchecker
281         bool isLetter(lyx::pos_type pos) const;
282         ///
283         bool isWord(lyx::pos_type pos) const;
284
285         /// returns -1 if inset not found
286         int getPositionOfInset(InsetOld const * inset) const;
287
288         ///
289         int stripLeadingSpaces();
290
291         /// return true if we allow multiple spaces
292         bool isFreeSpacing() const;
293
294         /// return true if we allow this par to stay empty
295         bool allowEmpty() const;
296
297         ///
298         ParagraphParameters & params();
299         ///
300         ParagraphParameters const & params() const;
301         ///
302         InsetList insetlist;
303
304         ///
305         mutable RowList rows;
306         /// last draw y position (baseline of top row)
307         int y;
308
309 private:
310         ///
311         LyXLayout_ptr layout_;
312
313         struct Pimpl;
314         ///
315         friend struct Paragraph::Pimpl;
316         ///
317         Pimpl * pimpl_;
318
319 };
320
321
322 inline bool isInsertedText(Paragraph const & par, lyx::pos_type pos)
323 {
324         return par.lookupChange(pos) == Change::INSERTED;
325 }
326
327
328 inline bool isDeletedText(Paragraph const & par, lyx::pos_type pos)
329 {
330         return par.lookupChange(pos) == Change::DELETED;
331 }
332
333 #endif // PARAGRAPH_H