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