]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathNest.cpp
7ed16911ccfac179bfca6319b557bdcf89827a21
[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                 InsetMath * im = cur.inset().asInsetMath();
1015                 if (im) {
1016                         InsetMathHull * i = im->asHullInset();          
1017                         if (i && i->getType() == hullRegexp) {
1018                                 cur.message(_("Already in regular expression mode"));
1019                                 break;
1020                         }
1021                 }
1022                 cur.macroModeClose();
1023                 docstring const save_selection = grabAndEraseSelection(cur);
1024                 selClearOrDel(cur);
1025                 cur.plainInsert(MathAtom(new InsetMathHull(buffer_, hullRegexp)));
1026                 cur.posBackward();
1027                 cur.pushBackward(*cur.nextInset());
1028                 cur.niceInsert(save_selection);
1029                 cur.message(_("Regular expression editor mode"));
1030                 break;
1031         }
1032
1033         case LFUN_MATH_FONT_STYLE: {
1034                 FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, '\\' + cmd.argument());
1035                 doDispatch(cur, fr);
1036                 break;
1037         }
1038
1039         case LFUN_MATH_SIZE: {
1040                 FuncRequest fr = FuncRequest(LFUN_MATH_INSERT, cmd.argument());
1041                 doDispatch(cur, fr);
1042                 break;
1043         }
1044
1045         case LFUN_MATH_MATRIX: {
1046                 cur.recordUndo();
1047                 unsigned int m = 1;
1048                 unsigned int n = 1;
1049                 docstring v_align;
1050                 docstring h_align;
1051                 idocstringstream is(cmd.argument());
1052                 is >> m >> n >> v_align >> h_align;
1053                 if (m < 1)
1054                         m = 1;
1055                 if (n < 1)
1056                         n = 1;
1057                 v_align += 'c';
1058                 cur.niceInsert(MathAtom(new InsetMathArray(buffer_,
1059                         from_ascii("array"), m, n, (char)v_align[0], h_align)));
1060                 break;
1061         }
1062
1063         case LFUN_MATH_AMS_MATRIX: {
1064                 cur.recordUndo();
1065                 unsigned int m = 1;
1066                 unsigned int n = 1;
1067                 docstring name;
1068                 idocstringstream is(cmd.argument());
1069                 is >> m >> n >> name;
1070                 if (m < 1)
1071                         m = 1;
1072                 if (n < 1)
1073                         n = 1;
1074                 cur.niceInsert(
1075                         MathAtom(new InsetMathAMSArray(buffer_, name, m, n)));
1076                 break;
1077         }
1078
1079         case LFUN_MATH_DELIM: {
1080                 docstring ls;
1081                 docstring rs = split(cmd.argument(), ls, ' ');
1082                 // Reasonable default values
1083                 if (ls.empty())
1084                         ls = '(';
1085                 if (rs.empty())
1086                         rs = ')';
1087                 cur.recordUndo();
1088                 cur.handleNest(MathAtom(new InsetMathDelim(buffer_, ls, rs)));
1089                 break;
1090         }
1091
1092         case LFUN_MATH_BIGDELIM: {
1093                 docstring const lname  = from_utf8(cmd.getArg(0));
1094                 docstring const ldelim = from_utf8(cmd.getArg(1));
1095                 docstring const rname  = from_utf8(cmd.getArg(2));
1096                 docstring const rdelim = from_utf8(cmd.getArg(3));
1097                 latexkeys const * l = in_word_set(lname);
1098                 bool const have_l = l && l->inset == "big" &&
1099                                     InsetMathBig::isBigInsetDelim(ldelim);
1100                 l = in_word_set(rname);
1101                 bool const have_r = l && l->inset == "big" &&
1102                                     InsetMathBig::isBigInsetDelim(rdelim);
1103                 // We mimic LFUN_MATH_DELIM in case we have an empty left
1104                 // or right delimiter.
1105                 if (have_l || have_r) {
1106                         cur.recordUndo();
1107                         docstring const selection = grabAndEraseSelection(cur);
1108                         selClearOrDel(cur);
1109                         if (have_l)
1110                                 cur.insert(MathAtom(new InsetMathBig(lname,
1111                                                                 ldelim)));
1112                         cur.niceInsert(selection);
1113                         if (have_r)
1114                                 cur.insert(MathAtom(new InsetMathBig(rname,
1115                                                                 rdelim)));
1116                 }
1117                 // Don't call cur.undispatched() if we did nothing, this would
1118                 // lead to infinite recursion via Text::dispatch().
1119                 break;
1120         }
1121
1122         case LFUN_SPACE_INSERT:
1123                 cur.recordUndoSelection();
1124                 cur.insert(MathAtom(new InsetMathSpace));
1125                 break;
1126
1127         case LFUN_MATH_SPACE:
1128                 cur.recordUndoSelection();
1129                 if (cmd.argument().empty())
1130                         cur.insert(MathAtom(new InsetMathSpace));
1131                 else {
1132                         string const name = cmd.getArg(0);
1133                         string const len = cmd.getArg(1);
1134                         cur.insert(MathAtom(new InsetMathSpace(name, len)));
1135                 }
1136                 break;
1137
1138         case LFUN_ERT_INSERT:
1139                 // interpret this as if a backslash was typed
1140                 cur.recordUndo();
1141                 interpretChar(cur, '\\');
1142                 break;
1143
1144         case LFUN_MATH_SUBSCRIPT:
1145                 // interpret this as if a _ was typed
1146                 cur.recordUndoSelection();
1147                 interpretChar(cur, '_');
1148                 break;
1149
1150         case LFUN_MATH_SUPERSCRIPT:
1151                 // interpret this as if a ^ was typed
1152                 cur.recordUndoSelection();
1153                 interpretChar(cur, '^');
1154                 break;
1155
1156         case LFUN_MATH_MACRO_FOLD:
1157         case LFUN_MATH_MACRO_UNFOLD: {
1158                 Cursor it = cur;
1159                 bool fold = act == LFUN_MATH_MACRO_FOLD;
1160                 bool found = findMacroToFoldUnfold(it, fold);
1161                 if (found) {
1162                         MathMacro * macro = it.nextInset()->asInsetMath()->asMacro();
1163                         cur.recordUndoInset();
1164                         if (fold)
1165                                 macro->fold(cur);
1166                         else
1167                                 macro->unfold(cur);
1168                 }
1169                 break;
1170         }
1171
1172         case LFUN_QUOTE_INSERT:
1173                 // interpret this as if a straight " was typed
1174                 cur.recordUndoSelection();
1175                 interpretChar(cur, '\"');
1176                 break;
1177
1178 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
1179 // handling such that "self-insert" works on "arbitrary stuff" too, and
1180 // math-insert only handles special math things like "matrix".
1181         case LFUN_MATH_INSERT: {
1182                 cur.recordUndoSelection();
1183                 if (cmd.argument() == "^" || cmd.argument() == "_")
1184                         interpretChar(cur, cmd.argument()[0]);
1185                 else {
1186                         MathData ar;
1187                         asArray(cmd.argument(), ar);
1188                         if (cur.selection() && ar.size() == 1
1189                             && ar[0]->asNestInset()
1190                             && ar[0]->asNestInset()->nargs() > 1)
1191                                 handleNest(cur, ar[0]);
1192                         else
1193                                 cur.niceInsert(cmd.argument());
1194                 }
1195                 break;
1196         }
1197
1198         case LFUN_UNICODE_INSERT: {
1199                 if (cmd.argument().empty())
1200                         break;
1201                 docstring hexstring = cmd.argument();
1202                 if (isHex(hexstring)) {
1203                         char_type c = hexToInt(hexstring);
1204                         if (c >= 32 && c < 0x10ffff) {
1205                                 docstring s = docstring(1, c);
1206                                 FuncCode code = currentMode() == MATH_MODE ?
1207                                         LFUN_MATH_INSERT : LFUN_SELF_INSERT;
1208                                 lyx::dispatch(FuncRequest(code, s));
1209                         }
1210                 }
1211                 break;
1212         }
1213
1214         case LFUN_DIALOG_SHOW_NEW_INSET: {
1215                 docstring const & name = cmd.argument();
1216                 string data;
1217                 if (name == "ref") {
1218                         InsetMathRef tmp(buffer_, name);
1219                         data = tmp.createDialogStr();
1220                         cur.bv().showDialog(to_utf8(name), data);
1221                 } else if (name == "mathspace") {
1222                         cur.bv().showDialog(to_utf8(name));
1223                 }
1224                 break;
1225         }
1226
1227         case LFUN_INSET_INSERT: {
1228                 MathData ar;
1229                 if (createInsetMath_fromDialogStr(cmd.argument(), ar)) {
1230                         cur.recordUndoSelection();
1231                         cur.insert(ar);
1232                         cur.forceBufferUpdate();                        
1233                 } else
1234                         cur.undispatched();
1235                 break;
1236         }
1237         case LFUN_INSET_DISSOLVE:
1238                 if (!asHullInset()) {
1239                         cur.recordUndoInset();
1240                         cur.pullArg();
1241                 }
1242                 break;
1243
1244         default:
1245                 InsetMath::doDispatch(cur, cmd);
1246                 break;
1247         }
1248 }
1249
1250
1251 bool InsetMathNest::findMacroToFoldUnfold(Cursor & it, bool fold) const {
1252         // look for macro to open/close, but stay in mathed
1253         for (; !it.empty(); it.pop_back()) {
1254
1255                 // go backward through the current cell
1256                 Inset * inset = it.nextInset();
1257                 while (inset && inset->asInsetMath()) {
1258                         MathMacro * macro = inset->asInsetMath()->asMacro();
1259                         if (macro) {
1260                                 // found the an macro to open/close?
1261                                 if (macro->folded() != fold)
1262                                         return true;
1263
1264                                 // Wrong folding state.
1265                                 // If this was the first we see in this slice, look further left,
1266                                 // otherwise go up.
1267                                 if (inset != it.nextInset())
1268                                         break;
1269                         }
1270
1271                         // go up if this was the left most position
1272                         if (it.pos() == 0)
1273                                 break;
1274
1275                         // go left
1276                         it.pos()--;
1277                         inset = it.nextInset();
1278                 }
1279         }
1280
1281         return false;
1282 }
1283
1284
1285 bool InsetMathNest::getStatus(Cursor & cur, FuncRequest const & cmd,
1286                 FuncStatus & flag) const
1287 {
1288         // the font related toggles
1289         //string tc = "mathnormal";
1290         bool ret = true;
1291         string const arg = to_utf8(cmd.argument());
1292         switch (cmd.action()) {
1293         case LFUN_INSET_MODIFY:
1294                 flag.setEnabled(false);
1295                 break;
1296 #if 0
1297         case LFUN_INSET_MODIFY:
1298                 // FIXME: check temporarily disabled
1299                 // valign code
1300                 char align = mathcursor::valign();
1301                 if (align == '\0') {
1302                         enable = false;
1303                         break;
1304                 }
1305                 if (cmd.argument().empty()) {
1306                         flag.clear();
1307                         break;
1308                 }
1309                 if (!contains("tcb", cmd.argument()[0])) {
1310                         enable = false;
1311                         break;
1312                 }
1313                 flag.setOnOff(cmd.argument()[0] == align);
1314                 break;
1315 #endif
1316         /// We have to handle them since 1.4 blocks all unhandled actions
1317         case LFUN_FONT_ITAL:
1318         case LFUN_FONT_BOLD:
1319         case LFUN_FONT_BOLDSYMBOL:
1320         case LFUN_FONT_SANS:
1321         case LFUN_FONT_EMPH:
1322         case LFUN_FONT_TYPEWRITER:
1323         case LFUN_FONT_NOUN:
1324         case LFUN_FONT_ROMAN:
1325         case LFUN_FONT_DEFAULT:
1326                 flag.setEnabled(true);
1327                 break;
1328
1329         // we just need to be in math mode to enable that
1330         case LFUN_MATH_SIZE:
1331         case LFUN_MATH_SPACE:
1332         case LFUN_MATH_LIMITS:
1333         case LFUN_MATH_EXTERN:
1334                 flag.setEnabled(true);
1335                 break;
1336
1337         case LFUN_FONT_UNDERLINE:
1338         case LFUN_FONT_FRAK:
1339                 flag.setEnabled(currentMode() != TEXT_MODE);
1340                 break;
1341
1342         case LFUN_MATH_FONT_STYLE: {
1343                 bool const textarg =
1344                         arg == "textbf"   || arg == "textsf" ||
1345                         arg == "textrm"   || arg == "textmd" ||
1346                         arg == "textit"   || arg == "textsc" ||
1347                         arg == "textsl"   || arg == "textup" ||
1348                         arg == "texttt"   || arg == "textbb" ||
1349                         arg == "textnormal";
1350                 flag.setEnabled(currentMode() != TEXT_MODE || textarg);
1351                 break;
1352         }
1353
1354         case LFUN_MATH_INSERT:
1355                 flag.setEnabled(currentMode() != TEXT_MODE);
1356                 break;
1357
1358         case LFUN_MATH_AMS_MATRIX:
1359         case LFUN_MATH_MATRIX:
1360                 flag.setEnabled(currentMode() == MATH_MODE);
1361                 break;
1362
1363         case LFUN_INSET_INSERT: {
1364                 // Don't test createMathInset_fromDialogStr(), since
1365                 // getStatus is not called with a valid reference and the
1366                 // dialog would not be applyable.
1367                 string const name = cmd.getArg(0);
1368                 flag.setEnabled(name == "ref" || name == "mathspace");
1369                 break;
1370         }
1371
1372         case LFUN_MATH_DELIM:
1373         case LFUN_MATH_BIGDELIM:
1374                 // Don't do this with multi-cell selections
1375                 flag.setEnabled(cur.selBegin().idx() == cur.selEnd().idx());
1376                 break;
1377
1378         case LFUN_MATH_MACRO_FOLD:
1379         case LFUN_MATH_MACRO_UNFOLD: {
1380                 Cursor it = cur;
1381                 bool found = findMacroToFoldUnfold(it, cmd.action() == LFUN_MATH_MACRO_FOLD);
1382                 flag.setEnabled(found);
1383                 break;
1384         }
1385
1386         case LFUN_SPECIALCHAR_INSERT:
1387                 // FIXME: These would probably make sense in math-text mode
1388                 flag.setEnabled(false);
1389                 break;
1390
1391         case LFUN_INSET_DISSOLVE:
1392                 flag.setEnabled(!asHullInset());
1393                 break;
1394
1395         default:
1396                 ret = false;
1397                 break;
1398         }
1399         return ret;
1400 }
1401
1402
1403 void InsetMathNest::edit(Cursor & cur, bool front, EntryDirection entry_from)
1404 {
1405         cur.push(*this);
1406         bool enter_front = (entry_from == Inset::ENTRY_DIRECTION_RIGHT ||
1407                 (entry_from == Inset::ENTRY_DIRECTION_IGNORE && front));
1408         cur.idx() = enter_front ? 0 : cur.lastidx();
1409         cur.pos() = enter_front ? 0 : cur.lastpos();
1410         cur.resetAnchor();
1411         //lyxerr << "InsetMathNest::edit, cur:\n" << cur << endl;
1412 }
1413
1414
1415 Inset * InsetMathNest::editXY(Cursor & cur, int x, int y)
1416 {
1417         int idx_min = 0;
1418         int dist_min = 1000000;
1419         for (idx_type i = 0, n = nargs(); i != n; ++i) {
1420                 int const d = cell(i).dist(cur.bv(), x, y);
1421                 if (d < dist_min) {
1422                         dist_min = d;
1423                         idx_min = i;
1424                 }
1425         }
1426         MathData & ar = cell(idx_min);
1427         cur.push(*this);
1428         cur.idx() = idx_min;
1429         cur.pos() = ar.x2pos(&cur.bv(), x - ar.xo(cur.bv()));
1430
1431         //lyxerr << "found cell : " << idx_min << " pos: " << cur.pos() << endl;
1432         if (dist_min == 0) {
1433                 // hit inside cell
1434                 for (pos_type i = 0, n = ar.size(); i < n; ++i)
1435                         if (ar[i]->covers(cur.bv(), x, y))
1436                                 return ar[i].nucleus()->editXY(cur, x, y);
1437         }
1438         return this;
1439 }
1440
1441
1442 void InsetMathNest::lfunMousePress(Cursor & cur, FuncRequest & cmd)
1443 {
1444         //lyxerr << "## lfunMousePress: buttons: " << cmd.button() << endl;
1445         BufferView & bv = cur.bv();
1446         bool do_selection = cmd.button() == mouse_button::button1
1447                 && cmd.argument() == "region-select";
1448         bv.mouseSetCursor(cur, do_selection);
1449         if (cmd.button() == mouse_button::button1) {
1450                 //lyxerr << "## lfunMousePress: setting cursor to: " << cur << endl;
1451                 // Update the cursor update flags as needed:
1452                 //
1453                 // Update::Decoration: tells to update the decoration
1454                 //                     (visual box corners that define
1455                 //                     the inset)/
1456                 // Update::FitCursor: adjust the screen to the cursor
1457                 //                    position if needed
1458                 // cur.result().update(): don't overwrite previously set flags.
1459                 cur.screenUpdateFlags(Update::Decoration | Update::FitCursor
1460                                 | cur.result().screenUpdate());
1461         } else if (cmd.button() == mouse_button::button2) {
1462                 if (cap::selection()) {
1463                         // See comment in Text::dispatch why we do this
1464                         cap::copySelectionToStack();
1465                         cmd = FuncRequest(LFUN_PASTE, "0");
1466                         doDispatch(bv.cursor(), cmd);
1467                 } else {
1468                         MathData ar;
1469                         asArray(theSelection().get(), ar);
1470                         bv.cursor().insert(ar);
1471                 }
1472         }
1473 }
1474
1475
1476 void InsetMathNest::lfunMouseMotion(Cursor & cur, FuncRequest & cmd)
1477 {
1478         // only select with button 1
1479         if (cmd.button() == mouse_button::button1) {
1480                 Cursor & bvcur = cur.bv().cursor();
1481                 if (bvcur.realAnchor().hasPart(cur)) {
1482                         //lyxerr << "## lfunMouseMotion: cursor: " << cur << endl;
1483                         bvcur.setCursor(cur);
1484                         bvcur.setSelection(true);
1485                         //lyxerr << "MOTION " << bvcur << endl;
1486                 } else
1487                         cur.undispatched();
1488         }
1489 }
1490
1491
1492 void InsetMathNest::lfunMouseRelease(Cursor & cur, FuncRequest & cmd)
1493 {
1494         //lyxerr << "## lfunMouseRelease: buttons: " << cmd.button() << endl;
1495
1496         if (cmd.button() == mouse_button::button1) {
1497                 if (!cur.selection())
1498                         cur.noScreenUpdate();
1499                 else {
1500                         Cursor & bvcur = cur.bv().cursor();
1501                         bvcur.setSelection(true);
1502                 }
1503                 return;
1504         }
1505
1506         cur.undispatched();
1507 }
1508
1509
1510 bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
1511 {
1512         //lyxerr << "interpret 2: '" << c << "'" << endl;
1513         docstring save_selection;
1514         if (c == '^' || c == '_')
1515                 save_selection = grabAndEraseSelection(cur);
1516
1517         cur.clearTargetX();
1518         Buffer * buf = cur.buffer();
1519
1520         // handle macroMode
1521         if (cur.inMacroMode()) {
1522                 docstring name = cur.macroName();
1523
1524                 /// are we currently typing '#1' or '#2' or...?
1525                 if (name == "\\#") {
1526                         cur.backspace();
1527                         int n = c - '0';
1528                         if (n >= 1 && n <= 9)
1529                                 cur.insert(new MathMacroArgument(n));
1530                         return true;
1531                 }
1532
1533                 // do not finish macro for known * commands
1534                 MathWordList const & mwl = mathedWordList();
1535                 bool star_macro = c == '*'
1536                         && (mwl.find(name.substr(1) + "*") != mwl.end()
1537                             || cur.buffer()->getMacro(name.substr(1) + "*", cur, true));
1538                 if (isAlphaASCII(c) || star_macro) {
1539                         cur.activeMacro()->setName(name + docstring(1, c));
1540                         return true;
1541                 }
1542
1543                 // handle 'special char' macros
1544                 if (name == "\\") {
1545                         // remove the '\\'
1546                         if (c == '\\') {
1547                                 cur.backspace();
1548                                 if (currentMode() <= InsetMath::TEXT_MODE)
1549                                         cur.niceInsert(createInsetMath("textbackslash", buf));
1550                                 else
1551                                         cur.niceInsert(createInsetMath("backslash", buf));
1552                         } else if (c == '^' && currentMode() == InsetMath::MATH_MODE) {
1553                                 cur.backspace();
1554                                 cur.niceInsert(createInsetMath("mathcircumflex", buf));
1555                         } else if (c == '{') {
1556                                 cur.backspace();
1557                                 cur.niceInsert(MathAtom(new InsetMathBrace(buf)));
1558                         } else if (c == '%') {
1559                                 cur.backspace();
1560                                 cur.niceInsert(MathAtom(new InsetMathComment(buf)));
1561                         } else if (c == '#') {
1562                                 LASSERT(cur.activeMacro(), /**/);
1563                                 cur.activeMacro()->setName(name + docstring(1, c));
1564                         } else {
1565                                 cur.backspace();
1566                                 cur.niceInsert(createInsetMath(docstring(1, c), buf));
1567                         }
1568                         return true;
1569                 }
1570
1571                 // One character big delimiters. The others are handled in
1572                 // interpretString().
1573                 latexkeys const * l = in_word_set(name.substr(1));
1574                 if (name[0] == '\\' && l && l->inset == "big") {
1575                         docstring delim;
1576                         switch (c) {
1577                         case '{':
1578                                 delim = from_ascii("\\{");
1579                                 break;
1580                         case '}':
1581                                 delim = from_ascii("\\}");
1582                                 break;
1583                         default:
1584                                 delim = docstring(1, c);
1585                                 break;
1586                         }
1587                         if (InsetMathBig::isBigInsetDelim(delim)) {
1588                                 // name + delim ared a valid InsetMathBig.
1589                                 // We can't use cur.macroModeClose() because
1590                                 // it does not handle delim.
1591                                 InsetMathUnknown * p = cur.activeMacro();
1592                                 p->finalize();
1593                                 --cur.pos();
1594                                 cur.cell().erase(cur.pos());
1595                                 cur.plainInsert(MathAtom(
1596                                         new InsetMathBig(name.substr(1), delim)));
1597                                 return true;
1598                         }
1599                 }
1600
1601                 // leave macro mode and try again if necessary
1602                 if (cur.macroModeClose()) {
1603                         MathAtom const atom = cur.prevAtom();
1604                         if (atom->asNestInset() && atom->isActive()) {
1605                                 cur.posBackward();
1606                                 cur.pushBackward(*cur.nextInset());
1607                         }
1608                 }
1609                 if (c == '{')
1610                         cur.niceInsert(MathAtom(new InsetMathBrace(buf)));
1611                 else if (c != ' ')
1612                         interpretChar(cur, c);
1613                 return true;
1614         }
1615
1616
1617         // leave autocorrect mode if necessary
1618         if (lyxrc.autocorrection_math && c == ' ' && cur.autocorrect()) {
1619                 cur.autocorrect() = false;
1620                 cur.message(_("Autocorrect Off ('!' to enter)"));
1621                 return true;
1622         } 
1623         if (lyxrc.autocorrection_math && c == '!' && !cur.autocorrect()) {
1624                 cur.autocorrect() = true;
1625                 cur.message(_("Autocorrect On (<space> to exit)"));
1626                 return true;
1627         }
1628
1629         // just clear selection on pressing the space bar
1630         if (cur.selection() && c == ' ') {
1631                 cur.setSelection(false);
1632                 return true;
1633         }
1634
1635         if (c == '\\') {
1636                 //lyxerr << "starting with macro" << endl;
1637                 bool reduced = cap::reduceSelectionToOneCell(cur);
1638                 if (reduced || !cur.selection()) {
1639                         docstring const safe = cap::grabAndEraseSelection(cur);
1640                         cur.insert(MathAtom(new InsetMathUnknown(from_ascii("\\"), safe, false)));
1641                 }
1642                 return true;
1643         }
1644
1645         selClearOrDel(cur);
1646
1647         if (c == '\n') {
1648                 if (currentMode() <= InsetMath::TEXT_MODE)
1649                         cur.insert(c);
1650                 return true;
1651         }
1652
1653         if (c == ' ') {
1654                 if (currentMode() <= InsetMath::TEXT_MODE) {
1655                         // insert spaces in text or undecided mode,
1656                         // but suppress direct insertion of two spaces in a row
1657                         // the still allows typing  '<space>a<space>' and deleting the 'a', but
1658                         // it is better than nothing...
1659                         if (!cur.pos() != 0 || cur.prevAtom()->getChar() != ' ') {
1660                                 cur.insert(c);
1661                                 // FIXME: we have to enable full redraw here because of the
1662                                 // visual box corners that define the inset. If we know for
1663                                 // sure that we stay within the same cell we can optimize for
1664                                 // that using:
1665                                 //cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1666                         }
1667                         return true;
1668                 }
1669                 if (cur.pos() != 0 && cur.prevAtom()->asSpaceInset()) {
1670                         cur.prevAtom().nucleus()->asSpaceInset()->incSpace();
1671                         // FIXME: we have to enable full redraw here because of the
1672                         // visual box corners that define the inset. If we know for
1673                         // sure that we stay within the same cell we can optimize for
1674                         // that using:
1675                         //cur.screenUpdateFlags(Update::SinglePar | Update::FitCursor);
1676                         return true;
1677                 }
1678
1679                 if (cur.popForward()) {
1680                         // FIXME: we have to enable full redraw here because of the
1681                         // visual box corners that define the inset. If we know for
1682                         // sure that we stay within the same cell we can optimize for
1683                         // that using:
1684                         //cur.screenUpdateFlags(Update::FitCursor);
1685                         return true;
1686                 }
1687
1688                 // if we are at the very end, leave the formula
1689                 return cur.pos() != cur.lastpos();
1690         }
1691
1692         // These should be treated differently when not in text mode:
1693         if (currentMode() != InsetMath::TEXT_MODE) {
1694                 if (c == '_') {
1695                         script(cur, false, save_selection);
1696                         return true;
1697                 }
1698                 if (c == '^') {
1699                         script(cur, true, save_selection);
1700                         return true;
1701                 }
1702                 if (c == '~') {
1703                         cur.niceInsert(createInsetMath("sim", buf));
1704                         return true;
1705                 }
1706                 if (currentMode() == InsetMath::MATH_MODE && !isAsciiOrMathAlpha(c)) {
1707                         MathAtom at = createInsetMath("text", buf);
1708                         at.nucleus()->cell(0).push_back(MathAtom(new InsetMathChar(c)));
1709                         cur.niceInsert(at);
1710                         cur.posForward();
1711                         return true;
1712                 }
1713         } else {
1714                 if (c == '^') {
1715                         cur.niceInsert(createInsetMath("textasciicircum", buf));
1716                         return true;
1717                 }
1718                 if (c == '~') {
1719                         cur.niceInsert(createInsetMath("textasciitilde", buf));
1720                         return true;
1721                 }
1722         }
1723
1724         if (c == '{' || c == '}' || c == '&' || c == '$' || c == '#' ||
1725             c == '%' || c == '_') {
1726                 cur.niceInsert(createInsetMath(docstring(1, c), buf));
1727                 return true;
1728         }
1729
1730
1731         // try auto-correction
1732         if (lyxrc.autocorrection_math && cur.autocorrect() && cur.pos() != 0
1733                   && math_autocorrect(cur.prevAtom(), c))
1734                 return true;
1735
1736         // no special circumstances, so insert the character without any fuss
1737         cur.insert(c);
1738         if (lyxrc.autocorrection_math) {
1739                 if (!cur.autocorrect())
1740                         cur.message(_("Autocorrect Off ('!' to enter)"));
1741                 else
1742                         cur.message(_("Autocorrect On (<space> to exit)"));
1743         }
1744         return true;
1745 }
1746
1747
1748 bool InsetMathNest::interpretString(Cursor & cur, docstring const & str)
1749 {
1750         // Create a InsetMathBig from cur.cell()[cur.pos() - 1] and t if
1751         // possible
1752         if (!cur.empty() && cur.pos() > 0 &&
1753             cur.cell()[cur.pos() - 1]->asUnknownInset()) {
1754                 if (InsetMathBig::isBigInsetDelim(str)) {
1755                         docstring prev = asString(cur.cell()[cur.pos() - 1]);
1756                         if (prev[0] == '\\') {
1757                                 prev = prev.substr(1);
1758                                 latexkeys const * l = in_word_set(prev);
1759                                 if (l && l->inset == "big") {
1760                                         cur.cell()[cur.pos() - 1] =
1761                                                 MathAtom(new InsetMathBig(prev, str));
1762                                         return true;
1763                                 }
1764                         }
1765                 }
1766         }
1767         return false;
1768 }
1769
1770
1771 bool InsetMathNest::script(Cursor & cur, bool up)
1772 {
1773         return script(cur, up, docstring());
1774 }
1775
1776
1777 bool InsetMathNest::script(Cursor & cur, bool up,
1778                 docstring const & save_selection)
1779 {
1780         // Hack to get \^ and \_ working
1781         //lyxerr << "handling script: up: " << up << endl;
1782         if (cur.inMacroMode() && cur.macroName() == "\\") {
1783                 if (up)
1784                         cur.niceInsert(createInsetMath("mathcircumflex", cur.buffer()));
1785                 else
1786                         interpretChar(cur, '_');
1787                 return true;
1788         }
1789
1790         cur.macroModeClose();
1791         if (asScriptInset() && cur.idx() == 0) {
1792                 // we are in a nucleus of a script inset, move to _our_ script
1793                 InsetMathScript * inset = asScriptInset();
1794                 //lyxerr << " going to cell " << inset->idxOfScript(up) << endl;
1795                 inset->ensure(up);
1796                 cur.idx() = inset->idxOfScript(up);
1797                 cur.pos() = 0;
1798         } else if (cur.pos() != 0 && cur.prevAtom()->asScriptInset()) {
1799                 --cur.pos();
1800                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1801                 cur.push(*inset);
1802                 inset->ensure(up);
1803                 cur.idx() = inset->idxOfScript(up);
1804                 cur.pos() = cur.lastpos();
1805         } else {
1806                 // convert the thing to our left to a scriptinset or create a new
1807                 // one if in the very first position of the array
1808                 if (cur.pos() == 0) {
1809                         //lyxerr << "new scriptinset" << endl;
1810                         cur.insert(new InsetMathScript(buffer_, up));
1811                 } else {
1812                         //lyxerr << "converting prev atom " << endl;
1813                         cur.prevAtom() = MathAtom(new InsetMathScript(buffer_, cur.prevAtom(), up));
1814                 }
1815                 --cur.pos();
1816                 InsetMathScript * inset = cur.nextAtom().nucleus()->asScriptInset();
1817                 // See comment in MathParser.cpp for special handling of {}-bases
1818
1819                 cur.push(*inset);
1820                 cur.idx() = 1;
1821                 cur.pos() = 0;
1822         }
1823         //lyxerr << "inserting selection 1:\n" << save_selection << endl;
1824         cur.niceInsert(save_selection);
1825         cur.resetAnchor();
1826         //lyxerr << "inserting selection 2:\n" << save_selection << endl;
1827         return true;
1828 }
1829
1830
1831 bool InsetMathNest::completionSupported(Cursor const & cur) const
1832 {
1833         return cur.inMacroMode();
1834 }
1835
1836
1837 bool InsetMathNest::inlineCompletionSupported(Cursor const & cur) const
1838 {
1839         return cur.inMacroMode();
1840 }
1841
1842
1843 bool InsetMathNest::automaticInlineCompletion() const
1844 {
1845         return lyxrc.completion_inline_math;
1846 }
1847
1848
1849 bool InsetMathNest::automaticPopupCompletion() const
1850 {
1851         return lyxrc.completion_popup_math;
1852 }
1853
1854
1855 CompletionList const *
1856 InsetMathNest::createCompletionList(Cursor const & cur) const
1857 {
1858         if (!cur.inMacroMode())
1859                 return 0;
1860
1861         return new MathCompletionList(cur);
1862 }
1863
1864
1865 docstring InsetMathNest::completionPrefix(Cursor const & cur) const
1866 {
1867         if (!cur.inMacroMode())
1868                 return docstring();
1869
1870         return cur.activeMacro()->name();
1871 }
1872
1873
1874 bool InsetMathNest::insertCompletion(Cursor & cur, docstring const & s,
1875                                      bool finished)
1876 {
1877         if (!cur.inMacroMode())
1878                 return false;
1879
1880         // append completion to active macro
1881         InsetMathUnknown * inset = cur.activeMacro();
1882         inset->setName(inset->name() + s);
1883
1884         // finish macro
1885         if (finished) {
1886 #if 0
1887                 // FIXME: this creates duplicates in the completion popup
1888                 // which looks ugly. Moreover the changes the list lengths
1889                 // which seems to
1890                 confuse the popup as well.
1891                 MathCompletionList::addToFavorites(inset->name());
1892 #endif
1893                 lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, " "));
1894         }
1895
1896         return true;
1897 }
1898
1899
1900 void InsetMathNest::completionPosAndDim(Cursor const & cur, int & x, int & y,
1901                                         Dimension & dim) const
1902 {
1903         Inset const * inset = cur.activeMacro();
1904         if (!inset)
1905                 return;
1906
1907         // get inset dimensions
1908         dim = cur.bv().coordCache().insets().dim(inset);
1909         // FIXME: these 3 are no accurate, but should depend on the font.
1910         // Now the popup jumps down if you enter a char with descent > 0.
1911         dim.des += 3;
1912         dim.asc += 3;
1913
1914         // and position
1915         Point xy = cur.bv().coordCache().insets().xy(inset);
1916         x = xy.x_;
1917         y = xy.y_;
1918 }
1919
1920
1921 bool InsetMathNest::cursorMathForward(Cursor & cur)
1922 {
1923         if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) {
1924                 cur.pushBackward(*cur.nextAtom().nucleus());
1925                 cur.inset().idxFirst(cur);
1926                 return true;
1927         }
1928         if (cur.posForward() || idxForward(cur))
1929                 return true;
1930         // try to pop forwards --- but don't pop out of math! leave that to
1931         // the FINISH lfuns
1932         int s = cur.depth() - 2;
1933         if (s >= 0 && cur[s].inset().asInsetMath())
1934                 return cur.popForward();
1935         return false;
1936 }
1937
1938
1939 bool InsetMathNest::cursorMathBackward(Cursor & cur)
1940 {
1941         if (cur.pos() != 0 && cur.openable(cur.prevAtom())) {
1942                 cur.posBackward();
1943                 cur.push(*cur.nextAtom().nucleus());
1944                 cur.inset().idxLast(cur);
1945                 return true;
1946         }
1947         if (cur.posBackward() || idxBackward(cur))
1948                 return true;
1949         // try to pop backwards --- but don't pop out of math! leave that to
1950         // the FINISH lfuns
1951         int s = cur.depth() - 2;
1952         if (s >= 0 && cur[s].inset().asInsetMath())
1953                 return cur.popBackward();
1954         return false;
1955 }
1956
1957
1958 ////////////////////////////////////////////////////////////////////
1959
1960 MathCompletionList::MathCompletionList(Cursor const & cur)
1961 {
1962         // fill it with macros from the buffer
1963         MacroNameSet macros;
1964         cur.buffer()->listMacroNames(macros);
1965         MacroNameSet::const_iterator it;
1966         for (it = macros.begin(); it != macros.end(); ++it) {
1967                 if (cur.buffer()->getMacro(*it, cur, false))
1968                         locals.push_back("\\" + *it);
1969         }
1970         sort(locals.begin(), locals.end());
1971
1972         if (globals.size() > 0)
1973                 return;
1974
1975         // fill in global macros
1976         macros.clear();
1977         MacroTable::globalMacros().getMacroNames(macros);
1978         //lyxerr << "Globals completion macros: ";
1979         for (it = macros.begin(); it != macros.end(); ++it) {
1980                 //lyxerr << "\\" + *it << " ";
1981                 globals.push_back("\\" + *it);
1982         }
1983         //lyxerr << std::endl;
1984
1985         // fill in global commands
1986         globals.push_back(from_ascii("\\boxed"));
1987         globals.push_back(from_ascii("\\fbox"));
1988         globals.push_back(from_ascii("\\framebox"));
1989         globals.push_back(from_ascii("\\makebox"));
1990         globals.push_back(from_ascii("\\kern"));
1991         globals.push_back(from_ascii("\\xrightarrow"));
1992         globals.push_back(from_ascii("\\xleftarrow"));
1993         globals.push_back(from_ascii("\\split"));
1994         globals.push_back(from_ascii("\\gathered"));
1995         globals.push_back(from_ascii("\\aligned"));
1996         globals.push_back(from_ascii("\\alignedat"));
1997         globals.push_back(from_ascii("\\cases"));
1998         globals.push_back(from_ascii("\\substack"));
1999         globals.push_back(from_ascii("\\xymatrix"));
2000         globals.push_back(from_ascii("\\Diagram"));
2001         globals.push_back(from_ascii("\\subarray"));
2002         globals.push_back(from_ascii("\\array"));
2003         globals.push_back(from_ascii("\\sqrt"));
2004         globals.push_back(from_ascii("\\root"));
2005         globals.push_back(from_ascii("\\tabular"));
2006         globals.push_back(from_ascii("\\stackrel"));
2007         globals.push_back(from_ascii("\\binom"));
2008         globals.push_back(from_ascii("\\choose"));
2009         globals.push_back(from_ascii("\\brace"));
2010         globals.push_back(from_ascii("\\brack"));
2011         globals.push_back(from_ascii("\\frac"));
2012         globals.push_back(from_ascii("\\over"));
2013         globals.push_back(from_ascii("\\nicefrac"));
2014         globals.push_back(from_ascii("\\unitfrac"));
2015         globals.push_back(from_ascii("\\unitfracthree"));
2016         globals.push_back(from_ascii("\\unitone"));
2017         globals.push_back(from_ascii("\\unittwo"));
2018         globals.push_back(from_ascii("\\infer"));
2019         globals.push_back(from_ascii("\\atop"));
2020         globals.push_back(from_ascii("\\lefteqn"));
2021         globals.push_back(from_ascii("\\boldsymbol"));
2022         globals.push_back(from_ascii("\\bm"));
2023         globals.push_back(from_ascii("\\color"));
2024         globals.push_back(from_ascii("\\normalcolor"));
2025         globals.push_back(from_ascii("\\textcolor"));
2026         globals.push_back(from_ascii("\\cfrac"));
2027         globals.push_back(from_ascii("\\cfracleft"));
2028         globals.push_back(from_ascii("\\cfracright"));
2029         globals.push_back(from_ascii("\\dfrac"));
2030         globals.push_back(from_ascii("\\tfrac"));
2031         globals.push_back(from_ascii("\\dbinom"));
2032         globals.push_back(from_ascii("\\tbinom"));
2033         globals.push_back(from_ascii("\\hphantom"));
2034         globals.push_back(from_ascii("\\phantom"));
2035         globals.push_back(from_ascii("\\vphantom"));
2036         MathWordList const & words = mathedWordList();
2037         MathWordList::const_iterator it2;
2038         //lyxerr << "Globals completion commands: ";
2039         for (it2 = words.begin(); it2 != words.end(); ++it2) {
2040                 globals.push_back("\\" + (*it2).first);
2041                 //lyxerr << "\\" + (*it2).first << " ";
2042         }
2043         //lyxerr << std::endl;
2044         sort(globals.begin(), globals.end());
2045 }
2046
2047
2048 MathCompletionList::~MathCompletionList()
2049 {
2050 }
2051
2052
2053 size_type MathCompletionList::size() const
2054 {
2055         return locals.size() + globals.size();
2056 }
2057
2058
2059 docstring const & MathCompletionList::data(size_t idx) const
2060 {
2061         size_t lsize = locals.size();
2062         if (idx >= lsize)
2063                 return globals[idx - lsize];
2064         else
2065                 return locals[idx];
2066 }
2067
2068
2069 std::string MathCompletionList::icon(size_t idx) const
2070 {
2071         // get the latex command
2072         docstring cmd;
2073         size_t lsize = locals.size();
2074         if (idx >= lsize)
2075                 cmd = globals[idx - lsize];
2076         else
2077                 cmd = locals[idx];
2078
2079         // get the icon resource name by stripping the backslash
2080         return "images/math/" + to_utf8(cmd.substr(1)) + ".png";
2081 }
2082
2083 std::vector<docstring> MathCompletionList::globals;
2084
2085 } // namespace lyx