]> git.lyx.org Git - lyx.git/blob - src/mathed/MathMacro.cpp
* Call metrics of the parameters with the correct font in MathMacros, for example
[lyx.git] / src / mathed / MathMacro.cpp
1 /**
2  * \file MathMacro.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  * \author Stefan Schimanski
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #include <config.h>
14
15 #include "MathMacro.h"
16
17 #include "InsetMathChar.h"
18 #include "MathCompletionList.h"
19 #include "MathExtern.h"
20 #include "MathStream.h"
21 #include "MathSupport.h"
22
23 #include "Buffer.h"
24 #include "BufferView.h"
25 #include "CoordCache.h"
26 #include "Cursor.h"
27 #include "FuncStatus.h"
28 #include "FuncRequest.h"
29 #include "LaTeXFeatures.h"
30 #include "LyXFunc.h"
31 #include "LyXRC.h"
32 #include "Undo.h"
33
34 #include "frontends/Painter.h"
35
36 #include "support/debug.h"
37 #include "support/lassert.h"
38 #include "support/textutils.h"
39
40 #include <ostream>
41 #include <vector>
42
43 using namespace std;
44
45 namespace lyx {
46
47
48 /// A proxy for the macro values
49 class ArgumentProxy : public InsetMath {
50 public:
51         ///
52         ArgumentProxy(MathMacro & mathMacro, size_t idx) 
53                 : mathMacro_(mathMacro), idx_(idx) {}
54         ///
55         ArgumentProxy(MathMacro & mathMacro, size_t idx, docstring const & def) 
56                 : mathMacro_(mathMacro), idx_(idx) 
57         {
58                         asArray(def, def_);
59         }
60         ///
61         void metrics(MetricsInfo & mi, Dimension & dim) const {
62                 mathMacro_.macro()->unlock();
63                 mathMacro_.cell(idx_).metrics(mi, dim);
64
65                 if (!mathMacro_.editMetrics(mi.base.bv)
66                     && mathMacro_.cell(idx_).empty())
67                         def_.metrics(mi, dim);
68
69                 mathMacro_.macro()->lock();
70         }
71         ///
72         void draw(PainterInfo & pi, int x, int y) const {
73                 if (mathMacro_.editMetrics(pi.base.bv)) {
74                         // The only way a ArgumentProxy can appear is in a cell of the 
75                         // MathMacro. Moreover the cells are only drawn in the DISPLAY_FOLDED 
76                         // mode and then, if the macro is edited the monochrome 
77                         // mode is entered by the MathMacro before calling the cells' draw
78                         // method. Then eventually this code is reached and the proxy leaves
79                         // monochrome mode temporarely. Hence, if it is not in monochrome 
80                         // here (and the assert triggers in pain.leaveMonochromeMode()) 
81                         // it's a bug.
82                         pi.pain.leaveMonochromeMode();
83                         mathMacro_.cell(idx_).draw(pi, x, y);
84                         pi.pain.enterMonochromeMode(Color_mathbg, Color_mathmacroblend);
85                 } else if (mathMacro_.cell(idx_).empty()) {
86                         mathMacro_.cell(idx_).setXY(*pi.base.bv, x, y);
87                         def_.draw(pi, x, y);
88                 } else
89                         mathMacro_.cell(idx_).draw(pi, x, y);
90         }
91         ///
92         size_t idx() const { return idx_; }
93         ///
94         int kerning(BufferView const * bv) const
95         { 
96                 if (mathMacro_.editMetrics(bv)
97                     || !mathMacro_.cell(idx_).empty())
98                         return mathMacro_.cell(idx_).kerning(bv); 
99                 else
100                         return def_.kerning(bv);
101         }
102
103 private:
104         ///
105         Inset * clone() const 
106         {
107                 return new ArgumentProxy(*this);
108         }
109         ///
110         MathMacro & mathMacro_;
111         ///
112         size_t idx_;
113         ///
114         MathData def_;
115 };
116
117
118 MathMacro::MathMacro(docstring const & name)
119         : InsetMathNest(0), name_(name), displayMode_(DISPLAY_INIT),
120                 attachedArgsNum_(0), optionals_(0), nextFoldMode_(true),
121                 macro_(0), needsUpdate_(false), appetite_(9)
122 {}
123
124
125 Inset * MathMacro::clone() const
126 {
127         MathMacro * copy = new MathMacro(*this);
128         copy->needsUpdate_ = true;
129         copy->expanded_.cell(0).clear();
130         return copy;
131 }
132
133
134 docstring MathMacro::name() const
135 {
136         if (displayMode_ == DISPLAY_UNFOLDED && name_.size() != 1)
137                 return asString(cell(0));
138
139         return name_;
140 }
141
142
143 void MathMacro::cursorPos(BufferView const & bv,
144                 CursorSlice const & sl, bool boundary, int & x, int & y) const
145 {
146         // We may have 0 arguments, but InsetMathNest requires at least one.
147         if (nargs() > 0)
148                 InsetMathNest::cursorPos(bv, sl, boundary, x, y);
149 }
150
151
152 bool MathMacro::editMode(BufferView const * bv) const {
153         // find this in cursor trace
154         Cursor const & cur = bv->cursor();
155         for (size_t i = 0; i != cur.depth(); ++i)
156                 if (&cur[i].inset() == this) {
157                         // look if there is no other macro in edit mode above
158                         ++i;
159                         for (; i != cur.depth(); ++i) {
160                                 MathMacro const * macro = dynamic_cast<MathMacro const *>(&cur[i].inset());
161                                 if (macro && macro->displayMode() == DISPLAY_NORMAL)
162                                         return false;
163                         }
164
165                         // ok, none found, I am the highest one
166                         return true;
167                 }
168
169         return false;
170 }
171
172
173 bool MathMacro::editMetrics(BufferView const * bv) const
174 {
175         return editing_[bv];
176 }
177
178
179 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
180 {
181         // set edit mode for which we will have calculated metrics. But only
182         editing_[mi.base.bv] = editMode(mi.base.bv);
183
184         // calculate new metrics according to display mode
185         if (displayMode_ == DISPLAY_INIT || displayMode_ == DISPLAY_INTERACTIVE_INIT) {
186                 mathed_string_dim(mi.base.font, from_ascii("\\") + name(), dim);
187         } else if (displayMode_ == DISPLAY_UNFOLDED) {
188                 cell(0).metrics(mi, dim);
189                 Dimension bsdim;
190                 mathed_string_dim(mi.base.font, from_ascii("\\"), bsdim);
191                 dim.wid += bsdim.width() + 1;
192                 dim.asc = max(bsdim.ascent(), dim.ascent());
193                 dim.des = max(bsdim.descent(), dim.descent());
194                 metricsMarkers(dim);
195         } else if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_LIST 
196                    && editing_[mi.base.bv]) {
197                 // Macro will be edited in a old-style list mode here:
198
199                 LASSERT(macro_ != 0, /**/);
200                 Dimension fontDim;
201                 FontInfo labelFont = sane_font;
202                 math_font_max_dim(labelFont, fontDim.asc, fontDim.des);
203                 
204                 // get dimension of components of list view
205                 Dimension nameDim;
206                 nameDim.wid = mathed_string_width(mi.base.font, from_ascii("Macro \\") + name() + ": ");
207                 nameDim.asc = fontDim.asc;
208                 nameDim.des = fontDim.des;
209
210                 Dimension argDim;
211                 argDim.wid = mathed_string_width(labelFont, from_ascii("#9: "));
212                 argDim.asc = fontDim.asc;
213                 argDim.des = fontDim.des;
214                 
215                 Dimension defDim;
216                 definition_.metrics(mi, defDim);
217                 
218                 // add them up
219                 dim.wid = nameDim.wid + defDim.wid;
220                 dim.asc = max(nameDim.asc, defDim.asc);
221                 dim.des = max(nameDim.des, defDim.des);
222                 
223                 for (idx_type i = 0; i < nargs(); ++i) {
224                         Dimension cdim;
225                         cell(i).metrics(mi, cdim);
226                         dim.des += max(argDim.height(), cdim.height()) + 1;
227                         dim.wid = max(dim.wid, argDim.wid + cdim.wid);
228                 }
229                 
230                 // make space for box and markers, 2 pixels
231                 dim.asc += 1;
232                 dim.des += 1;
233                 dim.wid += 2;
234                 metricsMarkers2(dim);
235         } else {
236                 LASSERT(macro_ != 0, /**/);
237
238                 // calculate metrics, hoping that all cells are seen
239                 macro_->lock();
240                 expanded_.cell(0).metrics(mi, dim);
241
242                 // otherwise do a manual metrics call
243                 CoordCache & coords = mi.base.bv->coordCache();
244                 for (idx_type i = 0; i < nargs(); ++i) {
245                         if (!coords.arrays().has(&cell(i))) {
246                                 Dimension tdim;
247                                 cell(i).metrics(mi, tdim);
248                         }
249                 }
250                 macro_->unlock();
251
252                 // calculate dimension with label while editing
253                 if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX 
254                     && editing_[mi.base.bv]) {
255                         FontInfo font = mi.base.font;
256                         augmentFont(font, from_ascii("lyxtex"));
257                         Dimension namedim;
258                         mathed_string_dim(font, name(), namedim);
259 #if 0
260                         dim.wid += 2 + namedim.wid + 2 + 2;
261                         dim.asc = max(dim.asc, namedim.asc) + 2;
262                         dim.des = max(dim.des, namedim.des) + 2;
263 #endif
264                         dim.wid = max(1 + namedim.wid + 1, 2 + dim.wid + 2);
265                         dim.asc += 1 + namedim.height() + 1;
266                         dim.des += 2;
267                 }
268          
269         }
270 }
271
272
273 int MathMacro::kerning(BufferView const * bv) const {
274         if (displayMode_ == DISPLAY_NORMAL && !editing_[bv])
275                 return expanded_.kerning(bv);
276         else
277                 return 0;
278 }
279
280
281 void MathMacro::updateMacro(MacroContext const & mc) 
282 {
283         if (validName()) {
284                 macro_ = mc.get(name());            
285                 if (macro_ && macroBackup_ != *macro_) {
286                         macroBackup_ = *macro_;
287                         needsUpdate_ = true;
288                 }
289         } else {
290                 macro_ = 0;
291         }
292 }
293
294
295 void MathMacro::updateRepresentation()
296 {
297         // known macro?
298         if (macro_ == 0)
299                 return;
300
301         // update requires
302         requires_ = macro_->requires();
303         
304         // non-normal mode? We are done!
305         if (displayMode_ != DISPLAY_NORMAL)
306                 return;
307
308         // macro changed?
309         if (!needsUpdate_)
310                 return;
311         
312         needsUpdate_ = false;
313         
314         // get default values of macro
315         vector<docstring> const & defaults = macro_->defaults();
316         
317         // create MathMacroArgumentValue objects pointing to the cells of the macro
318         vector<MathData> values(nargs());
319         for (size_t i = 0; i < nargs(); ++i) {
320                 ArgumentProxy * proxy;
321                 if (i < defaults.size()) 
322                         proxy = new ArgumentProxy(*this, i, defaults[i]);
323                 else
324                         proxy = new ArgumentProxy(*this, i);
325                 values[i].insert(0, MathAtom(proxy));
326         }
327         
328         // expanding macro with the values
329         macro_->expand(values, expanded_.cell(0));
330                 // get definition for list edit mode
331         docstring const & display = macro_->display();
332         asArray(display.empty() ? macro_->definition() : display, definition_);
333 }
334
335
336 void MathMacro::draw(PainterInfo & pi, int x, int y) const
337 {
338         Dimension const dim = dimension(*pi.base.bv);
339
340         setPosCache(pi, x, y);
341         int expx = x;
342         int expy = y;
343
344         if (displayMode_ == DISPLAY_INIT || displayMode_ == DISPLAY_INTERACTIVE_INIT) {         
345                 FontSetChanger dummy(pi.base, "lyxtex");
346                 pi.pain.text(x, y, from_ascii("\\") + name(), pi.base.font);
347         } else if (displayMode_ == DISPLAY_UNFOLDED) {
348                 FontSetChanger dummy(pi.base, "lyxtex");
349                 pi.pain.text(x, y, from_ascii("\\"), pi.base.font);
350                 x += mathed_string_width(pi.base.font, from_ascii("\\")) + 1;
351                 cell(0).draw(pi, x, y);
352                 drawMarkers(pi, expx, expy);
353         } else if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_LIST
354                    && editing_[pi.base.bv]) {
355                 // Macro will be edited in a old-style list mode here:
356                 
357                 CoordCache & coords = pi.base.bv->coordCache();
358                 FontInfo const & labelFont = sane_font;
359                 
360                 // markers and box needs two pixels
361                 x += 2;
362                 
363                 // get maximal font height
364                 Dimension fontDim;
365                 math_font_max_dim(pi.base.font, fontDim.asc, fontDim.des);
366                 
367                 // draw label
368                 docstring label = from_ascii("Macro \\") + name() + from_ascii(": ");
369                 pi.pain.text(x, y, label, labelFont);
370                 x += mathed_string_width(labelFont, label);
371
372                 // draw definition
373                 definition_.draw(pi, x, y);
374                 Dimension defDim
375                 = coords.arrays().dim(&definition_);
376                 y += max(fontDim.des, defDim.des);
377                                 
378                 // draw parameters
379                 docstring str = from_ascii("#9");
380                 int strw1 = mathed_string_width(labelFont, from_ascii("#9"));
381                 int strw2 = mathed_string_width(labelFont, from_ascii(": "));
382                 
383                 for (idx_type i = 0; i < nargs(); ++i) {
384                         // position of label
385                         Dimension cdim
386                         = coords.arrays().dim(&cell(i));
387                         x = expx + 2;
388                         y += max(fontDim.asc, cdim.asc) + 1;
389                         
390                         // draw label
391                         str[1] = '1' + i;
392                         pi.pain.text(x, y, str, labelFont);
393                         x += strw1;
394                         pi.pain.text(x, y, from_ascii(":"), labelFont);
395                         x += strw2;
396                         
397                         // draw paramter
398                         cell(i).draw(pi, x, y);
399                         
400                         // next line
401                         y += max(fontDim.des, cdim.des);
402                 }
403                 
404                 pi.pain.rectangle(expx + 1, expy - dim.asc + 1, dim.wid - 3, 
405                                   dim.height() - 2, Color_mathmacroframe);
406                 drawMarkers2(pi, expx, expy);
407         } else {
408                 bool drawBox = lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX;
409                 
410                 // warm up cells
411                 for (size_t i = 0; i < nargs(); ++i)
412                         cell(i).setXY(*pi.base.bv, x, y);
413
414                 if (drawBox && editing_[pi.base.bv]) {
415                         // draw header and rectangle around
416                         FontInfo font = pi.base.font;
417                         augmentFont(font, from_ascii("lyxtex"));
418                         font.setSize(FONT_SIZE_TINY);
419                         font.setColor(Color_mathmacrolabel);
420                         Dimension namedim;
421                         mathed_string_dim(font, name(), namedim);
422
423                         pi.pain.fillRectangle(x, y - dim.asc, dim.wid, 1 + namedim.height() + 1, Color_mathmacrobg);
424                         pi.pain.text(x + 1, y - dim.asc + namedim.asc + 2, name(), font);
425                         expx += (dim.wid - expanded_.cell(0).dimension(*pi.base.bv).width()) / 2;
426                 }
427
428                 if (editing_[pi.base.bv]) {
429                         pi.pain.enterMonochromeMode(Color_mathbg, Color_mathmacroblend);
430                         expanded_.cell(0).draw(pi, expx, expy);
431                         pi.pain.leaveMonochromeMode();
432
433                         if (drawBox)
434                                 pi.pain.rectangle(x, y - dim.asc, dim.wid, 
435                                                   dim.height(), Color_mathmacroframe);
436                 } else
437                         expanded_.cell(0).draw(pi, expx, expy);
438
439                 if (!drawBox)
440                         drawMarkers(pi, x, y);
441         }
442
443         // edit mode changed?
444         if (editing_[pi.base.bv] != editMode(pi.base.bv))
445                 pi.base.bv->cursor().updateFlags(Update::SinglePar);
446 }
447
448
449 void MathMacro::drawSelection(PainterInfo & pi, int x, int y) const
450 {
451         // We may have 0 arguments, but InsetMathNest requires at least one.
452         if (cells_.size() > 0)
453                 InsetMathNest::drawSelection(pi, x, y);
454 }
455
456
457 void MathMacro::setDisplayMode(MathMacro::DisplayMode mode, int appetite)
458 {
459         if (displayMode_ != mode) {             
460                 // transfer name if changing from or to DISPLAY_UNFOLDED
461                 if (mode == DISPLAY_UNFOLDED) {
462                         cells_.resize(1);
463                         asArray(name_, cell(0));
464                 } else if (displayMode_ == DISPLAY_UNFOLDED) {
465                         name_ = asString(cell(0));
466                         cells_.resize(0);
467                 }
468
469                 displayMode_ = mode;
470                 needsUpdate_ = true;
471         }
472         
473         // the interactive init mode is non-greedy by default
474         if (appetite == -1)
475                 appetite_ = (mode == DISPLAY_INTERACTIVE_INIT) ? 0 : 9;
476         else
477                 appetite_ = size_t(appetite);
478 }
479
480
481 MathMacro::DisplayMode MathMacro::computeDisplayMode() const
482 {
483         if (nextFoldMode_ == true && macro_ && !macro_->locked())
484                 return DISPLAY_NORMAL;
485         else
486                 return DISPLAY_UNFOLDED;
487 }
488
489
490 bool MathMacro::validName() const
491 {
492         docstring n = name();
493
494         // empty name?
495         if (n.size() == 0)
496                 return false;
497
498         // converting back and force doesn't swallow anything?
499         /*MathData ma;
500         asArray(n, ma);
501         if (asString(ma) != n)
502                 return false;*/
503
504         // valid characters?
505         for (size_t i = 0; i<n.size(); ++i) {
506                 if (!(n[i] >= 'a' && n[i] <= 'z')
507                     && !(n[i] >= 'A' && n[i] <= 'Z')
508                     && n[i] != '*') 
509                         return false;
510         }
511
512         return true;
513 }
514
515
516 void MathMacro::validate(LaTeXFeatures & features) const
517 {
518         if (!requires_.empty())
519                 features.require(requires_);
520
521         if (name() == "binom" || name() == "mathcircumflex")
522                 features.require(to_utf8(name()));
523         
524         // validate the cells and the definition
525         if (displayMode() == DISPLAY_NORMAL) {
526                 definition_.validate(features);
527                 InsetMathNest::validate(features);
528         }
529 }
530
531
532 void MathMacro::edit(Cursor & cur, bool front, EntryDirection entry_from)
533 {
534         cur.updateFlags(Update::SinglePar);
535         InsetMathNest::edit(cur, front, entry_from);
536 }
537
538
539 Inset * MathMacro::editXY(Cursor & cur, int x, int y)
540 {
541         // We may have 0 arguments, but InsetMathNest requires at least one.
542         if (nargs() > 0) {
543                 cur.updateFlags(Update::SinglePar);
544                 return InsetMathNest::editXY(cur, x, y);                
545         } else
546                 return this;
547 }
548
549
550 void MathMacro::removeArgument(Inset::pos_type pos) {
551         if (displayMode_ == DISPLAY_NORMAL) {
552                 LASSERT(size_t(pos) < cells_.size(), /**/);
553                 cells_.erase(cells_.begin() + pos);
554                 if (size_t(pos) < attachedArgsNum_)
555                         --attachedArgsNum_;
556                 if (size_t(pos) < optionals_) {
557                         --optionals_;
558                 }
559
560                 needsUpdate_ = true;
561         }
562 }
563
564
565 void MathMacro::insertArgument(Inset::pos_type pos) {
566         if (displayMode_ == DISPLAY_NORMAL) {
567                 LASSERT(size_t(pos) <= cells_.size(), /**/);
568                 cells_.insert(cells_.begin() + pos, MathData());
569                 if (size_t(pos) < attachedArgsNum_)
570                         ++attachedArgsNum_;
571                 if (size_t(pos) < optionals_)
572                         ++optionals_;
573
574                 needsUpdate_ = true;
575         }
576 }
577
578
579 void MathMacro::detachArguments(vector<MathData> & args, bool strip)
580 {
581         LASSERT(displayMode_ == DISPLAY_NORMAL, /**/);  
582         args = cells_;
583
584         // strip off empty cells, but not more than arity-attachedArgsNum_
585         if (strip) {
586                 size_t i;
587                 for (i = cells_.size(); i > attachedArgsNum_; --i)
588                         if (!cell(i - 1).empty()) break;
589                 args.resize(i);
590         }
591
592         attachedArgsNum_ = 0;
593         expanded_.cell(0) = MathData();
594         cells_.resize(0);
595
596         needsUpdate_ = true;
597 }
598
599
600 void MathMacro::attachArguments(vector<MathData> const & args, size_t arity, int optionals)
601 {
602         LASSERT(displayMode_ == DISPLAY_NORMAL, /**/);
603         cells_ = args;
604         attachedArgsNum_ = args.size();
605         cells_.resize(arity);
606         expanded_.cell(0) = MathData();
607         optionals_ = optionals;
608
609         needsUpdate_ = true;
610 }
611
612
613 bool MathMacro::idxFirst(Cursor & cur) const 
614 {
615         cur.updateFlags(Update::SinglePar);
616         return InsetMathNest::idxFirst(cur);
617 }
618
619
620 bool MathMacro::idxLast(Cursor & cur) const 
621 {
622         cur.updateFlags(Update::SinglePar);
623         return InsetMathNest::idxLast(cur);
624 }
625
626
627 bool MathMacro::notifyCursorLeaves(Cursor const & old, Cursor & cur)
628 {
629         cur.updateFlags(Update::Force);
630         return InsetMathNest::notifyCursorLeaves(old, cur);
631 }
632
633
634 void MathMacro::fold(Cursor & cur)
635 {
636         if (!nextFoldMode_) {
637                 nextFoldMode_ = true;
638                 cur.updateFlags(Update::SinglePar);
639         }
640 }
641
642
643 void MathMacro::unfold(Cursor & cur)
644 {
645         if (nextFoldMode_) {
646                 nextFoldMode_ = false;
647                 cur.updateFlags(Update::SinglePar);
648         }
649 }
650
651
652 bool MathMacro::folded() const
653 {
654         return nextFoldMode_;
655 }
656
657
658 void MathMacro::write(WriteStream & os) const
659 {
660         MathEnsurer ensurer(os, macro_ != 0, true);
661
662         // non-normal mode
663         if (displayMode_ != DISPLAY_NORMAL) {
664                 os << "\\" << name();
665                 if (name().size() != 1 || isAlphaASCII(name()[0]))
666                         os.pendingSpace(true);
667                 return;
668         }
669
670         // normal mode
671         LASSERT(macro_, /**/);
672
673         // optional arguments make macros fragile
674         if (optionals_ > 0 && os.fragile())
675                 os << "\\protect";
676         
677         os << "\\" << name();
678         bool first = true;
679         
680         // Optional arguments:
681         // First find last non-empty optional argument
682         idx_type emptyOptFrom = 0;
683         idx_type i = 0;
684         for (; i < cells_.size() && i < optionals_; ++i) {
685                 if (!cell(i).empty())
686                         emptyOptFrom = i + 1;
687         }
688         
689         // print out optionals
690         for (i=0; i < cells_.size() && i < emptyOptFrom; ++i) {
691                 first = false;
692                 os << "[" << cell(i) << "]";
693         }
694         
695         // skip the tailing empty optionals
696         i = optionals_;
697         
698         // Print remaining macros 
699         for (; i < cells_.size(); ++i) {
700                 if (cell(i).size() == 1 
701                         && cell(i)[0].nucleus()->asCharInset()
702                         && cell(i)[0].nucleus()->asCharInset()->getChar() < 0x80) {
703                         if (first)
704                                 os << " ";
705                         os << cell(i);
706                 } else
707                         os << "{" << cell(i) << "}";
708                 first = false;
709         }
710
711         // add space if there was no argument
712         if (first)
713                 os.pendingSpace(true);
714 }
715
716
717 void MathMacro::maple(MapleStream & os) const
718 {
719         lyx::maple(expanded_.cell(0), os);
720 }
721
722
723 void MathMacro::mathmlize(MathStream & os) const
724 {
725         lyx::mathmlize(expanded_.cell(0), os);
726 }
727
728
729 void MathMacro::octave(OctaveStream & os) const
730 {
731         lyx::octave(expanded_.cell(0), os);
732 }
733
734
735 void MathMacro::infoize(odocstream & os) const
736 {
737         os << "Macro: " << name();
738 }
739
740
741 void MathMacro::infoize2(odocstream & os) const
742 {
743         os << "Macro: " << name();
744
745 }
746
747
748 bool MathMacro::completionSupported(Cursor const & cur) const
749 {
750         if (displayMode() != DISPLAY_UNFOLDED)
751                 return InsetMathNest::completionSupported(cur);
752
753         return lyxrc.completion_popup_math
754                 && displayMode() == DISPLAY_UNFOLDED
755                 && cur.bv().cursor().pos() == int(name().size());
756 }
757
758
759 bool MathMacro::inlineCompletionSupported(Cursor const & cur) const
760 {
761         if (displayMode() != DISPLAY_UNFOLDED)
762                 return InsetMathNest::inlineCompletionSupported(cur);
763
764         return lyxrc.completion_inline_math
765                 && displayMode() == DISPLAY_UNFOLDED
766                 && cur.bv().cursor().pos() == int(name().size());
767 }
768
769
770 bool MathMacro::automaticInlineCompletion() const
771 {
772         if (displayMode() != DISPLAY_UNFOLDED)
773                 return InsetMathNest::automaticInlineCompletion();
774
775         return lyxrc.completion_inline_math;
776 }
777
778
779 bool MathMacro::automaticPopupCompletion() const
780 {
781         if (displayMode() != DISPLAY_UNFOLDED)
782                 return InsetMathNest::automaticPopupCompletion();
783
784         return lyxrc.completion_popup_math;
785 }
786
787
788 CompletionList const * 
789 MathMacro::createCompletionList(Cursor const & cur) const
790 {
791         if (displayMode() != DISPLAY_UNFOLDED)
792                 return InsetMathNest::createCompletionList(cur);
793
794         return new MathCompletionList(cur.bv().cursor());
795 }
796
797
798 docstring MathMacro::completionPrefix(Cursor const & cur) const
799 {
800         if (displayMode() != DISPLAY_UNFOLDED)
801                 return InsetMathNest::completionPrefix(cur);
802
803         if (!completionSupported(cur))
804                 return docstring();
805         
806         return "\\" + name();
807 }
808
809
810 bool MathMacro::insertCompletion(Cursor & cur, docstring const & s,
811                                         bool finished)
812 {
813         if (displayMode() != DISPLAY_UNFOLDED)
814                 return InsetMathNest::insertCompletion(cur, s, finished);
815
816         if (!completionSupported(cur))
817                 return false;
818
819         // append completion
820         docstring newName = name() + s;
821         asArray(newName, cell(0));
822         cur.bv().cursor().pos() = name().size();
823         cur.updateFlags(Update::SinglePar);
824         
825         // finish macro
826         if (finished) {
827                 cur.bv().cursor().pop();
828                 ++cur.bv().cursor().pos();
829                 cur.updateFlags(Update::SinglePar);
830         }
831         
832         return true;
833 }
834
835
836 void MathMacro::completionPosAndDim(Cursor const & cur, int & x, int & y,
837         Dimension & dim) const
838 {
839         if (displayMode() != DISPLAY_UNFOLDED)
840                 InsetMathNest::completionPosAndDim(cur, x, y, dim);
841         
842         // get inset dimensions
843         dim = cur.bv().coordCache().insets().dim(this);
844         // FIXME: these 3 are no accurate, but should depend on the font.
845         // Now the popup jumps down if you enter a char with descent > 0.
846         dim.des += 3;
847         dim.asc += 3;
848         
849         // and position
850         Point xy
851         = cur.bv().coordCache().insets().xy(this);
852         x = xy.x_;
853         y = xy.y_;
854 }
855
856
857 } // namespace lyx