]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.C
040db3ea213dc0c5273d2062352eaac52a9746d5
[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/LOstream.h"
37 #include "LyXView.h"
38 #include "Painter.h"
39 #include "font.h"
40 #include "math_arrayinset.h"
41 #include "math_spaceinset.h"
42 #include "support/lyxlib.h"
43 #include "mathed/support.h"
44 #include "undo_funcs.h"
45
46 using std::endl;
47 using std::ostream;
48 using std::vector;
49
50 extern char const * latex_special_chars;
51
52 int greek_kb_flag = 0;
53 extern char const * latex_mathenv[];
54 LyXFont           * Math_Fonts = 0;
55 MathCursor        * mathcursor = 0;
56
57
58 namespace {
59
60
61 // local global
62 int sel_x;
63 int sel_y;
64 bool sel_flag;
65
66 void mathed_init_fonts();
67
68 string nicelabel(string const & label)
69 {
70         return "(" + (label.empty() ? "#" : label) + ")";
71 }
72
73 void handleFont(BufferView * bv, MathTextCodes t) 
74 {
75         if (mathcursor->Selection())
76                 bv->lockedInsetStoreUndo(Undo::EDIT);
77         mathcursor->handleFont(t);
78 }
79
80 void handleAccent(BufferView * bv, string const & name, int code)
81 {
82         bv->lockedInsetStoreUndo(Undo::EDIT);
83         mathcursor->handleAccent(name, code);
84 }
85
86 void handleDelim(BufferView * bv, int l, int r)
87 {
88         bv->lockedInsetStoreUndo(Undo::EDIT);
89         mathcursor->handleDelim(l, r);
90 }
91
92 bool openNewInset(BufferView * bv, UpdatableInset * new_inset)
93 {
94         LyXText * lt = bv->getLyXText();
95         
96         bv->beforeChange(lt);
97         finishUndo();
98         if (!bv->insertInset(new_inset)) {
99                 delete new_inset;
100                 return false;
101         }
102         new_inset->edit(bv, 0, 0, 0);
103         return true;
104 }
105
106
107 } // namespaces
108
109
110
111 LyXFont WhichFont(short type, int size)
112 {
113         LyXFont f;
114         
115         if (!Math_Fonts)
116                 mathed_init_fonts();
117
118         switch (type) {
119         case LM_TC_SYMB:        
120                 f = Math_Fonts[2];
121                 break;
122
123         case LM_TC_BSYM:        
124                 f = Math_Fonts[2];
125                 break;
126
127         case LM_TC_VAR:
128         case LM_TC_IT:
129                 f = Math_Fonts[0];
130                 break;
131
132         case LM_TC_BF:
133                 f = Math_Fonts[3];
134                 break;
135
136         case LM_TC_SF:
137                 f = Math_Fonts[7];
138                 break;
139
140         case LM_TC_CAL:
141                 f = Math_Fonts[4];
142                 break;
143
144         case LM_TC_TT:
145                 f = Math_Fonts[5];
146                 break;
147
148         case LM_TC_SPECIAL: //f = Math_Fonts[0]; break;
149         case LM_TC_TEXTRM:
150         case LM_TC_TEX:
151         case LM_TC_RM:
152                 f = Math_Fonts[6];
153                 break;
154
155         default:
156                 f = Math_Fonts[1];
157                 break;
158         }
159
160         switch (size) {
161         case LM_ST_DISPLAY:
162                 if (type == LM_TC_BSYM) {
163                         f.incSize();
164                         f.incSize();
165                 }
166                 break;
167
168         case LM_ST_TEXT:
169                 break;
170
171         case LM_ST_SCRIPT:
172                 f.decSize();
173                 break;
174
175         case LM_ST_SCRIPTSCRIPT:
176                 f.decSize();
177                 f.decSize();
178                 break;
179
180         default:
181                 lyxerr << "Math Error: wrong font size: " << size << endl;
182                 break;
183         }
184
185         if (type != LM_TC_TEXTRM)
186                 f.setColor(LColor::math);
187
188         if (type == LM_TC_TEX)
189                 f.setColor(LColor::latex);
190
191         return f;
192 }
193
194
195 namespace {
196
197 void mathed_init_fonts()
198 {
199         Math_Fonts = new LyXFont[8]; //DEC cxx cannot initialize all fonts
200         //at once (JMarc) rc
201
202         for (int i = 0 ; i < 8 ; ++i) {
203                 Math_Fonts[i] = LyXFont(LyXFont::ALL_SANE);
204         }
205
206         Math_Fonts[0].setShape(LyXFont::ITALIC_SHAPE);
207
208         Math_Fonts[1].setFamily(LyXFont::SYMBOL_FAMILY);
209
210         Math_Fonts[2].setFamily(LyXFont::SYMBOL_FAMILY);
211         Math_Fonts[2].setShape(LyXFont::ITALIC_SHAPE);
212
213         Math_Fonts[3].setSeries(LyXFont::BOLD_SERIES);
214
215         Math_Fonts[4].setFamily(LyXFont::SANS_FAMILY);
216         Math_Fonts[4].setShape(LyXFont::ITALIC_SHAPE);
217
218         Math_Fonts[5].setFamily(LyXFont::TYPEWRITER_FAMILY);
219
220         Math_Fonts[6].setFamily(LyXFont::ROMAN_FAMILY);
221
222         Math_Fonts[7].setFamily(LyXFont::SANS_FAMILY);
223 }
224
225
226 // returns the nearest enclosing matrix
227 MathArrayInset * matrixpar(int & idx)
228 {
229         idx = 0;
230         return
231                 static_cast<MathArrayInset *> 
232                         (mathcursor ? mathcursor->enclosing(LM_OT_MATRIX, idx) : 0); 
233 }
234
235
236 } // namespace anon
237
238
239 InsetFormulaBase::InsetFormulaBase(MathInset * par)
240         : par_(par)
241 {}
242
243
244 InsetFormulaBase::InsetFormulaBase(InsetFormulaBase const & f)
245         : UpdatableInset(f), par_(static_cast<MathInset *>(f.par_->clone()))
246 {}
247
248
249 InsetFormulaBase::~InsetFormulaBase()
250 {
251 #ifdef WITH_WARNINGS
252 #warning leak this for a while...
253 #endif
254         //delete par_;
255 }
256
257
258 void InsetFormulaBase::read(Buffer const *, LyXLex & lex)
259 {
260         read(lex);
261 }
262
263 void InsetFormulaBase::write(Buffer const *, ostream & os) const
264 {
265         write(os);
266 }
267
268 int InsetFormulaBase::latex(Buffer const *, ostream & os,
269         bool fragile, bool spacing) const
270 {
271         return latex(os, fragile, spacing);
272 }
273
274 int InsetFormulaBase::ascii(Buffer const *, ostream & os, int spacing) const
275 {
276         return ascii(os, spacing);
277 }
278
279 int InsetFormulaBase::linuxdoc(Buffer const *, ostream & os) const
280 {
281         return linuxdoc(os);
282 }
283
284 int InsetFormulaBase::docBook(Buffer const *, ostream & os) const
285 {
286         return docBook(os);
287 }
288
289
290
291 // Check if uses AMS macros
292 void InsetFormulaBase::validate(LaTeXFeatures &) const
293 {}
294
295
296 string const InsetFormulaBase::editMessage() const
297 {
298         return _("Math editor mode");
299 }
300
301
302 void InsetFormulaBase::edit(BufferView * bv, int x, int /*y*/, unsigned int)
303 {
304         mathcursor = new MathCursor(this);
305
306         if (!bv->lockInset(this))
307                 lyxerr[Debug::MATHED] << "Cannot lock inset!!!" << endl;
308
309         par_->Metrics(LM_ST_TEXT);
310         //bv->updateInset(this, false);
311         if (x == 0)
312                 mathcursor->first();
313         else
314                 mathcursor->last();
315         sel_x = 0;
316         sel_y = 0;
317         sel_flag = false;
318 }
319
320
321 void InsetFormulaBase::insetUnlock(BufferView * bv)
322 {
323         if (mathcursor) {
324                 if (mathcursor->InMacroMode()) {
325                         mathcursor->MacroModeClose();
326                         updateLocal(bv);
327                 }
328                 delete mathcursor;
329         }
330         mathcursor = 0;
331         bv->updateInset(this, false);
332 }
333
334
335 void InsetFormulaBase::getCursorPos(BufferView *, int & x, int & y) const
336 {
337         mathcursor->GetPos(x, y);
338         x -= par_->xo();
339         y -= par_->yo();
340 }
341
342
343 void InsetFormulaBase::toggleInsetCursor(BufferView * bv)
344 {
345         if (!mathcursor)
346                 return;
347
348         if (isCursorVisible())
349                 bv->hideLockedInsetCursor();
350         else {
351                 int x;
352                 int y;
353                 mathcursor->GetPos(x, y);
354                 //x -= par_->xo();
355                 y -= par_->yo();
356
357                 LyXFont   font = WhichFont(LM_TC_TEXTRM, LM_ST_TEXT);
358                 int const asc  = lyxfont::maxAscent(font);
359                 int const desc = lyxfont::maxDescent(font);
360
361                 bv->showLockedInsetCursor(x, y, asc, desc);
362         }
363
364         toggleCursorVisible();
365 }
366
367
368 void InsetFormulaBase::showInsetCursor(BufferView * bv, bool)
369 {
370         if (!isCursorVisible()) {
371                 if (mathcursor) {
372                         int x;
373                         int y;
374                         mathcursor->GetPos(x, y);
375                         x -= par_->xo();
376                         y -= par_->yo();
377                         LyXFont font   = WhichFont(LM_TC_TEXTRM, LM_ST_TEXT);
378                         int const asc  = lyxfont::maxAscent(font);
379                         int const desc = lyxfont::maxDescent(font);
380                         bv->fitLockedInsetCursor(x, y, asc, desc);
381                 }
382                 toggleInsetCursor(bv);
383         }
384 }
385
386
387 void InsetFormulaBase::hideInsetCursor(BufferView * bv)
388 {
389         if (isCursorVisible())
390                 toggleInsetCursor(bv);
391 }
392
393
394 void InsetFormulaBase::toggleInsetSelection(BufferView * bv)
395 {
396         if (!mathcursor)
397                 return;
398
399         bv->updateInset(this, false);
400 }
401
402
403 vector<string> const InsetFormulaBase::getLabelList() const
404 {
405   return std::vector<string>();
406 }
407
408
409 void InsetFormulaBase::updateLocal(BufferView * bv)
410 {
411         par_->Metrics(LM_ST_TEXT);
412         bv->updateInset(this, true);
413 }
414
415
416 void InsetFormulaBase::insetButtonRelease(BufferView * bv,
417                                           int x, int y, int /*button*/)
418 {
419         if (mathcursor) {
420                 hideInsetCursor(bv);
421                 x += par_->xo();
422                 y += par_->yo();
423                 mathcursor->SetPos(x, y);
424                 showInsetCursor(bv);
425                 if (sel_flag) {
426                         sel_flag = false;
427                         sel_x = 0;
428                         sel_y = 0;
429                 }
430                 bv->updateInset(this, false);
431         }
432 }
433
434
435 void InsetFormulaBase::insetButtonPress(BufferView * bv,
436                                         int x, int y, int /*button*/)
437 {
438         sel_flag = false;
439         sel_x = x;
440         sel_y = y;
441         if (mathcursor && mathcursor->Selection()) {
442                 mathcursor->SelClear();
443                 bv->updateInset(this, false);
444         }
445 }
446
447
448 void InsetFormulaBase::insetMotionNotify(BufferView * bv,
449                                          int x, int y, int /*button*/)
450 {
451         if (sel_x && sel_y && abs(x-sel_x) > 4 && !sel_flag) {
452                 sel_flag = true;
453                 hideInsetCursor(bv);
454                 mathcursor->SetPos(sel_x + par_->xo(), sel_y + par_->yo());
455                 mathcursor->SelStart();
456                 showInsetCursor(bv);
457                 mathcursor->GetPos(sel_x, sel_y);
458         } else if (sel_flag) {
459                 hideInsetCursor(bv);
460                 x += par_->xo();
461                 y += par_->yo();
462                 mathcursor->SetPos(x, y);
463                 showInsetCursor(bv);
464                 mathcursor->GetPos(x, y);
465                 if (sel_x != x || sel_y != y)
466                         bv->updateInset(this, false);
467                 sel_x = x;
468                 sel_y = y;
469         }
470 }
471
472
473 void InsetFormulaBase::insetKeyPress(XKeyEvent *)
474 {
475         lyxerr[Debug::MATHED]
476                 << "Used InsetFormulaBase::InsetKeyPress." << endl;
477 }
478
479
480
481 UpdatableInset::RESULT
482 InsetFormulaBase::localDispatch(BufferView * bv, kb_action action,
483                             string const & arg)
484 {
485         //lyxerr << "InsetFormulaBase::LocalDispatch: act: " << action
486         //      << " arg: '" << arg << "' cursor: " << mathcursor << "\n";
487
488         if (!mathcursor) 
489                 return UNDISPATCHED;
490
491         MathTextCodes varcode = LM_TC_MIN;
492         bool was_macro = mathcursor->InMacroMode();
493         bool sel = false;
494         bool was_selection = mathcursor->Selection();
495         RESULT result = DISPATCHED;
496
497         hideInsetCursor(bv);
498
499         if (mathcursor->getLastCode() == LM_TC_TEX)
500                 varcode = LM_TC_TEX;
501
502         mathcursor->normalize();
503
504         switch (action) {
505
506                 // --- Cursor Movements ---------------------------------------------
507
508         case LFUN_RIGHTSEL:
509                 sel = true; // fall through...
510
511         case LFUN_RIGHT:
512                 result = DISPATCH_RESULT(mathcursor->Right(sel));
513                 updateLocal(bv);
514                 break;
515
516
517         case LFUN_LEFTSEL:
518                 sel = true; // fall through
519
520         case LFUN_LEFT:
521                 result = DISPATCH_RESULT(mathcursor->Left(sel));
522                 updateLocal(bv);
523                 break;
524
525
526         case LFUN_UPSEL:
527                 sel = true;
528
529         case LFUN_UP:
530                 result = DISPATCH_RESULT(mathcursor->Up(sel));
531                 updateLocal(bv);
532                 break;
533
534
535         case LFUN_DOWNSEL:
536                 sel = true;
537
538         case LFUN_DOWN:
539                 result = DISPATCH_RESULT(mathcursor->Down(sel));
540                 updateLocal(bv);
541                 break;
542
543         case LFUN_HOME:
544                 mathcursor->Home();
545                 updateLocal(bv);
546                 break;
547
548         case LFUN_END:
549                 mathcursor->End();
550                 updateLocal(bv);
551                 break;
552
553         case LFUN_DELETE_LINE_FORWARD:
554                 bv->lockedInsetStoreUndo(Undo::DELETE);
555                 mathcursor->DelLine();
556                 updateLocal(bv);
557                 break;
558
559         case LFUN_TAB:
560                 mathcursor->idxNext();
561                 updateLocal(bv);
562                 break;
563
564         case LFUN_SHIFT_TAB:
565                 mathcursor->idxPrev();
566                 updateLocal(bv);
567                 break;
568
569         case LFUN_TABINSERT:
570                 bv->lockedInsetStoreUndo(Undo::EDIT);
571                 mathcursor->splitCell();
572                 updateLocal(bv);
573                 break;
574
575         case LFUN_BACKSPACE:
576                 // if (!mathcursor->InMacroMode() && mathcursor->pos() == 0)
577                 if (mathcursor->pos() == 0) {
578                         bv->lockedInsetStoreUndo(Undo::DELETE);
579                         mathcursor->pullArg();
580                         bv->updateInset(this, true);
581                         break;
582                 }
583                 if (mathcursor->InMacroMode())
584                         mathcursor->Left();
585                 else
586                         mathcursor->plainLeft();
587                 // fall through...
588
589         case LFUN_DELETE:
590                 bv->lockedInsetStoreUndo(Undo::DELETE);
591                 mathcursor->Delete();
592                 bv->updateInset(this, true);
593                 break;
594
595                 //    case LFUN_GETXY:
596                 //      sprintf(dispatch_buffer, "%d %d",);
597                 //      dispatch_result = dispatch_buffer;
598                 //      break;
599         case LFUN_SETXY:
600         {
601                 lyxerr << "LFUN_SETXY broken!\n";
602                 int x;
603                 int y;
604                 int x1;
605                 int y1;
606                 istringstream is(arg.c_str());
607                 is >> x >> y;
608                 par_->GetXY(x1, y1);
609                 mathcursor->SetPos(x1 + x, y1 + y);
610                 updateLocal(bv);
611         }
612         break;
613
614                 // cursor selection ---------------------------- 
615
616         case LFUN_PASTE:
617                 if (was_macro)
618                         mathcursor->MacroModeClose();
619                 bv->lockedInsetStoreUndo(Undo::INSERT);
620                 mathcursor->SelPaste();
621                 updateLocal(bv);
622                 break;
623
624         case LFUN_CUT:
625                 bv->lockedInsetStoreUndo(Undo::DELETE);
626                 mathcursor->SelCut();
627                 updateLocal(bv);
628                 break;
629
630         case LFUN_COPY:
631                 mathcursor->SelCopy();
632                 break;
633
634         case LFUN_HOMESEL:
635         case LFUN_ENDSEL:
636         case LFUN_WORDRIGHTSEL:
637         case LFUN_WORDLEFTSEL:
638                 break;
639
640                 // --- accented characters ------------------------------
641
642         case LFUN_UMLAUT:     handleAccent(bv, "ddot", LM_ddot); break;
643         case LFUN_CIRCUMFLEX: handleAccent(bv, "hat", LM_hat); break;
644         case LFUN_GRAVE:      handleAccent(bv, "grave", LM_grave); break;
645         case LFUN_ACUTE:      handleAccent(bv, "acute", LM_acute); break;
646         case LFUN_TILDE:      handleAccent(bv, "tilde", LM_tilde); break;
647         case LFUN_MACRON:     handleAccent(bv, "bar", LM_bar); break;
648         case LFUN_DOT:        handleAccent(bv, "dot", LM_dot); break;
649         case LFUN_CARON:      handleAccent(bv, "check", LM_check); break;
650         case LFUN_BREVE:      handleAccent(bv, "breve", LM_breve); break;
651         case LFUN_VECTOR:     handleAccent(bv, "vec", LM_vec); break;
652
653                 // Greek mode
654         case LFUN_GREEK:
655                 if (!greek_kb_flag) {
656                         greek_kb_flag = 1;
657                         bv->owner()->message(_("Math greek mode on"));
658                 } else
659                         greek_kb_flag = 0;
660                 break;
661
662                 // Greek keyboard
663         case LFUN_GREEK_TOGGLE:
664                 greek_kb_flag = greek_kb_flag ? 0 : 2;
665                 if (greek_kb_flag)
666                         bv->owner()->message(_("Math greek keyboard on"));
667                 else
668                         bv->owner()->message(_("Math greek keyboard off"));
669                 break;
670
671                 //  Math fonts
672         case LFUN_BOLD:    handleFont(bv, LM_TC_BF); break;
673         case LFUN_SANS:    handleFont(bv, LM_TC_SF); break;
674         case LFUN_EMPH:    handleFont(bv, LM_TC_CAL); break;
675         case LFUN_ROMAN:   handleFont(bv, LM_TC_RM); break;
676         case LFUN_CODE:    handleFont(bv, LM_TC_TT); break;
677         case LFUN_DEFAULT: handleFont(bv, LM_TC_VAR); break;
678
679         case LFUN_MATH_MODE:
680                 handleFont(bv, LM_TC_TEXTRM);
681                 //bv->owner()->message(_("math text mode toggled"));
682                 break;
683
684 #ifndef NO_LATEX
685         case LFUN_TEX:
686                 if (!mathcursor->Selection()) {
687                         mathcursor->handleFont(LM_TC_TEX);
688                         //bv->owner()->message(_("TeX mode toggled"));
689                 }
690                 break;
691 #endif
692
693         case LFUN_MATH_LIMITS:
694                 bv->lockedInsetStoreUndo(Undo::INSERT);
695                 if (mathcursor->toggleLimits())
696                         updateLocal(bv);
697                 break;
698
699         case LFUN_MATH_SIZE:
700                 if (!arg.empty()) {
701                         bv->lockedInsetStoreUndo(Undo::INSERT);
702                         latexkeys const * l = in_word_set(arg);
703                         mathcursor->SetSize(MathStyles(l ? l->id : static_cast<unsigned int>(-1)));
704                         updateLocal(bv);
705                 }
706                 break;
707
708         case LFUN_INSERT_MATRIX:
709                 if (!arg.empty()) {
710                         bv->lockedInsetStoreUndo(Undo::INSERT);
711                         mathcursor->Interpret("matrix " + arg);
712                         updateLocal(bv);
713                 }
714                 break;
715
716         case LFUN_INSERT_MATH:
717                 if (!arg.empty()) {
718                         bv->lockedInsetStoreUndo(Undo::INSERT);
719                         mathcursor->Interpret(arg);
720                         updateLocal(bv);
721                 }
722                 break;
723
724         case LFUN_MATH_DELIM:
725         {
726                 bv->lockedInsetStoreUndo(Undo::INSERT);
727                 int ilt = '(';
728                 int irt = '.';
729                 static const string vdelim("(){}[]./|");
730                 //lyxerr << "formulabase::LFUN_MATH_DELIM, arg: '" << arg << "'\n";
731
732                 if (arg.empty())
733                         break;
734
735                 istringstream is(arg.c_str());
736                 string lt;
737                 string rt;
738                 is >> lt >> rt;
739                 //lyxerr << "formulabase::LFUN_MATH_DELIM, lt: '" << lt << "'\n";
740                 //lyxerr << "formulabase::LFUN_MATH_DELIM, rt: '" << rt << "'\n";
741
742                 if (lt.size() > 1) {
743                         latexkeys const * l = in_word_set(lt);
744                         if (l)
745                                 ilt = l->id;
746                 } else if (vdelim.find(lt[0]) != string::npos)
747                                 ilt = lt[0];
748
749                 if (rt.size() > 1) {
750                         latexkeys const * l = in_word_set(rt);
751                         if (l)
752                                 irt = l->id;
753                 } else if (vdelim.find(rt[0]) != string::npos)
754                                 irt = rt[0];
755
756                 handleDelim(bv, ilt, irt);
757                 updateLocal(bv);
758                 break;
759         }
760
761         case LFUN_PROTECTEDSPACE:
762                 bv->lockedInsetStoreUndo(Undo::INSERT);
763                 mathcursor->insert(new MathSpaceInset(1));
764                 updateLocal(bv);
765                 break;
766
767         case LFUN_UNDO:
768                 bv->owner()->message(_("Invalid action in math mode!"));
769                 break;
770
771
772         case LFUN_MATH_HALIGN:
773         {
774                 bv->lockedInsetStoreUndo(Undo::INSERT);
775                 lyxerr << "handling halign '" << arg << "'\n";
776                 int idx;
777                 MathArrayInset * p = matrixpar(idx);
778                 if (!p)
779                         break; 
780                 p->halign(arg.size() ? arg[0] : 'c', p->col(idx));
781                 updateLocal(bv);
782                 break;
783         }
784
785         case LFUN_MATH_VALIGN:
786         {
787                 bv->lockedInsetStoreUndo(Undo::INSERT);
788                 lyxerr << "handling valign '" << arg << "'\n";
789                 int idx;
790                 MathArrayInset * p = matrixpar(idx);
791                 if (!p)
792                         break; 
793                 p->valign(arg.size() ? arg[0] : 'c');
794                 updateLocal(bv);
795                 break;
796         }
797
798         case LFUN_MATH_ROW_INSERT:
799         {
800                 bv->lockedInsetStoreUndo(Undo::INSERT);
801                 int idx;
802                 MathArrayInset * p = matrixpar(idx);
803                 lyxerr << " calling LFUN_MATH_ROW_INSERT on " << p << endl;
804                 if (!p)
805                         break; 
806                 p->addRow(p->row(idx));
807                 updateLocal(bv);
808                 break;
809         }
810
811         case LFUN_MATH_ROW_DELETE:
812         {
813                 bv->lockedInsetStoreUndo(Undo::INSERT);
814                 int idx;
815                 MathArrayInset * p = matrixpar(idx);
816                 lyxerr << " calling LFUN_MATH_ROW_DELETE on " << p << endl;
817                 if (!p)
818                         break; 
819                 p->delRow(p->row(idx));
820                 updateLocal(bv);
821                 break;
822         }
823
824         case LFUN_MATH_COLUMN_INSERT:
825         {
826                 bv->lockedInsetStoreUndo(Undo::INSERT);
827                 int idx;
828                 MathArrayInset * p = matrixpar(idx);
829                 if (!p)
830                         break; 
831                 p->addCol(p->col(idx));
832                 updateLocal(bv);
833                 break;
834         }
835
836         case LFUN_MATH_COLUMN_DELETE:
837         {
838                 bv->lockedInsetStoreUndo(Undo::INSERT);
839                 int idx;
840                 MathArrayInset * p = matrixpar(idx);
841                 if (!p)
842                         break; 
843                 p->delCol(p->col(idx));
844                 updateLocal(bv);
845                 break;
846         }
847
848         case LFUN_EXEC_COMMAND:
849                 result = UNDISPATCHED;
850                 break;
851
852         default:
853                 if ((action == -1 || action == LFUN_SELFINSERT) && !arg.empty()) {
854                         unsigned char c = arg[0];
855                         //lyxerr << "char: '" << c << "'  int: " << int(c) << endl;
856                         //owner_->getIntl()->getTrans().TranslateAndInsert(c, lt);      
857                         //lyxerr << "trans: '" << c << "'  int: " << int(c) << endl;
858                         bv->lockedInsetStoreUndo(Undo::INSERT);
859
860                         if (c == 0) {      // Dead key, do nothing
861                                 //lyxerr << "deadkey" << endl;
862                                 break;
863                         }
864
865                         if (isalpha(c)) {
866                                 if (mathcursor->getLastCode() == LM_TC_TEX) {
867                                         mathcursor->MacroModeOpen();
868                                         mathcursor->clearLastCode();
869                                         varcode = LM_TC_MIN;
870                                 } else if (!varcode) {          
871                                         short f = mathcursor->getLastCode() ?
872                                                 mathcursor->getLastCode() :
873                                                 mathcursor->nextCode();
874                                         varcode = MathIsAlphaFont(f) ?
875                                                 static_cast<MathTextCodes>(f) :
876                                                 LM_TC_VAR;
877                                 }
878                                 
879                                 //           lyxerr << "Varcode << vardoce;
880                                 MathTextCodes char_code = varcode;
881                                 if (greek_kb_flag) {
882                                         char greek[26] =
883                                         {'A', 'B', 'X',  0 , 'E',  0 ,  0 , 'H', 'I',  0 ,
884                                          'K',  0 , 'M', 'N', 'O',  0 ,  0 , 'P',  0 , 'T',
885                                          'Y',  0,   0,   0,   0 , 'Z' };
886                                         
887                                         if ('A' <= c && c <= 'Z' && greek[c - 'A']) {
888                                                 char_code = LM_TC_RM;
889                                                 c = greek[c - 'A'];
890                                         } else
891                                                 char_code = LM_TC_SYMB;
892                                 }
893                                 
894                                 mathcursor->insert(c, char_code);
895                                 
896                                 if (greek_kb_flag && char_code == LM_TC_RM )
897                                         mathcursor->setLastCode(LM_TC_VAR);
898                                 
899                                 varcode = LM_TC_MIN;
900                                 
901                                 if (greek_kb_flag < 2)
902                                         greek_kb_flag = 0;
903                                 
904                         } else if (strchr("!,:;{}", c) && (varcode == LM_TC_TEX||was_macro)) {
905                                 mathcursor->insert(c, LM_TC_TEX);
906                                 if (c == '{') {
907                                         mathcursor->insert('}', LM_TC_TEX);
908                                         mathcursor->Left();
909                                 }
910                                 mathcursor->clearLastCode();
911                                 //             varcode = LM_TC_MIN;
912                         } else if (c == '_' && varcode == LM_TC_TEX) {
913                                 mathcursor->insert(c, LM_TC_SPECIAL);
914                                 mathcursor->clearLastCode();
915                                 //             varcode = LM_TC_MIN;
916                         } else if ('0' <= c && c <= '9' && (varcode == LM_TC_TEX||was_macro)) {
917                                 mathcursor->MacroModeOpen();
918                                 mathcursor->clearLastCode();
919                                 mathcursor->insert(c, LM_TC_MIN);
920                         } else if (('0' <= c && c <= '9') || strchr(";:!|[]().,?", c)) {
921                                 MathTextCodes code = mathcursor->getLastCode();
922                                 if (code != LM_TC_TEXTRM)
923                                         code = LM_TC_CONST;
924                                 mathcursor->insert(c, code);
925                         } else if (strchr("+/-*<>=", c)) {
926                                 MathTextCodes code = mathcursor->getLastCode();
927                                 if (code != LM_TC_TEXTRM)
928                                         code = LM_TC_BOP;
929                                 mathcursor->insert(c, code);
930                         } else if (strchr(latex_special_chars, c) && c != '_') {
931                                 MathTextCodes code = mathcursor->getLastCode();
932                                 if (code != LM_TC_TEXTRM)
933                                         code = LM_TC_SPECIAL;
934                                 mathcursor->insert(c, code);
935                         } else if (c == '_' || c == '^') {
936                                 char s[2];
937                                 s[0] = c;
938                                 s[1] = 0;
939                                 mathcursor->Interpret(s);
940                         } else if (c == ' ') {  
941                                 if (!varcode) { 
942                                         short f = (mathcursor->getLastCode()) ?
943                                                 mathcursor->getLastCode() :
944                                                 mathcursor->nextCode();
945                                         varcode = MathIsAlphaFont(f) ?
946                                                 static_cast<MathTextCodes>(f) :
947                                                 LM_TC_VAR;
948                                 }
949                                 
950                                 if (varcode == LM_TC_TEXTRM) {
951                                         mathcursor->insert(c, LM_TC_TEXTRM);
952                                 } else if (was_macro) {
953                                         mathcursor->MacroModeClose();
954                                 } else {
955                                         if (!mathcursor->pop())
956                                                 result = FINISHED;
957                                         mathcursor->plainRight();
958                                 }
959                         } else if (c == '\'' || c == '@') {
960                                 mathcursor->insert (c, LM_TC_VAR);
961                         } else if (c == '\\') {
962                                 if (was_macro)
963                                         mathcursor->MacroModeClose();
964                                 bv->owner()->message(_("TeX mode"));
965                                 mathcursor->setLastCode(LM_TC_TEX);
966                         }
967                         updateLocal(bv);
968                 } else if (action == LFUN_MATH_PANEL) {
969                         result = UNDISPATCHED;
970                 } else {
971                         lyxerr << "Closed by action " << action << endl;
972                         result =  FINISHED;
973                 }
974         }
975
976         mathcursor->normalize();
977
978         if (mathcursor && was_macro != mathcursor->InMacroMode()
979                                 && action >= 0
980                                 && action != LFUN_BACKSPACE) 
981                 updateLocal(bv);
982         
983         //if (mathcursor)
984         //              updateLocal(bv);
985
986         if (mathcursor && (mathcursor->Selection() || was_selection))
987                 toggleInsetSelection(bv);
988
989         if (result == DISPATCHED || result == DISPATCHED_NOUPDATE ||
990             result == UNDISPATCHED)
991                 showInsetCursor(bv);
992         else
993                 bv->unlockInset(this);
994
995         return result;  // original version
996 }
997
998
999
1000 /* FIXME: math-greek-toggle seems to work OK, but math-greek doesn't turn
1001  * on greek mode */
1002 bool math_insert_greek(BufferView * bv, char c)
1003 {
1004         if (!bv->available())
1005                 return false;
1006
1007         if (!isalpha(c))
1008                 return false;
1009
1010         string tmp;
1011         tmp = c;
1012         if (!bv->theLockingInset() || bv->theLockingInset()->isTextInset()) {
1013                 int greek_kb_flag_save = greek_kb_flag;
1014                 InsetFormula * new_inset = new InsetFormula();
1015                 bv->beforeChange(bv->text);
1016                 if (!bv->insertInset(new_inset)) {
1017                         delete new_inset;
1018                         return false;
1019                 }
1020                 //Update(1);//BUG
1021                 new_inset->edit(bv, 0, 0, 0);
1022                 new_inset->localDispatch(bv, LFUN_SELFINSERT, tmp);
1023                 if (greek_kb_flag_save < 2) {
1024                         bv->unlockInset(new_inset); // bv->theLockingInset());
1025                         bv->text->cursorRight(bv, true);
1026                 }
1027         } else
1028                 if (bv->theLockingInset()->lyxCode() == Inset::MATH_CODE ||
1029                                 bv->theLockingInset()->lyxCode() == Inset::MATHMACRO_CODE)
1030                         static_cast<InsetFormula*>(bv->theLockingInset())->localDispatch(bv, LFUN_SELFINSERT, tmp);
1031                 else
1032                         lyxerr << "Math error: attempt to write on a wrong "
1033                                 "class of inset." << endl;
1034         return true;
1035 }
1036
1037
1038
1039 Inset::Code InsetFormulaBase::lyxCode() const
1040 {
1041         return Inset::MATH_CODE;
1042 }
1043
1044
1045 LyXFont const InsetFormulaBase::convertFont(LyXFont const & f) const
1046 {
1047         // We have already discussed what was here
1048         LyXFont font(f);
1049 #ifndef NO_LATEX
1050         font.setLatex(LyXFont::OFF);
1051 #endif
1052         return font;
1053 }
1054
1055 MathInset * InsetFormulaBase::par() const
1056 {
1057         return par_;
1058 }
1059
1060
1061 void mathDispatchCreation(BufferView * bv, string const & arg, bool display)
1062 {
1063         if (bv->available()) {
1064 // Feature "Read math inset from selection" disabled.
1065 //              // use selection if available..
1066 //              string sel;
1067 //              if (action == LFUN_MATH_IMPORT_SELECTION)
1068 //                      sel = "";
1069 //              else
1070 //                      sel = bv->getLyXText()->selectionAsString(bv->buffer());
1071
1072                         InsetFormula * f;
1073 //              if (sel.empty()) {
1074                                 f = new InsetFormula;
1075                                 if (openNewInset(bv, f)) {
1076                                         // don't do that also for LFUN_MATH_MODE unless you want end up with
1077                                         // always changing to mathrm when opening an inlined inset
1078                                         // -- I really hate "LyXfunc overloading"...
1079                                         if (display)
1080                                                 f->localDispatch(bv, LFUN_MATH_DISPLAY, string());
1081                                         f->localDispatch(bv, LFUN_INSERT_MATH, arg);
1082                                 }
1083 //              } else {
1084 //                      f = new InsetFormula(sel);
1085 //                      bv->getLyXText()->cutSelection(bv);
1086 //                      openNewInset(bv, f);
1087 //              }
1088         }
1089         bv->owner()->getLyXFunc()->setMessage(N_("Math editor mode"));
1090 }
1091
1092 void mathDispatchMathDisplay(BufferView * bv, string const & arg)
1093 {
1094         mathDispatchCreation(bv, arg, true);
1095 }
1096         
1097 void mathDispatchMathMode(BufferView * bv, string const & arg)
1098 {
1099         mathDispatchCreation(bv, arg, false);
1100 }
1101
1102 void mathDispatchMathImportSelection(BufferView * bv, string const & arg)
1103 {
1104         mathDispatchCreation(bv, arg, true);
1105 }
1106
1107 void mathDispatchMathMacro(BufferView * bv, string const & arg)
1108 {
1109         if (bv->available()) {
1110                 string s(arg);
1111                 if (s.empty())
1112                         bv->owner()->getLyXFunc()->setErrorMessage(N_("Missing argument"));
1113                 else {
1114                         string const s1 = token(s, ' ', 1);
1115                         int const na = s1.empty() ? 0 : lyx::atoi(s1);
1116                         openNewInset(bv, new InsetFormulaMacro(token(s, ' ', 0), na));
1117                 }
1118         }
1119 }
1120
1121 void mathDispatchMathDelim(BufferView * bv, string const & arg)
1122 {          
1123         if (bv->available()) { 
1124                 if (openNewInset(bv, new InsetFormula))
1125                         bv->theLockingInset()->localDispatch(bv, LFUN_MATH_DELIM, arg);
1126         }
1127 }          
1128
1129
1130 void mathDispatchInsertMatrix(BufferView * bv, string const & arg)
1131 {          
1132         if (bv->available()) { 
1133                 if (openNewInset(bv, new InsetFormula))
1134                         bv->theLockingInset()->localDispatch(bv, LFUN_INSERT_MATRIX, arg);
1135         }
1136 }          
1137
1138 void mathDispatchInsertMath(BufferView * bv, string const & arg)
1139 {
1140         if (bv->available()) {
1141                 if (arg.size() && arg[0] == '\\') {
1142                         InsetFormula * f = new InsetFormula(arg);
1143                         openNewInset(bv, f);
1144                 } else {
1145                         mathDispatchMathMode(bv, arg);
1146                 }
1147         }
1148 }
1149