]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathHull.cpp
fix bug 2558: hspace support in math
[lyx.git] / src / mathed / InsetMathHull.cpp
1 /**
2  * \file InsetMathHull.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathArray.h"
14 #include "InsetMathChar.h"
15 #include "InsetMathColor.h"
16 #include "MathData.h"
17 #include "InsetMathDelim.h"
18 #include "MathExtern.h"
19 #include "MathFactory.h"
20 #include "InsetMathHull.h"
21 #include "MathStream.h"
22 #include "MathParser.h"
23 #include "InsetMathSpace.h"
24 #include "MathStream.h"
25 #include "MathSupport.h"
26 #include "InsetMathRef.h"
27
28 #include "Buffer.h"
29 #include "buffer_funcs.h"
30 #include "BufferParams.h"
31 #include "BufferView.h"
32 #include "CutAndPaste.h"
33 #include "FuncStatus.h"
34 #include "LaTeXFeatures.h"
35 #include "Cursor.h"
36 #include "DispatchResult.h"
37 #include "FuncRequest.h"
38 #include "Language.h"
39 #include "LyXRC.h"
40 #include "OutputParams.h"
41 #include "ParIterator.h"
42 #include "sgml.h"
43 #include "Text.h"
44 #include "TextPainter.h"
45 #include "TocBackend.h"
46
47 #include "insets/RenderPreview.h"
48 #include "insets/InsetLabel.h"
49
50 #include "graphics/PreviewImage.h"
51 #include "graphics/PreviewLoader.h"
52
53 #include "frontends/Painter.h"
54
55 #include "support/lassert.h"
56 #include "support/debug.h"
57 #include "support/gettext.h"
58 #include "support/lstrings.h"
59
60 #include <sstream>
61
62 using namespace std;
63 using namespace lyx::support;
64
65 namespace lyx {
66
67 using cap::grabAndEraseSelection;
68
69 namespace {
70
71         int getCols(HullType type)
72         {
73                 switch (type) {
74                         case hullEqnArray:
75                                 return 3;
76                         case hullAlign:
77                         case hullFlAlign:
78                         case hullAlignAt:
79                         case hullXAlignAt:
80                         case hullXXAlignAt:
81                                 return 2;
82                         default:
83                                 return 1;
84                 }
85         }
86
87
88         // returns position of first relation operator in the array
89         // used for "intelligent splitting"
90         size_t firstRelOp(MathData const & ar)
91         {
92                 for (MathData::const_iterator it = ar.begin(); it != ar.end(); ++it)
93                         if ((*it)->isRelOp())
94                                 return it - ar.begin();
95                 return ar.size();
96         }
97
98
99         char const * star(bool numbered)
100         {
101                 return numbered ? "" : "*";
102         }
103
104
105 } // end anon namespace
106
107
108 HullType hullType(docstring const & s)
109 {
110         if (s == "none")      return hullNone;
111         if (s == "simple")    return hullSimple;
112         if (s == "equation")  return hullEquation;
113         if (s == "eqnarray")  return hullEqnArray;
114         if (s == "align")     return hullAlign;
115         if (s == "alignat")   return hullAlignAt;
116         if (s == "xalignat")  return hullXAlignAt;
117         if (s == "xxalignat") return hullXXAlignAt;
118         if (s == "multline")  return hullMultline;
119         if (s == "gather")    return hullGather;
120         if (s == "flalign")   return hullFlAlign;
121         if (s == "regexp")    return hullRegexp;
122         lyxerr << "unknown hull type '" << to_utf8(s) << "'" << endl;
123         return HullType(-1);
124 }
125
126
127 docstring hullName(HullType type)
128 {
129         switch (type) {
130                 case hullNone:       return from_ascii("none");
131                 case hullSimple:     return from_ascii("simple");
132                 case hullEquation:   return from_ascii("equation");
133                 case hullEqnArray:   return from_ascii("eqnarray");
134                 case hullAlign:      return from_ascii("align");
135                 case hullAlignAt:    return from_ascii("alignat");
136                 case hullXAlignAt:   return from_ascii("xalignat");
137                 case hullXXAlignAt:  return from_ascii("xxalignat");
138                 case hullMultline:   return from_ascii("multline");
139                 case hullGather:     return from_ascii("gather");
140                 case hullFlAlign:    return from_ascii("flalign");
141                 case hullRegexp:     return from_ascii("regexp");
142                 default:
143                         lyxerr << "unknown hull type '" << type << "'" << endl;
144                         return from_ascii("none");
145         }
146 }
147
148 static InsetLabel * dummy_pointer = 0;
149
150 InsetMathHull::InsetMathHull()
151         : InsetMathGrid(1, 1), type_(hullNone), nonum_(1, false),
152           label_(1, dummy_pointer), preview_(new RenderPreview(this))
153 {
154         //lyxerr << "sizeof InsetMath: " << sizeof(InsetMath) << endl;
155         //lyxerr << "sizeof MetricsInfo: " << sizeof(MetricsInfo) << endl;
156         //lyxerr << "sizeof InsetMathChar: " << sizeof(InsetMathChar) << endl;
157         //lyxerr << "sizeof FontInfo: " << sizeof(FontInfo) << endl;
158         initMath();
159         setDefaults();
160 }
161
162
163 InsetMathHull::InsetMathHull(HullType type)
164         : InsetMathGrid(getCols(type), 1), type_(type), nonum_(1, false),
165           label_(1, dummy_pointer), preview_(new RenderPreview(this))
166 {
167         initMath();
168         setDefaults();
169 }
170
171
172 InsetMathHull::InsetMathHull(InsetMathHull const & other) : InsetMathGrid()
173 {
174         operator=(other);
175 }
176
177
178 InsetMathHull::~InsetMathHull()
179 {
180         for (size_t i = 0; i < label_.size(); ++i)
181                 delete label_[i];
182 }
183
184
185 Inset * InsetMathHull::clone() const
186 {
187         return new InsetMathHull(*this);
188 }
189
190
191 InsetMathHull & InsetMathHull::operator=(InsetMathHull const & other)
192 {
193         if (this == &other)
194                 return *this;
195         InsetMathGrid::operator=(other);
196         type_  = other.type_;
197         nonum_ = other.nonum_;
198         for (size_t i = 0; i < label_.size(); ++i)
199                 delete label_[i];
200         label_ = other.label_;
201         for (size_t i = 0; i != label_.size(); ++i) {
202                 if (label_[i])
203                         label_[i] = new InsetLabel(*label_[i]);
204         }
205         preview_.reset(new RenderPreview(*other.preview_, this));
206
207         return *this;
208 }
209
210
211 void InsetMathHull::setBuffer(Buffer & buffer)
212 {
213         buffer_ = &buffer;
214         for (idx_type i = 0, n = nargs(); i != n; ++i) {
215                 MathData & data = cell(i);
216                 for (size_t j = 0; j != data.size(); ++j)
217                         data[j].nucleus()->setBuffer(buffer);
218         }
219
220         for (size_t i = 0; i != label_.size(); ++i) {
221                 if (label_[i])
222                         label_[i]->setBuffer(buffer);
223         }
224 }
225
226
227 void InsetMathHull::updateLabels(ParIterator const & it)
228 {
229         if (!buffer_) {
230                 //FIXME: buffer_ should be set at creation for this inset! Problem is
231                 // This inset is created at too many places (see Parser::parse1() in
232                 // MathParser.cpp).
233                 return;
234         }
235         for (size_t i = 0; i != label_.size(); ++i) {
236                 if (label_[i])
237                         label_[i]->updateLabels(it);
238         }
239 }
240
241
242 void InsetMathHull::addToToc(DocIterator const & pit)
243 {
244         if (!buffer_) {
245                 //FIXME: buffer_ should be set at creation for this inset! Problem is
246                 // This inset is created at too many places (see Parser::parse1() in
247                 // MathParser.cpp).
248                 return;
249         }
250
251         Toc & toc = buffer().tocBackend().toc("equation");
252
253         for (row_type row = 0; row != nrows(); ++row) {
254                 if (nonum_[row])
255                         continue;
256                 if (label_[row])
257                         label_[row]->addToToc(pit);
258                 toc.push_back(TocItem(pit, 0, nicelabel(row)));
259         }
260 }
261
262
263 Inset * InsetMathHull::editXY(Cursor & cur, int x, int y)
264 {
265         if (use_preview_) {
266                 edit(cur, true);
267                 return this;
268         }
269         return InsetMathNest::editXY(cur, x, y);
270 }
271
272
273 InsetMath::mode_type InsetMathHull::currentMode() const
274 {
275         if (type_ == hullNone)
276                 return UNDECIDED_MODE;
277         // definitely math mode ...
278         return MATH_MODE;
279 }
280
281
282 bool InsetMathHull::idxFirst(Cursor & cur) const
283 {
284         cur.idx() = 0;
285         cur.pos() = 0;
286         return true;
287 }
288
289
290 bool InsetMathHull::idxLast(Cursor & cur) const
291 {
292         cur.idx() = nargs() - 1;
293         cur.pos() = cur.lastpos();
294         return true;
295 }
296
297
298 char InsetMathHull::defaultColAlign(col_type col)
299 {
300         if (type_ == hullEqnArray)
301                 return "rcl"[col];
302         if (type_ == hullGather)
303                 return 'c';
304         if (type_ >= hullAlign)
305                 return "rl"[col & 1];
306         return 'c';
307 }
308
309
310 int InsetMathHull::defaultColSpace(col_type col)
311 {
312         if (type_ == hullAlign || type_ == hullAlignAt)
313                 return 0;
314         if (type_ == hullXAlignAt)
315                 return (col & 1) ? 20 : 0;
316         if (type_ == hullXXAlignAt || type_ == hullFlAlign)
317                 return (col & 1) ? 40 : 0;
318         return 0;
319 }
320
321
322 docstring InsetMathHull::standardFont() const
323 {
324         return from_ascii(type_ == hullNone ? "lyxnochange" : "mathnormal");
325 }
326
327
328 bool InsetMathHull::previewState(BufferView * bv) const
329 {
330         if (!editing(bv) && RenderPreview::status() == LyXRC::PREVIEW_ON) {
331                 graphics::PreviewImage const * pimage =
332                         preview_->getPreviewImage(bv->buffer());
333                 return pimage && pimage->image();
334         }
335         return false;
336 }
337
338
339 void InsetMathHull::metrics(MetricsInfo & mi, Dimension & dim) const
340 {
341         if (previewState(mi.base.bv)) {
342                 preview_->metrics(mi, dim);
343                 // insert a one pixel gap in front of the formula
344                 dim.wid += 1;
345                 if (display())
346                         dim.des += displayMargin();
347                 // Cache the inset dimension.
348                 setDimCache(mi, dim);
349                 return;
350         }
351
352         FontSetChanger dummy1(mi.base, standardFont());
353         StyleChanger dummy2(mi.base, display() ? LM_ST_DISPLAY : LM_ST_TEXT);
354
355         // let the cells adjust themselves
356         InsetMathGrid::metrics(mi, dim);
357
358         if (display()) {
359                 dim.asc += displayMargin();
360                 dim.des += displayMargin();
361         }
362
363         if (numberedType()) {
364                 FontSetChanger dummy(mi.base, from_ascii("mathbf"));
365                 int l = 0;
366                 for (row_type row = 0; row < nrows(); ++row)
367                         l = max(l, mathed_string_width(mi.base.font, nicelabel(row)));
368
369                 if (l)
370                         dim.wid += 30 + l;
371         }
372
373         // make it at least as high as the current font
374         int asc = 0;
375         int des = 0;
376         math_font_max_dim(mi.base.font, asc, des);
377         dim.asc = max(dim.asc, asc);
378         dim.des = max(dim.des, des);
379         // Cache the inset dimension.
380         // FIXME: This will overwrite InsetMathGrid dimension, is that OK?
381         setDimCache(mi, dim);
382 }
383
384
385 void InsetMathHull::drawBackground(PainterInfo & pi, int x, int y) const
386 {
387         Dimension const dim = dimension(*pi.base.bv);
388         pi.pain.fillRectangle(x + 1, y - dim.asc + 1, dim.wid - 2,
389                 dim.asc + dim.des - 1, pi.backgroundColor(this));
390 }
391
392
393 void InsetMathHull::draw(PainterInfo & pi, int x, int y) const
394 {
395         use_preview_ = previewState(pi.base.bv);
396
397         if (use_preview_) {
398                 // one pixel gap in front
399                 preview_->draw(pi, x + 1, y);
400                 setPosCache(pi, x, y);
401                 return;
402         }
403
404         FontSetChanger dummy1(pi.base, standardFont());
405         StyleChanger dummy2(pi.base, display() ? LM_ST_DISPLAY : LM_ST_TEXT);
406         InsetMathGrid::draw(pi, x + 1, y);
407
408         if (numberedType()) {
409                 int const xx = x + colinfo_.back().offset_ + colinfo_.back().width_ + 20;
410                 for (row_type row = 0; row < nrows(); ++row) {
411                         int const yy = y + rowinfo_[row].offset_;
412                         FontSetChanger dummy(pi.base, from_ascii("mathrm"));
413                         docstring const nl = nicelabel(row);
414                         pi.draw(xx, yy, nl);
415                 }
416         }
417         setPosCache(pi, x, y);
418 }
419
420
421 void InsetMathHull::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
422 {
423         if (display()) {
424                 InsetMathGrid::metricsT(mi, dim);
425         } else {
426                 odocstringstream os;
427                 WriteStream wi(os, false, true, false);
428                 write(wi);
429                 dim.wid = os.str().size();
430                 dim.asc = 1;
431                 dim.des = 0;
432         }
433 }
434
435
436 void InsetMathHull::drawT(TextPainter & pain, int x, int y) const
437 {
438         if (display()) {
439                 InsetMathGrid::drawT(pain, x, y);
440         } else {
441                 odocstringstream os;
442                 WriteStream wi(os, false, true, false);
443                 write(wi);
444                 pain.draw(x, y, os.str().c_str());
445         }
446 }
447
448
449 static docstring latexString(InsetMathHull const & inset)
450 {
451         odocstringstream ls;
452         // This has to be static, because a preview snippet containing math
453         // in text mode (such as $\text{$\phi$}$) gets processed twice. The
454         // first time as a whole, and the second time only the inner math.
455         // In this last case inset.buffer() would be invalid.
456         // FIXME: preview snippets should only be processed once, such that
457         // both static qualifier and isBufferValid() check can be dropped.
458         static Encoding const * encoding = 0;
459         if (inset.isBufferValid())
460                 encoding = &(inset.buffer().params().encoding());
461         WriteStream wi(ls, false, true, false, encoding);
462         inset.write(wi);
463         return ls.str();
464 }
465
466
467 void InsetMathHull::initUnicodeMath() const
468 {
469         // Trigger classification of the unicode symbols in this inset
470         docstring const dummy = latexString(*this);
471 }
472
473
474 void InsetMathHull::addPreview(graphics::PreviewLoader & ploader) const
475 {
476         if (RenderPreview::status() == LyXRC::PREVIEW_ON) {
477                 docstring const snippet = latexString(*this);
478                 preview_->addPreview(snippet, ploader);
479         }
480 }
481
482
483 bool InsetMathHull::notifyCursorLeaves(Cursor const & /*old*/, Cursor & cur)
484 {
485         if (RenderPreview::status() == LyXRC::PREVIEW_ON) {
486                 Buffer const * buffer = cur.buffer();
487                 docstring const snippet = latexString(*this);
488                 preview_->addPreview(snippet, *buffer);
489                 preview_->startLoading(*buffer);
490                 cur.updateFlags(Update::Force);
491         }
492         return false;
493 }
494
495
496 docstring InsetMathHull::label(row_type row) const
497 {
498         LASSERT(row < nrows(), /**/);
499         if (InsetLabel * il = label_[row])
500                 return il->screenLabel();
501         return docstring();
502 }
503
504
505 void InsetMathHull::label(row_type row, docstring const & label)
506 {
507         //lyxerr << "setting label '" << label << "' for row " << row << endl;
508         if (label_[row]) {
509                 if (label.empty()) {
510                         delete label_[row];
511                         label_[row] = dummy_pointer;
512                         // We need an update of the Buffer reference cache.
513                         // This is achieved by updateLabels().
514                         buffer().updateLabels();
515                 } else {
516                         label_[row]->updateCommand(label);
517                 }
518                 return;
519         }
520         InsetCommandParams p(LABEL_CODE);
521         p["name"] = label;
522         label_[row] = new InsetLabel(p);
523         if (buffer_)
524                 label_[row]->setBuffer(buffer());
525 }
526
527
528 void InsetMathHull::numbered(row_type row, bool num)
529 {
530         nonum_[row] = !num;
531         if (nonum_[row] && label_[row]) {
532                 delete label_[row];
533                 label_[row] = 0;
534                 // We need an update of the Buffer reference cache.
535                 // This is achieved by updateLabels().
536                 buffer().updateLabels();
537         }
538 }
539
540
541 bool InsetMathHull::numbered(row_type row) const
542 {
543         return !nonum_[row];
544 }
545
546
547 bool InsetMathHull::ams() const
548 {
549         return type_ == hullAlign
550                 || type_ == hullFlAlign
551                 || type_ == hullMultline
552                 || type_ == hullGather
553                 || type_ == hullAlignAt
554                 || type_ == hullXAlignAt
555                 || type_ == hullXXAlignAt;
556 }
557
558
559 Inset::DisplayType InsetMathHull::display() const
560 {
561         if (type_ == hullSimple || type_ == hullNone || type_ == hullRegexp)
562                 return Inline;
563         return AlignCenter;
564 }
565
566 bool InsetMathHull::numberedType() const
567 {
568         if (type_ == hullNone)
569                 return false;
570         if (type_ == hullSimple)
571                 return false;
572         if (type_ == hullXXAlignAt)
573                 return false;
574         if (type_ == hullRegexp)
575                 return false;
576         for (row_type row = 0; row < nrows(); ++row)
577                 if (!nonum_[row])
578                         return true;
579         return false;
580 }
581
582
583 void InsetMathHull::validate(LaTeXFeatures & features) const
584 {
585         if (ams())
586                 features.require("amsmath");
587
588         // Validation is necessary only if not using AMS math.
589         // To be safe, we will always run mathedvalidate.
590         //if (features.amsstyle)
591         //  return;
592
593         //features.binom      = true;
594
595         InsetMathGrid::validate(features);
596 }
597
598
599 void InsetMathHull::header_write(WriteStream & os) const
600 {
601         bool n = numberedType();
602
603         switch(type_) {
604         case hullNone:
605                 break;
606
607         case hullSimple:
608                 os << '$';
609                 if (cell(0).empty())
610                         os << ' ';
611                 break;
612
613         case hullEquation:
614                 if (n)
615                         os << "\\begin{equation" << star(n) << "}\n";
616                 else
617                         os << "\\[\n";
618                 break;
619
620         case hullEqnArray:
621         case hullAlign:
622         case hullFlAlign:
623         case hullGather:
624         case hullMultline:
625                 os << "\\begin{" << hullName(type_) << star(n) << "}\n";
626                 break;
627
628         case hullAlignAt:
629         case hullXAlignAt:
630                 os << "\\begin{" << hullName(type_) << star(n) << '}'
631                   << '{' << static_cast<unsigned int>((ncols() + 1)/2) << "}\n";
632                 break;
633
634         case hullXXAlignAt:
635                 os << "\\begin{" << hullName(type_) << '}'
636                   << '{' << static_cast<unsigned int>((ncols() + 1)/2) << "}\n";
637                 break;
638
639         case hullRegexp:
640                 os << "\\regexp{";
641                 break;
642
643         default:
644                 os << "\\begin{unknown" << star(n) << '}';
645                 break;
646         }
647 }
648
649
650 void InsetMathHull::footer_write(WriteStream & os) const
651 {
652         bool n = numberedType();
653
654         switch(type_) {
655         case hullNone:
656                 os << "\n";
657                 break;
658
659         case hullSimple:
660                 os << '$';
661                 break;
662
663         case hullEquation:
664                 if (n)
665                         os << "\\end{equation" << star(n) << "}\n";
666                 else
667                         os << "\\]\n";
668                 break;
669
670         case hullEqnArray:
671         case hullAlign:
672         case hullFlAlign:
673         case hullAlignAt:
674         case hullXAlignAt:
675         case hullGather:
676         case hullMultline:
677                 os << "\\end{" << hullName(type_) << star(n) << "}\n";
678                 break;
679
680         case hullXXAlignAt:
681                 os << "\\end{" << hullName(type_) << "}\n";
682                 break;
683
684         case hullRegexp:
685                 os << "}";
686                 break;
687
688         default:
689                 os << "\\end{unknown" << star(n) << '}';
690                 break;
691         }
692 }
693
694
695 bool InsetMathHull::rowChangeOK() const
696 {
697         return
698                 type_ == hullEqnArray || type_ == hullAlign ||
699                 type_ == hullFlAlign || type_ == hullAlignAt ||
700                 type_ == hullXAlignAt || type_ == hullXXAlignAt ||
701                 type_ == hullGather || type_ == hullMultline;
702 }
703
704
705 bool InsetMathHull::colChangeOK() const
706 {
707         return
708                 type_ == hullAlign || type_ == hullFlAlign ||type_ == hullAlignAt ||
709                 type_ == hullXAlignAt || type_ == hullXXAlignAt;
710 }
711
712
713 void InsetMathHull::addRow(row_type row)
714 {
715         if (!rowChangeOK())
716                 return;
717
718         bool numbered = numberedType();
719         docstring lab;
720         if (type_ == hullMultline) {
721                 if (row + 1 == nrows())  {
722                         nonum_[row] = true;
723                         lab = label(row);
724                 } else
725                         numbered = false;
726         }
727
728         nonum_.insert(nonum_.begin() + row + 1, !numbered);
729         label_.insert(label_.begin() + row + 1, dummy_pointer);
730         if (!lab.empty())
731                 label(row + 1, lab);
732         InsetMathGrid::addRow(row);
733 }
734
735
736 void InsetMathHull::swapRow(row_type row)
737 {
738         if (nrows() <= 1)
739                 return;
740         if (row + 1 == nrows())
741                 --row;
742         // gcc implements the standard std::vector<bool> which is *not* a container:
743         //   http://www.gotw.ca/publications/N1185.pdf
744         // As a results, it doesn't like this:
745         //      swap(nonum_[row], nonum_[row + 1]);
746         // so we do it manually:
747         bool const b = nonum_[row];
748         nonum_[row] = nonum_[row + 1];
749         nonum_[row + 1] = b;
750         swap(label_[row], label_[row + 1]);
751         InsetMathGrid::swapRow(row);
752 }
753
754
755 void InsetMathHull::delRow(row_type row)
756 {
757         if (nrows() <= 1 || !rowChangeOK())
758                 return;
759         if (row + 1 == nrows() && type_ == hullMultline) {
760                 bool const b = nonum_[row - 1];
761                 nonum_[row - 1] = nonum_[row];
762                 nonum_[row] = b;
763                 swap(label_[row - 1], label_[row]);
764                 InsetMathGrid::delRow(row);
765                 return;
766         }
767         InsetMathGrid::delRow(row);
768         // The last dummy row has no number info nor a label.
769         // Test nrows() + 1 because we have already erased the row.
770         if (row == nrows() + 1)
771                 row--;
772         nonum_.erase(nonum_.begin() + row);
773         delete label_[row];
774         label_.erase(label_.begin() + row);
775 }
776
777
778 void InsetMathHull::addCol(col_type col)
779 {
780         if (!colChangeOK())
781                 return;
782         InsetMathGrid::addCol(col);
783 }
784
785
786 void InsetMathHull::delCol(col_type col)
787 {
788         if (ncols() <= 1 || !colChangeOK())
789                 return;
790         InsetMathGrid::delCol(col);
791 }
792
793
794 docstring InsetMathHull::nicelabel(row_type row) const
795 {
796         if (nonum_[row])
797                 return docstring();
798         if (!label_[row])
799                 return from_ascii("(#)");
800         return '(' + label_[row]->screenLabel() + from_ascii(", #)");
801 }
802
803
804 void InsetMathHull::glueall()
805 {
806         MathData ar;
807         for (idx_type i = 0; i < nargs(); ++i)
808                 ar.append(cell(i));
809         *this = InsetMathHull(hullSimple);
810         cell(0) = ar;
811         setDefaults();
812 }
813
814
815 void InsetMathHull::splitTo2Cols()
816 {
817         LASSERT(ncols() == 1, /**/);
818         InsetMathGrid::addCol(1);
819         for (row_type row = 0; row < nrows(); ++row) {
820                 idx_type const i = 2 * row;
821                 pos_type pos = firstRelOp(cell(i));
822                 cell(i + 1) = MathData(cell(i).begin() + pos, cell(i).end());
823                 cell(i).erase(pos, cell(i).size());
824         }
825 }
826
827
828 void InsetMathHull::splitTo3Cols()
829 {
830         LASSERT(ncols() < 3, /**/);
831         if (ncols() < 2)
832                 splitTo2Cols();
833         InsetMathGrid::addCol(2);
834         for (row_type row = 0; row < nrows(); ++row) {
835                 idx_type const i = 3 * row + 1;
836                 if (cell(i).size()) {
837                         cell(i + 1) = MathData(cell(i).begin() + 1, cell(i).end());
838                         cell(i).erase(1, cell(i).size());
839                 }
840         }
841 }
842
843
844 void InsetMathHull::changeCols(col_type cols)
845 {
846         if (ncols() == cols)
847                 return;
848         else if (ncols() < cols) {
849                 // split columns
850                 if (cols < 3)
851                         splitTo2Cols();
852                 else {
853                         splitTo3Cols();
854                         while (ncols() < cols)
855                                 InsetMathGrid::addCol(ncols());
856                 }
857                 return;
858         }
859
860         // combine columns
861         for (row_type row = 0; row < nrows(); ++row) {
862                 idx_type const i = row * ncols();
863                 for (col_type col = cols; col < ncols(); ++col) {
864                         cell(i + cols - 1).append(cell(i + col));
865                 }
866         }
867         // delete columns
868         while (ncols() > cols) {
869                 InsetMathGrid::delCol(ncols() - 1);
870         }
871 }
872
873
874 HullType InsetMathHull::getType() const
875 {
876         return type_;
877 }
878
879
880 void InsetMathHull::setType(HullType type)
881 {
882         type_ = type;
883         setDefaults();
884 }
885
886
887 void InsetMathHull::mutate(HullType newtype)
888 {
889         //lyxerr << "mutating from '" << type_ << "' to '" << newtype << "'" << endl;
890
891         // we try to move along the chain
892         // none <-> simple <-> equation <-> eqnarray -> *align* -> multline, gather -+
893         //                                     ^                                     |
894         //                                     +-------------------------------------+
895         // we use eqnarray as intermediate type for mutations that are not
896         // directly supported because it handles labels and numbering for
897         // "down mutation".
898
899         if (newtype == type_) {
900                 // done
901         }
902
903         else if (newtype < hullNone) {
904                 // unknown type
905                 dump();
906         }
907
908         else if (type_ == hullNone) {
909                 setType(hullSimple);
910                 numbered(0, false);
911                 mutate(newtype);
912         }
913
914         else if (type_ == hullSimple) {
915                 if (newtype == hullNone) {
916                         setType(hullNone);
917                         numbered(0, false);
918                 } else {
919                         setType(hullEquation);
920                         numbered(0, false);
921                         mutate(newtype);
922                 }
923         }
924
925         else if (type_ == hullEquation) {
926                 if (newtype < type_) {
927                         setType(hullSimple);
928                         numbered(0, false);
929                         mutate(newtype);
930                 } else if (newtype == hullEqnArray) {
931                         // split it "nicely" on the first relop
932                         splitTo3Cols();
933                         setType(hullEqnArray);
934                 } else if (newtype == hullMultline || newtype == hullGather) {
935                         setType(newtype);
936                 } else {
937                         // split it "nicely"
938                         splitTo2Cols();
939                         setType(hullAlign);
940                         mutate(newtype);
941                 }
942         }
943
944         else if (type_ == hullEqnArray) {
945                 if (newtype < type_) {
946                         // set correct (no)numbering
947                         nonum_[0] = true;
948                         for (row_type row = 0; row < nrows(); ++row) {
949                                 if (!nonum_[row]) {
950                                         nonum_[0] = false;
951                                         break;
952                                 }
953                         }
954
955                         // set first non-empty label
956                         for (row_type row = 0; row < nrows(); ++row) {
957                                 if (label_[row]) {
958                                         label_[0] = label_[row];
959                                         break;
960                                 }
961                         }
962
963                         glueall();
964                         mutate(newtype);
965                 } else { // align & Co.
966                         changeCols(2);
967                         setType(hullAlign);
968                         mutate(newtype);
969                 }
970         }
971
972         else if (type_ ==  hullAlign || type_ == hullAlignAt ||
973                  type_ == hullXAlignAt || type_ == hullFlAlign) {
974                 if (newtype < hullAlign) {
975                         changeCols(3);
976                         setType(hullEqnArray);
977                         mutate(newtype);
978                 } else if (newtype == hullGather || newtype == hullMultline) {
979                         changeCols(1);
980                         setType(newtype);
981                 } else if (newtype ==   hullXXAlignAt) {
982                         for (row_type row = 0; row < nrows(); ++row)
983                                 numbered(row, false);
984                         setType(newtype);
985                 } else {
986                         setType(newtype);
987                 }
988         }
989
990         else if (type_ == hullXXAlignAt) {
991                 for (row_type row = 0; row < nrows(); ++row)
992                         numbered(row, false);
993                 if (newtype < hullAlign) {
994                         changeCols(3);
995                         setType(hullEqnArray);
996                         mutate(newtype);
997                 } else if (newtype == hullGather || newtype == hullMultline) {
998                         changeCols(1);
999                         setType(newtype);
1000                 } else {
1001                         setType(newtype);
1002                 }
1003         }
1004
1005         else if (type_ == hullMultline || type_ == hullGather) {
1006                 if (newtype == hullGather || newtype == hullMultline)
1007                         setType(newtype);
1008                 else if (newtype == hullAlign || newtype == hullFlAlign  ||
1009                          newtype == hullAlignAt || newtype == hullXAlignAt) {
1010                         splitTo2Cols();
1011                         setType(newtype);
1012                 } else if (newtype ==   hullXXAlignAt) {
1013                         splitTo2Cols();
1014                         for (row_type row = 0; row < nrows(); ++row)
1015                                 numbered(row, false);
1016                         setType(newtype);
1017                 } else {
1018                         splitTo3Cols();
1019                         setType(hullEqnArray);
1020                         mutate(newtype);
1021                 }
1022         }
1023
1024         else {
1025                 lyxerr << "mutation from '" << to_utf8(hullName(type_))
1026                        << "' to '" << to_utf8(hullName(newtype))
1027                        << "' not implemented" << endl;
1028         }
1029 }
1030
1031
1032 docstring InsetMathHull::eolString(row_type row, bool emptyline, bool fragile) const
1033 {
1034         docstring res;
1035         if (numberedType()) {
1036                 if (label_[row] && !nonum_[row])
1037                         res += "\\label{" + label_[row]->getParam("name") + '}';
1038                 if (nonum_[row] && (type_ != hullMultline))
1039                         res += "\\nonumber ";
1040         }
1041         return res + InsetMathGrid::eolString(row, emptyline, fragile);
1042 }
1043
1044
1045 void InsetMathHull::write(WriteStream & os) const
1046 {
1047         ModeSpecifier specifier(os, MATH_MODE);
1048         header_write(os);
1049         InsetMathGrid::write(os);
1050         footer_write(os);
1051 }
1052
1053
1054 void InsetMathHull::normalize(NormalStream & os) const
1055 {
1056         os << "[formula " << hullName(type_) << ' ';
1057         InsetMathGrid::normalize(os);
1058         os << "] ";
1059 }
1060
1061
1062 void InsetMathHull::mathmlize(MathStream & os) const
1063 {
1064         InsetMathGrid::mathmlize(os);
1065 }
1066
1067
1068 void InsetMathHull::infoize(odocstream & os) const
1069 {
1070         os << "Type: " << hullName(type_);
1071 }
1072
1073
1074 void InsetMathHull::check() const
1075 {
1076         LASSERT(nonum_.size() == nrows(), /**/);
1077         LASSERT(label_.size() == nrows(), /**/);
1078 }
1079
1080
1081 void InsetMathHull::doExtern(Cursor & cur, FuncRequest & func)
1082 {
1083         docstring dlang;
1084         docstring extra;
1085         idocstringstream iss(func.argument());
1086         iss >> dlang >> extra;
1087         if (extra.empty())
1088                 extra = from_ascii("noextra");
1089         string const lang = to_ascii(dlang);
1090
1091         // FIXME: temporarily disabled
1092         //if (cur.selection()) {
1093         //      MathData ar;
1094         //      selGet(cur.ar);
1095         //      lyxerr << "use selection: " << ar << endl;
1096         //      insert(pipeThroughExtern(lang, extra, ar));
1097         //      return;
1098         //}
1099
1100         MathData eq;
1101         eq.push_back(MathAtom(new InsetMathChar('=')));
1102
1103         // go to first item in line
1104         cur.idx() -= cur.idx() % ncols();
1105         cur.pos() = 0;
1106
1107         if (getType() == hullSimple) {
1108                 size_type pos = cur.cell().find_last(eq);
1109                 MathData ar;
1110                 if (cur.inMathed() && cur.selection()) {
1111                         asArray(grabAndEraseSelection(cur), ar);
1112                 } else if (pos == cur.cell().size()) {
1113                         ar = cur.cell();
1114                         lyxerr << "use whole cell: " << ar << endl;
1115                 } else {
1116                         ar = MathData(cur.cell().begin() + pos + 1, cur.cell().end());
1117                         lyxerr << "use partial cell form pos: " << pos << endl;
1118                 }
1119                 cur.cell().append(eq);
1120                 cur.cell().append(pipeThroughExtern(lang, extra, ar));
1121                 cur.pos() = cur.lastpos();
1122                 return;
1123         }
1124
1125         if (getType() == hullEquation) {
1126                 lyxerr << "use equation inset" << endl;
1127                 mutate(hullEqnArray);
1128                 MathData & ar = cur.cell();
1129                 lyxerr << "use cell: " << ar << endl;
1130                 ++cur.idx();
1131                 cur.cell() = eq;
1132                 ++cur.idx();
1133                 cur.cell() = pipeThroughExtern(lang, extra, ar);
1134                 // move to end of line
1135                 cur.pos() = cur.lastpos();
1136                 return;
1137         }
1138
1139         {
1140                 lyxerr << "use eqnarray" << endl;
1141                 cur.idx() += 2 - cur.idx() % ncols();
1142                 cur.pos() = 0;
1143                 MathData ar = cur.cell();
1144                 lyxerr << "use cell: " << ar << endl;
1145                 // FIXME: temporarily disabled
1146                 addRow(cur.row());
1147                 ++cur.idx();
1148                 ++cur.idx();
1149                 cur.cell() = eq;
1150                 ++cur.idx();
1151                 cur.cell() = pipeThroughExtern(lang, extra, ar);
1152                 cur.pos() = cur.lastpos();
1153         }
1154 }
1155
1156
1157 void InsetMathHull::doDispatch(Cursor & cur, FuncRequest & cmd)
1158 {
1159         //lyxerr << "action: " << cmd.action << endl;
1160         switch (cmd.action) {
1161
1162         case LFUN_FINISHED_BACKWARD:
1163         case LFUN_FINISHED_FORWARD:
1164         case LFUN_FINISHED_RIGHT:
1165         case LFUN_FINISHED_LEFT:
1166                 //lyxerr << "action: " << cmd.action << endl;
1167                 InsetMathGrid::doDispatch(cur, cmd);
1168                 cur.undispatched();
1169                 break;
1170
1171         case LFUN_BREAK_PARAGRAPH:
1172                 // just swallow this
1173                 break;
1174
1175         case LFUN_NEWLINE_INSERT:
1176                 // some magic for the common case
1177                 if (type_ == hullSimple || type_ == hullEquation) {
1178                         cur.recordUndoInset();
1179                         bool const align =
1180                                 cur.bv().buffer().params().use_amsmath == BufferParams::package_on;
1181                         mutate(align ? hullAlign : hullEqnArray);
1182                         cur.idx() = nrows() * ncols() - 1;
1183                         cur.pos() = cur.lastpos();
1184                 }
1185                 InsetMathGrid::doDispatch(cur, cmd);
1186                 break;
1187
1188         case LFUN_MATH_NUMBER_TOGGLE: {
1189                 //lyxerr << "toggling all numbers" << endl;
1190                 cur.recordUndoInset();
1191                 bool old = numberedType();
1192                 if (type_ == hullMultline)
1193                         numbered(nrows() - 1, !old);
1194                 else
1195                         for (row_type row = 0; row < nrows(); ++row)
1196                                 numbered(row, !old);
1197
1198                 cur.message(old ? _("No number") : _("Number"));
1199                 break;
1200         }
1201
1202         case LFUN_MATH_NUMBER_LINE_TOGGLE: {
1203                 cur.recordUndoInset();
1204                 row_type r = (type_ == hullMultline) ? nrows() - 1 : cur.row();
1205                 bool old = numbered(r);
1206                 cur.message(old ? _("No number") : _("Number"));
1207                 numbered(r, !old);
1208                 break;
1209         }
1210
1211         case LFUN_LABEL_INSERT: {
1212                 cur.recordUndoInset();
1213                 row_type r = (type_ == hullMultline) ? nrows() - 1 : cur.row();
1214                 docstring old_label = label(r);
1215                 docstring const default_label = from_ascii(
1216                         (lyxrc.label_init_length >= 0) ? "eq:" : "");
1217                 if (old_label.empty())
1218                         old_label = default_label;
1219
1220                 InsetCommandParams p(LABEL_CODE);
1221                 p["name"] = cmd.argument().empty() ? old_label : cmd.argument();
1222                 string const data = InsetCommand::params2string("label", p);
1223
1224                 if (cmd.argument().empty())
1225                         cur.bv().showDialog("label", data);
1226                 else {
1227                         FuncRequest fr(LFUN_INSET_INSERT, data);
1228                         dispatch(cur, fr);
1229                 }
1230                 break;
1231         }
1232
1233         case LFUN_WORD_DELETE_FORWARD:
1234         case LFUN_CHAR_DELETE_FORWARD:
1235                 if (col(cur.idx()) + 1 == ncols()
1236                     && cur.pos() == cur.lastpos()) {
1237                         if (!label(row(cur.idx())).empty()) {
1238                                 cur.recordUndoInset();
1239                                 label(row(cur.idx()), docstring());
1240                         } else if (numbered(row(cur.idx()))) {
1241                                 cur.recordUndoInset();
1242                                 numbered(row(cur.idx()), false);
1243                         } else {
1244                                 InsetMathGrid::doDispatch(cur, cmd);
1245                                 return;
1246                         }
1247                 } else {
1248                         InsetMathGrid::doDispatch(cur, cmd);
1249                         return;
1250                 }
1251                 break;
1252
1253         case LFUN_INSET_INSERT: {
1254                 //lyxerr << "arg: " << to_utf8(cmd.argument()) << endl;
1255                 // FIXME: this should be cleaned up to use InsetLabel methods directly.
1256                 string const name = cmd.getArg(0);
1257                 if (name == "label") {
1258                         InsetCommandParams p(LABEL_CODE);
1259                         InsetCommand::string2params(name, to_utf8(cmd.argument()), p);
1260                         docstring str = p["name"];
1261                         cur.recordUndoInset();
1262                         row_type const r = (type_ == hullMultline) ? nrows() - 1 : cur.row();
1263                         str = trim(str);
1264                         if (!str.empty())
1265                                 numbered(r, true);
1266                         docstring old = label(r);
1267                         if (str != old) {
1268                                 if (label_[r])
1269                                         // The label will take care of the reference update.
1270                                         label(r, str);
1271                                 else {
1272                                         label(r, str);
1273                                         // Newly created inset so initialize it.
1274                                         label_[r]->initView();
1275                                 }
1276                         }
1277                         break;
1278                 }
1279                 InsetMathGrid::doDispatch(cur, cmd);
1280                 return;
1281         }
1282
1283         case LFUN_MATH_EXTERN:
1284                 cur.recordUndoInset();
1285                 doExtern(cur, cmd);
1286                 break;
1287
1288         case LFUN_MATH_MUTATE: {
1289                 cur.recordUndoInset();
1290                 row_type row = cur.row();
1291                 col_type col = cur.col();
1292                 mutate(hullType(cmd.argument()));
1293                 cur.idx() = row * ncols() + col;
1294                 if (cur.idx() > cur.lastidx()) {
1295                         cur.idx() = cur.lastidx();
1296                         cur.pos() = cur.lastpos();
1297                 }
1298                 if (cur.pos() > cur.lastpos())
1299                         cur.pos() = cur.lastpos();
1300
1301                 // FIXME: find some more clever handling of the selection,
1302                 // i.e. preserve it.
1303                 cur.clearSelection();
1304                 //cur.dispatched(FINISHED);
1305                 break;
1306         }
1307
1308         case LFUN_MATH_DISPLAY: {
1309                 cur.recordUndoInset();
1310                 mutate(type_ == hullSimple ? hullEquation : hullSimple);
1311                 cur.idx() = 0;
1312                 cur.pos() = cur.lastpos();
1313                 //cur.dispatched(FINISHED);
1314                 break;
1315         }
1316
1317         default:
1318                 InsetMathGrid::doDispatch(cur, cmd);
1319                 break;
1320         }
1321 }
1322
1323
1324 bool InsetMathHull::getStatus(Cursor & cur, FuncRequest const & cmd,
1325                 FuncStatus & status) const
1326 {
1327         switch (cmd.action) {
1328         case LFUN_FINISHED_BACKWARD:
1329         case LFUN_FINISHED_FORWARD:
1330         case LFUN_FINISHED_RIGHT:
1331         case LFUN_FINISHED_LEFT:
1332         case LFUN_UP:
1333         case LFUN_DOWN:
1334         case LFUN_NEWLINE_INSERT:
1335         case LFUN_MATH_EXTERN:
1336         case LFUN_MATH_MUTATE:
1337         case LFUN_MATH_DISPLAY:
1338                 // we handle these
1339                 status.setEnabled(true);
1340                 return true;
1341         case LFUN_MATH_NUMBER_TOGGLE:
1342                 // FIXME: what is the right test, this or the one of
1343                 // LABEL_INSERT?
1344                 status.setEnabled(display());
1345                 status.setOnOff(numberedType());
1346                 return true;
1347         case LFUN_MATH_NUMBER_LINE_TOGGLE: {
1348                 // FIXME: what is the right test, this or the one of
1349                 // LABEL_INSERT?
1350                 bool const enable = (type_ == hullMultline)
1351                         ? (nrows() - 1 == cur.row())
1352                         : display() != Inline;
1353                 row_type const r = (type_ == hullMultline) ? nrows() - 1 : cur.row();
1354                 status.setEnabled(enable);
1355                 status.setOnOff(numbered(r));
1356                 return true;
1357         }
1358         case LFUN_LABEL_INSERT:
1359                 status.setEnabled(type_ != hullSimple);
1360                 return true;
1361         case LFUN_INSET_INSERT:
1362                 if (cmd.getArg(0) == "label") {
1363                         status.setEnabled(type_ != hullSimple);
1364                         return true;
1365                 }
1366                 return InsetMathGrid::getStatus(cur, cmd, status);
1367         case LFUN_TABULAR_FEATURE: {
1368                 istringstream is(to_utf8(cmd.argument()));
1369                 string s;
1370                 is >> s;
1371                 if (!rowChangeOK()
1372                     && (s == "append-row"
1373                         || s == "delete-row"
1374                         || s == "copy-row")) {
1375                         status.message(bformat(
1376                                 from_utf8(N_("Can't change number of rows in '%1$s'")),
1377                                 hullName(type_)));
1378                         status.setEnabled(false);
1379                         return true;
1380                 }
1381                 if (!colChangeOK()
1382                     && (s == "append-column"
1383                         || s == "delete-column"
1384                         || s == "copy-column")) {
1385                         status.message(bformat(
1386                                 from_utf8(N_("Can't change number of columns in '%1$s'")),
1387                                 hullName(type_)));
1388                         status.setEnabled(false);
1389                         return true;
1390                 }
1391                 if ((type_ == hullSimple
1392                   || type_ == hullEquation
1393                   || type_ == hullNone) &&
1394                     (s == "add-hline-above" || s == "add-hline-below")) {
1395                         status.message(bformat(
1396                                 from_utf8(N_("Can't add horizontal grid lines in '%1$s'")),
1397                                 hullName(type_)));
1398                         status.setEnabled(false);
1399                         return true;
1400                 }
1401                 if (s == "add-vline-left" || s == "add-vline-right") {
1402                         status.message(bformat(
1403                                 from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
1404                                 hullName(type_)));
1405                         status.setEnabled(false);
1406                         return true;
1407                 }
1408                 if (s == "valign-top" || s == "valign-middle"
1409                  || s == "valign-bottom" || s == "align-left"
1410                  || s == "align-center" || s == "align-right") {
1411                         status.setEnabled(false);
1412                         return true;
1413                 }
1414                 return InsetMathGrid::getStatus(cur, cmd, status);
1415         }
1416         default:
1417                 return InsetMathGrid::getStatus(cur, cmd, status);
1418         }
1419
1420         // This cannot really happen, but inserted to shut-up gcc
1421         return InsetMathGrid::getStatus(cur, cmd, status);
1422 }
1423
1424
1425 /////////////////////////////////////////////////////////////////////
1426
1427
1428
1429 // simply scrap this function if you want
1430 void InsetMathHull::mutateToText()
1431 {
1432 #if 0
1433         // translate to latex
1434         ostringstream os;
1435         latex(os, false, false);
1436         string str = os.str();
1437
1438         // insert this text
1439         Text * lt = view_->cursor().innerText();
1440         string::const_iterator cit = str.begin();
1441         string::const_iterator end = str.end();
1442         for (; cit != end; ++cit)
1443                 view_->getIntl()->getTransManager().TranslateAndInsert(*cit, lt);
1444
1445         // remove ourselves
1446         //dispatch(LFUN_ESCAPE);
1447 #endif
1448 }
1449
1450
1451 void InsetMathHull::handleFont(Cursor & cur, docstring const & arg,
1452         docstring const & font)
1453 {
1454         // this whole function is a hack and won't work for incremental font
1455         // changes...
1456         cur.recordUndo();
1457         if (cur.inset().asInsetMath()->name() == font)
1458                 cur.handleFont(to_utf8(font));
1459         else {
1460                 cur.handleNest(createInsetMath(font));
1461                 cur.insert(arg);
1462         }
1463 }
1464
1465
1466 void InsetMathHull::handleFont2(Cursor & cur, docstring const & arg)
1467 {
1468         cur.recordUndo();
1469         Font font;
1470         bool b;
1471         font.fromString(to_utf8(arg), b);
1472         if (font.fontInfo().color() != Color_inherit) {
1473                 MathAtom at = MathAtom(new InsetMathColor(true, font.fontInfo().color()));
1474                 cur.handleNest(at, 0);
1475         }
1476 }
1477
1478
1479 void InsetMathHull::edit(Cursor & cur, bool front, EntryDirection entry_from)
1480 {
1481         cur.push(*this);
1482         bool enter_front = (entry_from == Inset::ENTRY_DIRECTION_LEFT ||
1483                 (entry_from == Inset::ENTRY_DIRECTION_IGNORE && front));
1484         enter_front ? idxFirst(cur) : idxLast(cur);
1485         // The inset formula dimension is not necessarily the same as the
1486         // one of the instant preview image, so we have to indicate to the
1487         // BufferView that a metrics update is needed.
1488         cur.updateFlags(Update::Force);
1489 }
1490
1491
1492 docstring InsetMathHull::editMessage() const
1493 {
1494         return _("Math editor mode");
1495 }
1496
1497
1498 void InsetMathHull::revealCodes(Cursor & cur) const
1499 {
1500         if (!cur.inMathed())
1501                 return;
1502         odocstringstream os;
1503         cur.info(os);
1504         cur.message(os.str());
1505 /*
1506         // write something to the minibuffer
1507         // translate to latex
1508         cur.markInsert(bv);
1509         ostringstream os;
1510         write(os);
1511         string str = os.str();
1512         cur.markErase(bv);
1513         string::size_type pos = 0;
1514         string res;
1515         for (string::iterator it = str.begin(); it != str.end(); ++it) {
1516                 if (*it == '\n')
1517                         res += ' ';
1518                 else if (*it == '\0') {
1519                         res += "  -X-  ";
1520                         pos = it - str.begin();
1521                 }
1522                 else
1523                         res += *it;
1524         }
1525         if (pos > 30)
1526                 res = res.substr(pos - 30);
1527         if (res.size() > 60)
1528                 res = res.substr(0, 60);
1529         cur.message(res);
1530 */
1531 }
1532
1533
1534 InsetCode InsetMathHull::lyxCode() const
1535 {
1536         return MATH_CODE;
1537 }
1538
1539
1540 /////////////////////////////////////////////////////////////////////
1541
1542
1543 #if 0
1544 bool InsetMathHull::searchForward(BufferView * bv, string const & str,
1545                                      bool, bool)
1546 {
1547         // FIXME: completely broken
1548         static InsetMathHull * lastformula = 0;
1549         static CursorBase current = DocIterator(ibegin(nucleus()));
1550         static MathData ar;
1551         static string laststr;
1552
1553         if (lastformula != this || laststr != str) {
1554                 //lyxerr << "reset lastformula to " << this << endl;
1555                 lastformula = this;
1556                 laststr = str;
1557                 current = ibegin(nucleus());
1558                 ar.clear();
1559                 mathed_parse_cell(ar, str);
1560         } else {
1561                 increment(current);
1562         }
1563         //lyxerr << "searching '" << str << "' in " << this << ar << endl;
1564
1565         for (DocIterator it = current; it != iend(nucleus()); increment(it)) {
1566                 CursorSlice & top = it.back();
1567                 MathData const & a = top.asInsetMath()->cell(top.idx_);
1568                 if (a.matchpart(ar, top.pos_)) {
1569                         bv->cursor().setSelection(it, ar.size());
1570                         current = it;
1571                         top.pos_ += ar.size();
1572                         bv->update();
1573                         return true;
1574                 }
1575         }
1576
1577         //lyxerr << "not found!" << endl;
1578         lastformula = 0;
1579         return false;
1580 }
1581 #endif
1582
1583
1584 void InsetMathHull::write(ostream & os) const
1585 {
1586         odocstringstream oss;
1587         WriteStream wi(oss, false, false, false);
1588         oss << "Formula ";
1589         write(wi);
1590         os << to_utf8(oss.str());
1591 }
1592
1593
1594 void InsetMathHull::read(Lexer & lex)
1595 {
1596         MathAtom at;
1597         mathed_parse_normal(at, lex);
1598         operator=(*at->asHullInset());
1599 }
1600
1601
1602 bool InsetMathHull::readQuiet(Lexer & lex)
1603 {
1604         MathAtom at;
1605         bool result = mathed_parse_normal(at, lex, Parse::QUIET);
1606         operator=(*at->asHullInset());
1607         return result;
1608 }
1609
1610
1611 int InsetMathHull::plaintext(odocstream & os, OutputParams const & runparams) const
1612 {
1613         if (0 && display()) {
1614                 Dimension dim;
1615                 TextMetricsInfo mi;
1616                 metricsT(mi, dim);
1617                 TextPainter tpain(dim.width(), dim.height());
1618                 drawT(tpain, 0, dim.ascent());
1619                 tpain.show(os, 3);
1620                 // reset metrics cache to "real" values
1621                 //metrics();
1622                 return tpain.textheight();
1623         } else {
1624                 odocstringstream oss;
1625                 WriteStream wi(oss, false, true, false, runparams.encoding);
1626                 wi << cell(0);
1627
1628                 docstring const str = oss.str();
1629                 os << str;
1630                 return str.size();
1631         }
1632 }
1633
1634
1635 int InsetMathHull::docbook(odocstream & os, OutputParams const & runparams) const
1636 {
1637         MathStream ms(os);
1638         int res = 0;
1639         docstring name;
1640         if (getType() == hullSimple)
1641                 name = from_ascii("inlineequation");
1642         else
1643                 name = from_ascii("informalequation");
1644
1645         docstring bname = name;
1646         if (!label(0).empty())
1647                 bname += " id='" + sgml::cleanID(buffer(), runparams, label(0)) + "'";
1648
1649         ++ms.tab(); ms.cr(); ms.os() << '<' << bname << '>';
1650
1651         odocstringstream ls;
1652         if (runparams.flavor == OutputParams::XML) {
1653                 ms << MTag("alt role='tex' ");
1654                 // Workaround for db2latex: db2latex always includes equations with
1655                 // \ensuremath{} or \begin{display}\end{display}
1656                 // so we strip LyX' math environment
1657                 WriteStream wi(ls, false, false, false, runparams.encoding);
1658                 InsetMathGrid::write(wi);
1659                 ms << from_utf8(subst(subst(to_utf8(ls.str()), "&", "&amp;"), "<", "&lt;"));
1660                 ms << ETag("alt");
1661                 ms << MTag("math");
1662                 ms << ETag("alt");
1663                 ms << MTag("math");
1664                 InsetMathGrid::mathmlize(ms);
1665                 ms << ETag("math");
1666         } else {
1667                 ms << MTag("alt role='tex'");
1668                 res = latex(ls, runparams);
1669                 ms << from_utf8(subst(subst(to_utf8(ls.str()), "&", "&amp;"), "<", "&lt;"));
1670                 ms << ETag("alt");
1671         }
1672
1673         ms << from_ascii("<graphic fileref=\"eqn/");
1674         if (!label(0).empty())
1675                 ms << sgml::cleanID(buffer(), runparams, label(0));
1676         else
1677                 ms << sgml::uniqueID(from_ascii("anon"));
1678
1679         if (runparams.flavor == OutputParams::XML)
1680                 ms << from_ascii("\"/>");
1681         else
1682                 ms << from_ascii("\">");
1683
1684         ms.cr(); --ms.tab(); ms.os() << "</" << name << '>';
1685
1686         return ms.line() + res;
1687 }
1688
1689
1690 void InsetMathHull::textString(odocstream & os) const
1691 {
1692         plaintext(os, OutputParams(0));
1693 }
1694
1695
1696 docstring InsetMathHull::contextMenu(BufferView const &, int, int) const
1697 {
1698         return from_ascii("context-math");
1699 }
1700
1701
1702 } // namespace lyx