]> git.lyx.org Git - lyx.git/blob - src/paragraph.h
b8d3215e92b83cc29089c7498a7421e75a97ca3b
[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 #ifdef __GNUG__
13 #pragma interface
14 #endif
15
16 #include "lyxlayout_ptr_fwd.h"
17 #include "lyxfont.h" // Just for LyXFont::FONT_SIZE
18
19 #include "insets/inset.h" // Just for Inset::Code
20
21 #include "support/types.h"
22
23 #include "LString.h"
24
25 class BufferParams;
26 class BufferView;
27 class Counters;
28 class InsetBibKey;
29 class Language;
30 class LaTeXFeatures;
31 class ParagraphParameters;
32 class TexRow;
33
34 // After 1.2.0 is released, during 1.3.0cvs, we enable this. And after
35 // a while we verify that reading of 1.2.x files work perfectly we remove
36 // this code completely. (Lgb)
37 #define NO_PEXTRA_REALLY 1
38
39 // Define this if you want to try out the new storage container for
40 // paragraphs. std::container instead of obfuscated homegrown
41 // linked list. (Lgb)
42 // This is non working and far from finished.
43 // #define NO_NEXT 1
44
45 /// A Paragraph holds all text, attributes and insets in a text paragraph
46 class Paragraph  {
47 public:
48 #ifndef NO_PEXTRA_REALLY
49         ///
50         enum PEXTRA_TYPE {
51                 ///
52                 PEXTRA_NONE,
53                 ///
54                 PEXTRA_INDENT,
55                 ///
56                 PEXTRA_MINIPAGE,
57                 ///
58                 PEXTRA_FLOATFLT
59         };
60         ///
61         enum MINIPAGE_ALIGNMENT {
62                 ///
63                 MINIPAGE_ALIGN_TOP,
64                 ///
65                 MINIPAGE_ALIGN_MIDDLE,
66                 ///
67                 MINIPAGE_ALIGN_BOTTOM
68         };
69 #endif
70         ///
71         enum META_KIND {
72                 ///
73                 META_HFILL = 1,
74                 ///
75                 META_NEWLINE,
76                 ///
77                 META_INSET
78         };
79         ///
80         typedef char value_type;
81         /// The same as ParameterStruct::depth_type
82         typedef unsigned int depth_type;
83
84         ///
85         Paragraph();
86         /// this constructor inserts the new paragraph in a list
87         explicit
88         Paragraph(Paragraph * par);
89         ///
90         Paragraph(Paragraph const &, bool same_ids);
91         /// the destructor removes the new paragraph from the list
92         ~Paragraph();
93
94         ///
95         Language const * getParLanguage(BufferParams const &) const;
96         ///
97         bool isRightToLeftPar(BufferParams const &) const;
98         ///
99         void changeLanguage(BufferParams const & bparams,
100                             Language const * from, Language const * to);
101         ///
102         bool isMultiLingual(BufferParams const &);
103
104         ///
105         string const asString(Buffer const *, bool label);
106         ///
107         string const asString(Buffer const *, lyx::pos_type beg, lyx::pos_type end,
108                               bool label);
109
110         ///
111         void writeFile(Buffer const *, std::ostream &, BufferParams const &,
112                        depth_type) const;
113         ///
114         void validate(LaTeXFeatures &) const;
115
116         /// return the unique ID of this paragraph
117         int id() const;
118         ///
119         void read();
120
121         ///
122         Paragraph * TeXOnePar(Buffer const *, BufferParams const &,
123                                  std::ostream &, TexRow & texrow,
124                                  bool moving_arg);
125
126         ///
127         int startTeXParParams(BufferParams const &, std::ostream &, bool) const;
128
129         ///
130         int endTeXParParams(BufferParams const &, std::ostream &, bool) const;
131
132
133         ///
134         bool simpleTeXOnePar(Buffer const *, BufferParams const &,
135                              std::ostream &, TexRow & texrow, bool moving_arg);
136
137         ///
138         Paragraph * TeXEnvironment(Buffer const *, BufferParams const &,
139                                       std::ostream &, TexRow & texrow);
140         ///
141         bool hasSameLayout(Paragraph const * par) const;
142
143         ///
144         void makeSameLayout(Paragraph const * par);
145
146         /// Is it the first par with same depth and layout?
147         bool isFirstInSequence() const;
148
149         /** Check if the current paragraph is the last paragraph in a
150             proof environment */
151         int getEndLabel() const;
152         ///
153         Inset * inInset() const;
154         ///
155         void setInsetOwner(Inset * i);
156         ///
157         void deleteInsetsLyXText(BufferView *);
158         ///
159         void resizeInsetsLyXText(BufferView *);
160
161         ///
162         lyx::pos_type size() const;
163         ///
164         bool empty() const;
165         ///
166         void setContentsFromPar(Paragraph * par);
167         ///
168         void clearContents();
169
170         ///
171         LyXLayout_ptr const & layout() const;
172         ///
173         void layout(LyXLayout_ptr const & new_layout);
174
175         ///
176         char enumdepth;
177
178         ///
179         char itemdepth;
180
181         ///
182         InsetBibKey * bibkey;  // ale970302
183
184         ///
185         void next(Paragraph *);
186         /** these function are able to hide closed footnotes
187          */
188         Paragraph * next();
189         ///
190         Paragraph const * next() const;
191
192         ///
193         void previous(Paragraph *);
194         ///
195         Paragraph * previous();
196         ///
197         Paragraph const * previous() const;
198
199         /// for the environments
200         Paragraph * depthHook(depth_type depth);
201         /// for the environments
202         Paragraph const * depthHook(depth_type depth) const;
203         ///
204         Paragraph * outerHook();
205         ///
206         Paragraph const * outerHook() const;
207         ///
208         int beginningOfMainBody() const;
209         ///
210         string const & getLabelstring() const;
211
212         /// the next two functions are for the manual labels
213         string const getLabelWidthString() const;
214         ///
215         void setLabelWidthString(string const & s);
216         ///
217         char getAlign() const;
218         /// The nesting depth of a paragraph
219         depth_type getDepth() const;
220         /// The maximal possible depth of a paragraph after this one
221         depth_type getMaxDepthAfter() const;
222         ///
223         void applyLayout(LyXLayout_ptr const & new_layout);
224         ///
225         int getFirstCounter(int i) const;
226         ///
227         void erase(lyx::pos_type pos);
228         /** the flag determines wether the layout should be copied
229          */
230         void breakParagraph(BufferParams const &, lyx::pos_type pos, int flag);
231         ///
232         void breakParagraphConservative(BufferParams const &, lyx::pos_type pos);
233         /** Get unistantiated font setting. Returns the difference
234             between the characters font and the layoutfont.
235             This is what is stored in the fonttable
236         */
237         LyXFont const
238         getFontSettings(BufferParams const &, lyx::pos_type pos) const;
239         ///
240         LyXFont const getFirstFontSettings() const;
241
242         /** Get fully instantiated font. If pos == -1, use the layout
243             font attached to this paragraph.
244             If pos == -2, use the label font of the layout attached here.
245             In all cases, the font is instantiated, i.e. does not have any
246             attributes with values LyXFont::INHERIT, LyXFont::IGNORE or
247             LyXFont::TOGGLE.
248         */
249         LyXFont const getFont(BufferParams const &, lyx::pos_type pos) const;
250         LyXFont const getLayoutFont(BufferParams const &) const;
251         LyXFont const getLabelFont(BufferParams const &) const;
252         ///
253         value_type getChar(lyx::pos_type pos) const;
254         ///
255         value_type getUChar(BufferParams const &, lyx::pos_type pos) const;
256         /// The position must already exist.
257         void setChar(lyx::pos_type pos, value_type c);
258         /// pos <= size() (there is a dummy font change at the end of each par)
259         void setFont(lyx::pos_type pos, LyXFont const & font);
260         /// Returns the height of the highest font in range
261         LyXFont::FONT_SIZE highestFontInRange(lyx::pos_type startpos,
262                                               lyx::pos_type endpos,
263                                               LyXFont::FONT_SIZE const def_size) const;
264         ///
265         void insertChar(lyx::pos_type pos, value_type c);
266         ///
267         void insertChar(lyx::pos_type pos, value_type c, LyXFont const &);
268         ///
269         bool checkInsertChar(LyXFont &);
270         ///
271         void insertInset(lyx::pos_type pos, Inset * inset);
272         ///
273         void insertInset(lyx::pos_type pos, Inset * inset, LyXFont const &);
274         ///
275         bool insetAllowed(Inset::Code code);
276         ///
277         Inset * getInset(lyx::pos_type pos);
278         ///
279         Inset const * getInset(lyx::pos_type pos) const;
280         /** important for cut and paste
281             Temporary change from BufferParams to Buffer. Will revert when we
282             get rid of the argument to Inset::clone(Buffer const &) */
283         void copyIntoMinibuffer(Buffer const &, lyx::pos_type pos) const;
284         ///
285         void cutIntoMinibuffer(BufferParams const &, lyx::pos_type pos);
286         ///
287         bool insertFromMinibuffer(lyx::pos_type pos);
288
289         ///
290         bool isHfill(lyx::pos_type pos) const;
291         ///
292         bool isInset(lyx::pos_type pos) const;
293         ///
294         bool isNewline(lyx::pos_type pos) const;
295         ///
296         bool isSeparator(lyx::pos_type pos) const;
297         ///
298         bool isLineSeparator(lyx::pos_type pos) const;
299         ///
300         bool isKomma(lyx::pos_type pos) const;
301         /// Used by the spellchecker
302         bool isLetter(lyx::pos_type pos) const;
303         ///
304         bool isWord(lyx::pos_type pos) const;
305
306         /** paste this paragraph with the next one
307             be carefull, this doesent make any check at all
308         */
309         void pasteParagraph(BufferParams const &);
310
311         /// returns -1 if inset not found
312         int getPositionOfInset(Inset const * inset) const;
313
314         /// some good comment here John?
315         Paragraph * getParFromID(int id) const;
316
317         ///
318         int stripLeadingSpaces();
319
320 #ifndef NO_PEXTRA_REALLY
321         /* If I set a PExtra Indent on one paragraph of a ENV_LIST-TYPE
322            I have to set it on each of it's elements */
323         ///
324         void setPExtraType(BufferParams const &, int type,
325                            string const & width, string const & widthp);
326         ///
327         void unsetPExtraType(BufferParams const &);
328 #endif
329         ///
330         bool isFreeSpacing() const;
331
332         ParagraphParameters & params();
333         ParagraphParameters const & params() const;
334 private:
335         ///
336         LyXLayout_ptr layout_;
337 public:
338         /** Both these definitions must be made public to keep Compaq cxx 6.5
339          *  happy.
340          */
341         ///
342         struct InsetTable {
343                 ///
344                 lyx::pos_type pos;
345                 ///
346                 Inset * inset;
347                 ///
348                 InsetTable(lyx::pos_type p, Inset * i) : pos(p), inset(i) {}
349         };
350
351         ///
352         typedef std::vector<InsetTable> InsetList;
353 private:
354         ///
355         InsetList insetlist;
356 public:
357         ///
358         class inset_iterator {
359         public:
360                 ///
361                 inset_iterator() {}
362                 //
363                 inset_iterator(InsetList::iterator const & iter);
364                 ///
365                 inset_iterator & operator++() {
366                         ++it;
367                         return *this;
368                 }
369                 ///
370                 Inset * operator*() { return it->inset; }
371                 ///
372                 Inset * operator->() { return it->inset; }
373
374                 ///
375                 lyx::pos_type getPos() const { return it->pos; }
376                 ///
377                 bool operator==(inset_iterator const & iter) const {
378                         return it == iter.it;
379                 }
380                 ///
381                 bool operator!=(inset_iterator const & iter) const {
382                         return it != iter.it;
383                 }
384         private:
385                 ///
386                 InsetList::iterator it;
387         };
388         ///
389         friend class inset_iterator;
390
391         ///
392         inset_iterator inset_iterator_begin();
393         ///
394         inset_iterator inset_iterator_end();
395         /// returns inset iterator of the first inset at or after pos.
396         inset_iterator InsetIterator(lyx::pos_type pos);
397
398         ///
399         Counters & counters();
400
401 private:
402         /// if anything uses this we don't want it to.
403         Paragraph(Paragraph const &);
404         ///
405         Paragraph * next_;
406         ///
407         Paragraph * previous_;
408
409         struct Pimpl;
410         ///
411         friend struct Paragraph::Pimpl;
412         ///
413         Pimpl * pimpl_;
414 };
415
416 #endif