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