]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathNest.cpp
Generalize control on double blank lines.
[lyx.git] / src / mathed / InsetMathNest.cpp
1 /**
2  * \file InsetMathNest.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathNest.h"
14
15 #include "InsetMathArray.h"
16 #include "InsetMathAMSArray.h"
17 #include "InsetMathBig.h"
18 #include "InsetMathBox.h"
19 #include "InsetMathBrace.h"
20 #include "InsetMathChar.h"
21 #include "InsetMathColor.h"
22 #include "InsetMathComment.h"
23 #include "InsetMathDelim.h"
24 #include "InsetMathEnsureMath.h"
25 #include "InsetMathHull.h"
26 #include "InsetMathRef.h"
27 #include "InsetMathScript.h"
28 #include "InsetMathSpace.h"
29 #include "InsetMathSymbol.h"
30 #include "InsetMathUnknown.h"
31 #include "MathAutoCorrect.h"
32 #include "MathCompletionList.h"
33 #include "MathData.h"
34 #include "MathFactory.h"
35 #include "MathMacro.h"
36 #include "MathMacroArgument.h"
37 #include "MathParser.h"
38 #include "MathStream.h"
39 #include "MathSupport.h"
40
41 #include "Bidi.h"
42 #include "Buffer.h"
43 #include "BufferView.h"
44 #include "CoordCache.h"
45 #include "Cursor.h"
46 #include "CutAndPaste.h"
47 #include "DispatchResult.h"
48 #include "Encoding.h"
49 #include "FuncRequest.h"
50 #include "FuncStatus.h"
51 #include "LyX.h"
52 #include "LyXRC.h"
53 #include "OutputParams.h"
54 #include "Text.h"
55
56 #include "frontends/Clipboard.h"
57 #include "frontends/Painter.h"
58 #include "frontends/Selection.h"
59
60 #include "support/lassert.h"
61 #include "support/debug.h"
62 #include "support/gettext.h"
63 #include "support/lstrings.h"
64 #include "support/textutils.h"
65 #include "support/docstream.h"
66
67 #include <algorithm>
68 #include <sstream>
69
70 using namespace std;
71 using namespace lyx::support;
72
73 namespace lyx {
74
75 using cap::copySelection;
76 using cap::grabAndEraseSelection;
77 using cap::cutSelection;
78 using cap::replaceSelection;
79 using cap::selClearOrDel;
80
81
82 InsetMathNest::InsetMathNest(Buffer * buf, idx_type nargs)
83         : InsetMath(buf), cells_(nargs), lock_(false)
84 {
85         setBuffer(*buf);
86 }
87
88
89 InsetMathNest::InsetMathNest(InsetMathNest const & inset)
90         : InsetMath(inset), cells_(inset.cells_), lock_(inset.lock_)
91 {}
92
93
94 InsetMathNest::~InsetMathNest()
95 {
96         map<BufferView const *, bool>::iterator it = mouse_hover_.begin();
97         map<BufferView const *, bool>::iterator end = mouse_hover_.end();
98         for (; it != end; ++it)
99                 if (it->second)
100                         it->first->clearLastInset(this);
101 }
102
103
104 InsetMathNest & InsetMathNest::operator=(InsetMathNest const & inset)
105 {
106         cells_ = inset.cells_;
107         lock_ = inset.lock_;
108         mouse_hover_.clear();
109         InsetMath::operator=(inset);
110         return *this;
111 }
112
113
114 void InsetMathNest::setBuffer(Buffer & buffer)
115 {
116         InsetMath::setBuffer(buffer);
117         for (idx_type i = 0, n = nargs(); i != n; ++i) {
118                 MathData & data = cell(i);
119                 for (size_t j = 0; j != data.size(); ++j)
120                         data[j].nucleus()->setBuffer(buffer);
121         }
122 }
123
124
125 InsetMath::idx_type InsetMathNest::nargs() const
126 {
127         return cells_.size();
128 }
129
130
131 void InsetMathNest::cursorPos(BufferView const & bv,
132                 CursorSlice const & sl, bool /*boundary*/,
133                 int & x, int & y) const
134 {
135 // FIXME: This is a hack. Ideally, the coord cache should not store
136 // absolute positions, but relative ones. This would mean to call
137 // setXY() not in MathData::draw(), but in the parent insets' draw()
138 // with the correctly adjusted x,y values. But this means that we'd have
139 // to touch all (math)inset's draw() methods. Right now, we'll store
140 // absolute value, and make them here relative, only to make them
141 // absolute again when actually drawing the cursor. What a mess.
142         LASSERT(&sl.inset() == this, return);
143         MathData const & ar = sl.cell();
144         CoordCache const & coord_cache = bv.coordCache();
145         if (!coord_cache.getArrays().has(&ar)) {
146                 // this can (semi-)legally happen if we just created this cell
147                 // and it never has been drawn before. So don't ASSERT.
148                 //lyxerr << "no cached data for array " << &ar << endl;
149                 x = 0;
150                 y = 0;
151                 return;
152         }
153         Point const pt = coord_cache.getArrays().xy(&ar);
154         if (!coord_cache.getInsets().has(this)) {
155                 // same as above
156                 //lyxerr << "no cached data for inset " << this << endl;
157                 x = 0;
158                 y = 0;
159                 return;
160         }
161         Point const pt2 = coord_cache.getInsets().xy(this);
162         //lyxerr << "retrieving position cache for MathData "
163         //      << pt.x_ << ' ' << pt.y_ << endl;
164         x = pt.x_ - pt2.x_ + ar.pos2x(&bv, sl.pos());
165         y = pt.y_ - pt2.y_;
166 //      lyxerr << "pt.y_ : " << pt.y_ << " pt2_.y_ : " << pt2.y_
167 //              << " asc: " << ascent() << "  des: " << descent()
168 //              << " ar.asc: " << ar.ascent() << " ar.des: " << ar.descent() << endl;
169         // move cursor visually into empty cells ("blue rectangles");
170         if (ar.empty())
171                 x += 2;
172 }
173
174
175 void InsetMathNest::metrics(MetricsInfo const & mi) const
176 {
177         MetricsInfo m = mi;
178         for (idx_type i = 0, n = nargs(); i != n; ++i) {
179                 Dimension dim;
180                 cell(i).metrics(m, dim);
181         }
182 }
183
184
185 void InsetMathNest::updateBuffer(ParIterator const & it, UpdateType utype)
186 {
187         for (idx_type i = 0, n = nargs(); i != n; ++i)
188                 cell(i).updateBuffer(it, utype);
189 }
190
191
192
193 bool InsetMathNest::idxNext(Cursor & cur) const
194 {
195         LASSERT(&cur.inset() == this, return false);
196         if (cur.idx() == cur.lastidx())
197                 return false;
198         ++cur.idx();
199         cur.pos() = 0;
200         return true;
201 }
202
203
204 bool InsetMathNest::idxForward(Cursor & cur) const
205 {
206         return idxNext(cur);
207 }
208
209
210 bool InsetMathNest::idxPrev(Cursor & cur) const
211 {
212         LASSERT(&cur.inset() == this, return false);
213         if (cur.idx() == 0)
214                 return false;
215         --cur.idx();
216         cur.pos() = cur.lastpos();
217         return true;
218 }
219
220
221 bool InsetMathNest::idxBackward(Cursor & cur) const
222 {
223         return idxPrev(cur);
224 }
225
226
227 bool InsetMathNest::idxFirst(Cursor & cur) const
228 {
229         LASSERT(&cur.inset() == this, return false);
230         if (nargs() == 0)
231                 return false;
232         cur.idx() = 0;
233         cur.pos() = 0;
234         return true;
235 }
236
237
238 bool InsetMathNest::idxLast(Cursor & cur) const
239 {
240         LASSERT(&cur.inset() == this, return false);
241         if (nargs() == 0)
242                 return false;
243         cur.idx() = cur.lastidx();
244         cur.pos() = cur.lastpos();
245         return true;
246 }
247
248
249 void InsetMathNest::dump() const
250 {
251         odocstringstream oss;
252         WriteStream os(oss);
253         os << "---------------------------------------------\n";
254         write(os);
255         os << "\n";
256         for (idx_type i = 0, n = nargs(); i != n; ++i)
257                 os << cell(i) << "\n";
258         os << "---------------------------------------------\n";
259         lyxerr << to_utf8(oss.str());
260 }
261
262
263 void InsetMathNest::draw(PainterInfo & pi, int x, int y) const
264 {
265 #if 0
266         if (lock_)
267                 pi.pain.fillRectangle(x, y - ascent(), width(), height(),
268                                         Color_mathlockbg);
269 #endif
270         setPosCache(pi, x, y);
271 }
272
273
274 void InsetMathNest::drawSelection(PainterInfo & pi, int x, int y) const
275 {
276         BufferView & bv = *pi.base.bv;
277         // this should use the x/y values given, not the cached values
278         Cursor & cur = bv.cursor();
279         if (!cur.selection())
280                 return;
281         if (&cur.inset() != this)
282                 return;
283
284         // FIXME: hack to get position cache warm
285         bool const original_drawing_state = pi.pain.isDrawingEnabled();
286         pi.pain.setDrawingEnabled(false);
287         draw(pi, x, y);
288         pi.pain.setDrawingEnabled(original_drawing_state);
289
290         CursorSlice s1 = cur.selBegin();
291         CursorSlice s2 = cur.selEnd();
292
293         //lyxerr << "InsetMathNest::drawing selection: "
294         //      << " s1: " << s1 << " s2: " << s2 << endl;
295         if (s1.idx() == s2.idx()) {
296                 MathData const & c = cell(s1.idx());
297                 Geometry const & g = bv.coordCache().getArrays().geometry(&c);
298                 int x1 = g.pos.x_ + c.pos2x(pi.base.bv, s1.pos());
299                 int y1 = g.pos.y_ - g.dim.ascent();
300                 int x2 = g.pos.x_ + c.pos2x(pi.base.bv, s2.pos());
301                 int y2 = g.pos.y_ + g.dim.descent();
302                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, Color_selection);
303         //lyxerr << "InsetMathNest::drawing selection 3: "
304         //      << " x1: " << x1 << " x2: " << x2
305         //      << " y1: " << y1 << " y2: " << y2 << endl;
306         } else {
307                 for (idx_type i = 0; i < nargs(); ++i) {
308                         if (idxBetween(i, s1.idx(), s2.idx())) {
309                                 MathData const & c = cell(i);
310                                 Geometry const & g = bv.coordCache().getArrays().geometry(&c);
311                                 int x1 = g.pos.x_;
312                                 int y1 = g.pos.y_ - g.dim.ascent();
313                                 int x2 = g.pos.x_ + g.dim.width();
314                                 int y2 = g.pos.y_ + g.dim.descent();
315                                 pi.pain.fillRectangle(x1, y1, x2 - x1, y2 - y1, Color_selection);
316                         }
317                 }
318         }
319 }
320
321
322 void InsetMathNest::validate(LaTeXFeatures & features) const
323 {
324         for (idx_type i = 0; i < nargs(); ++i)
325                 cell(i).validate(features);
326 }
327
328
329 void InsetMathNest::replace(ReplaceData & rep)
330 {
331         for (idx_type i = 0; i < nargs(); ++i)
332                 cell(i).replace(rep);
333 }
334
335
336 bool InsetMathNest::contains(MathData const & ar) const
337 {
338         for (idx_type i = 0; i < nargs(); ++i)
339                 if (cell(i).contains(ar))
340                         return true;
341         return false;
342 }
343
344
345 bool InsetMathNest::lock() const
346 {
347         return lock_;
348 }
349
350
351 void InsetMathNest::lock(bool l)
352 {
353         lock_ = l;
354 }
355
356
357 bool InsetMathNest::isActive() const
358 {
359         return nargs() > 0;
360 }
361
362
363 MathData InsetMathNest::glue() const
364 {
365         MathData ar;
366         for (size_t i = 0; i < nargs(); ++i)
367                 ar.append(cell(i));
368         return ar;
369 }
370
371
372 void InsetMathNest::write(WriteStream & os) const
373 {
374         MathEnsurer ensurer(os, currentMode() == MATH_MODE);
375         ModeSpecifier specifier(os, currentMode(), lockedMode());
376         docstring const latex_name = name();
377         os << '\\' << latex_name;
378         for (size_t i = 0; i < nargs(); ++i)
379                 os << '{' << cell(i) << '}';
380         if (nargs() == 0)
381                 os.pendingSpace(true);
382         if (lock_ && !os.latex()) {
383                 os << "\\lyxlock";
384                 os.pendingSpace(true);
385         }
386 }
387
388
389 void InsetMathNest::normalize(NormalStream & os) const
390 {
391         os << '[' << name();
392         for (size_t i = 0; i < nargs(); ++i)
393                 os << ' ' << cell(i);
394         os << ']';
395 }
396
397
398 void InsetMathNest::latex(otexstream & os, OutputParams const & runparams) const
399 {
400         WriteStream wi(os.os(), runparams.moving_arg, true,
401                        runparams.dryrun ? WriteStream::wsDryrun : WriteStream::wsDefault,
402                        runparams.encoding);
403         wi.canBreakLine(os.canBreakLine());
404         write(wi);
405         // Reset parbreak status after a math inset.
406         os.lastChar(0);
407         os.canBreakLine(wi.canBreakLine());
408
409         int lf = wi.line();
410         if (lf > 0 && runparams.lastid != -1) {
411                 --lf;
412                 os.texrow().newline();
413                 os.texrow().start(runparams.lastid, runparams.lastpos);
414         }
415         os.texrow().newlines(lf);
416 }
417
418
419 bool InsetMathNest::setMouseHover(BufferView const * bv, bool mouse_hover)
420         const
421 {
422         mouse_hover_[bv] = mouse_hover;
423         return true;
424 }
425
426
427 bool InsetMathNest::notifyCursorLeaves(Cursor const & /*old*/, Cursor & /*cur*/)
428 {
429         // FIXME: look here
430 #if 0
431         MathData & ar = cur.cell();
432         // remove base-only "scripts"
433         for (pos_type i = 0; i + 1 < ar.size(); ++i) {
434                 InsetMathScript * p = operator[](i).nucleus()->asScriptInset();
435                 if (p && p->nargs() == 1) {
436                         MathData ar = p->nuc();
437                         erase(i);
438                         insert(i, ar);
439                         cur.adjust(i, ar.size() - 1);
440                 }
441         }
442
443         // glue adjacent font insets of the same kind
444         for (pos_type i = 0; i + 1 < size(); ++i) {
445                 InsetMathFont * p = operator[](i).nucleus()->asFontInset();
446                 InsetMathFont const * q = operator[](i + 1)->asFontInset();
447                 if (p && q && p->name() == q->name()) {
448                         p->cell(0).append(q->cell(0));
449                         erase(i + 1);
450                         cur.adjust(i, -1);
451                 }
452         }
453 #endif
454         return false;
455 }
456
457
458 void InsetMathNest::handleFont
459         (Cursor & cur, docstring const & arg, char const * const font)
460 {
461         handleFont(cur, arg, from_ascii(font));
462 }
463
464
465 void InsetMathNest::handleFont(Cursor & cur, docstring const & arg,
466         docstring const & font)
467 {
468         cur.recordUndoSelection();
469
470         // this whole function is a hack and won't work for incremental font
471         // changes...
472         if (cur.inset().asInsetMath()->name() == font)
473                 cur.handleFont(to_utf8(font));
474         else
475                 handleNest(cur, createInsetMath(font, cur.buffer()), arg);
476 }
477
478
479 void InsetMathNest::handleNest(Cursor & cur, MathAtom const & nest)
480 {
481         handleNest(cur, nest, docstring());
482 }
483
484
485 void InsetMathNest::handleNest(Cursor & cur, MathAtom const & nest,
486         docstring const & arg)
487 {
488         CursorSlice i1 = cur.selBegin();
489         CursorSlice i2 = cur.selEnd();
490         if (!i1.inset().asInsetMath())
491                 return;
492         if (i1.idx() == i2.idx()) {
493                 // the easy case where only one cell is selected
494                 cur.handleNest(nest);
495                 cur.insert(arg);
496                 return;
497         }
498
499         // multiple selected cells in a simple non-grid inset
500         if (i1.asInsetMath()->nrows() == 0 || i1.asInsetMath()->ncols() == 0) {
501                 for (idx_type i = i1.idx(); i <= i2.idx(); ++i) {
502                         // select cell
503                         cur.idx() = i;
504                         cur.pos() = 0;
505                         cur.resetAnchor();
506                         cur.pos() = cur.lastpos();
507                         cur.setSelection();
508
509                         // change font of cell
510                         cur.handleNest(nest);
511                         cur.insert(arg);
512
513                         // cur is in the font inset now. If the loop continues,
514                         // we need to get outside again for the next cell
515                         if (i + 1 <= i2.idx())
516                                 cur.pop_back();
517                 }
518                 return;
519         }
520
521         // the complicated case with multiple selected cells in a grid
522         row_type r1, r2;
523         col_type c1, c2;
524         cap::region(i1, i2, r1, r2, c1, c2);
525         for (row_type row = r1; row <= r2; ++row) {
526                 for (col_type col = c1; col <= c2; ++col) {
527                         // select cell
528                         cur.idx() = i1.asInsetMath()->index(row, col);
529                         cur.pos() = 0;
530                         cur.resetAnchor();
531                         cur.pos() = cur.lastpos();
532                         cur.setSelection();
533
534                         //
535                         cur.handleNest(nest);
536                         cur.insert(arg);
537
538                         // cur is in the font inset now. If the loop continues,
539                         // we need to get outside again for the next cell
540                         if (col + 1 <= c2 || row + 1 <= r2)
541                                 cur.pop_back();
542                 }
543         }
544 }
545
546
547 void InsetMathNest::handleFont2(Cursor & cur, docstring const & arg)
548 {
549         cur.recordUndoSelection();
550         Font font;
551         bool b;
552         font.fromString(to_utf8(arg), b);
553         if (font.fontInfo().color() != Color_inherit &&
554             font.fontInfo().color() != Color_ignore)
555                 handleNest(cur, MathAtom(new InsetMathColor(buffer_, true, font.fontInfo().color())));
556
557         // FIXME: support other font changes here as well?
558 }
559
560
561 void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd)
562 {
563         //LYXERR0("InsetMathNest: request: " << cmd);
564
565         Parse::flags parseflg = Parse::QUIET | Parse::USETEXT;
566
567         FuncCode const act = cmd.action();
568         switch (act) {
569
570         case LFUN_CLIPBOARD_PASTE:
571                 parseflg |= Parse::VERBATIM;
572                 // fall through
573         case LFUN_PASTE: {
574                 if (cur.currentMode() <= TEXT_MODE)
575                         parseflg |= Parse::TEXTMODE;
576                 cur.recordUndoSelection();
577                 cur.message(_("Paste"));
578                 replaceSelection(cur);
579                 docstring topaste;
580                 if (cmd.argument().empty() && !theClipboard().isInternal())
581                         topaste = theClipboard().getAsText(Clipboard::PlainTextType);
582                 else {
583                         size_t n = 0;
584                         idocstringstream is(cmd.argument());
585                         is >> n;
586                         topaste = cap::selection(n);
587                 }
588                 cur.niceInsert(topaste, parseflg, false);
589                 cur.clearSelection(); // bug 393
590                 cur.forceBufferUpdate();
591                 cur.finishUndo();
592                 break;
593         }
594
595         case LFUN_CUT:
596                 cur.recordUndo();
597                 cutSelection(cur, true, true);
598                 cur.message(_("Cut"));
599                 // Prevent stale position >= size crash
600                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
601                 cur.normalize();
602                 cur.forceBufferUpdate();
603                 break;
604
605         case LFUN_COPY:
606                 copySelection(cur);
607                 cur.message(_("Copy"));
608                 break;
609
610         case LFUN_MOUSE_PRESS:
611                 lfunMousePress(cur, cmd);
612                 break;
613
614         case LFUN_MOUSE_MOTION:
615                 lfunMouseMotion(cur, cmd);
616                 break;
617
618         case LFUN_MOUSE_RELEASE:
619                 lfunMouseRelease(cur, cmd);
620                 break;
621
622         case LFUN_FINISHED_LEFT: // in math, left is backwards
623         case LFUN_FINISHED_BACKWARD:
624                 cur.bv().cursor() = cur;
625                 break;
626
627         case LFUN_FINISHED_RIGHT: // in math, right is forward
628         case LFUN_FINISHED_FORWARD:
629                 ++cur.pos();
630                 cur.bv().cursor() = cur;
631                 break;
632
633         case LFUN_CHAR_RIGHT:
634         case LFUN_CHAR_LEFT:
635         case LFUN_CHAR_BACKWARD:
636         case LFUN_CHAR_FORWARD:
637                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
638         case LFUN_CHAR_RIGHT_SELECT:
639         case LFUN_CHAR_LEFT_SELECT:
640         case LFUN_CHAR_BACKWARD_SELECT:
641         case LFUN_CHAR_FORWARD_SELECT: {
642                 // are we in a selection?
643                 bool select = (act == LFUN_CHAR_RIGHT_SELECT
644                                            || act == LFUN_CHAR_LEFT_SELECT
645                                            || act == LFUN_CHAR_BACKWARD_SELECT
646                                            || act == LFUN_CHAR_FORWARD_SELECT);
647                 // are we moving forward or backwards?
648                 // If the command was RIGHT or LEFT, then whether we're moving forward
649                 // or backwards depends on the cursor movement mode (logical or visual):
650                 //  * in visual mode, since math is always LTR, right -> forward,
651                 //    left -> backwards
652                 //  * in logical mode, the mapping is determined by the
653                 //    reverseDirectionNeeded() function
654
655                 bool forward;
656                 FuncCode finish_lfun;
657
658                 if (act == LFUN_CHAR_FORWARD
659                                 || act == LFUN_CHAR_FORWARD_SELECT) {
660                         forward = true;
661                         finish_lfun = LFUN_FINISHED_FORWARD;
662                 }
663                 else if (act == LFUN_CHAR_BACKWARD
664                                 || act == LFUN_CHAR_BACKWARD_SELECT) {
665                         forward = false;
666                         finish_lfun = LFUN_FINISHED_BACKWARD;
667                 }
668                 else {
669                         bool right = (act == LFUN_CHAR_RIGHT_SELECT
670                                                   || act == LFUN_CHAR_RIGHT);
671                         if (lyxrc.visual_cursor || !reverseDirectionNeeded(cur))
672                                 forward = right;
673                         else
674                                 forward = !right;
675
676                         if (right)
677                                 finish_lfun = LFUN_FINISHED_RIGHT;
678                         else
679                                 finish_lfun = LFUN_FINISHED_LEFT;
680                 }
681                 // Now that we know exactly what we want to do, let's do it!
682                 cur.selHandle(select);
683                 cur.clearTargetX();
684                 cur.macroModeClose();
685                 // try moving forward or backwards as necessary...
686                 if (!(forward ? cursorMathForward(cur) : cursorMathBackward(cur))) {
687                         // ... and if movement failed, then finish forward or backwards
688                         // as necessary
689                         cmd = FuncRequest(finish_lfun);
690                         cur.undispatched();
691                 }
692                 break;
693         }
694
695         case LFUN_DOWN:
696         case LFUN_UP:
697                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
698         case LFUN_DOWN_SELECT:
699         case LFUN_UP_SELECT: {
700                 // close active macro
701                 if (cur.inMacroMode()) {
702                         cur.macroModeClose();
703                         break;
704                 }
705
706                 // stop/start the selection
707                 bool select = act == LFUN_DOWN_SELECT ||
708                         act == LFUN_UP_SELECT;
709                 cur.selHandle(select);
710
711                 // handle autocorrect:
712                 cur.autocorrect() = false;
713                 cur.message(_("Autocorrect Off ('!' to enter)"));
714
715                 // go up/down
716                 bool up = act == LFUN_UP || act == LFUN_UP_SELECT;
717                 bool successful = cur.upDownInMath(up);
718                 if (successful)
719                         break;
720
721                 if (cur.fixIfBroken())
722                         // FIXME: Something bad happened. We pass the corrected Cursor
723                         // instead of letting things go worse.
724                         break;
725
726                 // We did not manage to move the cursor.
727                 cur.undispatched();
728                 break;
729         }
730
731         case LFUN_MOUSE_DOUBLE:
732         case LFUN_MOUSE_TRIPLE:
733         case LFUN_WORD_SELECT:
734         case LFUN_INSET_SELECT_ALL:
735                 cur.pos() = 0;
736                 cur.idx() = 0;
737                 cur.resetAnchor();
738                 cur.setSelection(true);
739                 cur.idx() = cur.lastidx();
740                 cur.pos() = cur.lastpos();
741                 cur.bv().cursor() = cur;
742                 break;
743
744         case LFUN_PARAGRAPH_UP:
745         case LFUN_PARAGRAPH_DOWN:
746                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
747         case LFUN_PARAGRAPH_UP_SELECT:
748         case LFUN_PARAGRAPH_DOWN_SELECT:
749                 break;
750
751         case LFUN_LINE_BEGIN:
752         case LFUN_WORD_BACKWARD:
753         case LFUN_WORD_LEFT:
754                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
755         case LFUN_LINE_BEGIN_SELECT:
756         case LFUN_WORD_BACKWARD_SELECT:
757         case LFUN_WORD_LEFT_SELECT:
758                 cur.selHandle(act == LFUN_WORD_BACKWARD_SELECT ||
759                                 act == LFUN_WORD_LEFT_SELECT ||
760                                 act == LFUN_LINE_BEGIN_SELECT);
761                 cur.macroModeClose();
762                 if (cur.pos() != 0) {
763                         cur.pos() = 0;
764                 } else if (cur.col() != 0) {
765                         cur.idx() -= cur.col();
766                         cur.pos() = 0;
767                 } else if (cur.idx() != 0) {
768                         cur.idx() = 0;
769                         cur.pos() = 0;
770                 } else {
771                         cmd = FuncRequest(LFUN_FINISHED_BACKWARD);
772                         cur.undispatched();
773                 }
774                 break;
775
776         case LFUN_WORD_FORWARD:
777         case LFUN_WORD_RIGHT:
778         case LFUN_LINE_END:
779                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
780         case LFUN_WORD_FORWARD_SELECT:
781         case LFUN_WORD_RIGHT_SELECT:
782         case LFUN_LINE_END_SELECT:
783                 cur.selHandle(act == LFUN_WORD_FORWARD_SELECT ||
784                                 act == LFUN_WORD_RIGHT_SELECT ||
785                                 act == LFUN_LINE_END_SELECT);
786                 cur.macroModeClose();
787                 cur.clearTargetX();
788                 if (cur.pos() != cur.lastpos()) {
789                         cur.pos() = cur.lastpos();
790                 } else if (ncols() && (cur.col() != cur.lastcol())) {
791                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
792                         cur.pos() = cur.lastpos();
793                 } else if (cur.idx() != cur.lastidx()) {
794                         cur.idx() = cur.lastidx();
795                         cur.pos() = cur.lastpos();
796                 } else {
797                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
798                         cur.undispatched();
799                 }
800                 break;
801
802         case LFUN_CELL_FORWARD:
803                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
804                 cur.inset().idxNext(cur);
805                 break;
806
807         case LFUN_CELL_BACKWARD:
808                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
809                 cur.inset().idxPrev(cur);
810                 break;
811
812         case LFUN_WORD_DELETE_BACKWARD:
813         case LFUN_CHAR_DELETE_BACKWARD:
814                 if (cur.pos() == 0)
815                         // May affect external cell:
816                         cur.recordUndoInset();
817                 else if (!cur.inMacroMode())
818                         cur.recordUndoSelection();
819                 // if the inset can not be removed from within, delete it
820                 if (!cur.backspace()) {
821                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
822                         cur.innerText()->dispatch(cur, cmd);
823                 }
824                 break;
825
826         case LFUN_WORD_DELETE_FORWARD:
827         case LFUN_CHAR_DELETE_FORWARD:
828                 if (cur.pos() == cur.lastpos())
829                         // May affect external cell:
830                         cur.recordUndoInset();
831                 else
832                         cur.recordUndoSelection();
833                 // if the inset can not be removed from within, delete it
834                 if (!cur.erase()) {
835                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
836                         cur.innerText()->dispatch(cur, cmd);
837                 }
838                 break;
839
840         case LFUN_ESCAPE:
841                 if (cur.selection())
842                         cur.clearSelection();
843                 else  {
844                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
845                         cur.undispatched();
846                 }
847                 break;
848
849         // 'Locks' the math inset. A 'locked' math inset behaves as a unit
850         // that is traversed by a single <CursorLeft>/<CursorRight>.
851         case LFUN_INSET_TOGGLE:
852                 cur.recordUndo();
853                 lock(!lock());
854                 cur.popForward();
855                 break;
856
857         case LFUN_SELF_INSERT:
858                 if (cmd.argument().size() != 1) {
859                         cur.recordUndoSelection();
860                         docstring const arg = cmd.argument();
861                         if (!interpretString(cur, arg))
862                                 cur.insert(arg);
863                         break;
864                 }
865                 // Don't record undo steps if we are in macro mode and thus
866                 // cmd.argument is the next character of the macro name.
867                 // Otherwise we'll get an invalid cursor if we undo after
868                 // the macro was finished and the macro is a known command,
869                 // e.g. sqrt. Cursor::macroModeClose replaces in this case
870                 // the InsetMathUnknown with name "frac" by an empty
871                 // InsetMathFrac -> a pos value > 0 is invalid.
872                 // A side effect is that an undo before the macro is finished
873                 // undoes the complete macro, not only the last character.
874                 // At the time we hit '\' we are not in macro mode, still.
875                 if (!cur.inMacroMode())
876                         cur.recordUndoSelection();
877
878                 // spacial handling of space. If we insert an inset
879                 // via macro mode, we want to put the cursor inside it
880                 // if relevant. Think typing "\frac<space>".
881                 if (cmd.argument()[0] == ' '
882                     && cur.inMacroMode() && cur.macroName() != "\\"
883                     && cur.macroModeClose() && cur.pos() > 0) {
884                         MathAtom const atom = cur.prevAtom();
885                         if (atom->asNestInset() && atom->isActive()) {
886                                 cur.posBackward();
887                                 cur.pushBackward(*cur.nextInset());
888                         }
889                 } else if (!interpretChar(cur, cmd.argument()[0])) {
890                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
891                         cur.undispatched();
892                 }
893                 break;
894
895         //case LFUN_SERVER_GET_XY:
896         //      break;
897
898         case LFUN_SERVER_SET_XY: {
899                 lyxerr << "LFUN_SERVER_SET_XY broken!" << endl;
900                 int x = 0;
901                 int y = 0;
902                 istringstream is(to_utf8(cmd.argument()));
903                 is >> x >> y;
904                 cur.setScreenPos(x, y);
905                 break;
906         }
907
908         // Special casing for superscript in case of LyX handling
909         // dead-keys:
910         case LFUN_ACCENT_CIRCUMFLEX:
911                 if (cmd.argument().empty()) {
912                         // do superscript if LyX handles
913                         // deadkeys
914                         cur.recordUndoSelection();
915                         script(cur, true, grabAndEraseSelection(cur));
916                 }
917                 break;
918
919         case LFUN_ACCENT_UMLAUT:
920         case LFUN_ACCENT_ACUTE:
921         case LFUN_ACCENT_GRAVE:
922         case LFUN_ACCENT_BREVE:
923         case LFUN_ACCENT_DOT:
924         case LFUN_ACCENT_MACRON:
925         case LFUN_ACCENT_CARON:
926         case LFUN_ACCENT_TILDE:
927         case LFUN_ACCENT_CEDILLA:
928         case LFUN_ACCENT_CIRCLE:
929         case LFUN_ACCENT_UNDERDOT:
930         case LFUN_ACCENT_TIE:
931         case LFUN_ACCENT_OGONEK:
932         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
933                 break;
934
935         //  Math fonts
936         case LFUN_TEXTSTYLE_APPLY:
937         case LFUN_TEXTSTYLE_UPDATE:
938                 handleFont2(cur, cmd.argument());
939                 break;
940
941         case LFUN_FONT_BOLD:
942                 if (currentMode() <= TEXT_MODE)
943                         handleFont(cur, cmd.argument(), "textbf");
944                 else
945                         handleFont(cur, cmd.argument(), "mathbf");
946                 break;
947         case LFUN_FONT_BOLDSYMBOL:
948                 if (currentMode() <= TEXT_MODE)
949                         handleFont(cur, cmd.argument(), "textbf");
950                 else
951                         handleFont(cur, cmd.argument(), "boldsymbol");
952                 break;
953         case LFUN_FONT_SANS:
954                 if (currentMode() <= TEXT_MODE)
955                         handleFont(cur, cmd.argument(), "textsf");
956                 else
957                         handleFont(cur, cmd.argument(), "mathsf");
958                 break;
959         case LFUN_FONT_EMPH:
960                 if (currentMode() <= TEXT_MODE)
961                         handleFont(cur, cmd.argument(), "emph");
962                 else
963                         handleFont(cur, cmd.argument(), "mathcal");
964                 break;
965         case LFUN_FONT_ROMAN:
966                 if (currentMode() <= TEXT_MODE)
967                         handleFont(cur, cmd.argument(), "textrm");
968                 else
969                         handleFont(cur, cmd.argument(), "mathrm");
970                 break;
971         case LFUN_FONT_TYPEWRITER:
972                 if (currentMode() <= TEXT_MODE)
973                         handleFont(cur, cmd.argument(), "texttt");
974                 else
975                         handleFont(cur, cmd.argument(), "mathtt");
976                 break;
977         case LFUN_FONT_FRAK:
978                 handleFont(cur, cmd.argument(), "mathfrak");
979                 break;
980         case LFUN_FONT_ITAL:
981                 if (currentMode() <= TEXT_MODE)
982                         handleFont(cur, cmd.argument(), "textit");
983                 else
984                         handleFont(cur, cmd.argument(), "mathit");
985                 break;
986         case LFUN_FONT_NOUN:
987                 if (currentMode() <= TEXT_MODE)
988                         // FIXME: should be "noun"
989                         handleFont(cur, cmd.argument(), "textsc");
990                 else
991                         handleFont(cur, cmd.argument(), "mathbb");
992                 break;
993         case LFUN_FONT_DEFAULT:
994                 handleFont(cur, cmd.argument(), "textnormal");
995                 break;
996
997         case LFUN_FONT_UNDERLINE:
998                 cur.recordUndo();
999                 cur.handleNest(createInsetMath("underline", cur.buffer()));
1000                 break;
1001         case LFUN_MATH_MODE: {
1002 #if 1
1003                 // ignore math-mode on when already in math mode
1004                 if (currentMode() == Inset::MATH_MODE && cmd.argument() == "on")
1005                         break;
1006                 cur.recordUndoSelection();
1007                 cur.macroModeClose();
1008                 docstring const save_selection = grabAndEraseSelection(cur);
1009                 selClearOrDel(cur);
1010                 if (currentMode() <= Inset::TEXT_MODE)
1011                         cur.plainInsert(MathAtom(new InsetMathEnsureMath(buffer_)));
1012                 else
1013                         cur.plainInsert(MathAtom(new InsetMathBox(buffer_, from_ascii("mbox"))));
1014                 cur.posBackward();
1015                 cur.pushBackward(*cur.nextInset());
1016                 cur.niceInsert(save_selection);
1017                 cur.forceBufferUpdate();
1018 #else
1019                 if (currentMode() == Inset::TEXT_MODE) {
1020                         cur.recordUndoSelection();
1021                         cur.niceInsert(MathAtom(new InsetMathHull("simple", cur.buffer())));
1022                         cur.message(_("create new math text environment ($...$)"));
1023                 } else {
1024                         handleFont(cur, cmd.argument(), "textrm");
1025                         cur.message(_("entered math text mode (textrm)"));
1026                 }
1027 #endif
1028                 break;
1029         }
1030
1031         case LFUN_REGEXP_MODE: {
1032                 InsetMath * im = cur.inset().asInsetMath();
1033                 if (im) {
1034                         InsetMathHull * i = im->asHullInset();          
1035                         if (i && i->getType() == hullRegexp) {
1036                                 cur.message(_("Already in regular expression mode"));
1037                                 break;
1038                         }
1039                 }
1040                 cur.macroModeClose();
1041                 docstring const save_selection = grabAndEraseSelection(cur);
1042                 selClearOrDel(cur);
1043                 cur.plainInsert(MathAtom(new InsetMathHull(buffer_, hullRegexp)));
1044                 cur.posBackward();
1045                 cur.pushBackward(*cur.nextInset());
1046                 cur.niceInsert(save_selection);
1047                 cur.message(_("Regular expression editor mode"));
1048                 break;
1049         }
1050
1051         case LFUN_MATH_FONT_STYLE: {
1052                 FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, '\\' + cmd.argument());
1053                 doDispatch(cur, fr);
1054                 break;
1055         }
1056
1057         case LFUN_MATH_SIZE: {
1058                 FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, cmd.argument());
1059                 doDispatch(cur, fr);
1060                 break;
1061         }
1062
1063         case LFUN_MATH_MATRIX: {
1064                 cur.recordUndo();
1065                 unsigned int m = 1;
1066                 unsigned int n = 1;
1067                 docstring v_align;
1068                 docstring h_align;
1069                 idocstringstream is(cmd.argument());
1070                 is >> m >> n >> v_align >> h_align;
1071                 if (m < 1)
1072                         m = 1;
1073                 if (n < 1)
1074                         n = 1;
1075                 v_align += 'c';
1076                 cur.niceInsert(MathAtom(new InsetMathArray(buffer_,
1077                         from_ascii("array"), m, n, (char)v_align[0], h_align)));
1078                 break;
1079         }
1080
1081         case LFUN_MATH_AMS_MATRIX: {
1082                 cur.recordUndo();
1083                 unsigned int m = 1;
1084                 unsigned int n = 1;
1085                 docstring name = from_ascii("matrix");
1086                 idocstringstream is(cmd.argument());
1087                 is >> m >> n >> name;
1088                 if (m < 1)
1089                         m = 1;
1090                 if (n < 1)
1091                         n = 1;
1092                 // check if we have a valid decoration
1093                 if (name != "pmatrix" && name != "bmatrix"
1094                         && name != "Bmatrix" && name != "vmatrix"
1095                         && name != "Vmatrix" && name != "matrix")
1096                         name = from_ascii("matrix");
1097                 
1098                 cur.niceInsert(
1099                         MathAtom(new InsetMathAMSArray(buffer_, name, m, n)));
1100                 break;
1101         }
1102
1103         case LFUN_MATH_DELIM: {
1104                 docstring ls;
1105                 docstring rs = split(cmd.argument(), ls, ' ');
1106                 // Reasonable default values
1107                 if (ls.empty())
1108                         ls = '(';
1109                 if (rs.empty())
1110                         rs = ')';
1111                 cur.recordUndo();
1112                 cur.handleNest(MathAtom(new InsetMathDelim(buffer_, ls, rs)));
1113                 break;
1114         }
1115
1116         case LFUN_MATH_BIGDELIM: {
1117                 docstring const lname  = from_utf8(cmd.getArg(0));
1118                 docstring const ldelim = from_utf8(cmd.getArg(1));
1119                 docstring const rname  = from_utf8(cmd.getArg(2));
1120                 docstring const rdelim = from_utf8(cmd.getArg(3));
1121                 latexkeys const * l = in_word_set(lname);
1122                 bool const have_l = l && l->inset == "big" &&
1123                                     InsetMathBig::isBigInsetDelim(ldelim);
1124                 l = in_word_set(rname);
1125                 bool const have_r = l && l->inset == "big" &&
1126                                     InsetMathBig::isBigInsetDelim(rdelim);
1127                 // We mimic LFUN_MATH_DELIM in case we have an empty left
1128                 // or right delimiter.
1129                 if (have_l || have_r) {
1130                         cur.recordUndo();
1131                         docstring const selection = grabAndEraseSelection(cur);
1132                         selClearOrDel(cur);
1133                         if (have_l)
1134                                 cur.insert(MathAtom(new InsetMathBig(lname,
1135                                                                 ldelim)));
1136                         // first insert the right delimiter and then go back
1137                         // and re-insert the selection (bug 7088)
1138                         if (have_r) {
1139                                 cur.insert(MathAtom(new InsetMathBig(rname,
1140                                                                 rdelim)));
1141                                 cur.posBackward();
1142                         }
1143                         cur.niceInsert(selection);
1144                 }
1145                 // Don't call cur.undispatched() if we did nothing, this would
1146                 // lead to infinite recursion via Text::dispatch().
1147                 break;
1148         }
1149
1150         case LFUN_SPACE_INSERT: {
1151                 cur.recordUndoSelection();
1152                 string const name = cmd.getArg(0);
1153                 if (name == "normal")
1154                         cur.insert(MathAtom(new InsetMathSpace(" ", "")));
1155                 else if (name == "protected")
1156                         cur.insert(MathAtom(new InsetMathSpace("~", "")));
1157                 else if (name == "thin" || name == "med" || name == "thick")
1158                         cur.insert(MathAtom(new InsetMathSpace(name + "space", "")));
1159                 else if (name == "hfill*")
1160                         cur.insert(MathAtom(new InsetMathSpace("hspace*{\\fill}", "")));
1161                 else if (name == "quad" || name == "qquad" ||
1162                          name == "enspace" || name == "enskip" ||
1163                          name == "negthinspace" || name == "negmedspace" ||
1164                          name == "negthickspace" || name == "hfill")
1165                         cur.insert(MathAtom(new InsetMathSpace(name, "")));
1166                 else if (name == "hspace" || name == "hspace*") {
1167                         string const len = cmd.getArg(1);
1168                         if (len.empty() || !isValidLength(len)) {
1169                                 lyxerr << "LyX function 'space-insert " << name << "' "
1170                                           "needs a valid length argument." << endl;
1171                                 break;
1172                         }
1173                         cur.insert(MathAtom(new InsetMathSpace(name, len)));
1174                 } else
1175                         cur.insert(MathAtom(new InsetMathSpace));
1176                 break;
1177         }
1178
1179         case LFUN_MATH_SPACE:
1180                 cur.recordUndoSelection();
1181                 if (cmd.argument().empty())
1182                         cur.insert(MathAtom(new InsetMathSpace));
1183                 else {
1184                         string const name = cmd.getArg(0);
1185                         string const len = cmd.getArg(1);
1186                         cur.insert(MathAtom(new InsetMathSpace(name, len)));
1187                 }
1188                 break;
1189
1190         case LFUN_ERT_INSERT:
1191                 // interpret this as if a backslash was typed
1192                 cur.recordUndo();
1193                 interpretChar(cur, '\\');
1194                 break;
1195
1196         case LFUN_MATH_SUBSCRIPT:
1197                 // interpret this as if a _ was typed
1198                 cur.recordUndoSelection();
1199                 interpretChar(cur, '_');
1200                 break;
1201
1202         case LFUN_MATH_SUPERSCRIPT:
1203                 // interpret this as if a ^ was typed
1204                 cur.recordUndoSelection();
1205                 interpretChar(cur, '^');
1206                 break;
1207
1208         case LFUN_MATH_MACRO_FOLD:
1209         case LFUN_MATH_MACRO_UNFOLD: {
1210                 Cursor it = cur;
1211                 bool fold = act == LFUN_MATH_MACRO_FOLD;
1212                 bool found = findMacroToFoldUnfold(it, fold);
1213                 if (found) {
1214                         MathMacro * macro = it.nextInset()->asInsetMath()->asMacro();
1215                         cur.recordUndoInset();
1216                         if (fold)
1217                                 macro->fold(cur);
1218                         else
1219                                 macro->unfold(cur);
1220                 }
1221                 break;
1222         }
1223
1224         case LFUN_QUOTE_INSERT:
1225                 // interpret this as if a straight " was typed
1226                 cur.recordUndoSelection();
1227                 interpretChar(cur, '\"');
1228                 break;
1229
1230 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
1231 // handling such that "self-insert" works on "arbitrary stuff" too, and
1232 // math-insert only handles special math things like "matrix".
1233         case LFUN_MATH_INSERT: {
1234                 cur.recordUndoSelection();
1235                 if (cmd.argument() == "^" || cmd.argument() == "_")
1236                         interpretChar(cur, cmd.argument()[0]);
1237                 else {
1238                         MathData ar;
1239                         asArray(cmd.argument(), ar);
1240                         if (cur.selection() && ar.size() == 1
1241                             && ar[0]->asNestInset()
1242                             && ar[0]->asNestInset()->nargs() > 1)
1243                                 handleNest(cur, ar[0]);
1244                         else
1245                                 cur.niceInsert(cmd.argument());
1246                 }
1247                 break;
1248         }
1249
1250         case LFUN_UNICODE_INSERT: {
1251                 if (cmd.argument().empty())
1252                         break;
1253                 docstring hexstring = cmd.argument();
1254                 if (isHex(hexstring)) {
1255                         char_type c = hexToInt(hexstring);
1256                         if (c >= 32 && c < 0x10ffff) {
1257                                 docstring s = docstring(1, c);
1258                                 FuncCode code = currentMode() == MATH_MODE ?
1259                                         LFUN_MATH_INSERT : LFUN_SELF_INSERT;
1260                                 lyx::dispatch(FuncRequest(code, s));
1261                         }
1262                 }
1263                 break;
1264         }
1265
1266         case LFUN_DIALOG_SHOW_NEW_INSET: {
1267                 docstring const & name = cmd.argument();
1268                 string data;
1269                 if (name == "ref") {
1270                         InsetMathRef tmp(buffer_, name);
1271                         data = tmp.createDialogStr();
1272                         cur.bv().showDialog(to_utf8(name), data);
1273                 } else if (name == "mathspace") {
1274                         cur.bv().showDialog(to_utf8(name));
1275                 }
1276                 break;
1277         }
1278
1279         case LFUN_INSET_INSERT: {
1280                 MathData ar;
1281                 if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
1282                         cur.recordUndoSelection();
1283                         cur.insert(ar);
1284                         cur.forceBufferUpdate();                        
1285                 } else
1286                         cur.undispatched();
1287                 break;
1288         }
1289         case LFUN_INSET_DISSOLVE:
1290                 if (!asHullInset()) {
1291                         cur.recordUndoInset();
1292                         cur.pullArg();
1293                 }
1294                 break;
1295
1296         default:
1297                 InsetMath::doDispatch(cur, cmd);
1298                 break;
1299         }
1300 }
1301
1302
1303 bool InsetMathNest::findMacroToFoldUnfold(Cursor & it, bool fold) const {
1304         // look for macro to open/close, but stay in mathed
1305         for (; !it.empty(); it.pop_back()) {
1306
1307                 // go backward through the current cell
1308                 Inset * inset = it.nextInset();
1309                 while (inset && inset->asInsetMath()) {
1310                         MathMacro * macro = inset->asInsetMath()->asMacro();
1311                         if (macro) {
1312                                 // found the an macro to open/close?
1313                                 if (macro->folded() != fold)
1314                                         return true;
1315
1316                                 // Wrong folding state.
1317                                 // If this was the first we see in this slice, look further left,
1318                                 // otherwise go up.
1319                                 if (inset != it.nextInset())
1320                                         break;
1321                         }
1322
1323                         // go up if this was the left most position
1324                         if (it.pos() == 0)
1325                                 break;
1326
1327                         // go left
1328                         it.pos()--;
1329                         inset = it.nextInset();
1330                 }
1331         }
1332
1333         return false;
1334 }
1335
1336
1337 bool InsetMathNest::getStatus(Cursor & cur, FuncRequest const & cmd,
1338                 FuncStatus & flag) const
1339 {
1340         // the font related toggles
1341         //string tc = "mathnormal";
1342         bool ret = true;
1343         string const arg = to_utf8(cmd.argument());
1344         switch (cmd.action()) {
1345         case LFUN_INSET_MODIFY:
1346                 flag.setEnabled(false);
1347                 break;
1348 #if 0
1349         case LFUN_INSET_MODIFY:
1350                 // FIXME: check temporarily disabled
1351                 // valign code
1352                 char align = mathcursor::valign();
1353                 if (align == '\0') {
1354                         enable = false;
1355                         break;
1356                 }
1357                 if (cmd.argument().empty()) {
1358                         flag.clear();
1359                         break;
1360                 }
1361                 if (!contains("tcb", cmd.argument()[0])) {
1362                         enable = false;
1363                         break;
1364                 }
1365                 flag.setOnOff(cmd.argument()[0] == align);
1366                 break;
1367 #endif
1368         /// We have to handle them since 1.4 blocks all unhandled actions
1369         case LFUN_FONT_ITAL:
1370         case LFUN_FONT_BOLD:
1371         case LFUN_FONT_BOLDSYMBOL:
1372         case LFUN_FONT_SANS:
1373         case LFUN_FONT_EMPH:
1374         case LFUN_FONT_TYPEWRITER:
1375         case LFUN_FONT_NOUN:
1376         case LFUN_FONT_ROMAN:
1377         case LFUN_FONT_DEFAULT:
1378                 flag.setEnabled(true);
1379                 break;
1380
1381         // we just need to be in math mode to enable that
1382         case LFUN_MATH_SIZE:
1383         case LFUN_MATH_SPACE:
1384         case LFUN_MATH_EXTERN:
1385                 flag.setEnabled(true);
1386                 break;
1387
1388         case LFUN_FONT_UNDERLINE:
1389         case LFUN_FONT_FRAK:
1390                 flag.setEnabled(currentMode() != TEXT_MODE);
1391                 break;
1392
1393         case LFUN_MATH_FONT_STYLE: {
1394                 bool const textarg =
1395                         arg == "textbf"   || arg == "textsf" ||
1396                         arg == "textrm"   || arg == "textmd" ||
1397                         arg == "textit"   || arg == "textsc" ||
1398                         arg == "textsl"   || arg == "textup" ||
1399                         arg == "texttt"   || arg == "textbb" ||
1400                         arg == "textnormal";
1401                 flag.setEnabled(currentMode() != TEXT_MODE || textarg);
1402                 break;
1403         }
1404
1405         case LFUN_MATH_MODE:
1406                 // forbid "math-mode on" in math mode to prevent irritating
1407                 // behaviour of menu entries (bug 6709)
1408                 flag.setEnabled(currentMode() == TEXT_MODE || arg != "on");
1409                 break;
1410
1411         case LFUN_MATH_INSERT:
1412                 flag.setEnabled(currentMode() != TEXT_MODE);
1413                 break;
1414
1415         case LFUN_MATH_AMS_MATRIX:
1416         case LFUN_MATH_MATRIX:
1417                 flag.setEnabled(currentMode() == MATH_MODE);
1418                 break;
1419
1420         case LFUN_INSET_INSERT: {
1421                 // Don't test createMathInset_fromDialogStr(), since
1422                 // getStatus is not called with a valid reference and the
1423                 // dialog would not be applyable.
1424                 string const name = cmd.getArg(0);
1425                 flag.setEnabled(name == "ref" || name == "mathspace");
1426                 break;
1427         }
1428
1429         case LFUN_DIALOG_SHOW_NEW_INSET: {
1430                 docstring const & name = cmd.argument();
1431                 if (name == "space")
1432                         flag.setEnabled(false);
1433                 break;
1434         }
1435
1436
1437         case LFUN_MATH_DELIM:
1438         case LFUN_MATH_BIGDELIM:
1439                 // Don't do this with multi-cell selections
1440                 flag.setEnabled(cur.selBegin().idx() == cur.selEnd().idx());
1441                 break;
1442
1443         case LFUN_MATH_MACRO_FOLD:
1444         case LFUN_MATH_MACRO_UNFOLD: {
1445                 Cursor it = cur;
1446                 bool found = findMacroToFoldUnfold(it, cmd.action() == LFUN_MATH_MACRO_FOLD);
1447                 flag.setEnabled(found);
1448                 break;
1449         }
1450
1451         case LFUN_SPECIALCHAR_INSERT:
1452         case LFUN_SCRIPT_INSERT:
1453                 // FIXME: These would probably make sense in math-text mode
1454                 flag.setEnabled(false);
1455                 break;
1456
1457         case LFUN_CAPTION_INSERT:
1458                 flag.setEnabled(false);
1459                 break;
1460         
1461         case LFUN_SPACE_INSERT: {
1462                 docstring const & name = cmd.argument();
1463                 if (name == "visible")
1464                         flag.setEnabled(false);
1465                 break;
1466         }
1467
1468         case LFUN_INSET_DISSOLVE:
1469                 flag.setEnabled(!asHullInset());
1470                 break;
1471
1472         case LFUN_PASTE: {
1473                 docstring const & name = cmd.argument();
1474                 if (name == "html" || name == "latex")
1475                         flag.setEnabled(false);
1476                 break;
1477         }
1478
1479         default:
1480                 ret = false;
1481                 break;
1482         }
1483         return ret;
1484 }
1485
1486
1487 void InsetMathNest::edit(Cursor & cur, bool front, EntryDirection entry_from)
1488 {
1489         cur.push(*this);
1490         bool enter_front = (entry_from == Inset::ENTRY_DIRECTION_RIGHT ||
1491                 (entry_from == Inset::ENTRY_DIRECTION_IGNORE && front));
1492         cur.idx() = enter_front ? 0 : cur.lastidx();
1493         cur.pos() = enter_front ? 0 : cur.lastpos();
1494         cur.resetAnchor();
1495         //lyxerr << "InsetMathNest::edit, cur:\n" << cur << endl;
1496 }
1497
1498
1499 Inset * InsetMathNest::editXY(Cursor & cur, int x, int y)
1500 {
1501         int idx_min = 0;
1502         int dist_min = 1000000;
1503         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1504                 int const d = cell(i).dist(cur.bv(), x, y);
1505                 if (d < dist_min) {
1506                         dist_min = d;
1507                         idx_min = i;
1508                 }
1509         }
1510         MathData & ar = cell(idx_min);
1511         cur.push(*this);
1512         cur.idx() = idx_min;
1513         cur.pos() = ar.x2pos(&cur.bv(), x - ar.xo(cur.bv()));
1514
1515         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1516         if (dist_min == 0) {
1517                 // hit inside cell
1518                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1519                         if (ar[i]->covers(cur.bv(), x, y))
1520                                 return ar[i].nucleus()->editXY(cur, x, y);
1521         }
1522         return this;
1523 }
1524
1525
1526 void InsetMathNest::lfunMousePress(Cursor & cur, FuncRequest & cmd)
1527 {
1528         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1529         BufferView & bv = cur.bv();
1530         if (cmd.button() == mouse_button::button3) {
1531                 // Don't do anything if we right-click a
1532                 // selection, a context menu will popup.
1533                 if (bv.cursor().selection() && cur >= bv.cursor().selectionBegin()
1534                       && cur < bv.cursor().selectionEnd()) {
1535                         cur.noScreenUpdate();
1536                         return;
1537                 }
1538         }
1539         bool do_selection = cmd.button() == mouse_button::button1
1540                 && cmd.argument() == "region-select";
1541         bv.mouseSetCursor(cur, do_selection);
1542         if (cmd.button() == mouse_button::button1) {
1543                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1544                 // Update the cursor update flags as needed:
1545                 //
1546                 // Update::Decoration: tells to update the decoration
1547                 //                     (visual box corners that define
1548                 //                     the inset)/
1549                 // Update::FitCursor: adjust the screen to the cursor
1550                 //                    position if needed
1551                 // cur.result().update(): don't overwrite previously set flags.
1552                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor
1553                                 | cur.result().screenUpdate());
1554         } else if (cmd.button() == mouse_button::button2) {
1555                 if (cap::selection()) {
1556                         // See comment in Text::dispatch why we do this
1557                         cap::copySelectionToStack();
1558                         cmd = FuncRequest(LFUN_PASTE, "0");
1559                         doDispatch(bv.cursor(), cmd);
1560                 } else {
1561                         MathData ar;
1562                         asArray(theSelection().get(), ar);
1563                         bv.cursor().insert(ar);
1564                 }
1565         }
1566 }
1567
1568
1569 void InsetMathNest::lfunMouseMotion(Cursor & cur, FuncRequest & cmd)
1570 {
1571         // only select with button 1
1572         if (cmd.button() != mouse_button::button1)
1573                 return;
1574
1575         Cursor & bvcur = cur.bv().cursor();
1576
1577         // ignore motions deeper nested than the real anchor
1578         if (!bvcur.realAnchor().hasPart(cur)) {
1579                 cur.undispatched();
1580                 return;
1581         }
1582
1583         CursorSlice old = bvcur.top();
1584
1585         // We continue with our existing selection or start a new one, so don't
1586         // reset the anchor.
1587         bvcur.setCursor(cur);
1588         // Did we actually move?
1589         if (cur.top() == old)
1590                 // We didn't move one iota, so no need to change selection status
1591                 // or update the screen.
1592                 cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1593         else
1594                 bvcur.setSelection();
1595 }
1596
1597
1598 void InsetMathNest::lfunMouseRelease(Cursor & cur, FuncRequest & cmd)
1599 {
1600         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1601
1602         if (cmd.button() == mouse_button::button1) {
1603                 if (!cur.selection())
1604                         cur.noScreenUpdate();
1605                 else {
1606                         Cursor & bvcur = cur.bv().cursor();
1607                         bvcur.setSelection(true);
1608                 }
1609                 return;
1610         }
1611
1612         cur.undispatched();
1613 }
1614
1615
1616 bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
1617 {
1618         //lyxerr << "interpret 2: '" << c << "'" << endl;
1619         docstring save_selection;
1620         if (c == '^' || c == '_')
1621                 save_selection = grabAndEraseSelection(cur);
1622
1623         cur.clearTargetX();
1624         Buffer * buf = cur.buffer();
1625
1626         // handle macroMode
1627         if (cur.inMacroMode()) {
1628                 docstring name = cur.macroName();
1629
1630                 /// are we currently typing '#1' or '#2' or...?
1631                 if (name == "\\#") {
1632                         cur.backspace();
1633                         int n = c - '0';
1634                         if (n >= 1 && n <= 9)
1635                                 cur.insert(new MathMacroArgument(n));
1636                         return true;
1637                 }
1638
1639                 // do not finish macro for known * commands
1640                 MathWordList const & mwl = mathedWordList();
1641                 bool star_macro = c == '*'
1642                         && (mwl.find(name.substr(1) + "*") != mwl.end()
1643                             || cur.buffer()->getMacro(name.substr(1) + "*", cur, true));
1644                 if (isAlphaASCII(c) || star_macro) {
1645                         cur.activeMacro()->setName(name + docstring(1, c));
1646                         return true;
1647                 }
1648
1649                 // handle 'special char' macros
1650                 if (name == "\\") {
1651                         // remove the '\\'
1652                         if (c == '\\') {
1653                                 cur.backspace();
1654                                 if (currentMode() <= InsetMath::TEXT_MODE)
1655                                         cur.niceInsert(createInsetMath("textbackslash", buf));
1656                                 else
1657                                         cur.niceInsert(createInsetMath("backslash", buf));
1658                         } else if (c == '^' && currentMode() == InsetMath::MATH_MODE) {
1659                                 cur.backspace();
1660                                 cur.niceInsert(createInsetMath("mathcircumflex", buf));
1661                         } else if (c == '{') {
1662                                 cur.backspace();
1663                                 cur.niceInsert(MathAtom(new InsetMathBrace(buf)));
1664                         } else if (c == '%') {
1665                                 cur.backspace();
1666                                 cur.niceInsert(MathAtom(new InsetMathComment(buf)));
1667                         } else if (c == '#') {
1668                                 LASSERT(cur.activeMacro(), return false);
1669                                 cur.activeMacro()->setName(name + docstring(1, c));
1670                         } else {
1671                                 cur.backspace();
1672                                 cur.niceInsert(createInsetMath(docstring(1, c), buf));
1673                         }
1674                         return true;
1675                 }
1676
1677                 // One character big delimiters. The others are handled in
1678                 // interpretString().
1679                 latexkeys const * l = in_word_set(name.substr(1));
1680                 if (name[0] == '\\' && l && l->inset == "big") {
1681                         docstring delim;
1682                         switch (c) {
1683                         case '{':
1684                                 delim = from_ascii("\\{");
1685                                 break;
1686                         case '}':
1687                                 delim = from_ascii("\\}");
1688                                 break;
1689                         default:
1690                                 delim = docstring(1, c);
1691                                 break;
1692                         }
1693                         if (InsetMathBig::isBigInsetDelim(delim)) {
1694                                 // name + delim ared a valid InsetMathBig.
1695                                 // We can't use cur.macroModeClose() because
1696                                 // it does not handle delim.
1697                                 InsetMathUnknown * p = cur.activeMacro();
1698                                 p->finalize();
1699                                 --cur.pos();
1700                                 cur.cell().erase(cur.pos());
1701                                 cur.plainInsert(MathAtom(
1702                                         new InsetMathBig(name.substr(1), delim)));
1703                                 return true;
1704                         }
1705                 } else if (name == "\\smash" && c == '[') {
1706                         // We can't use cur.macroModeClose() because
1707                         // it would create an InsetMathPhantom
1708                         InsetMathUnknown * p = cur.activeMacro();
1709                         p->finalize();
1710                         interpretChar(cur, c);
1711                         return true;
1712                 }
1713
1714                 // leave macro mode and try again if necessary
1715                 if (cur.macroModeClose()) {
1716                         MathAtom const atom = cur.prevAtom();
1717                         if (atom->asNestInset() && atom->isActive()) {
1718                                 cur.posBackward();
1719                                 cur.pushBackward(*cur.nextInset());
1720                         }
1721                 }
1722                 if (c == '{')
1723                         cur.niceInsert(MathAtom(new InsetMathBrace(buf)));
1724                 else if (c != ' ')
1725                         interpretChar(cur, c);
1726                 return true;
1727         }
1728
1729
1730         // leave autocorrect mode if necessary
1731         if (lyxrc.autocorrection_math && c == ' ' && cur.autocorrect()) {
1732                 cur.autocorrect() = false;
1733                 cur.message(_("Autocorrect Off ('!' to enter)"));
1734                 return true;
1735         } 
1736         if (lyxrc.autocorrection_math && c == '!' && !cur.autocorrect()) {
1737                 cur.autocorrect() = true;
1738                 cur.message(_("Autocorrect On (<space> to exit)"));
1739                 return true;
1740         }
1741
1742         // just clear selection on pressing the space bar
1743         if (cur.selection() && c == ' ') {
1744                 cur.setSelection(false);
1745                 return true;
1746         }
1747
1748         if (c == '\\') {
1749                 //lyxerr << "starting with macro" << endl;
1750                 bool reduced = cap::reduceSelectionToOneCell(cur);
1751                 if (reduced || !cur.selection()) {
1752                         cur.recordUndoInset();
1753                         docstring const safe = cap::grabAndEraseSelection(cur);
1754                         if (!cur.inRegexped())
1755                                 cur.insert(MathAtom(new InsetMathUnknown(from_ascii("\\"), safe, false)));
1756                         else
1757                                 cur.niceInsert(createInsetMath("backslash", buf));
1758                 }
1759                 return true;
1760         }
1761
1762         selClearOrDel(cur);
1763
1764         if (c == '\n') {
1765                 if (currentMode() <= InsetMath::TEXT_MODE)
1766                         cur.insert(c);
1767                 return true;
1768         }
1769
1770         if (c == ' ') {
1771                 if (currentMode() <= InsetMath::TEXT_MODE) {
1772                         // insert spaces in text or undecided mode,
1773                         // but suppress direct insertion of two spaces in a row
1774                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1775                         // it is better than nothing...
1776                         if (cur.pos() == 0 || cur.prevAtom()->getChar() != ' ') {
1777                                 cur.insert(c);
1778                                 // FIXME: we have to enable full redraw here because of the
1779                                 // visual box corners that define the inset. If we know for
1780                                 // sure that we stay within the same cell we can optimize for
1781                                 // that using:
1782                                 //cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1783                         }
1784                         return true;
1785                 }
1786                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1787                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1788                         // FIXME: we have to enable full redraw here because of the
1789                         // visual box corners that define the inset. If we know for
1790                         // sure that we stay within the same cell we can optimize for
1791                         // that using:
1792                         //cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1793                         return true;
1794                 }
1795
1796                 if (cur.popForward()) {
1797                         // FIXME: we have to enable full redraw here because of the
1798                         // visual box corners that define the inset. If we know for
1799                         // sure that we stay within the same cell we can optimize for
1800                         // that using:
1801                         //cur.screenUpdateFlags(Update::FitCursor);
1802                         return true;
1803                 }
1804
1805                 // if we are at the very end, leave the formula
1806                 return cur.pos() != cur.lastpos();
1807         }
1808
1809         // These should be treated differently when not in text mode:
1810         if (cur.inRegexped()) {
1811                 switch (c) {
1812                 case '\\':
1813                         cur.niceInsert(createInsetMath("backslash", buf));
1814                         break;
1815                 case '^':
1816                         cur.niceInsert(createInsetMath("mathcircumflex", buf));
1817                         break;
1818                 case '{':
1819                 case '}':
1820                 case '#':
1821                 case '%':
1822                 case '_':
1823                         cur.niceInsert(createInsetMath(docstring(1, c), buf));
1824                         break;
1825                 case '~':
1826                         cur.niceInsert(createInsetMath("sim", buf));
1827                         break;
1828                 default:
1829                         cur.insert(c);
1830                 }
1831                 return true;
1832         } else if (currentMode() != InsetMath::TEXT_MODE) {
1833                 if (c == '_') {
1834                         script(cur, false, save_selection);
1835                         return true;
1836                 }
1837                 if (c == '^') {
1838                         script(cur, true, save_selection);
1839                         return true;
1840                 }
1841                 if (c == '~') {
1842                         cur.niceInsert(createInsetMath("sim", buf));
1843                         return true;
1844                 }
1845                 if (currentMode() == InsetMath::MATH_MODE && !isAsciiOrMathAlpha(c)) {
1846                         MathAtom at = createInsetMath("text", buf);
1847                         at.nucleus()->cell(0).push_back(MathAtom(new InsetMathChar(c)));
1848                         cur.niceInsert(at);
1849                         cur.posForward();
1850                         return true;
1851                 }
1852         } else {
1853                 if (c == '^') {
1854                         cur.niceInsert(createInsetMath("textasciicircum", buf));
1855                         return true;
1856                 }
1857                 if (c == '~') {
1858                         cur.niceInsert(createInsetMath("textasciitilde", buf));
1859                         return true;
1860                 }
1861         }
1862
1863         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' ||
1864             c == '%' || c == '_') {
1865                 cur.niceInsert(createInsetMath(docstring(1, c), buf));
1866                 return true;
1867         }
1868
1869
1870         // try auto-correction
1871         if (lyxrc.autocorrection_math && cur.autocorrect() && cur.pos() != 0
1872                   && math_autocorrect(cur.prevAtom(), c))
1873                 return true;
1874
1875         // no special circumstances, so insert the character without any fuss
1876         cur.insert(c);
1877         if (lyxrc.autocorrection_math) {
1878                 if (!cur.autocorrect())
1879                         cur.message(_("Autocorrect Off ('!' to enter)"));
1880                 else
1881                         cur.message(_("Autocorrect On (<space> to exit)"));
1882         }
1883         return true;
1884 }
1885
1886
1887 bool InsetMathNest::interpretString(Cursor & cur, docstring const & str)
1888 {
1889         // Create a InsetMathBig from cur.cell()[cur.pos() - 1] and t if
1890         // possible
1891         if (!cur.empty() && cur.pos() > 0 &&
1892             cur.cell()[cur.pos() - 1]->asUnknownInset()) {
1893                 if (InsetMathBig::isBigInsetDelim(str)) {
1894                         docstring prev = asString(cur.cell()[cur.pos() - 1]);
1895                         if (prev[0] == '\\') {
1896                                 prev = prev.substr(1);
1897                                 latexkeys const * l = in_word_set(prev);
1898                                 if (l && l->inset == "big") {
1899                                         cur.cell()[cur.pos() - 1] =
1900                                                 MathAtom(new InsetMathBig(prev, str));
1901                                         return true;
1902                                 }
1903                         }
1904                 }
1905         }
1906         return false;
1907 }
1908
1909
1910 bool InsetMathNest::script(Cursor & cur, bool up)
1911 {
1912         return script(cur, up, docstring());
1913 }
1914
1915
1916 bool InsetMathNest::script(Cursor & cur, bool up,
1917                 docstring const & save_selection)
1918 {
1919         // Hack to get \^ and \_ working
1920         //lyxerr << "handling script: up: " << up << endl;
1921         if (cur.inMacroMode() && cur.macroName() == "\\") {
1922                 if (up)
1923                         cur.niceInsert(createInsetMath("mathcircumflex", cur.buffer()));
1924                 else
1925                         interpretChar(cur, '_');
1926                 return true;
1927         }
1928
1929         cur.macroModeClose();
1930         if (asScriptInset() && cur.idx() == 0) {
1931                 // we are in a nucleus of a script inset, move to _our_ script
1932                 InsetMathScript * inset = asScriptInset();
1933                 //lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1934                 inset->ensure(up);
1935                 cur.idx() = inset->idxOfScript(up);
1936                 cur.pos() = 0;
1937         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1938                 --cur.pos();
1939                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1940                 cur.push(*inset);
1941                 inset->ensure(up);
1942                 cur.idx() = inset->idxOfScript(up);
1943                 cur.pos() = cur.lastpos();
1944         } else {
1945                 // convert the thing to our left to a scriptinset or create a new
1946                 // one if in the very first position of the array
1947                 if (cur.pos() == 0) {
1948                         //lyxerr << "new scriptinset" << endl;
1949                         cur.insert(new InsetMathScript(buffer_, up));
1950                 } else {
1951                         //lyxerr << "converting prev atom " << endl;
1952                         cur.prevAtom() = MathAtom(new InsetMathScript(buffer_, cur.prevAtom(), up));
1953                 }
1954                 --cur.pos();
1955                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1956                 // See comment in MathParser.cpp for special handling of {}-bases
1957
1958                 cur.push(*inset);
1959                 cur.idx() = 1;
1960                 cur.pos() = 0;
1961         }
1962         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1963         cur.niceInsert(save_selection);
1964         cur.resetAnchor();
1965         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1966         return true;
1967 }
1968
1969
1970 bool InsetMathNest::completionSupported(Cursor const & cur) const
1971 {
1972         return cur.inMacroMode();
1973 }
1974
1975
1976 bool InsetMathNest::inlineCompletionSupported(Cursor const & cur) const
1977 {
1978         return cur.inMacroMode();
1979 }
1980
1981
1982 bool InsetMathNest::automaticInlineCompletion() const
1983 {
1984         return lyxrc.completion_inline_math;
1985 }
1986
1987
1988 bool InsetMathNest::automaticPopupCompletion() const
1989 {
1990         return lyxrc.completion_popup_math;
1991 }
1992
1993
1994 CompletionList const *
1995 InsetMathNest::createCompletionList(Cursor const & cur) const
1996 {
1997         if (!cur.inMacroMode())
1998                 return 0;
1999
2000         return new MathCompletionList(cur);
2001 }
2002
2003
2004 docstring InsetMathNest::completionPrefix(Cursor const & cur) const
2005 {
2006         if (!cur.inMacroMode())
2007                 return docstring();
2008
2009         return cur.activeMacro()->name();
2010 }
2011
2012
2013 bool InsetMathNest::insertCompletion(Cursor & cur, docstring const & s,
2014                                      bool finished)
2015 {
2016         if (!cur.inMacroMode())
2017                 return false;
2018
2019         // append completion to active macro
2020         InsetMathUnknown * inset = cur.activeMacro();
2021         inset->setName(inset->name() + s);
2022
2023         // finish macro
2024         if (finished) {
2025 #if 0
2026                 // FIXME: this creates duplicates in the completion popup
2027                 // which looks ugly. Moreover the changes the list lengths
2028                 // which seems to
2029                 confuse the popup as well.
2030                 MathCompletionList::addToFavorites(inset->name());
2031 #endif
2032                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, " "));
2033         }
2034
2035         return true;
2036 }
2037
2038
2039 void InsetMathNest::completionPosAndDim(Cursor const & cur, int & x, int & y,
2040                                         Dimension & dim) const
2041 {
2042         Inset const * inset = cur.activeMacro();
2043         if (!inset)
2044                 return;
2045
2046         // get inset dimensions
2047         dim = cur.bv().coordCache().insets().dim(inset);
2048         // FIXME: these 3 are no accurate, but should depend on the font.
2049         // Now the popup jumps down if you enter a char with descent > 0.
2050         dim.des += 3;
2051         dim.asc += 3;
2052
2053         // and position
2054         Point xy = cur.bv().coordCache().insets().xy(inset);
2055         x = xy.x_;
2056         y = xy.y_;
2057 }
2058
2059
2060 bool InsetMathNest::cursorMathForward(Cursor & cur)
2061 {
2062         if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
2063                 cur.pushBackward(*cur.nextAtom().nucleus());
2064                 cur.inset().idxFirst(cur);
2065                 return true;
2066         }
2067         if (cur.posForward() || idxForward(cur))
2068                 return true;
2069         // try to pop forwards --- but don't pop out of math! leave that to
2070         // the FINISH lfuns
2071         int s = cur.depth() - 2;
2072         if (s >= 0 && cur[s].inset().asInsetMath())
2073                 return cur.popForward();
2074         return false;
2075 }
2076
2077
2078 bool InsetMathNest::cursorMathBackward(Cursor & cur)
2079 {
2080         if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
2081                 cur.posBackward();
2082                 cur.push(*cur.nextAtom().nucleus());
2083                 cur.inset().idxLast(cur);
2084                 return true;
2085         }
2086         if (cur.posBackward() || idxBackward(cur))
2087                 return true;
2088         // try to pop backwards --- but don't pop out of math! leave that to
2089         // the FINISH lfuns
2090         int s = cur.depth() - 2;
2091         if (s >= 0 && cur[s].inset().asInsetMath())
2092                 return cur.popBackward();
2093         return false;
2094 }
2095
2096
2097 ////////////////////////////////////////////////////////////////////
2098
2099 MathCompletionList::MathCompletionList(Cursor const & cur)
2100 {
2101         // fill it with macros from the buffer
2102         MacroNameSet macros;
2103         cur.buffer()->listMacroNames(macros);
2104         MacroNameSet::const_iterator it;
2105         for (it = macros.begin(); it != macros.end(); ++it) {
2106                 if (cur.buffer()->getMacro(*it, cur, false))
2107                         locals.push_back("\\" + *it);
2108         }
2109         sort(locals.begin(), locals.end());
2110
2111         if (!globals.empty())
2112                 return;
2113
2114         // fill in global macros
2115         macros.clear();
2116         MacroTable::globalMacros().getMacroNames(macros);
2117         //lyxerr << "Globals completion macros: ";
2118         for (it = macros.begin(); it != macros.end(); ++it) {
2119                 //lyxerr << "\\" + *it << " ";
2120                 globals.push_back("\\" + *it);
2121         }
2122         //lyxerr << std::endl;
2123
2124         // fill in global commands
2125         globals.push_back(from_ascii("\\boxed"));
2126         globals.push_back(from_ascii("\\fbox"));
2127         globals.push_back(from_ascii("\\framebox"));
2128         globals.push_back(from_ascii("\\makebox"));
2129         globals.push_back(from_ascii("\\kern"));
2130         globals.push_back(from_ascii("\\xrightarrow"));
2131         globals.push_back(from_ascii("\\xleftarrow"));
2132         globals.push_back(from_ascii("\\split"));
2133         globals.push_back(from_ascii("\\gathered"));
2134         globals.push_back(from_ascii("\\aligned"));
2135         globals.push_back(from_ascii("\\alignedat"));
2136         globals.push_back(from_ascii("\\cases"));
2137         globals.push_back(from_ascii("\\substack"));
2138         globals.push_back(from_ascii("\\xymatrix"));
2139         globals.push_back(from_ascii("\\Diagram"));
2140         globals.push_back(from_ascii("\\subarray"));
2141         globals.push_back(from_ascii("\\array"));
2142         globals.push_back(from_ascii("\\sqrt"));
2143         globals.push_back(from_ascii("\\root"));
2144         globals.push_back(from_ascii("\\tabular"));
2145         globals.push_back(from_ascii("\\stackrel"));
2146         globals.push_back(from_ascii("\\stackrelthree"));
2147         globals.push_back(from_ascii("\\binom"));
2148         globals.push_back(from_ascii("\\choose"));
2149         globals.push_back(from_ascii("\\brace"));
2150         globals.push_back(from_ascii("\\brack"));
2151         globals.push_back(from_ascii("\\frac"));
2152         globals.push_back(from_ascii("\\over"));
2153         globals.push_back(from_ascii("\\nicefrac"));
2154         globals.push_back(from_ascii("\\unitfrac"));
2155         globals.push_back(from_ascii("\\unitfracthree"));
2156         globals.push_back(from_ascii("\\unitone"));
2157         globals.push_back(from_ascii("\\unittwo"));
2158         globals.push_back(from_ascii("\\infer"));
2159         globals.push_back(from_ascii("\\atop"));
2160         globals.push_back(from_ascii("\\lefteqn"));
2161         globals.push_back(from_ascii("\\boldsymbol"));
2162         globals.push_back(from_ascii("\\bm"));
2163         globals.push_back(from_ascii("\\color"));
2164         globals.push_back(from_ascii("\\normalcolor"));
2165         globals.push_back(from_ascii("\\textcolor"));
2166         globals.push_back(from_ascii("\\cfrac"));
2167         globals.push_back(from_ascii("\\cfracleft"));
2168         globals.push_back(from_ascii("\\cfracright"));
2169         globals.push_back(from_ascii("\\dfrac"));
2170         globals.push_back(from_ascii("\\tfrac"));
2171         globals.push_back(from_ascii("\\dbinom"));
2172         globals.push_back(from_ascii("\\tbinom"));
2173         globals.push_back(from_ascii("\\hphantom"));
2174         globals.push_back(from_ascii("\\phantom"));
2175         globals.push_back(from_ascii("\\vphantom"));
2176         globals.push_back(from_ascii("\\cancel"));
2177         globals.push_back(from_ascii("\\bcancel"));
2178         globals.push_back(from_ascii("\\xcancel"));
2179         globals.push_back(from_ascii("\\cancelto"));
2180         globals.push_back(from_ascii("\\smash"));
2181         globals.push_back(from_ascii("\\mathclap"));
2182         globals.push_back(from_ascii("\\mathllap"));
2183         globals.push_back(from_ascii("\\mathrlap"));
2184         MathWordList const & words = mathedWordList();
2185         MathWordList::const_iterator it2;
2186         //lyxerr << "Globals completion commands: ";
2187         for (it2 = words.begin(); it2 != words.end(); ++it2) {
2188                 globals.push_back("\\" + (*it2).first);
2189                 //lyxerr << "\\" + (*it2).first << " ";
2190         }
2191         //lyxerr << std::endl;
2192         sort(globals.begin(), globals.end());
2193 }
2194
2195
2196 MathCompletionList::~MathCompletionList()
2197 {
2198 }
2199
2200
2201 size_type MathCompletionList::size() const
2202 {
2203         return locals.size() + globals.size();
2204 }
2205
2206
2207 docstring const & MathCompletionList::data(size_t idx) const
2208 {
2209         size_t lsize = locals.size();
2210         if (idx >= lsize)
2211                 return globals[idx - lsize];
2212         else
2213                 return locals[idx];
2214 }
2215
2216
2217 std::string MathCompletionList::icon(size_t idx) const
2218 {
2219         // get the latex command
2220         docstring cmd;
2221         size_t lsize = locals.size();
2222         if (idx >= lsize)
2223                 cmd = globals[idx - lsize];
2224         else
2225                 cmd = locals[idx];
2226
2227         // get the icon resource name by stripping the backslash
2228         return "images/math/" + to_utf8(cmd.substr(1)) + ".png";
2229 }
2230
2231 std::vector<docstring> MathCompletionList::globals;
2232
2233 } // namespace lyx