]> git.lyx.org Git - lyx.git/blob - src/mathed/MathMacro.cpp
Make sure not to use a pointer that may be bogus
[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 "MathFactory.h"
21 #include "MathStream.h"
22 #include "MathSupport.h"
23
24 #include "Buffer.h"
25 #include "BufferView.h"
26 #include "CoordCache.h"
27 #include "Cursor.h"
28 #include "FuncStatus.h"
29 #include "FuncRequest.h"
30 #include "LaTeXFeatures.h"
31 #include "LyX.h"
32 #include "LyXRC.h"
33 #include "MetricsInfo.h"
34
35 #include "frontends/Painter.h"
36
37 #include "support/debug.h"
38 #include "support/gettext.h"
39 #include "support/lassert.h"
40 #include "support/lstrings.h"
41 #include "support/textutils.h"
42
43 #include <ostream>
44 #include <vector>
45
46 using namespace lyx::support;
47 using namespace std;
48
49 namespace lyx {
50
51
52 /// A proxy for the macro values
53 class ArgumentProxy : public InsetMath {
54 public:
55         ///
56         ArgumentProxy(MathMacro * mathMacro, size_t idx)
57                 : mathMacro_(mathMacro), idx_(idx) {}
58         ///
59         ArgumentProxy(MathMacro * mathMacro, size_t idx, docstring const & def)
60                 : mathMacro_(mathMacro), idx_(idx)
61         {
62                         asArray(def, def_);
63         }
64         ///
65         void setOwner(MathMacro * mathMacro) { mathMacro_ = mathMacro; }
66         ///
67         MathMacro const * owner() { return mathMacro_; }
68         ///
69         InsetCode lyxCode() const { return ARGUMENT_PROXY_CODE; }
70         ///
71         void metrics(MetricsInfo & mi, Dimension & dim) const {
72                 mathMacro_->macro()->unlock();
73                 mathMacro_->cell(idx_).metrics(mi, dim);
74
75                 if (!mathMacro_->editMetrics(mi.base.bv)
76                     && mathMacro_->cell(idx_).empty())
77                         def_.metrics(mi, dim);
78
79                 mathMacro_->macro()->lock();
80         }
81         // write(), normalize(), infoize() and infoize2() are not needed since
82         // MathMacro uses the definition and not the expanded cells.
83         ///
84         void maple(MapleStream & ms) const { ms << mathMacro_->cell(idx_); }
85         ///
86         void maxima(MaximaStream & ms) const { ms << mathMacro_->cell(idx_); }
87         ///
88         void mathematica(MathematicaStream & ms) const { ms << mathMacro_->cell(idx_); }
89         ///
90         void mathmlize(MathStream & ms) const { ms << mathMacro_->cell(idx_); }
91         ///
92         void htmlize(HtmlStream & ms) const { ms << mathMacro_->cell(idx_); }
93         ///
94         void octave(OctaveStream & os) const { os << mathMacro_->cell(idx_); }
95         ///
96         void draw(PainterInfo & pi, int x, int y) const {
97                 if (mathMacro_->editMetrics(pi.base.bv)) {
98                         // The only way a ArgumentProxy can appear is in a cell of the
99                         // MathMacro. Moreover the cells are only drawn in the DISPLAY_FOLDED
100                         // mode and then, if the macro is edited the monochrome
101                         // mode is entered by the MathMacro before calling the cells' draw
102                         // method. Then eventually this code is reached and the proxy leaves
103                         // monochrome mode temporarely. Hence, if it is not in monochrome
104                         // here (and the assert triggers in pain.leaveMonochromeMode())
105                         // it's a bug.
106                         pi.pain.leaveMonochromeMode();
107                         mathMacro_->cell(idx_).draw(pi, x, y);
108                         pi.pain.enterMonochromeMode(Color_mathbg, Color_mathmacroblend);
109                 } else if (mathMacro_->cell(idx_).empty()) {
110                         mathMacro_->cell(idx_).setXY(*pi.base.bv, x, y);
111                         def_.draw(pi, x, y);
112                 } else
113                         mathMacro_->cell(idx_).draw(pi, x, y);
114         }
115         ///
116         size_t idx() const { return idx_; }
117         ///
118         int kerning(BufferView const * bv) const
119         {
120                 if (mathMacro_->editMetrics(bv)
121                     || !mathMacro_->cell(idx_).empty())
122                         return mathMacro_->cell(idx_).kerning(bv);
123                 else
124                         return def_.kerning(bv);
125         }
126
127 private:
128         ///
129         Inset * clone() const
130         {
131                 return new ArgumentProxy(*this);
132         }
133         ///
134         MathMacro * mathMacro_;
135         ///
136         size_t idx_;
137         ///
138         MathData def_;
139 };
140
141
142 /// Private implementation of MathMacro
143 class MathMacro::Private {
144 public:
145         Private(Buffer * buf, docstring const & name)
146                 : name_(name), displayMode_(DISPLAY_INIT),
147                   expanded_(buf), definition_(buf), attachedArgsNum_(0),
148                   optionals_(0), nextFoldMode_(true), macroBackup_(buf),
149                   macro_(0), needsUpdate_(false), isUpdating_(false),
150                   appetite_(9)
151         {
152         }
153         /// Update the pointers to our owner of all expanded macros.
154         /// This needs to be called every time a copy of the owner is created
155         /// (bug 9418).
156         void updateChildren(MathMacro * owner);
157         /// Recursively update the pointers of all expanded macros
158         /// appearing in the arguments of the current macro
159         void updateNestedChildren(MathMacro * owner, InsetMathNest * ni);
160         /// name of macro
161         docstring name_;
162         /// current display mode
163         DisplayMode displayMode_;
164         /// expanded macro with ArgumentProxies
165         MathData expanded_;
166         /// macro definition with #1,#2,.. insets
167         MathData definition_;
168         /// number of arguments that were really attached
169         size_t attachedArgsNum_;
170         /// optional argument attached? (only in DISPLAY_NORMAL mode)
171         size_t optionals_;
172         /// fold mode to be set in next metrics call?
173         bool nextFoldMode_;
174         /// if macro_ == true, then here is a copy of the macro
175         /// don't use it for locking
176         MacroData macroBackup_;
177         /// if macroNotFound_ == false, then here is a reference to the macro
178         /// this might invalidate after metrics was called
179         MacroData const * macro_;
180         ///
181         mutable std::map<BufferView const *, bool> editing_;
182         ///
183         std::string requires_;
184         /// update macro representation
185         bool needsUpdate_;
186         ///
187         bool isUpdating_;
188         /// maximal number of arguments the macro is greedy for
189         size_t appetite_;
190 };
191
192
193 void MathMacro::Private::updateChildren(MathMacro * owner)
194 {
195         for (size_t i = 0; i < expanded_.size(); ++i) {
196                 ArgumentProxy * p = dynamic_cast<ArgumentProxy *>(expanded_[i].nucleus());
197                 if (p)
198                         p->setOwner(owner);
199
200                 InsetMathNest * ni = expanded_[i].nucleus()->asNestInset();
201                 if (ni)
202                         updateNestedChildren(owner, ni);
203         }
204
205         if (macro_) {
206                 // The macro_ pointer is updated when MathData::metrics() is
207                 // called. However, when instant preview is on or the macro is
208                 // not on screen, MathData::metrics() is not called and we may
209                 // have a dangling pointer. As a safety measure, when a macro
210                 // is copied, always let macro_ point to the backup copy of the
211                 // MacroData structure. This backup is updated every time the
212                 // macro is changed, so it will not become stale.
213                 macro_ = &macroBackup_;
214         }
215 }
216
217
218 void MathMacro::Private::updateNestedChildren(MathMacro * owner, InsetMathNest * ni)
219 {
220         for (size_t i = 0; i < ni->nargs(); ++i) {
221                 MathData & ar = ni->cell(i);
222                 for (size_t j = 0; j < ar.size(); ++j) {
223                         ArgumentProxy * ap = dynamic_cast
224                                 <ArgumentProxy *>(ar[j].nucleus());
225                         if (ap) {
226                                 MathMacro::Private * md = ap->owner()->d;
227                                 if (md->macro_)
228                                         md->macro_ = &md->macroBackup_;
229                                 ap->setOwner(owner);
230                         }
231                         InsetMathNest * imn = ar[j].nucleus()->asNestInset();
232                         if (imn)
233                                 updateNestedChildren(owner, imn);
234                 }
235         }
236 }
237
238
239 MathMacro::MathMacro(Buffer * buf, docstring const & name)
240         : InsetMathNest(buf, 0), d(new Private(buf, name))
241 {}
242
243
244 MathMacro::MathMacro(MathMacro const & that)
245         : InsetMathNest(that), d(new Private(*that.d))
246 {
247         setBuffer(*that.buffer_);
248         d->updateChildren(this);
249 }
250
251
252 MathMacro & MathMacro::operator=(MathMacro const & that)
253 {
254         if (&that == this)
255                 return *this;
256         InsetMathNest::operator=(that);
257         *d = *that.d;
258         d->updateChildren(this);
259         return *this;
260 }
261
262
263 MathMacro::~MathMacro()
264 {
265         delete d;
266 }
267
268
269 Inset * MathMacro::clone() const
270 {
271         MathMacro * copy = new MathMacro(*this);
272         copy->d->needsUpdate_ = true;
273         //copy->d->expanded_.clear();
274         return copy;
275 }
276
277
278 void MathMacro::normalize(NormalStream & os) const
279 {
280         os << "[macro " << name();
281         for (size_t i = 0; i < nargs(); ++i)
282                 os << ' ' << cell(i);
283         os << ']';
284 }
285
286
287 MathMacro::DisplayMode MathMacro::displayMode() const
288 {
289         return d->displayMode_;
290 }
291
292
293 bool MathMacro::extraBraces() const
294 {
295         return d->displayMode_ == DISPLAY_NORMAL && arity() > 0;
296 }
297
298
299 docstring MathMacro::name() const
300 {
301         if (d->displayMode_ == DISPLAY_UNFOLDED)
302                 return asString(cell(0));
303
304         return d->name_;
305 }
306
307
308 docstring MathMacro::macroName() const
309 {
310         return d->name_;
311 }
312
313
314 void MathMacro::cursorPos(BufferView const & bv,
315                 CursorSlice const & sl, bool boundary, int & x, int & y) const
316 {
317         // We may have 0 arguments, but InsetMathNest requires at least one.
318         if (nargs() > 0)
319                 InsetMathNest::cursorPos(bv, sl, boundary, x, y);
320 }
321
322
323 bool MathMacro::editMode(BufferView const * bv) const {
324         // find this in cursor trace
325         Cursor const & cur = bv->cursor();
326         for (size_t i = 0; i != cur.depth(); ++i)
327                 if (&cur[i].inset() == this) {
328                         // look if there is no other macro in edit mode above
329                         ++i;
330                         for (; i != cur.depth(); ++i) {
331                                 InsetMath * im = cur[i].asInsetMath();
332                                 if (im) {
333                                         MathMacro const * macro = im->asMacro();
334                                         if (macro && macro->displayMode() == DISPLAY_NORMAL)
335                                                 return false;
336                                 }
337                         }
338
339                         // ok, none found, I am the highest one
340                         return true;
341                 }
342
343         return false;
344 }
345
346
347 MacroData const * MathMacro::macro()
348 {
349         return d->macro_;
350 }
351
352
353 bool MathMacro::editMetrics(BufferView const * bv) const
354 {
355         return d->editing_[bv];
356 }
357
358
359 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
360 {
361         // set edit mode for which we will have calculated metrics. But only
362         d->editing_[mi.base.bv] = editMode(mi.base.bv);
363
364         // calculate new metrics according to display mode
365         if (d->displayMode_ == DISPLAY_INIT || d->displayMode_ == DISPLAY_INTERACTIVE_INIT) {
366                 mathed_string_dim(mi.base.font, from_ascii("\\") + name(), dim);
367         } else if (d->displayMode_ == DISPLAY_UNFOLDED) {
368                 cell(0).metrics(mi, dim);
369                 Dimension bsdim;
370                 mathed_string_dim(mi.base.font, from_ascii("\\"), bsdim);
371                 dim.wid += bsdim.width() + 1;
372                 dim.asc = max(bsdim.ascent(), dim.ascent());
373                 dim.des = max(bsdim.descent(), dim.descent());
374                 metricsMarkers(dim);
375         } else if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_LIST
376                    && d->editing_[mi.base.bv]) {
377                 // Macro will be edited in a old-style list mode here:
378
379                 LBUFERR(d->macro_);
380                 Dimension fontDim;
381                 FontInfo labelFont = sane_font;
382                 math_font_max_dim(labelFont, fontDim.asc, fontDim.des);
383
384                 // get dimension of components of list view
385                 Dimension nameDim;
386                 nameDim.wid = mathed_string_width(mi.base.font, from_ascii("Macro \\") + name() + ": ");
387                 nameDim.asc = fontDim.asc;
388                 nameDim.des = fontDim.des;
389
390                 Dimension argDim;
391                 argDim.wid = mathed_string_width(labelFont, from_ascii("#9: "));
392                 argDim.asc = fontDim.asc;
393                 argDim.des = fontDim.des;
394
395                 Dimension defDim;
396                 d->definition_.metrics(mi, defDim);
397
398                 // add them up
399                 dim.wid = nameDim.wid + defDim.wid;
400                 dim.asc = max(nameDim.asc, defDim.asc);
401                 dim.des = max(nameDim.des, defDim.des);
402
403                 for (idx_type i = 0; i < nargs(); ++i) {
404                         Dimension cdim;
405                         cell(i).metrics(mi, cdim);
406                         dim.des += max(argDim.height(), cdim.height()) + 1;
407                         dim.wid = max(dim.wid, argDim.wid + cdim.wid);
408                 }
409
410                 // make space for box and markers, 2 pixels
411                 dim.asc += 1;
412                 dim.des += 1;
413                 dim.wid += 2;
414                 metricsMarkers2(dim);
415         } else {
416                 LBUFERR(d->macro_);
417
418                 // calculate metrics, hoping that all cells are seen
419                 d->macro_->lock();
420                 d->expanded_.metrics(mi, dim);
421
422                 // otherwise do a manual metrics call
423                 CoordCache & coords = mi.base.bv->coordCache();
424                 for (idx_type i = 0; i < nargs(); ++i) {
425                         if (!coords.getArrays().hasDim(&cell(i))) {
426                                 Dimension tdim;
427                                 cell(i).metrics(mi, tdim);
428                         }
429                 }
430                 d->macro_->unlock();
431
432                 // calculate dimension with label while editing
433                 if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX
434                     && d->editing_[mi.base.bv]) {
435                         FontInfo font = mi.base.font;
436                         augmentFont(font, "lyxtex");
437                         Dimension namedim;
438                         mathed_string_dim(font, name(), namedim);
439 #if 0
440                         dim.wid += 2 + namedim.wid + 2 + 2;
441                         dim.asc = max(dim.asc, namedim.asc) + 2;
442                         dim.des = max(dim.des, namedim.des) + 2;
443 #endif
444                         dim.wid = max(1 + namedim.wid + 1, 2 + dim.wid + 2);
445                         dim.asc += 1 + namedim.height() + 1;
446                         dim.des += 2;
447                 }
448         }
449 }
450
451
452 int MathMacro::kerning(BufferView const * bv) const {
453         if (d->displayMode_ == DISPLAY_NORMAL && !d->editing_[bv])
454                 return d->expanded_.kerning(bv);
455         else
456                 return 0;
457 }
458
459
460 void MathMacro::updateMacro(MacroContext const & mc)
461 {
462         if (validName()) {
463                 d->macro_ = mc.get(name());
464                 if (d->macro_ && d->macroBackup_ != *d->macro_) {
465                         d->macroBackup_ = *d->macro_;
466                         d->needsUpdate_ = true;
467                 }
468         } else {
469                 d->macro_ = 0;
470         }
471 }
472
473
474 class MathMacro::UpdateLocker
475 {
476 public:
477         explicit UpdateLocker(MathMacro & mm) : mac(mm)
478         {
479                 mac.d->isUpdating_ = true;
480         }
481         ~UpdateLocker() { mac.d->isUpdating_ = false; }
482 private:
483         MathMacro & mac;
484 };
485 /** Avoid wrong usage of UpdateLocker.
486     To avoid wrong usage:
487     UpdateLocker(...); // wrong
488     UpdateLocker locker(...); // right
489 */
490 #define UpdateLocker(x) unnamed_UpdateLocker;
491 // Tip gotten from Bobby Schmidt's column in C/C++ Users Journal
492
493
494 void MathMacro::updateRepresentation(Cursor * cur, MacroContext const & mc,
495                 UpdateType utype)
496 {
497         // block recursive calls (bug 8999)
498         if (d->isUpdating_)
499                 return;
500
501         UpdateLocker locker(*this);
502
503         // known macro?
504         if (d->macro_ == 0)
505                 return;
506
507         // update requires
508         d->requires_ = d->macro_->requires();
509
510         if (!d->needsUpdate_
511                 // non-normal mode? We are done!
512                 || (d->displayMode_ != DISPLAY_NORMAL))
513                 return;
514
515         d->needsUpdate_ = false;
516
517         // get default values of macro
518         vector<docstring> const & defaults = d->macro_->defaults();
519
520         // create MathMacroArgumentValue objects pointing to the cells of the macro
521         vector<MathData> values(nargs());
522         for (size_t i = 0; i < nargs(); ++i) {
523                 ArgumentProxy * proxy;
524                 if (i < defaults.size())
525                         proxy = new ArgumentProxy(this, i, defaults[i]);
526                 else
527                         proxy = new ArgumentProxy(this, i);
528                 values[i].insert(0, MathAtom(proxy));
529         }
530         // expanding macro with the values
531         // Only update the argument macros if anything was expanded, otherwise
532         // we would get an endless loop (bug 9140). UpdateLocker does not work
533         // in this case, since MacroData::expand() creates new MathMacro
534         // objects, so this would be a different recursion path than the one
535         // protected by UpdateLocker.
536         if (d->macro_->expand(values, d->expanded_)) {
537                 if (utype == OutputUpdate && !d->expanded_.empty())
538                         d->expanded_.updateMacros(cur, mc, utype);
539         }
540         // get definition for list edit mode
541         docstring const & display = d->macro_->display();
542         asArray(display.empty() ? d->macro_->definition() : display, d->definition_);
543 }
544
545
546 void MathMacro::draw(PainterInfo & pi, int x, int y) const
547 {
548         Dimension const dim = dimension(*pi.base.bv);
549
550         setPosCache(pi, x, y);
551         int expx = x;
552         int expy = y;
553
554         if (d->displayMode_ == DISPLAY_INIT || d->displayMode_ == DISPLAY_INTERACTIVE_INIT) {
555                 Changer dummy = pi.base.changeFontSet("lyxtex");
556                 pi.pain.text(x, y, from_ascii("\\") + name(), pi.base.font);
557         } else if (d->displayMode_ == DISPLAY_UNFOLDED) {
558                 Changer dummy = pi.base.changeFontSet("lyxtex");
559                 pi.pain.text(x, y, from_ascii("\\"), pi.base.font);
560                 x += mathed_string_width(pi.base.font, from_ascii("\\")) + 1;
561                 cell(0).draw(pi, x, y);
562                 drawMarkers(pi, expx, expy);
563         } else if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_LIST
564                    && d->editing_[pi.base.bv]) {
565                 // Macro will be edited in a old-style list mode here:
566
567                 CoordCache const & coords = pi.base.bv->coordCache();
568                 FontInfo const & labelFont = sane_font;
569
570                 // markers and box needs two pixels
571                 x += 2;
572
573                 // get maximal font height
574                 Dimension fontDim;
575                 math_font_max_dim(pi.base.font, fontDim.asc, fontDim.des);
576
577                 // draw label
578                 docstring label = from_ascii("Macro \\") + name() + from_ascii(": ");
579                 pi.pain.text(x, y, label, labelFont);
580                 x += mathed_string_width(labelFont, label);
581
582                 // draw definition
583                 d->definition_.draw(pi, x, y);
584                 Dimension const & defDim = coords.getArrays().dim(&d->definition_);
585                 y += max(fontDim.des, defDim.des);
586
587                 // draw parameters
588                 docstring str = from_ascii("#9");
589                 int strw1 = mathed_string_width(labelFont, from_ascii("#9"));
590                 int strw2 = mathed_string_width(labelFont, from_ascii(": "));
591
592                 for (idx_type i = 0; i < nargs(); ++i) {
593                         // position of label
594                         Dimension const & cdim = coords.getArrays().dim(&cell(i));
595                         x = expx + 2;
596                         y += max(fontDim.asc, cdim.asc) + 1;
597
598                         // draw label
599                         str[1] = '1' + i;
600                         pi.pain.text(x, y, str, labelFont);
601                         x += strw1;
602                         pi.pain.text(x, y, from_ascii(":"), labelFont);
603                         x += strw2;
604
605                         // draw paramter
606                         cell(i).draw(pi, x, y);
607
608                         // next line
609                         y += max(fontDim.des, cdim.des);
610                 }
611
612                 pi.pain.rectangle(expx + 1, expy - dim.asc + 1, dim.wid - 3,
613                                   dim.height() - 2, Color_mathmacroframe);
614                 drawMarkers2(pi, expx, expy);
615         } else {
616                 bool drawBox = lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX;
617                 MacroData const * macro = MacroTable::globalMacros().get(name());
618                 bool upshape = macro && macro->symbol()
619                                 && macro->symbol()->extra == "textmode";
620                 Changer dummy = pi.base.font.changeShape(upshape ? UP_SHAPE
621                                                         : pi.base.font.shape());
622
623                 // warm up cells
624                 for (size_t i = 0; i < nargs(); ++i)
625                         cell(i).setXY(*pi.base.bv, x, y);
626
627                 if (drawBox && d->editing_[pi.base.bv]) {
628                         // draw header and rectangle around
629                         FontInfo font = pi.base.font;
630                         augmentFont(font, "lyxtex");
631                         font.setSize(FONT_SIZE_TINY);
632                         font.setColor(Color_mathmacrolabel);
633                         Dimension namedim;
634                         mathed_string_dim(font, name(), namedim);
635
636                         pi.pain.fillRectangle(x, y - dim.asc, dim.wid, 1 + namedim.height() + 1, Color_mathmacrobg);
637                         pi.pain.text(x + 1, y - dim.asc + namedim.asc + 2, name(), font);
638                         expx += (dim.wid - d->expanded_.dimension(*pi.base.bv).width()) / 2;
639                 }
640
641                 if (d->editing_[pi.base.bv]) {
642                         pi.pain.enterMonochromeMode(Color_mathbg, Color_mathmacroblend);
643                         d->expanded_.draw(pi, expx, expy);
644                         pi.pain.leaveMonochromeMode();
645
646                         if (drawBox)
647                                 pi.pain.rectangle(x, y - dim.asc, dim.wid,
648                                                   dim.height(), Color_mathmacroframe);
649                 } else
650                         d->expanded_.draw(pi, expx, expy);
651
652                 if (!drawBox)
653                         drawMarkers(pi, x, y);
654         }
655
656         // edit mode changed?
657         if (d->editing_[pi.base.bv] != editMode(pi.base.bv))
658                 pi.base.bv->cursor().screenUpdateFlags(Update::SinglePar);
659 }
660
661
662 void MathMacro::drawSelection(PainterInfo & pi, int x, int y) const
663 {
664         // We may have 0 arguments, but InsetMathNest requires at least one.
665         if (!cells_.empty())
666                 InsetMathNest::drawSelection(pi, x, y);
667 }
668
669
670 void MathMacro::setDisplayMode(MathMacro::DisplayMode mode, int appetite)
671 {
672         if (d->displayMode_ != mode) {
673                 // transfer name if changing from or to DISPLAY_UNFOLDED
674                 if (mode == DISPLAY_UNFOLDED) {
675                         cells_.resize(1);
676                         asArray(d->name_, cell(0));
677                 } else if (d->displayMode_ == DISPLAY_UNFOLDED) {
678                         d->name_ = asString(cell(0));
679                         cells_.resize(0);
680                 }
681
682                 d->displayMode_ = mode;
683                 d->needsUpdate_ = true;
684         }
685
686         // the interactive init mode is non-greedy by default
687         if (appetite == -1)
688                 d->appetite_ = (mode == DISPLAY_INTERACTIVE_INIT) ? 0 : 9;
689         else
690                 d->appetite_ = size_t(appetite);
691 }
692
693
694 MathMacro::DisplayMode MathMacro::computeDisplayMode() const
695 {
696         if (d->nextFoldMode_ == true && d->macro_ && !d->macro_->locked())
697                 return DISPLAY_NORMAL;
698         else
699                 return DISPLAY_UNFOLDED;
700 }
701
702
703 bool MathMacro::validName() const
704 {
705         docstring n = name();
706
707         if (n.empty())
708                 return false;
709
710         // converting back and force doesn't swallow anything?
711         /*MathData ma;
712         asArray(n, ma);
713         if (asString(ma) != n)
714                 return false;*/
715
716         // valid characters?
717         for (size_t i = 0; i<n.size(); ++i) {
718                 if (!(n[i] >= 'a' && n[i] <= 'z')
719                     && !(n[i] >= 'A' && n[i] <= 'Z')
720                     && n[i] != '*')
721                         return false;
722         }
723
724         return true;
725 }
726
727
728 size_t MathMacro::arity() const
729 {
730         if (d->displayMode_ == DISPLAY_NORMAL )
731                 return cells_.size();
732         else
733                 return 0;
734 }
735
736
737 size_t MathMacro::optionals() const
738 {
739         return d->optionals_;
740 }
741
742
743 void MathMacro::setOptionals(int n)
744 {
745         if (n <= int(nargs()))
746                 d->optionals_ = n;
747 }
748
749
750 size_t MathMacro::appetite() const
751 {
752         return d->appetite_;
753 }
754
755
756 void MathMacro::validate(LaTeXFeatures & features) const
757 {
758         // Immediately after a document is loaded, in some cases the MacroData
759         // of the global macros defined in the lib/symbols file may still not
760         // be known to the macro machinery because it will be set only after
761         // the first call to updateMacros(). This is not a problem unless
762         // instant preview is on for math, in which case we will be missing
763         // the corresponding requirements.
764         // In this case, we get the required info from the global macro table.
765         if (!d->requires_.empty())
766                 features.require(d->requires_);
767         else if (!d->macro_) {
768                 // Update requires for known global macros.
769                 MacroData const * data = MacroTable::globalMacros().get(name());
770                 if (data && !data->requires().empty())
771                         features.require(data->requires());
772         }
773
774         if (name() == "binom")
775                 features.require("binom");
776
777         // validate the cells and the definition
778         if (displayMode() == DISPLAY_NORMAL) {
779                 d->definition_.validate(features);
780                 InsetMathNest::validate(features);
781         }
782 }
783
784
785 void MathMacro::edit(Cursor & cur, bool front, EntryDirection entry_from)
786 {
787         cur.screenUpdateFlags(Update::SinglePar);
788         InsetMathNest::edit(cur, front, entry_from);
789 }
790
791
792 Inset * MathMacro::editXY(Cursor & cur, int x, int y)
793 {
794         // We may have 0 arguments, but InsetMathNest requires at least one.
795         if (nargs() > 0) {
796                 cur.screenUpdateFlags(Update::SinglePar);
797                 return InsetMathNest::editXY(cur, x, y);
798         } else
799                 return this;
800 }
801
802
803 void MathMacro::removeArgument(Inset::pos_type pos) {
804         if (d->displayMode_ == DISPLAY_NORMAL) {
805                 LASSERT(size_t(pos) < cells_.size(), return);
806                 cells_.erase(cells_.begin() + pos);
807                 if (size_t(pos) < d->attachedArgsNum_)
808                         --d->attachedArgsNum_;
809                 if (size_t(pos) < d->optionals_) {
810                         --d->optionals_;
811                 }
812
813                 d->needsUpdate_ = true;
814         }
815 }
816
817
818 void MathMacro::insertArgument(Inset::pos_type pos) {
819         if (d->displayMode_ == DISPLAY_NORMAL) {
820                 LASSERT(size_t(pos) <= cells_.size(), return);
821                 cells_.insert(cells_.begin() + pos, MathData());
822                 if (size_t(pos) < d->attachedArgsNum_)
823                         ++d->attachedArgsNum_;
824                 if (size_t(pos) < d->optionals_)
825                         ++d->optionals_;
826
827                 d->needsUpdate_ = true;
828         }
829 }
830
831
832 void MathMacro::detachArguments(vector<MathData> & args, bool strip)
833 {
834         LASSERT(d->displayMode_ == DISPLAY_NORMAL, return);
835         args = cells_;
836
837         // strip off empty cells, but not more than arity-attachedArgsNum_
838         if (strip) {
839                 size_t i;
840                 for (i = cells_.size(); i > d->attachedArgsNum_; --i)
841                         if (!cell(i - 1).empty()) break;
842                 args.resize(i);
843         }
844
845         d->attachedArgsNum_ = 0;
846         d->expanded_ = MathData();
847         cells_.resize(0);
848
849         d->needsUpdate_ = true;
850 }
851
852
853 void MathMacro::attachArguments(vector<MathData> const & args, size_t arity, int optionals)
854 {
855         LASSERT(d->displayMode_ == DISPLAY_NORMAL, return);
856         cells_ = args;
857         d->attachedArgsNum_ = args.size();
858         cells_.resize(arity);
859         d->expanded_ = MathData();
860         d->optionals_ = optionals;
861
862         d->needsUpdate_ = true;
863 }
864
865
866 bool MathMacro::idxFirst(Cursor & cur) const
867 {
868         cur.screenUpdateFlags(Update::SinglePar);
869         return InsetMathNest::idxFirst(cur);
870 }
871
872
873 bool MathMacro::idxLast(Cursor & cur) const
874 {
875         cur.screenUpdateFlags(Update::SinglePar);
876         return InsetMathNest::idxLast(cur);
877 }
878
879
880 bool MathMacro::notifyCursorLeaves(Cursor const & old, Cursor & cur)
881 {
882         if (d->displayMode_ == DISPLAY_UNFOLDED) {
883                 docstring const & unfolded_name = name();
884                 if (unfolded_name != d->name_) {
885                         // The macro name was changed
886                         Cursor inset_cursor = old;
887                         int macroSlice = inset_cursor.find(this);
888                         // returning true means the cursor is "now" invalid,
889                         // which it was.
890                         LASSERT(macroSlice != -1, return true);
891                         inset_cursor.cutOff(macroSlice);
892                         inset_cursor.recordUndoInset();
893                         inset_cursor.pop();
894                         inset_cursor.cell().erase(inset_cursor.pos());
895                         inset_cursor.cell().insert(inset_cursor.pos(),
896                                 createInsetMath(unfolded_name, cur.buffer()));
897                         cur.resetAnchor();
898                         cur.screenUpdateFlags(cur.result().screenUpdate() | Update::SinglePar);
899                         return true;
900                 }
901         }
902         cur.screenUpdateFlags(Update::Force);
903         return InsetMathNest::notifyCursorLeaves(old, cur);
904 }
905
906
907 void MathMacro::fold(Cursor & cur)
908 {
909         if (!d->nextFoldMode_) {
910                 d->nextFoldMode_ = true;
911                 cur.screenUpdateFlags(Update::SinglePar);
912         }
913 }
914
915
916 void MathMacro::unfold(Cursor & cur)
917 {
918         if (d->nextFoldMode_) {
919                 d->nextFoldMode_ = false;
920                 cur.screenUpdateFlags(Update::SinglePar);
921         }
922 }
923
924
925 bool MathMacro::folded() const
926 {
927         return d->nextFoldMode_;
928 }
929
930
931 void MathMacro::write(WriteStream & os) const
932 {
933         MacroData const * macro = MacroTable::globalMacros().get(name());
934         bool textmode_macro = macro && macro->symbol()
935                                 && macro->symbol()->extra == "textmode";
936         bool needs_mathmode = macro && (!macro->symbol()
937                                 || macro->symbol()->extra != "textmode");
938
939         MathEnsurer ensurer(os, needs_mathmode, true, textmode_macro);
940
941         // non-normal mode
942         if (d->displayMode_ != DISPLAY_NORMAL) {
943                 os << "\\" << name();
944                 if (name().size() != 1 || isAlphaASCII(name()[0]))
945                         os.pendingSpace(true);
946                 return;
947         }
948
949         // normal mode
950         // we should be ok to continue even if this fails.
951         LATTEST(d->macro_);
952
953         // Always protect macros in a fragile environment
954         if (os.fragile())
955                 os << "\\protect";
956
957         os << "\\" << name();
958         bool first = true;
959
960         // Optional arguments:
961         // First find last non-empty optional argument
962         idx_type emptyOptFrom = 0;
963         idx_type i = 0;
964         for (; i < cells_.size() && i < d->optionals_; ++i) {
965                 if (!cell(i).empty())
966                         emptyOptFrom = i + 1;
967         }
968
969         // print out optionals
970         for (i=0; i < cells_.size() && i < emptyOptFrom; ++i) {
971                 first = false;
972                 os << "[" << cell(i) << "]";
973         }
974
975         // skip the tailing empty optionals
976         i = d->optionals_;
977
978         // Print remaining arguments
979         for (; i < cells_.size(); ++i) {
980                 if (cell(i).size() == 1
981                         && cell(i)[0].nucleus()->asCharInset()
982                         && isASCII(cell(i)[0].nucleus()->asCharInset()->getChar())) {
983                         if (first)
984                                 os << " ";
985                         os << cell(i);
986                 } else
987                         os << "{" << cell(i) << "}";
988                 first = false;
989         }
990
991         // add space if there was no argument
992         if (first)
993                 os.pendingSpace(true);
994 }
995
996
997 void MathMacro::maple(MapleStream & os) const
998 {
999         lyx::maple(d->expanded_, os);
1000 }
1001
1002
1003 void MathMacro::maxima(MaximaStream & os) const
1004 {
1005         lyx::maxima(d->expanded_, os);
1006 }
1007
1008
1009 void MathMacro::mathematica(MathematicaStream & os) const
1010 {
1011         lyx::mathematica(d->expanded_, os);
1012 }
1013
1014
1015 void MathMacro::mathmlize(MathStream & os) const
1016 {
1017         // macro_ is 0 if this is an unknown macro
1018         LATTEST(d->macro_ || d->displayMode_ != DISPLAY_NORMAL);
1019         if (d->macro_) {
1020                 docstring const xmlname = d->macro_->xmlname();
1021                 if (!xmlname.empty()) {
1022                         char const * type = d->macro_->MathMLtype();
1023                         os << '<' << type << "> " << xmlname << " </"
1024                            << type << '>';
1025                         return;
1026                 }
1027         }
1028         if (d->expanded_.empty()) {
1029                 // this means that we do not recognize the macro
1030                 throw MathExportException();
1031         }
1032         os << d->expanded_;
1033 }
1034
1035
1036 void MathMacro::htmlize(HtmlStream & os) const
1037 {
1038         // macro_ is 0 if this is an unknown macro
1039         LATTEST(d->macro_ || d->displayMode_ != DISPLAY_NORMAL);
1040         if (d->macro_) {
1041                 docstring const xmlname = d->macro_->xmlname();
1042                 if (!xmlname.empty()) {
1043                         os << ' ' << xmlname << ' ';
1044                         return;
1045                 }
1046         }
1047         if (d->expanded_.empty()) {
1048                 // this means that we do not recognize the macro
1049                 throw MathExportException();
1050         }
1051         os << d->expanded_;
1052 }
1053
1054
1055 void MathMacro::octave(OctaveStream & os) const
1056 {
1057         lyx::octave(d->expanded_, os);
1058 }
1059
1060
1061 void MathMacro::infoize(odocstream & os) const
1062 {
1063         os << bformat(_("Macro: %1$s"), name());
1064 }
1065
1066
1067 void MathMacro::infoize2(odocstream & os) const
1068 {
1069         os << bformat(_("Macro: %1$s"), name());
1070 }
1071
1072
1073 bool MathMacro::completionSupported(Cursor const & cur) const
1074 {
1075         if (displayMode() != DISPLAY_UNFOLDED)
1076                 return InsetMathNest::completionSupported(cur);
1077
1078         return lyxrc.completion_popup_math
1079                 && displayMode() == DISPLAY_UNFOLDED
1080                 && cur.bv().cursor().pos() == int(name().size());
1081 }
1082
1083
1084 bool MathMacro::inlineCompletionSupported(Cursor const & cur) const
1085 {
1086         if (displayMode() != DISPLAY_UNFOLDED)
1087                 return InsetMathNest::inlineCompletionSupported(cur);
1088
1089         return lyxrc.completion_inline_math
1090                 && displayMode() == DISPLAY_UNFOLDED
1091                 && cur.bv().cursor().pos() == int(name().size());
1092 }
1093
1094
1095 bool MathMacro::automaticInlineCompletion() const
1096 {
1097         if (displayMode() != DISPLAY_UNFOLDED)
1098                 return InsetMathNest::automaticInlineCompletion();
1099
1100         return lyxrc.completion_inline_math;
1101 }
1102
1103
1104 bool MathMacro::automaticPopupCompletion() const
1105 {
1106         if (displayMode() != DISPLAY_UNFOLDED)
1107                 return InsetMathNest::automaticPopupCompletion();
1108
1109         return lyxrc.completion_popup_math;
1110 }
1111
1112
1113 CompletionList const *
1114 MathMacro::createCompletionList(Cursor const & cur) const
1115 {
1116         if (displayMode() != DISPLAY_UNFOLDED)
1117                 return InsetMathNest::createCompletionList(cur);
1118
1119         return new MathCompletionList(cur.bv().cursor());
1120 }
1121
1122
1123 docstring MathMacro::completionPrefix(Cursor const & cur) const
1124 {
1125         if (displayMode() != DISPLAY_UNFOLDED)
1126                 return InsetMathNest::completionPrefix(cur);
1127
1128         if (!completionSupported(cur))
1129                 return docstring();
1130
1131         return "\\" + name();
1132 }
1133
1134
1135 bool MathMacro::insertCompletion(Cursor & cur, docstring const & s,
1136                                         bool finished)
1137 {
1138         if (displayMode() != DISPLAY_UNFOLDED)
1139                 return InsetMathNest::insertCompletion(cur, s, finished);
1140
1141         if (!completionSupported(cur))
1142                 return false;
1143
1144         // append completion
1145         docstring newName = name() + s;
1146         asArray(newName, cell(0));
1147         cur.bv().cursor().pos() = name().size();
1148         cur.screenUpdateFlags(Update::SinglePar);
1149
1150         // finish macro
1151         if (finished) {
1152                 cur.bv().cursor().pop();
1153                 ++cur.bv().cursor().pos();
1154                 cur.screenUpdateFlags(Update::SinglePar);
1155         }
1156
1157         return true;
1158 }
1159
1160
1161 void MathMacro::completionPosAndDim(Cursor const & cur, int & x, int & y,
1162         Dimension & dim) const
1163 {
1164         if (displayMode() != DISPLAY_UNFOLDED)
1165                 InsetMathNest::completionPosAndDim(cur, x, y, dim);
1166
1167         // get inset dimensions
1168         dim = cur.bv().coordCache().insets().dim(this);
1169         // FIXME: these 3 are no accurate, but should depend on the font.
1170         // Now the popup jumps down if you enter a char with descent > 0.
1171         dim.des += 3;
1172         dim.asc += 3;
1173
1174         // and position
1175         Point xy
1176         = cur.bv().coordCache().insets().xy(this);
1177         x = xy.x_;
1178         y = xy.y_;
1179 }
1180
1181
1182 } // namespace lyx