]> git.lyx.org Git - lyx.git/blob - src/Text2.cpp
Fix fa0f142e (plain quotes fix).
[lyx.git] / src / Text2.cpp
1 /**
2  * \file text2.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Alfredo Braunstein
9  * \author Jean-Marc Lasgouttes
10  * \author Angus Leeming
11  * \author John Levon
12  * \author André Pönitz
13  * \author Allan Rae
14  * \author Stefan Schimanski
15  * \author Dekel Tsur
16  * \author Jürgen Vigna
17  *
18  * Full author contact details are available in file CREDITS.
19  */
20
21 #include <config.h>
22
23 #include "Text.h"
24
25 #include "Buffer.h"
26 #include "buffer_funcs.h"
27 #include "BufferList.h"
28 #include "BufferParams.h"
29 #include "BufferView.h"
30 #include "Changes.h"
31 #include "Cursor.h"
32 #include "CutAndPaste.h"
33 #include "DispatchResult.h"
34 #include "ErrorList.h"
35 #include "Language.h"
36 #include "Layout.h"
37 #include "Lexer.h"
38 #include "LyX.h"
39 #include "LyXRC.h"
40 #include "Paragraph.h"
41 #include "ParagraphParameters.h"
42 #include "TextClass.h"
43 #include "TextMetrics.h"
44
45 #include "insets/InsetCollapsable.h"
46
47 #include "mathed/InsetMathHull.h"
48
49 #include "support/lassert.h"
50 #include "support/debug.h"
51 #include "support/gettext.h"
52 #include "support/lyxalgo.h"
53 #include "support/textutils.h"
54
55 #include <sstream>
56
57 using namespace std;
58
59 namespace lyx {
60
61 bool Text::isMainText() const
62 {
63         return &owner_->buffer().text() == this;
64 }
65
66
67 // Note that this is supposed to return a fully realized font.
68 FontInfo Text::layoutFont(pit_type const pit) const
69 {
70         Layout const & layout = pars_[pit].layout();
71
72         if (!pars_[pit].getDepth())  {
73                 FontInfo lf = layout.resfont;
74                 // In case the default family has been customized
75                 if (layout.font.family() == INHERIT_FAMILY)
76                         lf.setFamily(owner_->buffer().params().getFont().fontInfo().family());
77                 FontInfo icf = owner_->getLayout().font();
78                 icf.realize(lf);
79                 return icf;
80         }
81
82         FontInfo font = layout.font;
83         // Realize with the fonts of lesser depth.
84         //font.realize(outerFont(pit));
85         font.realize(owner_->buffer().params().getFont().fontInfo());
86
87         return font;
88 }
89
90
91 // Note that this is supposed to return a fully realized font.
92 FontInfo Text::labelFont(Paragraph const & par) const
93 {
94         Buffer const & buffer = owner_->buffer();
95         Layout const & layout = par.layout();
96
97         if (!par.getDepth()) {
98                 FontInfo lf = layout.reslabelfont;
99                 // In case the default family has been customized
100                 if (layout.labelfont.family() == INHERIT_FAMILY)
101                         lf.setFamily(buffer.params().getFont().fontInfo().family());
102                 return lf;
103         }
104
105         FontInfo font = layout.labelfont;
106         // Realize with the fonts of lesser depth.
107         font.realize(buffer.params().getFont().fontInfo());
108
109         return font;
110 }
111
112
113 void Text::setCharFont(pit_type pit,
114                 pos_type pos, Font const & fnt, Font const & display_font)
115 {
116         Buffer const & buffer = owner_->buffer();
117         Font font = fnt;
118         Layout const & layout = pars_[pit].layout();
119
120         // Get concrete layout font to reduce against
121         FontInfo layoutfont;
122
123         if (pos < pars_[pit].beginOfBody())
124                 layoutfont = layout.labelfont;
125         else
126                 layoutfont = layout.font;
127
128         // Realize against environment font information
129         if (pars_[pit].getDepth()) {
130                 pit_type tp = pit;
131                 while (!layoutfont.resolved() &&
132                        tp != pit_type(paragraphs().size()) &&
133                        pars_[tp].getDepth()) {
134                         tp = outerHook(tp);
135                         if (tp != pit_type(paragraphs().size()))
136                                 layoutfont.realize(pars_[tp].layout().font);
137                 }
138         }
139
140         // Inside inset, apply the inset's font attributes if any
141         // (charstyle!)
142         if (!isMainText())
143                 layoutfont.realize(display_font.fontInfo());
144
145         layoutfont.realize(buffer.params().getFont().fontInfo());
146
147         // Now, reduce font against full layout font
148         font.fontInfo().reduce(layoutfont);
149
150         pars_[pit].setFont(pos, font);
151 }
152
153
154 void Text::setInsetFont(BufferView const & bv, pit_type pit,
155                 pos_type pos, Font const & font)
156 {
157         Inset * const inset = pars_[pit].getInset(pos);
158         LASSERT(inset && inset->resetFontEdit(), return);
159
160         CursorSlice::idx_type endidx = inset->nargs();
161         for (CursorSlice cs(*inset); cs.idx() != endidx; ++cs.idx()) {
162                 Text * text = cs.text();
163                 if (text) {
164                         // last position of the cell
165                         CursorSlice cellend = cs;
166                         cellend.pit() = cellend.lastpit();
167                         cellend.pos() = cellend.lastpos();
168                         text->setFont(bv, cs, cellend, font);
169                 }
170         }
171 }
172
173
174 void Text::setLayout(pit_type start, pit_type end,
175                      docstring const & layout)
176 {
177         LASSERT(start != end, return);
178
179         Buffer const & buffer = owner_->buffer();
180         BufferParams const & bp = buffer.params();
181         Layout const & lyxlayout = bp.documentClass()[layout];
182
183         for (pit_type pit = start; pit != end; ++pit) {
184                 Paragraph & par = pars_[pit];
185                 par.applyLayout(lyxlayout);
186                 if (lyxlayout.margintype == MARGIN_MANUAL)
187                         par.setLabelWidthString(par.expandLabel(lyxlayout, bp));
188         }
189 }
190
191
192 // set layout over selection and make a total rebreak of those paragraphs
193 void Text::setLayout(Cursor & cur, docstring const & layout)
194 {
195         LBUFERR(this == cur.text());
196
197         pit_type start = cur.selBegin().pit();
198         pit_type end = cur.selEnd().pit() + 1;
199         cur.recordUndoSelection();
200         setLayout(start, end, layout);
201         cur.setCurrentFont();
202         cur.forceBufferUpdate();
203 }
204
205
206 static bool changeDepthAllowed(Text::DEPTH_CHANGE type,
207                         Paragraph const & par, int max_depth)
208 {
209         int const depth = par.params().depth();
210         if (type == Text::INC_DEPTH && depth < max_depth)
211                 return true;
212         if (type == Text::DEC_DEPTH && depth > 0)
213                 return true;
214         return false;
215 }
216
217
218 bool Text::changeDepthAllowed(Cursor & cur, DEPTH_CHANGE type) const
219 {
220         LBUFERR(this == cur.text());
221         // this happens when selecting several cells in tabular (bug 2630)
222         if (cur.selBegin().idx() != cur.selEnd().idx())
223                 return false;
224
225         pit_type const beg = cur.selBegin().pit();
226         pit_type const end = cur.selEnd().pit() + 1;
227         int max_depth = (beg != 0 ? pars_[beg - 1].getMaxDepthAfter() : 0);
228
229         for (pit_type pit = beg; pit != end; ++pit) {
230                 if (lyx::changeDepthAllowed(type, pars_[pit], max_depth))
231                         return true;
232                 max_depth = pars_[pit].getMaxDepthAfter();
233         }
234         return false;
235 }
236
237
238 void Text::changeDepth(Cursor & cur, DEPTH_CHANGE type)
239 {
240         LBUFERR(this == cur.text());
241         pit_type const beg = cur.selBegin().pit();
242         pit_type const end = cur.selEnd().pit() + 1;
243         cur.recordUndoSelection();
244         int max_depth = (beg != 0 ? pars_[beg - 1].getMaxDepthAfter() : 0);
245
246         for (pit_type pit = beg; pit != end; ++pit) {
247                 Paragraph & par = pars_[pit];
248                 if (lyx::changeDepthAllowed(type, par, max_depth)) {
249                         int const depth = par.params().depth();
250                         if (type == INC_DEPTH)
251                                 par.params().depth(depth + 1);
252                         else
253                                 par.params().depth(depth - 1);
254                 }
255                 max_depth = par.getMaxDepthAfter();
256         }
257         // this handles the counter labels, and also fixes up
258         // depth values for follow-on (child) paragraphs
259         cur.forceBufferUpdate();
260 }
261
262
263 void Text::setFont(Cursor & cur, Font const & font, bool toggleall)
264 {
265         LASSERT(this == cur.text(), return);
266
267         // If there is a selection, record undo before the cursor font is changed.
268         if (cur.selection())
269                 cur.recordUndoSelection();
270
271         // Set the current_font
272         // Determine basis font
273         FontInfo layoutfont;
274         pit_type pit = cur.pit();
275         if (cur.pos() < pars_[pit].beginOfBody())
276                 layoutfont = labelFont(pars_[pit]);
277         else
278                 layoutfont = layoutFont(pit);
279
280         // Update current font
281         cur.real_current_font.update(font,
282                                         cur.buffer()->params().language,
283                                         toggleall);
284
285         // Reduce to implicit settings
286         cur.current_font = cur.real_current_font;
287         cur.current_font.fontInfo().reduce(layoutfont);
288         // And resolve it completely
289         cur.real_current_font.fontInfo().realize(layoutfont);
290
291         // if there is no selection that's all we need to do
292         if (!cur.selection())
293                 return;
294
295         // Ok, we have a selection.
296         Font newfont = font;
297
298         if (toggleall) {        
299                 // Toggling behaves as follows: We check the first character of the
300                 // selection. If it's (say) got EMPH on, then we set to off; if off,
301                 // then to on. With families and the like, we set it to INHERIT, if
302                 // we already have it.
303                 CursorSlice const & sl = cur.selBegin();
304                 Text const & text = *sl.text();
305                 Paragraph const & par = text.getPar(sl.pit());
306         
307                 // get font at the position
308                 Font oldfont = par.getFont(cur.bv().buffer().params(), sl.pos(),
309                         text.outerFont(sl.pit()));
310                 FontInfo const & oldfi = oldfont.fontInfo();
311         
312                 FontInfo & newfi = newfont.fontInfo();
313         
314                 FontFamily newfam = newfi.family();
315                 if (newfam !=   INHERIT_FAMILY && newfam != IGNORE_FAMILY &&
316                                 newfam == oldfi.family())
317                         newfi.setFamily(INHERIT_FAMILY);
318                 
319                 FontSeries newser = newfi.series();
320                 if (newser == BOLD_SERIES && oldfi.series() == BOLD_SERIES)
321                         newfi.setSeries(INHERIT_SERIES);
322         
323                 FontShape newshp = newfi.shape();
324                 if (newshp != INHERIT_SHAPE && newshp != IGNORE_SHAPE &&
325                                 newshp == oldfi.shape())
326                         newfi.setShape(INHERIT_SHAPE);
327
328                 ColorCode newcol = newfi.color();
329                 if (newcol != Color_none && newcol != Color_inherit 
330                     && newcol != Color_ignore && newcol == oldfi.color())
331                         newfi.setColor(Color_none);
332
333                 // ON/OFF ones
334                 if (newfi.emph() == FONT_TOGGLE)
335                         newfi.setEmph(oldfi.emph() == FONT_OFF ? FONT_ON : FONT_OFF);
336                 if (newfi.underbar() == FONT_TOGGLE)
337                         newfi.setUnderbar(oldfi.underbar() == FONT_OFF ? FONT_ON : FONT_OFF);
338                 if (newfi.strikeout() == FONT_TOGGLE)
339                         newfi.setStrikeout(oldfi.strikeout() == FONT_OFF ? FONT_ON : FONT_OFF);
340                 if (newfi.xout() == FONT_TOGGLE)
341                         newfi.setXout(oldfi.xout() == FONT_OFF ? FONT_ON : FONT_OFF);
342                 if (newfi.uuline() == FONT_TOGGLE)
343                         newfi.setUuline(oldfi.uuline() == FONT_OFF ? FONT_ON : FONT_OFF);
344                 if (newfi.uwave() == FONT_TOGGLE)
345                         newfi.setUwave(oldfi.uwave() == FONT_OFF ? FONT_ON : FONT_OFF);
346                 if (newfi.noun() == FONT_TOGGLE)
347                         newfi.setNoun(oldfi.noun() == FONT_OFF ? FONT_ON : FONT_OFF);
348                 if (newfi.number() == FONT_TOGGLE)
349                         newfi.setNumber(oldfi.number() == FONT_OFF ? FONT_ON : FONT_OFF);
350         }
351
352         setFont(cur.bv(), cur.selectionBegin().top(), 
353                 cur.selectionEnd().top(), newfont);
354 }
355
356
357 void Text::setFont(BufferView const & bv, CursorSlice const & begin,
358                 CursorSlice const & end, Font const & font)
359 {
360         Buffer const & buffer = bv.buffer();
361
362         // Don't use forwardChar here as ditend might have
363         // pos() == lastpos() and forwardChar would miss it.
364         // Can't use forwardPos either as this descends into
365         // nested insets.
366         Language const * language = buffer.params().language;
367         for (CursorSlice dit = begin; dit != end; dit.forwardPos()) {
368                 if (dit.pos() == dit.lastpos())
369                         continue;
370                 pit_type const pit = dit.pit();
371                 pos_type const pos = dit.pos();
372                 Inset * inset = pars_[pit].getInset(pos);
373                 if (inset && inset->resetFontEdit()) {
374                         // We need to propagate the font change to all
375                         // text cells of the inset (bugs 1973, 6919).
376                         setInsetFont(bv, pit, pos, font);
377                 }
378                 TextMetrics const & tm = bv.textMetrics(this);
379                 Font f = tm.displayFont(pit, pos);
380                 f.update(font, language);
381                 setCharFont(pit, pos, f, tm.font_);
382                 // font change may change language... 
383                 // spell checker has to know that
384                 pars_[pit].requestSpellCheck(pos);
385         }
386 }
387
388
389 bool Text::cursorTop(Cursor & cur)
390 {
391         LBUFERR(this == cur.text());
392         return setCursor(cur, 0, 0);
393 }
394
395
396 bool Text::cursorBottom(Cursor & cur)
397 {
398         LBUFERR(this == cur.text());
399         return setCursor(cur, cur.lastpit(), prev(paragraphs().end(), 1)->size());
400 }
401
402
403 void Text::toggleFree(Cursor & cur, Font const & font, bool toggleall)
404 {
405         LBUFERR(this == cur.text());
406         // If the mask is completely neutral, tell user
407         if (font.fontInfo() == ignore_font && font.language() == ignore_language) {
408                 // Could only happen with user style
409                 cur.message(_("No font change defined."));
410                 return;
411         }
412
413         // Try implicit word selection
414         // If there is a change in the language the implicit word selection
415         // is disabled.
416         CursorSlice const resetCursor = cur.top();
417         bool const implicitSelection =
418                 font.language() == ignore_language
419                 && font.fontInfo().number() == FONT_IGNORE
420                 && selectWordWhenUnderCursor(cur, WHOLE_WORD_STRICT);
421
422         // Set font
423         setFont(cur, font, toggleall);
424
425         // Implicit selections are cleared afterwards
426         // and cursor is set to the original position.
427         if (implicitSelection) {
428                 cur.clearSelection();
429                 cur.top() = resetCursor;
430                 cur.resetAnchor();
431         }
432 }
433
434
435 docstring Text::getStringToIndex(Cursor const & cur)
436 {
437         LBUFERR(this == cur.text());
438
439         if (cur.selection())
440                 return cur.selectionAsString(false);
441
442         // Try implicit word selection. If there is a change
443         // in the language the implicit word selection is
444         // disabled.
445         Cursor tmpcur = cur;
446         selectWord(tmpcur, PREVIOUS_WORD);
447
448         if (!tmpcur.selection())
449                 cur.message(_("Nothing to index!"));
450         else if (tmpcur.selBegin().pit() != tmpcur.selEnd().pit())
451                 cur.message(_("Cannot index more than one paragraph!"));
452         else
453                 return tmpcur.selectionAsString(false);
454         
455         return docstring();
456 }
457
458
459 void Text::setLabelWidthStringToSequence(Cursor const & cur,
460                 docstring const & s)
461 {
462         Cursor c = cur;
463         // Find first of same layout in sequence
464         while (!isFirstInSequence(c.pit())) {
465                 c.pit() = depthHook(c.pit(), c.paragraph().getDepth());
466         }
467
468         // now apply label width string to every par
469         // in sequence
470         depth_type const depth = c.paragraph().getDepth();
471         Layout const & layout = c.paragraph().layout();
472         for ( ; c.pit() <= c.lastpit() ; ++c.pit()) {
473                 while (c.paragraph().getDepth() > depth) {
474                         ++c.pit();
475                         if (c.pit() > c.lastpit())
476                                 return;
477                 }
478                 if (c.paragraph().getDepth() < depth)
479                         return;
480                 if (c.paragraph().layout() != layout)
481                         return;
482                 c.recordUndo();
483                 c.paragraph().setLabelWidthString(s);
484         }
485 }
486
487
488 void Text::setParagraphs(Cursor & cur, docstring arg, bool merge)
489 {
490         LBUFERR(cur.text());
491
492         //FIXME UNICODE
493         string const argument = to_utf8(arg);
494         depth_type priordepth = -1;
495         Layout priorlayout;
496         Cursor c(cur.bv());
497         c.setCursor(cur.selectionBegin());
498         for ( ; c <= cur.selectionEnd() ; ++c.pit()) {
499                 Paragraph & par = c.paragraph();
500                 ParagraphParameters params = par.params();
501                 params.read(argument, merge);
502                 // Changes to label width string apply to all paragraphs
503                 // with same layout in a sequence.
504                 // Do this only once for a selected range of paragraphs
505                 // of the same layout and depth.
506                 c.recordUndo();
507                 par.params().apply(params, par.layout());
508                 if (par.getDepth() != priordepth || par.layout() != priorlayout)
509                         setLabelWidthStringToSequence(c, params.labelWidthString());
510                 priordepth = par.getDepth();
511                 priorlayout = par.layout();
512         }
513 }
514
515
516 void Text::setParagraphs(Cursor & cur, ParagraphParameters const & p)
517 {
518         LBUFERR(cur.text());
519
520         depth_type priordepth = -1;
521         Layout priorlayout;
522         Cursor c(cur.bv());
523         c.setCursor(cur.selectionBegin());
524         for ( ; c < cur.selectionEnd() ; ++c.pit()) {
525                 Paragraph & par = c.paragraph();
526                 // Changes to label width string apply to all paragraphs
527                 // with same layout in a sequence.
528                 // Do this only once for a selected range of paragraphs
529                 // of the same layout and depth.
530                 cur.recordUndo();
531                 par.params().apply(p, par.layout());
532                 if (par.getDepth() != priordepth || par.layout() != priorlayout)
533                         setLabelWidthStringToSequence(c,
534                                 par.params().labelWidthString());
535                 priordepth = par.getDepth();
536                 priorlayout = par.layout();
537         }
538 }
539
540
541 // this really should just insert the inset and not move the cursor.
542 void Text::insertInset(Cursor & cur, Inset * inset)
543 {
544         LBUFERR(this == cur.text());
545         LBUFERR(inset);
546         cur.paragraph().insertInset(cur.pos(), inset, cur.current_font,
547                 Change(cur.buffer()->params().track_changes
548                 ? Change::INSERTED : Change::UNCHANGED));
549 }
550
551
552 bool Text::setCursor(Cursor & cur, pit_type pit, pos_type pos,
553                         bool setfont, bool boundary)
554 {
555         TextMetrics const & tm = cur.bv().textMetrics(this);
556         bool const update_needed = !tm.contains(pit);
557         Cursor old = cur;
558         setCursorIntern(cur, pit, pos, setfont, boundary);
559         return cur.bv().checkDepm(cur, old) || update_needed;
560 }
561
562
563 void Text::setCursorIntern(Cursor & cur, pit_type pit, pos_type pos,
564                            bool setfont, bool boundary)
565 {
566         LBUFERR(this == cur.text());
567         cur.boundary(boundary);
568         cur.top().setPitPos(pit, pos);
569         if (setfont)
570                 cur.setCurrentFont();
571 }
572
573
574 bool Text::checkAndActivateInset(Cursor & cur, bool front)
575 {
576         if (front && cur.pos() == cur.lastpos())
577                 return false;
578         if (!front && cur.pos() == 0)
579                 return false;
580         Inset * inset = front ? cur.nextInset() : cur.prevInset();
581         if (!inset || !inset->editable())
582                 return false;
583         if (cur.selection() && cur.realAnchor().find(inset) == -1)
584                 return false;
585         /*
586          * Apparently, when entering an inset we are expected to be positioned
587          * *before* it in the containing paragraph, regardless of the direction
588          * from which we are entering. Otherwise, cursor placement goes awry,
589          * and when we exit from the beginning, we'll be placed *after* the
590          * inset.
591          */
592         if (!front)
593                 --cur.pos();
594         inset->edit(cur, front);
595         cur.setCurrentFont();
596         return true;
597 }
598
599
600 bool Text::checkAndActivateInsetVisual(Cursor & cur, bool movingForward, bool movingLeft)
601 {
602         if (cur.pos() == -1)
603                 return false;
604         if (cur.pos() == cur.lastpos())
605                 return false;
606         Paragraph & par = cur.paragraph();
607         Inset * inset = par.isInset(cur.pos()) ? par.getInset(cur.pos()) : 0;
608         if (!inset || !inset->editable())
609                 return false;
610         if (cur.selection() && cur.realAnchor().find(inset) == -1)
611                 return false;
612         inset->edit(cur, movingForward, 
613                 movingLeft ? Inset::ENTRY_DIRECTION_RIGHT : Inset::ENTRY_DIRECTION_LEFT);
614         cur.setCurrentFont();
615         return true;
616 }
617
618
619 bool Text::cursorBackward(Cursor & cur)
620 {
621         // Tell BufferView to test for FitCursor in any case!
622         cur.screenUpdateFlags(Update::FitCursor);
623
624         // not at paragraph start?
625         if (cur.pos() > 0) {
626                 // if on right side of boundary (i.e. not at paragraph end, but line end)
627                 // -> skip it, i.e. set boundary to true, i.e. go only logically left
628                 // there are some exceptions to ignore this: lineseps, newlines, spaces
629 #if 0
630                 // some effectless debug code to see the values in the debugger
631                 bool bound = cur.boundary();
632                 int rowpos = cur.textRow().pos();
633                 int pos = cur.pos();
634                 bool sep = cur.paragraph().isSeparator(cur.pos() - 1);
635                 bool newline = cur.paragraph().isNewline(cur.pos() - 1);
636                 bool linesep = cur.paragraph().isLineSeparator(cur.pos() - 1);
637 #endif
638                 if (!cur.boundary() &&
639                                 cur.textRow().pos() == cur.pos() &&
640                                 !cur.paragraph().isLineSeparator(cur.pos() - 1) &&
641                                 !cur.paragraph().isNewline(cur.pos() - 1) &&
642                                 !cur.paragraph().isEnvSeparator(cur.pos() - 1) &&
643                                 !cur.paragraph().isSeparator(cur.pos() - 1)) {
644                         return setCursor(cur, cur.pit(), cur.pos(), true, true);
645                 }
646                 
647                 // go left and try to enter inset
648                 if (checkAndActivateInset(cur, false))
649                         return false;
650                 
651                 // normal character left
652                 return setCursor(cur, cur.pit(), cur.pos() - 1, true, false);
653         }
654
655         // move to the previous paragraph or do nothing
656         if (cur.pit() > 0) {
657                 Paragraph & par = getPar(cur.pit() - 1);
658                 pos_type lastpos = par.size();
659                 if (lastpos > 0 && par.isEnvSeparator(lastpos - 1))
660                         return setCursor(cur, cur.pit() - 1, lastpos - 1, true, false);
661                 else
662                         return setCursor(cur, cur.pit() - 1, lastpos, true, false);
663         }
664         return false;
665 }
666
667
668 bool Text::cursorVisLeft(Cursor & cur, bool skip_inset)
669 {
670         Cursor temp_cur = cur;
671         temp_cur.posVisLeft(skip_inset);
672         if (temp_cur.depth() > cur.depth()) {
673                 cur = temp_cur;
674                 return false;
675         }
676         return setCursor(cur, temp_cur.pit(), temp_cur.pos(), 
677                 true, temp_cur.boundary());
678 }
679
680
681 bool Text::cursorVisRight(Cursor & cur, bool skip_inset)
682 {
683         Cursor temp_cur = cur;
684         temp_cur.posVisRight(skip_inset);
685         if (temp_cur.depth() > cur.depth()) {
686                 cur = temp_cur;
687                 return false;
688         }
689         return setCursor(cur, temp_cur.pit(), temp_cur.pos(),
690                 true, temp_cur.boundary());
691 }
692
693
694 bool Text::cursorForward(Cursor & cur)
695 {
696         // Tell BufferView to test for FitCursor in any case!
697         cur.screenUpdateFlags(Update::FitCursor);
698
699         // not at paragraph end?
700         if (cur.pos() != cur.lastpos()) {
701                 // in front of editable inset, i.e. jump into it?
702                 if (checkAndActivateInset(cur, true))
703                         return false;
704
705                 TextMetrics const & tm = cur.bv().textMetrics(this);
706                 // if left of boundary -> just jump to right side
707                 // but for RTL boundaries don't, because: abc|DDEEFFghi -> abcDDEEF|Fghi
708                 if (cur.boundary() && !tm.isRTLBoundary(cur.pit(), cur.pos()))
709                         return setCursor(cur, cur.pit(), cur.pos(), true, false);
710
711                 // next position is left of boundary, 
712                 // but go to next line for special cases like space, newline, linesep
713 #if 0
714                 // some effectless debug code to see the values in the debugger
715                 int endpos = cur.textRow().endpos();
716                 int lastpos = cur.lastpos();
717                 int pos = cur.pos();
718                 bool linesep = cur.paragraph().isLineSeparator(cur.pos());
719                 bool newline = cur.paragraph().isNewline(cur.pos());
720                 bool sep = cur.paragraph().isSeparator(cur.pos());
721                 if (cur.pos() != cur.lastpos()) {
722                         bool linesep2 = cur.paragraph().isLineSeparator(cur.pos()+1);
723                         bool newline2 = cur.paragraph().isNewline(cur.pos()+1);
724                         bool sep2 = cur.paragraph().isSeparator(cur.pos()+1);
725                 }
726 #endif
727                 if (cur.textRow().endpos() == cur.pos() + 1) {
728                         if (cur.paragraph().isEnvSeparator(cur.pos()) &&
729                             cur.pos() + 1 == cur.lastpos() &&
730                             cur.pit() != cur.lastpit()) {
731                                 // move to next paragraph
732                                 return setCursor(cur, cur.pit() + 1, 0, true, false);
733                         } else if (cur.textRow().endpos() != cur.lastpos() &&
734                                    !cur.paragraph().isNewline(cur.pos()) &&
735                                    !cur.paragraph().isEnvSeparator(cur.pos()) &&
736                                    !cur.paragraph().isLineSeparator(cur.pos()) &&
737                                    !cur.paragraph().isSeparator(cur.pos())) {
738                                 return setCursor(cur, cur.pit(), cur.pos() + 1, true, true);
739                         }
740                 }
741                 
742                 // in front of RTL boundary? Stay on this side of the boundary because:
743                 //   ab|cDDEEFFghi -> abc|DDEEFFghi
744                 if (tm.isRTLBoundary(cur.pit(), cur.pos() + 1))
745                         return setCursor(cur, cur.pit(), cur.pos() + 1, true, true);
746                 
747                 // move right
748                 return setCursor(cur, cur.pit(), cur.pos() + 1, true, false);
749         }
750
751         // move to next paragraph
752         if (cur.pit() != cur.lastpit())
753                 return setCursor(cur, cur.pit() + 1, 0, true, false);
754         return false;
755 }
756
757
758 bool Text::cursorUpParagraph(Cursor & cur)
759 {
760         bool updated = false;
761         if (cur.pos() > 0)
762                 updated = setCursor(cur, cur.pit(), 0);
763         else if (cur.pit() != 0)
764                 updated = setCursor(cur, cur.pit() - 1, 0);
765         return updated;
766 }
767
768
769 bool Text::cursorDownParagraph(Cursor & cur)
770 {
771         bool updated = false;
772         if (cur.pit() != cur.lastpit())
773                 if (lyxrc.mac_like_cursor_movement)
774                         if (cur.pos() == cur.lastpos())
775                                 updated = setCursor(cur, cur.pit() + 1, getPar(cur.pit() + 1).size());
776                         else
777                                 updated = setCursor(cur, cur.pit(), cur.lastpos());
778                 else
779                         updated = setCursor(cur, cur.pit() + 1, 0);
780         else
781                 updated = setCursor(cur, cur.pit(), cur.lastpos());
782         return updated;
783 }
784
785
786 // fix the cursor `cur' after a characters has been deleted at `where'
787 // position. Called by deleteEmptyParagraphMechanism
788 void Text::fixCursorAfterDelete(CursorSlice & cur, CursorSlice const & where)
789 {
790         // Do nothing if cursor is not in the paragraph where the
791         // deletion occurred,
792         if (cur.pit() != where.pit())
793                 return;
794
795         // If cursor position is after the deletion place update it
796         if (cur.pos() > where.pos())
797                 --cur.pos();
798
799         // Check also if we don't want to set the cursor on a spot behind the
800         // pagragraph because we erased the last character.
801         if (cur.pos() > cur.lastpos())
802                 cur.pos() = cur.lastpos();
803 }
804
805
806 bool Text::deleteEmptyParagraphMechanism(Cursor & cur,
807                 Cursor & old, bool & need_anchor_change)
808 {
809         //LYXERR(Debug::DEBUG, "DEPM: cur:\n" << cur << "old:\n" << old);
810
811         Paragraph & oldpar = old.paragraph();
812
813         // We allow all kinds of "mumbo-jumbo" when freespacing.
814         if (oldpar.isFreeSpacing())
815                 return false;
816
817         /* Ok I'll put some comments here about what is missing.
818            There are still some small problems that can lead to
819            double spaces stored in the document file or space at
820            the beginning of paragraphs(). This happens if you have
821            the cursor between to spaces and then save. Or if you
822            cut and paste and the selection have a space at the
823            beginning and then save right after the paste. (Lgb)
824         */
825
826         // If old.pos() == 0 and old.pos()(1) == LineSeparator
827         // delete the LineSeparator.
828         // MISSING
829
830         // If old.pos() == 1 and old.pos()(0) == LineSeparator
831         // delete the LineSeparator.
832         // MISSING
833
834         // Find a common inset and the corresponding depth.
835         size_t depth = 0;
836         for (; depth < cur.depth(); ++depth)
837                 if (&old.inset() == &cur[depth].inset())
838                         break;
839
840         // Whether a common inset is found and whether the cursor is still in 
841         // the same paragraph (possibly nested).
842         bool const same_par = depth < cur.depth() && old.pit() == cur[depth].pit();
843         bool const same_par_pos = depth == cur.depth() - 1 && same_par 
844                 && old.pos() == cur[depth].pos();
845         
846         // If the chars around the old cursor were spaces, delete one of them.
847         if (!same_par_pos) {
848                 // Only if the cursor has really moved.
849                 if (old.pos() > 0
850                     && old.pos() < oldpar.size()
851                     && oldpar.isLineSeparator(old.pos())
852                     && oldpar.isLineSeparator(old.pos() - 1)
853                     && !oldpar.isDeleted(old.pos() - 1)
854                     && !oldpar.isDeleted(old.pos())) {
855                         oldpar.eraseChar(old.pos() - 1, cur.buffer()->params().track_changes);
856 // FIXME: This will not work anymore when we have multiple views of the same buffer
857 // In this case, we will have to correct also the cursors held by
858 // other bufferviews. It will probably be easier to do that in a more
859 // automated way in CursorSlice code. (JMarc 26/09/2001)
860                         // correct all cursor parts
861                         if (same_par) {
862                                 fixCursorAfterDelete(cur[depth], old.top());
863                                 need_anchor_change = true;
864                         }
865                         return true;
866                 }
867         }
868
869         // only do our magic if we changed paragraph
870         if (same_par)
871                 return false;
872
873         // don't delete anything if this is the ONLY paragraph!
874         if (old.lastpit() == 0)
875                 return false;
876
877         // Do not delete empty paragraphs with keepempty set.
878         if (oldpar.allowEmpty())
879                 return false;
880
881         if (oldpar.empty() || (oldpar.size() == 1 && oldpar.isLineSeparator(0))) {
882                 // Delete old par.
883                 old.recordUndo(max(old.pit() - 1, pit_type(0)),
884                                min(old.pit() + 1, old.lastpit()));
885                 ParagraphList & plist = old.text()->paragraphs();
886                 bool const soa = oldpar.params().startOfAppendix();
887                 plist.erase(lyx::next(plist.begin(), old.pit()));
888                 // do not lose start of appendix marker (bug 4212)
889                 if (soa && old.pit() < pit_type(plist.size()))
890                         plist[old.pit()].params().startOfAppendix(true);
891
892                 // see #warning (FIXME?) above 
893                 if (cur.depth() >= old.depth()) {
894                         CursorSlice & curslice = cur[old.depth() - 1];
895                         if (&curslice.inset() == &old.inset()
896                             && curslice.pit() > old.pit()) {
897                                 --curslice.pit();
898                                 // since a paragraph has been deleted, all the
899                                 // insets after `old' have been copied and
900                                 // their address has changed. Therefore we
901                                 // need to `regenerate' cur. (JMarc)
902                                 cur.updateInsets(&(cur.bottom().inset()));
903                                 need_anchor_change = true;
904                         }
905                 }
906                 return true;
907         }
908
909         if (oldpar.stripLeadingSpaces(cur.buffer()->params().track_changes)) {
910                 need_anchor_change = true;
911                 // We return true here because the Paragraph contents changed and
912                 // we need a redraw before further action is processed.
913                 return true;
914         }
915
916         return false;
917 }
918
919
920 void Text::deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool trackChanges)
921 {
922         LASSERT(first >= 0 && first <= last && last < (int) pars_.size(), return);
923
924         for (pit_type pit = first; pit <= last; ++pit) {
925                 Paragraph & par = pars_[pit];
926
927                 // We allow all kinds of "mumbo-jumbo" when freespacing.
928                 if (par.isFreeSpacing())
929                         continue;
930
931                 for (pos_type pos = 1; pos < par.size(); ++pos) {
932                         if (par.isLineSeparator(pos) && par.isLineSeparator(pos - 1)
933                             && !par.isDeleted(pos - 1)) {
934                                 if (par.eraseChar(pos - 1, trackChanges)) {
935                                         --pos;
936                                 }
937                         }
938                 }
939
940                 // don't delete anything if this is the only remaining paragraph
941                 // within the given range. Note: Text::acceptOrRejectChanges()
942                 // sets the cursor to 'first' after calling DEPM
943                 if (first == last)
944                         continue;
945
946                 // don't delete empty paragraphs with keepempty set
947                 if (par.allowEmpty())
948                         continue;
949
950                 if (par.empty() || (par.size() == 1 && par.isLineSeparator(0))) {
951                         pars_.erase(lyx::next(pars_.begin(), pit));
952                         --pit;
953                         --last;
954                         continue;
955                 }
956
957                 par.stripLeadingSpaces(trackChanges);
958         }
959 }
960
961
962 } // namespace lyx