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