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