]> git.lyx.org Git - lyx.git/blob - src/Cursor.cpp
Avoid empty space above the top of the document
[lyx.git] / src / Cursor.cpp
1 /**
2  * \file Cursor.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author Alfredo Braunstein
8  * \author Dov Feldstern
9  * \author André Pönitz
10  * \author Stefan Schimanski
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "BufferView.h"
20 #include "CoordCache.h"
21 #include "Cursor.h"
22 #include "CutAndPaste.h"
23 #include "DispatchResult.h"
24 #include "Encoding.h"
25 #include "Font.h"
26 #include "FuncCode.h"
27 #include "FuncRequest.h"
28 #include "Language.h"
29 #include "Layout.h"
30 #include "LyXAction.h"
31 #include "LyXRC.h"
32 #include "Paragraph.h"
33 #include "ParIterator.h"
34 #include "Row.h"
35 #include "texstream.h"
36 #include "Text.h"
37 #include "TextMetrics.h"
38 #include "TocBackend.h"
39
40 #include "support/debug.h"
41 #include "support/docstream.h"
42 #include "support/ExceptionMessage.h"
43 #include "support/gettext.h"
44 #include "support/lassert.h"
45
46 #include "insets/InsetTabular.h"
47 #include "insets/InsetText.h"
48
49 #include "mathed/InsetMath.h"
50 #include "mathed/InsetMathBrace.h"
51 #include "mathed/InsetMathEnsureMath.h"
52 #include "mathed/InsetMathScript.h"
53 #include "mathed/MacroTable.h"
54 #include "mathed/MathData.h"
55 #include "mathed/MathFactory.h"
56 #include "mathed/InsetMathMacro.h"
57
58 #include <sstream>
59 #include <limits>
60 #include <map>
61 #include <algorithm>
62
63 using namespace std;
64
65 namespace lyx {
66
67 namespace {
68
69 // Find position closest to (x, y) in cell given by iter.
70 // Used only in mathed
71 DocIterator bruteFind(Cursor const & c, int x, int y)
72 {
73         double best_dist = numeric_limits<double>::max();
74
75         DocIterator result;
76
77         DocIterator it = c;
78         it.pos() = 0;
79         DocIterator et = c;
80         et.pos() = et.lastpos();
81         for (size_t i = 0;; ++i) {
82                 int xo;
83                 int yo;
84                 Inset const * inset = &it.inset();
85                 CoordCache::Insets const & insetCache = c.bv().coordCache().getInsets();
86
87                 // FIXME: in the case where the inset is not in the cache, this
88                 // means that no part of it is visible on screen. In this case
89                 // we don't do elaborate search and we just return the forwarded
90                 // DocIterator at its beginning.
91                 if (!insetCache.has(inset)) {
92                         it.top().pos() = 0;
93                         return it;
94                 }
95
96                 Point const o = insetCache.xy(inset);
97                 inset->cursorPos(c.bv(), it.top(), c.boundary(), xo, yo);
98                 // Convert to absolute
99                 xo += o.x_;
100                 yo += o.y_;
101                 double d = (x - xo) * (x - xo) + (y - yo) * (y - yo);
102                 // '<=' in order to take the last possible position
103                 // this is important for clicking behind \sum in e.g. '\sum_i a'
104                 LYXERR(Debug::DEBUG, "i: " << i << " d: " << d
105                         << " best: " << best_dist);
106                 if (d <= best_dist) {
107                         best_dist = d;
108                         result = it;
109                 }
110                 if (it == et)
111                         break;
112                 it.forwardPos();
113         }
114         return result;
115 }
116
117
118 } // namespace
119
120
121 CursorData::CursorData()
122         : DocIterator(), anchor_(),
123           selection_(false), mark_(false), word_selection_(false),
124           current_font(inherit_font),
125           autocorrect_(false), macromode_(false)
126 {}
127
128
129 CursorData::CursorData(Buffer * buffer)
130         : DocIterator(buffer), anchor_(),
131           selection_(false), mark_(false), word_selection_(false),
132           current_font(inherit_font),
133           autocorrect_(false), macromode_(false)
134 {}
135
136
137 CursorData::CursorData(DocIterator const & dit)
138         : DocIterator(dit), anchor_(),
139           selection_(false), mark_(false), word_selection_(false),
140           current_font(inherit_font),
141           autocorrect_(false), macromode_(false)
142 {}
143
144
145
146
147 ostream & operator<<(ostream & os, CursorData const & cur)
148 {
149         os << "\n cursor:                                | anchor:\n";
150         for (size_t i = 0, n = cur.depth(); i != n; ++i) {
151                 os << " " << cur[i] << " | ";
152                 if (i < cur.anchor_.depth())
153                         os << cur.anchor_[i];
154                 else
155                         os << "-------------------------------";
156                 os << "\n";
157         }
158         for (size_t i = cur.depth(), n = cur.anchor_.depth(); i < n; ++i) {
159                 os << "------------------------------- | " << cur.anchor_[i] << "\n";
160         }
161         os << " selection: " << cur.selection_
162 //         << " x_target: " << cur.x_target_
163            << " boundary: " << cur.boundary() << endl;
164         return os;
165 }
166
167
168 LyXErr & operator<<(LyXErr & os, CursorData const & cur)
169 {
170         os.stream() << cur;
171         return os;
172 }
173
174
175 // be careful: this is called from the bv's constructor, too, so
176 // bv functions are not yet available!
177 Cursor::Cursor(BufferView & bv)
178         : CursorData(&bv.buffer()), bv_(&bv),
179           x_target_(-1), textTargetOffset_(0),
180           beforeDispatchPosX_(0), beforeDispatchPosY_(0)
181 {}
182
183
184 void Cursor::reset()
185 {
186         clear();
187         push_back(CursorSlice(buffer()->inset()));
188         anchor_ = doc_iterator_begin(buffer());
189         anchor_.clear();
190         new_word_ = doc_iterator_begin(buffer());
191         new_word_.clear();
192         clearTargetX();
193         selection_ = false;
194         mark_ = false;
195 }
196
197
198 void Cursor::setCursor(DocIterator const & cur)
199 {
200         DocIterator::operator=(cur);
201 }
202
203
204 void Cursor::setCursorSelectionTo(DocIterator dit)
205 {
206         size_t i = 0;
207         // normalise dit
208         while (i < dit.depth() && i < anchor_.depth() && dit[i] == anchor_[i])
209                 ++i;
210         if (i != dit.depth()) {
211                 // otherwise the cursor is already normal
212                 if (i == anchor_.depth())
213                         // dit is a proper extension of the anchor_
214                         dit.cutOff(i - 1);
215                 else if (i + 1 < dit.depth()) {
216                         // one has dit[i] != anchor_[i] but either dit[i-1] == anchor_[i-1]
217                         // or i == 0. Remove excess.
218                         dit.cutOff(i);
219                         if (dit[i] > anchor_[i])
220                                 // place dit after the inset it was in
221                                 ++dit.pos();
222                 }
223         }
224         setCursor(dit);
225         setSelection();
226 }
227
228
229 void Cursor::setCursorToAnchor()
230 {
231         if (selection()) {
232                 DocIterator normal = anchor_;
233                 while (depth() < normal.depth())
234                         normal.pop_back();
235                 if (depth() < anchor_.depth() && top() <= anchor_[depth() - 1])
236                         ++normal.pos();
237                 setCursor(normal);
238         }
239 }
240
241
242 void Cursor::setCursorData(CursorData const & data)
243 {
244         CursorData::operator=(data);
245 }
246
247
248 bool Cursor::getStatus(FuncRequest const & cmd, FuncStatus & status) const
249 {
250         Cursor cur = *this;
251
252         // Try to fix cursor in case it is broken.
253         cur.fixIfBroken();
254
255         // Is this a function that acts on inset at point?
256         Inset * inset = cur.nextInset();
257         if (lyxaction.funcHasFlag(cmd.action(), LyXAction::AtPoint)
258             && inset && inset->getStatus(cur, cmd, status))
259                 return true;
260
261         // This is, of course, a mess. Better create a new doc iterator and use
262         // this in Inset::getStatus. This might require an additional
263         // BufferView * arg, though (which should be avoided)
264         //Cursor safe = *this;
265         bool res = false;
266         for ( ; cur.depth(); cur.pop()) {
267                 //lyxerr << "\nCursor::getStatus: cmd: " << cmd << endl << *this << endl;
268                 // LASSERT: Is it safe to continue here, or should we return?
269                 LASSERT(cur.idx() <= cur.lastidx(), /**/);
270                 LASSERT(cur.pit() <= cur.lastpit(), /**/);
271                 LASSERT(cur.pos() <= cur.lastpos(), /**/);
272
273                 // The inset's getStatus() will return 'true' if it made
274                 // a definitive decision on whether it want to handle the
275                 // request or not. The result of this decision is put into
276                 // the 'status' parameter.
277                 if (cur.inset().getStatus(cur, cmd, status)) {
278                         res = true;
279                         break;
280                 }
281         }
282         return res;
283 }
284
285
286 void Cursor::saveBeforeDispatchPosXY()
287 {
288         getPos(beforeDispatchPosX_, beforeDispatchPosY_);
289 }
290
291
292 void Cursor::dispatch(FuncRequest const & cmd0)
293 {
294         LYXERR(Debug::ACTION, "Cursor::dispatch: cmd: " << cmd0 << '\n' << *this);
295         if (empty())
296                 return;
297
298         fixIfBroken();
299         FuncRequest cmd = cmd0;
300         Cursor safe = *this;
301         Cursor old = *this;
302         disp_ = DispatchResult();
303
304         beginUndoGroup();
305
306         // Is this a function that acts on inset at point?
307         if (lyxaction.funcHasFlag(cmd.action(), LyXAction::AtPoint)
308             && nextInset()) {
309                 disp_.dispatched(true);
310                 disp_.screenUpdate(Update::FitCursor | Update::Force);
311                 FuncRequest tmpcmd = cmd;
312                 LYXERR(Debug::DEBUG, "Cursor::dispatch: (AtPoint) cmd: "
313                         << cmd0 << endl << *this);
314                 nextInset()->dispatch(*this, tmpcmd);
315                 if (disp_.dispatched()) {
316                         endUndoGroup();
317                         return;
318                 }
319         }
320
321         // store some values to be used inside of the handlers
322         beforeDispatchCursor_ = *this;
323         for (; depth(); pop(), boundary(false)) {
324                 LYXERR(Debug::DEBUG, "Cursor::dispatch: cmd: "
325                         << cmd0 << endl << *this);
326
327                 // In any of these cases, the cursor is invalid, and we should
328                 // try to save this document rather than crash.
329                 LBUFERR(pos() <= lastpos());
330                 LBUFERR(idx() <= lastidx());
331                 LBUFERR(pit() <= lastpit());
332
333                 // The common case is 'LFUN handled, need update', so make the
334                 // LFUN handler's life easier by assuming this as default value.
335                 // The handler can reset the update and val flags if necessary.
336                 disp_.screenUpdate(Update::FitCursor | Update::Force);
337                 disp_.dispatched(true);
338                 inset().dispatch(*this, cmd);
339                 if (disp_.dispatched())
340                         break;
341         }
342
343         // it completely to get a 'bomb early' behaviour in case this
344         // object will be used again.
345         if (!disp_.dispatched()) {
346                 LYXERR(Debug::DEBUG, "RESTORING OLD CURSOR!");
347                 // We might have invalidated the cursor when removing an empty
348                 // paragraph while the cursor could not be moved out the inset
349                 // while we initially thought we could. This might happen when
350                 // a multiline inset becomes an inline inset when the second
351                 // paragraph is removed.
352                 if (safe.pit() > safe.lastpit()) {
353                         safe.pit() = safe.lastpit();
354                         safe.pos() = safe.lastpos();
355                 }
356                 operator=(safe);
357                 disp_.screenUpdate(Update::None);
358                 disp_.dispatched(false);
359         } else {
360                 // restore the previous one because nested Cursor::dispatch calls
361                 // are possible which would change it
362                 beforeDispatchCursor_ = safe.beforeDispatchCursor_;
363         }
364         endUndoGroup();
365
366         // NOTE: The code below has been copied to BufferView::dispatch.
367         // If you need to modify this, please update the other one too.
368
369         // notify insets we just left
370         if (*this != old) {
371                 old.beginUndoGroup();
372                 old.fixIfBroken();
373                 bool badcursor = notifyCursorLeavesOrEnters(old, *this);
374                 if (badcursor) {
375                         fixIfBroken();
376                         bv().resetInlineCompletionPos();
377                 }
378                 old.endUndoGroup();
379         }
380 }
381
382
383 DispatchResult const & Cursor::result() const
384 {
385         return disp_;
386 }
387
388
389 BufferView & Cursor::bv() const
390 {
391         LBUFERR(bv_);
392         return *bv_;
393 }
394
395
396 void Cursor::pop()
397 {
398         LBUFERR(depth() >= 1);
399         pop_back();
400 }
401
402
403 void Cursor::push(Inset & p)
404 {
405         push_back(CursorSlice(p));
406         p.setBuffer(*buffer());
407 }
408
409
410 void Cursor::pushBackward(Inset & p)
411 {
412         LASSERT(!empty(), return);
413         //lyxerr << "Entering inset " << t << " front" << endl;
414         push(p);
415         p.idxFirst(*this);
416 }
417
418
419 bool Cursor::popBackward()
420 {
421         LASSERT(!empty(), return false);
422         if (depth() == 1)
423                 return false;
424         pop();
425         return true;
426 }
427
428
429 bool Cursor::popForward()
430 {
431         LASSERT(!empty(), return false);
432         //lyxerr << "Leaving inset from in back" << endl;
433         const pos_type lp = (depth() > 1) ? (*this)[depth() - 2].lastpos() : 0;
434         if (depth() == 1)
435                 return false;
436         pop();
437         pos() += lastpos() - lp + 1;
438         return true;
439 }
440
441
442 int Cursor::currentMode()
443 {
444         LASSERT(!empty(), return Inset::UNDECIDED_MODE);
445         for (int i = depth() - 1; i >= 0; --i) {
446                 int res = operator[](i).inset().currentMode();
447                 bool locked_mode = operator[](i).inset().lockedMode();
448                 // Also return UNDECIDED_MODE when the mode is locked,
449                 // as in this case it is treated the same as TEXT_MODE
450                 if (res != Inset::UNDECIDED_MODE || locked_mode)
451                         return res;
452         }
453         return Inset::TEXT_MODE;
454 }
455
456
457 bool Cursor::inCoordCache() const
458 {
459         // the root inset is not in cache, but we do not need it.
460         if (depth() == 1)
461                 return true;
462         CoordCache::Insets const & icache = bv_->coordCache().getInsets();
463         for (size_t i = 1 ; i < depth() ; ++i)
464                 if (!icache.has(&(*this)[i].inset()))
465                         return false;
466         return true;
467 }
468
469
470 void Cursor::getPos(int & x, int & y) const
471 {
472         Point p = bv().getPos(*this);
473         x = p.x_;
474         y = p.y_;
475 }
476
477
478 Row const & Cursor::textRow() const
479 {
480         CursorSlice const & cs = innerTextSlice();
481         ParagraphMetrics const & pm = bv().parMetrics(cs.text(), cs.pit());
482         return pm.getRow(pos(), boundary());
483 }
484
485
486 void Cursor::resetAnchor()
487 {
488         anchor_ = *this;
489         checkNewWordPosition();
490 }
491
492
493 void Cursor::markNewWordPosition()
494 {
495         if (lyxrc.spellcheck_continuously && inTexted() && new_word_.empty()) {
496                 FontSpan nw = locateWord(WHOLE_WORD);
497                 if (nw.size() == 1) {
498                         LYXERR(Debug::DEBUG, "start new word: "
499                                 << " par: " << pit()
500                                 << " pos: " << nw.first);
501                         new_word_ = *this;
502                 }
503         }
504 }
505
506
507 void Cursor::clearNewWordPosition()
508 {
509         if (!new_word_.empty()) {
510                 LYXERR(Debug::DEBUG, "clear new word: "
511                         << " par: " << pit()
512                         << " pos: " << pos());
513                 new_word_.resize(0);
514         }
515 }
516
517
518 void Cursor::checkNewWordPosition()
519 {
520         if (!lyxrc.spellcheck_continuously || new_word_.empty())
521                 return ;
522         if (!inTexted())
523                 clearNewWordPosition();
524         else {
525                 // forget the position of the current new word if
526                 // 1) the paragraph changes or
527                 // 2) the count of nested insets changes or
528                 // 3) the cursor pos is out of paragraph bound
529                 if (pit() != new_word_.pit() ||
530                         depth() != new_word_.depth() ||
531                         new_word_.pos() > new_word_.lastpos()) {
532                         clearNewWordPosition();
533                 } else if (new_word_.fixIfBroken())
534                         // 4) or the remembered position was "broken"
535                         clearNewWordPosition();
536                 else {
537                         FontSpan nw = locateWord(WHOLE_WORD);
538                         if (!nw.empty()) {
539                                 FontSpan ow = new_word_.locateWord(WHOLE_WORD);
540                                 if (nw.intersect(ow).empty())
541                                         clearNewWordPosition();
542                                 else
543                                         LYXERR(Debug::DEBUG, "new word: "
544                                                    << " par: " << pit()
545                                                    << " pos: " << nw.first << ".." << nw.last);
546                         } else {
547                                 clearNewWordPosition();
548                         }
549                 }
550         }
551 }
552
553
554 bool Cursor::posVisRight(bool skip_inset)
555 {
556         Cursor new_cur = *this; // where we will move to
557         pos_type left_pos; // position visually left of current cursor
558         pos_type right_pos; // position visually right of current cursor
559
560         getSurroundingPos(left_pos, right_pos);
561
562         LYXERR(Debug::RTL, left_pos <<"|"<< right_pos << " (pos: "<< pos() <<")");
563
564         // Are we at an inset?
565         new_cur.pos() = right_pos;
566         new_cur.boundary(false);
567         if (!skip_inset &&
568                 text()->checkAndActivateInsetVisual(new_cur, right_pos >= pos(), false)) {
569                 // we actually move the cursor at the end of this
570                 // function, for now we just keep track of the new
571                 // position in new_cur...
572                 LYXERR(Debug::RTL, "entering inset at: " << new_cur.pos());
573         }
574
575         // Are we already at rightmost pos in row?
576         else if (text()->empty() || right_pos == -1) {
577
578                 new_cur = *this;
579                 if (!new_cur.posVisToNewRow(false)) {
580                         LYXERR(Debug::RTL, "not moving!");
581                         return false;
582                 }
583
584                 // we actually move the cursor at the end of this
585                 // function, for now just keep track of the new
586                 // position in new_cur...
587                 LYXERR(Debug::RTL, "right edge, moving: " << int(new_cur.pit()) << ","
588                         << int(new_cur.pos()) << "," << (new_cur.boundary() ? 1 : 0));
589
590         }
591         // normal movement to the right
592         else {
593                 new_cur = *this;
594                 // Recall, if the cursor is at position 'x', that
595                 // means *before* the character at position 'x'. In
596                 // RTL, "before" means "to the right of", in LTR, "to
597                 // the left of". So currently our situation is this:
598                 // the position to our right is 'right_pos' (i.e.,
599                 // we're currently to the left of 'right_pos'). In
600                 // order to move to the right, it depends whether or
601                 // not the character at 'right_pos' is RTL.
602                 bool const new_pos_is_RTL = paragraph().getFontSettings(
603                         buffer()->params(), right_pos).isVisibleRightToLeft();
604                 // If the character at 'right_pos' *is* LTR, then in
605                 // order to move to the right of it, we need to be
606                 // *after* 'right_pos', i.e., move to position
607                 // 'right_pos' + 1.
608                 if (!new_pos_is_RTL) {
609                         new_cur.pos() = right_pos + 1;
610                         // set the boundary to true in two situations:
611                         if (
612                         // 1. if new_pos is now lastpos, and we're in
613                         // an RTL paragraph (this means that we're
614                         // moving right to the end of an LTR chunk
615                         // which is at the end of an RTL paragraph);
616                                 (new_cur.pos() == lastpos()
617                                  && paragraph().isRTL(buffer()->params()))
618                         // 2. if the position *after* right_pos is RTL
619                         // (we want to be *after* right_pos, not
620                         // before right_pos + 1!)
621                                 || paragraph().getFontSettings(buffer()->params(),
622                                                 new_cur.pos()).isVisibleRightToLeft()
623                         )
624                                 new_cur.boundary(true);
625                         else // set the boundary to false
626                                 new_cur.boundary(false);
627                 }
628                 // Otherwise (if the character at position 'right_pos'
629                 // is RTL), then moving to the right of it is as easy
630                 // as setting the new position to 'right_pos'.
631                 else {
632                         new_cur.pos() = right_pos;
633                         new_cur.boundary(false);
634                 }
635
636         }
637
638         bool const moved = new_cur != *this || new_cur.boundary() != boundary();
639
640         if (moved) {
641                 LYXERR(Debug::RTL, "moving to: " << new_cur.pos()
642                         << (new_cur.boundary() ? " (boundary)" : ""));
643                 *this = new_cur;
644         }
645
646         return moved;
647 }
648
649
650 bool Cursor::posVisLeft(bool skip_inset)
651 {
652         Cursor new_cur = *this; // where we will move to
653         pos_type left_pos; // position visually left of current cursor
654         pos_type right_pos; // position visually right of current cursor
655
656         getSurroundingPos(left_pos, right_pos);
657
658         LYXERR(Debug::RTL, left_pos <<"|"<< right_pos << " (pos: "<< pos() <<")");
659
660         // Are we at an inset?
661         new_cur.pos() = left_pos;
662         new_cur.boundary(false);
663         if (!skip_inset &&
664                 text()->checkAndActivateInsetVisual(new_cur, left_pos >= pos(), true)) {
665                 // we actually move the cursor at the end of this
666                 // function, for now we just keep track of the new
667                 // position in new_cur...
668                 LYXERR(Debug::RTL, "entering inset at: " << new_cur.pos());
669         }
670
671         // Are we already at leftmost pos in row?
672         else if (text()->empty() || left_pos == -1) {
673
674                 new_cur = *this;
675                 if (!new_cur.posVisToNewRow(true)) {
676                         LYXERR(Debug::RTL, "not moving!");
677                         return false;
678                 }
679
680                 // we actually move the cursor at the end of this
681                 // function, for now just keep track of the new
682                 // position in new_cur...
683                 LYXERR(Debug::RTL, "left edge, moving: " << int(new_cur.pit()) << ","
684                         << int(new_cur.pos()) << "," << (new_cur.boundary() ? 1 : 0));
685
686         }
687         // normal movement to the left
688         else {
689                 new_cur = *this;
690                 // Recall, if the cursor is at position 'x', that
691                 // means *before* the character at position 'x'. In
692                 // RTL, "before" means "to the right of", in LTR, "to
693                 // the left of". So currently our situation is this:
694                 // the position to our left is 'left_pos' (i.e., we're
695                 // currently to the right of 'left_pos'). In order to
696                 // move to the left, it depends whether or not the
697                 // character at 'left_pos' is RTL.
698                 bool const new_pos_is_RTL = paragraph().getFontSettings(
699                         buffer()->params(), left_pos).isVisibleRightToLeft();
700                 // If the character at 'left_pos' *is* RTL, then in
701                 // order to move to the left of it, we need to be
702                 // *after* 'left_pos', i.e., move to position
703                 // 'left_pos' + 1.
704                 if (new_pos_is_RTL) {
705                         new_cur.pos() = left_pos + 1;
706                         // set the boundary to true in two situations:
707                         if (
708                         // 1. if new_pos is now lastpos and we're in
709                         // an LTR paragraph (this means that we're
710                         // moving left to the end of an RTL chunk
711                         // which is at the end of an LTR paragraph);
712                                 (new_cur.pos() == lastpos()
713                                  && !paragraph().isRTL(buffer()->params()))
714                         // 2. if the position *after* left_pos is not
715                         // RTL (we want to be *after* left_pos, not
716                         // before left_pos + 1!)
717                                 || !paragraph().getFontSettings(buffer()->params(),
718                                                 new_cur.pos()).isVisibleRightToLeft()
719                         )
720                                 new_cur.boundary(true);
721                         else // set the boundary to false
722                                 new_cur.boundary(false);
723                 }
724                 // Otherwise (if the character at position 'left_pos'
725                 // is LTR), then moving to the left of it is as easy
726                 // as setting the new position to 'left_pos'.
727                 else {
728                         new_cur.pos() = left_pos;
729                         new_cur.boundary(false);
730                 }
731
732         }
733
734         bool const moved = new_cur != *this || new_cur.boundary() != boundary();
735
736         if (moved) {
737                 LYXERR(Debug::RTL, "moving to: " << new_cur.pos()
738                         << (new_cur.boundary() ? " (boundary)" : ""));
739                 *this = new_cur;
740         }
741
742         return moved;
743 }
744
745
746 namespace {
747
748 // Return true on success
749 bool findNonVirtual(Row const & row, Row::const_iterator & cit, bool onleft)
750 {
751         if (onleft) {
752                 while (cit != row.begin() && cit->isVirtual())
753                         --cit;
754         } else {
755                 while (cit != row.end() && cit->isVirtual())
756                         ++cit;
757         }
758         return cit != row.end() && !cit->isVirtual();
759 }
760
761 } // namespace
762
763 void Cursor::getSurroundingPos(pos_type & left_pos, pos_type & right_pos) const
764 {
765         // by default, we know nothing.
766         left_pos = -1;
767         right_pos = -1;
768
769         Row const & row = textRow();
770         double dummy = 0;
771         Row::const_iterator cit = row.findElement(pos(), boundary(), dummy);
772         // Handle the case of empty row
773         if (cit == row.end()) {
774                 if (row.isRTL())
775                         right_pos = row.pos();
776                 else
777                         left_pos = row.pos() - 1;
778                 return;
779         }
780
781         // skip virtual elements and exit if no non-virtual one exists
782         if (!findNonVirtual(row, cit, !cit->isRTL()))
783                 return;
784
785         // if the position is at the left side of the element, we have to
786         // look at the previous element
787         if (pos() == cit->left_pos()) {
788                 LYXERR(Debug::RTL, "getSurroundingPos(" << pos() << (boundary() ? "b" : "")
789                            << "), AT LEFT of *cit=" << *cit);
790                 // this one is easy (see common case below)
791                 right_pos = pos() - (cit->isRTL() ? 1 : 0);
792                 // at the left of the row
793                 if (cit == row.begin())
794                         return;
795                 --cit;
796                 if (!findNonVirtual(row, cit, true))
797                         return;
798                 // [...[ is the row element, | is cursor position (! with boundary)
799                 // [ 1 2 [ is a ltr row element with pos=1 and endpos=3
800                 // ] 2 1] is an rtl row element with pos=1 and endpos=3
801                 //    [ 1 2 [  [|3 4 [ => (2, 3)
802                 // or [ 1 2 [  ]!4 3 ] => (2, 4)
803                 // or ] 2 1 ]  [|3 4 [ => (1, 3)
804                 // or ] 4 3 ]  ]!2 1 ] => (3, 2)
805                 left_pos = cit->right_pos() - (cit->isRTL() ? 0 : 1);
806                 // happens with consecutive row of same direction
807                 if (left_pos == right_pos) {
808                         left_pos += cit->isRTL() ? 1 : -1;
809                 }
810         }
811         // same code but with the element at the right
812         else if (pos() == cit->right_pos()) {
813                 LYXERR(Debug::RTL, "getSurroundingPos(" << pos() << (boundary() ? "b" : "")
814                            << "), AT RIGHT of *cit=" << *cit);
815                 // this one is easy (see common case below)
816                 left_pos = pos() - (cit->isRTL() ? 0 : 1);
817                 // at the right of the row
818                 if (cit + 1 == row.end())
819                         return;
820                 ++cit;
821                 if (!findNonVirtual(row, cit, false))
822                         return;
823                 //    [ 1 2![  [ 3 4 [ => (2, 3)
824                 // or [ 1 2![  ] 4 3 ] => (2, 4)
825                 // or ] 2 1|]  [ 3 4 [ => (1, 3)
826                 // or ] 4 3|]  ] 2 1 ] => (3, 2)
827                 right_pos = cit->left_pos() - (cit->isRTL() ? 1 : 0);
828                 // happens with consecutive row of same direction
829                 if (right_pos == left_pos)
830                         right_pos += cit->isRTL() ? -1 : 1;
831         }
832         // common case: both positions are inside the row element
833         else {
834                 //    [ 1 2|3 [ => (2, 3)
835                 // or ] 3|2 1 ] => (3, 2)
836                 left_pos = pos() - (cit->isRTL() ? 0 : 1);
837                 right_pos = pos() - (cit->isRTL() ? 1 : 0);
838         }
839
840         // Note that debug message does not catch all early returns above
841         LYXERR(Debug::RTL,"getSurroundingPos(" << pos() << (boundary() ? "b" : "")
842                    << ") => (" << left_pos << ", " << right_pos <<")");
843 }
844
845
846 bool Cursor::posVisToNewRow(bool movingLeft)
847 {
848         Row const & row = textRow();
849         bool par_is_LTR = !row.isRTL();
850
851         // Inside a table, determining whether to move to the next or
852         // previous row should be done based on the table's direction.
853         if (inset().asInsetTabular()) {
854                 par_is_LTR = !inset().asInsetTabular()->isRightToLeft(*this);
855                 LYXERR(Debug::RTL, "Inside table! par_is_LTR=" << (par_is_LTR ? 1 : 0));
856         }
857
858         // if moving left in an LTR paragraph or moving right in an
859         // RTL one, move to previous row
860         if (par_is_LTR == movingLeft) {
861                 if (row.pos() == 0) { // we're at first row in paragraph
862                         if (pit() == 0) // no previous paragraph! don't move
863                                 return false;
864                         // move to last pos in previous par
865                         --pit();
866                         pos() = lastpos();
867                         boundary(false);
868                 } else { // move to previous row in this par
869                         pos() = row.pos() - 1; // this is guaranteed to be in previous row
870                         boundary(false);
871                 }
872         }
873         // if moving left in an RTL paragraph or moving right in an
874         // LTR one, move to next row
875         else {
876                 if (row.endpos() == lastpos()) { // we're at last row in paragraph
877                         if (pit() == lastpit()) // last paragraph! don't move
878                                 return false;
879                         // move to first row in next par
880                         ++pit();
881                         pos() = 0;
882                         boundary(false);
883                 } else { // move to next row in this par
884                         pos() = row.endpos();
885                         boundary(false);
886                 }
887         }
888
889         // make sure we're at left-/right-most pos in new row
890         posVisToRowExtremity(!movingLeft);
891
892         return true;
893 }
894
895
896 void Cursor::posVisToRowExtremity(bool left)
897 {
898         LYXERR(Debug::RTL, "entering extremity: " << pit() << "," << pos() << ","
899                 << (boundary() ? 1 : 0));
900
901         TextMetrics const & tm = bv_->textMetrics(text());
902         // Looking for extremities is like clicking on the left or the
903         // right of the row.
904         int x = tm.origin().x_ + (left ? 0 : textRow().width());
905         bool b = false;
906         pos() = tm.getPosNearX(textRow(), x, b);
907         boundary(b);
908
909         LYXERR(Debug::RTL, "leaving extremity: " << pit() << "," << pos() << ","
910                 << (boundary() ? 1 : 0));
911 }
912
913
914 bool Cursor::reverseDirectionNeeded() const
915 {
916         /*
917          * We determine the directions based on the direction of the
918          * bottom() --- i.e., outermost --- paragraph, because that is
919          * the only way to achieve consistency of the arrow's movements
920          * within a paragraph, and thus avoid situations in which the
921          * cursor gets stuck.
922          */
923         return bottom().paragraph().isRTL(bv().buffer().params());
924 }
925
926
927 CursorSlice Cursor::normalAnchor() const
928 {
929         if (!selection())
930                 return top();
931         // LASSERT: There have been several bugs around this code, that seem
932         // to involve failures to reset the anchor. We can at least not crash
933         // in release mode by resetting it ourselves.
934         if (anchor_.depth() < depth()) {
935                 LYXERR0("Cursor is deeper than anchor. PLEASE REPORT.\nCursor is"
936                         << *this);
937                 const_cast<DocIterator &>(anchor_) = *this;
938         }
939
940         CursorSlice normal = anchor_[depth() - 1];
941         if (depth() < anchor_.depth() && top() <= normal) {
942                 // anchor is behind cursor -> move anchor behind the inset
943                 ++normal.pos();
944         }
945         return normal;
946 }
947
948
949 CursorSlice Cursor::selBegin() const
950 {
951         if (!selection())
952                 return top();
953         return normalAnchor() < top() ? normalAnchor() : top();
954 }
955
956
957 CursorSlice Cursor::selEnd() const
958 {
959         if (!selection())
960                 return top();
961         return normalAnchor() > top() ? normalAnchor() : top();
962 }
963
964
965 DocIterator Cursor::selectionBegin() const
966 {
967         if (!selection())
968                 return *this;
969
970         DocIterator di;
971         // FIXME: This is a work-around for the problem that
972         // CursorSlice doesn't keep track of the boundary.
973         if (normalAnchor() == top())
974                 di = anchor_.boundary() > boundary() ? anchor_ : *this;
975         else
976                 di = normalAnchor() < top() ? anchor_ : *this;
977         di.resize(depth());
978         return di;
979 }
980
981
982 DocIterator Cursor::selectionEnd() const
983 {
984         if (!selection())
985                 return *this;
986
987         DocIterator di;
988         // FIXME: This is a work-around for the problem that
989         // CursorSlice doesn't keep track of the boundary.
990         if (normalAnchor() == top())
991                 di = anchor_.boundary() < boundary() ? anchor_ : *this;
992         else
993                 di = normalAnchor() > top() ? anchor_ : *this;
994
995         if (di.depth() > depth()) {
996                 di.resize(depth());
997                 ++di.pos();
998         }
999         return di;
1000 }
1001
1002
1003 void Cursor::setSelection()
1004 {
1005         selection(true);
1006         if (idx() == normalAnchor().idx() &&
1007             pit() == normalAnchor().pit() &&
1008             pos() == normalAnchor().pos())
1009                 selection(false);
1010 }
1011
1012
1013 void Cursor::setSelection(DocIterator const & where, int n)
1014 {
1015         setCursor(where);
1016         selection(true);
1017         anchor_ = where;
1018         pos() += n;
1019 }
1020
1021
1022 void Cursor::clearSelection()
1023 {
1024         selection(false);
1025         setWordSelection(false);
1026         setMark(false);
1027         resetAnchor();
1028 }
1029
1030
1031 void Cursor::setTargetX(int x)
1032 {
1033         x_target_ = x;
1034         textTargetOffset_ = 0;
1035 }
1036
1037
1038 int Cursor::x_target() const
1039 {
1040         return x_target_;
1041 }
1042
1043
1044 void Cursor::clearTargetX()
1045 {
1046         x_target_ = -1;
1047         textTargetOffset_ = 0;
1048 }
1049
1050
1051 void Cursor::updateTextTargetOffset()
1052 {
1053         int x;
1054         int y;
1055         getPos(x, y);
1056         textTargetOffset_ = x - x_target_;
1057 }
1058
1059
1060 void Cursor::info(odocstream & os, bool devel_mode) const
1061 {
1062         for (int i = 1, n = depth(); i < n; ++i) {
1063                 operator[](i).inset().infoize(os);
1064                 os << "  ";
1065         }
1066         if (pos() != 0) {
1067                 Inset const * inset = prevInset();
1068                 // prevInset() can return 0 in certain case.
1069                 if (inset)
1070                         prevInset()->infoize2(os);
1071         }
1072         if (devel_mode) {
1073                 InsetMath * math = inset().asInsetMath();
1074                 if (math)
1075                         os << _(", Inset: ") << math->id();
1076                 os << _(", Cell: ") << idx();
1077                 os << _(", Position: ") << pos();
1078         }
1079
1080 }
1081
1082
1083 bool Cursor::selHandle(bool sel)
1084 {
1085         //lyxerr << "Cursor::selHandle" << endl;
1086         if (mark())
1087                 sel = true;
1088         if (sel == selection())
1089                 return false;
1090
1091         if (!sel)
1092                 cap::saveSelection(*this);
1093
1094         resetAnchor();
1095         selection(sel);
1096         return true;
1097 }
1098 } // namespace lyx
1099
1100
1101 ///////////////////////////////////////////////////////////////////
1102 //
1103 // FIXME: Look here
1104 // The part below is the non-integrated rest of the original math
1105 // cursor. This should be either generalized for texted or moved
1106 // back to mathed (in most cases to InsetMathNest).
1107 //
1108 ///////////////////////////////////////////////////////////////////
1109
1110 #include "mathed/InsetMathChar.h"
1111 #include "mathed/InsetMathGrid.h"
1112 #include "mathed/InsetMathScript.h"
1113 #include "mathed/InsetMathUnknown.h"
1114 #include "mathed/MathFactory.h"
1115 #include "mathed/MathStream.h"
1116 #include "mathed/MathSupport.h"
1117
1118
1119 namespace lyx {
1120
1121 bool Cursor::isInside(Inset const * p) const
1122 {
1123         for (size_t i = 0; i != depth(); ++i)
1124                 if (&operator[](i).inset() == p)
1125                         return true;
1126         return false;
1127 }
1128
1129
1130 void Cursor::leaveInset(Inset const & inset)
1131 {
1132         for (size_t i = 0; i != depth(); ++i) {
1133                 if (&operator[](i).inset() == &inset) {
1134                         resize(i);
1135                         return;
1136                 }
1137         }
1138 }
1139
1140
1141 bool Cursor::openable(MathAtom const & t) const
1142 {
1143         if (!t->isActive())
1144                 return false;
1145
1146         if (t->lock())
1147                 return false;
1148
1149         if (!selection())
1150                 return true;
1151
1152         // we can't move into anything new during selection
1153         if (depth() >= anchor_.depth())
1154                 return false;
1155         if (t.nucleus() != &anchor_[depth()].inset())
1156                 return false;
1157
1158         return true;
1159 }
1160
1161
1162 void Cursor::setScreenPos(int x, int /*y*/)
1163 {
1164         setTargetX(x);
1165         //bruteFind(*this, x, y, 0, bv().workWidth(), 0, bv().workHeight());
1166 }
1167
1168
1169
1170 void Cursor::plainErase()
1171 {
1172         cell().erase(pos());
1173 }
1174
1175
1176 void Cursor::markInsert()
1177 {
1178         insert(char_type(0));
1179 }
1180
1181
1182 void Cursor::markErase()
1183 {
1184         cell().erase(pos());
1185 }
1186
1187
1188 void Cursor::plainInsert(MathAtom const & t)
1189 {
1190         cell().insert(pos(), t);
1191         ++pos();
1192         inset().setBuffer(bv_->buffer());
1193         inset().initView();
1194         checkBufferStructure();
1195 }
1196
1197
1198 void Cursor::insert(docstring const & str)
1199 {
1200         for (char_type c : str)
1201                 insert(c);
1202 }
1203
1204
1205 void Cursor::insert(char_type c)
1206 {
1207         //lyxerr << "Cursor::insert char '" << c << "'" << endl;
1208         LASSERT(!empty(), return);
1209         if (inMathed()) {
1210                 cap::selClearOrDel(*this);
1211                 insert(new InsetMathChar(c));
1212         } else {
1213                 text()->insertChar(*this, c);
1214         }
1215 }
1216
1217
1218 void Cursor::insert(MathAtom const & t)
1219 {
1220         //lyxerr << "Cursor::insert MathAtom '" << t << "'" << endl;
1221         macroModeClose();
1222         cap::selClearOrDel(*this);
1223         plainInsert(t);
1224 }
1225
1226
1227 void Cursor::insert(Inset * inset0)
1228 {
1229         LASSERT(inset0, return);
1230         if (inMathed())
1231                 insert(MathAtom(inset0->asInsetMath()));
1232         else {
1233                 text()->insertInset(*this, inset0);
1234                 inset0->setBuffer(bv_->buffer());
1235                 inset0->initView();
1236                 if (inset0->isLabeled())
1237                         forceBufferUpdate();
1238         }
1239 }
1240
1241
1242 int Cursor::niceInsert(docstring const & t, Parse::flags f, bool enter)
1243 {
1244         MathData ar(buffer());
1245         asArray(t, ar, f);
1246         if (ar.size() == 1 && (enter || selection()))
1247                 niceInsert(ar[0]);
1248         else
1249                 insert(ar);
1250         return ar.size();
1251 }
1252
1253
1254 void Cursor::niceInsert(MathAtom const & t)
1255 {
1256         macroModeClose();
1257         docstring const safe = cap::grabAndEraseSelection(*this);
1258         plainInsert(t);
1259         // If possible, enter the new inset and move the contents of the selection
1260         if (t->isActive()) {
1261                 posBackward();
1262                 // be careful here: don't use 'pushBackward(t)' as this we need to
1263                 // push the clone, not the original
1264                 pushBackward(*nextInset());
1265                 // We may not use niceInsert here (recursion)
1266                 MathData ar(buffer());
1267                 asArray(safe, ar);
1268                 insert(ar);
1269         } else if (t->asMacro() && !safe.empty()) {
1270                 MathData ar(buffer());
1271                 asArray(safe, ar);
1272                 docstring const name = t->asMacro()->name();
1273                 MacroData const * data = buffer()->getMacro(name);
1274                 if (data && data->numargs() - data->optionals() > 0) {
1275                         plainInsert(MathAtom(new InsetMathBrace(ar)));
1276                         posBackward();
1277                 }
1278         }
1279 }
1280
1281
1282 void Cursor::insert(MathData const & ar)
1283 {
1284         macroModeClose();
1285         if (selection())
1286                 cap::eraseSelection(*this);
1287         cell().insert(pos(), ar);
1288         pos() += ar.size();
1289         // FIXME audit setBuffer calls
1290         inset().setBuffer(bv_->buffer());
1291 }
1292
1293
1294 bool Cursor::backspace(bool const force)
1295 {
1296         if (selection()) {
1297                 cap::eraseSelection(*this);
1298                 return true;
1299         }
1300
1301         if (pos() == 0) {
1302                 // If empty cell, and not part of a big cell
1303                 if (lastpos() == 0 && inset().nargs() == 1) {
1304                         popBackward();
1305                         // Directly delete empty cell: [|[]] => [|]
1306                         if (inMathed()) {
1307                                 plainErase();
1308                                 resetAnchor();
1309                                 return true;
1310                         }
1311                         // [|], can not delete from inside
1312                         return false;
1313                 } else {
1314                         if (inMathed())
1315                                 pullArg();
1316                         else
1317                                 popBackward();
1318                         return true;
1319                 }
1320         }
1321
1322         if (inMacroMode()) {
1323                 InsetMathUnknown * p = activeMacro();
1324                 if (p->name().size() > 1) {
1325                         p->setName(p->name().substr(0, p->name().size() - 1));
1326                         return true;
1327                 }
1328         }
1329
1330         if (pos() != 0 && !force && prevAtom()->confirmDeletion()) {
1331                 // let's require two backspaces for 'big stuff' and
1332                 // highlight on the first
1333                 resetAnchor();
1334                 selection(true);
1335                 --pos();
1336         } else {
1337                 --pos();
1338                 plainErase();
1339         }
1340         return true;
1341 }
1342
1343
1344 bool Cursor::erase(bool const force)
1345 {
1346         if (inMacroMode())
1347                 return true;
1348
1349         if (selection()) {
1350                 cap::eraseSelection(*this);
1351                 return true;
1352         }
1353
1354         // delete empty cells if possible
1355         if (pos() == lastpos() && inset().idxDelete(idx()))
1356                 return true;
1357
1358         // special behaviour when in last position of cell
1359         if (pos() == lastpos()) {
1360                 bool one_cell = inset().nargs() == 1;
1361                 if (one_cell && lastpos() == 0) {
1362                         popBackward();
1363                         // Directly delete empty cell: [|[]] => [|]
1364                         if (inMathed()) {
1365                                 plainErase();
1366                                 resetAnchor();
1367                                 return true;
1368                         }
1369                         // [|], can not delete from inside
1370                         return false;
1371                 }
1372                 // remove markup
1373                 if (!one_cell)
1374                         inset().idxGlue(idx());
1375                 return true;
1376         }
1377
1378         // 'clever' UI hack: only erase large items if previously slected
1379         if (pos() != lastpos() && !force && nextAtom()->confirmDeletion()) {
1380                 resetAnchor();
1381                 selection(true);
1382                 ++pos();
1383         } else {
1384                 plainErase();
1385         }
1386
1387         return true;
1388 }
1389
1390
1391 bool Cursor::up()
1392 {
1393         macroModeClose();
1394         DocIterator save = *this;
1395         FuncRequest cmd(selection() ? LFUN_UP_SELECT : LFUN_UP, docstring());
1396         this->dispatch(cmd);
1397         if (disp_.dispatched())
1398                 return true;
1399         setCursor(save);
1400         return false;
1401 }
1402
1403
1404 bool Cursor::down()
1405 {
1406         macroModeClose();
1407         DocIterator save = *this;
1408         FuncRequest cmd(selection() ? LFUN_DOWN_SELECT : LFUN_DOWN, docstring());
1409         this->dispatch(cmd);
1410         if (disp_.dispatched())
1411                 return true;
1412         setCursor(save);
1413         return false;
1414 }
1415
1416
1417 bool Cursor::macroModeClose()
1418 {
1419         if (!inMacroMode())
1420                 return false;
1421         InsetMathUnknown * p = activeMacro();
1422         p->finalize();
1423         MathData selection(buffer());
1424         asArray(p->selection(), selection);
1425         docstring const s = p->name();
1426         --pos();
1427         cell().erase(pos());
1428
1429         // do nothing if the macro name is empty
1430         if (s == "\\")
1431                 return false;
1432
1433         // trigger updates of macros, at least, if no full
1434         // updates take place anyway
1435         screenUpdateFlags(Update::Force);
1436
1437         docstring const name = s.substr(1);
1438         InsetMathNest * const in = inset().asInsetMath()->asNestInset();
1439         if (in && in->interpretString(*this, s))
1440                 return true;
1441         bool const user_macro = buffer()->getMacro(name, *this, false);
1442         MathAtom atom = user_macro ? MathAtom(new InsetMathMacro(buffer(), name))
1443                                    : createInsetMath(name, buffer());
1444
1445         // try to put argument into macro, if we just inserted a macro
1446         bool macroArg = false;
1447         InsetMathMacro * atomAsMacro = atom.nucleus()->asMacro();
1448         if (atomAsMacro) {
1449                 // macros here are still unfolded (in init mode in fact). So
1450                 // we have to resolve the macro here manually and check its arity
1451                 // to put the selection behind it if arity > 0.
1452                 MacroData const * data = buffer()->getMacro(atomAsMacro->name());
1453                 if (!selection.empty() && data && data->numargs() - data->optionals() > 0) {
1454                         macroArg = true;
1455                         atomAsMacro->setDisplayMode(InsetMathMacro::DISPLAY_INTERACTIVE_INIT, 1);
1456                 } else
1457                         // non-greedy case. Do not touch the arguments behind
1458                         atomAsMacro->setDisplayMode(InsetMathMacro::DISPLAY_INTERACTIVE_INIT, 0);
1459         }
1460
1461         // insert remembered selection into first argument of a non-macro
1462         else if (atom.nucleus()->nargs() > 0)
1463                 atom.nucleus()->cell(0).append(selection);
1464
1465         MathWordList const & words = mathedWordList();
1466         MathWordList::const_iterator it = words.find(name);
1467         bool keep_mathmode = it != words.end() && (it->second.inset == "font"
1468                                                 || it->second.inset == "oldfont"
1469                                                 || it->second.inset == "mbox");
1470         bool ert_macro = !user_macro && it == words.end() && atomAsMacro;
1471
1472         if (in && in->currentMode() == Inset::TEXT_MODE
1473             && atom.nucleus()->currentMode() == Inset::MATH_MODE
1474             && name != from_ascii("ensuremath") && !ert_macro) {
1475                 MathAtom at(new InsetMathEnsureMath(buffer()));
1476                 at.nucleus()->cell(0).push_back(atom);
1477                 niceInsert(at);
1478                 posForward();
1479         } else if (in && in->currentMode() == Inset::MATH_MODE
1480                    && atom.nucleus()->currentMode() == Inset::TEXT_MODE
1481                    && !keep_mathmode) {
1482                 MathAtom at = createInsetMath("text", buffer());
1483                 at.nucleus()->cell(0).push_back(atom);
1484                 niceInsert(at);
1485                 posForward();
1486         } else
1487                 plainInsert(atom);
1488
1489         // finally put the macro argument behind, if needed
1490         if (macroArg) {
1491                 if (selection.size() > 1 || selection[0]->asScriptInset())
1492                         plainInsert(MathAtom(new InsetMathBrace(selection)));
1493                 else
1494                         insert(selection);
1495         }
1496
1497         return true;
1498 }
1499
1500
1501 docstring Cursor::macroName()
1502 {
1503         return inMacroMode() ? activeMacro()->name() : docstring();
1504 }
1505
1506
1507 void Cursor::handleNest(MathAtom const & a, int c)
1508 {
1509         //lyxerr << "Cursor::handleNest: " << c << endl;
1510         MathAtom t = a;
1511         asArray(cap::grabAndEraseSelection(*this), t.nucleus()->cell(c));
1512         insert(t);
1513         posBackward();
1514         pushBackward(*nextInset());
1515 }
1516
1517
1518 int Cursor::targetX() const
1519 {
1520         if (x_target() != -1)
1521                 return x_target();
1522         int x = 0;
1523         int y = 0;
1524         getPos(x, y);
1525         return x;
1526 }
1527
1528
1529 int Cursor::textTargetOffset() const
1530 {
1531         return textTargetOffset_;
1532 }
1533
1534
1535 void Cursor::setTargetX()
1536 {
1537         int x;
1538         int y;
1539         getPos(x, y);
1540         setTargetX(x);
1541 }
1542
1543
1544 bool Cursor::inMacroMode() const
1545 {
1546         if (!inMathed())
1547                 return false;
1548         if (pos() == 0 || cell().empty())
1549                 return false;
1550         InsetMathUnknown const * p = prevAtom()->asUnknownInset();
1551         return p && !p->final();
1552 }
1553
1554
1555 InsetMathUnknown * Cursor::activeMacro()
1556 {
1557         return inMacroMode() ? prevAtom().nucleus()->asUnknownInset() : 0;
1558 }
1559
1560
1561 InsetMathUnknown const * Cursor::activeMacro() const
1562 {
1563         return inMacroMode() ? prevAtom().nucleus()->asUnknownInset() : 0;
1564 }
1565
1566
1567 void Cursor::pullArg()
1568 {
1569         // FIXME: Look here
1570         MathData ar = cell();
1571         if (popBackward() && inMathed()) {
1572                 plainErase();
1573                 cell().insert(pos(), ar);
1574                 resetAnchor();
1575         } else {
1576                 //formula()->mutateToText();
1577         }
1578 }
1579
1580
1581 void Cursor::touch()
1582 {
1583         // FIXME: look here
1584 #if 0
1585         DocIterator::const_iterator it = begin();
1586         DocIterator::const_iterator et = end();
1587         for ( ; it != et; ++it)
1588                 it->cell().touch();
1589 #endif
1590 }
1591
1592
1593 void Cursor::normalize()
1594 {
1595         if (idx() > lastidx()) {
1596                 lyxerr << "this should not really happen - 1: "
1597                        << idx() << ' ' << nargs()
1598                        << " in: " << &inset() << endl;
1599                 idx() = lastidx();
1600         }
1601
1602         if (pos() > lastpos()) {
1603                 lyxerr << "this should not really happen - 2: "
1604                         << pos() << ' ' << lastpos() <<  " in idx: " << idx()
1605                        << " in atom: '";
1606                 odocstringstream os;
1607                 otexrowstream ots(os);
1608                 WriteStream wi(ots, false, true, WriteStream::wsDefault);
1609                 inset().asInsetMath()->write(wi);
1610                 lyxerr << to_utf8(os.str()) << endl;
1611                 pos() = lastpos();
1612         }
1613 }
1614
1615
1616 bool Cursor::upDownInMath(bool up)
1617 {
1618         // Be warned: The 'logic' implemented in this function is highly
1619         // fragile. A distance of one pixel or a '<' vs '<=' _really
1620         // matters. So fiddle around with it only if you think you know
1621         // what you are doing!
1622         int xo = 0;
1623         int yo = 0;
1624         getPos(xo, yo);
1625         xo = beforeDispatchPosX_;
1626
1627         // check if we had something else in mind, if not, this is the future
1628         // target
1629         if (x_target_ == -1)
1630                 setTargetX(xo);
1631         else if (inset().asInsetText() && xo - textTargetOffset() != x_target()) {
1632                 // In text mode inside the line (not left or right) possibly set a new target_x,
1633                 // but only if we are somewhere else than the previous target-offset.
1634
1635                 // We want to keep the x-target on subsequent up/down movements
1636                 // that cross beyond the end of short lines. Thus a special
1637                 // handling when the cursor is at the end of line: Use the new
1638                 // x-target only if the old one was before the end of line
1639                 // or the old one was after the beginning of the line
1640                 bool inRTL = innerParagraph().isRTL(bv().buffer().params());
1641                 bool left;
1642                 bool right;
1643                 if (inRTL) {
1644                         left = pos() == textRow().endpos();
1645                         right = pos() == textRow().pos();
1646                 } else {
1647                         left = pos() == textRow().pos();
1648                         right = pos() == textRow().endpos();
1649                 }
1650                 if ((!left && !right) ||
1651                                 (left && !right && xo < x_target_) ||
1652                                 (!left && right && x_target_ < xo))
1653                         setTargetX(xo);
1654                 else
1655                         xo = targetX();
1656         } else
1657                 xo = targetX();
1658
1659         // try neigbouring script insets
1660         Cursor old = *this;
1661         if (inMathed() && !selection()) {
1662                 // try left
1663                 if (pos() != 0) {
1664                         InsetMathScript const * p = prevAtom()->asScriptInset();
1665                         if (p && p->has(up)) {
1666                                 --pos();
1667                                 push(*const_cast<InsetMathScript*>(p));
1668                                 idx() = p->idxOfScript(up);
1669                                 pos() = lastpos();
1670
1671                                 // we went in the right direction? Otherwise don't jump into the script
1672                                 int x;
1673                                 int y;
1674                                 getPos(x, y);
1675                                 int oy = beforeDispatchPosY_;
1676                                 if ((!up && y <= oy) ||
1677                                                 (up && y >= oy))
1678                                         operator=(old);
1679                                 else
1680                                         return true;
1681                         }
1682                 }
1683
1684                 // try right
1685                 if (pos() != lastpos()) {
1686                         InsetMathScript const * p = nextAtom()->asScriptInset();
1687                         if (p && p->has(up)) {
1688                                 push(*const_cast<InsetMathScript*>(p));
1689                                 idx() = p->idxOfScript(up);
1690                                 pos() = 0;
1691
1692                                 // we went in the right direction? Otherwise don't jump into the script
1693                                 int x;
1694                                 int y;
1695                                 getPos(x, y);
1696                                 int oy = beforeDispatchPosY_;
1697                                 if ((!up && y <= oy) ||
1698                                                 (up && y >= oy))
1699                                         operator=(old);
1700                                 else
1701                                         return true;
1702                         }
1703                 }
1704         }
1705
1706         // try to find an inset that knows better then we,
1707         if (inset().idxUpDown(*this, up)) {
1708                 //lyxerr << "idxUpDown triggered" << endl;
1709                 // try to find best position within this inset
1710                 if (!selection())
1711                         setCursor(bruteFind(*this, xo, yo));
1712                 return true;
1713         }
1714
1715         // any improvement going just out of inset?
1716         if (popBackward() && inMathed()) {
1717                 //lyxerr << "updown: popBackward succeeded" << endl;
1718                 int xnew;
1719                 int ynew;
1720                 int yold = beforeDispatchPosY_;
1721                 getPos(xnew, ynew);
1722                 if (up ? ynew < yold : ynew > yold)
1723                         return true;
1724         }
1725
1726         // no success, we are probably at the document top or bottom
1727         operator=(old);
1728         return false;
1729 }
1730
1731
1732 InsetMath & Cursor::nextMath()
1733 {
1734         return *nextAtom().nucleus();
1735 }
1736
1737
1738 InsetMath & Cursor::prevMath()
1739 {
1740         return *prevAtom().nucleus();
1741 }
1742
1743
1744 bool Cursor::mathForward(bool word)
1745 {
1746         LASSERT(inMathed(), return false);
1747         if (pos() < lastpos()) {
1748                 if (word) {
1749                         // word: skip a group of insets of the form X*(B*|R*|P*) (greedy
1750                         // match) where X is any math class, B is mathbin, R is mathrel, and
1751                         // P is mathpunct. Make sure that the following remains true:
1752                         //   mathForward(true); mathBackward(true); mathForward(true)
1753                         // is the same as mathForward(true) and
1754                         //   mathBackward(true); mathForward(true); mathBackward(true)
1755                         // is the same as mathBackward(true).
1756                         MathClass mc = nextMath().mathClass();
1757                         do
1758                                 posForward();
1759                         while (pos() < lastpos() && mc == nextMath().mathClass());
1760                         if (pos() < lastpos() &&
1761                             ((mc = nextMath().mathClass()) == MC_BIN ||
1762                              mc == MC_REL || mc == MC_PUNCT))
1763                                 do
1764                                         posForward();
1765                                 while (pos() < lastpos() && mc == nextMath().mathClass());
1766                 } else if (openable(nextAtom())) {
1767                         // single step: try to enter the next inset
1768                         pushBackward(nextMath());
1769                         inset().idxFirst(*this);
1770                 } else
1771                         posForward();
1772                 return true;
1773         }
1774         if (inset().idxForward(*this))
1775                 return true;
1776         // try to pop forwards --- but don't pop out of math! leave that to
1777         // the FINISH lfuns
1778         int s = depth() - 2;
1779         if (s >= 0 && operator[](s).inset().asInsetMath())
1780                 return popForward();
1781         return false;
1782 }
1783
1784
1785 bool Cursor::mathBackward(bool word)
1786 {
1787         LASSERT(inMathed(), return false);
1788         if (pos() > 0) {
1789                 if (word) {
1790                         // word: skip a group of insets. See the comment in mathForward.
1791                         MathClass mc = prevMath().mathClass();
1792                         do
1793                                 posBackward();
1794                         while (pos() > 0 && mc == prevMath().mathClass());
1795                         if (pos() > 0 && (mc == MC_BIN || mc == MC_REL || mc == MC_PUNCT)) {
1796                                 mc = prevMath().mathClass();
1797                                 do
1798                                         posBackward();
1799                                 while (pos() > 0 && mc == prevMath().mathClass());
1800                         }
1801                 } else if (openable(prevAtom())) {
1802                         // single step: try to enter the preceding inset
1803                         posBackward();
1804                         push(nextMath());
1805                         inset().idxLast(*this);
1806                 } else
1807                         posBackward();
1808                 return true;
1809         }
1810         if (inset().idxBackward(*this))
1811                 return true;
1812         // try to pop backwards --- but don't pop out of math! leave that to
1813         // the FINISH lfuns
1814         int s = depth() - 2;
1815         if (s >= 0 && operator[](s).inset().asInsetMath())
1816                 return popBackward();
1817         return false;
1818 }
1819
1820
1821 bool Cursor::atFirstOrLastRow(bool up)
1822 {
1823         TextMetrics const & tm = bv_->textMetrics(text());
1824         ParagraphMetrics const & pm = tm.parMetrics(pit());
1825
1826         int row;
1827         if (pos() && boundary())
1828                 row = pm.pos2row(pos() - 1);
1829         else
1830                 row = pm.pos2row(pos());
1831
1832         if (up) {
1833                 if (pit() == 0 && row == 0)
1834                         return true;
1835         } else {
1836                 if (pit() + 1 >= int(text()->paragraphs().size()) &&
1837                                 row + 1 >= int(pm.rows().size()))
1838                         return true;
1839         }
1840         return false;
1841 }
1842
1843
1844 bool Cursor::upDownInText(bool up, bool & updateNeeded)
1845 {
1846         LASSERT(text(), return false);
1847
1848         // where are we?
1849         int xo = 0;
1850         int yo = 0;
1851         getPos(xo, yo);
1852         xo = beforeDispatchPosX_;
1853
1854         // update the targetX - this is here before the "return false"
1855         // to set a new target which can be used by InsetTexts above
1856         // if we cannot move up/down inside this inset anymore
1857         if (x_target_ == -1)
1858                 setTargetX(xo);
1859         else if (xo - textTargetOffset() != x_target() &&
1860                                          depth() == beforeDispatchCursor_.depth()) {
1861                 // In text mode inside the line (not left or right)
1862                 // possibly set a new target_x, but only if we are
1863                 // somewhere else than the previous target-offset.
1864
1865                 // We want to keep the x-target on subsequent up/down
1866                 // movements that cross beyond the end of short lines.
1867                 // Thus a special handling when the cursor is at the
1868                 // end of line: Use the new x-target only if the old
1869                 // one was before the end of line or the old one was
1870                 // after the beginning of the line
1871                 bool inRTL = innerParagraph().isRTL(bv().buffer().params());
1872                 bool left;
1873                 bool right;
1874                 if (inRTL) {
1875                         left = pos() == textRow().endpos();
1876                         right = pos() == textRow().pos();
1877                 } else {
1878                         left = pos() == textRow().pos();
1879                         right = pos() == textRow().endpos();
1880                 }
1881                 if ((!left && !right) ||
1882                                 (left && !right && xo < x_target_) ||
1883                                 (!left && right && x_target_ < xo))
1884                         setTargetX(xo);
1885                 else
1886                         xo = targetX();
1887         } else
1888                 xo = targetX();
1889
1890         // first get the current line
1891         TextMetrics & tm = bv_->textMetrics(text());
1892         ParagraphMetrics const & pm = tm.parMetrics(pit());
1893         int row;
1894         if (pos() && boundary())
1895                 row = pm.pos2row(pos() - 1);
1896         else
1897                 row = pm.pos2row(pos());
1898
1899         if (atFirstOrLastRow(up)) {
1900                 // Is there a place for the cursor to go ? If yes, we
1901                 // can execute the DEPM, otherwise we should keep the
1902                 // paragraph to host the cursor.
1903                 Cursor dummy = *this;
1904                 bool valid_destination = false;
1905                 for(; dummy.depth(); dummy.pop())
1906                         if (!dummy.atFirstOrLastRow(up)) {
1907                                 valid_destination = true;
1908                                 break;
1909                         }
1910
1911                 // will a next dispatch follow and if there is a new
1912                 // dispatch will it move the cursor out ?
1913                 if (depth() > 1 && valid_destination) {
1914                         // The cursor hasn't changed yet. This happens when
1915                         // you e.g. move out of an inset. And to give the
1916                         // DEPM the possibility of doing something we must
1917                         // provide it with two different cursors. (Lgb, vfr)
1918                         dummy = *this;
1919                         dummy.pos() = dummy.pos() == 0 ? dummy.lastpos() : 0;
1920                         dummy.pit() = dummy.pit() == 0 ? dummy.lastpit() : 0;
1921
1922                         updateNeeded |= bv().checkDepm(dummy, *this);
1923                         updateTextTargetOffset();
1924                         if (updateNeeded)
1925                                 forceBufferUpdate();
1926                 }
1927                 return false;
1928         }
1929
1930         // with and without selection are handled differently
1931         if (!selection()) {
1932                 int yo = bv().getPos(*this).y_;
1933                 Cursor old = *this;
1934                 // To next/previous row
1935                 // FIXME: the y position is often guessed wrongly across styles and
1936                 // insets, which leads to weird behaviour.
1937                 if (up)
1938                         tm.editXY(*this, xo, yo - textRow().ascent() - 1);
1939                 else
1940                         tm.editXY(*this, xo, yo + textRow().descent() + 1);
1941                 x_target_ = old.x_target_;
1942                 clearSelection();
1943
1944                 // This happens when you move out of an inset.
1945                 // And to give the DEPM the possibility of doing
1946                 // something we must provide it with two different
1947                 // cursors. (Lgb)
1948                 Cursor dummy = *this;
1949                 if (dummy == old)
1950                         ++dummy.pos();
1951                 if (bv().checkDepm(dummy, old)) {
1952                         updateNeeded = true;
1953                         // Make sure that cur gets back whatever happened to dummy (Lgb)
1954                         operator=(dummy);
1955                 }
1956                 if (inTexted() && pos() && paragraph().isEnvSeparator(pos() - 1))
1957                         posBackward();
1958         } else {
1959                 // if there is a selection, we stay out of any inset,
1960                 // and just jump to the right position:
1961                 Cursor old = *this;
1962                 int next_row = row;
1963                 if (up) {
1964                         if (row > 0) {
1965                                 --next_row;
1966                         } else if (pit() > 0) {
1967                                 --pit();
1968                                 TextMetrics & tm = bv_->textMetrics(text());
1969                                 if (!tm.contains(pit()))
1970                                         tm.newParMetricsUp();
1971                                 ParagraphMetrics const & pmcur = tm.parMetrics(pit());
1972                                 next_row = pmcur.rows().size() - 1;
1973                         }
1974                 } else {
1975                         if (row + 1 < int(pm.rows().size())) {
1976                                 ++next_row;
1977                         } else if (pit() + 1 < int(text()->paragraphs().size())) {
1978                                 ++pit();
1979                                 TextMetrics & tm = bv_->textMetrics(text());
1980                                 if (!tm.contains(pit()))
1981                                         tm.newParMetricsDown();
1982                                 next_row = 0;
1983                         }
1984                 }
1985
1986                 Row const & real_next_row = tm.parMetrics(pit()).rows()[next_row];
1987                 bool bound = false;
1988                 top().pos() = tm.getPosNearX(real_next_row, xo, bound);
1989                 boundary(bound);
1990
1991                 updateNeeded |= bv().checkDepm(*this, old);
1992         }
1993
1994         if (updateNeeded)
1995                 forceBufferUpdate();
1996         updateTextTargetOffset();
1997         return true;
1998 }
1999
2000
2001 void Cursor::handleFont(string const & font)
2002 {
2003         LYXERR(Debug::DEBUG, font);
2004         docstring safe;
2005         if (selection()) {
2006                 macroModeClose();
2007                 safe = cap::grabAndEraseSelection(*this);
2008         }
2009
2010         recordUndoInset();
2011
2012         if (lastpos() != 0) {
2013                 // something left in the cell
2014                 if (pos() == 0) {
2015                         // cursor in first position
2016                         popBackward();
2017                 } else if (pos() == lastpos()) {
2018                         // cursor in last position
2019                         popForward();
2020                 } else {
2021                         // cursor in between. split cell
2022                         MathData::iterator bt = cell().begin();
2023                         MathAtom at = createInsetMath(from_utf8(font), buffer());
2024                         at.nucleus()->cell(0) = MathData(buffer(), bt, bt + pos());
2025                         cell().erase(bt, bt + pos());
2026                         popBackward();
2027                         plainInsert(at);
2028                 }
2029         } else {
2030                 // nothing left in the cell
2031                 popBackward();
2032                 plainErase();
2033                 resetAnchor();
2034         }
2035         insert(safe);
2036 }
2037
2038
2039 void Cursor::message(docstring const & msg) const
2040 {
2041         disp_.setMessage(msg);
2042 }
2043
2044
2045 void Cursor::errorMessage(docstring const & msg) const
2046 {
2047         disp_.setMessage(msg);
2048         disp_.setError(true);
2049 }
2050
2051
2052 namespace {
2053
2054 docstring parbreak(Cursor const * cur)
2055 {
2056         odocstringstream os;
2057         os << '\n';
2058         // only add blank line if we're not in a ParbreakIsNewline situation
2059         if (!cur->inset().getLayout().parbreakIsNewline()
2060             && !cur->paragraph().layout().parbreak_is_newline)
2061                 os << '\n';
2062         return os.str();
2063 }
2064
2065 } // namespace
2066
2067
2068 docstring Cursor::selectionAsString(bool with_label) const
2069 {
2070         if (!selection())
2071                 return docstring();
2072
2073         if (inMathed())
2074                 return cap::grabSelection(*this);
2075
2076         int const label = with_label
2077                 ? AS_STR_LABEL | AS_STR_INSETS : AS_STR_INSETS;
2078
2079         idx_type const startidx = selBegin().idx();
2080         idx_type const endidx = selEnd().idx();
2081         if (startidx != endidx) {
2082                 // multicell selection
2083                 InsetTabular * table = inset().asInsetTabular();
2084                 LASSERT(table, return docstring());
2085                 return table->asString(startidx, endidx);
2086         }
2087
2088         ParagraphList const & pars = text()->paragraphs();
2089
2090         pit_type const startpit = selBegin().pit();
2091         pit_type const endpit = selEnd().pit();
2092         size_t const startpos = selBegin().pos();
2093         size_t const endpos = selEnd().pos();
2094
2095         if (startpit == endpit)
2096                 return pars[startpit].asString(startpos, endpos, label);
2097
2098         // First paragraph in selection
2099         docstring result = pars[startpit].
2100                 asString(startpos, pars[startpit].size(), label)
2101                 + parbreak(this);
2102
2103         // The paragraphs in between (if any)
2104         for (pit_type pit = startpit + 1; pit != endpit; ++pit) {
2105                 Paragraph const & par = pars[pit];
2106                 result += par.asString(0, par.size(), label)
2107                         + parbreak(this);
2108         }
2109
2110         // Last paragraph in selection
2111         result += pars[endpit].asString(0, endpos, label);
2112
2113         return result;
2114 }
2115
2116
2117 docstring Cursor::currentState(bool devel_mode) const
2118 {
2119         if (inMathed()) {
2120                 odocstringstream os;
2121                 info(os, devel_mode);
2122                 return os.str();
2123         }
2124
2125         if (inTexted())
2126                 return text()->currentState(*this, devel_mode);
2127
2128         return docstring();
2129 }
2130
2131
2132 docstring Cursor::getPossibleLabel() const
2133 {
2134         return inMathed() ? from_ascii("eq:") : text()->getPossibleLabel(*this);
2135 }
2136
2137
2138 Encoding const * Cursor::getEncoding() const
2139 {
2140         if (empty())
2141                 return 0;
2142         BufferParams const & bp = bv().buffer().params();
2143         if (bp.useNonTeXFonts)
2144                 return encodings.fromLyXName("utf8-plain");
2145
2146         CursorSlice const & sl = innerTextSlice();
2147         Text const & text = *sl.text();
2148         Font font = text.getPar(sl.pit()).getFont(bp, sl.pos(),
2149                                                   text.outerFont(sl.pit()));
2150         return font.language()->encoding();
2151 }
2152
2153
2154 void Cursor::undispatched() const
2155 {
2156         disp_.dispatched(false);
2157 }
2158
2159
2160 void Cursor::dispatched() const
2161 {
2162         disp_.dispatched(true);
2163 }
2164
2165
2166 void Cursor::screenUpdateFlags(Update::flags f) const
2167 {
2168         disp_.screenUpdate(f);
2169 }
2170
2171
2172 void Cursor::forceBufferUpdate() const
2173 {
2174         disp_.forceBufferUpdate();
2175 }
2176
2177
2178 void Cursor::clearBufferUpdate() const
2179 {
2180         disp_.clearBufferUpdate();
2181 }
2182
2183
2184 bool Cursor::needBufferUpdate() const
2185 {
2186         return disp_.needBufferUpdate();
2187 }
2188
2189
2190 void Cursor::noScreenUpdate() const
2191 {
2192         disp_.screenUpdate(Update::None);
2193 }
2194
2195
2196 Font Cursor::getFont() const
2197 {
2198         // The logic here should more or less match to the
2199         // Cursor::setCurrentFont logic, i.e. the cursor height should
2200         // give a hint what will happen if a character is entered.
2201         // FIXME: this is not the case, what about removing this method ? (see #10478).
2202
2203         // HACK. far from being perfect...
2204
2205         CursorSlice const & sl = innerTextSlice();
2206         Text const & text = *sl.text();
2207         Paragraph const & par = text.getPar(sl.pit());
2208
2209         // on boundary, so we are really at the character before
2210         pos_type pos = sl.pos();
2211         if (pos > 0 && boundary())
2212                 --pos;
2213
2214         // on space? Take the font before (only for RTL boundary stay)
2215         if (pos > 0) {
2216                 TextMetrics const & tm = bv().textMetrics(&text);
2217                 if (pos == sl.lastpos()
2218                         || (par.isSeparator(pos)
2219                         && !tm.isRTLBoundary(sl.pit(), pos)))
2220                         --pos;
2221         }
2222
2223         // get font at the position
2224         Font font = par.getFont(buffer()->params(), pos,
2225                 text.outerFont(sl.pit()));
2226
2227         return font;
2228 }
2229
2230
2231 bool Cursor::fixIfBroken()
2232 {
2233         bool const broken_cursor = DocIterator::fixIfBroken();
2234         bool const broken_anchor = anchor_.fixIfBroken();
2235
2236         if (broken_cursor || broken_anchor) {
2237                 clearNewWordPosition();
2238                 clearSelection();
2239                 return true;
2240         }
2241         return false;
2242 }
2243
2244
2245 void Cursor::sanitize()
2246 {
2247         setBuffer(&bv_->buffer());
2248         DocIterator::sanitize();
2249         new_word_.sanitize();
2250         if (selection())
2251                 anchor_.sanitize();
2252         else
2253                 resetAnchor();
2254 }
2255
2256
2257 bool notifyCursorLeavesOrEnters(Cursor const & old, Cursor & cur)
2258 {
2259         // find inset in common
2260         size_type i;
2261         for (i = 0; i < old.depth() && i < cur.depth(); ++i) {
2262                 if (&old[i].inset() != &cur[i].inset())
2263                         break;
2264         }
2265
2266         // update words if we just moved to another paragraph
2267         if (i == old.depth() && i == cur.depth()
2268             && !cur.buffer()->isClean()
2269             && cur.inTexted() && old.inTexted()
2270             && cur.pit() != old.pit()) {
2271                 old.paragraph().updateWords();
2272         }
2273
2274         // notify everything on top of the common part in old cursor,
2275         // but stop if the inset claims the cursor to be invalid now
2276         for (size_type j = i; j < old.depth(); ++j) {
2277                 Cursor inset_pos = old;
2278                 inset_pos.cutOff(j);
2279                 if (old[j].inset().notifyCursorLeaves(inset_pos, cur))
2280                         return true;
2281         }
2282
2283         // notify everything on top of the common part in new cursor,
2284         // but stop if the inset claims the cursor to be invalid now
2285         for (; i < cur.depth(); ++i) {
2286                 if (cur[i].inset().notifyCursorEnters(cur))
2287                         return true;
2288         }
2289
2290         return false;
2291 }
2292
2293
2294 void Cursor::setCurrentFont()
2295 {
2296         CursorSlice const & cs = innerTextSlice();
2297         Paragraph const & par = cs.paragraph();
2298         pos_type cpit = cs.pit();
2299         pos_type cpos = cs.pos();
2300         Text const & ctext = *cs.text();
2301         TextMetrics const & tm = bv().textMetrics(&ctext);
2302
2303         // are we behind previous char in fact? -> go to that char
2304         if (cpos > 0 && boundary())
2305                 --cpos;
2306
2307         // find position to take the font from
2308         if (cpos != 0) {
2309                 // paragraph end? -> font of last char
2310                 if (cpos == lastpos())
2311                         --cpos;
2312                 // on space? -> look at the words in front of space
2313                 else if (cpos > 0 && par.isSeparator(cpos))     {
2314                         // abc| def -> font of c
2315                         // abc |[WERBEH], i.e. boundary==true -> font of c
2316                         // abc [WERBEH]| def, font of the space
2317                         if (!tm.isRTLBoundary(cpit, cpos))
2318                                 --cpos;
2319                 }
2320         }
2321
2322         // get font
2323         BufferParams const & bufparams = buffer()->params();
2324         current_font = par.getFontSettings(bufparams, cpos);
2325         real_current_font = tm.displayFont(cpit, cpos);
2326
2327         // special case for paragraph end
2328         if (cs.pos() == lastpos()
2329             && tm.isRTLBoundary(cpit, cs.pos())
2330             && !boundary()) {
2331                 Language const * lang = par.getParLanguage(bufparams);
2332                 current_font.setLanguage(lang);
2333                 current_font.fontInfo().setNumber(FONT_OFF);
2334                 real_current_font.setLanguage(lang);
2335                 real_current_font.fontInfo().setNumber(FONT_OFF);
2336         }
2337 }
2338
2339
2340 bool Cursor::textUndo()
2341 {
2342         if (!buffer()->undo().textUndo(*this))
2343                 return false;
2344         sanitize();
2345         return true;
2346 }
2347
2348
2349 bool Cursor::textRedo()
2350 {
2351         if (!buffer()->undo().textRedo(*this))
2352                 return false;
2353         sanitize();
2354         return true;
2355 }
2356
2357
2358 void Cursor::finishUndo() const
2359 {
2360         buffer()->undo().finishUndo();
2361 }
2362
2363
2364 void Cursor::beginUndoGroup() const
2365 {
2366         buffer()->undo().beginUndoGroup(*this);
2367 }
2368
2369
2370 void Cursor::endUndoGroup() const
2371 {
2372         buffer()->undo().endUndoGroup(*this);
2373 }
2374
2375
2376 void Cursor::recordUndo(pit_type from, pit_type to) const
2377 {
2378         buffer()->undo().recordUndo(*this, from, to);
2379 }
2380
2381
2382 void Cursor::recordUndo(pit_type from) const
2383 {
2384         buffer()->undo().recordUndo(*this, from, pit());
2385 }
2386
2387
2388 void Cursor::recordUndo(UndoKind kind) const
2389 {
2390         buffer()->undo().recordUndo(*this, kind);
2391 }
2392
2393
2394 void Cursor::recordUndoInset(Inset const * in) const
2395 {
2396         buffer()->undo().recordUndoInset(*this, in);
2397 }
2398
2399
2400 void Cursor::recordUndoFullBuffer() const
2401 {
2402         buffer()->undo().recordUndoFullBuffer(*this);
2403 }
2404
2405
2406 void Cursor::recordUndoBufferParams() const
2407 {
2408         buffer()->undo().recordUndoBufferParams(*this);
2409 }
2410
2411
2412 void Cursor::recordUndoSelection() const
2413 {
2414         if (inMathed()) {
2415                 if (cap::multipleCellsSelected(*this))
2416                         recordUndoInset();
2417                 else
2418                         recordUndo();
2419         } else {
2420                 buffer()->undo().recordUndo(*this,
2421                         selBegin().pit(), selEnd().pit());
2422         }
2423 }
2424
2425
2426 void Cursor::checkBufferStructure()
2427 {
2428         Buffer const * master = buffer()->masterBuffer();
2429         master->tocBackend().updateItem(*this);
2430         if (master != buffer() && !master->hasGuiDelegate())
2431                 // In case the master has no gui associated with it,
2432                 // the TocItem is not updated (part of bug 5699).
2433                 buffer()->tocBackend().updateItem(*this);
2434
2435         // If the last tracked change of the paragraph has just been
2436         // deleted, then we need to recompute the buffer flag
2437         // tracked_changes_present_.
2438         if (inTexted() && paragraph().isChangeUpdateRequired())
2439                 disp_.forceChangesUpdate();
2440 }
2441
2442
2443 bool Cursor::confirmDeletion(bool const before) const
2444 {
2445         if (!selection()) {
2446                 if (Inset const * inset = before ? prevInset() : nextInset())
2447                         return inset->confirmDeletion();
2448         } else {
2449                 DocIterator dit = selectionBegin();
2450                 CursorSlice const end = selectionEnd().top();
2451                 for (; dit.top() < end; dit.top().forwardPos())
2452                         if (Inset const * inset = dit.nextInset())
2453                                 if (inset->confirmDeletion())
2454                                         return true;
2455         }
2456         return false;
2457 }
2458
2459
2460 void Cursor::moveToClosestEdge(int const x, bool const edit)
2461 {
2462         if (Inset const * inset = nextInset()) {
2463                 // stay in front of insets for which we want to open the dialog
2464                 // (e.g. InsetMathSpace).
2465                 if (edit && (inset->hasSettings() || !inset->contextMenuName().empty()))
2466                         return;
2467                 CoordCache::Insets const & insetCache = bv().coordCache().getInsets();
2468                 if (!insetCache.has(inset))
2469                         return;
2470                 int const wid = insetCache.dim(inset).wid;
2471                 Point p = insetCache.xy(inset);
2472                 if (x > p.x_ + (wid + 1) / 2)
2473                         posForward();
2474         }
2475 }
2476
2477
2478 } // namespace lyx