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