]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathNest.cpp
Remove unneccessary uses of dynamic_cast from the code.
[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, /**/);
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, /**/);
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, /**/);
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, /**/);
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, /**/);
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         ModeSpecifier specifier(os, currentMode(), lockedMode());
375         docstring const latex_name = name();
376         os << '\\' << latex_name;
377         for (size_t i = 0; i < nargs(); ++i)
378                 os << '{' << cell(i) << '}';
379         if (nargs() == 0)
380                 os.pendingSpace(true);
381         if (lock_ && !os.latex()) {
382                 os << "\\lyxlock";
383                 os.pendingSpace(true);
384         }
385 }
386
387
388 void InsetMathNest::normalize(NormalStream & os) const
389 {
390         os << '[' << name();
391         for (size_t i = 0; i < nargs(); ++i)
392                 os << ' ' << cell(i);
393         os << ']';
394 }
395
396
397 int InsetMathNest::latex(odocstream & os, OutputParams const & runparams) const
398 {
399         WriteStream wi(os, runparams.moving_arg, true,
400                        runparams.dryrun ? WriteStream::wsDryrun : WriteStream::wsDefault,
401                        runparams.encoding);
402         write(wi);
403         return wi.line();
404 }
405
406
407 bool InsetMathNest::setMouseHover(BufferView const * bv, bool mouse_hover)
408 {
409         mouse_hover_[bv] = mouse_hover;
410         return true;
411 }
412
413
414 bool InsetMathNest::notifyCursorLeaves(Cursor const & /*old*/, Cursor & /*cur*/)
415 {
416         // FIXME: look here
417 #if 0
418         MathData & ar = cur.cell();
419         // remove base-only "scripts"
420         for (pos_type i = 0; i + 1 < ar.size(); ++i) {
421                 InsetMathScript * p = operator[](i).nucleus()->asScriptInset();
422                 if (p && p->nargs() == 1) {
423                         MathData ar = p->nuc();
424                         erase(i);
425                         insert(i, ar);
426                         cur.adjust(i, ar.size() - 1);
427                 }
428         }
429
430         // glue adjacent font insets of the same kind
431         for (pos_type i = 0; i + 1 < size(); ++i) {
432                 InsetMathFont * p = operator[](i).nucleus()->asFontInset();
433                 InsetMathFont const * q = operator[](i + 1)->asFontInset();
434                 if (p && q && p->name() == q->name()) {
435                         p->cell(0).append(q->cell(0));
436                         erase(i + 1);
437                         cur.adjust(i, -1);
438                 }
439         }
440 #endif
441         return false;
442 }
443
444
445 void InsetMathNest::handleFont
446         (Cursor & cur, docstring const & arg, char const * const font)
447 {
448         handleFont(cur, arg, from_ascii(font));
449 }
450
451
452 void InsetMathNest::handleFont(Cursor & cur, docstring const & arg,
453         docstring const & font)
454 {
455         cur.recordUndoSelection();
456
457         // this whole function is a hack and won't work for incremental font
458         // changes...
459         if (cur.inset().asInsetMath()->name() == font)
460                 cur.handleFont(to_utf8(font));
461         else
462                 handleNest(cur, createInsetMath(font, cur.buffer()), arg);
463 }
464
465
466 void InsetMathNest::handleNest(Cursor & cur, MathAtom const & nest)
467 {
468         handleNest(cur, nest, docstring());
469 }
470
471
472 void InsetMathNest::handleNest(Cursor & cur, MathAtom const & nest,
473         docstring const & arg)
474 {
475         CursorSlice i1 = cur.selBegin();
476         CursorSlice i2 = cur.selEnd();
477         if (!i1.inset().asInsetMath())
478                 return;
479         if (i1.idx() == i2.idx()) {
480                 // the easy case where only one cell is selected
481                 cur.handleNest(nest);
482                 cur.insert(arg);
483                 return;
484         }
485
486         // multiple selected cells in a simple non-grid inset
487         if (i1.asInsetMath()->nrows() == 0 || i1.asInsetMath()->ncols() == 0) {
488                 for (idx_type i = i1.idx(); i <= i2.idx(); ++i) {
489                         // select cell
490                         cur.idx() = i;
491                         cur.pos() = 0;
492                         cur.resetAnchor();
493                         cur.pos() = cur.lastpos();
494                         cur.setSelection();
495
496                         // change font of cell
497                         cur.handleNest(nest);
498                         cur.insert(arg);
499
500                         // cur is in the font inset now. If the loop continues,
501                         // we need to get outside again for the next cell
502                         if (i + 1 <= i2.idx())
503                                 cur.pop_back();
504                 }
505                 return;
506         }
507
508         // the complicated case with multiple selected cells in a grid
509         row_type r1, r2;
510         col_type c1, c2;
511         cap::region(i1, i2, r1, r2, c1, c2);
512         for (row_type row = r1; row <= r2; ++row) {
513                 for (col_type col = c1; col <= c2; ++col) {
514                         // select cell
515                         cur.idx() = i1.asInsetMath()->index(row, col);
516                         cur.pos() = 0;
517                         cur.resetAnchor();
518                         cur.pos() = cur.lastpos();
519                         cur.setSelection();
520
521                         //
522                         cur.handleNest(nest);
523                         cur.insert(arg);
524
525                         // cur is in the font inset now. If the loop continues,
526                         // we need to get outside again for the next cell
527                         if (col + 1 <= c2 || row + 1 <= r2)
528                                 cur.pop_back();
529                 }
530         }
531 }
532
533
534 void InsetMathNest::handleFont2(Cursor & cur, docstring const & arg)
535 {
536         cur.recordUndoSelection();
537         Font font;
538         bool b;
539         font.fromString(to_utf8(arg), b);
540         if (font.fontInfo().color() != Color_inherit &&
541             font.fontInfo().color() != Color_ignore)
542                 handleNest(cur, MathAtom(new InsetMathColor(buffer_, true, font.fontInfo().color())));
543
544         // FIXME: support other font changes here as well?
545 }
546
547
548 void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd)
549 {
550         //LYXERR0("InsetMathNest: request: " << cmd);
551
552         Parse::flags parseflg = Parse::QUIET | Parse::USETEXT;
553
554         FuncCode const act = cmd.action();
555         switch (act) {
556
557         case LFUN_CLIPBOARD_PASTE:
558                 parseflg |= Parse::VERBATIM;
559                 // fall through
560         case LFUN_PASTE: {
561                 if (cur.currentMode() <= TEXT_MODE)
562                         parseflg |= Parse::TEXTMODE;
563                 cur.recordUndoSelection();
564                 cur.message(_("Paste"));
565                 replaceSelection(cur);
566                 docstring topaste;
567                 if (cmd.argument().empty() && !theClipboard().isInternal())
568                         topaste = theClipboard().getAsText();
569                 else {
570                         size_t n = 0;
571                         idocstringstream is(cmd.argument());
572                         is >> n;
573                         topaste = cap::selection(n);
574                 }
575                 cur.niceInsert(topaste, parseflg, false);
576                 cur.clearSelection(); // bug 393
577                 cur.forceBufferUpdate();
578                 cur.finishUndo();
579                 break;
580         }
581
582         case LFUN_CUT:
583                 cur.recordUndo();
584                 cutSelection(cur, true, true);
585                 cur.message(_("Cut"));
586                 // Prevent stale position >= size crash
587                 // Probably not necessary anymore, see eraseSelection (gb 2005-10-09)
588                 cur.normalize();
589                 cur.forceBufferUpdate();
590                 break;
591
592         case LFUN_COPY:
593                 copySelection(cur);
594                 cur.message(_("Copy"));
595                 break;
596
597         case LFUN_MOUSE_PRESS:
598                 lfunMousePress(cur, cmd);
599                 break;
600
601         case LFUN_MOUSE_MOTION:
602                 lfunMouseMotion(cur, cmd);
603                 break;
604
605         case LFUN_MOUSE_RELEASE:
606                 lfunMouseRelease(cur, cmd);
607                 break;
608
609         case LFUN_FINISHED_LEFT: // in math, left is backwards
610         case LFUN_FINISHED_BACKWARD:
611                 cur.bv().cursor() = cur;
612                 break;
613
614         case LFUN_FINISHED_RIGHT: // in math, right is forward
615         case LFUN_FINISHED_FORWARD:
616                 ++cur.pos();
617                 cur.bv().cursor() = cur;
618                 break;
619
620         case LFUN_CHAR_RIGHT:
621         case LFUN_CHAR_LEFT:
622         case LFUN_CHAR_BACKWARD:
623         case LFUN_CHAR_FORWARD:
624                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
625         case LFUN_CHAR_RIGHT_SELECT:
626         case LFUN_CHAR_LEFT_SELECT:
627         case LFUN_CHAR_BACKWARD_SELECT:
628         case LFUN_CHAR_FORWARD_SELECT: {
629                 // are we in a selection?
630                 bool select = (act == LFUN_CHAR_RIGHT_SELECT
631                                            || act == LFUN_CHAR_LEFT_SELECT
632                                            || act == LFUN_CHAR_BACKWARD_SELECT
633                                            || act == LFUN_CHAR_FORWARD_SELECT);
634                 // are we moving forward or backwards?
635                 // If the command was RIGHT or LEFT, then whether we're moving forward
636                 // or backwards depends on the cursor movement mode (logical or visual):
637                 //  * in visual mode, since math is always LTR, right -> forward,
638                 //    left -> backwards
639                 //  * in logical mode, the mapping is determined by the
640                 //    reverseDirectionNeeded() function
641
642                 bool forward;
643                 FuncCode finish_lfun;
644
645                 if (act == LFUN_CHAR_FORWARD
646                                 || act == LFUN_CHAR_FORWARD_SELECT) {
647                         forward = true;
648                         finish_lfun = LFUN_FINISHED_FORWARD;
649                 }
650                 else if (act == LFUN_CHAR_BACKWARD
651                                 || act == LFUN_CHAR_BACKWARD_SELECT) {
652                         forward = false;
653                         finish_lfun = LFUN_FINISHED_BACKWARD;
654                 }
655                 else {
656                         bool right = (act == LFUN_CHAR_RIGHT_SELECT
657                                                   || act == LFUN_CHAR_RIGHT);
658                         if (lyxrc.visual_cursor || !reverseDirectionNeeded(cur))
659                                 forward = right;
660                         else
661                                 forward = !right;
662
663                         if (right)
664                                 finish_lfun = LFUN_FINISHED_RIGHT;
665                         else
666                                 finish_lfun = LFUN_FINISHED_LEFT;
667                 }
668                 // Now that we know exactly what we want to do, let's do it!
669                 cur.selHandle(select);
670                 cur.clearTargetX();
671                 cur.macroModeClose();
672                 // try moving forward or backwards as necessary...
673                 if (!(forward ? cursorMathForward(cur) : cursorMathBackward(cur))) {
674                         // ... and if movement failed, then finish forward or backwards
675                         // as necessary
676                         cmd = FuncRequest(finish_lfun);
677                         cur.undispatched();
678                 }
679                 break;
680         }
681
682         case LFUN_DOWN:
683         case LFUN_UP:
684                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
685         case LFUN_DOWN_SELECT:
686         case LFUN_UP_SELECT: {
687                 // close active macro
688                 if (cur.inMacroMode()) {
689                         cur.macroModeClose();
690                         break;
691                 }
692
693                 // stop/start the selection
694                 bool select = act == LFUN_DOWN_SELECT ||
695                         act == LFUN_UP_SELECT;
696                 cur.selHandle(select);
697
698                 // go up/down
699                 bool up = act == LFUN_UP || act == LFUN_UP_SELECT;
700                 bool successful = cur.upDownInMath(up);
701                 if (successful)
702                         break;
703
704                 if (cur.fixIfBroken())
705                         // FIXME: Something bad happened. We pass the corrected Cursor
706                         // instead of letting things go worse.
707                         break;
708
709                 // We did not manage to move the cursor.
710                 cur.undispatched();
711                 break;
712         }
713
714         case LFUN_MOUSE_DOUBLE:
715         case LFUN_MOUSE_TRIPLE:
716         case LFUN_WORD_SELECT:
717                 cur.pos() = 0;
718                 cur.idx() = 0;
719                 cur.resetAnchor();
720                 cur.setSelection(true);
721                 cur.pos() = cur.lastpos();
722                 cur.idx() = cur.lastidx();
723                 break;
724
725         case LFUN_PARAGRAPH_UP:
726         case LFUN_PARAGRAPH_DOWN:
727                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
728         case LFUN_PARAGRAPH_UP_SELECT:
729         case LFUN_PARAGRAPH_DOWN_SELECT:
730                 break;
731
732         case LFUN_LINE_BEGIN:
733         case LFUN_WORD_BACKWARD:
734         case LFUN_WORD_LEFT:
735                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
736         case LFUN_LINE_BEGIN_SELECT:
737         case LFUN_WORD_BACKWARD_SELECT:
738         case LFUN_WORD_LEFT_SELECT:
739                 cur.selHandle(act == LFUN_WORD_BACKWARD_SELECT ||
740                                 act == LFUN_WORD_LEFT_SELECT ||
741                                 act == LFUN_LINE_BEGIN_SELECT);
742                 cur.macroModeClose();
743                 if (cur.pos() != 0) {
744                         cur.pos() = 0;
745                 } else if (cur.col() != 0) {
746                         cur.idx() -= cur.col();
747                         cur.pos() = 0;
748                 } else if (cur.idx() != 0) {
749                         cur.idx() = 0;
750                         cur.pos() = 0;
751                 } else {
752                         cmd = FuncRequest(LFUN_FINISHED_BACKWARD);
753                         cur.undispatched();
754                 }
755                 break;
756
757         case LFUN_WORD_FORWARD:
758         case LFUN_WORD_RIGHT:
759         case LFUN_LINE_END:
760                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
761         case LFUN_WORD_FORWARD_SELECT:
762         case LFUN_WORD_RIGHT_SELECT:
763         case LFUN_LINE_END_SELECT:
764                 cur.selHandle(act == LFUN_WORD_FORWARD_SELECT ||
765                                 act == LFUN_WORD_RIGHT_SELECT ||
766                                 act == LFUN_LINE_END_SELECT);
767                 cur.macroModeClose();
768                 cur.clearTargetX();
769                 if (cur.pos() != cur.lastpos()) {
770                         cur.pos() = cur.lastpos();
771                 } else if (ncols() && (cur.col() != cur.lastcol())) {
772                         cur.idx() = cur.idx() - cur.col() + cur.lastcol();
773                         cur.pos() = cur.lastpos();
774                 } else if (cur.idx() != cur.lastidx()) {
775                         cur.idx() = cur.lastidx();
776                         cur.pos() = cur.lastpos();
777                 } else {
778                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
779                         cur.undispatched();
780                 }
781                 break;
782
783         case LFUN_CELL_FORWARD:
784                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
785                 cur.inset().idxNext(cur);
786                 break;
787
788         case LFUN_CELL_BACKWARD:
789                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor);
790                 cur.inset().idxPrev(cur);
791                 break;
792
793         case LFUN_WORD_DELETE_BACKWARD:
794         case LFUN_CHAR_DELETE_BACKWARD:
795                 if (cur.pos() == 0)
796                         // May affect external cell:
797                         cur.recordUndoInset();
798                 else
799                         cur.recordUndoSelection();
800                 // if the inset can not be removed from within, delete it
801                 if (!cur.backspace()) {
802                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
803                         cur.innerText()->dispatch(cur, cmd);
804                 }
805                 break;
806
807         case LFUN_WORD_DELETE_FORWARD:
808         case LFUN_CHAR_DELETE_FORWARD:
809                 if (cur.pos() == cur.lastpos())
810                         // May affect external cell:
811                         cur.recordUndoInset();
812                 else
813                         cur.recordUndoSelection();
814                 // if the inset can not be removed from within, delete it
815                 if (!cur.erase()) {
816                         FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD);
817                         cur.innerText()->dispatch(cur, cmd);
818                 }
819                 break;
820
821         case LFUN_ESCAPE:
822                 if (cur.selection())
823                         cur.clearSelection();
824                 else  {
825                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
826                         cur.undispatched();
827                 }
828                 break;
829
830         // 'Locks' the math inset. A 'locked' math inset behaves as a unit
831         // that is traversed by a single <CursorLeft>/<CursorRight>.
832         case LFUN_INSET_TOGGLE:
833                 cur.recordUndo();
834                 lock(!lock());
835                 cur.popForward();
836                 break;
837
838         case LFUN_SELF_INSERT:
839                 if (cmd.argument().size() != 1) {
840                         cur.recordUndoSelection();
841                         docstring const arg = cmd.argument();
842                         if (!interpretString(cur, arg))
843                                 cur.insert(arg);
844                         break;
845                 }
846                 // Don't record undo steps if we are in macro mode and thus
847                 // cmd.argument is the next character of the macro name.
848                 // Otherwise we'll get an invalid cursor if we undo after
849                 // the macro was finished and the macro is a known command,
850                 // e.g. sqrt. Cursor::macroModeClose replaces in this case
851                 // the InsetMathUnknown with name "frac" by an empty
852                 // InsetMathFrac -> a pos value > 0 is invalid.
853                 // A side effect is that an undo before the macro is finished
854                 // undoes the complete macro, not only the last character.
855                 // At the time we hit '\' we are not in macro mode, still.
856                 if (!cur.inMacroMode())
857                         cur.recordUndoSelection();
858
859                 // spacial handling of space. If we insert an inset
860                 // via macro mode, we want to put the cursor inside it
861                 // if relevant. Think typing "\frac<space>".
862                 if (cmd.argument()[0] == ' '
863                     && cur.inMacroMode() && cur.macroName() != "\\"
864                     && cur.macroModeClose()) {
865                         MathAtom const atom = cur.prevAtom();
866                         if (atom->asNestInset() && atom->isActive()) {
867                                 cur.posBackward();
868                                 cur.pushBackward(*cur.nextInset());
869                         }
870                 } else if (!interpretChar(cur, cmd.argument()[0])) {
871                         cmd = FuncRequest(LFUN_FINISHED_FORWARD);
872                         cur.undispatched();
873                 }
874                 break;
875
876         //case LFUN_SERVER_GET_XY:
877         //      break;
878
879         case LFUN_SERVER_SET_XY: {
880                 lyxerr << "LFUN_SERVER_SET_XY broken!" << endl;
881                 int x = 0;
882                 int y = 0;
883                 istringstream is(to_utf8(cmd.argument()));
884                 is >> x >> y;
885                 cur.setScreenPos(x, y);
886                 break;
887         }
888
889         // Special casing for superscript in case of LyX handling
890         // dead-keys:
891         case LFUN_ACCENT_CIRCUMFLEX:
892                 if (cmd.argument().empty()) {
893                         // do superscript if LyX handles
894                         // deadkeys
895                         cur.recordUndoSelection();
896                         script(cur, true, grabAndEraseSelection(cur));
897                 }
898                 break;
899
900         case LFUN_ACCENT_UMLAUT:
901         case LFUN_ACCENT_ACUTE:
902         case LFUN_ACCENT_GRAVE:
903         case LFUN_ACCENT_BREVE:
904         case LFUN_ACCENT_DOT:
905         case LFUN_ACCENT_MACRON:
906         case LFUN_ACCENT_CARON:
907         case LFUN_ACCENT_TILDE:
908         case LFUN_ACCENT_CEDILLA:
909         case LFUN_ACCENT_CIRCLE:
910         case LFUN_ACCENT_UNDERDOT:
911         case LFUN_ACCENT_TIE:
912         case LFUN_ACCENT_OGONEK:
913         case LFUN_ACCENT_HUNGARIAN_UMLAUT:
914                 break;
915
916         //  Math fonts
917         case LFUN_TEXTSTYLE_APPLY:
918         case LFUN_TEXTSTYLE_UPDATE:
919                 handleFont2(cur, cmd.argument());
920                 break;
921
922         case LFUN_FONT_BOLD:
923                 if (currentMode() <= TEXT_MODE)
924                         handleFont(cur, cmd.argument(), "textbf");
925                 else
926                         handleFont(cur, cmd.argument(), "mathbf");
927                 break;
928         case LFUN_FONT_BOLDSYMBOL:
929                 if (currentMode() <= TEXT_MODE)
930                         handleFont(cur, cmd.argument(), "textbf");
931                 else
932                         handleFont(cur, cmd.argument(), "boldsymbol");
933                 break;
934         case LFUN_FONT_SANS:
935                 if (currentMode() <= TEXT_MODE)
936                         handleFont(cur, cmd.argument(), "textsf");
937                 else
938                         handleFont(cur, cmd.argument(), "mathsf");
939                 break;
940         case LFUN_FONT_EMPH:
941                 if (currentMode() <= TEXT_MODE)
942                         handleFont(cur, cmd.argument(), "emph");
943                 else
944                         handleFont(cur, cmd.argument(), "mathcal");
945                 break;
946         case LFUN_FONT_ROMAN:
947                 if (currentMode() <= TEXT_MODE)
948                         handleFont(cur, cmd.argument(), "textrm");
949                 else
950                         handleFont(cur, cmd.argument(), "mathrm");
951                 break;
952         case LFUN_FONT_TYPEWRITER:
953                 if (currentMode() <= TEXT_MODE)
954                         handleFont(cur, cmd.argument(), "texttt");
955                 else
956                         handleFont(cur, cmd.argument(), "mathtt");
957                 break;
958         case LFUN_FONT_FRAK:
959                 handleFont(cur, cmd.argument(), "mathfrak");
960                 break;
961         case LFUN_FONT_ITAL:
962                 if (currentMode() <= TEXT_MODE)
963                         handleFont(cur, cmd.argument(), "textit");
964                 else
965                         handleFont(cur, cmd.argument(), "mathit");
966                 break;
967         case LFUN_FONT_NOUN:
968                 if (currentMode() <= TEXT_MODE)
969                         // FIXME: should be "noun"
970                         handleFont(cur, cmd.argument(), "textsc");
971                 else
972                         handleFont(cur, cmd.argument(), "mathbb");
973                 break;
974         case LFUN_FONT_DEFAULT:
975                 handleFont(cur, cmd.argument(), "textnormal");
976                 break;
977
978         case LFUN_FONT_UNDERLINE:
979                 cur.recordUndo();
980                 cur.handleNest(createInsetMath("underline", cur.buffer()));
981                 break;
982         case LFUN_MATH_MODE: {
983 #if 1
984                 // ignore math-mode on when already in math mode
985                 if (currentMode() == Inset::MATH_MODE && cmd.argument() == "on")
986                         break;
987                 cur.recordUndoSelection();
988                 cur.macroModeClose();
989                 docstring const save_selection = grabAndEraseSelection(cur);
990                 selClearOrDel(cur);
991                 //cur.plainInsert(MathAtom(new InsetMathMBox(cur.bv())));
992                 if (currentMode() <= Inset::TEXT_MODE)
993                         cur.plainInsert(MathAtom(new InsetMathEnsureMath(buffer_)));
994                 else
995                         cur.plainInsert(MathAtom(new InsetMathBox(buffer_, from_ascii("mbox"))));
996                 cur.posBackward();
997                 cur.pushBackward(*cur.nextInset());
998                 cur.niceInsert(save_selection);
999                 cur.forceBufferUpdate();
1000 #else
1001                 if (currentMode() == Inset::TEXT_MODE) {
1002                         cur.recordUndoSelection();
1003                         cur.niceInsert(MathAtom(new InsetMathHull("simple", cur.buffer())));
1004                         cur.message(_("create new math text environment ($...$)"));
1005                 } else {
1006                         handleFont(cur, cmd.argument(), "textrm");
1007                         cur.message(_("entered math text mode (textrm)"));
1008                 }
1009 #endif
1010                 break;
1011         }
1012
1013         case LFUN_REGEXP_MODE: {
1014                 InsetMathHull * i = cur.inset().asInsetMath()->asHullInset();           
1015                 if (i && i->getType() == hullRegexp) {
1016                         cur.message(_("Already in regular expression mode"));
1017                         break;
1018                 }
1019                 cur.macroModeClose();
1020                 docstring const save_selection = grabAndEraseSelection(cur);
1021                 selClearOrDel(cur);
1022                 cur.plainInsert(MathAtom(new InsetMathHull(buffer_, hullRegexp)));
1023                 cur.posBackward();
1024                 cur.pushBackward(*cur.nextInset());
1025                 cur.niceInsert(save_selection);
1026                 cur.message(_("Regular expression editor mode"));
1027                 break;
1028         }
1029
1030         case LFUN_MATH_FONT_STYLE: {
1031                 FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, '\\' + cmd.argument());
1032                 doDispatch(cur, fr);
1033                 break;
1034         }
1035
1036         case LFUN_MATH_SIZE: {
1037                 FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, cmd.argument());
1038                 doDispatch(cur, fr);
1039                 break;
1040         }
1041
1042         case LFUN_MATH_MATRIX: {
1043                 cur.recordUndo();
1044                 unsigned int m = 1;
1045                 unsigned int n = 1;
1046                 docstring v_align;
1047                 docstring h_align;
1048                 idocstringstream is(cmd.argument());
1049                 is >> m >> n >> v_align >> h_align;
1050                 if (m < 1)
1051                         m = 1;
1052                 if (n < 1)
1053                         n = 1;
1054                 v_align += 'c';
1055                 cur.niceInsert(MathAtom(new InsetMathArray(buffer_,
1056                         from_ascii("array"), m, n, (char)v_align[0], h_align)));
1057                 break;
1058         }
1059
1060         case LFUN_MATH_AMS_MATRIX: {
1061                 cur.recordUndo();
1062                 unsigned int m = 1;
1063                 unsigned int n = 1;
1064                 docstring name;
1065                 idocstringstream is(cmd.argument());
1066                 is >> m >> n >> name;
1067                 if (m < 1)
1068                         m = 1;
1069                 if (n < 1)
1070                         n = 1;
1071                 cur.niceInsert(
1072                         MathAtom(new InsetMathAMSArray(buffer_, name, m, n)));
1073                 break;
1074         }
1075
1076         case LFUN_MATH_DELIM: {
1077                 docstring ls;
1078                 docstring rs = split(cmd.argument(), ls, ' ');
1079                 // Reasonable default values
1080                 if (ls.empty())
1081                         ls = '(';
1082                 if (rs.empty())
1083                         rs = ')';
1084                 cur.recordUndo();
1085                 cur.handleNest(MathAtom(new InsetMathDelim(buffer_, ls, rs)));
1086                 break;
1087         }
1088
1089         case LFUN_MATH_BIGDELIM: {
1090                 docstring const lname  = from_utf8(cmd.getArg(0));
1091                 docstring const ldelim = from_utf8(cmd.getArg(1));
1092                 docstring const rname  = from_utf8(cmd.getArg(2));
1093                 docstring const rdelim = from_utf8(cmd.getArg(3));
1094                 latexkeys const * l = in_word_set(lname);
1095                 bool const have_l = l && l->inset == "big" &&
1096                                     InsetMathBig::isBigInsetDelim(ldelim);
1097                 l = in_word_set(rname);
1098                 bool const have_r = l && l->inset == "big" &&
1099                                     InsetMathBig::isBigInsetDelim(rdelim);
1100                 // We mimic LFUN_MATH_DELIM in case we have an empty left
1101                 // or right delimiter.
1102                 if (have_l || have_r) {
1103                         cur.recordUndo();
1104                         docstring const selection = grabAndEraseSelection(cur);
1105                         selClearOrDel(cur);
1106                         if (have_l)
1107                                 cur.insert(MathAtom(new InsetMathBig(lname,
1108                                                                 ldelim)));
1109                         cur.niceInsert(selection);
1110                         if (have_r)
1111                                 cur.insert(MathAtom(new InsetMathBig(rname,
1112                                                                 rdelim)));
1113                 }
1114                 // Don't call cur.undispatched() if we did nothing, this would
1115                 // lead to infinite recursion via Text::dispatch().
1116                 break;
1117         }
1118
1119         case LFUN_SPACE_INSERT:
1120                 cur.recordUndoSelection();
1121                 cur.insert(MathAtom(new InsetMathSpace));
1122                 break;
1123
1124         case LFUN_MATH_SPACE:
1125                 cur.recordUndoSelection();
1126                 if (cmd.argument().empty())
1127                         cur.insert(MathAtom(new InsetMathSpace));
1128                 else {
1129                         string const name = cmd.getArg(0);
1130                         string const len = cmd.getArg(1);
1131                         cur.insert(MathAtom(new InsetMathSpace(name, len)));
1132                 }
1133                 break;
1134
1135         case LFUN_ERT_INSERT:
1136                 // interpret this as if a backslash was typed
1137                 cur.recordUndo();
1138                 interpretChar(cur, '\\');
1139                 break;
1140
1141         case LFUN_MATH_SUBSCRIPT:
1142                 // interpret this as if a _ was typed
1143                 cur.recordUndoSelection();
1144                 interpretChar(cur, '_');
1145                 break;
1146
1147         case LFUN_MATH_SUPERSCRIPT:
1148                 // interpret this as if a ^ was typed
1149                 cur.recordUndoSelection();
1150                 interpretChar(cur, '^');
1151                 break;
1152
1153         case LFUN_MATH_MACRO_FOLD:
1154         case LFUN_MATH_MACRO_UNFOLD: {
1155                 Cursor it = cur;
1156                 bool fold = act == LFUN_MATH_MACRO_FOLD;
1157                 bool found = findMacroToFoldUnfold(it, fold);
1158                 if (found) {
1159                         MathMacro * macro = it.nextInset()->asInsetMath()->asMacro();
1160                         cur.recordUndoInset();
1161                         if (fold)
1162                                 macro->fold(cur);
1163                         else
1164                                 macro->unfold(cur);
1165                 }
1166                 break;
1167         }
1168
1169         case LFUN_QUOTE_INSERT:
1170                 // interpret this as if a straight " was typed
1171                 cur.recordUndoSelection();
1172                 interpretChar(cur, '\"');
1173                 break;
1174
1175 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
1176 // handling such that "self-insert" works on "arbitrary stuff" too, and
1177 // math-insert only handles special math things like "matrix".
1178         case LFUN_MATH_INSERT: {
1179                 cur.recordUndoSelection();
1180                 if (cmd.argument() == "^" || cmd.argument() == "_")
1181                         interpretChar(cur, cmd.argument()[0]);
1182                 else {
1183                         MathData ar;
1184                         asArray(cmd.argument(), ar);
1185                         if (cur.selection() && ar.size() == 1
1186                             && ar[0]->asNestInset()
1187                             && ar[0]->asNestInset()->nargs() > 1)
1188                                 handleNest(cur, ar[0]);
1189                         else
1190                                 cur.niceInsert(cmd.argument());
1191                 }
1192                 break;
1193         }
1194
1195         case LFUN_UNICODE_INSERT: {
1196                 if (cmd.argument().empty())
1197                         break;
1198                 docstring hexstring = cmd.argument();
1199                 if (isHex(hexstring)) {
1200                         char_type c = hexToInt(hexstring);
1201                         if (c >= 32 && c < 0x10ffff) {
1202                                 docstring s = docstring(1, c);
1203                                 FuncCode code = currentMode() == MATH_MODE ?
1204                                         LFUN_MATH_INSERT : LFUN_SELF_INSERT;
1205                                 lyx::dispatch(FuncRequest(code, s));
1206                         }
1207                 }
1208                 break;
1209         }
1210
1211         case LFUN_DIALOG_SHOW_NEW_INSET: {
1212                 docstring const & name = cmd.argument();
1213                 string data;
1214                 if (name == "ref") {
1215                         InsetMathRef tmp(buffer_, name);
1216                         data = tmp.createDialogStr(to_utf8(name));
1217                         cur.bv().showDialog(to_utf8(name), data);
1218                 } else if (name == "mathspace") {
1219                         cur.bv().showDialog(to_utf8(name));
1220                 }
1221                 break;
1222         }
1223
1224         case LFUN_INSET_INSERT: {
1225                 MathData ar;
1226                 if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
1227                         cur.recordUndoSelection();
1228                         cur.insert(ar);
1229                         cur.forceBufferUpdate();                        
1230                 } else
1231                         cur.undispatched();
1232                 break;
1233         }
1234         case LFUN_INSET_DISSOLVE:
1235                 if (!asHullInset()) {
1236                         cur.recordUndoInset();
1237                         cur.pullArg();
1238                 }
1239                 break;
1240
1241         default:
1242                 InsetMath::doDispatch(cur, cmd);
1243                 break;
1244         }
1245 }
1246
1247
1248 bool InsetMathNest::findMacroToFoldUnfold(Cursor & it, bool fold) const {
1249         // look for macro to open/close, but stay in mathed
1250         for (; !it.empty(); it.pop_back()) {
1251
1252                 // go backward through the current cell
1253                 Inset * inset = it.nextInset();
1254                 while (inset && inset->asInsetMath()) {
1255                         MathMacro * macro = inset->asInsetMath()->asMacro();
1256                         if (macro) {
1257                                 // found the an macro to open/close?
1258                                 if (macro->folded() != fold)
1259                                         return true;
1260
1261                                 // Wrong folding state.
1262                                 // If this was the first we see in this slice, look further left,
1263                                 // otherwise go up.
1264                                 if (inset != it.nextInset())
1265                                         break;
1266                         }
1267
1268                         // go up if this was the left most position
1269                         if (it.pos() == 0)
1270                                 break;
1271
1272                         // go left
1273                         it.pos()--;
1274                         inset = it.nextInset();
1275                 }
1276         }
1277
1278         return false;
1279 }
1280
1281
1282 bool InsetMathNest::getStatus(Cursor & cur, FuncRequest const & cmd,
1283                 FuncStatus & flag) const
1284 {
1285         // the font related toggles
1286         //string tc = "mathnormal";
1287         bool ret = true;
1288         string const arg = to_utf8(cmd.argument());
1289         switch (cmd.action()) {
1290         case LFUN_INSET_MODIFY:
1291                 flag.setEnabled(false);
1292                 break;
1293 #if 0
1294         case LFUN_INSET_MODIFY:
1295                 // FIXME: check temporarily disabled
1296                 // valign code
1297                 char align = mathcursor::valign();
1298                 if (align == '\0') {
1299                         enable = false;
1300                         break;
1301                 }
1302                 if (cmd.argument().empty()) {
1303                         flag.clear();
1304                         break;
1305                 }
1306                 if (!contains("tcb", cmd.argument()[0])) {
1307                         enable = false;
1308                         break;
1309                 }
1310                 flag.setOnOff(cmd.argument()[0] == align);
1311                 break;
1312 #endif
1313         /// We have to handle them since 1.4 blocks all unhandled actions
1314         case LFUN_FONT_ITAL:
1315         case LFUN_FONT_BOLD:
1316         case LFUN_FONT_BOLDSYMBOL:
1317         case LFUN_FONT_SANS:
1318         case LFUN_FONT_EMPH:
1319         case LFUN_FONT_TYPEWRITER:
1320         case LFUN_FONT_NOUN:
1321         case LFUN_FONT_ROMAN:
1322         case LFUN_FONT_DEFAULT:
1323                 flag.setEnabled(true);
1324                 break;
1325
1326         // we just need to be in math mode to enable that
1327         case LFUN_MATH_SIZE:
1328         case LFUN_MATH_SPACE:
1329         case LFUN_MATH_LIMITS:
1330         case LFUN_MATH_EXTERN:
1331                 flag.setEnabled(true);
1332                 break;
1333
1334         case LFUN_FONT_UNDERLINE:
1335         case LFUN_FONT_FRAK:
1336                 flag.setEnabled(currentMode() != TEXT_MODE);
1337                 break;
1338
1339         case LFUN_MATH_FONT_STYLE: {
1340                 bool const textarg =
1341                         arg == "textbf"   || arg == "textsf" ||
1342                         arg == "textrm"   || arg == "textmd" ||
1343                         arg == "textit"   || arg == "textsc" ||
1344                         arg == "textsl"   || arg == "textup" ||
1345                         arg == "texttt"   || arg == "textbb" ||
1346                         arg == "textnormal";
1347                 flag.setEnabled(currentMode() != TEXT_MODE || textarg);
1348                 break;
1349         }
1350
1351         case LFUN_MATH_INSERT:
1352                 flag.setEnabled(currentMode() != TEXT_MODE);
1353                 break;
1354
1355         case LFUN_MATH_AMS_MATRIX:
1356         case LFUN_MATH_MATRIX:
1357                 flag.setEnabled(currentMode() == MATH_MODE);
1358                 break;
1359
1360         case LFUN_INSET_INSERT: {
1361                 // Don't test createMathInset_fromDialogStr(), since
1362                 // getStatus is not called with a valid reference and the
1363                 // dialog would not be applyable.
1364                 string const name = cmd.getArg(0);
1365                 flag.setEnabled(name == "ref" || name == "mathspace");
1366                 break;
1367         }
1368
1369         case LFUN_MATH_DELIM:
1370         case LFUN_MATH_BIGDELIM:
1371                 // Don't do this with multi-cell selections
1372                 flag.setEnabled(cur.selBegin().idx() == cur.selEnd().idx());
1373                 break;
1374
1375         case LFUN_MATH_MACRO_FOLD:
1376         case LFUN_MATH_MACRO_UNFOLD: {
1377                 Cursor it = cur;
1378                 bool found = findMacroToFoldUnfold(it, cmd.action() == LFUN_MATH_MACRO_FOLD);
1379                 flag.setEnabled(found);
1380                 break;
1381         }
1382
1383         case LFUN_SPECIALCHAR_INSERT:
1384                 // FIXME: These would probably make sense in math-text mode
1385                 flag.setEnabled(false);
1386                 break;
1387
1388         case LFUN_INSET_DISSOLVE:
1389                 flag.setEnabled(!asHullInset());
1390                 break;
1391
1392         default:
1393                 ret = false;
1394                 break;
1395         }
1396         return ret;
1397 }
1398
1399
1400 void InsetMathNest::edit(Cursor & cur, bool front, EntryDirection entry_from)
1401 {
1402         cur.push(*this);
1403         bool enter_front = (entry_from == Inset::ENTRY_DIRECTION_RIGHT ||
1404                 (entry_from == Inset::ENTRY_DIRECTION_IGNORE && front));
1405         cur.idx() = enter_front ? 0 : cur.lastidx();
1406         cur.pos() = enter_front ? 0 : cur.lastpos();
1407         cur.resetAnchor();
1408         //lyxerr << "InsetMathNest::edit, cur:\n" << cur << endl;
1409 }
1410
1411
1412 Inset * InsetMathNest::editXY(Cursor & cur, int x, int y)
1413 {
1414         int idx_min = 0;
1415         int dist_min = 1000000;
1416         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1417                 int const d = cell(i).dist(cur.bv(), x, y);
1418                 if (d < dist_min) {
1419                         dist_min = d;
1420                         idx_min = i;
1421                 }
1422         }
1423         MathData & ar = cell(idx_min);
1424         cur.push(*this);
1425         cur.idx() = idx_min;
1426         cur.pos() = ar.x2pos(&cur.bv(), x - ar.xo(cur.bv()));
1427
1428         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1429         if (dist_min == 0) {
1430                 // hit inside cell
1431                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1432                         if (ar[i]->covers(cur.bv(), x, y))
1433                                 return ar[i].nucleus()->editXY(cur, x, y);
1434         }
1435         return this;
1436 }
1437
1438
1439 void InsetMathNest::lfunMousePress(Cursor & cur, FuncRequest & cmd)
1440 {
1441         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1442         BufferView & bv = cur.bv();
1443         bool do_selection = cmd.button() == mouse_button::button1
1444                 && cmd.argument() == "region-select";
1445         bv.mouseSetCursor(cur, do_selection);
1446         if (cmd.button() == mouse_button::button1) {
1447                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1448                 // Update the cursor update flags as needed:
1449                 //
1450                 // Update::Decoration: tells to update the decoration
1451                 //                     (visual box corners that define
1452                 //                     the inset)/
1453                 // Update::FitCursor: adjust the screen to the cursor
1454                 //                    position if needed
1455                 // cur.result().update(): don't overwrite previously set flags.
1456                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor
1457                                 | cur.result().screenUpdate());
1458         } else if (cmd.button() == mouse_button::button2) {
1459                 if (cap::selection()) {
1460                         // See comment in Text::dispatch why we do this
1461                         cap::copySelectionToStack();
1462                         cmd = FuncRequest(LFUN_PASTE, "0");
1463                         doDispatch(bv.cursor(), cmd);
1464                 } else {
1465                         MathData ar;
1466                         asArray(theSelection().get(), ar);
1467                         bv.cursor().insert(ar);
1468                 }
1469         }
1470 }
1471
1472
1473 void InsetMathNest::lfunMouseMotion(Cursor & cur, FuncRequest & cmd)
1474 {
1475         // only select with button 1
1476         if (cmd.button() == mouse_button::button1) {
1477                 Cursor & bvcur = cur.bv().cursor();
1478                 if (bvcur.realAnchor().hasPart(cur)) {
1479                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1480                         bvcur.setCursor(cur);
1481                         bvcur.setSelection(true);
1482                         //lyxerr << "MOTION " << bvcur << endl;
1483                 } else
1484                         cur.undispatched();
1485         }
1486 }
1487
1488
1489 void InsetMathNest::lfunMouseRelease(Cursor & cur, FuncRequest & cmd)
1490 {
1491         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1492
1493         if (cmd.button() == mouse_button::button1) {
1494                 if (!cur.selection())
1495                         cur.noScreenUpdate();
1496                 else {
1497                         Cursor & bvcur = cur.bv().cursor();
1498                         bvcur.setSelection(true);
1499                 }
1500                 return;
1501         }
1502
1503         cur.undispatched();
1504 }
1505
1506
1507 bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
1508 {
1509         //lyxerr << "interpret 2: '" << c << "'" << endl;
1510         docstring save_selection;
1511         if (c == '^' || c == '_')
1512                 save_selection = grabAndEraseSelection(cur);
1513
1514         cur.clearTargetX();
1515         Buffer * buf = cur.buffer();
1516
1517         // handle macroMode
1518         if (cur.inMacroMode()) {
1519                 docstring name = cur.macroName();
1520
1521                 /// are we currently typing '#1' or '#2' or...?
1522                 if (name == "\\#") {
1523                         cur.backspace();
1524                         int n = c - '0';
1525                         if (n >= 1 && n <= 9)
1526                                 cur.insert(new MathMacroArgument(n));
1527                         return true;
1528                 }
1529
1530                 // do not finish macro for known * commands
1531                 MathWordList const & mwl = mathedWordList();
1532                 bool star_macro = c == '*'
1533                         && (mwl.find(name.substr(1) + "*") != mwl.end()
1534                             || cur.buffer()->getMacro(name.substr(1) + "*", cur, true));
1535                 if (isAlphaASCII(c) || star_macro) {
1536                         cur.activeMacro()->setName(name + docstring(1, c));
1537                         return true;
1538                 }
1539
1540                 // handle 'special char' macros
1541                 if (name == "\\") {
1542                         // remove the '\\'
1543                         if (c == '\\') {
1544                                 cur.backspace();
1545                                 if (currentMode() <= InsetMath::TEXT_MODE)
1546                                         cur.niceInsert(createInsetMath("textbackslash", buf));
1547                                 else
1548                                         cur.niceInsert(createInsetMath("backslash", buf));
1549                         } else if (c == '^' && currentMode() == InsetMath::MATH_MODE) {
1550                                 cur.backspace();
1551                                 cur.niceInsert(createInsetMath("mathcircumflex", buf));
1552                         } else if (c == '{') {
1553                                 cur.backspace();
1554                                 cur.niceInsert(MathAtom(new InsetMathBrace(buf)));
1555                         } else if (c == '%') {
1556                                 cur.backspace();
1557                                 cur.niceInsert(MathAtom(new InsetMathComment(buf)));
1558                         } else if (c == '#') {
1559                                 LASSERT(cur.activeMacro(), /**/);
1560                                 cur.activeMacro()->setName(name + docstring(1, c));
1561                         } else {
1562                                 cur.backspace();
1563                                 cur.niceInsert(createInsetMath(docstring(1, c), buf));
1564                         }
1565                         return true;
1566                 }
1567
1568                 // One character big delimiters. The others are handled in
1569                 // interpretString().
1570                 latexkeys const * l = in_word_set(name.substr(1));
1571                 if (name[0] == '\\' && l && l->inset == "big") {
1572                         docstring delim;
1573                         switch (c) {
1574                         case '{':
1575                                 delim = from_ascii("\\{");
1576                                 break;
1577                         case '}':
1578                                 delim = from_ascii("\\}");
1579                                 break;
1580                         default:
1581                                 delim = docstring(1, c);
1582                                 break;
1583                         }
1584                         if (InsetMathBig::isBigInsetDelim(delim)) {
1585                                 // name + delim ared a valid InsetMathBig.
1586                                 // We can't use cur.macroModeClose() because
1587                                 // it does not handle delim.
1588                                 InsetMathUnknown * p = cur.activeMacro();
1589                                 p->finalize();
1590                                 --cur.pos();
1591                                 cur.cell().erase(cur.pos());
1592                                 cur.plainInsert(MathAtom(
1593                                         new InsetMathBig(name.substr(1), delim)));
1594                                 return true;
1595                         }
1596                 }
1597
1598                 // leave macro mode and try again if necessary
1599                 if (cur.macroModeClose()) {
1600                         MathAtom const atom = cur.prevAtom();
1601                         if (atom->asNestInset() && atom->isActive()) {
1602                                 cur.posBackward();
1603                                 cur.pushBackward(*cur.nextInset());
1604                         }
1605                 }
1606                 if (c == '{')
1607                         cur.niceInsert(MathAtom(new InsetMathBrace(buf)));
1608                 else if (c != ' ')
1609                         interpretChar(cur, c);
1610                 return true;
1611         }
1612
1613
1614         // leave autocorrect mode if necessary
1615         if (lyxrc.autocorrection_math && c == ' ' && cur.autocorrect()) {
1616                 cur.autocorrect() = false;
1617                 cur.message(_("Autocorrect Off ('!' to enter)"));
1618                 return true;
1619         } 
1620         if (lyxrc.autocorrection_math && c == '!' && !cur.autocorrect()) {
1621                 cur.autocorrect() = true;
1622                 cur.message(_("Autocorrect On (<space> to exit)"));
1623                 return true;
1624         }
1625
1626         // just clear selection on pressing the space bar
1627         if (cur.selection() && c == ' ') {
1628                 cur.setSelection(false);
1629                 return true;
1630         }
1631
1632         if (c == '\\') {
1633                 //lyxerr << "starting with macro" << endl;
1634                 bool reduced = cap::reduceSelectionToOneCell(cur);
1635                 if (reduced || !cur.selection()) {
1636                         docstring const safe = cap::grabAndEraseSelection(cur);
1637                         cur.insert(MathAtom(new InsetMathUnknown(from_ascii("\\"), safe, false)));
1638                 }
1639                 return true;
1640         }
1641
1642         selClearOrDel(cur);
1643
1644         if (c == '\n') {
1645                 if (currentMode() <= InsetMath::TEXT_MODE)
1646                         cur.insert(c);
1647                 return true;
1648         }
1649
1650         if (c == ' ') {
1651                 if (currentMode() <= InsetMath::TEXT_MODE) {
1652                         // insert spaces in text or undecided mode,
1653                         // but suppress direct insertion of two spaces in a row
1654                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1655                         // it is better than nothing...
1656                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ') {
1657                                 cur.insert(c);
1658                                 // FIXME: we have to enable full redraw here because of the
1659                                 // visual box corners that define the inset. If we know for
1660                                 // sure that we stay within the same cell we can optimize for
1661                                 // that using:
1662                                 //cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1663                         }
1664                         return true;
1665                 }
1666                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1667                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1668                         // FIXME: we have to enable full redraw here because of the
1669                         // visual box corners that define the inset. If we know for
1670                         // sure that we stay within the same cell we can optimize for
1671                         // that using:
1672                         //cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1673                         return true;
1674                 }
1675
1676                 if (cur.popForward()) {
1677                         // FIXME: we have to enable full redraw here because of the
1678                         // visual box corners that define the inset. If we know for
1679                         // sure that we stay within the same cell we can optimize for
1680                         // that using:
1681                         //cur.screenUpdateFlags(Update::FitCursor);
1682                         return true;
1683                 }
1684
1685                 // if we are at the very end, leave the formula
1686                 return cur.pos() != cur.lastpos();
1687         }
1688
1689         // These should be treated differently when not in text mode:
1690         if (currentMode() != InsetMath::TEXT_MODE) {
1691                 if (c == '_') {
1692                         script(cur, false, save_selection);
1693                         return true;
1694                 }
1695                 if (c == '^') {
1696                         script(cur, true, save_selection);
1697                         return true;
1698                 }
1699                 if (c == '~') {
1700                         cur.niceInsert(createInsetMath("sim", buf));
1701                         return true;
1702                 }
1703                 if (currentMode() == InsetMath::MATH_MODE && !isAsciiOrMathAlpha(c)) {
1704                         MathAtom at = createInsetMath("text", buf);
1705                         at.nucleus()->cell(0).push_back(MathAtom(new InsetMathChar(c)));
1706                         cur.niceInsert(at);
1707                         cur.posForward();
1708                         return true;
1709                 }
1710         } else {
1711                 if (c == '^') {
1712                         cur.niceInsert(createInsetMath("textasciicircum", buf));
1713                         return true;
1714                 }
1715                 if (c == '~') {
1716                         cur.niceInsert(createInsetMath("textasciitilde", buf));
1717                         return true;
1718                 }
1719         }
1720
1721         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' ||
1722             c == '%' || c == '_') {
1723                 cur.niceInsert(createInsetMath(docstring(1, c), buf));
1724                 return true;
1725         }
1726
1727
1728         // try auto-correction
1729         if (lyxrc.autocorrection_math && cur.autocorrect() && cur.pos() != 0
1730                   && math_autocorrect(cur.prevAtom(), c))
1731                 return true;
1732
1733         // no special circumstances, so insert the character without any fuss
1734         cur.insert(c);
1735         if (lyxrc.autocorrection_math) {
1736                 if (!cur.autocorrect())
1737                         cur.message(_("Autocorrect Off ('!' to enter)"));
1738                 else
1739                         cur.message(_("Autocorrect On (<space> to exit)"));
1740         }
1741         return true;
1742 }
1743
1744
1745 bool InsetMathNest::interpretString(Cursor & cur, docstring const & str)
1746 {
1747         // Create a InsetMathBig from cur.cell()[cur.pos() - 1] and t if
1748         // possible
1749         if (!cur.empty() && cur.pos() > 0 &&
1750             cur.cell()[cur.pos() - 1]->asUnknownInset()) {
1751                 if (InsetMathBig::isBigInsetDelim(str)) {
1752                         docstring prev = asString(cur.cell()[cur.pos() - 1]);
1753                         if (prev[0] == '\\') {
1754                                 prev = prev.substr(1);
1755                                 latexkeys const * l = in_word_set(prev);
1756                                 if (l && l->inset == "big") {
1757                                         cur.cell()[cur.pos() - 1] =
1758                                                 MathAtom(new InsetMathBig(prev, str));
1759                                         return true;
1760                                 }
1761                         }
1762                 }
1763         }
1764         return false;
1765 }
1766
1767
1768 bool InsetMathNest::script(Cursor & cur, bool up)
1769 {
1770         return script(cur, up, docstring());
1771 }
1772
1773
1774 bool InsetMathNest::script(Cursor & cur, bool up,
1775                 docstring const & save_selection)
1776 {
1777         // Hack to get \^ and \_ working
1778         //lyxerr << "handling script: up: " << up << endl;
1779         if (cur.inMacroMode() && cur.macroName() == "\\") {
1780                 if (up)
1781                         cur.niceInsert(createInsetMath("mathcircumflex", cur.buffer()));
1782                 else
1783                         interpretChar(cur, '_');
1784                 return true;
1785         }
1786
1787         cur.macroModeClose();
1788         if (asScriptInset() && cur.idx() == 0) {
1789                 // we are in a nucleus of a script inset, move to _our_ script
1790                 InsetMathScript * inset = asScriptInset();
1791                 //lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1792                 inset->ensure(up);
1793                 cur.idx() = inset->idxOfScript(up);
1794                 cur.pos() = 0;
1795         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1796                 --cur.pos();
1797                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1798                 cur.push(*inset);
1799                 inset->ensure(up);
1800                 cur.idx() = inset->idxOfScript(up);
1801                 cur.pos() = cur.lastpos();
1802         } else {
1803                 // convert the thing to our left to a scriptinset or create a new
1804                 // one if in the very first position of the array
1805                 if (cur.pos() == 0) {
1806                         //lyxerr << "new scriptinset" << endl;
1807                         cur.insert(new InsetMathScript(buffer_, up));
1808                 } else {
1809                         //lyxerr << "converting prev atom " << endl;
1810                         cur.prevAtom() = MathAtom(new InsetMathScript(buffer_, cur.prevAtom(), up));
1811                 }
1812                 --cur.pos();
1813                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1814                 // See comment in MathParser.cpp for special handling of {}-bases
1815
1816                 cur.push(*inset);
1817                 cur.idx() = 1;
1818                 cur.pos() = 0;
1819         }
1820         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1821         cur.niceInsert(save_selection);
1822         cur.resetAnchor();
1823         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1824         return true;
1825 }
1826
1827
1828 bool InsetMathNest::completionSupported(Cursor const & cur) const
1829 {
1830         return cur.inMacroMode();
1831 }
1832
1833
1834 bool InsetMathNest::inlineCompletionSupported(Cursor const & cur) const
1835 {
1836         return cur.inMacroMode();
1837 }
1838
1839
1840 bool InsetMathNest::automaticInlineCompletion() const
1841 {
1842         return lyxrc.completion_inline_math;
1843 }
1844
1845
1846 bool InsetMathNest::automaticPopupCompletion() const
1847 {
1848         return lyxrc.completion_popup_math;
1849 }
1850
1851
1852 CompletionList const *
1853 InsetMathNest::createCompletionList(Cursor const & cur) const
1854 {
1855         if (!cur.inMacroMode())
1856                 return 0;
1857
1858         return new MathCompletionList(cur);
1859 }
1860
1861
1862 docstring InsetMathNest::completionPrefix(Cursor const & cur) const
1863 {
1864         if (!cur.inMacroMode())
1865                 return docstring();
1866
1867         return cur.activeMacro()->name();
1868 }
1869
1870
1871 bool InsetMathNest::insertCompletion(Cursor & cur, docstring const & s,
1872                                      bool finished)
1873 {
1874         if (!cur.inMacroMode())
1875                 return false;
1876
1877         // append completion to active macro
1878         InsetMathUnknown * inset = cur.activeMacro();
1879         inset->setName(inset->name() + s);
1880
1881         // finish macro
1882         if (finished) {
1883 #if 0
1884                 // FIXME: this creates duplicates in the completion popup
1885                 // which looks ugly. Moreover the changes the list lengths
1886                 // which seems to
1887                 confuse the popup as well.
1888                 MathCompletionList::addToFavorites(inset->name());
1889 #endif
1890                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, " "));
1891         }
1892
1893         return true;
1894 }
1895
1896
1897 void InsetMathNest::completionPosAndDim(Cursor const & cur, int & x, int & y,
1898                                         Dimension & dim) const
1899 {
1900         Inset const * inset = cur.activeMacro();
1901         if (!inset)
1902                 return;
1903
1904         // get inset dimensions
1905         dim = cur.bv().coordCache().insets().dim(inset);
1906         // FIXME: these 3 are no accurate, but should depend on the font.
1907         // Now the popup jumps down if you enter a char with descent > 0.
1908         dim.des += 3;
1909         dim.asc += 3;
1910
1911         // and position
1912         Point xy = cur.bv().coordCache().insets().xy(inset);
1913         x = xy.x_;
1914         y = xy.y_;
1915 }
1916
1917
1918 bool InsetMathNest::cursorMathForward(Cursor & cur)
1919 {
1920         if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
1921                 cur.pushBackward(*cur.nextAtom().nucleus());
1922                 cur.inset().idxFirst(cur);
1923                 return true;
1924         }
1925         if (cur.posForward() || idxForward(cur))
1926                 return true;
1927         // try to pop forwards --- but don't pop out of math! leave that to
1928         // the FINISH lfuns
1929         int s = cur.depth() - 2;
1930         if (s >= 0 && cur[s].inset().asInsetMath())
1931                 return cur.popForward();
1932         return false;
1933 }
1934
1935
1936 bool InsetMathNest::cursorMathBackward(Cursor & cur)
1937 {
1938         if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
1939                 cur.posBackward();
1940                 cur.push(*cur.nextAtom().nucleus());
1941                 cur.inset().idxLast(cur);
1942                 return true;
1943         }
1944         if (cur.posBackward() || idxBackward(cur))
1945                 return true;
1946         // try to pop backwards --- but don't pop out of math! leave that to
1947         // the FINISH lfuns
1948         int s = cur.depth() - 2;
1949         if (s >= 0 && cur[s].inset().asInsetMath())
1950                 return cur.popBackward();
1951         return false;
1952 }
1953
1954
1955 ////////////////////////////////////////////////////////////////////
1956
1957 MathCompletionList::MathCompletionList(Cursor const & cur)
1958 {
1959         // fill it with macros from the buffer
1960         MacroNameSet macros;
1961         cur.buffer()->listMacroNames(macros);
1962         MacroNameSet::const_iterator it;
1963         for (it = macros.begin(); it != macros.end(); ++it) {
1964                 if (cur.buffer()->getMacro(*it, cur, false))
1965                         locals.push_back("\\" + *it);
1966         }
1967         sort(locals.begin(), locals.end());
1968
1969         if (globals.size() > 0)
1970                 return;
1971
1972         // fill in global macros
1973         macros.clear();
1974         MacroTable::globalMacros().getMacroNames(macros);
1975         //lyxerr << "Globals completion macros: ";
1976         for (it = macros.begin(); it != macros.end(); ++it) {
1977                 //lyxerr << "\\" + *it << " ";
1978                 globals.push_back("\\" + *it);
1979         }
1980         //lyxerr << std::endl;
1981
1982         // fill in global commands
1983         globals.push_back(from_ascii("\\boxed"));
1984         globals.push_back(from_ascii("\\fbox"));
1985         globals.push_back(from_ascii("\\framebox"));
1986         globals.push_back(from_ascii("\\makebox"));
1987         globals.push_back(from_ascii("\\kern"));
1988         globals.push_back(from_ascii("\\xrightarrow"));
1989         globals.push_back(from_ascii("\\xleftarrow"));
1990         globals.push_back(from_ascii("\\split"));
1991         globals.push_back(from_ascii("\\gathered"));
1992         globals.push_back(from_ascii("\\aligned"));
1993         globals.push_back(from_ascii("\\alignedat"));
1994         globals.push_back(from_ascii("\\cases"));
1995         globals.push_back(from_ascii("\\substack"));
1996         globals.push_back(from_ascii("\\xymatrix"));
1997         globals.push_back(from_ascii("\\Diagram"));
1998         globals.push_back(from_ascii("\\subarray"));
1999         globals.push_back(from_ascii("\\array"));
2000         globals.push_back(from_ascii("\\sqrt"));
2001         globals.push_back(from_ascii("\\root"));
2002         globals.push_back(from_ascii("\\tabular"));
2003         globals.push_back(from_ascii("\\stackrel"));
2004         globals.push_back(from_ascii("\\binom"));
2005         globals.push_back(from_ascii("\\choose"));
2006         globals.push_back(from_ascii("\\brace"));
2007         globals.push_back(from_ascii("\\brack"));
2008         globals.push_back(from_ascii("\\frac"));
2009         globals.push_back(from_ascii("\\over"));
2010         globals.push_back(from_ascii("\\nicefrac"));
2011         globals.push_back(from_ascii("\\unitfrac"));
2012         globals.push_back(from_ascii("\\unitfracthree"));
2013         globals.push_back(from_ascii("\\unitone"));
2014         globals.push_back(from_ascii("\\unittwo"));
2015         globals.push_back(from_ascii("\\infer"));
2016         globals.push_back(from_ascii("\\atop"));
2017         globals.push_back(from_ascii("\\lefteqn"));
2018         globals.push_back(from_ascii("\\boldsymbol"));
2019         globals.push_back(from_ascii("\\bm"));
2020         globals.push_back(from_ascii("\\color"));
2021         globals.push_back(from_ascii("\\normalcolor"));
2022         globals.push_back(from_ascii("\\textcolor"));
2023         globals.push_back(from_ascii("\\cfrac"));
2024         globals.push_back(from_ascii("\\cfracleft"));
2025         globals.push_back(from_ascii("\\cfracright"));
2026         globals.push_back(from_ascii("\\dfrac"));
2027         globals.push_back(from_ascii("\\tfrac"));
2028         globals.push_back(from_ascii("\\dbinom"));
2029         globals.push_back(from_ascii("\\tbinom"));
2030         globals.push_back(from_ascii("\\hphantom"));
2031         globals.push_back(from_ascii("\\phantom"));
2032         globals.push_back(from_ascii("\\vphantom"));
2033         MathWordList const & words = mathedWordList();
2034         MathWordList::const_iterator it2;
2035         //lyxerr << "Globals completion commands: ";
2036         for (it2 = words.begin(); it2 != words.end(); ++it2) {
2037                 globals.push_back("\\" + (*it2).first);
2038                 //lyxerr << "\\" + (*it2).first << " ";
2039         }
2040         //lyxerr << std::endl;
2041         sort(globals.begin(), globals.end());
2042 }
2043
2044
2045 MathCompletionList::~MathCompletionList()
2046 {
2047 }
2048
2049
2050 size_type MathCompletionList::size() const
2051 {
2052         return locals.size() + globals.size();
2053 }
2054
2055
2056 docstring const & MathCompletionList::data(size_t idx) const
2057 {
2058         size_t lsize = locals.size();
2059         if (idx >= lsize)
2060                 return globals[idx - lsize];
2061         else
2062                 return locals[idx];
2063 }
2064
2065
2066 std::string MathCompletionList::icon(size_t idx) const
2067 {
2068         // get the latex command
2069         docstring cmd;
2070         size_t lsize = locals.size();
2071         if (idx >= lsize)
2072                 cmd = globals[idx - lsize];
2073         else
2074                 cmd = locals[idx];
2075
2076         // get the icon resource name by stripping the backslash
2077         return "images/math/" + to_utf8(cmd.substr(1)) + ".png";
2078 }
2079
2080 std::vector<docstring> MathCompletionList::globals;
2081
2082 } // namespace lyx