]> git.lyx.org Git - lyx.git/blob - src/cursor.C
avoid to update when navigating
[lyx.git] / src / cursor.C
1 /**
2  * \file cursor.C
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 André Pönitz
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "BufferView.h"
16 #include "buffer.h"
17 #include "cursor.h"
18 #include "CutAndPaste.h"
19 #include "debug.h"
20 #include "dispatchresult.h"
21 #include "encoding.h"
22 #include "funcrequest.h"
23 #include "language.h"
24 #include "lfuns.h"
25 #include "lyxfont.h"
26 #include "lyxfunc.h" // only for setMessage()
27 #include "lyxrc.h"
28 #include "lyxrow.h"
29 #include "lyxtext.h"
30 #include "paragraph.h"
31 #include "paragraph_funcs.h"
32 #include "pariterator.h"
33
34 #include "insets/updatableinset.h"
35 #include "insets/insettabular.h"
36 #include "insets/insettext.h"
37
38 #include "mathed/math_data.h"
39 #include "mathed/math_inset.h"
40 #include "mathed/math_macrotable.h"
41
42 #include "support/limited_stack.h"
43 #include "support/std_sstream.h"
44
45 #include "frontends/LyXView.h"
46
47 #include <boost/assert.hpp>
48
49 using lyx::par_type;
50
51 using std::string;
52 using std::vector;
53 using std::endl;
54 #ifndef CXX_GLOBAL_CSTD
55 using std::isalpha;
56 #endif
57 using std::min;
58 using std::swap;
59
60
61 LCursor::LCursor(BufferView & bv)
62         : DocIterator(), bv_(&bv), anchor_(), x_target_(-1),
63           selection_(false), mark_(false)
64 {}
65
66
67 void LCursor::reset(InsetBase & inset)
68 {
69         clear();
70         push_back(CursorSlice(inset));
71         anchor_ = DocIterator(inset);
72         clearTargetX();
73         selection_ = false;
74         mark_ = false;
75 }
76
77
78 void LCursor::setCursor(DocIterator const & cur, bool sel)
79 {
80         // this (intentionally) does not touch the anchor
81         DocIterator::operator=(cur);
82         selection() = sel;
83 }
84
85
86 DispatchResult LCursor::dispatch(FuncRequest const & cmd0)
87 {
88         lyxerr << "\nLCursor::dispatch: cmd: " << cmd0 << endl << *this << endl;
89         if (empty())
90                 return DispatchResult();
91
92         FuncRequest cmd = cmd0;
93         LCursor safe = *this;
94
95         for ( ; size(); pop()) {
96                 //lyxerr << "\nLCursor::dispatch: cmd: " << cmd0 << endl << *this << endl;
97                 BOOST_ASSERT(pos() <= lastpos());
98                 BOOST_ASSERT(idx() <= lastidx());
99                 BOOST_ASSERT(par() <= lastpar());
100
101                 // The common case is 'LFUN handled, need update', so make the
102                 // LFUN handler's life easier by assuming this as default value.
103                 // The handler can reset the update and val flags if necessary.
104                 disp_.update(true);
105                 disp_.dispatched(true);
106                 inset().dispatch(*this, cmd);
107                 if (disp_.dispatched())
108                         break;
109         }
110         // it completely to get a 'bomb early' behaviour in case this
111         // object will be used again.
112         if (!disp_.dispatched()) {
113                 lyxerr << "RESTORING OLD CURSOR!" << endl;
114                 operator=(safe);
115                 disp_.dispatched(false);
116         }
117         return disp_;
118 }
119
120
121 bool LCursor::getStatus(FuncRequest const & cmd, FuncStatus & status)
122 {
123         // This is, of course, a mess. Better create a new doc iterator and use
124         // this in Inset::getStatus. This might require an additional
125         // BufferView * arg, though (which should be avoided)
126         LCursor safe = *this;
127         bool res = false;
128         for ( ; size(); pop()) {
129                 //lyxerr << "\nLCursor::getStatus: cmd: " << cmd << endl << *this << endl;
130                 BOOST_ASSERT(pos() <= lastpos());
131                 BOOST_ASSERT(idx() <= lastidx());
132                 BOOST_ASSERT(par() <= lastpar());
133
134                 // The inset's getStatus() will return 'true' if it made
135                 // a definitive decision on whether it want to handle the
136                 // request or not. The result of this decision is put into
137                 // the 'status' parameter.
138                 if (inset().getStatus(*this, cmd, status)) {
139                         res = true;
140                         break;
141                 }
142         }
143         operator=(safe);
144         return res;
145 }
146
147
148 BufferView & LCursor::bv() const
149 {
150         BOOST_ASSERT(bv_);
151         return *bv_;
152 }
153
154
155 Buffer & LCursor::buffer() const
156 {
157         BOOST_ASSERT(bv_);
158         BOOST_ASSERT(bv_->buffer());
159         return *bv_->buffer();
160 }
161
162
163 void LCursor::pop()
164 {
165         BOOST_ASSERT(size() >= 1);
166         pop_back();
167 }
168
169
170 void LCursor::push(InsetBase & p)
171 {
172         push_back(CursorSlice(p));
173 }
174
175
176 void LCursor::pushLeft(InsetBase & p)
177 {
178         BOOST_ASSERT(!empty());
179         //lyxerr << "Entering inset " << t << " left" << endl;
180         push(p);
181         p.idxFirst(*this);
182 }
183
184
185 bool LCursor::popLeft()
186 {
187         BOOST_ASSERT(!empty());
188         //lyxerr << "Leaving inset to the left" << endl;
189         inset().notifyCursorLeaves(*this);
190         if (depth() == 1)
191                 return false;
192         pop();
193         return true;
194 }
195
196
197 bool LCursor::popRight()
198 {
199         BOOST_ASSERT(!empty());
200         //lyxerr << "Leaving inset to the right" << endl;
201         inset().notifyCursorLeaves(*this);
202         if (depth() == 1)
203                 return false;
204         pop();
205         ++pos();
206         return true;
207 }
208
209
210 int LCursor::currentMode()
211 {
212         BOOST_ASSERT(!empty());
213         for (int i = size() - 1; i >= 0; --i) {
214                 int res = operator[](i).inset().currentMode();
215                 if (res != InsetBase::UNDECIDED_MODE)
216                         return res;
217         }
218         return InsetBase::TEXT_MODE;
219 }
220
221
222 void LCursor::getDim(int & asc, int & des) const
223 {
224         if (inMathed()) {
225                 BOOST_ASSERT(inset().asMathInset());
226                 //inset().asMathInset()->getCursorDim(asc, des);
227                 asc = 10;
228                 des = 10;
229         } else if (inTexted()) {
230                 Row const & row = textRow();
231                 asc = row.baseline();
232                 des = row.height() - asc;
233         } else {
234                 lyxerr << "should this happen?" << endl;
235                 asc = 10;
236                 des = 10;
237         }
238 }
239
240
241 void LCursor::getPos(int & x, int & y) const
242 {
243         x = 0;
244         y = 0;
245         if (!empty())
246                 inset().getCursorPos(*this, x, y);
247 }
248
249
250 void LCursor::paste(string const & data)
251 {
252         dispatch(FuncRequest(LFUN_PASTE, data));
253 }
254
255
256 void LCursor::resetAnchor()
257 {
258         anchor_ = *this;
259 }
260
261
262
263 bool LCursor::posLeft()
264 {
265         if (pos() == 0)
266                 return false;
267         --pos();
268         return true;
269 }
270
271
272 bool LCursor::posRight()
273 {
274         if (pos() == lastpos())
275                 return false;
276         ++pos();
277         return true;
278 }
279
280
281 CursorSlice LCursor::anchor() const
282 {
283         BOOST_ASSERT(anchor_.size() >= size());
284         CursorSlice normal = anchor_[size() - 1];
285         if (size() < anchor_.size() && back() <= normal) {
286                 // anchor is behind cursor -> move anchor behind the inset
287                 ++normal.pos();
288         }
289         return normal;
290 }
291
292
293 CursorSlice LCursor::selBegin() const
294 {
295         if (!selection())
296                 return back();
297         return anchor() < back() ? anchor() : back();
298 }
299
300
301 CursorSlice LCursor::selEnd() const
302 {
303         if (!selection())
304                 return back();
305         return anchor() > back() ? anchor() : back();
306 }
307
308
309 DocIterator LCursor::selectionBegin() const
310 {
311         if (!selection())
312                 return *this;
313         return anchor() < back() ? anchor_ : *this;
314 }
315
316
317 DocIterator LCursor::selectionEnd() const
318 {
319         if (!selection())
320                 return *this;
321         return anchor() > back() ? anchor_ : *this;
322 }
323
324
325 void LCursor::setSelection()
326 {
327         selection() = true;
328         // a selection with no contents is not a selection
329 #ifdef WITH_WARNINGS
330 #warning doesnt look ok
331 #endif
332         if (par() == anchor().par() && pos() == anchor().pos())
333                 selection() = false;
334 }
335
336
337 void LCursor::setSelection(DocIterator const & where, size_t n)
338 {
339         setCursor(where, true);
340         anchor_ = where;
341         pos() += n;
342 }
343
344
345 void LCursor::clearSelection()
346 {
347         selection() = false;
348         mark() = false;
349         resetAnchor();
350         bv().unsetXSel();
351 }
352
353
354 int & LCursor::x_target()
355 {
356         return x_target_;
357 }
358
359
360 int LCursor::x_target() const
361 {
362         return x_target_;
363 }
364
365
366 void LCursor::clearTargetX()
367 {
368         x_target_ = -1;
369 }
370
371
372
373 void LCursor::info(std::ostream & os) const
374 {
375         for (int i = 1, n = depth(); i < n; ++i) {
376                 operator[](i).inset().infoize(os);
377                 os << "  ";
378         }
379         if (pos() != 0)
380                 prevInset()->infoize2(os);
381         // overwite old message
382         os << "                    ";
383 }
384
385
386 void LCursor::selHandle(bool sel)
387 {
388         //lyxerr << "LCursor::selHandle" << endl;
389         if (sel == selection())
390                 return;
391
392         resetAnchor();
393         selection() = sel;
394 }
395
396
397 std::ostream & operator<<(std::ostream & os, LCursor const & cur)
398 {
399         for (size_t i = 0, n = cur.size(); i != n; ++i) {
400                 os << " " << cur.operator[](i) << " | ";
401                 if (i < cur.anchor_.size())
402                         os << cur.anchor_[i];
403                 else
404                         os << "-------------------------------";
405                 os << "\n";
406         }
407         for (size_t i = cur.size(), n = cur.anchor_.size(); i < n; ++i) {
408                 os << "------------------------------- | " << cur.anchor_[i] << "\n";
409         }
410         os << " selection: " << cur.selection_
411            << " x_target: " << cur.x_target_ << endl;
412         return os;
413 }
414
415
416
417
418 ///////////////////////////////////////////////////////////////////
419 //
420 // The part below is the non-integrated rest of the original math
421 // cursor. This should be either generalized for texted or moved
422 // back to mathed (in most cases to MathNestInset).
423 //
424 ///////////////////////////////////////////////////////////////////
425
426 #include "mathed/math_charinset.h"
427 #include "mathed/math_factory.h"
428 #include "mathed/math_gridinset.h"
429 #include "mathed/math_macroarg.h"
430 #include "mathed/math_mathmlstream.h"
431 #include "mathed/math_scriptinset.h"
432 #include "mathed/math_support.h"
433 #include "mathed/math_unknowninset.h"
434
435 //#define FILEDEBUG 1
436
437
438 bool LCursor::isInside(InsetBase const * p)
439 {
440         for (unsigned i = 0; i < depth(); ++i)
441                 if (&operator[](i).inset() == p)
442                         return true;
443         return false;
444 }
445
446
447 bool LCursor::openable(MathAtom const & t) const
448 {
449         if (!t->isActive())
450                 return false;
451
452         if (t->lock())
453                 return false;
454
455         if (!selection())
456                 return true;
457
458         // we can't move into anything new during selection
459         if (depth() >= anchor_.size())
460                 return false;
461         if (!ptr_cmp(t.nucleus(), &anchor_[depth()].inset()))
462                 return false;
463
464         return true;
465 }
466
467
468 bool positionable(DocIterator const & cursor,
469         DocIterator const & anchor)
470 {
471         // avoid deeper nested insets when selecting
472         if (cursor.size() > anchor.size())
473                 return false;
474
475         // anchor might be deeper, should have same path then
476         for (size_t i = 0; i < cursor.size(); ++i)
477                 if (&cursor[i].inset() != &anchor[i].inset())
478                         return false;
479
480         // position should be ok.
481         return true;
482 }
483
484
485 void LCursor::setScreenPos(int x, int y)
486 {
487         x_target() = x;
488         bruteFind(x, y, 0, bv().workWidth(), 0, bv().workHeight());
489 }
490
491
492
493 void LCursor::plainErase()
494 {
495         cell().erase(pos());
496 }
497
498
499 void LCursor::markInsert()
500 {
501         insert(char(0));
502 }
503
504
505 void LCursor::markErase()
506 {
507         cell().erase(pos());
508 }
509
510
511 void LCursor::plainInsert(MathAtom const & t)
512 {
513         cell().insert(pos(), t);
514         ++pos();
515 }
516
517
518 void LCursor::insert(string const & str)
519 {
520         //lyxerr << "LCursor::insert str '" << str << "'" << endl;
521         for (string::const_iterator it = str.begin(); it != str.end(); ++it)
522                 insert(*it);
523 }
524
525
526 void LCursor::insert(char c)
527 {
528         //lyxerr << "LCursor::insert char '" << c << "'" << endl;
529         BOOST_ASSERT(!empty());
530         if (inMathed()) {
531                 lyx::cap::selClearOrDel(*this);
532                 insert(new MathCharInset(c));
533         } else {
534                 text()->insertChar(*this, c);
535         }
536 }
537
538
539 void LCursor::insert(MathAtom const & t)
540 {
541         //lyxerr << "LCursor::insert MathAtom: " << endl;
542         macroModeClose();
543         lyx::cap::selClearOrDel(*this);
544         plainInsert(t);
545         lyxerr << "LCursor::insert MathAtom: cur:\n" << *this << endl;
546 }
547
548
549 void LCursor::insert(InsetBase * inset)
550 {
551         if (inMathed())
552                 insert(MathAtom(inset));
553         else
554                 text()->insertInset(*this, inset);
555 }
556
557
558 void LCursor::niceInsert(string const & t)
559 {
560         MathArray ar;
561         asArray(t, ar);
562         if (ar.size() == 1)
563                 niceInsert(ar[0]);
564         else
565                 insert(ar);
566 }
567
568
569 void LCursor::niceInsert(MathAtom const & t)
570 {
571         macroModeClose();
572         string safe = lyx::cap::grabAndEraseSelection(*this);
573         plainInsert(t);
574         // enter the new inset and move the contents of the selection if possible
575         if (t->isActive()) {
576                 posLeft();
577                 // be careful here: don't use 'pushLeft(t)' as this we need to
578                 // push the clone, not the original
579                 pushLeft(*nextInset());
580                 paste(safe);
581         }
582 }
583
584
585 void LCursor::insert(MathArray const & ar)
586 {
587         macroModeClose();
588         if (selection())
589                 lyx::cap::eraseSelection(*this);
590         cell().insert(pos(), ar);
591         pos() += ar.size();
592 }
593
594
595 bool LCursor::backspace()
596 {
597         autocorrect() = false;
598
599         if (selection()) {
600                 lyx::cap::selDel(*this);
601                 return true;
602         }
603
604         if (pos() == 0) {
605                 if (inset().nargs() == 1 && depth() == 1 && lastpos() == 0)
606                         return false;
607                 pullArg();
608                 return true;
609         }
610
611         if (inMacroMode()) {
612                 MathUnknownInset * p = activeMacro();
613                 if (p->name().size() > 1) {
614                         p->setName(p->name().substr(0, p->name().size() - 1));
615                         return true;
616                 }
617         }
618
619         if (pos() != 0 && prevAtom()->nargs() > 0) {
620                 // let's require two backspaces for 'big stuff' and
621                 // highlight on the first
622                 resetAnchor();
623                 selection() = true;
624                 --pos();
625         } else {
626                 --pos();
627                 plainErase();
628         }
629         return true;
630 }
631
632
633 bool LCursor::erase()
634 {
635         autocorrect() = false;
636         if (inMacroMode())
637                 return true;
638
639         if (selection()) {
640                 lyx::cap::selDel(*this);
641                 return true;
642         }
643
644         // delete empty cells if possible
645         if (pos() == lastpos() && inset().idxDelete(idx()))
646                 return true;
647
648         // special behaviour when in last position of cell
649         if (pos() == lastpos()) {
650                 bool one_cell = inset().nargs() == 1;
651                 if (one_cell && depth() == 1 && lastpos() == 0)
652                         return false;
653                 // remove markup
654                 if (one_cell)
655                         pullArg();
656                 else
657                         inset().idxGlue(idx());
658                 return true;
659         }
660
661         // 'clever' UI hack: only erase large items if previously slected
662         if (pos() != lastpos() && inset().nargs() > 0) {
663                 resetAnchor();
664                 selection() = true;
665                 ++pos();
666         } else {
667                 plainErase();
668         }
669
670         return true;
671 }
672
673
674 bool LCursor::up()
675 {
676         macroModeClose();
677         DocIterator save = *this;
678         if (goUpDown(true))
679                 return true;
680         setCursor(save, false);
681         autocorrect() = false;
682         return selection();
683 }
684
685
686 bool LCursor::down()
687 {
688         macroModeClose();
689         DocIterator save = *this;
690         if (goUpDown(false))
691                 return true;
692         setCursor(save, false);
693         autocorrect() = false;
694         return selection();
695 }
696
697
698 void LCursor::macroModeClose()
699 {
700         if (!inMacroMode())
701                 return;
702         MathUnknownInset * p = activeMacro();
703         p->finalize();
704         string s = p->name();
705         --pos();
706         cell().erase(pos());
707
708         // do nothing if the macro name is empty
709         if (s == "\\")
710                 return;
711
712         string const name = s.substr(1);
713
714         // prevent entering of recursive macros
715         InsetBase const * macro = innerInsetOfType(InsetBase::MATHMACRO_CODE);
716         if (macro && macro->getInsetName() == name)
717                 lyxerr << "can't enter recursive macro" << endl;
718
719         niceInsert(createMathInset(name));
720 }
721
722
723 string LCursor::macroName()
724 {
725         return inMacroMode() ? activeMacro()->name() : string();
726 }
727
728
729 void LCursor::handleNest(MathAtom const & a, int c)
730 {
731         //lyxerr << "LCursor::handleNest: " << c << endl;
732         MathAtom t = a;
733         asArray(lyx::cap::grabAndEraseSelection(*this), t.nucleus()->cell(c));
734         insert(t);
735         posLeft();
736         pushLeft(*nextInset());
737 }
738
739
740 int LCursor::targetX() const
741 {
742         if (x_target() != -1)
743                 return x_target();
744         int x = 0;
745         int y = 0;
746         getPos(x, y);
747         return x;
748 }
749
750
751 bool LCursor::inMacroMode() const
752 {
753         if (!pos() != 0)
754                 return false;
755         MathUnknownInset const * p = prevAtom()->asUnknownInset();
756         return p && !p->final();
757 }
758
759
760 MathUnknownInset * LCursor::activeMacro()
761 {
762         return inMacroMode() ? prevAtom().nucleus()->asUnknownInset() : 0;
763 }
764
765
766 void LCursor::pullArg()
767 {
768 #ifdef WITH_WARNINGS
769 #warning Look here
770 #endif
771         MathArray ar = cell();
772         if (popLeft() && inMathed()) {
773                 plainErase();
774                 cell().insert(pos(), ar);
775                 resetAnchor();
776         } else {
777                 //formula()->mutateToText();
778         }
779 }
780
781
782 void LCursor::touch()
783 {
784 #ifdef WITH_WARNINGS
785 #warning look here
786 #endif
787 #if 0
788         DocIterator::const_iterator it = begin();
789         DocIterator::const_iterator et = end();
790         for ( ; it != et; ++it)
791                 it->cell().touch();
792 #endif
793 }
794
795
796 void LCursor::normalize()
797 {
798         if (idx() >= nargs()) {
799                 lyxerr << "this should not really happen - 1: "
800                        << idx() << ' ' << nargs()
801                        << " in: " << &inset() << endl;
802         }
803         idx() = min(idx(), lastidx());
804
805         if (pos() > lastpos()) {
806                 lyxerr << "this should not really happen - 2: "
807                         << pos() << ' ' << lastpos() <<  " in idx: " << idx()
808                        << " in atom: '";
809                 WriteStream wi(lyxerr, false, true);
810                 inset().asMathInset()->write(wi);
811                 lyxerr << endl;
812         }
813         pos() = min(pos(), lastpos());
814 }
815
816
817 bool LCursor::goUpDown(bool up)
818 {
819         // Be warned: The 'logic' implemented in this function is highly
820         // fragile. A distance of one pixel or a '<' vs '<=' _really
821         // matters. So fiddle around with it only if you think you know
822         // what you are doing!
823
824   int xo = 0;
825         int yo = 0;
826         getPos(xo, yo);
827
828         // check if we had something else in mind, if not, this is the future goal
829         if (x_target() == -1)
830                 x_target() = xo;
831         else
832                 xo = x_target();
833
834         // try neigbouring script insets
835         if (!selection()) {
836                 // try left
837                 if (pos() != 0) {
838                         MathScriptInset const * p = prevAtom()->asScriptInset();
839                         if (p && p->has(up)) {
840                                 --pos();
841                                 push(inset());
842                                 idx() = up; // the superscript has index 1
843                                 pos() = lastpos();
844                                 //lyxerr << "updown: handled by scriptinset to the left" << endl;
845                                 return true;
846                         }
847                 }
848
849                 // try right
850                 if (pos() != lastpos()) {
851                         MathScriptInset const * p = nextAtom()->asScriptInset();
852                         if (p && p->has(up)) {
853                                 push(inset());
854                                 idx() = up;
855                                 pos() = 0;
856                                 //lyxerr << "updown: handled by scriptinset to the right" << endl;
857                                 return true;
858                         }
859                 }
860         }
861
862         // try current cell for e.g. text insets
863         if (inset().idxUpDown2(*this, up))
864                 return true;
865
866         //xarray().boundingBox(xlow, xhigh, ylow, yhigh);
867         //if (up)
868         //      yhigh = yo - 4;
869         //else
870         //      ylow = yo + 4;
871         //if (bruteFind(xo, yo, xlow, xhigh, ylow, yhigh)) {
872         //      lyxerr << "updown: handled by brute find in the same cell" << endl;
873         //      return true;
874         //}
875
876         // try to find an inset that knows better then we
877         while (1) {
878                 //lyxerr << "updown: We are in " << &inset() << " idx: " << idx() << endl;
879                 // ask inset first
880                 if (inset().idxUpDown(*this, up)) {
881                         // try to find best position within this inset
882                         if (!selection())
883                                 bruteFind2(xo, yo);
884                         return true;
885                 }
886
887                 // no such inset found, just take something "above"
888                 //lyxerr << "updown: handled by strange case" << endl;
889                 if (!popLeft()) {
890                         int ylow  = up ? 0 : yo + 1;
891                         int yhigh = up ? yo - 1 : bv().workHeight();
892                         return bruteFind(xo, yo, 0, bv().workWidth(), ylow, yhigh);
893                 }
894
895                 // any improvement so far?
896                 int xnew, ynew;
897                 getPos(xnew, ynew);
898                 if (up ? ynew < yo : ynew > yo)
899                         return true;
900         }
901 }
902
903
904 bool LCursor::bruteFind(int x, int y, int xlow, int xhigh, int ylow, int yhigh)
905 {
906         BOOST_ASSERT(!empty());
907         par_type beg, end;
908         CursorSlice bottom = operator[](0);
909         LyXText * text = bottom.text();
910         BOOST_ASSERT(text);
911         getParsInRange(text->paragraphs(), ylow, yhigh, beg, end);
912
913         DocIterator it = doc_iterator_begin(bv().buffer()->inset());
914         DocIterator et = doc_iterator_end(bv().buffer()->inset());
915         //lyxerr << "x: " << x << " y: " << y << endl;
916         //lyxerr << "xlow: " << xlow << " ylow: " << ylow << endl;
917         //lyxerr << "xhigh: " << xhigh << " yhigh: " << yhigh << endl;
918
919         it.par() = beg;
920         //et.par() = text->parOffset(end);
921
922         double best_dist = 10e10;
923         DocIterator best_cursor = it;
924
925         for ( ; it != et; it.forwardPos()) {
926                 // avoid invalid nesting when selecting
927                 if (!selection() || positionable(it, anchor_)) {
928                         int xo = 0, yo = 0;
929                         LCursor cur = *this;
930                         cur.setCursor(it, false);
931                         cur.inset().getCursorPos(cur, xo, yo);
932                         if (xlow <= xo && xo <= xhigh && ylow <= yo && yo <= yhigh) {
933                                 double d = (x - xo) * (x - xo) + (y - yo) * (y - yo);
934                                 //lyxerr << "xo: " << xo << " yo: " << yo << " d: " << d << endl;
935                                 // '<=' in order to take the last possible position
936                                 // this is important for clicking behind \sum in e.g. '\sum_i a'
937                                 if (d <= best_dist) {
938                                         //lyxerr << "*" << endl;
939                                         best_dist   = d;
940                                         best_cursor = it;
941                                 }
942                         }
943                 }
944         }
945
946         //lyxerr << "best_dist: " << best_dist << " cur:\n" << best_cursor << endl;
947         if (best_dist < 1e10)
948                 setCursor(best_cursor, false);
949         return best_dist < 1e10;
950 }
951
952
953 void LCursor::bruteFind2(int x, int y)
954 {
955         double best_dist = 1e10;
956
957         DocIterator it = *this;
958         it.back().pos() = 0;
959         DocIterator et = *this;
960         et.back().pos() = et.back().asMathInset()->cell(et.back().idx()).size();
961         for (int i = 0; ; ++i) {
962                 int xo, yo;
963                 LCursor cur = *this;
964                 cur.setCursor(it, false);
965                 cur.inset().getCursorPos(cur, xo, yo);
966                 double d = (x - xo) * (x - xo) + (y - yo) * (y - yo);
967                 // '<=' in order to take the last possible position
968                 // this is important for clicking behind \sum in e.g. '\sum_i a'
969                 lyxerr << "i: " << i << " d: " << d << " best: " << best_dist << endl;
970                 if (d <= best_dist) {
971                         best_dist = d;
972                         setCursor(it, false);
973                 }
974                 if (it == et)
975                         break;
976                 it.forwardPos();
977         }
978 }
979
980
981 void LCursor::handleFont(string const & font)
982 {
983         lyxerr << "LCursor::handleFont: " << font << endl;
984         string safe;
985         if (selection()) {
986                 macroModeClose();
987                 safe = lyx::cap::grabAndEraseSelection(*this);
988         }
989
990         if (lastpos() != 0) {
991                 // something left in the cell
992                 if (pos() == 0) {
993                         // cursor in first position
994                         popLeft();
995                 } else if (pos() == lastpos()) {
996                         // cursor in last position
997                         popRight();
998                 } else {
999                         // cursor in between. split cell
1000                         MathArray::iterator bt = cell().begin();
1001                         MathAtom at = createMathInset(font);
1002                         at.nucleus()->cell(0) = MathArray(bt, bt + pos());
1003                         cell().erase(bt, bt + pos());
1004                         popLeft();
1005                         plainInsert(at);
1006                 }
1007         } else {
1008                 // nothing left in the cell
1009                 pullArg();
1010                 plainErase();
1011         }
1012         insert(safe);
1013 }
1014
1015
1016 void LCursor::message(string const & msg) const
1017 {
1018         bv().owner()->getLyXFunc().setMessage(msg);
1019 }
1020
1021
1022 void LCursor::errorMessage(string const & msg) const
1023 {
1024         bv().owner()->getLyXFunc().setErrorMessage(msg);
1025 }
1026
1027
1028 string LCursor::selectionAsString(bool label) const
1029 {
1030         if (!selection())
1031                 return string();
1032
1033         if (inTexted()) {
1034                 Buffer const & buffer = *bv().buffer();
1035                 ParagraphList & pars = text()->paragraphs();
1036
1037                 // should be const ...
1038                 par_type startpit = selBegin().par();
1039                 par_type endpit = selEnd().par();
1040                 size_t const startpos = selBegin().pos();
1041                 size_t const endpos = selEnd().pos();
1042
1043                 if (startpit == endpit)
1044                         return pars[startpit].asString(buffer, startpos, endpos, label);
1045
1046                 // First paragraph in selection
1047                 string result = pars[startpit].
1048                         asString(buffer, startpos, pars[startpit].size(), label) + "\n\n";
1049
1050                 // The paragraphs in between (if any)
1051                 for (par_type pit = startpit + 1; pit != endpit; ++pit) {
1052                         Paragraph & par = pars[pit];
1053                         result += par.asString(buffer, 0, par.size(), label) + "\n\n";
1054                 }
1055
1056                 // Last paragraph in selection
1057                 result += pars[endpit].asString(buffer, 0, endpos, label);
1058
1059                 return result;
1060         }
1061
1062 #ifdef WITH_WARNINGS
1063 #warning and mathed?
1064 #endif
1065         return string();
1066 }
1067
1068
1069 string LCursor::currentState()
1070 {
1071         if (inMathed()) {
1072                 std::ostringstream os;
1073                 info(os);
1074                 return os.str();
1075         }
1076
1077         if (inTexted())
1078          return text()->currentState(*this);
1079
1080         return string();
1081 }
1082
1083
1084 string LCursor::getPossibleLabel()
1085 {
1086         return inMathed() ? "eq:" : text()->getPossibleLabel(*this);
1087 }
1088
1089
1090 Encoding const * LCursor::getEncoding() const
1091 {
1092         if (empty())
1093                 return 0;
1094         if (!bv().buffer())
1095                 return 0;
1096         int s = 0;
1097         // go up until first non-0 text is hit
1098         // (innermost text is 0 in mathed)
1099         for (s = size() - 1; s >= 0; --s)
1100                 if (operator[](s).text())
1101                         break;
1102         CursorSlice const & sl = operator[](s);
1103         LyXText & text = *sl.text();
1104         LyXFont font = text.getPar(sl.par()).getFont(
1105                 bv().buffer()->params(), sl.pos(), outerFont(sl.par(), text.paragraphs()));
1106         return font.language()->encoding();
1107 }
1108
1109
1110 void LCursor::undispatched()
1111 {
1112         disp_.dispatched(false);
1113 }
1114
1115
1116 void LCursor::dispatched()
1117 {
1118         disp_.dispatched(true);
1119 }
1120
1121
1122 void LCursor::noUpdate()
1123 {
1124         disp_.update(false);
1125 }