]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathHull.cpp
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[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                 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 emptyline, 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, emptyline, 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_WORD_DELETE_FORWARD:
1239         case LFUN_CHAR_DELETE_FORWARD:
1240                 if (col(cur.idx()) + 1 == ncols()
1241                     && cur.pos() == cur.lastpos()) {
1242                         if (!label(row(cur.idx())).empty()) {
1243                                 cur.recordUndoInset();
1244                                 label(row(cur.idx()), docstring());
1245                         } else if (numbered(row(cur.idx()))) {
1246                                 cur.recordUndoInset();
1247                                 numbered(row(cur.idx()), false);
1248                         } else {
1249                                 InsetMathGrid::doDispatch(cur, cmd);
1250                                 return;
1251                         }
1252                 } else {
1253                         InsetMathGrid::doDispatch(cur, cmd);
1254                         return;
1255                 }
1256                 break;
1257
1258         case LFUN_INSET_INSERT: {
1259                 //lyxerr << "arg: " << to_utf8(cmd.argument()) << endl;
1260                 // FIXME: this should be cleaned up to use InsetLabel methods directly.
1261                 string const name = cmd.getArg(0);
1262                 if (name == "label") {
1263                         InsetCommandParams p(LABEL_CODE);
1264                         InsetCommand::string2params(name, to_utf8(cmd.argument()), p);
1265                         docstring str = p["name"];
1266                         cur.recordUndoInset();
1267                         row_type const r = (type_ == hullMultline) ? nrows() - 1 : cur.row();
1268                         str = trim(str);
1269                         if (!str.empty())
1270                                 numbered(r, true);
1271                         docstring old = label(r);
1272                         if (str != old) {
1273                                 if (label_[r])
1274                                         // The label will take care of the reference update.
1275                                         label(r, str);
1276                                 else {
1277                                         label(r, str);
1278                                         // Newly created inset so initialize it.
1279                                         label_[r]->initView();
1280                                 }
1281                         }
1282                         break;
1283                 }
1284                 InsetMathGrid::doDispatch(cur, cmd);
1285                 return;
1286         }
1287
1288         case LFUN_MATH_EXTERN:
1289                 cur.recordUndoInset();
1290                 doExtern(cur, cmd);
1291                 break;
1292
1293         case LFUN_MATH_MUTATE: {
1294                 cur.recordUndoInset();
1295                 row_type row = cur.row();
1296                 col_type col = cur.col();
1297                 mutate(hullType(cmd.argument()));
1298                 cur.idx() = row * ncols() + col;
1299                 if (cur.idx() > cur.lastidx()) {
1300                         cur.idx() = cur.lastidx();
1301                         cur.pos() = cur.lastpos();
1302                 }
1303                 if (cur.pos() > cur.lastpos())
1304                         cur.pos() = cur.lastpos();
1305
1306                 // FIXME: find some more clever handling of the selection,
1307                 // i.e. preserve it.
1308                 cur.clearSelection();
1309                 //cur.dispatched(FINISHED);
1310                 break;
1311         }
1312
1313         case LFUN_MATH_DISPLAY: {
1314                 cur.recordUndoInset();
1315                 mutate(type_ == hullSimple ? hullEquation : hullSimple);
1316                 cur.idx() = 0;
1317                 cur.pos() = cur.lastpos();
1318                 //cur.dispatched(FINISHED);
1319                 break;
1320         }
1321
1322         default:
1323                 InsetMathGrid::doDispatch(cur, cmd);
1324                 break;
1325         }
1326 }
1327
1328
1329 bool InsetMathHull::getStatus(Cursor & cur, FuncRequest const & cmd,
1330                 FuncStatus & status) const
1331 {
1332         switch (cmd.action) {
1333         case LFUN_FINISHED_BACKWARD:
1334         case LFUN_FINISHED_FORWARD:
1335         case LFUN_FINISHED_RIGHT:
1336         case LFUN_FINISHED_LEFT:
1337         case LFUN_UP:
1338         case LFUN_DOWN:
1339         case LFUN_NEWLINE_INSERT:
1340         case LFUN_MATH_EXTERN:
1341         case LFUN_MATH_MUTATE:
1342         case LFUN_MATH_DISPLAY:
1343                 // we handle these
1344                 status.setEnabled(true);
1345                 return true;
1346         case LFUN_MATH_NUMBER_TOGGLE:
1347                 // FIXME: what is the right test, this or the one of
1348                 // LABEL_INSERT?
1349                 status.setEnabled(display());
1350                 status.setOnOff(numberedType());
1351                 return true;
1352         case LFUN_MATH_NUMBER_LINE_TOGGLE: {
1353                 // FIXME: what is the right test, this or the one of
1354                 // LABEL_INSERT?
1355                 bool const enable = (type_ == hullMultline)
1356                         ? (nrows() - 1 == cur.row())
1357                         : display() != Inline;
1358                 row_type const r = (type_ == hullMultline) ? nrows() - 1 : cur.row();
1359                 status.setEnabled(enable);
1360                 status.setOnOff(numbered(r));
1361                 return true;
1362         }
1363         case LFUN_LABEL_INSERT:
1364                 status.setEnabled(type_ != hullSimple);
1365                 return true;
1366         case LFUN_INSET_INSERT:
1367                 if (cmd.getArg(0) == "label") {
1368                         status.setEnabled(type_ != hullSimple);
1369                         return true;
1370                 }
1371                 return InsetMathGrid::getStatus(cur, cmd, status);
1372         case LFUN_TABULAR_FEATURE: {
1373                 istringstream is(to_utf8(cmd.argument()));
1374                 string s;
1375                 is >> s;
1376                 if (!rowChangeOK()
1377                     && (s == "append-row"
1378                         || s == "delete-row"
1379                         || s == "copy-row")) {
1380                         status.message(bformat(
1381                                 from_utf8(N_("Can't change number of rows in '%1$s'")),
1382                                 hullName(type_)));
1383                         status.setEnabled(false);
1384                         return true;
1385                 }
1386                 if (!colChangeOK()
1387                     && (s == "append-column"
1388                         || s == "delete-column"
1389                         || s == "copy-column")) {
1390                         status.message(bformat(
1391                                 from_utf8(N_("Can't change number of columns in '%1$s'")),
1392                                 hullName(type_)));
1393                         status.setEnabled(false);
1394                         return true;
1395                 }
1396                 if ((type_ == hullSimple
1397                   || type_ == hullEquation
1398                   || type_ == hullNone) &&
1399                     (s == "add-hline-above" || s == "add-hline-below")) {
1400                         status.message(bformat(
1401                                 from_utf8(N_("Can't add horizontal grid lines in '%1$s'")),
1402                                 hullName(type_)));
1403                         status.setEnabled(false);
1404                         return true;
1405                 }
1406                 if (s == "add-vline-left" || s == "add-vline-right") {
1407                         status.message(bformat(
1408                                 from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
1409                                 hullName(type_)));
1410                         status.setEnabled(false);
1411                         return true;
1412                 }
1413                 if (s == "valign-top" || s == "valign-middle"
1414                  || s == "valign-bottom" || s == "align-left"
1415                  || s == "align-center" || s == "align-right") {
1416                         status.setEnabled(false);
1417                         return true;
1418                 }
1419                 return InsetMathGrid::getStatus(cur, cmd, status);
1420         }
1421         default:
1422                 return InsetMathGrid::getStatus(cur, cmd, status);
1423         }
1424
1425         // This cannot really happen, but inserted to shut-up gcc
1426         return InsetMathGrid::getStatus(cur, cmd, status);
1427 }
1428
1429
1430 /////////////////////////////////////////////////////////////////////
1431
1432
1433
1434 // simply scrap this function if you want
1435 void InsetMathHull::mutateToText()
1436 {
1437 #if 0
1438         // translate to latex
1439         ostringstream os;
1440         latex(os, false, false);
1441         string str = os.str();
1442
1443         // insert this text
1444         Text * lt = view_->cursor().innerText();
1445         string::const_iterator cit = str.begin();
1446         string::const_iterator end = str.end();
1447         for (; cit != end; ++cit)
1448                 view_->getIntl()->getTransManager().TranslateAndInsert(*cit, lt);
1449
1450         // remove ourselves
1451         //dispatch(LFUN_ESCAPE);
1452 #endif
1453 }
1454
1455
1456 void InsetMathHull::handleFont(Cursor & cur, docstring const & arg,
1457         docstring const & font)
1458 {
1459         // this whole function is a hack and won't work for incremental font
1460         // changes...
1461         cur.recordUndo();
1462         if (cur.inset().asInsetMath()->name() == font)
1463                 cur.handleFont(to_utf8(font));
1464         else {
1465                 cur.handleNest(createInsetMath(font));
1466                 cur.insert(arg);
1467         }
1468 }
1469
1470
1471 void InsetMathHull::handleFont2(Cursor & cur, docstring const & arg)
1472 {
1473         cur.recordUndo();
1474         Font font;
1475         bool b;
1476         font.fromString(to_utf8(arg), b);
1477         if (font.fontInfo().color() != Color_inherit) {
1478                 MathAtom at = MathAtom(new InsetMathColor(true, font.fontInfo().color()));
1479                 cur.handleNest(at, 0);
1480         }
1481 }
1482
1483
1484 void InsetMathHull::edit(Cursor & cur, bool front, EntryDirection entry_from)
1485 {
1486         cur.push(*this);
1487         bool enter_front = (entry_from == Inset::ENTRY_DIRECTION_LEFT ||
1488                 (entry_from == Inset::ENTRY_DIRECTION_IGNORE && front));
1489         enter_front ? idxFirst(cur) : idxLast(cur);
1490         // The inset formula dimension is not necessarily the same as the
1491         // one of the instant preview image, so we have to indicate to the
1492         // BufferView that a metrics update is needed.
1493         cur.updateFlags(Update::Force);
1494 }
1495
1496
1497 docstring InsetMathHull::editMessage() const
1498 {
1499         return _("Math editor mode");
1500 }
1501
1502
1503 void InsetMathHull::revealCodes(Cursor & cur) const
1504 {
1505         if (!cur.inMathed())
1506                 return;
1507         odocstringstream os;
1508         cur.info(os);
1509         cur.message(os.str());
1510 /*
1511         // write something to the minibuffer
1512         // translate to latex
1513         cur.markInsert(bv);
1514         ostringstream os;
1515         write(os);
1516         string str = os.str();
1517         cur.markErase(bv);
1518         string::size_type pos = 0;
1519         string res;
1520         for (string::iterator it = str.begin(); it != str.end(); ++it) {
1521                 if (*it == '\n')
1522                         res += ' ';
1523                 else if (*it == '\0') {
1524                         res += "  -X-  ";
1525                         pos = it - str.begin();
1526                 }
1527                 else
1528                         res += *it;
1529         }
1530         if (pos > 30)
1531                 res = res.substr(pos - 30);
1532         if (res.size() > 60)
1533                 res = res.substr(0, 60);
1534         cur.message(res);
1535 */
1536 }
1537
1538
1539 InsetCode InsetMathHull::lyxCode() const
1540 {
1541         return MATH_CODE;
1542 }
1543
1544
1545 /////////////////////////////////////////////////////////////////////
1546
1547
1548 #if 0
1549 bool InsetMathHull::searchForward(BufferView * bv, string const & str,
1550                                      bool, bool)
1551 {
1552         // FIXME: completely broken
1553         static InsetMathHull * lastformula = 0;
1554         static CursorBase current = DocIterator(ibegin(nucleus()));
1555         static MathData ar;
1556         static string laststr;
1557
1558         if (lastformula != this || laststr != str) {
1559                 //lyxerr << "reset lastformula to " << this << endl;
1560                 lastformula = this;
1561                 laststr = str;
1562                 current = ibegin(nucleus());
1563                 ar.clear();
1564                 mathed_parse_cell(ar, str);
1565         } else {
1566                 increment(current);
1567         }
1568         //lyxerr << "searching '" << str << "' in " << this << ar << endl;
1569
1570         for (DocIterator it = current; it != iend(nucleus()); increment(it)) {
1571                 CursorSlice & top = it.back();
1572                 MathData const & a = top.asInsetMath()->cell(top.idx_);
1573                 if (a.matchpart(ar, top.pos_)) {
1574                         bv->cursor().setSelection(it, ar.size());
1575                         current = it;
1576                         top.pos_ += ar.size();
1577                         bv->update();
1578                         return true;
1579                 }
1580         }
1581
1582         //lyxerr << "not found!" << endl;
1583         lastformula = 0;
1584         return false;
1585 }
1586 #endif
1587
1588
1589 void InsetMathHull::write(ostream & os) const
1590 {
1591         odocstringstream oss;
1592         WriteStream wi(oss, false, false, false);
1593         oss << "Formula ";
1594         write(wi);
1595         os << to_utf8(oss.str());
1596 }
1597
1598
1599 void InsetMathHull::read(Lexer & lex)
1600 {
1601         MathAtom at;
1602         mathed_parse_normal(at, lex);
1603         operator=(*at->asHullInset());
1604 }
1605
1606
1607 bool InsetMathHull::readQuiet(Lexer & lex)
1608 {
1609         MathAtom at;
1610         bool result = mathed_parse_normal(at, lex, Parse::QUIET);
1611         operator=(*at->asHullInset());
1612         return result;
1613 }
1614
1615
1616 int InsetMathHull::plaintext(odocstream & os, OutputParams const & runparams) const
1617 {
1618         if (0 && display()) {
1619                 Dimension dim;
1620                 TextMetricsInfo mi;
1621                 metricsT(mi, dim);
1622                 TextPainter tpain(dim.width(), dim.height());
1623                 drawT(tpain, 0, dim.ascent());
1624                 tpain.show(os, 3);
1625                 // reset metrics cache to "real" values
1626                 //metrics();
1627                 return tpain.textheight();
1628         } else {
1629                 odocstringstream oss;
1630                 WriteStream wi(oss, false, true, false, runparams.encoding);
1631                 wi << cell(0);
1632
1633                 docstring const str = oss.str();
1634                 os << str;
1635                 return str.size();
1636         }
1637 }
1638
1639
1640 int InsetMathHull::docbook(odocstream & os, OutputParams const & runparams) const
1641 {
1642         MathStream ms(os);
1643         int res = 0;
1644         docstring name;
1645         if (getType() == hullSimple)
1646                 name = from_ascii("inlineequation");
1647         else
1648                 name = from_ascii("informalequation");
1649
1650         docstring bname = name;
1651         if (!label(0).empty())
1652                 bname += " id='" + sgml::cleanID(buffer(), runparams, label(0)) + "'";
1653
1654         ++ms.tab(); ms.cr(); ms.os() << '<' << bname << '>';
1655
1656         odocstringstream ls;
1657         if (runparams.flavor == OutputParams::XML) {
1658                 ms << MTag("alt role='tex' ");
1659                 // Workaround for db2latex: db2latex always includes equations with
1660                 // \ensuremath{} or \begin{display}\end{display}
1661                 // so we strip LyX' math environment
1662                 WriteStream wi(ls, false, false, false, runparams.encoding);
1663                 InsetMathGrid::write(wi);
1664                 ms << from_utf8(subst(subst(to_utf8(ls.str()), "&", "&amp;"), "<", "&lt;"));
1665                 ms << ETag("alt");
1666                 ms << MTag("math");
1667                 ms << ETag("alt");
1668                 ms << MTag("math");
1669                 InsetMathGrid::mathmlize(ms);
1670                 ms << ETag("math");
1671         } else {
1672                 ms << MTag("alt role='tex'");
1673                 res = latex(ls, runparams);
1674                 ms << from_utf8(subst(subst(to_utf8(ls.str()), "&", "&amp;"), "<", "&lt;"));
1675                 ms << ETag("alt");
1676         }
1677
1678         ms << from_ascii("<graphic fileref=\"eqn/");
1679         if (!label(0).empty())
1680                 ms << sgml::cleanID(buffer(), runparams, label(0));
1681         else
1682                 ms << sgml::uniqueID(from_ascii("anon"));
1683
1684         if (runparams.flavor == OutputParams::XML)
1685                 ms << from_ascii("\"/>");
1686         else
1687                 ms << from_ascii("\">");
1688
1689         ms.cr(); --ms.tab(); ms.os() << "</" << name << '>';
1690
1691         return ms.line() + res;
1692 }
1693
1694
1695 void InsetMathHull::textString(odocstream & os) const
1696 {
1697         plaintext(os, OutputParams(0));
1698 }
1699
1700
1701 docstring InsetMathHull::contextMenu(BufferView const &, int, int) const
1702 {
1703         return from_ascii("context-math");
1704 }
1705
1706
1707 } // namespace lyx