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