]> git.lyx.org Git - lyx.git/blob - src/mathed/math_nestinset.C
Fix bug 886 and others not reported related with the document paper size.
[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::cursorPos(CursorSlice const & sl, bool boundary,
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                 cur.undispatched();
615                 break;
616
617         case LFUN_ESCAPE:
618                 if (cur.selection())
619                         cur.clearSelection();
620                 else  {
621                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
622                         cur.undispatched();
623                 }
624                 break;
625
626         case LFUN_INSET_TOGGLE:
627                 recordUndo(cur);
628                 //lockToggle();
629                 if (cur.pos() != cur.lastpos()) {
630                         // toggle previous inset ...
631                         cur.nextAtom().nucleus()->lock(!cur.nextAtom()->lock());
632                 } else if (cur.popLeft() && cur.pos() != cur.lastpos()) {
633                         // ... or enclosing inset if we are in the last inset position
634                         cur.nextAtom().nucleus()->lock(!cur.nextAtom()->lock());
635                         ++cur.pos();
636                 }
637                 break;
638
639         case LFUN_SELFINSERT:
640                 recordUndo(cur);
641                 if (cmd.argument.size() != 1) {
642                         cur.insert(cmd.argument);
643                         break;
644                 }
645                 if (!interpret(cur, cmd.argument[0]))
646                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
647                 break;
648
649         //case LFUN_GETXY:
650         //      sprintf(dispatch_buffer, "%d %d",);
651         //      break;
652
653         case LFUN_SETXY: {
654                 lyxerr << "LFUN_SETXY broken!" << endl;
655                 int x = 0;
656                 int y = 0;
657                 istringstream is(cmd.argument);
658                 is >> x >> y;
659                 cur.setScreenPos(x, y);
660                 break;
661         }
662
663         // Special casing for superscript in case of LyX handling
664         // dead-keys:
665         case LFUN_CIRCUMFLEX:
666                 if (cmd.argument.empty()) {
667                         // do superscript if LyX handles
668                         // deadkeys
669                         recordUndo(cur, Undo::ATOMIC);
670                         script(cur, true);
671                 }
672                 break;
673
674         case LFUN_UMLAUT:
675         case LFUN_ACUTE:
676         case LFUN_GRAVE:
677         case LFUN_BREVE:
678         case LFUN_DOT:
679         case LFUN_MACRON:
680         case LFUN_CARON:
681         case LFUN_TILDE:
682         case LFUN_CEDILLA:
683         case LFUN_CIRCLE:
684         case LFUN_UNDERDOT:
685         case LFUN_TIE:
686         case LFUN_OGONEK:
687         case LFUN_HUNG_UMLAUT:
688                 break;
689
690         //  Math fonts
691         case LFUN_FREEFONT_APPLY:
692         case LFUN_FREEFONT_UPDATE:
693                 handleFont2(cur, cmd.argument);
694                 break;
695
696         case LFUN_BOLD:
697                 if (currentMode() == TEXT_MODE)
698                         handleFont(cur, cmd.argument, "textbf");
699                 else
700                         handleFont(cur, cmd.argument, "mathbf");
701                 break;
702         case LFUN_SANS:
703                 if (currentMode() == TEXT_MODE)
704                         handleFont(cur, cmd.argument, "textsf");
705                 else
706                         handleFont(cur, cmd.argument, "mathsf");
707                 break;
708         case LFUN_EMPH:
709                 if (currentMode() == TEXT_MODE)
710                         handleFont(cur, cmd.argument, "emph");
711                 else
712                         handleFont(cur, cmd.argument, "mathcal");
713                 break;
714         case LFUN_ROMAN:
715                 if (currentMode() == TEXT_MODE)
716                         handleFont(cur, cmd.argument, "textrm");
717                 else
718                         handleFont(cur, cmd.argument, "mathrm");
719                 break;
720         case LFUN_CODE:
721                 if (currentMode() == TEXT_MODE)
722                         handleFont(cur, cmd.argument, "texttt");
723                 else
724                         handleFont(cur, cmd.argument, "mathtt");
725                 break;
726         case LFUN_FRAK:
727                 handleFont(cur, cmd.argument, "mathfrak");
728                 break;
729         case LFUN_ITAL:
730                 if (currentMode() == TEXT_MODE)
731                         handleFont(cur, cmd.argument, "textit");
732                 else
733                         handleFont(cur, cmd.argument, "mathit");
734                 break;
735         case LFUN_NOUN:
736                 if (currentMode() == TEXT_MODE)
737                         // FIXME: should be "noun"
738                         handleFont(cur, cmd.argument, "textsc");
739                 else
740                         handleFont(cur, cmd.argument, "mathbb");
741                 break;
742         //case LFUN_FREEFONT_APPLY:
743                 handleFont(cur, cmd.argument, "textrm");
744                 break;
745         case LFUN_DEFAULT:
746                 handleFont(cur, cmd.argument, "textnormal");
747                 break;
748
749         case LFUN_MATH_MODE:
750 #if 1
751                 // ignore math-mode on when already in math mode
752                 if (currentMode() == InsetBase::MATH_MODE && cmd.argument == "on")
753                         break;
754                 cur.macroModeClose();
755                 selClearOrDel(cur);
756                 //cur.plainInsert(MathAtom(new MathMBoxInset(cur.bv())));
757                 cur.plainInsert(MathAtom(new MathBoxInset("mbox")));
758                 cur.posLeft();
759                 cur.pushLeft(*cur.nextInset());
760 #else
761                 if (currentMode() == InsetBase::TEXT_MODE) {
762                         cur.niceInsert(MathAtom(new MathHullInset("simple")));
763                         cur.message(_("create new math text environment ($...$)"));
764                 } else {
765                         handleFont(cur, cmd.argument, "textrm");
766                         cur.message(_("entered math text mode (textrm)"));
767                 }
768 #endif
769                 break;
770
771         case LFUN_MATH_SIZE:
772 #if 0
773                 recordUndo(cur);
774                 cur.setSize(arg);
775 #endif
776                 break;
777
778         case LFUN_INSERT_MATRIX: {
779                 recordUndo(cur, Undo::ATOMIC);
780                 unsigned int m = 1;
781                 unsigned int n = 1;
782                 string v_align;
783                 string h_align;
784                 istringstream is(cmd.argument);
785                 is >> m >> n >> v_align >> h_align;
786                 if (m < 1)
787                         m = 1;
788                 if (n < 1)
789                         n = 1;
790                 v_align += 'c';
791                 cur.niceInsert(
792                         MathAtom(new MathArrayInset("array", m, n, v_align[0], h_align)));
793                 break;
794         }
795
796         case LFUN_MATH_DELIM: {
797                 lyxerr << "MathNestInset::LFUN_MATH_DELIM" << endl;
798                 string ls;
799                 string rs = lyx::support::split(cmd.argument, ls, ' ');
800                 // Reasonable default values
801                 if (ls.empty())
802                         ls = '(';
803                 if (rs.empty())
804                         rs = ')';
805                 recordUndo(cur, Undo::ATOMIC);
806                 cur.handleNest(MathAtom(new MathDelimInset(ls, rs)));
807                 break;
808         }
809
810         case LFUN_SPACE_INSERT:
811         case LFUN_MATH_SPACE:
812                 recordUndo(cur, Undo::ATOMIC);
813                 cur.insert(MathAtom(new MathSpaceInset(",")));
814                 break;
815
816         case LFUN_INSET_ERT:
817                 // interpret this as if a backslash was typed
818                 recordUndo(cur, Undo::ATOMIC);
819                 interpret(cur, '\\');
820                 break;
821
822         case LFUN_SUBSCRIPT:
823                 // interpret this as if a _ was typed
824                 recordUndo(cur, Undo::ATOMIC);
825                 interpret(cur, '_');
826                 break;
827
828         case LFUN_SUPERSCRIPT:
829                 // interpret this as if a ^ was typed
830                 recordUndo(cur, Undo::ATOMIC);
831                 interpret(cur, '^');
832                 break;
833
834 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
835 // handling such that "self-insert" works on "arbitrary stuff" too, and
836 // math-insert only handles special math things like "matrix".
837         case LFUN_INSERT_MATH: {
838                 recordUndo(cur, Undo::ATOMIC);
839                 MathArray ar;
840                 asArray(cmd.argument, ar);
841                 int cell(0);
842                 if (cmd.argument == "\\root")
843                         cell = 1;
844                 if (ar.size() == 1 && (ar[0].nucleus()->asNestInset())) {
845                         cur.handleNest(ar[0], cell);
846                 } else
847                         cur.niceInsert(cmd.argument);
848                 break;
849                 }
850
851         case LFUN_DIALOG_SHOW_NEW_INSET: {
852                 string const & name = cmd.argument;
853                 string data;
854 #if 0
855                 if (name == "ref") {
856                         RefInset tmp(name);
857                         data = tmp.createDialogStr(name);
858                 }
859 #endif
860                 cur.bv().owner()->getDialogs().show(name, data, 0);
861                 break;
862         }
863
864         case LFUN_INSET_APPLY: {
865                 string const name = cmd.getArg(0);
866                 InsetBase * base = cur.bv().owner()->getDialogs().getOpenInset(name);
867
868                 if (base) {
869                         FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument);
870                         base->dispatch(cur, fr);
871                         break;
872                 }
873                 MathArray ar;
874                 if (createMathInset_fromDialogStr(cmd.argument, ar)) {
875                         cur.insert(ar);
876                         break;
877                 }
878                 cur.undispatched();
879                 break;
880         }
881
882         default:
883                 MathDimInset::doDispatch(cur, cmd);
884                 break;
885         }
886 }
887
888
889 bool MathNestInset::getStatus(LCursor & /*cur*/, FuncRequest const & cmd,
890                 FuncStatus & flag) const
891 {
892         // the font related toggles
893         //string tc = "mathnormal";
894         bool ret = true;
895         string const arg = cmd.argument;
896         switch (cmd.action) {
897         case LFUN_TABULAR_FEATURE:
898                 flag.enabled(false);
899                 break;
900 #if 0
901         case LFUN_TABULAR_FEATURE:
902                 // FIXME: check temporarily disabled
903                 // valign code
904                 char align = mathcursor::valign();
905                 if (align == '\0') {
906                         enable = false;
907                         break;
908                 }
909                 if (cmd.argument.empty()) {
910                         flag.clear();
911                         break;
912                 }
913                 if (!contains("tcb", cmd.argument[0])) {
914                         enable = false;
915                         break;
916                 }
917                 flag.setOnOff(cmd.argument[0] == align);
918                 break;
919 #endif
920         /// We have to handle them since 1.4 blocks all unhandled actions
921         case LFUN_ITAL:
922         case LFUN_BOLD:
923         case LFUN_SANS:
924         case LFUN_EMPH:
925         case LFUN_CODE:
926         case LFUN_NOUN:
927         case LFUN_ROMAN:
928         case LFUN_DEFAULT:
929                 flag.enabled(true);
930                 break;
931         case LFUN_MATH_MUTATE:
932                 //flag.setOnOff(mathcursor::formula()->hullType() == cmd.argument);
933                 flag.setOnOff(false);
934                 break;
935
936         // we just need to be in math mode to enable that
937         case LFUN_MATH_SIZE:
938         case LFUN_MATH_SPACE:
939         case LFUN_MATH_LIMITS:
940         case LFUN_MATH_NONUMBER:
941         case LFUN_MATH_NUMBER:
942         case LFUN_MATH_EXTERN:
943                 flag.enabled(true);
944                 break;
945
946         case LFUN_FRAK:
947                 flag.enabled(currentMode() != TEXT_MODE);
948                 break;
949
950         case LFUN_INSERT_MATH: {
951                 bool const textarg =
952                         arg == "\\textbf"   || arg == "\\textsf" ||
953                         arg == "\\textrm"   || arg == "\\textmd" ||
954                         arg == "\\textit"   || arg == "\\textsc" ||
955                         arg == "\\textsl"   || arg == "\\textup" ||
956                         arg == "\\texttt"   || arg == "\\textbb" ||
957                         arg == "\\textnormal";
958                 flag.enabled(currentMode() != TEXT_MODE || textarg);
959                 break;
960         }
961
962         case LFUN_INSERT_MATRIX:
963                 flag.enabled(currentMode() == MATH_MODE);
964                 break;
965         default:
966                 ret = false;
967                 break;
968         }
969         return ret;
970 }
971
972
973 void MathNestInset::edit(LCursor & cur, bool left)
974 {
975         cur.push(*this);
976         cur.idx() = left ? 0 : cur.lastidx();
977         cur.pos() = left ? 0 : cur.lastpos();
978         cur.resetAnchor();
979         //lyxerr << "MathNestInset::edit, cur:\n" << cur << endl;
980 }
981
982
983 InsetBase * MathNestInset::editXY(LCursor & cur, int x, int y)
984 {
985         int idx_min = 0;
986         int dist_min = 1000000;
987         for (idx_type i = 0, n = nargs(); i != n; ++i) {
988                 int const d = cell(i).dist(x, y);
989                 if (d < dist_min) {
990                         dist_min = d;
991                         idx_min = i;
992                 }
993         }
994         MathArray & ar = cell(idx_min);
995         cur.push(*this);
996         cur.idx() = idx_min;
997         cur.pos() = ar.x2pos(x - ar.xo());
998         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
999         if (dist_min == 0) {
1000                 // hit inside cell
1001                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1002                         if (ar[i]->covers(x, y))
1003                                 return ar[i].nucleus()->editXY(cur, x, y);
1004         }
1005         return this;
1006 }
1007
1008
1009 void MathNestInset::lfunMousePress(LCursor & cur, FuncRequest & cmd)
1010 {
1011         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1012         if (cmd.button() == mouse_button::button1) {
1013                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1014                 cur.resetAnchor();
1015                 cur.bv().cursor() = cur;
1016         }
1017
1018         if (cmd.button() == mouse_button::button2) {
1019                 cur.dispatch(FuncRequest(LFUN_PASTESELECTION));
1020         }
1021 }
1022
1023
1024 void MathNestInset::lfunMouseMotion(LCursor & cur, FuncRequest & cmd)
1025 {
1026         // only select with button 1
1027         if (cmd.button() == mouse_button::button1) {
1028                 LCursor & bvcur = cur.bv().cursor();
1029                 if (bvcur.anchor_.hasPart(cur)) {
1030                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1031                         bvcur.setCursor(cur);
1032                         bvcur.selection() = true;
1033                         //lyxerr << "MOTION " << bvcur << endl;
1034                 }
1035                 else {
1036                         cur.undispatched();
1037                 }
1038         }
1039 }
1040
1041
1042 void MathNestInset::lfunMouseRelease(LCursor & cur, FuncRequest & cmd)
1043 {
1044         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1045
1046         if (cmd.button() == mouse_button::button1) {
1047                 //cur.bv().stuffClipboard(cur.grabSelection());
1048                 return;
1049         }
1050
1051         if (cmd.button() == mouse_button::button2) {
1052                 MathArray ar;
1053                 asArray(cur.bv().getClipboard(), ar);
1054                 cur.clearSelection();
1055                 cur.setScreenPos(cmd.x, cmd.y);
1056                 cur.insert(ar);
1057                 cur.bv().update();
1058                 return;
1059         }
1060
1061         if (cmd.button() == mouse_button::button3) {
1062                 // try to dispatch to enclosed insets first
1063                 cur.bv().owner()->getDialogs().show("mathpanel");
1064                 return;
1065         }
1066
1067         cur.undispatched();
1068 }
1069
1070
1071 bool MathNestInset::interpret(LCursor & cur, char c)
1072 {
1073         //lyxerr << "interpret 2: '" << c << "'" << endl;
1074         cur.clearTargetX();
1075
1076         // handle macroMode
1077         if (cur.inMacroMode()) {
1078                 string name = cur.macroName();
1079
1080                 /// are we currently typing '#1' or '#2' or...?
1081                 if (name == "\\#") {
1082                         cur.backspace();
1083                         int n = c - '0';
1084                         if (n >= 1 && n <= 9)
1085                                 cur.insert(new MathMacroArgument(n));
1086                         return true;
1087                 }
1088
1089                 if (isalpha(c)) {
1090                         cur.activeMacro()->setName(name + c);
1091                         return true;
1092                 }
1093
1094                 // handle 'special char' macros
1095                 if (name == "\\") {
1096                         // remove the '\\'
1097                         if (c == '\\') {
1098                                 cur.backspace();
1099                                 if (currentMode() == MathInset::TEXT_MODE)
1100                                         cur.niceInsert(createMathInset("textbackslash"));
1101                                 else
1102                                         cur.niceInsert(createMathInset("backslash"));
1103                         } else if (c == '{') {
1104                                 cur.backspace();
1105                                 cur.niceInsert(MathAtom(new MathBraceInset));
1106                         } else if (c == '%') {
1107                                 cur.backspace();
1108                                 cur.niceInsert(MathAtom(new MathCommentInset));
1109                         } else if (c == '#') {
1110                                 BOOST_ASSERT(cur.activeMacro());
1111                                 cur.activeMacro()->setName(name + c);
1112                         } else {
1113                                 cur.backspace();
1114                                 cur.niceInsert(createMathInset(string(1, c)));
1115                         }
1116                         return true;
1117                 }
1118
1119                 // leave macro mode and try again if necessary
1120                 cur.macroModeClose();
1121                 if (c == '{')
1122                         cur.niceInsert(MathAtom(new MathBraceInset));
1123                 else if (c != ' ')
1124                         interpret(cur, c);
1125                 return true;
1126         }
1127
1128         // This is annoying as one has to press <space> far too often.
1129         // Disable it.
1130
1131 #if 0
1132                 // leave autocorrect mode if necessary
1133                 if (autocorrect() && c == ' ') {
1134                         autocorrect() = false;
1135                         return true;
1136                 }
1137 #endif
1138
1139         // just clear selection on pressing the space bar
1140         if (cur.selection() && c == ' ') {
1141                 cur.selection() = false;
1142                 return true;
1143         }
1144
1145         selClearOrDel(cur);
1146
1147         if (c == '\\') {
1148                 //lyxerr << "starting with macro" << endl;
1149                 cur.insert(MathAtom(new MathUnknownInset("\\", false)));
1150                 return true;
1151         }
1152
1153         if (c == '\n') {
1154                 if (currentMode() == MathInset::TEXT_MODE)
1155                         cur.insert(c);
1156                 return true;
1157         }
1158
1159         if (c == ' ') {
1160                 if (currentMode() == MathInset::TEXT_MODE) {
1161                         // insert spaces in text mode,
1162                         // but suppress direct insertion of two spaces in a row
1163                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1164                         // it is better than nothing...
1165                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ')
1166                                 cur.insert(c);
1167                         return true;
1168                 }
1169                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1170                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1171                         return true;
1172                 }
1173                 if (cur.popRight())
1174                         return true;
1175                 // if are at the very end, leave the formula
1176                 return cur.pos() != cur.lastpos();
1177         }
1178
1179         // These shouldn't work in text mode:
1180         if (currentMode() != MathInset::TEXT_MODE) {
1181                 if (c == '_') {
1182                         script(cur, false);
1183                         return true;
1184                 }
1185                 if (c == '^') {
1186                         script(cur, true);
1187                         return true;
1188                 }
1189                 if (c == '~') {
1190                         cur.niceInsert(createMathInset("sim"));
1191                         return true;
1192                 }
1193         }
1194
1195         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' || c == '%'
1196       || c == '_' || c == '^') {
1197                 cur.niceInsert(createMathInset(string(1, c)));
1198                 return true;
1199         }
1200
1201
1202         // try auto-correction
1203         //if (autocorrect() && hasPrevAtom() && math_autocorrect(prevAtom(), c))
1204         //      return true;
1205
1206         // no special circumstances, so insert the character without any fuss
1207         cur.insert(c);
1208         cur.autocorrect() = true;
1209         return true;
1210 }
1211
1212
1213 bool MathNestInset::script(LCursor & cur, bool up)
1214 {
1215         // Hack to get \^ and \_ working
1216         lyxerr << "handling script: up: " << up << endl;
1217         if (cur.inMacroMode() && cur.macroName() == "\\") {
1218                 if (up)
1219                         cur.niceInsert(createMathInset("mathcircumflex"));
1220                 else
1221                         interpret(cur, '_');
1222                 return true;
1223         }
1224
1225         cur.macroModeClose();
1226         string safe = grabAndEraseSelection(cur);
1227         if (asScriptInset() && cur.idx() == 0) {
1228                 // we are in a nucleus of a script inset, move to _our_ script
1229                 MathScriptInset * inset = asScriptInset();
1230                 lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1231                 inset->ensure(up);
1232                 cur.idx() = inset->idxOfScript(up);
1233                 cur.pos() = 0;
1234         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1235                 --cur.pos();
1236                 MathScriptInset * inset = cur.nextAtom().nucleus()->asScriptInset();
1237                 cur.push(*inset);
1238                 cur.idx() = inset->idxOfScript(up);
1239                 cur.pos() = cur.lastpos();
1240         } else {
1241                 // convert the thing to our left to a scriptinset or create a new
1242                 // one if in the very first position of the array
1243                 if (cur.pos() == 0) {
1244                         //lyxerr << "new scriptinset" << endl;
1245                         cur.insert(new MathScriptInset(up));
1246                 } else {
1247                         //lyxerr << "converting prev atom " << endl;
1248                         cur.prevAtom() = MathAtom(new MathScriptInset(cur.prevAtom(), up));
1249                 }
1250                 --cur.pos();
1251                 MathScriptInset * inset = cur.nextAtom().nucleus()->asScriptInset();
1252                 cur.push(*inset);
1253                 cur.idx() = 1;
1254                 cur.pos() = 0;
1255         }
1256         //lyxerr << "pasting 1: safe:\n" << safe << endl;
1257         cur.paste(safe);
1258         cur.resetAnchor();
1259         //lyxerr << "pasting 2: safe:\n" << safe << endl;
1260         return true;
1261 }