]> git.lyx.org Git - lyx.git/blob - src/lyxtext.h
better latin3&4 support
[lyx.git] / src / lyxtext.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 LYXTEXT_H
13 #define LYXTEXT_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "lyxfont.h"
20 #include "lyxcursor.h"
21 #include "paragraph.h"
22 #include "layout.h"
23 #include "lyxrow.h"
24 #include "vspace.h"
25 #include "Spacing.h"
26 #include "LColor.h"
27
28 class Buffer;
29 class BufferParams;
30 class BufferView;
31 class InsetText;
32
33
34 /**
35   This class holds the mapping between buffer paragraphs and screen rows.
36   */
37 class LyXText {
38 public:
39         ///
40         enum text_status {
41                 ///
42                 UNCHANGED = 0,
43                 ///
44                 CHANGED_IN_DRAW = 1,
45                 ///
46                 NEED_VERY_LITTLE_REFRESH = 2,
47                 ///
48                 NEED_MORE_REFRESH = 3
49         };
50         ///
51         enum word_location {
52                 // the word around the cursor, only if the cursor is
53                 //not at a boundary
54                 WHOLE_WORD_STRICT,
55                 // the word around the cursor
56                 WHOLE_WORD,
57                 /// the word begining from the cursor position
58                 PARTIAL_WORD,
59                 /// the word around the cursor or before the cursor
60                 PREVIOUS_WORD,
61                 /// the next word (not yet used)
62                 NEXT_WORD
63         };
64
65         /// Constructor
66         LyXText(BufferView *);
67         ///
68         LyXText(InsetText *);
69    
70         /// Destructor
71         ~LyXText();
72
73         void init(BufferView *, bool reinit = false);
74         ///
75         mutable int number_of_rows;
76         ///
77         mutable int height;
78         ///
79         mutable unsigned int width;
80         /// the current font settings
81         mutable LyXFont current_font;
82         /// the current font
83         mutable LyXFont real_current_font;
84         /// first visible pixel-row is set from LyXScreen!!!
85         // unsigned is wrong here for text-insets!
86         int first;
87         ///
88         BufferView * bv_owner;
89         ///
90         InsetText * inset_owner;
91         ///
92         UpdatableInset * the_locking_inset;
93
94         ///
95         int getRealCursorX(BufferView *) const;
96         ///
97         LyXFont const getFont(Buffer const *, Paragraph * par,
98                         Paragraph::size_type pos) const;
99         ///
100         LyXFont const getLayoutFont(Buffer const *, Paragraph * par) const;
101         ///
102         LyXFont const getLabelFont(Buffer const *, Paragraph * par) const;
103         ///
104         void setCharFont(Buffer const *, Paragraph * par,
105                          Paragraph::size_type pos, LyXFont const & font);
106         void setCharFont(BufferView *, Paragraph * par,
107                          Paragraph::size_type pos,
108                          LyXFont const & font, bool toggleall);
109         /// returns a pointer to the very first Paragraph
110         Paragraph * firstParagraph() const;
111   
112         /// what you expect when pressing <enter> at cursor position
113         void breakParagraph(BufferView *, char keep_layout = 0);
114
115         /** set layout over selection and make a total rebreak of
116           those paragraphs
117           */
118         Paragraph * setLayout(BufferView *, LyXCursor & actual_cursor,
119                                  LyXCursor & selection_start,
120                                  LyXCursor & selection_end,
121                                  LyXTextClass::size_type layout);
122         void setLayout(BufferView *, LyXTextClass::size_type layout);
123         
124         /// used in setlayout
125         void makeFontEntriesLayoutSpecific(Buffer const *, Paragraph * par);
126         
127         /** increment depth over selection and make a total rebreak of those 
128           paragraphs
129           */
130         void incDepth(BufferView *);
131         
132         /** decrement depth over selection and make a total rebreak of those  
133           paragraphs */
134         void decDepth(BufferView *);
135
136         /** Get the depth at current cursor position
137          */
138         int getDepth() const { return cursor.par()->getDepth(); }
139         
140         /** set font over selection and make a total rebreak of those
141           paragraphs.
142           toggleall defaults to false.
143           */
144         void setFont(BufferView *, LyXFont const &, bool toggleall = false);
145         
146         /** deletes and inserts again all paragaphs between the cursor
147           and the specified par. The Cursor is needed to set the refreshing
148           parameters. 
149           This function is needed after SetLayout and SetFont etc.
150           */
151         void redoParagraphs(BufferView *, LyXCursor const & cursor,
152                             Paragraph const * end_par) const;
153         ///
154         void redoParagraph(BufferView *) const;
155         
156         ///
157         void toggleFree(BufferView *, LyXFont const &, bool toggleall = false);
158
159         ///
160         string getStringToIndex(BufferView *);
161         
162         /** recalculates the heights of all previous rows of the
163             specified paragraph.  needed, if the last characters font
164             has changed.  
165             */
166         void redoHeightOfParagraph(BufferView *, LyXCursor const & cursor);
167         
168         /** forces the redrawing of a paragraph. Needed when manipulating a 
169             right address box
170             */ 
171         void redoDrawingOfParagraph(BufferView *, LyXCursor const & cursor);
172         
173         /** insert a character, moves all the following breaks in the 
174           same Paragraph one to the right and make a little rebreak
175           */
176         void insertChar(BufferView *, char c);
177         ///
178         void insertInset(BufferView *, Inset * inset);
179    
180         /** Completes the insertion with a full rebreak.
181             Returns true if something was broken. */
182         bool fullRebreak(BufferView *);
183
184         ///
185         mutable Row * need_break_row;
186         ///
187         mutable int refresh_y;
188         ///
189         int refresh_height;
190         ///
191         int refresh_width;
192         ///
193         int refresh_x;
194         ///
195         mutable Row * refresh_row;
196         ///
197         int refresh_pos;
198
199         /// give and set the LyXText status
200         text_status status() const;
201         ///
202         void status(BufferView *, text_status) const;
203
204 private:        
205         /** wether the screen needs a refresh,
206            starting with refresh_y
207            */
208         mutable text_status status_;
209         
210 public:
211         /** returns a pointer to the row near the specified y-coordinate
212           (relative to the whole text). y is set to the real beginning
213           of this row
214           */ 
215         Row * getRowNearY(int & y) const;
216         
217         /** returns the column near the specified x-coordinate of the row 
218          x is set to the real beginning of this column
219          */ 
220         int getColumnNearX(BufferView *, Row * row,
221                            int & x, bool & boundary) const;
222         
223         /** returns a pointer to a specified row. y is set to the beginning
224          of the row
225          */
226         Row * getRow(Paragraph * par,
227                      Paragraph::size_type pos, int & y) const;
228
229         /** returns the height of a default row, needed  for scrollbar
230          */
231         int defaultHeight() const;
232    
233         /** The cursor.
234           Later this variable has to be removed. There should be now internal
235           cursor in a text (and thus not in a buffer). By keeping this it is
236           (I think) impossible to have several views with the same buffer, but
237           the cursor placed at different places.
238           [later]
239           Since the LyXText now has been moved from Buffer to BufferView
240           it should not be absolutely needed to move the cursor...
241           */
242         mutable LyXCursor cursor; // actual cursor position
243
244         /** The structure that keeps track of the selections set. */
245         struct Selection {
246                 Selection() 
247                         : set_(false), mark_(false)
248                         {}
249                 bool set() const {
250                         return set_;
251                 }
252                 void set(bool s) {
253                         set_ = s;
254                 }
255                 bool mark() const {
256                         return mark_;
257                 }
258                 void mark(bool m) {
259                         mark_ = m;
260                 }
261                 LyXCursor cursor; // temporary cursor to hold a cursor position
262                                   // until setSelection is called!
263                 LyXCursor start;  // start of a REAL selection
264                 LyXCursor end;    // end of a REAL selection
265         private:
266                 bool set_; // former selection
267                 bool mark_; // former mark_set
268                 
269         };
270         mutable Selection selection;
271
272         /// needed for the toggling (cursor position on last selection made)
273         mutable LyXCursor last_sel_cursor; 
274         /// needed for toggling the selection in screen.C
275         mutable LyXCursor toggle_cursor;
276         /// needed for toggling the selection in screen.C
277         mutable LyXCursor toggle_end_cursor;
278    
279         /// need the selection cursor:
280         void setSelection(BufferView *);
281         ///
282         void clearSelection() const;
283         ///
284         string const selectionAsString(Buffer const *, bool label) const;
285         
286         /// select the word we need depending on word_location
287         void getWord(LyXCursor & from, LyXCursor & to, 
288                      word_location const) const;
289         /// just selects the word the cursor is in
290         void selectWord(BufferView *, word_location const);
291         /// returns the inset at cursor (if it exists), 0 otherwise
292         Inset * getInset() const;
293
294         /** 'selects" the next word, where the cursor is not in 
295          and returns this word as string. THe cursor will be moved 
296          to the beginning of this word. 
297          With SelectSelectedWord can this be highlighted really
298          */ 
299         string const selectNextWordToSpellcheck(BufferView *, float & value) const;
300         ///
301         void selectSelectedWord(BufferView *);
302         ///
303         void setCursor(BufferView *, Paragraph * par,
304                        Paragraph::size_type pos,
305                        bool setfont = true,
306                        bool boundary = false) const;
307         ///
308         void setCursor(BufferView *, LyXCursor &, Paragraph * par,
309                        Paragraph::size_type pos,
310                        bool boundary = false) const;
311         ///
312         void setCursorIntern(BufferView *, Paragraph * par,
313                              Paragraph::size_type pos,
314                              bool setfont = true,
315                              bool boundary = false) const;
316         ///
317         void setCurrentFont(BufferView *) const;
318
319         ///
320         bool isBoundary(Buffer const *, Paragraph * par,
321                         Paragraph::size_type pos) const;
322         ///
323         bool isBoundary(Buffer const *, Paragraph * par,
324                          Paragraph::size_type pos,
325                          LyXFont const & font) const;
326
327         ///
328         void setCursorFromCoordinates(BufferView *, int x, int y) const;
329         ///
330         void setCursorFromCoordinates(BufferView *, LyXCursor &,
331                                       int x, int y) const;
332         ///
333         void cursorUp(BufferView *) const;
334         ///
335         void cursorDown(BufferView *) const;
336         ///
337         void cursorLeft(BufferView *, bool internal = true) const;
338         ///
339         void cursorRight(BufferView *, bool internal = true) const;
340         ///
341         void cursorLeftOneWord(BufferView *) const;
342         ///
343         void cursorLeftOneWord(LyXCursor &) const;
344         ///
345         void cursorRightOneWord(BufferView *) const;
346         ///
347         void cursorUpParagraph(BufferView *) const;
348         ///
349         void cursorDownParagraph(BufferView *) const;
350         ///
351         void cursorHome(BufferView *) const;
352         ///
353         void cursorEnd(BufferView *) const;
354         ///
355         void cursorTab(BufferView *) const;
356         ///
357         void cursorTop(BufferView *) const;
358         ///
359         void cursorBottom(BufferView *) const;
360         ///
361         void Delete(BufferView *);
362         ///
363         void backspace(BufferView *);
364         ///
365         void deleteWordForward(BufferView *);
366         ///
367         void deleteWordBackward(BufferView *);
368         ///
369         void deleteLineForward(BufferView *);
370         ///
371         bool selectWordWhenUnderCursor(BufferView *, 
372                                        word_location const);
373         ///
374         enum TextCase {
375                 ///
376                 text_lowercase = 0,
377                 ///
378                 text_capitalization = 1,
379                 ///
380                 text_uppercase = 2
381         };
382         /// Change the case of the word at cursor position.
383         void changeCase(BufferView *, TextCase action);
384         ///
385         void changeRegionCase(BufferView * bview,
386                                        LyXCursor const & from,
387                                        LyXCursor const & to,
388                                        LyXText::TextCase action);
389         ///
390         void transposeChars(BufferView &);
391         
392         /** returns a printed row in a pixmap. The y value is needed to
393           decide, wether it is selected text or not. This is a strange
394           solution but faster.
395          */
396         void getVisibleRow(BufferView *, int y_offset, int x_offset,
397                            Row * row_ptr, int y, bool cleared=false);
398
399         /// 
400         void toggleInset(BufferView *);
401         ///
402         void cutSelection(BufferView *, bool doclear = true, bool realcut = true);
403         ///
404         void copySelection(BufferView *);
405         ///
406         void pasteSelection(BufferView *);
407         ///
408         void copyEnvironmentType();
409         ///
410         void pasteEnvironmentType(BufferView *);
411
412         /** the DTP switches for paragraphs. LyX will store the top settings
413          always in the first physical paragraph, the bottom settings in the
414          last. When a paragraph is broken, the top settings rest, the bottom 
415          settings are given to the new one. So I can make shure, they do not
416          duplicate themself (and you cannnot make dirty things with them! )
417          */ 
418         void setParagraph(BufferView *,
419                           bool line_top, bool line_bottom,
420                           bool pagebreak_top, bool pagebreak_bottom,
421                           VSpace const & space_top,
422                           VSpace const & space_bottom,
423                           Spacing const & spacing,
424                           LyXAlignment align, 
425                           string labelwidthstring,
426                           bool noindent);
427
428         /* these things are for search and replace */
429
430         /** sets the selection over the number of characters of string,
431           no check!!
432           */
433         void setSelectionOverString(BufferView *, string const & str);
434
435         /** simple replacing. The font of the first selected character
436           is used
437           */
438         void replaceSelectionWithString(BufferView *, string const & str);
439
440         /// needed to insert the selection
441         void insertStringAsLines(BufferView *, string const & str);
442         /// needed to insert the selection
443         void insertStringAsParagraphs(BufferView *, string const & str);
444
445         /// Find next inset of some specified type.
446         bool gotoNextInset(BufferView *, std::vector<Inset::Code> const & codes,
447                            string const & contents = string()) const;
448         ///
449
450         /* for the greater insets */
451   
452         /// returns false if inset wasn't found
453         bool updateInset(BufferView *, Inset *);
454         ///
455         void checkParagraph(BufferView *, Paragraph * par,
456                             Paragraph::size_type pos);
457         ///
458         int numberOfCell(Paragraph * par,
459                          Paragraph::size_type pos) const;
460         ///
461         void removeTableRow(LyXCursor & cursor) const;
462         ///
463         bool isEmptyTableCell() const;
464         ///
465         void toggleAppendix(BufferView *);
466         ///
467         int workWidth(BufferView *) const;
468         ///
469         void computeBidiTables(Buffer const *, Row * row) const;
470
471         /// Maps positions in the visual string to positions in logical string.
472         inline
473         Paragraph::size_type log2vis(Paragraph::size_type pos) const {
474                 if (bidi_start == -1)
475                         return pos;
476                 else
477                         return log2vis_list[pos-bidi_start];
478         }
479
480         /// Maps positions in the logical string to positions in visual string.
481         inline
482         Paragraph::size_type vis2log(Paragraph::size_type pos) const {
483                 if (bidi_start == -1)
484                         return pos;
485                 else
486                         return vis2log_list[pos-bidi_start];
487         }
488         ///
489         inline
490         Paragraph::size_type bidi_level(Paragraph::size_type pos) const {
491                 if (bidi_start == -1)
492                         return 0;
493                 else
494                         return bidi_levels[pos-bidi_start];
495         }       
496         ///
497         inline
498         bool bidi_InRange(Paragraph::size_type pos) const {
499                 return bidi_start == -1 ||
500                         (bidi_start <= pos && pos <= bidi_end);
501         }
502 private:
503         ///
504         mutable Row * firstrow;
505         ///
506         mutable Row * lastrow;
507
508         /** Copybuffer for copy environment type.
509           Asger has learned that this should be a buffer-property instead
510           Lgb has learned that 'char' is a lousy type for non-characters
511           */
512         LyXTextClass::size_type copylayouttype;
513
514         /** inserts a new row behind the specified row, increments
515             the touched counters */
516         void insertRow(Row * row, Paragraph * par,
517                        Paragraph::size_type pos) const;
518         /** removes the row and reset the touched counters */
519         void removeRow(Row * row) const;
520
521         /** remove all following rows of the paragraph of the specified row. */
522         void removeParagraph(Row * row) const;
523
524         /** insert the specified paragraph behind the specified row */
525         void insertParagraph(BufferView *,
526                              Paragraph * par, Row * row) const;
527
528         /** appends  the implizit specified paragraph behind the specified row,
529          * start at the implizit given position */
530         void appendParagraph(BufferView *, Row * row) const;
531    
532         ///
533         void breakAgain(BufferView *, Row * row) const;
534         ///
535         void breakAgainOneRow(BufferView *, Row * row);
536         /// Calculate and set the height of the row
537         void setHeightOfRow(BufferView *, Row * row_ptr) const;
538
539         /** this calculates the specified parameters. needed when setting
540          * the cursor and when creating a visible row */ 
541         void prepareToPrint(BufferView *, Row * row, float & x,
542                             float & fill_separator, 
543                             float & fill_hfill,
544                             float & fill_label_hfill,
545                             bool bidi = true) const;
546
547         // fix the cursor `cur' after a characters has been deleted at `where'
548         // position. Called by deleteEmptyParagraphMechanism
549         void fixCursorAfterDelete(BufferView * bview,
550                                   LyXCursor & cur,
551                                   LyXCursor const & where) const;
552         
553         ///
554         void deleteEmptyParagraphMechanism(BufferView *,
555                                            LyXCursor const & old_cursor) const;
556
557 public:
558         /** Updates all counters starting BEHIND the row. Changed paragraphs
559          * with a dynamic left margin will be rebroken. */ 
560         void updateCounters(BufferView *, Row * row) const;
561 private:
562         ///
563         void setCounter(Buffer const *, Paragraph * par) const;
564    
565         /*
566          * some low level functions
567          */
568         
569         ///
570         int singleWidth(BufferView *, Paragraph * par,
571                         Paragraph::size_type pos) const;
572         ///
573         int singleWidth(BufferView *, Paragraph * par,
574                         Paragraph::size_type pos, char c) const;
575         ///
576         void draw(BufferView *, Row const * row,
577                   Paragraph::size_type & pos,
578                   int offset, float & x, bool cleared);
579
580         /// get the next breakpoint in a given paragraph
581         Paragraph::size_type nextBreakPoint(BufferView *, Row const * row,
582                                                int width) const;
583         /// returns the minimum space a row needs on the screen in pixel
584         int fill(BufferView *, Row * row, int workwidth) const;
585         
586         /** returns the minimum space a manual label needs on the
587           screen in pixel */ 
588         int labelFill(BufferView *, Row const * row) const;
589
590         ///
591         Paragraph::size_type
592         beginningOfMainBody(Buffer const *, Paragraph const * par) const;
593         
594         /** Returns the left beginning of the text.
595           This information cannot be taken from the layouts-objekt, because
596           in LaTeX the beginning of the text fits in some cases
597           (for example sections) exactly the label-width.
598           */
599         int leftMargin(BufferView *, Row const * row) const;
600         ///
601         int rightMargin(Buffer const *, Row const * row) const;
602         ///
603         int labelEnd (BufferView *, Row const * row) const;
604
605         /** returns the number of separators in the specified row.
606           The separator on the very last column doesnt count
607           */ 
608         int numberOfSeparators(Buffer const *, Row const * row) const;
609
610         /** returns the number of hfills in the specified row. The
611           LyX-Hfill is a LaTeX \hfill so that the hfills at the
612           beginning and at the end were ignored. This is {\em MUCH}
613           more usefull than not to ignore!
614           */
615         int numberOfHfills(Buffer const *, Row const * row) const;
616    
617         /// like NumberOfHfills, but only those in the manual label!
618         int numberOfLabelHfills(Buffer const *, Row const * row) const;
619         /** returns true, if a expansion is needed. Rules are given by 
620           LaTeX
621           */
622         bool hfillExpansion(Buffer const *, Row const * row_ptr,
623                             Paragraph::size_type pos) const;
624         /// 
625         LColor::color backgroundColor();
626
627
628         ///
629         mutable std::vector<Paragraph::size_type> log2vis_list;
630
631         ///
632         mutable std::vector<Paragraph::size_type> vis2log_list;
633
634         ///
635         mutable std::vector<Paragraph::size_type> bidi_levels;
636
637         ///
638         mutable Paragraph::size_type bidi_start;
639
640         ///
641         mutable Paragraph::size_type bidi_end;
642
643         ///
644         mutable bool bidi_same_direction;
645
646         ///
647         unsigned char transformChar(unsigned char c, Paragraph * par,
648                                     Paragraph::size_type pos) const;
649
650         /** returns the paragraph position of the last character in the 
651           specified row
652           */
653         Paragraph::size_type rowLast(Row const * row) const;
654         ///
655         Paragraph::size_type rowLastPrintable(Row const * row) const;
656
657         ///
658         void charInserted();
659 public:
660         //
661         // special owner functions
662         ///
663         Paragraph * ownerParagraph() const;
664         //
665         Paragraph * ownerParagraph(Paragraph *) const;
666         // set it searching first for the right owner using the paragraph id
667         Paragraph * ownerParagraph(int id, Paragraph *) const;
668 };
669
670
671 /* returns a pointer to the row near the specified y-coordinate
672  * (relative to the whole text). y is set to the real beginning
673  * of this row */
674 inline
675 Row * LyXText::getRowNearY(int & y) const
676 {
677         // If possible we should optimize this method. (Lgb)
678         Row * tmprow = firstrow;
679         int tmpy = 0;
680         
681         while (tmprow->next() && tmpy + tmprow->height() <= y) {
682                 tmpy += tmprow->height();
683                 tmprow = tmprow->next();
684         }
685         
686         y = tmpy;   // return the real y
687         return tmprow;
688 }
689 #endif