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