]> git.lyx.org Git - features.git/blob - src/Text.h
Merge the Row and RowMetrics class. Those classes were separated in the 1.4 code...
[features.git] / src / Text.h
1 // -*- C++ -*-
2 /**
3  * \file Text.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author Lars Gullik Bjønnes
9  * \author John Levon
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef TEXT_H
15 #define TEXT_H
16
17 #include "Bidi.h"
18 #include "DispatchResult.h"
19 #include "Font.h"
20 #include "Layout.h"
21 #include "lyxlayout_ptr_fwd.h"
22 #include "ParagraphList.h"
23
24 #include <iosfwd>
25
26
27 namespace lyx {
28
29 class Buffer;
30 class BufferParams;
31 class BufferView;
32 class CursorSlice;
33 class DocIterator;
34 class ErrorList;
35 class FuncRequest;
36 class FuncStatus;
37 class Inset;
38 class Color_color;
39 class Cursor;
40 class PainterInfo;
41 class Row;
42 class Spacing;
43
44
45 /// This class encapsulates the main text data and operations in LyX
46 class Text {
47 public:
48         /// constructor
49         explicit Text();
50
51         /// \return true if there's no content at all.
52         /// \warning a non standard layout on an empty paragraph doesn't
53         // count as empty.
54         bool empty() const;
55
56         ///
57         Font getFont(Buffer const & buffer, Paragraph const & par,
58                 pos_type pos) const;
59         ///
60         void applyOuterFont(Buffer const & buffer, Font &) const;
61         ///
62         Font getLayoutFont(Buffer const & buffer, pit_type pit) const;
63         ///
64         Font getLabelFont(Buffer const & buffer,
65                 Paragraph const & par) const;
66         /** Set font of character at position \p pos in paragraph \p pit.
67          *  Must not be called if \p pos denotes an inset with text contents,
68          *  and the inset is not allowed inside a font change (see below).
69          */
70         void setCharFont(Buffer const & buffer, pit_type pit, pos_type pos,
71                 Font const & font);
72
73         /** Needed to propagate font changes to all text cells of insets
74          *  that are not allowed inside a font change (bug 1973).
75          *  Must not be called if \p pos denotes an ordinary character or an
76          *  inset that is alowed inside a font change.
77          *  FIXME: This should be removed, see documentation of noFontChange
78          *  in insetbase.h
79          */
80         void setInsetFont(Buffer const & buffer, pit_type pit, pos_type pos,
81                 Font const & font, bool toggleall = false);
82
83         /// what you expect when pressing \<enter\> at cursor position
84         void breakParagraph(Cursor & cur, bool keep_layout = false);
85
86         /// set layout over selection
87         void setLayout(Buffer const & buffer, pit_type start, pit_type end,
88                 docstring const & layout);
89         /// Set given layout to current cursor position.
90         /// FIXME: replace Cursor with DocIterator.
91         void setLayout(Cursor & cur, docstring const & layout);
92
93         /// what type of depth change to make
94         enum DEPTH_CHANGE {
95                 INC_DEPTH,
96                 DEC_DEPTH
97         };
98         /// Increase or decrease the nesting depth of the selected paragraph(s)
99         /// FIXME: replace Cursor with DocIterator.
100         void changeDepth(Cursor & cur, DEPTH_CHANGE type);
101
102         /// Returns whether something would be changed by changeDepth
103         /// FIXME: replace Cursor with DocIterator.
104         bool changeDepthAllowed(Cursor & cur, DEPTH_CHANGE type) const;
105
106         /// Set font over selection paragraphs and rebreak.
107         /// FIXME: replace Cursor with DocIterator.
108         void setFont(Cursor & cur, Font const &, bool toggleall = false);
109         /// Set font from \p begin to \p end and rebreak.
110         void setFont(Buffer const & buffer, CursorSlice const & begin,
111                 CursorSlice const & end, Font const &,
112                 bool toggleall = false);
113
114         ///
115         void toggleFree(Cursor & cur, Font const &, bool toggleall = false);
116
117         /// ???
118         /// FIXME: replace Cursor with DocIterator.
119         docstring getStringToIndex(Cursor const & cur);
120
121         /// insert a character at cursor position
122         /// FIXME: replace Cursor with DocIterator.
123         void insertChar(Cursor & cur, char_type c);
124         /// insert an inset at cursor position
125         /// FIXME: replace Cursor with DocIterator.
126         void insertInset(Cursor & cur, Inset * inset);
127
128         /// draw text (only used for insets)
129         void draw(PainterInfo & pi, int x, int y) const;
130         /// draw textselection
131         void drawSelection(PainterInfo & pi, int x, int y) const;
132
133         /// try to handle that request
134         /// FIXME: replace Cursor with DocIterator.
135         void dispatch(Cursor & cur, FuncRequest & cmd);
136         /// do we want to handle this event?
137         bool getStatus(Cursor & cur, FuncRequest const & cmd,
138                 FuncStatus & status) const;
139
140         /// read-only access to individual paragraph
141         Paragraph const & getPar(pit_type pit) const { return pars_[pit]; }
142         /// read-write access to individual paragraph
143         Paragraph & getPar(pit_type pit) { return pars_[pit]; }
144         // Returns the current font and depth as a message.
145         /// FIXME: replace Cursor with DocIterator.
146         docstring currentState(Cursor & cur);
147
148         /** returns row near the specified
149           * y-coordinate in given paragraph (relative to the screen).
150           */
151         /// FIXME: move to TextMetrics.
152         Row const & getRowNearY(BufferView const & bv, int y,
153                 pit_type pit) const;
154
155         /// returns the paragraph number closest to screen y-coordinate.
156         /// This method uses the BufferView CoordCache to locate the
157         /// paragraph. The y-coodinate is allowed to be off-screen and
158         /// the CoordCache will be automatically updated if needed. This is
159         /// the reason why we need a non const BufferView.
160         /// FIXME: move to TextMetrics.
161         pit_type getPitNearY(BufferView & bv, int y) const;
162
163         /** Find the word under \c from in the relative location
164          *  defined by \c word_location.
165          *  @param from return here the start of the word
166          *  @param to return here the end of the word
167          */
168         void getWord(CursorSlice & from, CursorSlice & to, word_location const);
169         /// just selects the word the cursor is in
170         void selectWord(Cursor & cur, word_location loc);
171
172         /// what type of change operation to make
173         enum ChangeOp {
174                 ACCEPT,
175                 REJECT
176         };
177         /// accept or reject the selected change
178         void acceptOrRejectChanges(Cursor & cur, ChangeOp op);
179         /// accept the changes within the complete Text
180         void acceptChanges(BufferParams const & bparams);
181         /// reject the changes within the complete Text
182         void rejectChanges(BufferParams const & bparams);
183
184         /// returns true if par was empty and was removed
185         bool setCursor(Cursor & cur, pit_type par, pos_type pos,
186                        bool setfont = true, bool boundary = false);
187         ///
188         void setCursor(CursorSlice &, pit_type par, pos_type pos);
189         ///
190         void setCursorIntern(Cursor & cur, pit_type par,
191                  pos_type pos, bool setfont = true, bool boundary = false);
192         ///
193         void setCurrentFont(Cursor & cur);
194
195         ///
196         void recUndo(Cursor & cur, pit_type first, pit_type last) const;
197         ///
198         void recUndo(Cursor & cur, pit_type first) const;
199
200         /// sets cursor only within this Text.
201         /// x,y are screen coordinates
202         void setCursorFromCoordinates(Cursor & cur, int x, int y);
203
204         /// sets cursor recursively descending into nested editable insets
205         /**
206         \return the inset pointer if x,y is covering that inset
207         \param x,y are absolute screen coordinates.
208         \retval inset is non-null if the cursor is positionned inside
209         */
210         /// FIXME: move to TextMetrics.
211         /// FIXME: cleanup to use BufferView::getCoveringInset() and
212         /// setCursorFromCoordinates() instead of checkInsetHit().
213         Inset * editXY(Cursor & cur, int x, int y);
214
215         /// Move cursor one position left
216         /**
217          * Returns true if an update is needed after the move.
218          */
219         bool cursorLeft(Cursor & cur);
220         /// Move cursor one position right
221         /**
222          * Returns true if an update is needed after the move.
223          */
224         bool cursorRight(Cursor & cur);
225         ///
226         bool cursorLeftOneWord(Cursor & cur);
227         ///
228         bool cursorRightOneWord(Cursor & cur);
229         ///
230         bool cursorUpParagraph(Cursor & cur);
231         ///
232         bool cursorDownParagraph(Cursor & cur);
233         ///
234         /// FIXME: move to TextMetrics.
235         bool cursorHome(Cursor & cur);
236         ///
237         /// FIXME: move to TextMetrics.
238         bool cursorEnd(Cursor & cur);
239         ///
240         void cursorPrevious(Cursor & cur);
241         ///
242         void cursorNext(Cursor & cur);
243         ///
244         bool cursorTop(Cursor & cur);
245         ///
246         bool cursorBottom(Cursor & cur);
247         /// Erase character at cursor. Honour change tracking
248         /// FIXME: replace Cursor with DocIterator.
249         bool erase(Cursor & cur);
250         /// Delete character before cursor. Honour CT
251         /// FIXME: replace Cursor with DocIterator.
252         bool backspace(Cursor & cur);
253         // Dissolve the inset under cursor
254         /// FIXME: replace Cursor with DocIterator.
255         bool dissolveInset(Cursor & cur);
256         ///
257         bool selectWordWhenUnderCursor(Cursor & cur, word_location);
258         ///
259         enum TextCase {
260                 ///
261                 text_lowercase = 0,
262                 ///
263                 text_capitalization = 1,
264                 ///
265                 text_uppercase = 2
266         };
267         /// Change the case of the word at cursor position.
268         void changeCase(Cursor & cur, TextCase action);
269         /// Transposes the character at the cursor with the one before it
270         void charsTranspose(Cursor & cur);
271
272         /** the DTP switches for paragraphs. LyX will store the top settings
273          always in the first physical paragraph, the bottom settings in the
274          last. When a paragraph is broken, the top settings rest, the bottom
275          settings are given to the new one.
276          This function will handle a multi-paragraph selection.
277          */
278         void setParagraphs(Cursor & cur, docstring arg, bool modify = false);
279         /// Sets parameters for current or selected paragraphs
280         void setParagraphs(Cursor & cur, ParagraphParameters const & p);
281
282         /* these things are for search and replace */
283
284         /// needed to insert the selection
285         /// FIXME: replace Cursor with DocIterator.
286         void insertStringAsLines(Cursor & cur, docstring const & str);
287         /// needed to insert the selection
288         /// FIXME: replace Cursor with DocIterator.
289         void insertStringAsParagraphs(Cursor & cur, docstring const & str);
290
291         /// Returns an inset if inset was hit, or 0 if not.
292         /// \warning This method is not recursive! It will return the
293         /// outermost inset within this Text.
294         /// \sa BufferView::getCoveringInset() to get the innermost inset.
295         Inset * checkInsetHit(BufferView &, int x, int y);
296
297         /// return the color of the canvas
298         Color_color backgroundColor() const;
299
300         /**
301          * Returns the left beginning of the text.
302          * This information cannot be taken from the layout object, because
303          * in LaTeX the beginning of the text fits in some cases
304          * (for example sections) exactly the label-width.
305          */
306         /// FIXME: move to TextMetrics.
307         int leftMargin(Buffer const &, int max_width, pit_type pit, pos_type pos) const;
308         int leftMargin(Buffer const &, int max_width, pit_type pit) const;
309
310         /// access to our paragraphs
311         ParagraphList const & paragraphs() const { return pars_; }
312         ParagraphList & paragraphs() { return pars_; }
313         /// return true if this is the main text
314         bool isMainText(Buffer const &) const;
315
316         /// is this row the last in the text?
317         /// FIXME: move to TextMetrics.
318         bool isLastRow(pit_type pit, Row const & row) const;
319         /// is this row the first in the text?
320         /// FIXME: move to TextMetrics.
321         bool isFirstRow(pit_type pit, Row const & row) const;
322
323         ///
324         double spacing(Buffer const & buffer, Paragraph const & par) const;
325         /// make a suggestion for a label
326         /// FIXME: replace Cursor with DocIterator.
327         docstring getPossibleLabel(Cursor & cur) const;
328         /// is this paragraph right-to-left?
329         bool isRTL(Buffer const &, Paragraph const & par) const;
330         /// is this position in the paragraph right-to-left?
331         bool isRTL(Buffer const & buffer, CursorSlice const & sl, bool boundary) const;
332         /// is between pos-1 and pos an RTL<->LTR boundary?
333         bool isRTLBoundary(Buffer const & buffer, Paragraph const & par,
334           pos_type pos) const;
335         /// would be a RTL<->LTR boundary between pos and the given font?
336         bool isRTLBoundary(Buffer const & buffer, Paragraph const & par,
337           pos_type pos, Font const & font) const;
338
339         ///
340         bool checkAndActivateInset(Cursor & cur, bool front);
341
342         ///
343         void write(Buffer const & buf, std::ostream & os) const;
344         /// returns whether we've seen our usual 'end' marker
345         bool read(Buffer const & buf, Lexer & lex, ErrorList & errorList);
346
347         ///
348         /// FIXME: move to TextMetrics.
349         int cursorX(BufferView const &, CursorSlice const & cursor,
350                 bool boundary) const;
351         ///
352         /// FIXME: move to TextMetrics.
353         int cursorY(BufferView const & bv, CursorSlice const & cursor,
354                 bool boundary) const;
355
356         /// delete double spaces, leading spaces, and empty paragraphs around old cursor.
357         /// \retval true if a change has happened and we need a redraw.
358         /// FIXME: replace Cursor with DocIterator. This is not possible right
359         /// now because recordUndo() is called which needs a Cursor.
360         static bool deleteEmptyParagraphMechanism(Cursor & cur,
361                 Cursor & old, bool & need_anchor_change);
362
363         /// delete double spaces, leading spaces, and empty paragraphs
364         /// from \first to \last paragraph
365         void deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool trackChanges);
366
367 public:
368         /// the current font settings
369         Font current_font;
370         /// the current font
371         Font real_current_font;
372         ///
373         int background_color_;
374
375         ///
376         ParagraphList pars_;
377
378         /// our 'outermost' font. This is handed down from the surrounding
379         // inset through the pi/mi parameter (pi.base.font)
380         Font font_;
381
382         ///
383         bool autoBreakRows_;
384 private:
385         /// return past-the-last paragraph influenced by a layout
386         /// change on pit
387         pit_type undoSpan(pit_type pit);
388
389         // fix the cursor `cur' after a characters has been deleted at `where'
390         // position. Called by deleteEmptyParagraphMechanism
391         static void fixCursorAfterDelete(CursorSlice & cur, CursorSlice const & where);
392
393         // At cursor position 0, try to merge the paragraph with the one before it.
394         // Ignore change tracking, i.e., physically remove the end-of-par character
395         bool backspacePos0(Cursor & cur);
396         /// handle the case where bibitems were deleted
397         bool handleBibitems(Cursor & cur);
398
399         ///
400         void deleteWordForward(Cursor & cur);
401         ///
402         void deleteWordBackward(Cursor & cur);
403         ///
404         void deleteLineForward(Cursor & cur);
405         ///
406         void charInserted();
407         /// set 'number' font property
408         void number(Cursor & cur);
409         /// draw selection for a single row
410         void drawRowSelection(PainterInfo & pi, int x, Row const & row,
411                 DocIterator const & beg, DocIterator const & end, 
412                 bool drawOnBegMargin, bool drawOnEndMargin) const;
413
414         /// paste plain text at current cursor.
415         /// \param str string to paste
416         /// \param asParagraphs whether to paste as paragraphs or as lines
417         void pasteString(Cursor & cur, docstring const & str,
418                         bool asParagraphs);
419 };
420
421 } // namespace lyx
422
423 #endif // LYXTEXT_H