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