]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.C
allow insertion of protected space in maths
[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 "Lsstream.h"
40 #include "math_arrayinset.h"
41 #include "math_charinset.h"
42 #include "math_cursor.h"
43 #include "math_factory.h"
44 #include "math_hullinset.h"
45 #include "math_iterator.h"
46 #include "math_macrotable.h"
47 #include "math_parser.h"
48 #include "math_pos.h"
49 #include "math_spaceinset.h"
50 #include "undo_funcs.h"
51 #include "textpainter.h"
52 #include "frontends/Dialogs.h"
53 #include "intl.h"
54
55 using std::endl;
56 using std::ostream;
57 using std::vector;
58
59 MathCursor * mathcursor = 0;
60
61
62 namespace {
63
64
65 // local global
66 int first_x;
67 int first_y;
68
69
70 void handleFont(BufferView * bv, string const & arg, MathTextCodes t)
71 {
72         if (mathcursor->selection())
73                 bv->lockedInsetStoreUndo(Undo::EDIT);
74         mathcursor->handleFont(t);
75         for (string::const_iterator it = arg.begin(); it != arg.end(); ++it)
76                 mathcursor->insert(*it);
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         //lyxerr << "sizeof(MathMetricsInfo): " << sizeof(MathMetricsInfo) << "\n";
102         //lyxerr << "sizeof(MathCharInset): " << sizeof(MathCharInset) << "\n";
103 }
104
105
106 // simply scrap this function if you want
107 void InsetFormulaBase::mutateToText()
108 {
109 #if 0
110         // translate to latex
111         ostringstream os;
112         latex(NULL, os, false, false);
113         string str = os.str();
114
115         // insert this text
116         LyXText * lt = view_->getLyXText();
117         string::const_iterator cit = str.begin();
118         string::const_iterator end = str.end();
119         for (; cit != end; ++cit)
120                 view_->owner()->getIntl()->getTrans().TranslateAndInsert(*cit, lt);
121
122         // remove ourselves
123         //view_->owner()->getLyXFunc()->dispatch(LFUN_ESCAPE);
124 #endif
125 }
126
127
128 // Check if uses AMS macros
129 void InsetFormulaBase::validate(LaTeXFeatures &) const
130 {}
131
132
133 void InsetFormulaBase::metrics(BufferView * bv, LyXFont const & f) const
134 {
135         font_ = f;
136         metrics(bv);
137 }
138
139
140 void InsetFormulaBase::metrics(BufferView * bv) const
141 {
142         if (bv)
143                 view_ = bv;
144         MathMetricsInfo mi(view_, font_, display() ? LM_ST_DISPLAY : LM_ST_TEXT);
145         par()->metrics(mi);
146 }
147
148
149 string const InsetFormulaBase::editMessage() const
150 {
151         return _("Math editor mode");
152 }
153
154
155 void InsetFormulaBase::edit(BufferView * bv, int x, int y, unsigned int)
156 {
157         if (!bv->lockInset(this))
158                 lyxerr[Debug::MATHED] << "Cannot lock inset!!!" << endl;
159         delete mathcursor;
160         mathcursor = new MathCursor(this, true);
161         metrics(bv);
162         mathcursor->setPos(x, y);
163         //lyxerr << "setting pos to " << x << "," << y << "\n";
164
165         // if that is removed, we won't get the magenta box when entering an
166         // inset for the first time
167         bv->updateInset(this, false);
168 }
169
170
171 void InsetFormulaBase::edit(BufferView * bv, bool front)
172 {
173         if (!bv->lockInset(this))
174                 lyxerr[Debug::MATHED] << "Cannot lock inset!!!" << endl;
175         delete mathcursor;
176         mathcursor = new MathCursor(this, front);
177         metrics(bv);
178         bv->updateInset(this, false);
179 }
180
181
182 void InsetFormulaBase::insetUnlock(BufferView * bv)
183 {
184         if (mathcursor) {
185                 if (mathcursor->inMacroMode()) {
186                         mathcursor->macroModeClose();
187                         updateLocal(bv, true);
188                 }
189                 delete mathcursor;
190                 mathcursor = 0;
191         }
192         bv->updateInset(this, false);
193 }
194
195
196 void InsetFormulaBase::getCursorPos(BufferView *, int & x, int & y) const
197 {
198         mathcursor->getPos(x, y);
199         //x -= xo_;
200         y -= yo_;
201         //lyxerr << "getCursorPos: " << x << " " << y << "\n";
202 }
203
204
205 void InsetFormulaBase::toggleInsetCursor(BufferView * bv)
206 {
207         if (!mathcursor)
208                 return;
209
210         if (isCursorVisible())
211                 bv->hideLockedInsetCursor();
212         else {
213                 metrics(bv);
214                 int x;
215                 int y;
216                 mathcursor->getPos(x, y);
217                 y -= yo_;
218                 int asc = 0;
219                 int des = 0;
220                 math_font_max_dim(font_, asc, des);
221                 bv->showLockedInsetCursor(x, y, asc, des);
222                 //lyxerr << "toggleInsetCursor: " << x << " " << y << "\n";
223         }
224
225         toggleCursorVisible();
226 }
227
228
229 void InsetFormulaBase::showInsetCursor(BufferView * bv, bool)
230 {
231         if (isCursorVisible())
232                 return;
233         if (mathcursor) {
234                 metrics(bv);
235                 int x;
236                 int y;
237                 mathcursor->getPos(x, y);
238                 y -= yo_;
239                 int asc = 0;
240                 int des = 0;
241                 math_font_max_dim(font_, asc, des);
242                 bv->fitLockedInsetCursor(x, y, asc, des);
243                 //lyxerr << "showInsetCursor: x: " << x << " y: " << y << " yo: " << yo_ << "\n";
244         }
245         toggleInsetCursor(bv);
246 }
247
248
249 void InsetFormulaBase::hideInsetCursor(BufferView * bv)
250 {
251         if (isCursorVisible())
252                 toggleInsetCursor(bv);
253 }
254
255
256 void InsetFormulaBase::toggleInsetSelection(BufferView * bv)
257 {
258         if (mathcursor)
259                 bv->updateInset(this, false);
260 }
261
262
263 vector<string> const InsetFormulaBase::getLabelList() const
264 {
265   return vector<string>();
266 }
267
268
269 void InsetFormulaBase::updateLocal(BufferView * bv, bool dirty)
270 {
271         metrics(bv);
272         bv->updateInset(this, dirty);
273 }
274
275
276 bool InsetFormulaBase::insetButtonRelease(BufferView * bv,
277                                           int /*x*/, int /*y*/, int button)
278 {
279         //lyxerr << "insetButtonRelease: " << x << " " << y << "\n";
280
281         if (!mathcursor)
282                 return false;
283         hideInsetCursor(bv);
284         showInsetCursor(bv);
285         bv->updateInset(this, false);
286
287         if (button == 3) {
288                 // launch math panel for right mouse button
289                 bv->owner()->getDialogs()->showMathPanel();
290                 return true;
291         }
292         return false;
293 }
294
295
296 void InsetFormulaBase::insetButtonPress(BufferView * bv,
297                                         int x, int y, int button)
298 {
299         //lyxerr << "insetButtonPress: "
300         //      << x << " " << y << " but: " << button << "\n";
301
302         switch (button) {
303                 default:
304                 case 1:
305                         // left click
306                         delete mathcursor;
307                         mathcursor = new MathCursor(this, x == 0);
308                         metrics(bv);
309                         first_x = x;
310                         first_y = y;
311                         mathcursor->selClear();
312                         mathcursor->setPos(x + xo_, y + yo_);
313                         break;
314 /*
315                 case 2:
316                         lyxerr << "insetButtonPress: 2\n";
317                         // insert stuff
318                         if (mathcursor) {
319                                 bv->lockedInsetStoreUndo(Undo::EDIT);
320                                 MathArray ar;
321                                 mathcursor->selGet(ar);
322                                 mathcursor->setPos(x + xo_, y + yo_);
323                                 string sel =
324                                         bv->getLyXText()->selectionAsString(bv->buffer(), false);
325                                 mathed_parse_cell(ar, sel);
326                                 mathcursor->insert(ar);
327                         }
328                         break;
329 */
330                 case 3:
331                         // launch math panel for right mouse button
332                         bv->owner()->getDialogs()->showMathPanel();
333                         break;
334         }
335         bv->updateInset(this, false);
336 }
337
338
339 void InsetFormulaBase::insetMotionNotify(BufferView * bv,
340                                          int x, int y, int /*button*/)
341 {
342         if (!mathcursor)
343                 return;
344
345         if (abs(x - first_x) < 2 && abs(y - first_y) < 2) {
346                 //lyxerr << "insetMotionNotify: ignored\n";
347                 return;
348         }
349         first_x = x;
350         first_y = y;
351
352         if (!mathcursor->selection())
353                 mathcursor->selStart();
354
355         //lyxerr << "insetMotionNotify: " << x + xo_ << ' ' << y + yo_
356         //      << ' ' << button << "\n";
357         hideInsetCursor(bv);
358         mathcursor->setPos(x + xo_, y + yo_);
359         showInsetCursor(bv);
360         bv->updateInset(this, false);
361 }
362
363
364 void InsetFormulaBase::insetKeyPress(XKeyEvent *)
365 {
366         lyxerr[Debug::MATHED] << "Used InsetFormulaBase::InsetKeyPress." << endl;
367 }
368
369
370 UpdatableInset::RESULT
371 InsetFormulaBase::localDispatch(BufferView * bv, kb_action action,
372                             string const & arg)
373 {
374         //lyxerr << "InsetFormulaBase::localDispatch: act: " << action
375         //      << " arg: '" << arg << "' cursor: " << mathcursor << "\n";
376
377         if (!mathcursor)
378                 return UNDISPATCHED;
379
380         RESULT result      = DISPATCHED;
381         bool sel           = false;
382         bool was_macro     = mathcursor->inMacroMode();
383         bool was_selection = mathcursor->selection();
384
385         hideInsetCursor(bv);
386
387         mathcursor->normalize();
388         mathcursor->touch();
389
390         switch (action) {
391
392                 // --- Cursor Movements ---------------------------------------------
393
394         case LFUN_RIGHTSEL:
395                 sel = true; // fall through...
396
397         case LFUN_RIGHT:
398                 result = mathcursor->right(sel) ? DISPATCHED : FINISHED_RIGHT;
399                 //lyxerr << "calling scroll 20\n";
400                 //scroll(bv, 20);
401                 updateLocal(bv, false);
402                 // write something to the minibuffer
403                 //bv->owner()->message(mathcursor->info());
404                 break;
405
406
407         case LFUN_LEFTSEL:
408                 sel = true; // fall through
409
410         case LFUN_LEFT:
411                 result = mathcursor->left(sel) ? DISPATCHED : FINISHED;
412                 updateLocal(bv, false);
413                 break;
414
415
416         case LFUN_UPSEL:
417                 sel = true;
418
419         case LFUN_UP:
420                 result = mathcursor->up(sel) ? DISPATCHED : FINISHED_UP;
421                 updateLocal(bv, false);
422                 break;
423
424
425         case LFUN_DOWNSEL:
426                 sel = true;
427
428         case LFUN_DOWN:
429                 result = mathcursor->down(sel) ? DISPATCHED : FINISHED_DOWN;
430                 updateLocal(bv, false);
431                 break;
432
433         case LFUN_HOMESEL:
434                 sel = true;
435
436         case LFUN_HOME:
437                 mathcursor->home(sel);
438                 updateLocal(bv, false);
439                 break;
440
441         case LFUN_ENDSEL:
442                 sel = true;
443
444         case LFUN_END:
445                 mathcursor->end(sel);
446                 updateLocal(bv, false);
447                 break;
448
449         case LFUN_DELETE_LINE_FORWARD:
450                 bv->lockedInsetStoreUndo(Undo::DELETE);
451                 mathcursor->delLine();
452                 updateLocal(bv, true);
453                 break;
454
455         case LFUN_TAB:
456                 mathcursor->idxNext();
457                 updateLocal(bv, false);
458                 break;
459
460         case LFUN_SHIFT_TAB:
461                 mathcursor->idxPrev();
462                 updateLocal(bv, false);
463                 break;
464
465         case LFUN_TABINSERT:
466                 bv->lockedInsetStoreUndo(Undo::EDIT);
467                 mathcursor->splitCell();
468                 updateLocal(bv, true);
469                 break;
470
471         case LFUN_DELETE_WORD_BACKWARD:
472         case LFUN_BACKSPACE:
473                 bv->lockedInsetStoreUndo(Undo::DELETE);
474                 mathcursor->backspace();
475                 bv->updateInset(this, true);
476                 break;
477
478         case LFUN_DELETE_WORD_FORWARD:
479         case LFUN_DELETE:
480                 bv->lockedInsetStoreUndo(Undo::DELETE);
481                 mathcursor->erase();
482                 bv->updateInset(this, true);
483                 break;
484
485         //    case LFUN_GETXY:
486         //      sprintf(dispatch_buffer, "%d %d",);
487         //      dispatch_result = dispatch_buffer;
488         //      break;
489         case LFUN_SETXY: {
490                 lyxerr << "LFUN_SETXY broken!\n";
491                 int x = 0;
492                 int y = 0;
493                 istringstream is(arg.c_str());
494                 is >> x >> y;
495                 mathcursor->setPos(x, y);
496                 updateLocal(bv, false);
497                 break;
498         }
499
500         case LFUN_PASTE:
501                 if (was_macro)
502                         mathcursor->macroModeClose();
503                 bv->lockedInsetStoreUndo(Undo::EDIT);
504                 mathcursor->selPaste();
505                 updateLocal(bv, true);
506                 break;
507
508         case LFUN_CUT:
509                 bv->lockedInsetStoreUndo(Undo::DELETE);
510                 mathcursor->selCut();
511                 updateLocal(bv, true);
512                 break;
513
514         case LFUN_COPY:
515                 mathcursor->selCopy();
516                 break;
517
518         case LFUN_WORDRIGHTSEL:
519         case LFUN_WORDLEFTSEL:
520                 break;
521
522         // Special casing for superscript in case of LyX handling
523         // dead-keys:
524         case LFUN_CIRCUMFLEX:
525                 if (arg.empty()) {
526                         // do superscript if LyX handles
527                         // deadkeys
528                         bv->lockedInsetStoreUndo(Undo::EDIT);
529                         mathcursor->script(true);
530                         updateLocal(bv, true);
531                 }
532                 break;
533         case LFUN_UMLAUT:
534         case LFUN_ACUTE:
535         case LFUN_GRAVE:
536         case LFUN_BREVE:
537         case LFUN_DOT:
538         case LFUN_MACRON:
539         case LFUN_CARON:
540         case LFUN_TILDE:
541         case LFUN_CEDILLA:
542         case LFUN_CIRCLE:
543         case LFUN_UNDERDOT:
544         case LFUN_TIE:
545         case LFUN_OGONEK:
546         case LFUN_HUNG_UMLAUT:
547                 break;
548
549         //  Math fonts
550         case LFUN_GREEK_TOGGLE: handleFont(bv, arg, LM_TC_GREEK); break;
551         case LFUN_BOLD:         handleFont(bv, arg, LM_TC_BF); break;
552         case LFUN_SANS:         handleFont(bv, arg, LM_TC_SF); break;
553         case LFUN_EMPH:         handleFont(bv, arg, LM_TC_CAL); break;
554         case LFUN_ROMAN:        handleFont(bv, arg, LM_TC_RM); break;
555         case LFUN_CODE:         handleFont(bv, arg, LM_TC_TT); break;
556         case LFUN_FRAK:         handleFont(bv, arg, LM_TC_EUFRAK); break;
557         case LFUN_ITAL:         handleFont(bv, arg, LM_TC_IT); break;
558         case LFUN_NOUN:         handleFont(bv, arg, LM_TC_BB); break;
559         case LFUN_DEFAULT:      handleFont(bv, arg, LM_TC_VAR); break;
560         case LFUN_FREE:         handleFont(bv, arg, LM_TC_TEXTRM); break;
561
562         case LFUN_GREEK:
563                 handleFont(bv, arg, LM_TC_GREEK1);
564                 if (arg.size())
565                         mathcursor->interpret(arg);
566                 break;
567
568         case LFUN_MATH_MODE:
569 #if 1
570                 handleFont(bv, arg, LM_TC_TEXTRM);
571 #endif
572
573 #if 0
574                 mathcursor->niceInsert(MathAtom(new MathHullInset(LM_OT_SIMPLE)));
575                 updateLocal(bv, true);
576 #endif
577
578                 //bv->owner()->message(_("math text mode toggled"));
579                 break;
580
581         case LFUN_MATH_LIMITS:
582                 bv->lockedInsetStoreUndo(Undo::EDIT);
583                 if (mathcursor->toggleLimits())
584                         updateLocal(bv, true);
585                 break;
586
587         case LFUN_MATH_SIZE:
588 #if 0
589                 if (!arg.empty()) {
590                         bv->lockedInsetStoreUndo(Undo::EDIT);
591                         mathcursor->setSize(arg);
592                         updateLocal(bv, true);
593                 }
594 #endif
595                 break;
596
597         case LFUN_INSERT_MATRIX:
598                 if (!arg.empty()) {
599                         bv->lockedInsetStoreUndo(Undo::EDIT);
600                         mathcursor->interpret("matrix " + arg);
601                         updateLocal(bv, true);
602                 }
603                 break;
604
605         case LFUN_SUPERSCRIPT:
606         case LFUN_SUBSCRIPT:
607         {
608                 bv->lockedInsetStoreUndo(Undo::EDIT);
609                 mathcursor->script(action == LFUN_SUPERSCRIPT);
610                 updateLocal(bv, true);
611                 break;
612         }
613
614         case LFUN_MATH_DELIM:
615         {
616                 //lyxerr << "formulabase::LFUN_MATH_DELIM, arg: '" << arg << "'\n";
617                 string ls;
618                 string rs = split(arg, ls, ' ');
619                 // Reasonable default values
620                 if (ls.empty())
621                         ls = '(';
622                 if (rs.empty())
623                         rs = ')';
624
625                 bv->lockedInsetStoreUndo(Undo::EDIT);
626                 mathcursor->handleDelim(ls, rs);
627                 updateLocal(bv, true);
628                 break;
629         }
630
631         case LFUN_PROTECTEDSPACE:
632         case LFUN_MATH_SPACE:
633                 bv->lockedInsetStoreUndo(Undo::EDIT);
634                 mathcursor->insert(MathAtom(new MathSpaceInset(1)));
635                 updateLocal(bv, true);
636                 break;
637
638         case LFUN_UNDO:
639                 bv->owner()->message(_("Invalid action in math mode!"));
640                 break;
641
642
643         case LFUN_MATH_HALIGN:
644         case LFUN_MATH_VALIGN:
645         case LFUN_MATH_ROW_INSERT:
646         case LFUN_MATH_ROW_DELETE:
647         case LFUN_MATH_COLUMN_INSERT:
648         case LFUN_MATH_COLUMN_DELETE:
649         {
650                 MathInset::idx_type idx = 0;
651                 MathGridInset * p = mathcursor ? mathcursor->enclosingGrid(idx) : 0;
652                 if (p) {
653                         mathcursor->popToEnclosingGrid();
654                         bv->lockedInsetStoreUndo(Undo::EDIT);
655                         char align = arg.size() ? arg[0] : 'c';
656                         switch (action) {
657                                 case LFUN_MATH_HALIGN: p->halign(align, p->col(idx)); break;
658                                 case LFUN_MATH_VALIGN: p->valign(align); break;
659                                 case LFUN_MATH_ROW_INSERT: p->addRow(p->row(idx)); break;
660                                 case LFUN_MATH_ROW_DELETE: p->delRow(p->row(idx)); break;
661                                 case LFUN_MATH_COLUMN_INSERT: p->addCol(p->col(idx)); break;
662                                 case LFUN_MATH_COLUMN_DELETE: p->delCol(p->col(idx)); break;
663                                 default: ;
664                         }
665                         updateLocal(bv, true);
666                 }
667                 break;
668         }
669
670         case LFUN_EXEC_COMMAND:
671                 result = UNDISPATCHED;
672                 break;
673
674         case LFUN_BREAKPARAGRAPH:
675         case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
676                 //lyxerr << "LFUN ignored\n";
677                 break;
678
679         case LFUN_INSET_ERT:
680                 // interpret this as if a backslash was typed
681                 bv->lockedInsetStoreUndo(Undo::EDIT);
682                 mathcursor->interpret('\\');
683                 updateLocal(bv, true);
684                 break;
685
686         case -1:
687         case LFUN_INSERT_MATH:
688         case LFUN_SELFINSERT:
689                 if (!arg.empty()) {
690                         bv->lockedInsetStoreUndo(Undo::EDIT);
691                         if (arg.size() == 1)
692                                 result = mathcursor->interpret(arg[0]) ? DISPATCHED : FINISHED_RIGHT;
693                         else
694                                 result = mathcursor->interpret(arg) ? DISPATCHED : FINISHED_RIGHT;
695                         updateLocal(bv, true);
696                 }
697                 break;
698
699         case LFUN_MATH_PANEL:
700                 result = UNDISPATCHED;
701                 break;
702
703         case LFUN_ESCAPE:
704                 if (mathcursor->selection())
705                         mathcursor->selClear();
706                 else
707                         result = UNDISPATCHED;
708                 break;
709
710         default:
711                 result = UNDISPATCHED;
712         }
713
714         mathcursor->normalize();
715         mathcursor->touch();
716
717         lyx::Assert(mathcursor);
718
719         if (mathcursor->selection() || was_selection)
720                 toggleInsetSelection(bv);
721
722         if (result == DISPATCHED || result == DISPATCHED_NOUPDATE ||
723             result == UNDISPATCHED)
724                 showInsetCursor(bv);
725         else
726                 bv->unlockInset(this);
727
728         revealCodes(bv);
729
730         return result;  // original version
731 }
732
733
734 void InsetFormulaBase::revealCodes(BufferView * /*bv*/) const
735 {
736         if (!mathcursor)
737                 return;
738 #if 0
739         // write something to the minibuffer
740         // translate to latex
741         mathcursor->markInsert();
742         ostringstream os;
743         write(NULL, os);
744         string str = os.str();
745         mathcursor->markErase();
746         string::size_type pos = 0;
747         string res;
748         for (string::iterator it = str.begin(); it != str.end(); ++it) {
749                 if (*it == '\n')
750                         res += ' ';
751                 else if (*it == '\0') {
752                         res += "  -X-  ";
753                         pos = it - str.begin();
754                 }
755                 else
756                         res += *it;
757         }
758         if (pos > 30)
759                 res = res.substr(pos - 30);
760         if (res.size() > 60)
761                 res = res.substr(0, 60);
762         bv->owner()->message(res);
763 #endif
764 }
765
766
767 Inset::Code InsetFormulaBase::lyxCode() const
768 {
769         return Inset::MATH_CODE;
770 }
771
772
773 int InsetFormulaBase::ylow() const
774 {
775         return yo_ - ascent(view_, font_);
776 }
777
778
779 int InsetFormulaBase::yhigh() const
780 {
781         return yo_ + descent(view_, font_);
782 }
783
784
785 int InsetFormulaBase::xlow() const
786 {
787         return xo_;
788 }
789
790
791 int InsetFormulaBase::xhigh() const
792 {
793         return xo_ + width(view_, font_);
794 }
795
796
797 /////////////////////////////////////////////////////////////////////
798
799
800 bool InsetFormulaBase::searchForward(BufferView * bv, string const & str,
801                                      bool, bool)
802 {
803 #ifdef WITH_WARNINGS
804 #warning pretty ugly
805 #endif
806         static InsetFormulaBase * lastformula = 0;
807         static MathIterator current = MathIterator(ibegin(par().nucleus()));
808         static MathArray ar;
809         static string laststr;
810
811         if (lastformula != this || laststr != str) {
812                 //lyxerr << "reset lastformula to " << this << "\n";
813                 lastformula = this;
814                 laststr = str;
815                 current = ibegin(par().nucleus());
816                 ar.clear();
817                 mathed_parse_cell(ar, str);
818         } else {
819                 ++current;
820         }
821         //lyxerr << "searching '" << str << "' in " << this << ar << endl;
822
823         for (MathIterator it = current; it != iend(par().nucleus()); ++it) {
824                 if (it.cell().matchpart(ar, it.position().pos_)) {
825                         mathcursor->setSelection(it.cursor(), ar.size());
826                         current = it;
827                         it.jump(ar.size());
828                         // I guess some of the following can go
829                         bv->toggleSelection(true);
830                         hideInsetCursor(bv);
831                         updateLocal(bv, true);
832                         showInsetCursor(bv);
833                         metrics(bv);
834                         return true;
835                 }
836         }
837
838         //lyxerr << "not found!\n";
839         lastformula = 0;
840         // we have to unlock ourself in this function by default!
841         // don't ask me why...
842         bv->unlockInset(this);
843         return false;
844 }
845
846
847 bool InsetFormulaBase::searchBackward(BufferView * bv, string const & what,
848                                       bool a, bool b)
849 {
850         lyxerr << "searching backward not implemented in mathed" << endl;
851         return searchForward(bv, what, a, b);
852 }
853
854
855 /////////////////////////////////////////////////////////////////////
856
857
858 void mathDispatchCreation(BufferView * bv, string const & arg, bool display)
859 {
860         if (bv->available()) {
861                 // use selection if available..
862                 //string sel;
863                 //if (action == LFUN_MATH_IMPORT_SELECTION)
864                 //      sel = "";
865                 //else
866
867                 string sel = bv->getLyXText()->selectionAsString(bv->buffer(), false);
868
869                 InsetFormulaBase * f;
870                 if (sel.empty()) {
871                         f = new InsetFormula;
872                         if (openNewInset(bv, f)) {
873                                 // don't do that also for LFUN_MATH_MODE unless you want end up with
874                                 // always changing to mathrm when opening an inlined inset
875                                 // -- I really hate "LyXfunc overloading"...
876                                 if (display)
877                                         f->localDispatch(bv, LFUN_MATH_DISPLAY, string());
878                                 f->localDispatch(bv, LFUN_INSERT_MATH, arg);
879                         }
880                 } else {
881                         // create a macro if we see "\\newcommand" somewhere, and an ordinary
882                         // formula otherwise
883                         if (sel.find("\\newcommand") == string::npos &&
884                                   sel.find("\\def") == string::npos)
885                                 f = new InsetFormula(sel);
886                         else {
887                                 string name;
888                                 if (!mathed_parse_macro(name, sel))
889                                         return;
890                                 f = new InsetFormulaMacro(sel);
891                         }
892                         bv->getLyXText()->cutSelection(bv);
893                         openNewInset(bv, f);
894                 }
895         }
896         bv->owner()->getLyXFunc()->setMessage(N_("Math editor mode"));
897 }
898
899
900 void mathDispatchMathDisplay(BufferView * bv, string const & arg)
901 {
902         mathDispatchCreation(bv, arg, true);
903 }
904
905
906 void mathDispatchMathMode(BufferView * bv, string const & arg)
907 {
908         mathDispatchCreation(bv, arg, false);
909 }
910
911
912 void mathDispatchMathImportSelection(BufferView * bv, string const & arg)
913 {
914         mathDispatchCreation(bv, arg, true);
915 }
916
917
918 void mathDispatchMathMacro(BufferView * bv, string const & arg)
919 {
920         if (bv->available()) {
921                 if (arg.empty())
922                         bv->owner()->getLyXFunc()->setErrorMessage(N_("Missing argument"));
923                 else {
924                         string s = arg;
925                         string const s1 = token(s, ' ', 1);
926                         int const na = s1.empty() ? 0 : lyx::atoi(s1);
927                         openNewInset(bv, new InsetFormulaMacro(token(s, ' ', 0), na));
928                 }
929         }
930 }
931
932
933 void mathDispatchMathDelim(BufferView * bv, string const & arg)
934 {
935         if (bv->available()) {
936                 if (openNewInset(bv, new InsetFormula))
937                         bv->theLockingInset()->localDispatch(bv, LFUN_MATH_DELIM, arg);
938         }
939 }
940
941
942 void mathDispatchInsertMatrix(BufferView * bv, string const & arg)
943 {
944         if (bv->available()) {
945                 if (openNewInset(bv, new InsetFormula))
946                         bv->theLockingInset()->localDispatch(bv, LFUN_INSERT_MATRIX, arg);
947         }
948 }
949
950
951 void mathDispatchInsertMath(BufferView * bv, string const & arg)
952 {
953         if (bv->available()) {
954                 if (arg.size() && arg[0] == '\\') {
955                         InsetFormula * f = new InsetFormula(arg);
956                         if (!bv->insertInset(f))
957                                 delete f;
958                         else if (!mathcursor) // hotfix
959                                 bv->getLyXText()->cursorRight(bv);
960                 } else {
961                         mathDispatchMathMode(bv, arg);
962                 }
963         }
964 }
965
966
967 void mathDispatchGreek(BufferView * bv, string const & arg)
968 {
969         if (bv->available()) {
970                 InsetFormula * f = new InsetFormula;
971                 if (openNewInset(bv, f)) {
972                         bv->theLockingInset()->localDispatch(bv, LFUN_GREEK, arg);
973                         bv->unlockInset(f);
974                 }
975         }
976 }
977
978
979 void mathDispatch(BufferView *, kb_action, string const &)
980 {}