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