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