]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.C
Added new FINISED states FINISHED_RIGHT, FINISHED_UP, FINISHED_DOWN.
[lyx.git] / src / mathed / formulabase.C
1  /*
2 *  File:        formula.C
3 *  Purpose:     Implementation of formula inset
4 *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
5 *  Created:     January 1996
6 *  Description: Allows the edition of math paragraphs inside Lyx.
7 *
8 *  Copyright: 1996-1998 Alejandro Aguilar Sierra
9 *
10 *  Version: 0.4, Lyx project.
11 *
12 *   You are free to use and modify this code under the terms of
13 *   the GNU General Public Licence version 2 or later.
14 */
15
16 #include <config.h>
17 #include <fstream>
18
19 #include "Lsstream.h"
20
21 #ifdef __GNUG__
22 #pragma implementation
23 #endif
24
25 #include "formula.h"
26 #include "formulamacro.h"
27 #include "commandtags.h"
28 #include "math_cursor.h"
29 #include "math_parser.h"
30 #include "BufferView.h"
31 #include "lyxtext.h"
32 #include "lyxfunc.h"
33 #include "gettext.h"
34 #include "LaTeXFeatures.h"
35 #include "debug.h"
36 #include "support.h"
37 #include "support/lstrings.h"
38 #include "LyXView.h"
39 #include "Painter.h"
40 #include "font.h"
41 #include "math_arrayinset.h"
42 #include "math_spaceinset.h"
43 #include "math_scopeinset.h"
44 #include "math_macrotable.h"
45 #include "math_factory.h"
46 #include "support/lyxlib.h"
47 #include "undo_funcs.h"
48
49 using std::endl;
50 using std::ostream;
51 using std::vector;
52
53 extern char const * latex_mathenv[];
54 MathCursor        * mathcursor = 0;
55
56
57 namespace {
58
59
60 // local global
61 int sel_x;
62 int sel_y;
63 bool sel_flag;
64
65 void mathed_init_fonts();
66
67 string nicelabel(string const & label)
68 {
69         return "(" + (label.empty() ? "#" : label) + ")";
70 }
71
72 void handleFont(BufferView * bv, MathTextCodes t) 
73 {
74         if (mathcursor->selection())
75                 bv->lockedInsetStoreUndo(Undo::EDIT);
76         mathcursor->handleFont(t);
77 }
78
79
80 void handleAccent(BufferView * bv, string const & name)
81 {
82         bv->lockedInsetStoreUndo(Undo::EDIT);
83         mathcursor->insert(createMathInset(name));
84 }
85
86
87 bool openNewInset(BufferView * bv, UpdatableInset * new_inset)
88 {
89         LyXText * lt = bv->getLyXText();
90         
91         bv->beforeChange(lt);
92         finishUndo();
93         if (!bv->insertInset(new_inset)) {
94                 delete new_inset;
95                 return false;
96         }
97         new_inset->edit(bv, 0, 0, 0);
98         return true;
99 }
100
101
102 // returns the nearest enclosing grid
103 MathArrayInset * matrixpar(int & idx)
104 {
105         idx = 0;
106         return (mathcursor ? mathcursor->enclosingArray(idx) : 0); 
107 }
108
109
110 } // namespace anon
111
112
113
114 InsetFormulaBase::InsetFormulaBase()
115 {
116 #ifdef WITH_WARNINGS
117 #warning This is needed as long the math parser is not re-entrant
118 #endif
119         MathMacroTable::builtinMacros();
120         //lyxerr << "sizeof MathInset: " << sizeof(MathInset) << "\n";
121 }
122
123
124 void InsetFormulaBase::read(Buffer const *, LyXLex & lex)
125 {
126         read(lex);
127 }
128
129
130 void InsetFormulaBase::write(Buffer const *, ostream & os) const
131 {
132         write(os);
133 }
134
135
136 int InsetFormulaBase::latex(Buffer const *, ostream & os,
137         bool fragile, bool spacing) const
138 {
139         return latex(os, fragile, spacing);
140 }
141
142
143 int InsetFormulaBase::ascii(Buffer const *, ostream & os, int spacing) const
144 {
145         return ascii(os, spacing);
146 }
147
148
149 int InsetFormulaBase::linuxdoc(Buffer const *, ostream & os) const
150 {
151         return linuxdoc(os);
152 }
153
154
155 int InsetFormulaBase::docBook(Buffer const *, ostream & os) const
156 {
157         return docBook(os);
158 }
159
160
161
162 // Check if uses AMS macros
163 void InsetFormulaBase::validate(LaTeXFeatures &) const
164 {}
165
166
167 string const InsetFormulaBase::editMessage() const
168 {
169         return _("Math editor mode");
170 }
171
172
173 void InsetFormulaBase::edit(BufferView * bv, int x, int /*y*/, unsigned int)
174 {
175         mathcursor = new MathCursor(this);
176
177         if (!bv->lockInset(this))
178                 lyxerr[Debug::MATHED] << "Cannot lock inset!!!" << endl;
179
180         metrics();
181         // if that is removed, we won't get the magenta box when entering an
182         // inset for the first time
183         bv->updateInset(this, false);
184         if (x == 0)
185                 mathcursor->first();
186         else
187                 mathcursor->last();
188         sel_x = 0;
189         sel_y = 0;
190         sel_flag = false;
191 }
192
193
194 void InsetFormulaBase::edit(BufferView * bv, bool front)
195 {
196         // looks hackish but seems to work
197         edit(bv, front ? 0 : 1, 0, 0);
198 }
199
200
201 void InsetFormulaBase::insetUnlock(BufferView * bv)
202 {
203         if (mathcursor) {
204                 if (mathcursor->inMacroMode()) {
205                         mathcursor->macroModeClose();
206                         updateLocal(bv, true);
207                 }
208                 delete mathcursor;
209                 mathcursor = 0;
210         }
211         bv->updateInset(this, false);
212 }
213
214
215 void InsetFormulaBase::getCursorPos(BufferView *, int & x, int & y) const
216 {
217         mathcursor->getPos(x, y);
218         x -= par()->xo();
219         y -= par()->yo();
220 }
221
222
223 void InsetFormulaBase::toggleInsetCursor(BufferView * bv)
224 {
225         if (!mathcursor)
226                 return;
227
228         if (isCursorVisible())
229                 bv->hideLockedInsetCursor();
230         else {
231                 int x;
232                 int y;
233                 mathcursor->getPos(x, y);
234                 //x -= par()->xo();
235                 y -= par()->yo();
236                 int asc;
237                 int desc;
238                 math_font_max_dim(LM_TC_TEXTRM, LM_ST_TEXT, asc, desc);
239                 bv->showLockedInsetCursor(x, y, asc, desc);
240         }
241
242         toggleCursorVisible();
243 }
244
245
246 void InsetFormulaBase::showInsetCursor(BufferView * bv, bool)
247 {
248         if (!isCursorVisible()) {
249                 if (mathcursor) {
250                         int x;
251                         int y;
252                         mathcursor->getPos(x, y);
253                         x -= par()->xo();
254                         y -= par()->yo();
255                         int asc;
256                         int desc;
257                         math_font_max_dim(LM_TC_TEXTRM, LM_ST_TEXT, asc, desc);
258                         bv->fitLockedInsetCursor(x, y, asc, desc);
259                 }
260                 toggleInsetCursor(bv);
261         }
262 }
263
264
265 void InsetFormulaBase::hideInsetCursor(BufferView * bv)
266 {
267         if (isCursorVisible())
268                 toggleInsetCursor(bv);
269 }
270
271
272 void InsetFormulaBase::toggleInsetSelection(BufferView * bv)
273 {
274         if (mathcursor)
275                 bv->updateInset(this, false);
276 }
277
278
279 vector<string> const InsetFormulaBase::getLabelList() const
280 {
281   return std::vector<string>();
282 }
283
284
285 void InsetFormulaBase::updateLocal(BufferView * bv, bool dirty)
286 {
287         metrics();
288         bv->updateInset(this, dirty);
289 }
290
291
292 void InsetFormulaBase::insetButtonRelease(BufferView * bv,
293                                           int x, int y, int /*button*/)
294 {
295         if (mathcursor) {
296                 hideInsetCursor(bv);
297                 x += par()->xo();
298                 y += par()->yo();
299                 mathcursor->setPos(x, y);
300                 showInsetCursor(bv);
301                 if (sel_flag) {
302                         sel_flag = false;
303                         sel_x = 0;
304                         sel_y = 0;
305                 }
306                 bv->updateInset(this, false);
307         }
308 }
309
310
311 void InsetFormulaBase::insetButtonPress(BufferView * bv,
312                                         int x, int y, int /*button*/)
313 {
314         sel_flag = false;
315         sel_x = x;
316         sel_y = y;
317         if (mathcursor && mathcursor->selection()) {
318                 mathcursor->selClear();
319                 bv->updateInset(this, false);
320         }
321 }
322
323
324 void InsetFormulaBase::insetMotionNotify(BufferView * bv,
325                                          int x, int y, int /*button*/)
326 {
327         if (sel_x && sel_y && abs(x-sel_x) > 4 && !sel_flag) {
328                 sel_flag = true;
329                 hideInsetCursor(bv);
330                 mathcursor->setPos(sel_x + par()->xo(), sel_y + par()->yo());
331                 mathcursor->selStart();
332                 showInsetCursor(bv);
333                 mathcursor->getPos(sel_x, sel_y);
334         } else if (sel_flag) {
335                 hideInsetCursor(bv);
336                 x += par()->xo();
337                 y += par()->yo();
338                 mathcursor->setPos(x, y);
339                 showInsetCursor(bv);
340                 mathcursor->getPos(x, y);
341                 if (sel_x != x || sel_y != y)
342                         bv->updateInset(this, false);
343                 sel_x = x;
344                 sel_y = y;
345         }
346 }
347
348
349 void InsetFormulaBase::insetKeyPress(XKeyEvent *)
350 {
351         lyxerr[Debug::MATHED] << "Used InsetFormulaBase::InsetKeyPress." << endl;
352 }
353
354
355 int greek_kb_flag = 0;
356
357 UpdatableInset::RESULT
358 InsetFormulaBase::localDispatch(BufferView * bv, kb_action action,
359                             string const & arg)
360 {
361         //lyxerr << "InsetFormulaBase::LocalDispatch: act: " << action
362         //      << " arg: '" << arg << "' cursor: " << mathcursor << "\n";
363
364
365         if (!mathcursor) 
366                 return UNDISPATCHED;
367
368         RESULT result      = DISPATCHED;
369         bool sel           = false;
370         bool was_macro     = mathcursor->inMacroMode();
371         bool was_selection = mathcursor->selection();
372
373         hideInsetCursor(bv);
374
375         mathcursor->normalize();
376
377         switch (action) {
378
379                 // --- Cursor Movements ---------------------------------------------
380
381         case LFUN_RIGHTSEL:
382                 sel = true; // fall through...
383
384         case LFUN_RIGHT:
385                 result = DISPATCH_RESULT(mathcursor->right(sel));
386                 updateLocal(bv, false);
387                 break;
388
389
390         case LFUN_LEFTSEL:
391                 sel = true; // fall through
392
393         case LFUN_LEFT:
394                 result = DISPATCH_RESULT(mathcursor->left(sel));
395                 updateLocal(bv, false);
396                 break;
397
398
399         case LFUN_UPSEL:
400                 sel = true;
401
402         case LFUN_UP:
403                 result = DISPATCH_RESULT(mathcursor->up(sel));
404                 updateLocal(bv, false);
405                 break;
406
407
408         case LFUN_DOWNSEL:
409                 sel = true;
410
411         case LFUN_DOWN:
412                 result = DISPATCH_RESULT(mathcursor->down(sel));
413                 updateLocal(bv, false);
414                 break;
415
416         case LFUN_HOME:
417                 mathcursor->home();
418                 updateLocal(bv, false);
419                 break;
420
421         case LFUN_END:
422                 mathcursor->end();
423                 updateLocal(bv, false);
424                 break;
425
426         case LFUN_DELETE_LINE_FORWARD:
427                 bv->lockedInsetStoreUndo(Undo::DELETE);
428                 mathcursor->delLine();
429                 updateLocal(bv, true);
430                 break;
431
432         case LFUN_TAB:
433                 mathcursor->idxNext();
434                 updateLocal(bv, false);
435                 break;
436
437         case LFUN_SHIFT_TAB:
438                 mathcursor->idxPrev();
439                 updateLocal(bv, false);
440                 break;
441
442         case LFUN_TABINSERT:
443                 bv->lockedInsetStoreUndo(Undo::EDIT);
444                 mathcursor->splitCell();
445                 updateLocal(bv, true);
446                 break;
447
448         case LFUN_BACKSPACE:
449                 bv->lockedInsetStoreUndo(Undo::DELETE);
450                 mathcursor->backspace();
451                 bv->updateInset(this, true);
452                 break;
453
454         case LFUN_DELETE:
455                 bv->lockedInsetStoreUndo(Undo::DELETE);
456                 mathcursor->erase();
457                 bv->updateInset(this, true);
458                 break;
459
460                 //    case LFUN_GETXY:
461                 //      sprintf(dispatch_buffer, "%d %d",);
462                 //      dispatch_result = dispatch_buffer;
463                 //      break;
464         case LFUN_SETXY: {
465                 lyxerr << "LFUN_SETXY broken!\n";
466                 int x;
467                 int y;
468                 int x1;
469                 int y1;
470                 istringstream is(arg.c_str());
471                 is >> x >> y;
472                 par()->getXY(x1, y1);
473                 mathcursor->setPos(x1 + x, y1 + y);
474                 updateLocal(bv, false);
475                 break;
476         }
477
478         case LFUN_PASTE:
479                 if (was_macro)
480                         mathcursor->macroModeClose();
481                 bv->lockedInsetStoreUndo(Undo::INSERT);
482                 mathcursor->selPaste();
483                 updateLocal(bv, true);
484                 break;
485
486         case LFUN_CUT:
487                 bv->lockedInsetStoreUndo(Undo::DELETE);
488                 mathcursor->selCut();
489                 updateLocal(bv, true);
490                 break;
491
492         case LFUN_COPY:
493                 mathcursor->selCopy();
494                 break;
495
496         case LFUN_HOMESEL:
497         case LFUN_ENDSEL:
498         case LFUN_WORDRIGHTSEL:
499         case LFUN_WORDLEFTSEL:
500                 break;
501
502                 // --- accented characters ------------------------------
503
504         case LFUN_UMLAUT:       handleAccent(bv, "ddot"); break;
505         case LFUN_CIRCUMFLEX:   handleAccent(bv, "hat"); break;
506         case LFUN_GRAVE:        handleAccent(bv, "grave"); break;
507         case LFUN_ACUTE:        handleAccent(bv, "acute"); break;
508         case LFUN_TILDE:        handleAccent(bv, "tilde"); break;
509         case LFUN_MACRON:       handleAccent(bv, "bar"); break;
510         case LFUN_DOT:          handleAccent(bv, "dot"); break;
511         case LFUN_CARON:        handleAccent(bv, "check"); break;
512         case LFUN_BREVE:        handleAccent(bv, "breve"); break;
513         case LFUN_VECTOR:       handleAccent(bv, "vec"); break;
514
515         //  Math fonts
516         case LFUN_GREEK:        handleFont(bv, LM_TC_GREEK1); break;
517         case LFUN_GREEK_TOGGLE: handleFont(bv, LM_TC_GREEK); break;
518         case LFUN_BOLD:         handleFont(bv, LM_TC_BF); break;
519         case LFUN_SANS:         handleFont(bv, LM_TC_SF); break;
520         case LFUN_EMPH:         handleFont(bv, LM_TC_CAL); break;
521         case LFUN_ROMAN:        handleFont(bv, LM_TC_RM); break;
522         case LFUN_CODE:         handleFont(bv, LM_TC_TT); break;
523         case LFUN_DEFAULT:      handleFont(bv, LM_TC_VAR); break;
524
525         case LFUN_MATH_MODE:
526                 handleFont(bv, LM_TC_TEXTRM);
527                 //bv->owner()->message(_("math text mode toggled"));
528                 break;
529
530         case LFUN_MATH_LIMITS:
531                 bv->lockedInsetStoreUndo(Undo::INSERT);
532                 if (mathcursor->toggleLimits())
533                         updateLocal(bv, true);
534                 break;
535
536         case LFUN_MATH_SIZE:
537                 if (!arg.empty()) {
538                         bv->lockedInsetStoreUndo(Undo::INSERT);
539                         latexkeys const * l = in_word_set(arg);
540                         mathcursor->setSize(MathStyles(l ? l->id : static_cast<unsigned int>(-1)));
541                         updateLocal(bv, true);
542                 }
543                 break;
544
545         case LFUN_INSERT_MATRIX:
546                 if (!arg.empty()) {
547                         bv->lockedInsetStoreUndo(Undo::INSERT);
548                         mathcursor->interpret("matrix " + arg);
549                         updateLocal(bv, true);
550                 }
551                 break;
552
553         case LFUN_MATH_SPACE:
554         {
555                 bv->lockedInsetStoreUndo(Undo::EDIT);
556                 MathSpaceInset * p = mathcursor->prevSpaceInset();
557                 if (p) 
558                         p->incSpace();
559                 else
560                         mathcursor->insert(new MathSpaceInset(1));
561                 updateLocal(bv, true);
562                 break;
563         }
564
565         case LFUN_MATH_DELIM:
566         {
567                 bv->lockedInsetStoreUndo(Undo::INSERT);
568                 //lyxerr << "formulabase::LFUN_MATH_DELIM, arg: '" << arg << "'\n";
569                 string ls;
570                 string rs;
571                 istringstream is(arg.c_str());
572                 is >> ls >> rs;
573                 latexkeys const * l = in_word_set(ls);
574                 latexkeys const * r = in_word_set(rs);
575                 if (!is || !l || !r) {
576                         lyxerr << "can't parse delimeters from '" << arg << "'\n";
577                         break;
578                 }
579                 bv->lockedInsetStoreUndo(Undo::EDIT);
580                 mathcursor->handleDelim(l, r);
581                 updateLocal(bv, true);
582                 break;
583         }
584
585         case LFUN_PROTECTEDSPACE:
586                 //lyxerr << " called LFUN_PROTECTEDSPACE\n";
587                 bv->lockedInsetStoreUndo(Undo::INSERT);
588                 mathcursor->insert(new MathSpaceInset(1));
589                 updateLocal(bv, true);
590                 break;
591
592         case LFUN_UNDO:
593                 bv->owner()->message(_("Invalid action in math mode!"));
594                 break;
595
596
597         case LFUN_MATH_HALIGN:
598         {
599                 bv->lockedInsetStoreUndo(Undo::INSERT);
600                 lyxerr << "handling halign '" << arg << "'\n";
601                 int idx;
602                 MathArrayInset * p = matrixpar(idx);
603                 if (!p)
604                         break; 
605                 p->halign(arg.size() ? arg[0] : 'c', p->col(idx));
606                 updateLocal(bv, true);
607                 break;
608         }
609
610         case LFUN_MATH_VALIGN:
611         {
612                 bv->lockedInsetStoreUndo(Undo::INSERT);
613                 lyxerr << "handling valign '" << arg << "'\n";
614                 int idx;
615                 MathArrayInset * p = matrixpar(idx);
616                 if (!p)
617                         break; 
618                 p->valign(arg.size() ? arg[0] : 'c');
619                 updateLocal(bv, true);
620                 break;
621         }
622
623         case LFUN_MATH_ROW_INSERT:
624         {
625                 bv->lockedInsetStoreUndo(Undo::INSERT);
626                 int idx;
627                 MathArrayInset * p = matrixpar(idx);
628                 lyxerr << " calling LFUN_MATH_ROW_INSERT on " << p << endl;
629                 if (!p)
630                         break; 
631                 p->addRow(p->row(idx));
632                 updateLocal(bv, true);
633                 break;
634         }
635
636         case LFUN_MATH_ROW_DELETE:
637         {
638                 bv->lockedInsetStoreUndo(Undo::INSERT);
639                 int idx;
640                 MathArrayInset * p = matrixpar(idx);
641                 lyxerr << " calling LFUN_MATH_ROW_DELETE on " << p << endl;
642                 if (!p)
643                         break; 
644                 p->delRow(p->row(idx));
645                 updateLocal(bv, true);
646                 break;
647         }
648
649         case LFUN_MATH_COLUMN_INSERT:
650         {
651                 bv->lockedInsetStoreUndo(Undo::INSERT);
652                 int idx;
653                 MathArrayInset * p = matrixpar(idx);
654                 if (!p)
655                         break; 
656                 p->addCol(p->col(idx));
657                 updateLocal(bv, true);
658                 break;
659         }
660
661         case LFUN_MATH_COLUMN_DELETE:
662         {
663                 bv->lockedInsetStoreUndo(Undo::INSERT);
664                 int idx;
665                 MathArrayInset * p = matrixpar(idx);
666                 if (!p)
667                         break; 
668                 p->delCol(p->col(idx));
669                 updateLocal(bv, true);
670                 break;
671         }
672
673         case LFUN_EXEC_COMMAND:
674                 result = UNDISPATCHED;
675                 break;
676
677         case -1:
678         case LFUN_INSERT_MATH:
679         case LFUN_SELFINSERT:
680                 if (!arg.empty()) {
681                         bv->lockedInsetStoreUndo(Undo::INSERT);
682                         mathcursor->interpret(arg);
683                         updateLocal(bv, true);
684                 }
685                 break;
686
687         case LFUN_MATH_PANEL:
688                 result = UNDISPATCHED;
689                 break;
690
691         default:
692                 lyxerr << "Closed by action " << action << endl;
693                 result =  FINISHED;
694         }
695
696         mathcursor->normalize();
697
698         if (was_macro != mathcursor->inMacroMode()
699                                 && action >= 0 && action != LFUN_BACKSPACE) 
700                 updateLocal(bv, true);
701         
702         if (mathcursor->selection() || was_selection)
703                 toggleInsetSelection(bv);
704
705         if (result == DISPATCHED || result == DISPATCHED_NOUPDATE ||
706             result == UNDISPATCHED)
707                 showInsetCursor(bv);
708         else
709                 bv->unlockInset(this);
710
711         return result;  // original version
712 }
713
714
715 Inset::Code InsetFormulaBase::lyxCode() const
716 {
717         return Inset::MATH_CODE;
718 }
719
720
721 void mathDispatchCreation(BufferView * bv, string const & arg, bool display)
722 {
723         if (bv->available()) {
724                 // use selection if available..
725                 //string sel;
726                 //if (action == LFUN_MATH_IMPORT_SELECTION)
727                 //      sel = "";
728                 //else
729
730                 string sel = bv->getLyXText()->selectionAsString(bv->buffer());
731
732                 InsetFormulaBase * f;
733                 if (sel.empty()) {
734                                 f = new InsetFormula;
735                                 if (openNewInset(bv, f)) {
736                                         // don't do that also for LFUN_MATH_MODE unless you want end up with
737                                         // always changing to mathrm when opening an inlined inset
738                                         // -- I really hate "LyXfunc overloading"...
739                                         if (display)
740                                                 f->localDispatch(bv, LFUN_MATH_DISPLAY, string());
741                                         f->localDispatch(bv, LFUN_INSERT_MATH, arg);
742                                 }
743                 } else {
744                         // create a macro if we see "\\newcommand" somewhere, and an ordinary
745                         // formula otherwise
746                         if (sel.find("\\newcommand") == string::npos) 
747                                 f = new InsetFormula(sel);
748                         else
749                                 f = new InsetFormulaMacro(sel);
750                         bv->getLyXText()->cutSelection(bv);
751                         openNewInset(bv, f);
752                 }
753         }
754         bv->owner()->getLyXFunc()->setMessage(N_("Math editor mode"));
755 }
756
757 void mathDispatchMathDisplay(BufferView * bv, string const & arg)
758 {
759         mathDispatchCreation(bv, arg, true);
760 }
761
762         
763 void mathDispatchMathMode(BufferView * bv, string const & arg)
764 {
765         mathDispatchCreation(bv, arg, false);
766 }
767
768
769 void mathDispatchMathImportSelection(BufferView * bv, string const & arg)
770 {
771         mathDispatchCreation(bv, arg, true);
772 }
773
774
775 void mathDispatchMathMacro(BufferView * bv, string const & arg)
776 {
777         if (bv->available()) {
778                 if (arg.empty())
779                         bv->owner()->getLyXFunc()->setErrorMessage(N_("Missing argument"));
780                 else {
781                         string s(arg);
782                         string const s1 = token(s, ' ', 1);
783                         int const na = s1.empty() ? 0 : lyx::atoi(s1);
784                         openNewInset(bv, new InsetFormulaMacro(token(s, ' ', 0), na));
785                 }
786         }
787 }
788
789
790 void mathDispatchMathDelim(BufferView * bv, string const & arg)
791 {          
792         if (bv->available()) { 
793                 if (openNewInset(bv, new InsetFormula))
794                         bv->theLockingInset()->localDispatch(bv, LFUN_MATH_DELIM, arg);
795         }
796 }          
797
798
799 void mathDispatchInsertMatrix(BufferView * bv, string const & arg)
800 {          
801         if (bv->available()) { 
802                 if (openNewInset(bv, new InsetFormula))
803                         bv->theLockingInset()->localDispatch(bv, LFUN_INSERT_MATRIX, arg);
804         }
805 }          
806
807
808 void mathDispatchInsertMath(BufferView * bv, string const & arg)
809 {
810         if (bv->available()) {
811                 if (arg.size() && arg[0] == '\\')
812                         openNewInset(bv, new InsetFormula(arg));
813                 else
814                         mathDispatchMathMode(bv, arg);
815         }
816 }
817