]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.C
the monster patch
[lyx.git] / src / mathed / formulabase.C
1 /**
2  * \file formulabase.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "cursor.h"
15 #include "formulabase.h"
16 #include "formula.h"
17 #include "formulamacro.h"
18 #include "math_support.h"
19 #include "math_arrayinset.h"
20 #include "math_deliminset.h"
21 #include "math_cursor.h"
22 #include "math_factory.h"
23 #include "math_hullinset.h"
24 #include "math_parser.h"
25 #include "math_spaceinset.h"
26 #include "ref_inset.h"
27
28 #include "BufferView.h"
29 #include "bufferview_funcs.h"
30 #include "dispatchresult.h"
31 #include "debug.h"
32 #include "funcrequest.h"
33 #include "gettext.h"
34 #include "LColor.h"
35 #include "lyxtext.h"
36 #include "undo.h"
37
38 #include "frontends/LyXView.h"
39 #include "frontends/Dialogs.h"
40
41 #include "support/std_sstream.h"
42 #include "support/lstrings.h"
43 #include "support/lyxlib.h"
44
45 using lyx::support::atoi;
46 using lyx::support::split;
47 using lyx::support::token;
48
49 using std::string;
50 using std::abs;
51 using std::endl;
52 using std::max;
53
54 using std::istringstream;
55
56
57 MathCursor * mathcursor = 0;
58
59 namespace {
60
61 // local global
62 int first_x;
63 int first_y;
64
65 bool openNewInset(BufferView & bv, UpdatableInset * inset)
66 {
67         if (!bv.insertInset(inset)) {
68                 delete inset;
69                 return false;
70         }
71         inset->edit(&bv, true);
72         return true;
73 }
74
75
76 } // namespace anon
77
78
79
80 InsetFormulaBase::InsetFormulaBase()
81 {
82         // This is needed as long the math parser is not re-entrant
83         initMath();
84         //lyxerr << "sizeof MathInset: " << sizeof(MathInset) << endl;
85         //lyxerr << "sizeof MetricsInfo: " << sizeof(MetricsInfo) << endl;
86         //lyxerr << "sizeof MathCharInset: " << sizeof(MathCharInset) << endl;
87         //lyxerr << "sizeof LyXFont: " << sizeof(LyXFont) << endl;
88 }
89
90
91 // simply scrap this function if you want
92 void InsetFormulaBase::mutateToText()
93 {
94 #if 0
95         // translate to latex
96         ostringstream os;
97         latex(NULL, os, false, false);
98         string str = os.str();
99
100         // insert this text
101         LyXText * lt = view_->getLyXText();
102         string::const_iterator cit = str.begin();
103         string::const_iterator end = str.end();
104         for (; cit != end; ++cit)
105                 view_->owner()->getIntl()->getTransManager().TranslateAndInsert(*cit, lt);
106
107         // remove ourselves
108         //view_->owner()->dispatch(LFUN_ESCAPE);
109 #endif
110 }
111
112
113 void InsetFormulaBase::handleFont
114         (BufferView & bv, string const & arg, string const & font)
115 {
116         // this whole function is a hack and won't work for incremental font
117         // changes...
118         recordUndo(bv, Undo::ATOMIC);
119
120         if (mathcursor->inset()->name() == font)
121                 mathcursor->handleFont(font);
122         else {
123                 mathcursor->handleNest(createMathInset(font));
124                 mathcursor->insert(arg);
125         }
126 }
127
128
129 void InsetFormulaBase::handleFont2(BufferView & bv, string const & arg)
130 {
131         recordUndo(bv, Undo::ATOMIC);
132         LyXFont font;
133         bool b;
134         bv_funcs::string2font(arg, font, b);
135         if (font.color() != LColor::inherit) {
136                 MathAtom at = createMathInset("color");
137                 asArray(lcolor.getGUIName(font.color()), at.nucleus()->cell(0));
138                 mathcursor->handleNest(at, 1);
139         }
140 }
141
142
143
144 void InsetFormulaBase::validate(LaTeXFeatures &) const
145 {}
146
147
148 string const InsetFormulaBase::editMessage() const
149 {
150         return _("Math editor mode");
151 }
152
153
154 void InsetFormulaBase::insetUnlock(BufferView * bv)
155 {
156         if (mathcursor) {
157                 if (mathcursor->inMacroMode())
158                         mathcursor->macroModeClose();
159                 releaseMathCursor(*bv);
160         }
161         if (bv->buffer())
162                 generatePreview(*bv->buffer());
163         bv->update();
164 }
165
166
167 void InsetFormulaBase::getCursor(BufferView &, int & x, int & y) const
168 {
169         mathcursor->getScreenPos(x, y);
170 }
171
172
173 void InsetFormulaBase::getCursorPos(int, int & x, int & y) const
174 {
175         if (mathcursor) {
176                 mathcursor->getScreenPos(x, y);
177                 x = mathcursor->targetX();
178                 x -= xo_;
179                 y -= yo_;
180                 lyxerr << "InsetFormulaBase::getCursorPos: " << x << ' ' << y << endl;
181         } else {
182                 x = 0;
183                 y = 0;
184                 lyxerr << "getCursorPos - should not happen";
185         }
186 }
187
188
189 void InsetFormulaBase::getCursorDim(int & asc, int & desc) const
190 {
191         if (mathcursor) {
192                 asc = 10;
193                 desc = 2;
194                 //math_font_max_dim(font_, asc, des);
195         }
196 }
197
198
199 void InsetFormulaBase::toggleInsetSelection(BufferView * bv)
200 {
201         if (mathcursor)
202                 bv->update();
203 }
204
205
206 DispatchResult InsetFormulaBase::lfunMouseRelease(
207         BufferView & bv, FuncRequest const & cmd)
208 {
209         if (!mathcursor)
210                 return DispatchResult(false);
211         bv.update();
212         //lyxerr << "lfunMouseRelease: buttons: " << cmd.button() << endl;
213
214         if (cmd.button() == mouse_button::button3) {
215                 // try to dispatch to enclosed insets first
216                 if (!mathcursor->dispatch(cmd).dispatched()) {
217                         // launch math panel for right mouse button
218                         lyxerr << "lfunMouseRelease: undispatched: " << cmd.button() << endl;
219                         bv.owner()->getDialogs().show("mathpanel");
220                 }
221                 return DispatchResult(true, true);
222         }
223
224         if (cmd.button() == mouse_button::button2) {
225                 MathArray ar;
226                 asArray(bv.getClipboard(), ar);
227                 mathcursor->selClear();
228                 mathcursor->setScreenPos(cmd.x + xo_, cmd.y + yo_);
229                 mathcursor->insert(ar);
230                 bv.update();
231                 return DispatchResult(true, true);
232         }
233
234         if (cmd.button() == mouse_button::button1) {
235                 // try to dispatch to enclosed insets first
236                 mathcursor->dispatch(cmd);
237                 bv.stuffClipboard(mathcursor->grabSelection());
238                 // try to set the cursor
239                 //delete mathcursor;
240                 //mathcursor = new MathCursor(bv, this, x == 0);
241                 //metrics(bv);
242                 //mathcursor->setScreenPos(x + xo_, y + yo_);
243                 return DispatchResult(true, true);
244         }
245
246         return DispatchResult(false);
247 }
248
249
250 DispatchResult InsetFormulaBase::lfunMousePress(
251         BufferView & bv, FuncRequest const & cmd)
252 {
253         //lyxerr << "lfunMousePress: buttons: " << cmd.button() << endl;
254
255         if (!mathcursor || mathcursor->formula() != this) {
256                 lyxerr[Debug::MATHED] << "re-create cursor" << endl;
257                 releaseMathCursor(bv);
258                 mathcursor = new MathCursor(&bv, this, cmd.x == 0);
259                 //metrics(bv);
260                 mathcursor->setScreenPos(cmd.x + xo_, cmd.y + yo_);
261         }
262
263         if (cmd.button() == mouse_button::button3) {
264                 mathcursor->dispatch(cmd);
265                 return DispatchResult(true, true);
266         }
267
268         if (cmd.button() == mouse_button::button1) {
269                 first_x = cmd.x;
270                 first_y = cmd.y;
271                 mathcursor->selClear();
272                 mathcursor->setScreenPos(cmd.x + xo_, cmd.y + yo_);
273                 mathcursor->dispatch(cmd);
274                 return DispatchResult(true, true);
275         }
276
277         bv.update();
278         return DispatchResult(true, true);
279 }
280
281
282 DispatchResult InsetFormulaBase::lfunMouseMotion(
283         BufferView & bv, FuncRequest const & cmd)
284 {
285         if (!mathcursor)
286                 return DispatchResult(true, true);
287
288         if (mathcursor->dispatch(FuncRequest(cmd)).dispatched())
289                 return DispatchResult(true, true);
290
291         // only select with button 1
292         if (cmd.button() != mouse_button::button1)
293                 return DispatchResult(true, true);
294
295         if (abs(cmd.x - first_x) < 2 && abs(cmd.y - first_y) < 2)
296                 return DispatchResult(true, true);
297
298         first_x = cmd.x;
299         first_y = cmd.y;
300
301         if (!mathcursor->selection())
302                 mathcursor->selStart();
303
304         mathcursor->setScreenPos(cmd.x + xo_, cmd.y + yo_);
305         bv.update();
306         return DispatchResult(true, true);
307 }
308
309
310 void InsetFormulaBase::edit(BufferView * bv, bool left)
311 {
312         lyxerr << "Called FormulaBase::edit" << endl;
313         releaseMathCursor(*bv);
314         mathcursor = new MathCursor(bv, this, left);
315         bv->fullCursor().push(this);
316         // if that is removed, we won't get the magenta box when entering an
317         // inset for the first time
318         bv->update();
319 }
320
321
322 void InsetFormulaBase::edit(BufferView * bv, int x, int y)
323 {
324         lyxerr << "Called FormulaBase::EDIT with '" << x << ' ' << y << "'" << endl;
325         releaseMathCursor(*bv);
326         mathcursor = new MathCursor(bv, this, true);
327         //metrics(bv);
328         mathcursor->setScreenPos(x + xo_, y + yo_);
329         bv->fullCursor().push(this);
330         // if that is removed, we won't get the magenta box when entering an
331         // inset for the first time
332         bv->update();
333 }
334
335
336 DispatchResult
337 InsetFormulaBase::priv_dispatch(BufferView & bv, FuncRequest const & cmd)
338 {
339         //lyxerr << "InsetFormulaBase::localDispatch: act: " << cmd.action
340         //      << " arg: '" << cmd.argument
341         //      << "' x: '" << cmd.x
342         //      << " y: '" << cmd.y
343         //      << "' button: " << cmd.button() << endl;
344
345         // delete empty mathbox (LFUN_BACKSPACE and LFUN_DELETE)
346         bool remove_inset = false;
347
348         switch (cmd.action) {
349                 case LFUN_MOUSE_PRESS:
350                         //lyxerr << "Mouse single press" << endl;
351                         return lfunMousePress(bv, cmd);
352                 case LFUN_MOUSE_MOTION:
353                         //lyxerr << "Mouse motion" << endl;
354                         return lfunMouseMotion(bv, cmd);
355                 case LFUN_MOUSE_RELEASE:
356                         //lyxerr << "Mouse single release" << endl;
357                         return lfunMouseRelease(bv, cmd);
358                 case LFUN_MOUSE_DOUBLE:
359                         //lyxerr << "Mouse double" << endl;
360                         return dispatch(bv, FuncRequest(LFUN_WORDSEL));
361                 default:
362                         break;
363         }
364
365         if (!mathcursor)
366                 return DispatchResult(false);
367
368         string argument    = cmd.argument;
369         DispatchResult result(true);
370         bool sel           = false;
371         bool was_macro     = mathcursor->inMacroMode();
372         bool was_selection = mathcursor->selection();
373
374         mathcursor->normalize();
375         mathcursor->touch();
376
377         switch (cmd.action) {
378
379         case LFUN_MATH_MUTATE:
380         case LFUN_MATH_DISPLAY:
381         case LFUN_MATH_NUMBER:
382         case LFUN_MATH_NONUMBER:
383         case LFUN_CELL_SPLIT:
384         case LFUN_BREAKLINE:
385         case LFUN_DELETE_LINE_FORWARD:
386         case LFUN_INSERT_LABEL:
387         case LFUN_MATH_EXTERN:
388         case LFUN_TABULAR_FEATURE:
389         case LFUN_PASTESELECTION:
390         case LFUN_MATH_LIMITS:
391                 recordUndo(bv, Undo::ATOMIC);
392                 mathcursor->dispatch(cmd);
393                 break;
394
395         case LFUN_RIGHTSEL:
396                 sel = true; // fall through...
397         case LFUN_RIGHT:
398                 result = mathcursor->right(sel) ?
399                         DispatchResult(true, true) : DispatchResult(false, FINISHED_RIGHT);
400                 //lyxerr << "calling scroll 20" << endl;
401                 //scroll(&bv, 20);
402                 // write something to the minibuffer
403                 //bv.owner()->message(mathcursor->info());
404                 break;
405
406         case LFUN_LEFTSEL:
407                 sel = true; // fall through
408         case LFUN_LEFT:
409                 result = mathcursor->left(sel) ?
410                         DispatchResult(true, true) : DispatchResult(false, FINISHED);
411                 break;
412
413         case LFUN_UPSEL:
414                 sel = true; // fall through
415         case LFUN_UP:
416                 result = mathcursor->up(sel) ?
417                         DispatchResult(true, true) : DispatchResult(false, FINISHED_UP);
418                 break;
419
420         case LFUN_DOWNSEL:
421                 sel = true; // fall through
422         case LFUN_DOWN:
423                 result = mathcursor->down(sel) ?
424                         DispatchResult(true, true) : DispatchResult(false, FINISHED_DOWN);
425                 break;
426
427         case LFUN_WORDSEL:
428                 mathcursor->home(false);
429                 mathcursor->end(true);
430                 break;
431
432         case LFUN_UP_PARAGRAPHSEL:
433         case LFUN_UP_PARAGRAPH:
434         case LFUN_DOWN_PARAGRAPHSEL:
435         case LFUN_DOWN_PARAGRAPH:
436                 result = DispatchResult(true, FINISHED);
437                 break;
438
439         case LFUN_HOMESEL:
440         case LFUN_WORDLEFTSEL:
441                 sel = true; // fall through
442         case LFUN_HOME:
443         case LFUN_WORDLEFT:
444                 result = mathcursor->home(sel) ? DispatchResult(true, true) : DispatchResult(true, FINISHED);
445                 break;
446
447         case LFUN_ENDSEL:
448         case LFUN_WORDRIGHTSEL:
449                 sel = true; // fall through
450         case LFUN_END:
451         case LFUN_WORDRIGHT:
452                 result = mathcursor->end(sel) ? DispatchResult(true, true) : DispatchResult(false, FINISHED_RIGHT);
453                 break;
454
455         case LFUN_PRIORSEL:
456         case LFUN_PRIOR:
457         case LFUN_BEGINNINGBUFSEL:
458         case LFUN_BEGINNINGBUF:
459                 result = DispatchResult(true, FINISHED);
460                 break;
461
462         case LFUN_NEXTSEL:
463         case LFUN_NEXT:
464         case LFUN_ENDBUFSEL:
465         case LFUN_ENDBUF:
466                 result = DispatchResult(false, FINISHED_RIGHT);
467                 break;
468
469         case LFUN_CELL_FORWARD:
470                 mathcursor->idxNext();
471                 break;
472
473         case LFUN_CELL_BACKWARD:
474                 mathcursor->idxPrev();
475                 break;
476
477         case LFUN_DELETE_WORD_BACKWARD:
478         case LFUN_BACKSPACE:
479                 recordUndo(bv, Undo::ATOMIC);
480                 if (!mathcursor->backspace()) {
481                         result = DispatchResult(true, FINISHED);
482                         remove_inset = true;
483                 }
484                 break;
485
486         case LFUN_DELETE_WORD_FORWARD:
487         case LFUN_DELETE:
488                 recordUndo(bv, Undo::ATOMIC);
489                 if (!mathcursor->erase()) {
490                         result = DispatchResult(true, FINISHED);
491                         remove_inset = true;
492                 }
493                 break;
494
495         //    case LFUN_GETXY:
496         //      sprintf(dispatch_buffer, "%d %d",);
497         //      DispatchResult= dispatch_buffer;
498         //      break;
499         case LFUN_SETXY: {
500                 lyxerr << "LFUN_SETXY broken!" << endl;
501                 int x = 0;
502                 int y = 0;
503                 istringstream is(cmd.argument.c_str());
504                 is >> x >> y;
505                 mathcursor->setScreenPos(x, y);
506                 break;
507         }
508
509         case LFUN_PASTE: {
510                 size_t n = 0;
511                 istringstream is(cmd.argument.c_str());
512                 is >> n;
513                 if (was_macro)
514                         mathcursor->macroModeClose();
515                 recordUndo(bv, Undo::ATOMIC);
516                 mathcursor->selPaste(n);
517                 break;
518         }
519
520         case LFUN_CUT:
521                 recordUndo(bv, Undo::DELETE);
522                 mathcursor->selCut();
523                 break;
524
525         case LFUN_COPY:
526                 mathcursor->selCopy();
527                 break;
528
529
530         // Special casing for superscript in case of LyX handling
531         // dead-keys:
532         case LFUN_CIRCUMFLEX:
533                 if (cmd.argument.empty()) {
534                         // do superscript if LyX handles
535                         // deadkeys
536                         recordUndo(bv, Undo::ATOMIC);
537                         mathcursor->script(true);
538                 }
539                 break;
540
541         case LFUN_UMLAUT:
542         case LFUN_ACUTE:
543         case LFUN_GRAVE:
544         case LFUN_BREVE:
545         case LFUN_DOT:
546         case LFUN_MACRON:
547         case LFUN_CARON:
548         case LFUN_TILDE:
549         case LFUN_CEDILLA:
550         case LFUN_CIRCLE:
551         case LFUN_UNDERDOT:
552         case LFUN_TIE:
553         case LFUN_OGONEK:
554         case LFUN_HUNG_UMLAUT:
555                 break;
556
557         //  Math fonts
558         case LFUN_FREEFONT_APPLY:
559         case LFUN_FREEFONT_UPDATE:
560                 handleFont2(bv, cmd.argument);
561                 break;
562
563         case LFUN_BOLD:         handleFont(bv, cmd.argument, "mathbf"); break;
564         case LFUN_SANS:         handleFont(bv, cmd.argument, "mathsf"); break;
565         case LFUN_EMPH:         handleFont(bv, cmd.argument, "mathcal"); break;
566         case LFUN_ROMAN:        handleFont(bv, cmd.argument, "mathrm"); break;
567         case LFUN_CODE:         handleFont(bv, cmd.argument, "texttt"); break;
568         case LFUN_FRAK:         handleFont(bv, cmd.argument, "mathfrak"); break;
569         case LFUN_ITAL:         handleFont(bv, cmd.argument, "mathit"); break;
570         case LFUN_NOUN:         handleFont(bv, cmd.argument, "mathbb"); break;
571         //case LFUN_FREEFONT_APPLY:  handleFont(bv, cmd.argument, "textrm"); break;
572         case LFUN_DEFAULT:      handleFont(bv, cmd.argument, "textnormal"); break;
573
574         case LFUN_MATH_MODE:
575                 if (mathcursor->currentMode() == MathInset::TEXT_MODE)
576                         mathcursor->niceInsert(MathAtom(new MathHullInset("simple")));
577                 else
578                         handleFont(bv, cmd.argument, "textrm");
579                 //bv.owner()->message(_("math text mode toggled"));
580                 break;
581
582         case LFUN_MATH_SIZE:
583 #if 0
584                 if (!arg.empty()) {
585                         recordUndo(bv, Undo::ATOMIC);
586                         mathcursor->setSize(arg);
587                 }
588 #endif
589                 break;
590
591         case LFUN_INSERT_MATRIX: {
592                 recordUndo(bv, Undo::ATOMIC);
593                 unsigned int m = 1;
594                 unsigned int n = 1;
595                 string v_align;
596                 string h_align;
597                 istringstream is(argument);
598                 is >> m >> n >> v_align >> h_align;
599                 m = max(1u, m);
600                 n = max(1u, n);
601                 v_align += 'c';
602                 mathcursor->niceInsert(
603                         MathAtom(new MathArrayInset("array", m, n, v_align[0], h_align)));
604                 break;
605         }
606
607         case LFUN_MATH_DELIM: {
608                 //lyxerr << "formulabase::LFUN_MATH_DELIM, arg: '" << arg << "'" << endl;
609                 string ls;
610                 string rs = split(cmd.argument, ls, ' ');
611                 // Reasonable default values
612                 if (ls.empty())
613                         ls = '(';
614                 if (rs.empty())
615                         rs = ')';
616
617                 recordUndo(bv, Undo::ATOMIC);
618                 mathcursor->handleNest(MathAtom(new MathDelimInset(ls, rs)));
619                 break;
620         }
621
622         case LFUN_SPACE_INSERT:
623         case LFUN_MATH_SPACE:
624                 recordUndo(bv, Undo::ATOMIC);
625                 mathcursor->insert(MathAtom(new MathSpaceInset(",")));
626                 break;
627
628         case LFUN_UNDO:
629                 bv.owner()->message(_("Invalid action in math mode!"));
630                 break;
631
632
633         case LFUN_EXEC_COMMAND:
634                 result = DispatchResult(false);
635                 break;
636
637         case LFUN_INSET_ERT:
638                 // interpret this as if a backslash was typed
639                 recordUndo(bv, Undo::ATOMIC);
640                 mathcursor->interpret('\\');
641                 break;
642
643         case LFUN_BREAKPARAGRAPH:
644         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
645         case LFUN_BREAKPARAGRAPH_SKIP:
646                 argument = "\n";
647                 // fall through
648
649 // FIXME: We probably should swap parts of "math-insert" and "self-insert"
650 // handling such that "self-insert" works on "arbitrary stuff" too, and
651 // math-insert only handles special math things like "matrix".
652         case LFUN_INSERT_MATH:
653                 recordUndo(bv, Undo::ATOMIC);
654                 mathcursor->niceInsert(argument);
655                 break;
656
657         case -1:
658         case LFUN_SELFINSERT:
659                 if (!argument.empty()) {
660                         recordUndo(bv, Undo::ATOMIC);
661                         if (argument.size() == 1)
662                                 result = mathcursor->interpret(argument[0]) ? DispatchResult(true, true) : DispatchResult(false, FINISHED_RIGHT);
663                         else
664                                 mathcursor->insert(argument);
665                 }
666                 break;
667
668         case LFUN_ESCAPE:
669                 if (mathcursor->selection())
670                         mathcursor->selClear();
671                 else
672                         result = DispatchResult(false);
673                 break;
674
675         case LFUN_INSET_TOGGLE:
676                 mathcursor->insetToggle();
677                 break;
678
679         case LFUN_DIALOG_SHOW:
680                 result = DispatchResult(false);
681                 break;
682
683         case LFUN_DIALOG_SHOW_NEW_INSET: {
684                 string const & name = argument;
685                 string data;
686                 if (name == "ref") {
687                         RefInset tmp(name);
688                         data = tmp.createDialogStr(name);
689                 }
690
691                 if (data.empty())
692                         result = DispatchResult(false);
693                 else
694                         bv.owner()->getDialogs().show(name, data, 0);
695                 break;
696         }
697
698         case LFUN_INSET_APPLY: {
699                 string const name = cmd.getArg(0);
700                 InsetBase * base = bv.owner()->getDialogs().getOpenInset(name);
701
702                 if (base) {
703                         FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument);
704                         result = base->dispatch(bv, fr);
705                 } else {
706                         MathArray ar;
707                         if (createMathInset_fromDialogStr(cmd.argument, ar)) {
708                                 mathcursor->insert(ar);
709                                 result = DispatchResult(true, true);
710                         } else {
711                                 result = DispatchResult(false);
712                         }
713                 }
714                 break;
715         }
716
717         case LFUN_WORD_REPLACE:
718         case LFUN_WORD_FIND: {
719                 result = 
720                         searchForward(&bv, cmd.getArg(0), false, false)
721                                 ? DispatchResult(true, true) : DispatchResult(false);
722                 break;
723         }
724
725         default:
726                 result = DispatchResult(false);
727         }
728
729         if (result == DispatchResult(true, true))
730                 bv.update();
731
732         mathcursor->normalize();
733         mathcursor->touch();
734
735         BOOST_ASSERT(mathcursor);
736
737         if (mathcursor->selection() || was_selection)
738                 toggleInsetSelection(&bv);
739
740         if (result.dispatched()) {
741                 revealCodes(bv);
742                 bv.stuffClipboard(mathcursor->grabSelection());
743         } else {
744                 releaseMathCursor(bv);
745                 if (remove_inset)
746                         bv.owner()->dispatch(FuncRequest(LFUN_DELETE));
747         }
748
749         return result;  // original version
750 }
751
752
753 void InsetFormulaBase::revealCodes(BufferView & bv) const
754 {
755         if (!mathcursor)
756                 return;
757         bv.owner()->message(mathcursor->info());
758
759 #if 0
760         // write something to the minibuffer
761         // translate to latex
762         mathcursor->markInsert();
763         ostringstream os;
764         write(NULL, os);
765         string str = os.str();
766         mathcursor->markErase();
767         string::size_type pos = 0;
768         string res;
769         for (string::iterator it = str.begin(); it != str.end(); ++it) {
770                 if (*it == '\n')
771                         res += ' ';
772                 else if (*it == '\0') {
773                         res += "  -X-  ";
774                         pos = it - str.begin();
775                 }
776                 else
777                         res += *it;
778         }
779         if (pos > 30)
780                 res = res.substr(pos - 30);
781         if (res.size() > 60)
782                 res = res.substr(0, 60);
783         bv.owner()->message(res);
784 #endif
785 }
786
787
788 InsetOld::Code InsetFormulaBase::lyxCode() const
789 {
790         return InsetOld::MATH_CODE;
791 }
792
793
794 int InsetFormulaBase::ylow() const
795 {
796         return yo_ - dim_.asc;
797 }
798
799
800 int InsetFormulaBase::yhigh() const
801 {
802         return yo_ + dim_.des;
803 }
804
805
806 int InsetFormulaBase::xlow() const
807 {
808         return xo_;
809 }
810
811
812 int InsetFormulaBase::xhigh() const
813 {
814         return xo_ + dim_.wid;
815 }
816
817
818 /////////////////////////////////////////////////////////////////////
819
820
821 bool InsetFormulaBase::searchForward(BufferView * bv, string const & str,
822                                      bool, bool)
823 {
824 #ifdef WITH_WARNINGS
825 #warning pretty ugly
826 #endif
827         static InsetFormulaBase * lastformula = 0;
828         static CursorBase current = CursorBase(ibegin(par().nucleus()));
829         static MathArray ar;
830         static string laststr;
831
832         if (lastformula != this || laststr != str) {
833                 //lyxerr << "reset lastformula to " << this << endl;
834                 lastformula = this;
835                 laststr = str;
836                 current = ibegin(par().nucleus());
837                 ar.clear();
838                 mathed_parse_cell(ar, str);
839         } else {
840                 increment(current);
841         }
842         //lyxerr << "searching '" << str << "' in " << this << ar << endl;
843
844         for (CursorBase it = current; it != iend(par().nucleus()); increment(it)) {
845                 CursorSlice & top = it.back();
846                 MathArray const & a = top.asMathInset()->cell(top.idx_);
847                 if (a.matchpart(ar, top.pos_)) {
848                         delete mathcursor;
849                         mathcursor = new MathCursor(bv, this, true);
850                         //metrics(bv);
851                         mathcursor->setSelection(it, ar.size());
852                         current = it;
853                         top.pos_ += ar.size();
854                         bv->update();
855                         return true;
856                 }
857         }
858
859         //lyxerr << "not found!" << endl;
860         lastformula = 0;
861         return false;
862 }
863
864
865 bool InsetFormulaBase::searchBackward(BufferView * bv, string const & what,
866                                       bool a, bool b)
867 {
868         lyxerr[Debug::MATHED] << "searching backward not implemented in mathed" << endl;
869         return searchForward(bv, what, a, b);
870 }
871
872
873 bool InsetFormulaBase::display() const
874 {
875         return par()->asHullInset() && par()->asHullInset()->display();
876 }
877
878
879 string InsetFormulaBase::selectionAsString() const
880 {
881         return mathcursor ? mathcursor->grabSelection() : string();
882 }
883
884 /////////////////////////////////////////////////////////////////////
885
886
887 void mathDispatchCreation(BufferView & bv, FuncRequest const & cmd,
888         bool display)
889 {
890         // use selection if available..
891         //string sel;
892         //if (action == LFUN_MATH_IMPORT_SELECTION)
893         //      sel = "";
894         //else
895
896         string sel = bv.getLyXText()->selectionAsString(*bv.buffer(), false);
897
898         if (sel.empty()) {
899                 InsetFormula * f = new InsetFormula(&bv);
900                 if (openNewInset(bv, f)) {
901                         bv.fullCursor().innerInset()->
902                                 dispatch(bv, FuncRequest(LFUN_MATH_MUTATE, "simple"));
903                         // don't do that also for LFUN_MATH_MODE unless you want end up with
904                         // always changing to mathrm when opening an inlined inset
905                         // -- I really hate "LyXfunc overloading"...
906                         if (display)
907                                 f->dispatch(bv, FuncRequest(LFUN_MATH_DISPLAY));
908                         f->dispatch(bv, FuncRequest(LFUN_INSERT_MATH, cmd.argument));
909                 }
910         } else {
911                 // create a macro if we see "\\newcommand" somewhere, and an ordinary
912                 // formula otherwise
913                 InsetFormulaBase * f;
914                 if (sel.find("\\newcommand") == string::npos &&
915                                 sel.find("\\def") == string::npos)
916                         f = new InsetFormula(sel);
917                 else
918                         f = new InsetFormulaMacro(sel);
919                 bv.getLyXText()->cutSelection(true, false);
920                 openNewInset(bv, f);
921         }
922         cmd.message(N_("Math editor mode"));
923 }
924
925
926 void mathDispatch(BufferView & bv, FuncRequest const & cmd)
927 {
928         if (!bv.available())
929                 return;
930
931         switch (cmd.action) {
932
933                 case LFUN_MATH_DISPLAY:
934                         mathDispatchCreation(bv, cmd, true);
935                         break;
936
937                 case LFUN_MATH_MODE:
938                         mathDispatchCreation(bv, cmd, false);
939                         break;
940
941                 case LFUN_MATH_IMPORT_SELECTION:
942                         mathDispatchCreation(bv, cmd, false);
943                         break;
944
945                 case LFUN_MATH_MACRO:
946                         if (cmd.argument.empty())
947                                 cmd.errorMessage(N_("Missing argument"));
948                         else {
949                                 string s = cmd.argument;
950                                 string const s1 = token(s, ' ', 1);
951                                 int const nargs = s1.empty() ? 0 : atoi(s1);
952                                 string const s2 = token(s, ' ', 2);
953                                 string const type = s2.empty() ? "newcommand" : s2;
954                                 openNewInset(bv, new InsetFormulaMacro(token(s, ' ', 0), nargs, s2));
955                         }
956                         break;
957
958                 case LFUN_INSERT_MATH:
959                 case LFUN_INSERT_MATRIX:
960                 case LFUN_MATH_DELIM: {
961                         InsetFormula * f = new InsetFormula(&bv);
962                         if (openNewInset(bv, f)) {
963                                 UpdatableInset * inset = bv.fullCursor().innerInset();
964                                 inset->dispatch(bv, FuncRequest(LFUN_MATH_MUTATE, "simple"));
965                                 inset->dispatch(bv, cmd);
966                         }
967                         break;
968                 }
969
970                 default:
971                         break;
972         }
973 }