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