]> git.lyx.org Git - lyx.git/blob - src/mathed/math_nestinset.C
e5b88bab5e2b61266bb6a5b412391100277d32cb
[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 #include "ref_inset.h"
34
35 #include "BufferView.h"
36 #include "CutAndPaste.h"
37 #include "FuncStatus.h"
38 #include "LColor.h"
39 #include "bufferview_funcs.h"
40 #include "coordcache.h"
41 #include "cursor.h"
42 #include "debug.h"
43 #include "dispatchresult.h"
44 #include "funcrequest.h"
45 #include "gettext.h"
46 #include "outputparams.h"
47 #include "undo.h"
48
49 #include "support/lstrings.h"
50
51 #include "frontends/Dialogs.h"
52 #include "frontends/LyXView.h"
53 #include "frontends/Painter.h"
54
55 #include <sstream>
56
57 using lyx::cap::copySelection;
58 using lyx::cap::grabAndEraseSelection;
59 using lyx::cap::cutSelection;
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                 string const selection = lyx::cap::getSelection(cur.buffer(), n);
419                 cur.niceInsert(selection);
420                 cur.clearSelection(); // bug 393
421                 cur.bv().switchKeyMap();
422                 finishUndo();
423                 break;
424         }
425
426         case LFUN_CUT:
427                 recordUndo(cur);
428                 cutSelection(cur, true, true);
429                 cur.message(_("Cut"));
430                 // Prevent stale position >= size crash
431                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
432                 cur.normalize();
433                 break;
434
435         case LFUN_COPY:
436                 copySelection(cur);
437                 cur.message(_("Copy"));
438                 break;
439
440         case LFUN_MOUSE_PRESS:
441                 lfunMousePress(cur, cmd);
442                 break;
443
444         case LFUN_MOUSE_MOTION:
445                 lfunMouseMotion(cur, cmd);
446                 break;
447
448         case LFUN_MOUSE_RELEASE:
449                 lfunMouseRelease(cur, cmd);
450                 break;
451
452         case LFUN_FINISHED_LEFT:
453                 cur.bv().cursor() = cur;
454                 break;
455
456         case LFUN_FINISHED_RIGHT:
457                 ++cur.pos();
458                 cur.bv().cursor() = cur;
459                 break;
460
461         case LFUN_FINISHED_UP:
462                 cur.bv().cursor() = cur;
463                 break;
464
465         case LFUN_FINISHED_DOWN:
466                 ++cur.pos();
467                 cur.bv().cursor() = cur;
468                 break;
469
470         case LFUN_RIGHTSEL:
471         case LFUN_RIGHT:
472                 cur.selHandle(cmd.action == LFUN_RIGHTSEL);
473                 cur.autocorrect() = false;
474                 cur.clearTargetX();
475                 cur.macroModeClose();
476                 if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
477                         cur.pushLeft(*cur.nextAtom().nucleus());
478                         cur.inset().idxFirst(cur);
479                 } else if (cur.posRight() || idxRight(cur)
480                         || cur.popRight() || cur.selection())
481                         ;
482                 else {
483                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
484                         cur.undispatched();
485                 }
486                 break;
487
488         case LFUN_LEFTSEL:
489         case LFUN_LEFT:
490                 cur.selHandle(cmd.action == LFUN_LEFTSEL);
491                 cur.autocorrect() = false;
492                 cur.clearTargetX();
493                 cur.macroModeClose();
494                 if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
495                         cur.posLeft();
496                         cur.push(*cur.nextAtom().nucleus());
497                         cur.inset().idxLast(cur);
498                 } else if (cur.posLeft() || idxLeft(cur)
499                         || cur.popLeft() || cur.selection())
500                         ;
501                 else {
502                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
503                         cur.undispatched();
504                 }
505                 break;
506
507         case LFUN_UPSEL:
508         case LFUN_UP:
509                 // FIXME Tried to use clearTargetX and macroModeClose, crashed on cur.up()
510                 if (cur.inMacroMode()) {
511                         // Make Helge happy
512                         cur.macroModeClose();
513                         break;
514                 }
515                 cur.selHandle(cmd.action == LFUN_UPSEL);
516                 if (!cur.up()) {
517                         cmd = FuncRequest(LFUN_FINISHED_UP);
518                         cur.undispatched();
519                 }
520                 // fixes bug 1598. Please check!
521                 cur.normalize();
522                 break;
523
524         case LFUN_DOWNSEL:
525         case LFUN_DOWN:
526                 if (cur.inMacroMode()) {
527                         cur.macroModeClose();
528                         break;
529                 }
530                 cur.selHandle(cmd.action == LFUN_DOWNSEL);
531                 if (!cur.down()) {
532                         cmd = FuncRequest(LFUN_FINISHED_DOWN);
533                         cur.undispatched();
534                 }
535                 // fixes bug 1598. Please check!
536                 cur.normalize();
537                 break;
538
539         case LFUN_MOUSE_DOUBLE:
540         case LFUN_MOUSE_TRIPLE:
541         case LFUN_WORDSEL:
542                 cur.pos() = 0;
543                 cur.idx() = 0;
544                 cur.resetAnchor();
545                 cur.selection() = true;
546                 cur.pos() = cur.lastpos();
547                 cur.idx() = cur.lastidx();
548                 break;
549
550         case LFUN_UP_PARAGRAPHSEL:
551         case LFUN_UP_PARAGRAPH:
552         case LFUN_DOWN_PARAGRAPHSEL:
553         case LFUN_DOWN_PARAGRAPH:
554                 break;
555
556         case LFUN_HOMESEL:
557         case LFUN_HOME:
558         case LFUN_WORDLEFTSEL:
559         case LFUN_WORDLEFT:
560                 cur.selHandle(cmd.action == LFUN_WORDLEFTSEL || cmd.action == LFUN_HOMESEL);
561                 cur.macroModeClose();
562                 if (cur.pos() != 0) {
563                         cur.pos() = 0;
564                 } else if (cur.col() != 0) {
565                         cur.idx() -= cur.col();
566                         cur.pos() = 0;
567                 } else if (cur.idx() != 0) {
568                         cur.idx() = 0;
569                         cur.pos() = 0;
570                 } else {
571                         cmd = FuncRequest(LFUN_FINISHED_LEFT);
572                         cur.undispatched();
573                 }
574                 break;
575
576         case LFUN_WORDRIGHTSEL:
577         case LFUN_WORDRIGHT:
578         case LFUN_ENDSEL:
579         case LFUN_END:
580                 cur.selHandle(cmd.action == LFUN_WORDRIGHTSEL || cmd.action == LFUN_ENDSEL);
581                 cur.macroModeClose();
582                 cur.clearTargetX();
583                 if (cur.pos() != cur.lastpos()) {
584                         cur.pos() = cur.lastpos();
585                 } else if (ncols() && (cur.col() != cur.lastcol())) {
586                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
587                         cur.pos() = cur.lastpos();
588                 } else if (cur.idx() != cur.lastidx()) {
589                         cur.idx() = cur.lastidx();
590                         cur.pos() = cur.lastpos();
591                 } else {
592                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
593                         cur.undispatched();
594                 }
595                 break;
596
597         case LFUN_PRIORSEL:
598         case LFUN_PRIOR:
599                 cmd = FuncRequest(LFUN_FINISHED_LEFT);
600                 cur.undispatched();
601                 break;
602
603         case LFUN_NEXTSEL:
604         case LFUN_NEXT:
605                 cmd = FuncRequest(LFUN_FINISHED_RIGHT);
606                 cur.undispatched();
607                 break;
608
609         case LFUN_CELL_FORWARD:
610                 cur.inset().idxNext(cur);
611                 break;
612
613         case LFUN_CELL_BACKWARD:
614                 cur.inset().idxPrev(cur);
615                 break;
616
617         case LFUN_DELETE_WORD_BACKWARD:
618         case LFUN_BACKSPACE:
619                 if (cur.pos() == 0)
620                         // delete whole cell
621                         recordUndoInset(cur, Undo::ATOMIC);
622                 else
623                         recordUndo(cur, Undo::ATOMIC);
624                 cur.backspace();
625                 break;
626
627         case LFUN_DELETE_WORD_FORWARD:
628         case LFUN_DELETE:
629                 recordUndo(cur);
630                 cur.erase();
631                 break;
632
633         case LFUN_ESCAPE:
634                 if (cur.selection())
635                         cur.clearSelection();
636                 else  {
637                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
638                         cur.undispatched();
639                 }
640                 break;
641
642         case LFUN_INSET_TOGGLE:
643                 recordUndo(cur);
644                 //lockToggle();
645                 if (cur.pos() != cur.lastpos()) {
646                         // toggle previous inset ...
647                         cur.nextAtom().nucleus()->lock(!cur.nextAtom()->lock());
648                 } else if (cur.popLeft() && cur.pos() != cur.lastpos()) {
649                         // ... or enclosing inset if we are in the last inset position
650                         cur.nextAtom().nucleus()->lock(!cur.nextAtom()->lock());
651                         ++cur.pos();
652                 }
653                 break;
654
655         case LFUN_SELFINSERT:
656                 if (cmd.argument.size() != 1) {
657                         recordUndo(cur);
658                         cur.insert(cmd.argument);
659                         break;
660                 }
661                 // Don't record undo steps if we are in macro mode and
662                 // cmd.argument is the next character of the macro name.
663                 // Otherwise we'll get an invalid cursor if we undo after
664                 // the macro was finished and the macro is a known command,
665                 // e.g. sqrt. LCursor::macroModeClose replaces in this case
666                 // the MathUnknownInset with name "frac" by an empty
667                 // MathFracInset -> a pos value > 0 is invalid.
668                 // A side effect is that an undo before the macro is finished
669                 // undoes the complete macro, not only the last character.
670                 if (!cur.inMacroMode())
671                         recordUndo(cur);
672
673                 // spacial handling of space. If we insert an inset
674                 // via macro mode, we want to put the cursor inside it
675                 // if relevant. Think typing "\frac<space>".
676                 if (cmd.argument[0] == ' ' 
677                     && cur.inMacroMode() && cur.macroName() != "\\"
678                     && cur.macroModeClose()) {
679                         MathAtom const atom = cur.prevAtom();
680                         if (atom->asNestInset() && atom->nargs() > 0) {
681                                 cur.posLeft();
682                                 cur.pushLeft(*cur.nextInset());
683                         }
684                 } else if (!interpret(cur, cmd.argument[0])) {
685                         cmd = FuncRequest(LFUN_FINISHED_RIGHT);
686                         cur.undispatched();
687                 }
688                 break;
689
690         //case LFUN_GETXY:
691         //      sprintf(dispatch_buffer, "%d %d",);
692         //      break;
693
694         case LFUN_SETXY: {
695                 lyxerr << "LFUN_SETXY broken!" << endl;
696                 int x = 0;
697                 int y = 0;
698                 istringstream is(cmd.argument);
699                 is >> x >> y;
700                 cur.setScreenPos(x, y);
701                 break;
702         }
703
704         // Special casing for superscript in case of LyX handling
705         // dead-keys:
706         case LFUN_CIRCUMFLEX:
707                 if (cmd.argument.empty()) {
708                         // do superscript if LyX handles
709                         // deadkeys
710                         recordUndo(cur, Undo::ATOMIC);
711                         script(cur, true);
712                 }
713                 break;
714
715         case LFUN_UMLAUT:
716         case LFUN_ACUTE:
717         case LFUN_GRAVE:
718         case LFUN_BREVE:
719         case LFUN_DOT:
720         case LFUN_MACRON:
721         case LFUN_CARON:
722         case LFUN_TILDE:
723         case LFUN_CEDILLA:
724         case LFUN_CIRCLE:
725         case LFUN_UNDERDOT:
726         case LFUN_TIE:
727         case LFUN_OGONEK:
728         case LFUN_HUNG_UMLAUT:
729                 break;
730
731         //  Math fonts
732         case LFUN_FREEFONT_APPLY:
733         case LFUN_FREEFONT_UPDATE:
734                 handleFont2(cur, cmd.argument);
735                 break;
736
737         case LFUN_BOLD:
738                 if (currentMode() == TEXT_MODE)
739                         handleFont(cur, cmd.argument, "textbf");
740                 else
741                         handleFont(cur, cmd.argument, "mathbf");
742                 break;
743         case LFUN_SANS:
744                 if (currentMode() == TEXT_MODE)
745                         handleFont(cur, cmd.argument, "textsf");
746                 else
747                         handleFont(cur, cmd.argument, "mathsf");
748                 break;
749         case LFUN_EMPH:
750                 if (currentMode() == TEXT_MODE)
751                         handleFont(cur, cmd.argument, "emph");
752                 else
753                         handleFont(cur, cmd.argument, "mathcal");
754                 break;
755         case LFUN_ROMAN:
756                 if (currentMode() == TEXT_MODE)
757                         handleFont(cur, cmd.argument, "textrm");
758                 else
759                         handleFont(cur, cmd.argument, "mathrm");
760                 break;
761         case LFUN_CODE:
762                 if (currentMode() == TEXT_MODE)
763                         handleFont(cur, cmd.argument, "texttt");
764                 else
765                         handleFont(cur, cmd.argument, "mathtt");
766                 break;
767         case LFUN_FRAK:
768                 handleFont(cur, cmd.argument, "mathfrak");
769                 break;
770         case LFUN_ITAL:
771                 if (currentMode() == TEXT_MODE)
772                         handleFont(cur, cmd.argument, "textit");
773                 else
774                         handleFont(cur, cmd.argument, "mathit");
775                 break;
776         case LFUN_NOUN:
777                 if (currentMode() == TEXT_MODE)
778                         // FIXME: should be "noun"
779                         handleFont(cur, cmd.argument, "textsc");
780                 else
781                         handleFont(cur, cmd.argument, "mathbb");
782                 break;
783         //case LFUN_FREEFONT_APPLY:
784                 handleFont(cur, cmd.argument, "textrm");
785                 break;
786         case LFUN_DEFAULT:
787                 handleFont(cur, cmd.argument, "textnormal");
788                 break;
789
790         case LFUN_MATH_MODE:
791 #if 1
792                 // ignore math-mode on when already in math mode
793                 if (currentMode() == InsetBase::MATH_MODE && cmd.argument == "on")
794                         break;
795                 cur.macroModeClose();
796                 selClearOrDel(cur);
797                 //cur.plainInsert(MathAtom(new MathMBoxInset(cur.bv())));
798                 cur.plainInsert(MathAtom(new MathBoxInset("mbox")));
799                 cur.posLeft();
800                 cur.pushLeft(*cur.nextInset());
801 #else
802                 if (currentMode() == InsetBase::TEXT_MODE) {
803                         cur.niceInsert(MathAtom(new MathHullInset("simple")));
804                         cur.message(_("create new math text environment ($...$)"));
805                 } else {
806                         handleFont(cur, cmd.argument, "textrm");
807                         cur.message(_("entered math text mode (textrm)"));
808                 }
809 #endif
810                 break;
811
812         case LFUN_MATH_SIZE:
813 #if 0
814                 recordUndo(cur);
815                 cur.setSize(arg);
816 #endif
817                 break;
818
819         case LFUN_INSERT_MATRIX: {
820                 recordUndo(cur, Undo::ATOMIC);
821                 unsigned int m = 1;
822                 unsigned int n = 1;
823                 string v_align;
824                 string h_align;
825                 istringstream is(cmd.argument);
826                 is >> m >> n >> v_align >> h_align;
827                 if (m < 1)
828                         m = 1;
829                 if (n < 1)
830                         n = 1;
831                 v_align += 'c';
832                 cur.niceInsert(
833                         MathAtom(new MathArrayInset("array", m, n, v_align[0], h_align)));
834                 break;
835         }
836
837         case LFUN_MATH_DELIM: {
838                 lyxerr << "MathNestInset::LFUN_MATH_DELIM" << endl;
839                 string ls;
840                 string rs = lyx::support::split(cmd.argument, ls, ' ');
841                 // Reasonable default values
842                 if (ls.empty())
843                         ls = '(';
844                 if (rs.empty())
845                         rs = ')';
846                 recordUndo(cur, Undo::ATOMIC);
847                 // Don't do this with multi-cell selections
848                 if (cur.selBegin().idx() == cur.selEnd().idx())
849                         cur.handleNest(MathAtom(new MathDelimInset(ls, rs)));
850                 break;
851         }
852
853         case LFUN_SPACE_INSERT:
854         case LFUN_MATH_SPACE:
855                 recordUndo(cur, Undo::ATOMIC);
856                 cur.insert(MathAtom(new MathSpaceInset(",")));
857                 break;
858
859         case LFUN_INSET_ERT:
860                 // interpret this as if a backslash was typed
861                 recordUndo(cur, Undo::ATOMIC);
862                 interpret(cur, '\\');
863                 break;
864
865         case LFUN_SUBSCRIPT:
866                 // interpret this as if a _ was typed
867                 recordUndo(cur, Undo::ATOMIC);
868                 interpret(cur, '_');
869                 break;
870
871         case LFUN_SUPERSCRIPT:
872                 // interpret this as if a ^ was typed
873                 recordUndo(cur, Undo::ATOMIC);
874                 interpret(cur, '^');
875                 break;
876
877 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
878 // handling such that "self-insert" works on "arbitrary stuff" too, and
879 // math-insert only handles special math things like "matrix".
880         case LFUN_INSERT_MATH: {
881                 recordUndo(cur, Undo::ATOMIC);
882                 MathArray ar;
883                 asArray(cmd.argument, ar);
884                 int cell(0);
885                 if (cmd.argument == "\\root")
886                         cell = 1;
887                 // math macros are nest insets and may have 0 cells.
888                 // handleNest would crash in this case.
889                 if (ar.size() == 1 && (ar[0].nucleus()->asNestInset()) &&
890                     ar[0].nucleus()->nargs() > MathInset::idx_type(cell)) {
891                         cur.handleNest(ar[0], cell);
892                 } else
893                         cur.niceInsert(cmd.argument);
894                 break;
895                 }
896
897         case LFUN_DIALOG_SHOW_NEW_INSET: {
898                 string const & name = cmd.argument;
899                 string data;
900                 if (name == "ref") {
901                         RefInset tmp(name);
902                         data = tmp.createDialogStr(name);
903                 }
904                 cur.bv().owner()->getDialogs().show(name, data, 0);
905                 break;
906         }
907
908         default:
909                 MathDimInset::doDispatch(cur, cmd);
910                 break;
911         }
912 }
913
914
915 bool MathNestInset::getStatus(LCursor & /*cur*/, FuncRequest const & cmd,
916                 FuncStatus & flag) const
917 {
918         // the font related toggles
919         //string tc = "mathnormal";
920         bool ret = true;
921         string const arg = cmd.argument;
922         switch (cmd.action) {
923         case LFUN_TABULAR_FEATURE:
924                 flag.enabled(false);
925                 break;
926 #if 0
927         case LFUN_TABULAR_FEATURE:
928                 // FIXME: check temporarily disabled
929                 // valign code
930                 char align = mathcursor::valign();
931                 if (align == '\0') {
932                         enable = false;
933                         break;
934                 }
935                 if (cmd.argument.empty()) {
936                         flag.clear();
937                         break;
938                 }
939                 if (!contains("tcb", cmd.argument[0])) {
940                         enable = false;
941                         break;
942                 }
943                 flag.setOnOff(cmd.argument[0] == align);
944                 break;
945 #endif
946         /// We have to handle them since 1.4 blocks all unhandled actions
947         case LFUN_ITAL:
948         case LFUN_BOLD:
949         case LFUN_SANS:
950         case LFUN_EMPH:
951         case LFUN_CODE:
952         case LFUN_NOUN:
953         case LFUN_ROMAN:
954         case LFUN_DEFAULT:
955                 flag.enabled(true);
956                 break;
957         case LFUN_MATH_MUTATE:
958                 //flag.setOnOff(mathcursor::formula()->hullType() == cmd.argument);
959                 flag.setOnOff(false);
960                 break;
961
962         // we just need to be in math mode to enable that
963         case LFUN_MATH_SIZE:
964         case LFUN_MATH_SPACE:
965         case LFUN_MATH_LIMITS:
966         case LFUN_MATH_NONUMBER:
967         case LFUN_MATH_NUMBER:
968         case LFUN_MATH_EXTERN:
969                 flag.enabled(true);
970                 break;
971
972         case LFUN_FRAK:
973                 flag.enabled(currentMode() != TEXT_MODE);
974                 break;
975
976         case LFUN_INSERT_MATH: {
977                 bool const textarg =
978                         arg == "\\textbf"   || arg == "\\textsf" ||
979                         arg == "\\textrm"   || arg == "\\textmd" ||
980                         arg == "\\textit"   || arg == "\\textsc" ||
981                         arg == "\\textsl"   || arg == "\\textup" ||
982                         arg == "\\texttt"   || arg == "\\textbb" ||
983                         arg == "\\textnormal";
984                 flag.enabled(currentMode() != TEXT_MODE || textarg);
985                 break;
986         }
987
988         case LFUN_INSERT_MATRIX:
989                 flag.enabled(currentMode() == MATH_MODE);
990                 break;
991         default:
992                 ret = false;
993                 break;
994         }
995         return ret;
996 }
997
998
999 void MathNestInset::edit(LCursor & cur, bool left)
1000 {
1001         cur.push(*this);
1002         cur.idx() = left ? 0 : cur.lastidx();
1003         cur.pos() = left ? 0 : cur.lastpos();
1004         cur.resetAnchor();
1005         //lyxerr << "MathNestInset::edit, cur:\n" << cur << endl;
1006 }
1007
1008
1009 InsetBase * MathNestInset::editXY(LCursor & cur, int x, int y)
1010 {
1011         int idx_min = 0;
1012         int dist_min = 1000000;
1013         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1014                 int const d = cell(i).dist(x, y);
1015                 if (d < dist_min) {
1016                         dist_min = d;
1017                         idx_min = i;
1018                 }
1019         }
1020         MathArray & ar = cell(idx_min);
1021         cur.push(*this);
1022         cur.idx() = idx_min;
1023         cur.pos() = ar.x2pos(x - ar.xo());
1024         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1025         if (dist_min == 0) {
1026                 // hit inside cell
1027                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1028                         if (ar[i]->covers(x, y))
1029                                 return ar[i].nucleus()->editXY(cur, x, y);
1030         }
1031         return this;
1032 }
1033
1034
1035 void MathNestInset::lfunMousePress(LCursor & cur, FuncRequest & cmd)
1036 {
1037         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1038         if (cmd.button() == mouse_button::button1) {
1039                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1040                 cur.bv().mouseSetCursor(cur);
1041         }
1042
1043         if (cmd.button() == mouse_button::button2) {
1044                 cur.dispatch(FuncRequest(LFUN_PASTESELECTION));
1045         }
1046 }
1047
1048
1049 void MathNestInset::lfunMouseMotion(LCursor & cur, FuncRequest & cmd)
1050 {
1051         // only select with button 1
1052         if (cmd.button() == mouse_button::button1) {
1053                 LCursor & bvcur = cur.bv().cursor();
1054                 if (bvcur.anchor_.hasPart(cur)) {
1055                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1056                         bvcur.setCursor(cur);
1057                         bvcur.selection() = true;
1058                         //lyxerr << "MOTION " << bvcur << endl;
1059                 }
1060                 else {
1061                         cur.undispatched();
1062                 }
1063         }
1064 }
1065
1066
1067 void MathNestInset::lfunMouseRelease(LCursor & cur, FuncRequest & cmd)
1068 {
1069         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1070
1071         if (cmd.button() == mouse_button::button1) {
1072                 //cur.bv().stuffClipboard(cur.grabSelection());
1073                 return;
1074         }
1075
1076         if (cmd.button() == mouse_button::button2) {
1077                 MathArray ar;
1078                 asArray(cur.bv().getClipboard(), ar);
1079                 cur.clearSelection();
1080                 cur.setScreenPos(cmd.x, cmd.y);
1081                 cur.insert(ar);
1082                 cur.bv().update();
1083                 return;
1084         }
1085
1086         if (cmd.button() == mouse_button::button3) {
1087                 // try to dispatch to enclosed insets first
1088                 cur.bv().owner()->getDialogs().show("mathpanel");
1089                 return;
1090         }
1091
1092         cur.undispatched();
1093 }
1094
1095
1096 bool MathNestInset::interpret(LCursor & cur, char c)
1097 {
1098         //lyxerr << "interpret 2: '" << c << "'" << endl;
1099         cur.clearTargetX();
1100
1101         // handle macroMode
1102         if (cur.inMacroMode()) {
1103                 string name = cur.macroName();
1104
1105                 /// are we currently typing '#1' or '#2' or...?
1106                 if (name == "\\#") {
1107                         cur.backspace();
1108                         int n = c - '0';
1109                         if (n >= 1 && n <= 9)
1110                                 cur.insert(new MathMacroArgument(n));
1111                         return true;
1112                 }
1113
1114                 if (isalpha(c)) {
1115                         cur.activeMacro()->setName(name + c);
1116                         return true;
1117                 }
1118
1119                 // handle 'special char' macros
1120                 if (name == "\\") {
1121                         // remove the '\\'
1122                         if (c == '\\') {
1123                                 cur.backspace();
1124                                 if (currentMode() == MathInset::TEXT_MODE)
1125                                         cur.niceInsert(createMathInset("textbackslash"));
1126                                 else
1127                                         cur.niceInsert(createMathInset("backslash"));
1128                         } else if (c == '{') {
1129                                 cur.backspace();
1130                                 cur.niceInsert(MathAtom(new MathBraceInset));
1131                         } else if (c == '%') {
1132                                 cur.backspace();
1133                                 cur.niceInsert(MathAtom(new MathCommentInset));
1134                         } else if (c == '#') {
1135                                 BOOST_ASSERT(cur.activeMacro());
1136                                 cur.activeMacro()->setName(name + c);
1137                         } else {
1138                                 cur.backspace();
1139                                 cur.niceInsert(createMathInset(string(1, c)));
1140                         }
1141                         return true;
1142                 }
1143
1144                 // leave macro mode and try again if necessary
1145                 cur.macroModeClose();
1146                 if (c == '{')
1147                         cur.niceInsert(MathAtom(new MathBraceInset));
1148                 else if (c != ' ')
1149                         interpret(cur, c);
1150                 return true;
1151         }
1152
1153         // This is annoying as one has to press <space> far too often.
1154         // Disable it.
1155
1156 #if 0
1157                 // leave autocorrect mode if necessary
1158                 if (autocorrect() && c == ' ') {
1159                         autocorrect() = false;
1160                         return true;
1161                 }
1162 #endif
1163
1164         // just clear selection on pressing the space bar
1165         if (cur.selection() && c == ' ') {
1166                 cur.selection() = false;
1167                 return true;
1168         }
1169
1170         selClearOrDel(cur);
1171
1172         if (c == '\\') {
1173                 //lyxerr << "starting with macro" << endl;
1174                 cur.insert(MathAtom(new MathUnknownInset("\\", false)));
1175                 return true;
1176         }
1177
1178         if (c == '\n') {
1179                 if (currentMode() == MathInset::TEXT_MODE)
1180                         cur.insert(c);
1181                 return true;
1182         }
1183
1184         if (c == ' ') {
1185                 if (currentMode() == MathInset::TEXT_MODE) {
1186                         // insert spaces in text mode,
1187                         // but suppress direct insertion of two spaces in a row
1188                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1189                         // it is better than nothing...
1190                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ')
1191                                 cur.insert(c);
1192                         return true;
1193                 }
1194                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1195                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1196                         return true;
1197                 }
1198                 if (cur.popRight())
1199                         return true;
1200                 // if are at the very end, leave the formula
1201                 return cur.pos() != cur.lastpos();
1202         }
1203
1204         // These shouldn't work in text mode:
1205         if (currentMode() != MathInset::TEXT_MODE) {
1206                 if (c == '_') {
1207                         script(cur, false);
1208                         return true;
1209                 }
1210                 if (c == '^') {
1211                         script(cur, true);
1212                         return true;
1213                 }
1214                 if (c == '~') {
1215                         cur.niceInsert(createMathInset("sim"));
1216                         return true;
1217                 }
1218         }
1219
1220         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' || c == '%'
1221       || c == '_' || c == '^') {
1222                 cur.niceInsert(createMathInset(string(1, c)));
1223                 return true;
1224         }
1225
1226
1227         // try auto-correction
1228         //if (autocorrect() && hasPrevAtom() && math_autocorrect(prevAtom(), c))
1229         //      return true;
1230
1231         // no special circumstances, so insert the character without any fuss
1232         cur.insert(c);
1233         cur.autocorrect() = true;
1234         return true;
1235 }
1236
1237
1238 bool MathNestInset::script(LCursor & cur, bool up)
1239 {
1240         // Hack to get \^ and \_ working
1241         lyxerr << "handling script: up: " << up << endl;
1242         if (cur.inMacroMode() && cur.macroName() == "\\") {
1243                 if (up)
1244                         cur.niceInsert(createMathInset("mathcircumflex"));
1245                 else
1246                         interpret(cur, '_');
1247                 return true;
1248         }
1249
1250         cur.macroModeClose();
1251         string safe = grabAndEraseSelection(cur);
1252         if (asScriptInset() && cur.idx() == 0) {
1253                 // we are in a nucleus of a script inset, move to _our_ script
1254                 MathScriptInset * inset = asScriptInset();
1255                 lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1256                 inset->ensure(up);
1257                 cur.idx() = inset->idxOfScript(up);
1258                 cur.pos() = 0;
1259         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1260                 --cur.pos();
1261                 MathScriptInset * inset = cur.nextAtom().nucleus()->asScriptInset();
1262                 cur.push(*inset);
1263                 inset->ensure(up);
1264                 cur.idx() = inset->idxOfScript(up);
1265                 cur.pos() = cur.lastpos();
1266         } else {
1267                 // convert the thing to our left to a scriptinset or create a new
1268                 // one if in the very first position of the array
1269                 if (cur.pos() == 0) {
1270                         //lyxerr << "new scriptinset" << endl;
1271                         cur.insert(new MathScriptInset(up));
1272                 } else {
1273                         //lyxerr << "converting prev atom " << endl;
1274                         cur.prevAtom() = MathAtom(new MathScriptInset(cur.prevAtom(), up));
1275                 }
1276                 --cur.pos();
1277                 MathScriptInset * inset = cur.nextAtom().nucleus()->asScriptInset();
1278                 cur.push(*inset);
1279                 cur.idx() = 1;
1280                 cur.pos() = 0;
1281         }
1282         //lyxerr << "pasting 1: safe:\n" << safe << endl;
1283         cur.paste(safe);
1284         cur.resetAnchor();
1285         //lyxerr << "pasting 2: safe:\n" << safe << endl;
1286         return true;
1287 }