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