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