]> git.lyx.org Git - features.git/blob - src/mathed/InsetMathNest.cpp
* inset/InsetTabular.cpp (doDispatch): LFUN_MOUSE_PRESS: let Text::dispatch
[features.git] / src / mathed / InsetMathNest.cpp
1 /**
2  * \file InsetMathNest.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathNest.h"
14
15 #include "InsetMathArray.h"
16 #include "InsetMathBig.h"
17 #include "InsetMathBox.h"
18 #include "InsetMathBrace.h"
19 #include "InsetMathColor.h"
20 #include "InsetMathComment.h"
21 #include "InsetMathDelim.h"
22 #include "InsetMathHull.h"
23 //#include "InsetMathMBox.h"
24 #include "InsetMathRef.h"
25 #include "InsetMathScript.h"
26 #include "InsetMathSpace.h"
27 #include "InsetMathSymbol.h"
28 #include "InsetMathUnknown.h"
29 #include "MathData.h"
30 #include "MathFactory.h"
31 #include "MathMacroArgument.h"
32 #include "MathParser.h"
33 #include "MathStream.h"
34 #include "MathSupport.h"
35
36 #include "bufferview_funcs.h"
37 #include "BufferView.h"
38 #include "Color.h"
39 #include "CoordCache.h"
40 #include "Cursor.h"
41 #include "CutAndPaste.h"
42 #include "debug.h"
43 #include "DispatchResult.h"
44 #include "FuncRequest.h"
45 #include "FuncStatus.h"
46 #include "gettext.h"
47 #include "Text.h"
48 #include "OutputParams.h"
49 #include "Undo.h"
50
51 #include "support/lstrings.h"
52 #include "support/textutils.h"
53
54 #include "frontends/Clipboard.h"
55 #include "frontends/Painter.h"
56 #include "frontends/Selection.h"
57
58 #include "FuncRequest.h"
59
60 #include <sstream>
61
62
63 namespace lyx {
64
65 using cap::copySelection;
66 using cap::grabAndEraseSelection;
67 using cap::cutSelection;
68 using cap::replaceSelection;
69 using cap::selClearOrDel;
70
71 using std::endl;
72 using std::string;
73 using std::istringstream;
74
75
76 InsetMathNest::InsetMathNest(idx_type nargs)
77         : cells_(nargs), lock_(false), mouse_hover_(false)
78 {}
79
80
81 InsetMathNest::InsetMathNest(InsetMathNest const & inset)
82         : InsetMath(inset), cells_(inset.cells_), lock_(inset.lock_),
83           mouse_hover_(false)
84 {}
85
86
87 InsetMathNest & InsetMathNest::operator=(InsetMathNest const & inset)
88 {
89         cells_ = inset.cells_;
90         lock_ = inset.lock_;
91         mouse_hover_ = false;
92         InsetMath::operator=(inset);
93         return *this;
94 }
95
96
97 InsetMath::idx_type InsetMathNest::nargs() const
98 {
99         return cells_.size();
100 }
101
102
103 void InsetMathNest::cursorPos(BufferView const & bv,
104                 CursorSlice const & sl, bool /*boundary*/,
105                 int & x, int & y) const
106 {
107 // FIXME: This is a hack. Ideally, the coord cache should not store
108 // absolute positions, but relative ones. This would mean to call
109 // setXY() not in MathData::draw(), but in the parent insets' draw()
110 // with the correctly adjusted x,y values. But this means that we'd have
111 // to touch all (math)inset's draw() methods. Right now, we'll store
112 // absolute value, and make them here relative, only to make them
113 // absolute again when actually drawing the cursor. What a mess.
114         BOOST_ASSERT(ptr_cmp(&sl.inset(), this));
115         MathData const & ar = sl.cell();
116         CoordCache const & coord_cache = bv.coordCache();
117         if (!coord_cache.getArrays().has(&ar)) {
118                 // this can (semi-)legally happen if we just created this cell
119                 // and it never has been drawn before. So don't ASSERT.
120                 //lyxerr << "no cached data for array " << &ar << endl;
121                 x = 0;
122                 y = 0;
123                 return;
124         }
125         Point const pt = coord_cache.getArrays().xy(&ar);
126         if (!coord_cache.getInsets().has(this)) {
127                 // same as above
128                 //lyxerr << "no cached data for inset " << this << endl;
129                 x = 0;
130                 y = 0;
131                 return;
132         }
133         Point const pt2 = coord_cache.getInsets().xy(this);
134         //lyxerr << "retrieving position cache for MathData "
135         //      << pt.x_ << ' ' << pt.y_ << std::endl;
136         x = pt.x_ - pt2.x_ + ar.pos2x(sl.pos());
137         y = pt.y_ - pt2.y_;
138 //      lyxerr << "pt.y_ : " << pt.y_ << " pt2_.y_ : " << pt2.y_
139 //              << " asc: " << ascent() << "  des: " << descent()
140 //              << " ar.asc: " << ar.ascent() << " ar.des: " << ar.descent() << endl;
141         // move cursor visually into empty cells ("blue rectangles");
142         if (ar.empty())
143                 x += 2;
144 }
145
146
147 void InsetMathNest::metrics(MetricsInfo const & mi) const
148 {
149         MetricsInfo m = mi;
150         for (idx_type i = 0, n = nargs(); i != n; ++i)
151                 cell(i).metrics(m);
152 }
153
154
155 bool InsetMathNest::idxNext(Cursor & cur) const
156 {
157         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
158         if (cur.idx() == cur.lastidx())
159                 return false;
160         ++cur.idx();
161         cur.pos() = 0;
162         return true;
163 }
164
165
166 bool InsetMathNest::idxRight(Cursor & cur) const
167 {
168         return idxNext(cur);
169 }
170
171
172 bool InsetMathNest::idxPrev(Cursor & cur) const
173 {
174         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
175         if (cur.idx() == 0)
176                 return false;
177         --cur.idx();
178         cur.pos() = cur.lastpos();
179         return true;
180 }
181
182
183 bool InsetMathNest::idxLeft(Cursor & cur) const
184 {
185         return idxPrev(cur);
186 }
187
188
189 bool InsetMathNest::idxFirst(Cursor & cur) const
190 {
191         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
192         if (nargs() == 0)
193                 return false;
194         cur.idx() = 0;
195         cur.pos() = 0;
196         return true;
197 }
198
199
200 bool InsetMathNest::idxLast(Cursor & cur) const
201 {
202         BOOST_ASSERT(ptr_cmp(&cur.inset(), this));
203         if (nargs() == 0)
204                 return false;
205         cur.idx() = cur.lastidx();
206         cur.pos() = cur.lastpos();
207         return true;
208 }
209
210
211 void InsetMathNest::dump() const
212 {
213         odocstringstream oss;
214         WriteStream os(oss);
215         os << "---------------------------------------------\n";
216         write(os);
217         os << "\n";
218         for (idx_type i = 0, n = nargs(); i != n; ++i)
219                 os << cell(i) << "\n";
220         os << "---------------------------------------------\n";
221         lyxerr << to_utf8(oss.str());
222 }
223
224
225 void InsetMathNest::draw(PainterInfo & pi, int x, int y) const
226 {
227 #if 0
228         if (lock_)
229                 pi.pain.fillRectangle(x, y - ascent(), width(), height(),
230                                         Color::mathlockbg);
231 #endif
232         setPosCache(pi, x, y);
233 }
234
235
236 void InsetMathNest::drawSelection(PainterInfo & pi, int x, int y) const
237 {
238         BufferView & bv = *pi.base.bv;
239         // this should use the x/y values given, not the cached values
240         Cursor & cur = bv.cursor();
241         if (!cur.selection())
242                 return;
243         if (!ptr_cmp(&cur.inset(), this))
244                 return;
245
246         // FIXME: hack to get position cache warm
247         pi.pain.setDrawingEnabled(false);
248         draw(pi, x, y);
249         pi.pain.setDrawingEnabled(true);
250
251         CursorSlice s1 = cur.selBegin();
252         CursorSlice s2 = cur.selEnd();
253
254         //lyxerr << "InsetMathNest::drawing selection: "
255         //      << " s1: " << s1 << " s2: " << s2 << endl;
256         if (s1.idx() == s2.idx()) {
257                 MathData const & c = cell(s1.idx());
258                 int x1 = c.xo(bv) + c.pos2x(s1.pos());
259                 int y1 = c.yo(bv) - c.ascent();
260                 int x2 = c.xo(bv) + c.pos2x(s2.pos());
261                 int y2 = c.yo(bv) + c.descent();
262                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, Color::selection);
263         //lyxerr << "InsetMathNest::drawing selection 3: "
264         //      << " x1: " << x1 << " x2: " << x2
265         //      << " y1: " << y1 << " y2: " << y2 << endl;
266         } else {
267                 for (idx_type i = 0; i < nargs(); ++i) {
268                         if (idxBetween(i, s1.idx(), s2.idx())) {
269                                 MathData const & c = cell(i);
270                                 int x1 = c.xo(bv);
271                                 int y1 = c.yo(bv) - c.ascent();
272                                 int x2 = c.xo(bv) + c.width();
273                                 int y2 = c.yo(bv) + c.descent();
274                                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, Color::selection);
275                         }
276                 }
277         }
278 }
279
280
281 void InsetMathNest::validate(LaTeXFeatures & features) const
282 {
283         for (idx_type i = 0; i < nargs(); ++i)
284                 cell(i).validate(features);
285 }
286
287
288 void InsetMathNest::replace(ReplaceData & rep)
289 {
290         for (idx_type i = 0; i < nargs(); ++i)
291                 cell(i).replace(rep);
292 }
293
294
295 bool InsetMathNest::contains(MathData const & ar) const
296 {
297         for (idx_type i = 0; i < nargs(); ++i)
298                 if (cell(i).contains(ar))
299                         return true;
300         return false;
301 }
302
303
304 bool InsetMathNest::lock() const
305 {
306         return lock_;
307 }
308
309
310 void InsetMathNest::lock(bool l)
311 {
312         lock_ = l;
313 }
314
315
316 bool InsetMathNest::isActive() const
317 {
318         return nargs() > 0;
319 }
320
321
322 MathData InsetMathNest::glue() const
323 {
324         MathData ar;
325         for (size_t i = 0; i < nargs(); ++i)
326                 ar.append(cell(i));
327         return ar;
328 }
329
330
331 void InsetMathNest::write(WriteStream & os) const
332 {
333         os << '\\' << name().c_str();
334         for (size_t i = 0; i < nargs(); ++i)
335                 os << '{' << cell(i) << '}';
336         if (nargs() == 0)
337                 os.pendingSpace(true);
338         if (lock_ && !os.latex()) {
339                 os << "\\lyxlock";
340                 os.pendingSpace(true);
341         }
342 }
343
344
345 void InsetMathNest::normalize(NormalStream & os) const
346 {
347         os << '[' << name().c_str();
348         for (size_t i = 0; i < nargs(); ++i)
349                 os << ' ' << cell(i);
350         os << ']';
351 }
352
353
354 int InsetMathNest::latex(Buffer const &, odocstream & os,
355                         OutputParams const & runparams) const
356 {
357         WriteStream wi(os, runparams.moving_arg, true);
358         write(wi);
359         return wi.line();
360 }
361
362
363 bool InsetMathNest::setMouseHover(bool mouse_hover)
364 {
365         mouse_hover_ = mouse_hover;
366         return true;
367 }
368
369
370 bool InsetMathNest::notifyCursorLeaves(Cursor & /*cur*/)
371 {
372         // FIXME: look here
373 #if 0
374         MathData & ar = cur.cell();
375         // remove base-only "scripts"
376         for (pos_type i = 0; i + 1 < ar.size(); ++i) {
377                 InsetMathScript * p = operator[](i).nucleus()->asScriptInset();
378                 if (p && p->nargs() == 1) {
379                         MathData ar = p->nuc();
380                         erase(i);
381                         insert(i, ar);
382                         cur.adjust(i, ar.size() - 1);
383                 }
384         }
385
386         // glue adjacent font insets of the same kind
387         for (pos_type i = 0; i + 1 < size(); ++i) {
388                 InsetMathFont * p = operator[](i).nucleus()->asFontInset();
389                 InsetMathFont const * q = operator[](i + 1)->asFontInset();
390                 if (p && q && p->name() == q->name()) {
391                         p->cell(0).append(q->cell(0));
392                         erase(i + 1);
393                         cur.adjust(i, -1);
394                 }
395         }
396 #endif
397         return false;
398 }
399
400
401 void InsetMathNest::handleFont
402         (Cursor & cur, docstring const & arg, char const * const font)
403 {
404         handleFont(cur, arg, from_ascii(font));
405 }
406
407
408 void InsetMathNest::handleFont
409         (Cursor & cur, docstring const & arg, docstring const & font)
410 {
411         // this whole function is a hack and won't work for incremental font
412         // changes...
413
414         if (cur.inset().asInsetMath()->name() == font) {
415                 recordUndoInset(cur, Undo::ATOMIC);
416                 cur.handleFont(to_utf8(font));
417         } else {
418                 recordUndo(cur, Undo::ATOMIC);
419                 cur.handleNest(createInsetMath(font));
420                 cur.insert(arg);
421         }
422 }
423
424
425 void InsetMathNest::handleFont2(Cursor & cur, docstring const & arg)
426 {
427         recordUndo(cur, Undo::ATOMIC);
428         Font font;
429         bool b;
430         bv_funcs::string2font(to_utf8(arg), font, b);
431         if (font.color() != Color::inherit) {
432                 MathAtom at = MathAtom(new InsetMathColor(true, font.color()));
433                 cur.handleNest(at, 0);
434         }
435 }
436
437
438 void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd)
439 {
440         //lyxerr << "InsetMathNest: request: " << cmd << std::endl;
441         //CursorSlice sl = cur.current();
442
443         switch (cmd.action) {
444
445         case LFUN_PASTE: {
446                 recordUndo(cur);
447                 cur.message(_("Paste"));
448                 replaceSelection(cur);
449                 docstring topaste;
450                 if (cmd.argument().empty() && !theClipboard().isInternal())
451                         topaste = theClipboard().getAsText();
452                 else {
453                         size_t n = 0;
454                         idocstringstream is(cmd.argument());
455                         is >> n;
456                         topaste = cap::getSelection(cur.buffer(), n);
457                 }
458                 cur.niceInsert(topaste);
459                 cur.clearSelection(); // bug 393
460                 finishUndo();
461                 break;
462         }
463
464         case LFUN_CUT:
465                 recordUndo(cur);
466                 cutSelection(cur, true, true);
467                 cur.message(_("Cut"));
468                 // Prevent stale position >= size crash
469                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
470                 cur.normalize();
471                 break;
472
473         case LFUN_COPY:
474                 copySelection(cur);
475                 cur.message(_("Copy"));
476                 break;
477
478         case LFUN_MOUSE_PRESS:
479                 lfunMousePress(cur, cmd);
480                 break;
481
482         case LFUN_MOUSE_MOTION:
483                 lfunMouseMotion(cur, cmd);
484                 break;
485
486         case LFUN_MOUSE_RELEASE:
487                 lfunMouseRelease(cur, cmd);
488                 break;
489
490         case LFUN_FINISHED_LEFT:
491                 cur.bv().cursor() = cur;
492                 break;
493
494         case LFUN_FINISHED_RIGHT:
495                 ++cur.pos();
496                 cur.bv().cursor() = cur;
497                 break;
498
499         case LFUN_CHAR_FORWARD:
500                 cur.updateFlags(Update::Decoration | Update::FitCursor);
501         case LFUN_CHAR_FORWARD_SELECT:
502                 cur.selHandle(cmd.action == LFUN_CHAR_FORWARD_SELECT);
503                 cur.autocorrect() = false;
504                 cur.clearTargetX();
505                 cur.macroModeClose();
506                 if (reverseDirectionNeeded(cur))
507                         goto goto_char_backwards;
508
509 goto_char_forwards:
510                 if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
511                         cur.pushLeft(*cur.nextAtom().nucleus());
512                         cur.inset().idxFirst(cur);
513                 } else if (cur.posRight() || idxRight(cur)
514                         || cur.popRight() || cur.selection())
515                         ;
516                 else {
517                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
518                         cur.undispatched();
519                 }
520                 break;
521
522         case LFUN_CHAR_BACKWARD:
523                 cur.updateFlags(Update::Decoration | Update::FitCursor);
524         case LFUN_CHAR_BACKWARD_SELECT:
525                 cur.selHandle(cmd.action == LFUN_CHAR_BACKWARD_SELECT);
526                 cur.autocorrect() = false;
527                 cur.clearTargetX();
528                 cur.macroModeClose();
529                 if (reverseDirectionNeeded(cur))
530                         goto goto_char_forwards;
531
532 goto_char_backwards:
533                 if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
534                         cur.posLeft();
535                         cur.push(*cur.nextAtom().nucleus());
536                         cur.inset().idxLast(cur);
537                 } else if (cur.posLeft() || idxLeft(cur)
538                         || cur.popLeft() || cur.selection())
539                         ;
540                 else {
541                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
542                         cur.undispatched();
543                 }
544                 break;
545
546         case LFUN_DOWN:
547         case LFUN_UP:
548                 cur.updateFlags(Update::Decoration | Update::FitCursor);
549         case LFUN_DOWN_SELECT:
550         case LFUN_UP_SELECT: {
551                 // close active macro
552                 if (cur.inMacroMode()) {
553                         cur.macroModeClose();
554                         break;
555                 }
556                 
557                 // stop/start the selection
558                 bool select = cmd.action == LFUN_DOWN_SELECT ||
559                         cmd.action == LFUN_UP_SELECT;
560                 cur.selHandle(select);
561                 
562                 // go up/down
563                 bool up = cmd.action == LFUN_UP || cmd.action == LFUN_UP_SELECT;
564                 bool successful = cur.upDownInMath(up);
565                 if (successful) {
566                         // notify left insets and give them chance to set update flags
567                         lyx::notifyCursorLeaves(cur.beforeDispatchCursor(), cur);
568                         cur.fixIfBroken();
569                 }       else
570                         cur.undispatched();
571                 break;
572         }
573
574         case LFUN_MOUSE_DOUBLE:
575         case LFUN_MOUSE_TRIPLE:
576         case LFUN_WORD_SELECT:
577                 cur.pos() = 0;
578                 cur.idx() = 0;
579                 cur.resetAnchor();
580                 cur.selection() = true;
581                 cur.pos() = cur.lastpos();
582                 cur.idx() = cur.lastidx();
583                 break;
584
585         case LFUN_PARAGRAPH_UP:
586         case LFUN_PARAGRAPH_DOWN:
587                 cur.updateFlags(Update::Decoration | Update::FitCursor);
588         case LFUN_PARAGRAPH_UP_SELECT:
589         case LFUN_PARAGRAPH_DOWN_SELECT:
590                 break;
591
592         case LFUN_LINE_BEGIN:
593         case LFUN_WORD_BACKWARD:
594                 cur.updateFlags(Update::Decoration | Update::FitCursor);
595         case LFUN_LINE_BEGIN_SELECT:
596         case LFUN_WORD_BACKWARD_SELECT:
597                 cur.selHandle(cmd.action == LFUN_WORD_BACKWARD_SELECT ||
598                                 cmd.action == LFUN_LINE_BEGIN_SELECT);
599                 cur.macroModeClose();
600                 if (cur.pos() != 0) {
601                         cur.pos() = 0;
602                 } else if (cur.col() != 0) {
603                         cur.idx() -= cur.col();
604                         cur.pos() = 0;
605                 } else if (cur.idx() != 0) {
606                         cur.idx() = 0;
607                         cur.pos() = 0;
608                 } else {
609                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
610                         cur.undispatched();
611                 }
612                 break;
613
614         case LFUN_WORD_FORWARD:
615         case LFUN_LINE_END:
616                 cur.updateFlags(Update::Decoration | Update::FitCursor);
617         case LFUN_WORD_FORWARD_SELECT:
618         case LFUN_LINE_END_SELECT:
619                 cur.selHandle(cmd.action == LFUN_WORD_FORWARD_SELECT ||
620                                 cmd.action == LFUN_LINE_END_SELECT);
621                 cur.macroModeClose();
622                 cur.clearTargetX();
623                 if (cur.pos() != cur.lastpos()) {
624                         cur.pos() = cur.lastpos();
625                 } else if (ncols() && (cur.col() != cur.lastcol())) {
626                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
627                         cur.pos() = cur.lastpos();
628                 } else if (cur.idx() != cur.lastidx()) {
629                         cur.idx() = cur.lastidx();
630                         cur.pos() = cur.lastpos();
631                 } else {
632                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
633                         cur.undispatched();
634                 }
635                 break;
636
637         case LFUN_SCREEN_UP_SELECT:
638         case LFUN_SCREEN_UP:
639                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
640                 cur.undispatched();
641                 break;
642
643         case LFUN_SCREEN_DOWN_SELECT:
644         case LFUN_SCREEN_DOWN:
645                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
646                 cur.undispatched();
647                 break;
648
649         case LFUN_CELL_FORWARD:
650                 cur.updateFlags(Update::Decoration | Update::FitCursor);
651                 cur.inset().idxNext(cur);
652                 break;
653
654         case LFUN_CELL_BACKWARD:
655                 cur.updateFlags(Update::Decoration | Update::FitCursor);
656                 cur.inset().idxPrev(cur);
657                 break;
658
659         case LFUN_WORD_DELETE_BACKWARD:
660         case LFUN_CHAR_DELETE_BACKWARD:
661                 if (cur.pos() == 0)
662                         // May affect external cell:
663                         recordUndoInset(cur, Undo::ATOMIC);
664                 else
665                         recordUndo(cur, Undo::ATOMIC);
666                 // if the inset can not be removed from within, delete it
667                 if (!cur.backspace()) {
668                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
669                         cur.innerText()->dispatch(cur, cmd);
670                 }
671                 break;
672
673         case LFUN_WORD_DELETE_FORWARD:
674         case LFUN_CHAR_DELETE_FORWARD:
675                 if (cur.pos() == cur.lastpos())
676                         // May affect external cell:
677                         recordUndoInset(cur, Undo::ATOMIC);
678                 else
679                         recordUndo(cur, Undo::ATOMIC);
680                 // if the inset can not be removed from within, delete it
681                 if (!cur.erase()) {
682                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
683                         cur.innerText()->dispatch(cur, cmd);
684                 }
685                 break;
686
687         case LFUN_ESCAPE:
688                 if (cur.selection())
689                         cur.clearSelection();
690                 else  {
691                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
692                         cur.undispatched();
693                 }
694                 break;
695
696         case LFUN_INSET_TOGGLE:
697                 recordUndo(cur);
698                 lock(!lock());
699                 cur.popRight();
700                 break;
701
702         case LFUN_SELF_INSERT:
703                 if (cmd.argument().size() != 1) {
704                         recordUndo(cur);
705                         docstring const arg = cmd.argument();
706                         if (!interpretString(cur, arg))
707                                 cur.insert(arg);
708                         break;
709                 }
710                 // Don't record undo steps if we are in macro mode and
711                 // cmd.argument is the next character of the macro name.
712                 // Otherwise we'll get an invalid cursor if we undo after
713                 // the macro was finished and the macro is a known command,
714                 // e.g. sqrt. Cursor::macroModeClose replaces in this case
715                 // the InsetMathUnknown with name "frac" by an empty
716                 // InsetMathFrac -> a pos value > 0 is invalid.
717                 // A side effect is that an undo before the macro is finished
718                 // undoes the complete macro, not only the last character.
719                 if (!cur.inMacroMode())
720                         recordUndo(cur);
721
722                 // spacial handling of space. If we insert an inset
723                 // via macro mode, we want to put the cursor inside it
724                 // if relevant. Think typing "\frac<space>".
725                 if (cmd.argument()[0] == ' '
726                     && cur.inMacroMode() && cur.macroName() != "\\"
727                     && cur.macroModeClose()) {
728                         MathAtom const atom = cur.prevAtom();
729                         if (atom->asNestInset() && atom->isActive()) {
730                                 cur.posLeft();
731                                 cur.pushLeft(*cur.nextInset());
732                         }
733                 } else if (!interpretChar(cur, cmd.argument()[0])) {
734                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
735                         cur.undispatched();
736                 }
737                 break;
738
739         //case LFUN_SERVER_GET_XY:
740         //      sprintf(dispatch_buffer, "%d %d",);
741         //      break;
742
743         case LFUN_SERVER_SET_XY: {
744                 lyxerr << "LFUN_SERVER_SET_XY broken!" << endl;
745                 int x = 0;
746                 int y = 0;
747                 istringstream is(to_utf8(cmd.argument()));
748                 is >> x >> y;
749                 cur.setScreenPos(x, y);
750                 break;
751         }
752
753         // Special casing for superscript in case of LyX handling
754         // dead-keys:
755         case LFUN_ACCENT_CIRCUMFLEX:
756                 if (cmd.argument().empty()) {
757                         // do superscript if LyX handles
758                         // deadkeys
759                         recordUndo(cur, Undo::ATOMIC);
760                         script(cur, true, grabAndEraseSelection(cur));
761                 }
762                 break;
763
764         case LFUN_ACCENT_UMLAUT:
765         case LFUN_ACCENT_ACUTE:
766         case LFUN_ACCENT_GRAVE:
767         case LFUN_ACCENT_BREVE:
768         case LFUN_ACCENT_DOT:
769         case LFUN_ACCENT_MACRON:
770         case LFUN_ACCENT_CARON:
771         case LFUN_ACCENT_TILDE:
772         case LFUN_ACCENT_CEDILLA:
773         case LFUN_ACCENT_CIRCLE:
774         case LFUN_ACCENT_UNDERDOT:
775         case LFUN_ACCENT_TIE:
776         case LFUN_ACCENT_OGONEK:
777         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
778                 break;
779
780         //  Math fonts
781         case LFUN_FONT_FREE_APPLY:
782         case LFUN_FONT_FREE_UPDATE:
783                 handleFont2(cur, cmd.argument());
784                 break;
785
786         case LFUN_FONT_BOLD:
787                 if (currentMode() == TEXT_MODE)
788                         handleFont(cur, cmd.argument(), "textbf");
789                 else
790                         handleFont(cur, cmd.argument(), "mathbf");
791                 break;
792         case LFUN_FONT_SANS:
793                 if (currentMode() == TEXT_MODE)
794                         handleFont(cur, cmd.argument(), "textsf");
795                 else
796                         handleFont(cur, cmd.argument(), "mathsf");
797                 break;
798         case LFUN_FONT_EMPH:
799                 if (currentMode() == TEXT_MODE)
800                         handleFont(cur, cmd.argument(), "emph");
801                 else
802                         handleFont(cur, cmd.argument(), "mathcal");
803                 break;
804         case LFUN_FONT_ROMAN:
805                 if (currentMode() == TEXT_MODE)
806                         handleFont(cur, cmd.argument(), "textrm");
807                 else
808                         handleFont(cur, cmd.argument(), "mathrm");
809                 break;
810         case LFUN_FONT_CODE:
811                 if (currentMode() == TEXT_MODE)
812                         handleFont(cur, cmd.argument(), "texttt");
813                 else
814                         handleFont(cur, cmd.argument(), "mathtt");
815                 break;
816         case LFUN_FONT_FRAK:
817                 handleFont(cur, cmd.argument(), "mathfrak");
818                 break;
819         case LFUN_FONT_ITAL:
820                 if (currentMode() == TEXT_MODE)
821                         handleFont(cur, cmd.argument(), "textit");
822                 else
823                         handleFont(cur, cmd.argument(), "mathit");
824                 break;
825         case LFUN_FONT_NOUN:
826                 if (currentMode() == TEXT_MODE)
827                         // FIXME: should be "noun"
828                         handleFont(cur, cmd.argument(), "textsc");
829                 else
830                         handleFont(cur, cmd.argument(), "mathbb");
831                 break;
832         /*
833         case LFUN_FONT_FREE_APPLY:
834                 handleFont(cur, cmd.argument(), "textrm");
835                 break;
836         */
837         case LFUN_FONT_DEFAULT:
838                 handleFont(cur, cmd.argument(), "textnormal");
839                 break;
840
841         case LFUN_MATH_MODE: {
842 #if 1
843                 // ignore math-mode on when already in math mode
844                 if (currentMode() == Inset::MATH_MODE && cmd.argument() == "on")
845                         break;
846                 cur.macroModeClose();
847                 docstring const save_selection = grabAndEraseSelection(cur);
848                 selClearOrDel(cur);
849                 //cur.plainInsert(MathAtom(new InsetMathMBox(cur.bv())));
850                 cur.plainInsert(MathAtom(new InsetMathBox(from_ascii("mbox"))));
851                 cur.posLeft();
852                 cur.pushLeft(*cur.nextInset());
853                 cur.niceInsert(save_selection);
854 #else
855                 if (currentMode() == Inset::TEXT_MODE) {
856                         cur.niceInsert(MathAtom(new InsetMathHull("simple")));
857                         cur.message(_("create new math text environment ($...$)"));
858                 } else {
859                         handleFont(cur, cmd.argument(), "textrm");
860                         cur.message(_("entered math text mode (textrm)"));
861                 }
862 #endif
863                 break;
864         }
865
866         case LFUN_MATH_SIZE:
867 #if 0
868                 recordUndo(cur);
869                 cur.setSize(arg);
870 #endif
871                 break;
872
873         case LFUN_MATH_MATRIX: {
874                 recordUndo(cur, Undo::ATOMIC);
875                 unsigned int m = 1;
876                 unsigned int n = 1;
877                 docstring v_align;
878                 docstring h_align;
879                 idocstringstream is(cmd.argument());
880                 is >> m >> n >> v_align >> h_align;
881                 if (m < 1)
882                         m = 1;
883                 if (n < 1)
884                         n = 1;
885                 v_align += 'c';
886                 cur.niceInsert(
887                         MathAtom(new InsetMathArray(from_ascii("array"), m, n, (char)v_align[0], h_align)));
888                 break;
889         }
890
891         case LFUN_MATH_DELIM: {
892                 docstring ls;
893                 docstring rs = support::split(cmd.argument(), ls, ' ');
894                 // Reasonable default values
895                 if (ls.empty())
896                         ls = '(';
897                 if (rs.empty())
898                         rs = ')';
899                 recordUndo(cur, Undo::ATOMIC);
900                 cur.handleNest(MathAtom(new InsetMathDelim(ls, rs)));
901                 break;
902         }
903
904         case LFUN_MATH_BIGDELIM: {
905                 docstring const lname  = from_utf8(cmd.getArg(0));
906                 docstring const ldelim = from_utf8(cmd.getArg(1));
907                 docstring const rname  = from_utf8(cmd.getArg(2));
908                 docstring const rdelim = from_utf8(cmd.getArg(3));
909                 latexkeys const * l = in_word_set(lname);
910                 bool const have_l = l && l->inset == "big" &&
911                                     InsetMathBig::isBigInsetDelim(ldelim);
912                 l = in_word_set(rname);
913                 bool const have_r = l && l->inset == "big" &&
914                                     InsetMathBig::isBigInsetDelim(rdelim);
915                 // We mimic LFUN_MATH_DELIM in case we have an empty left
916                 // or right delimiter.
917                 if (have_l || have_r) {
918                         recordUndo(cur, Undo::ATOMIC);
919                         docstring const selection = grabAndEraseSelection(cur);
920                         selClearOrDel(cur);
921                         if (have_l)
922                                 cur.insert(MathAtom(new InsetMathBig(lname,
923                                                                 ldelim)));
924                         cur.niceInsert(selection);
925                         if (have_r)
926                                 cur.insert(MathAtom(new InsetMathBig(rname,
927                                                                 rdelim)));
928                 }
929                 // Don't call cur.undispatched() if we did nothing, this would
930                 // lead to infinite recursion via Text::dispatch().
931                 break;
932         }
933
934         case LFUN_SPACE_INSERT:
935         case LFUN_MATH_SPACE:
936                 recordUndo(cur, Undo::ATOMIC);
937                 cur.insert(MathAtom(new InsetMathSpace(from_ascii(","))));
938                 break;
939
940         case LFUN_ERT_INSERT:
941                 // interpret this as if a backslash was typed
942                 recordUndo(cur, Undo::ATOMIC);
943                 interpretChar(cur, '\\');
944                 break;
945
946         case LFUN_MATH_SUBSCRIPT:
947                 // interpret this as if a _ was typed
948                 recordUndo(cur, Undo::ATOMIC);
949                 interpretChar(cur, '_');
950                 break;
951
952         case LFUN_MATH_SUPERSCRIPT:
953                 // interpret this as if a ^ was typed
954                 recordUndo(cur, Undo::ATOMIC);
955                 interpretChar(cur, '^');
956                 break;
957
958         case LFUN_QUOTE_INSERT:
959                 // interpret this as if a straight " was typed
960                 recordUndo(cur, Undo::ATOMIC);
961                 interpretChar(cur, '\"');
962                 break;
963
964 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
965 // handling such that "self-insert" works on "arbitrary stuff" too, and
966 // math-insert only handles special math things like "matrix".
967         case LFUN_MATH_INSERT: {
968                 recordUndo(cur, Undo::ATOMIC);
969                 if (cmd.argument() == "^" || cmd.argument() == "_") {
970                         interpretChar(cur, cmd.argument()[0]);
971                 } else
972                         cur.niceInsert(cmd.argument());
973                 break;
974                 }
975
976         case LFUN_DIALOG_SHOW_NEW_INSET: {
977                 docstring const & name = cmd.argument();
978                 string data;
979                 if (name == "ref") {
980                         InsetMathRef tmp(name);
981                         data = tmp.createDialogStr(to_utf8(name));
982                 }
983                 cur.bv().showInsetDialog(to_utf8(name), data, 0);
984                 break;
985         }
986
987         case LFUN_INSET_INSERT: {
988                 MathData ar;
989                 if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
990                         recordUndo(cur);
991                         cur.insert(ar);
992                 } else
993                         cur.undispatched();
994                 break;
995         }
996
997         default:
998                 InsetMath::doDispatch(cur, cmd);
999                 break;
1000         }
1001 }
1002
1003
1004 bool InsetMathNest::getStatus(Cursor & cur, FuncRequest const & cmd,
1005                 FuncStatus & flag) const
1006 {
1007         // the font related toggles
1008         //string tc = "mathnormal";
1009         bool ret = true;
1010         string const arg = to_utf8(cmd.argument());
1011         switch (cmd.action) {
1012         case LFUN_TABULAR_FEATURE:
1013                 flag.enabled(false);
1014                 break;
1015 #if 0
1016         case LFUN_TABULAR_FEATURE:
1017                 // FIXME: check temporarily disabled
1018                 // valign code
1019                 char align = mathcursor::valign();
1020                 if (align == '\0') {
1021                         enable = false;
1022                         break;
1023                 }
1024                 if (cmd.argument().empty()) {
1025                         flag.clear();
1026                         break;
1027                 }
1028                 if (!contains("tcb", cmd.argument()[0])) {
1029                         enable = false;
1030                         break;
1031                 }
1032                 flag.setOnOff(cmd.argument()[0] == align);
1033                 break;
1034 #endif
1035         /// We have to handle them since 1.4 blocks all unhandled actions
1036         case LFUN_FONT_ITAL:
1037         case LFUN_FONT_BOLD:
1038         case LFUN_FONT_SANS:
1039         case LFUN_FONT_EMPH:
1040         case LFUN_FONT_CODE:
1041         case LFUN_FONT_NOUN:
1042         case LFUN_FONT_ROMAN:
1043         case LFUN_FONT_DEFAULT:
1044                 flag.enabled(true);
1045                 break;
1046         case LFUN_MATH_MUTATE:
1047                 //flag.setOnOff(mathcursor::formula()->hullType() == to_utf8(cmd.argument()));
1048                 flag.setOnOff(false);
1049                 break;
1050
1051         // we just need to be in math mode to enable that
1052         case LFUN_MATH_SIZE:
1053         case LFUN_MATH_SPACE:
1054         case LFUN_MATH_LIMITS:
1055         case LFUN_MATH_NONUMBER:
1056         case LFUN_MATH_NUMBER:
1057         case LFUN_MATH_EXTERN:
1058                 flag.enabled(true);
1059                 break;
1060
1061         case LFUN_FONT_FRAK:
1062                 flag.enabled(currentMode() != TEXT_MODE);
1063                 break;
1064
1065         case LFUN_MATH_INSERT: {
1066                 bool const textarg =
1067                         arg == "\\textbf"   || arg == "\\textsf" ||
1068                         arg == "\\textrm"   || arg == "\\textmd" ||
1069                         arg == "\\textit"   || arg == "\\textsc" ||
1070                         arg == "\\textsl"   || arg == "\\textup" ||
1071                         arg == "\\texttt"   || arg == "\\textbb" ||
1072                         arg == "\\textnormal";
1073                 flag.enabled(currentMode() != TEXT_MODE || textarg);
1074                 break;
1075         }
1076
1077         case LFUN_MATH_MATRIX:
1078                 flag.enabled(currentMode() == MATH_MODE);
1079                 break;
1080
1081         case LFUN_INSET_INSERT: {
1082                 // Don't test createMathInset_fromDialogStr(), since
1083                 // getStatus is not called with a valid reference and the
1084                 // dialog would not be applyable.
1085                 string const name = cmd.getArg(0);
1086                 flag.enabled(name == "ref");
1087                 break;
1088         }
1089
1090         case LFUN_MATH_DELIM:
1091         case LFUN_MATH_BIGDELIM:
1092                 // Don't do this with multi-cell selections
1093                 flag.enabled(cur.selBegin().idx() == cur.selEnd().idx());
1094                 break;
1095
1096         case LFUN_HYPHENATION_POINT_INSERT:
1097         case LFUN_LIGATURE_BREAK_INSERT:
1098         case LFUN_MENU_SEPARATOR_INSERT:
1099         case LFUN_DOTS_INSERT:
1100         case LFUN_END_OF_SENTENCE_PERIOD_INSERT:
1101                 // FIXME: These would probably make sense in math-text mode
1102                 flag.enabled(false);
1103                 break;
1104
1105         default:
1106                 ret = false;
1107                 break;
1108         }
1109         return ret;
1110 }
1111
1112
1113 void InsetMathNest::edit(Cursor & cur, bool left)
1114 {
1115         cur.push(*this);
1116         cur.idx() = left ? 0 : cur.lastidx();
1117         cur.pos() = left ? 0 : cur.lastpos();
1118         cur.resetAnchor();
1119         //lyxerr << "InsetMathNest::edit, cur:\n" << cur << endl;
1120 }
1121
1122
1123 Inset * InsetMathNest::editXY(Cursor & cur, int x, int y)
1124 {
1125         int idx_min = 0;
1126         int dist_min = 1000000;
1127         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1128                 int const d = cell(i).dist(cur.bv(), x, y);
1129                 if (d < dist_min) {
1130                         dist_min = d;
1131                         idx_min = i;
1132                 }
1133         }
1134         MathData & ar = cell(idx_min);
1135         cur.push(*this);
1136         cur.idx() = idx_min;
1137         cur.pos() = ar.x2pos(x - ar.xo(cur.bv()));
1138
1139         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1140         if (dist_min == 0) {
1141                 // hit inside cell
1142                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1143                         if (ar[i]->covers(cur.bv(), x, y))
1144                                 return ar[i].nucleus()->editXY(cur, x, y);
1145         }
1146         return this;
1147 }
1148
1149
1150 void InsetMathNest::lfunMousePress(Cursor & cur, FuncRequest & cmd)
1151 {
1152         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1153         BufferView & bv = cur.bv();
1154         bv.mouseSetCursor(cur);
1155         if (cmd.button() == mouse_button::button1) {
1156                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1157                 // Update the cursor update flags as needed:
1158                 //
1159                 // Update::Decoration: tells to update the decoration
1160                 //                     (visual box corners that define
1161                 //                     the inset)/
1162                 // Update::FitCursor: adjust the screen to the cursor
1163                 //                    position if needed
1164                 // cur.result().update(): don't overwrite previously set flags.
1165                 cur.updateFlags(Update::Decoration | Update::FitCursor 
1166                                 | cur.result().update());
1167         } else if (cmd.button() == mouse_button::button2) {
1168                 if (cap::selection()) {
1169                         // See comment in Text::dispatch why we do this
1170                         cap::copySelectionToStack();
1171                         cmd = FuncRequest(LFUN_PASTE, "0");
1172                         doDispatch(bv.cursor(), cmd);
1173                 } else {
1174                         MathData ar;
1175                         asArray(theSelection().get(), ar);
1176                         bv.cursor().insert(ar);
1177                 }
1178         }
1179 }
1180
1181
1182 void InsetMathNest::lfunMouseMotion(Cursor & cur, FuncRequest & cmd)
1183 {
1184         // only select with button 1
1185         if (cmd.button() == mouse_button::button1) {
1186                 Cursor & bvcur = cur.bv().cursor();
1187                 if (bvcur.anchor_.hasPart(cur)) {
1188                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1189                         bvcur.setCursor(cur);
1190                         bvcur.selection() = true;
1191                         //lyxerr << "MOTION " << bvcur << endl;
1192                 } else
1193                         cur.undispatched();
1194         }
1195 }
1196
1197
1198 void InsetMathNest::lfunMouseRelease(Cursor & cur, FuncRequest & cmd)
1199 {
1200         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1201
1202         if (cmd.button() == mouse_button::button1) {
1203                 if (!cur.selection())
1204                         cur.noUpdate();
1205                 else {
1206                         Cursor & bvcur = cur.bv().cursor();
1207                         bvcur.selection() = true;
1208                 }
1209                 return;
1210         }
1211
1212         cur.undispatched();
1213 }
1214
1215
1216 bool InsetMathNest::interpretChar(Cursor & cur, char_type c)
1217 {
1218         //lyxerr << "interpret 2: '" << c << "'" << endl;
1219         docstring save_selection;
1220         if (c == '^' || c == '_')
1221                 save_selection = grabAndEraseSelection(cur);
1222
1223         cur.clearTargetX();
1224
1225         // handle macroMode
1226         if (cur.inMacroMode()) {
1227                 docstring name = cur.macroName();
1228
1229                 /// are we currently typing '#1' or '#2' or...?
1230                 if (name == "\\#") {
1231                         cur.backspace();
1232                         int n = c - '0';
1233                         if (n >= 1 && n <= 9)
1234                                 cur.insert(new MathMacroArgument(n));
1235                         return true;
1236                 }
1237
1238                 if (isAlphaASCII(c)) {
1239                         cur.activeMacro()->setName(name + docstring(1, c));
1240                         return true;
1241                 }
1242
1243                 // handle 'special char' macros
1244                 if (name == "\\") {
1245                         // remove the '\\'
1246                         if (c == '\\') {
1247                                 cur.backspace();
1248                                 if (currentMode() == InsetMath::TEXT_MODE)
1249                                         cur.niceInsert(createInsetMath("textbackslash"));
1250                                 else
1251                                         cur.niceInsert(createInsetMath("backslash"));
1252                         } else if (c == '{') {
1253                                 cur.backspace();
1254                                 cur.niceInsert(MathAtom(new InsetMathBrace));
1255                         } else if (c == '%') {
1256                                 cur.backspace();
1257                                 cur.niceInsert(MathAtom(new InsetMathComment));
1258                         } else if (c == '#') {
1259                                 BOOST_ASSERT(cur.activeMacro());
1260                                 cur.activeMacro()->setName(name + docstring(1, c));
1261                         } else {
1262                                 cur.backspace();
1263                                 cur.niceInsert(createInsetMath(docstring(1, c)));
1264                         }
1265                         return true;
1266                 }
1267
1268                 // One character big delimiters. The others are handled in
1269                 // interpretString().
1270                 latexkeys const * l = in_word_set(name.substr(1));
1271                 if (name[0] == '\\' && l && l->inset == "big") {
1272                         docstring delim;
1273                         switch (c) {
1274                         case '{':
1275                                 delim = from_ascii("\\{");
1276                                 break;
1277                         case '}':
1278                                 delim = from_ascii("\\}");
1279                                 break;
1280                         default:
1281                                 delim = docstring(1, c);
1282                                 break;
1283                         }
1284                         if (InsetMathBig::isBigInsetDelim(delim)) {
1285                                 // name + delim ared a valid InsetMathBig.
1286                                 // We can't use cur.macroModeClose() because
1287                                 // it does not handle delim.
1288                                 InsetMathUnknown * p = cur.activeMacro();
1289                                 p->finalize();
1290                                 --cur.pos();
1291                                 cur.cell().erase(cur.pos());
1292                                 cur.plainInsert(MathAtom(
1293                                         new InsetMathBig(name.substr(1), delim)));
1294                                 return true;
1295                         }
1296                 }
1297
1298                 // leave macro mode and try again if necessary
1299                 cur.macroModeClose();
1300                 if (c == '{')
1301                         cur.niceInsert(MathAtom(new InsetMathBrace));
1302                 else if (c != ' ')
1303                         interpretChar(cur, c);
1304                 return true;
1305         }
1306
1307         // This is annoying as one has to press <space> far too often.
1308         // Disable it.
1309
1310 #if 0
1311                 // leave autocorrect mode if necessary
1312                 if (autocorrect() && c == ' ') {
1313                         autocorrect() = false;
1314                         return true;
1315                 }
1316 #endif
1317
1318         // just clear selection on pressing the space bar
1319         if (cur.selection() && c == ' ') {
1320                 cur.selection() = false;
1321                 return true;
1322         }
1323
1324         selClearOrDel(cur);
1325
1326         if (c == '\\') {
1327                 //lyxerr << "starting with macro" << endl;
1328                 cur.insert(MathAtom(new InsetMathUnknown(from_ascii("\\"), false)));
1329                 return true;
1330         }
1331
1332         if (c == '\n') {
1333                 if (currentMode() == InsetMath::TEXT_MODE)
1334                         cur.insert(c);
1335                 return true;
1336         }
1337
1338         if (c == ' ') {
1339                 if (currentMode() == InsetMath::TEXT_MODE) {
1340                         // insert spaces in text mode,
1341                         // but suppress direct insertion of two spaces in a row
1342                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1343                         // it is better than nothing...
1344                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ') {
1345                                 cur.insert(c);
1346                                 // FIXME: we have to enable full redraw here because of the
1347                                 // visual box corners that define the inset. If we know for
1348                                 // sure that we stay within the same cell we can optimize for
1349                                 // that using:
1350                                 //cur.updateFlags(Update::SinglePar | Update::FitCursor);
1351                         }
1352                         return true;
1353                 }
1354                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1355                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1356                         // FIXME: we have to enable full redraw here because of the
1357                         // visual box corners that define the inset. If we know for
1358                         // sure that we stay within the same cell we can optimize for
1359                         // that using:
1360                         //cur.updateFlags(Update::SinglePar | Update::FitCursor);
1361                         return true;
1362                 }
1363
1364                 if (cur.popRight()) {
1365                         // FIXME: we have to enable full redraw here because of the
1366                         // visual box corners that define the inset. If we know for
1367                         // sure that we stay within the same cell we can optimize for
1368                         // that using:
1369                         //cur.updateFlags(Update::FitCursor);
1370                         return true;
1371                 }
1372
1373                 // if we are at the very end, leave the formula
1374                 return cur.pos() != cur.lastpos();
1375         }
1376
1377         // These shouldn't work in text mode:
1378         if (currentMode() != InsetMath::TEXT_MODE) {
1379                 if (c == '_') {
1380                         script(cur, false, save_selection);
1381                         return true;
1382                 }
1383                 if (c == '^') {
1384                         script(cur, true, save_selection);
1385                         return true;
1386                 }
1387                 if (c == '~') {
1388                         cur.niceInsert(createInsetMath("sim"));
1389                         return true;
1390                 }
1391         }
1392
1393         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' ||
1394             c == '%' || c == '_' || c == '^') {
1395                 cur.niceInsert(createInsetMath(docstring(1, c)));
1396                 return true;
1397         }
1398
1399
1400         // try auto-correction
1401         //if (autocorrect() && hasPrevAtom() && math_autocorrect(prevAtom(), c))
1402         //      return true;
1403
1404         // no special circumstances, so insert the character without any fuss
1405         cur.insert(c);
1406         cur.autocorrect() = true;
1407         return true;
1408 }
1409
1410
1411 bool InsetMathNest::interpretString(Cursor & cur, docstring const & str)
1412 {
1413         // Create a InsetMathBig from cur.cell()[cur.pos() - 1] and t if
1414         // possible
1415         if (!cur.empty() && cur.pos() > 0 &&
1416             cur.cell()[cur.pos() - 1]->asUnknownInset()) {
1417                 if (InsetMathBig::isBigInsetDelim(str)) {
1418                         docstring prev = asString(cur.cell()[cur.pos() - 1]);
1419                         if (prev[0] == '\\') {
1420                                 prev = prev.substr(1);
1421                                 latexkeys const * l = in_word_set(prev);
1422                                 if (l && l->inset == "big") {
1423                                         cur.cell()[cur.pos() - 1] =
1424                                                 MathAtom(new InsetMathBig(prev, str));
1425                                         return true;
1426                                 }
1427                         }
1428                 }
1429         }
1430         return false;
1431 }
1432
1433
1434 bool InsetMathNest::script(Cursor & cur, bool up,
1435                 docstring const & save_selection)
1436 {
1437         // Hack to get \^ and \_ working
1438         //lyxerr << "handling script: up: " << up << endl;
1439         if (cur.inMacroMode() && cur.macroName() == "\\") {
1440                 if (up)
1441                         cur.niceInsert(createInsetMath("mathcircumflex"));
1442                 else
1443                         interpretChar(cur, '_');
1444                 return true;
1445         }
1446
1447         cur.macroModeClose();
1448         if (asScriptInset() && cur.idx() == 0) {
1449                 // we are in a nucleus of a script inset, move to _our_ script
1450                 InsetMathScript * inset = asScriptInset();
1451                 //lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1452                 inset->ensure(up);
1453                 cur.idx() = inset->idxOfScript(up);
1454                 cur.pos() = 0;
1455         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1456                 --cur.pos();
1457                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1458                 cur.push(*inset);
1459                 inset->ensure(up);
1460                 cur.idx() = inset->idxOfScript(up);
1461                 cur.pos() = cur.lastpos();
1462         } else {
1463                 // convert the thing to our left to a scriptinset or create a new
1464                 // one if in the very first position of the array
1465                 if (cur.pos() == 0) {
1466                         //lyxerr << "new scriptinset" << endl;
1467                         cur.insert(new InsetMathScript(up));
1468                 } else {
1469                         //lyxerr << "converting prev atom " << endl;
1470                         cur.prevAtom() = MathAtom(new InsetMathScript(cur.prevAtom(), up));
1471                 }
1472                 --cur.pos();
1473                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1474                 // See comment in MathParser.cpp for special handling of {}-bases
1475
1476                 cur.push(*inset);
1477                 cur.idx() = 1;
1478                 cur.pos() = 0;
1479         }
1480         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1481         cur.niceInsert(save_selection);
1482         cur.resetAnchor();
1483         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1484         return true;
1485 }
1486
1487
1488 } // namespace lyx