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