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