]> git.lyx.org Git - lyx.git/blob - src/Paragraph.h
Correct early return position for if use_pixmap_cache_ check
[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 "FontEnums.h"
20 #include "SpellChecker.h"
21
22 #include "support/strfwd.h"
23 #include "support/types.h"
24
25 #include <set>
26
27 namespace lyx {
28
29 class AuthorList;
30 class Buffer;
31 class BufferParams;
32 class Change;
33 class Counters;
34 class Cursor;
35 class CursorSlice;
36 class DocIterator;
37 class docstring_list;
38 class DocumentClass;
39 class Inset;
40 class InsetBibitem;
41 class LaTeXFeatures;
42 class Inset_code;
43 class InsetList;
44 class Language;
45 class Layout;
46 class Font;
47 class Font_size;
48 class MetricsInfo;
49 class OutputParams;
50 class PainterInfo;
51 class ParagraphParameters;
52 class TexRow;
53 class Toc;
54 class WordLangTuple;
55 class XHTMLStream;
56 class otexstream;
57
58 class FontSpan {
59 public:
60         /// Invalid font span containing no character
61         FontSpan() : first(0), last(-1) {}
62         /// Span including first and last
63         FontSpan(pos_type f, pos_type l) : first(f), last(l) {}
64
65 public:
66         /// Range including first and last.
67         pos_type first, last;
68
69         inline bool operator<(FontSpan const & s) const
70         {
71                 return first < s.first;
72         }
73         
74         inline bool operator==(FontSpan const & s) const
75         {
76                 return first == s.first && last == s.last;
77         }
78
79         inline bool contains(pos_type p) const
80         {
81                 return first <= p && p <= last;
82         }
83
84         inline size_t size() const
85         {
86                 return empty() ? 0 : last - first;
87         }
88         
89
90         inline FontSpan intersect(FontSpan const & f) const
91         {
92                 FontSpan result = FontSpan();
93                 if (contains(f.first))
94                         result.first = f.first;
95                 else if (f.contains(first))
96                         result.first = first;
97                 else
98                         return result;
99                 if (contains(f.last))
100                         result.last = f.last;
101                 else if (f.contains(last))
102                         result.last = last;
103                 return result;
104         }
105         
106         inline bool empty() const
107         {
108                 return first > last;
109         }
110 };
111
112 ///
113 enum TextCase {
114         ///
115         text_lowercase = 0,
116         ///
117         text_capitalization = 1,
118         ///
119         text_uppercase = 2
120 };
121
122
123 ///
124 enum AsStringParameter
125 {
126         AS_STR_NONE = 0, ///< No option, only printable characters.
127         AS_STR_LABEL = 1, ///< Prefix with paragraph label.
128         AS_STR_INSETS = 2, ///< Go into insets.
129         AS_STR_NEWLINES = 4, ///< Get also newline characters.
130         AS_STR_SKIPDELETE = 8, ///< Skip deleted text in change tracking.
131         AS_STR_PLAINTEXT = 16 ///< Don't export formatting when descending into insets.
132 };
133
134
135 /// A Paragraph holds all text, attributes and insets in a text paragraph
136 class Paragraph
137 {
138 public:
139         ///
140         Paragraph();
141         /// Copy constructor.
142         Paragraph(Paragraph const &);
143         /// Partial copy constructor.
144         /// Copy the Paragraph contents from \p beg to \p end (without end).
145         Paragraph(Paragraph const & par, pos_type beg, pos_type end);
146         ///
147         Paragraph & operator=(Paragraph const &);
148         ///
149         ~Paragraph();
150         ///
151         int id() const;
152         ///
153         void setId(int id);
154
155         ///
156         void addChangesToToc(DocIterator const & cdit, Buffer const & buf,
157                 bool output_active) const;
158         ///
159         Language const * getParLanguage(BufferParams const &) const;
160         ///
161         bool isRTL(BufferParams const &) const;
162         ///
163         void changeLanguage(BufferParams const & bparams,
164                             Language const * from, Language const * to);
165         ///
166         bool isMultiLingual(BufferParams const &) const;
167         ///
168         void getLanguages(std::set<Language const *> &) const;
169
170         /// Convert the paragraph to a string.
171         /// \param AsStringParameter options. This can contain any combination of
172         /// asStringParameter values. Valid examples:
173         ///             asString(AS_STR_LABEL)
174         ///             asString(AS_STR_LABEL | AS_STR_INSETS)
175         ///             asString(AS_STR_INSETS)
176         docstring asString(int options = AS_STR_NONE) const;
177
178         /// Convert the paragraph to a string.
179         /// \note If options includes AS_STR_PLAINTEXT, then runparams must be != 0
180         docstring asString(pos_type beg, pos_type end,
181                            int options = AS_STR_NONE,
182                            const OutputParams *runparams = 0) const;
183         ///
184         void forOutliner(docstring &, size_t const maxlen,
185                                          bool const shorten = true) const;
186
187         ///
188         void write(std::ostream &, BufferParams const &,
189                 depth_type & depth) const;
190         ///
191         void validate(LaTeXFeatures &) const;
192
193         /// \param force means: output even if layout.inpreamble is true.
194         void latex(BufferParams const &, Font const & outerfont, otexstream &,
195                 OutputParams const &, int start_pos = 0, int end_pos = -1,
196                 bool force = false) const;
197
198         /// Can we drop the standard paragraph wrapper?
199         bool emptyTag() const;
200
201         /// Get the id of the paragraph, usefull for docbook
202         std::string getID(Buffer const & buf, OutputParams const & runparams) const;
203
204         /// Output the first word of a paragraph, return the position where it left.
205         pos_type firstWordDocBook(odocstream & os, OutputParams const & runparams) const;
206
207         /// Output the first word of a paragraph, return the position where it left.
208         pos_type firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runparams) const;
209
210         /// Writes to stream the docbook representation
211         void simpleDocBookOnePar(Buffer const & buf,
212                                  odocstream &,
213                                  OutputParams const & runparams,
214                                  Font const & outerfont,
215                                  pos_type initial = 0) const;
216         /// \return any material that has had to be deferred until after the
217         /// paragraph has closed.
218         docstring simpleLyXHTMLOnePar(Buffer const & buf,
219                                  XHTMLStream & xs,
220                                  OutputParams const & runparams,
221                                  Font const & outerfont,
222                                  pos_type initial = 0) const;
223
224         ///
225         bool hasSameLayout(Paragraph const & par) const;
226
227         ///
228         void makeSameLayout(Paragraph const & par);
229
230         ///
231         void setInsetOwner(Inset const * inset);
232         ///
233         Inset const & inInset() const;
234         ///
235         bool allowParagraphCustomization() const;
236         ///
237         bool usePlainLayout() const;
238         ///
239         bool isPassThru() const;
240         ///
241         pos_type size() const;
242         ///
243         bool empty() const;
244
245         ///
246         Layout const & layout() const;
247         /// Do not pass a temporary to this!
248         void setLayout(Layout const & layout);
249         ///
250         void setPlainOrDefaultLayout(DocumentClass const & tc);
251         ///
252         void setDefaultLayout(DocumentClass const & tc);
253         ///
254         void setPlainLayout(DocumentClass const & tc);
255
256         /// This is the item depth, only used by enumerate and itemize
257         signed char itemdepth;
258
259         /// look up change at given pos
260         Change const & lookupChange(pos_type pos) const;
261
262         /// is there a change within the given range ?
263         bool isChanged(pos_type start, pos_type end) const;
264         /// is there an unchanged char at the given pos ?
265         bool isChanged(pos_type pos) const;
266         /// is there an insertion at the given pos ?
267         bool isInserted(pos_type pos) const;
268         /// is there a deletion at the given pos ?
269         bool isDeleted(pos_type pos) const;
270         /// is the whole paragraph deleted ?
271         bool isDeleted(pos_type start, pos_type end) const;
272
273         /// will the paragraph be physically merged with the next
274         /// one if the imaginary end-of-par character is logically deleted?
275         bool isMergedOnEndOfParDeletion(bool trackChanges) const;
276
277         /// set change for the entire par
278         void setChange(Change const & change);
279
280         /// set change at given pos
281         void setChange(pos_type pos, Change const & change);
282
283         /// accept changes within the given range
284         void acceptChanges(pos_type start, pos_type end);
285
286         /// reject changes within the given range
287         void rejectChanges(pos_type start, pos_type end);
288
289         /// Paragraphs can contain "manual labels", for example, Description
290         /// environment. The text for this user-editable label is stored in
291         /// the paragraph alongside the text of the rest of the paragraph
292         /// (the body). This function returns the starting position of the
293         /// body of the text in the paragraph.
294         pos_type beginOfBody() const;
295         /// recompute this value
296         void setBeginOfBody();
297
298         ///
299         docstring expandLabel(Layout const &, BufferParams const &) const;
300         ///
301         docstring expandDocBookLabel(Layout const &, BufferParams const &) const;
302         ///
303         docstring const & labelString() const;
304         /// the next two functions are for the manual labels
305         docstring const getLabelWidthString() const;
306         /// Set label width string.
307         void setLabelWidthString(docstring const & s);
308         /// Actual paragraph alignment used
309         char getAlign() const;
310         /// The nesting depth of a paragraph
311         depth_type getDepth() const;
312         /// The maximal possible depth of a paragraph after this one
313         depth_type getMaxDepthAfter() const;
314         ///
315         void applyLayout(Layout const & new_layout);
316
317         /// (logically) erase the char at pos; return true if it was actually erased
318         bool eraseChar(pos_type pos, bool trackChanges);
319         /// (logically) erase the given range; return the number of chars actually erased
320         int eraseChars(pos_type start, pos_type end, bool trackChanges);
321
322         ///
323         void resetFonts(Font const & font);
324
325         /** Get uninstantiated font setting. Returns the difference
326             between the characters font and the layoutfont.
327             This is what is stored in the fonttable
328         */
329         Font const &
330         getFontSettings(BufferParams const &, pos_type pos) const;
331         ///
332         Font const & getFirstFontSettings(BufferParams const &) const;
333
334         /** Get fully instantiated font. If pos == -1, use the layout
335             font attached to this paragraph.
336             If pos == -2, use the label font of the layout attached here.
337             In all cases, the font is instantiated, i.e. does not have any
338             attributes with values FONT_INHERIT, FONT_IGNORE or
339             FONT_TOGGLE.
340         */
341         Font const getFont(BufferParams const &, pos_type pos,
342                               Font const & outerfont) const;
343         Font const getLayoutFont(BufferParams const &,
344                                     Font const & outerfont) const;
345         Font const getLabelFont(BufferParams const &,
346                                    Font const & outerfont) const;
347         /**
348          * The font returned by the above functions is the same in a
349          * span of characters. This method will return the first and
350          * the last positions in the paragraph for which that font is
351          * the same. This can be used to avoid unnecessary calls to getFont.
352          */
353         FontSpan fontSpan(pos_type pos) const;
354         ///
355         char_type getChar(pos_type pos) const;
356         /// Get the char, but mirror all bracket characters if it is right-to-left
357         char_type getUChar(BufferParams const &, pos_type pos) const;
358         /// pos <= size() (there is a dummy font change at the end of each par)
359         void setFont(pos_type pos, Font const & font);
360         /// Returns the height of the highest font in range
361         FontSize highestFontInRange(pos_type startpos,
362                                         pos_type endpos, FontSize def_size) const;
363         ///
364         void insert(pos_type pos, docstring const & str,
365                     Font const & font, Change const & change);
366
367         ///
368         void appendString(docstring const & s, Font const & font,
369                 Change const & change);
370         ///
371         void appendChar(char_type c, Font const & font, Change const & change);
372         ///
373         void insertChar(pos_type pos, char_type c, bool trackChanges);
374         ///
375         void insertChar(pos_type pos, char_type c,
376                         Font const &, bool trackChanges);
377         ///
378         void insertChar(pos_type pos, char_type c,
379                         Font const &, Change const & change);
380         /// Insert \p inset at position \p pos with \p change traking status and
381         /// \p font.
382         /// \return true if successful.
383         bool insertInset(pos_type pos, Inset * inset,
384                          Font const & font, Change const & change);
385         ///
386         Inset * getInset(pos_type pos);
387         ///
388         Inset const * getInset(pos_type pos) const;
389
390         /// Release inset at given position.
391         /// \warning does not honour change tracking!
392         /// Therefore, it should only be used for breaking and merging
393         /// paragraphs
394         Inset * releaseInset(pos_type pos);
395
396         ///
397         InsetList const & insetList() const;
398         ///
399         void setBuffer(Buffer &);
400
401         ///
402         bool isHfill(pos_type pos) const;
403
404         /// hinted by profiler
405         bool isInset(pos_type pos) const;
406         ///
407         bool isNewline(pos_type pos) const;
408         ///
409         bool isEnvSeparator(pos_type pos) const;
410         /// return true if the char is a word separator
411         bool isSeparator(pos_type pos) const;
412         ///
413         bool isLineSeparator(pos_type pos) const;
414         /// True if the character/inset at this point is a word separator.
415         /// Note that digits in particular are not considered as word separator.
416         bool isWordSeparator(pos_type pos) const;
417         /// True if the element at this point is a character that is not a letter.
418         bool isChar(pos_type pos) const;
419         /// True if the element at this point is a space
420         bool isSpace(pos_type pos) const;
421         /// True if the element at this point is a hard hyphen or a apostrophe
422         /// If it is enclosed by spaces return false
423         bool isHardHyphenOrApostrophe(pos_type pos) const;
424
425         /// returns true if at least one line break or line separator has been deleted
426         /// at the beginning of the paragraph (either physically or logically)
427         bool stripLeadingSpaces(bool trackChanges);
428
429         /// return true if we allow multiple spaces
430         bool isFreeSpacing() const;
431
432         /// return true if we allow this par to stay empty
433         bool allowEmpty() const;
434         ///
435         ParagraphParameters & params();
436         ///
437         ParagraphParameters const & params() const;
438
439         /// Check whether a call to fixBiblio is needed.
440         bool brokenBiblio() const;
441         /// Check if we are in a Biblio environment and insert or
442         /// delete InsetBibitems as necessary.
443         /// \retval int 1, if we had to add an inset, in which case
444         /// the cursor will need to move cursor forward; -pos, if we deleted
445         /// an inset, in which case pos is the position from which the inset
446         /// was deleted, and the cursor will need to be moved back one if it
447         /// was previously past that position. Return 0 otherwise.
448         int fixBiblio(Buffer const & buffer);
449
450         /// For each author, set 'used' to true if there is a change
451         /// by this author in the paragraph.
452         void checkAuthors(AuthorList const & authorList);
453
454         ///
455         void changeCase(BufferParams const & bparams, pos_type pos,
456                 pos_type & right, TextCase action);
457
458         /// find \param str string inside Paragraph.
459         /// \return non-zero if the specified string is at the specified
460         ///     position; returned value is the actual match length in positions
461         /// \param del specifies whether deleted strings in ct mode will be considered
462         int find(
463                 docstring const & str, ///< string to search
464                 bool cs, ///<
465                 bool mw, ///<
466                 pos_type pos, ///< start from here.
467                 bool del = true) const;
468         
469         void locateWord(pos_type & from, pos_type & to,
470                 word_location const loc) const;
471         ///
472         void updateWords();
473
474         /// Spellcheck word at position \p from and fill in found misspelled word
475         /// and \p suggestions if \p do_suggestion is true.
476         /// \return result from spell checker, SpellChecker::UNKNOWN_WORD when misspelled.
477         SpellChecker::Result spellCheck(pos_type & from, pos_type & to, WordLangTuple & wl,
478                 docstring_list & suggestions, bool do_suggestion =  true,
479                 bool check_learned = false) const;
480
481         /// Spell checker status at position \p pos.
482         /// If \p check_boundary is true the status of position immediately
483         /// before \p pos is tested too if it is at word boundary.
484         /// \return true if one of the tested positions is misspelled.
485         bool isMisspelled(pos_type pos, bool check_boundary = false) const;
486
487         /// \return the spell range (misspelled area) around position.
488         /// Range is empty if word at position is correctly spelled.
489         FontSpan const & getSpellRange(pos_type pos) const;
490
491         /// spell check of whole paragraph
492         /// remember results until call of requestSpellCheck()
493         void spellCheck() const;
494
495         /// query state of spell checker results
496         bool needsSpellCheck() const;
497         /// mark position of text manipulation to inform the spell checker
498         /// default value -1 marks the whole paragraph to be checked (again)
499         void requestSpellCheck(pos_type pos = -1);
500
501         /// an automatically generated identifying label for this paragraph.
502         /// presently used only in the XHTML output routines.
503         std::string magicLabel() const;
504
505 private:
506         /// Expand the counters for the labelstring of \c layout
507         docstring expandParagraphLabel(Layout const &, BufferParams const &,
508                 bool process_appendix) const;
509         ///
510         void deregisterWords();
511         ///
512         void collectWords();
513         ///
514         void registerWords();
515
516         /// Pimpl away stuff
517         class Private;
518         ///
519         friend class Paragraph::Private;
520         ///
521         Private * d;
522 };
523
524 } // namespace lyx
525
526 #endif // PARAGRAPH_H