]> git.lyx.org Git - features.git/blob - src/mathed/MathMacro.cpp
Use a plain font in macro edit box
[features.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() 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_INLINE))
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 && nargs()) ? marker() : 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         mrow.push_back(e_end);
362
363         return has_contents;
364 }
365
366 void MathMacro::beforeMetrics() const
367 {
368         d->macro_->lock();
369 }
370
371
372 void MathMacro::afterMetrics() const
373 {
374         d->macro_->unlock();
375 }
376
377
378 void MathMacro::beforeDraw(PainterInfo const & pi) const
379 {
380         if (d->editing_[pi.base.bv])
381                 pi.pain.enterMonochromeMode(Color_mathbg, Color_mathmacroblend);
382 }
383
384
385 void MathMacro::afterDraw(PainterInfo const & pi) const
386 {
387         if (d->editing_[pi.base.bv])
388                 pi.pain.leaveMonochromeMode();
389 }
390
391
392 Inset * MathMacro::clone() const
393 {
394         MathMacro * copy = new MathMacro(*this);
395         copy->d->needsUpdate_ = true;
396         //copy->d->expanded_.clear();
397         return copy;
398 }
399
400
401 void MathMacro::normalize(NormalStream & os) const
402 {
403         os << "[macro " << name();
404         for (size_t i = 0; i < nargs(); ++i)
405                 os << ' ' << cell(i);
406         os << ']';
407 }
408
409
410 MathMacro::DisplayMode MathMacro::displayMode() const
411 {
412         return d->displayMode_;
413 }
414
415
416 bool MathMacro::extraBraces() const
417 {
418         return d->displayMode_ == DISPLAY_NORMAL && arity() > 0;
419 }
420
421
422 docstring MathMacro::name() const
423 {
424         if (d->displayMode_ == DISPLAY_UNFOLDED)
425                 return asString(cell(0));
426
427         return d->name_;
428 }
429
430
431 docstring MathMacro::macroName() const
432 {
433         return d->name_;
434 }
435
436
437 int MathMacro::nesting() const
438 {
439         return d->nesting_;
440 }
441
442
443 void MathMacro::cursorPos(BufferView const & bv,
444                 CursorSlice const & sl, bool boundary, int & x, int & y) const
445 {
446         // We may have 0 arguments, but InsetMathNest requires at least one.
447         if (nargs() > 0)
448                 InsetMathNest::cursorPos(bv, sl, boundary, x, y);
449 }
450
451
452 bool MathMacro::editMode(BufferView const * bv) const {
453         // find this in cursor trace
454         Cursor const & cur = bv->cursor();
455         for (size_t i = 0; i != cur.depth(); ++i)
456                 if (&cur[i].inset() == this) {
457                         // look if there is no other macro in edit mode above
458                         ++i;
459                         for (; i != cur.depth(); ++i) {
460                                 InsetMath * im = cur[i].asInsetMath();
461                                 if (im) {
462                                         MathMacro const * macro = im->asMacro();
463                                         if (macro && macro->displayMode() == DISPLAY_NORMAL)
464                                                 return false;
465                                 }
466                         }
467
468                         // ok, none found, I am the highest one
469                         return true;
470                 }
471
472         return false;
473 }
474
475
476 MacroData const * MathMacro::macro() const
477 {
478         return d->macro_;
479 }
480
481
482 bool MathMacro::editMetrics(BufferView const * bv) const
483 {
484         return d->editing_[bv];
485 }
486
487
488 Inset::marker_type MathMacro::marker() const
489 {
490         switch (d->displayMode_) {
491         case DISPLAY_INIT:
492         case DISPLAY_INTERACTIVE_INIT:
493                 return NO_MARKER;
494         case DISPLAY_UNFOLDED:
495                 return MARKER;
496         default:
497                 switch (lyxrc.macro_edit_style) {
498                 case LyXRC::MACRO_EDIT_LIST:
499                         return MARKER2;
500                 case LyXRC::MACRO_EDIT_INLINE_BOX:
501                         return NO_MARKER;
502                 default:
503                         return MARKER;
504                 }
505         }
506 }
507
508
509 void MathMacro::metrics(MetricsInfo & mi, Dimension & dim) const
510 {
511         /// The macro nesting can change display of insets. Change it locally.
512         Changer chg = make_change(mi.base.macro_nesting, d->nesting_);
513
514         // set edit mode for which we will have calculated metrics. But only
515         d->editing_[mi.base.bv] = editMode(mi.base.bv);
516
517         // calculate new metrics according to display mode
518         if (d->displayMode_ == DISPLAY_INIT || d->displayMode_ == DISPLAY_INTERACTIVE_INIT) {
519                 Changer dummy = mi.base.changeFontSet("lyxtex");
520                 mathed_string_dim(mi.base.font, from_ascii("\\") + name(), dim);
521         } else if (d->displayMode_ == DISPLAY_UNFOLDED) {
522                 Changer dummy = mi.base.changeFontSet("lyxtex");
523                 cell(0).metrics(mi, dim);
524                 Dimension bsdim;
525                 mathed_string_dim(mi.base.font, from_ascii("\\"), bsdim);
526                 dim.wid += bsdim.width() + 1;
527                 dim.asc = max(bsdim.ascent(), dim.ascent());
528                 dim.des = max(bsdim.descent(), dim.descent());
529         } else if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_LIST
530                    && d->editing_[mi.base.bv]) {
531                 // Macro will be edited in a old-style list mode here:
532
533                 LBUFERR(d->macro_);
534                 Dimension fontDim;
535                 FontInfo labelFont = sane_font;
536                 math_font_max_dim(labelFont, fontDim.asc, fontDim.des);
537
538                 // get dimension of components of list view
539                 Dimension nameDim;
540                 nameDim.wid = mathed_string_width(mi.base.font, from_ascii("Macro \\") + name() + ": ");
541                 nameDim.asc = fontDim.asc;
542                 nameDim.des = fontDim.des;
543
544                 Dimension argDim;
545                 argDim.wid = mathed_string_width(labelFont, from_ascii("#9: "));
546                 argDim.asc = fontDim.asc;
547                 argDim.des = fontDim.des;
548
549                 Dimension defDim;
550                 d->definition_.metrics(mi, defDim);
551
552                 // add them up
553                 dim.wid = nameDim.wid + defDim.wid;
554                 dim.asc = max(nameDim.asc, defDim.asc);
555                 dim.des = max(nameDim.des, defDim.des);
556
557                 for (idx_type i = 0; i < nargs(); ++i) {
558                         Dimension cdim;
559                         cell(i).metrics(mi, cdim);
560                         dim.des += max(argDim.height(), cdim.height()) + 1;
561                         dim.wid = max(dim.wid, argDim.wid + cdim.wid);
562                 }
563
564                 // make space for box and markers, 2 pixels
565                 dim.asc += 1;
566                 dim.des += 1;
567                 dim.wid += 2;
568         } else {
569                 LBUFERR(d->macro_);
570
571                 // calculate metrics, hoping that all cells are seen
572                 d->macro_->lock();
573                 d->expanded_.metrics(mi, dim);
574
575                 // otherwise do a manual metrics call
576                 CoordCache & coords = mi.base.bv->coordCache();
577                 for (idx_type i = 0; i < nargs(); ++i) {
578                         if (!coords.getArrays().hasDim(&cell(i))) {
579                                 Dimension tdim;
580                                 cell(i).metrics(mi, tdim);
581                         }
582                 }
583                 d->macro_->unlock();
584
585                 // calculate dimension with label while editing
586                 if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX
587                     && d->editing_[mi.base.bv]) {
588                         FontInfo font;
589                         font.setSize(FONT_SIZE_TINY);
590                         Dimension namedim;
591                         mathed_string_dim(font, name(), namedim);
592 #if 0
593                         dim.wid += 2 + namedim.wid + 2 + 2;
594                         dim.asc = max(dim.asc, namedim.asc) + 2;
595                         dim.des = max(dim.des, namedim.des) + 2;
596 #endif
597                         dim.wid = max(1 + namedim.wid + 1, 2 + dim.wid + 2);
598                         dim.asc += 1 + namedim.height() + 1;
599                         dim.des += 2;
600                 }
601         }
602 }
603
604
605 int MathMacro::kerning(BufferView const * bv) const {
606         if (d->displayMode_ == DISPLAY_NORMAL && !d->editing_[bv])
607                 return d->expanded_.kerning(bv);
608         else
609                 return 0;
610 }
611
612
613 void MathMacro::updateMacro(MacroContext const & mc)
614 {
615         if (validName()) {
616                 d->macro_ = mc.get(name());
617                 if (d->macro_ && d->macroBackup_ != *d->macro_) {
618                         d->macroBackup_ = *d->macro_;
619                         d->needsUpdate_ = true;
620                 }
621         } else {
622                 d->macro_ = 0;
623         }
624 }
625
626
627 class MathMacro::UpdateLocker
628 {
629 public:
630         explicit UpdateLocker(MathMacro & mm) : mac(mm)
631         {
632                 mac.d->isUpdating_ = true;
633         }
634         ~UpdateLocker() { mac.d->isUpdating_ = false; }
635 private:
636         MathMacro & mac;
637 };
638 /** Avoid wrong usage of UpdateLocker.
639     To avoid wrong usage:
640     UpdateLocker(...); // wrong
641     UpdateLocker locker(...); // right
642 */
643 #define UpdateLocker(x) unnamed_UpdateLocker;
644 // Tip gotten from Bobby Schmidt's column in C/C++ Users Journal
645
646
647 void MathMacro::updateRepresentation(Cursor * cur, MacroContext const & mc,
648         UpdateType utype, int nesting)
649 {
650         // block recursive calls (bug 8999)
651         if (d->isUpdating_)
652                 return;
653
654         UpdateLocker locker(*this);
655
656         // known macro?
657         if (d->macro_ == 0)
658                 return;
659
660         // remember nesting level of this macro
661         d->nesting_ = nesting;
662
663         // update requires
664         d->requires_ = d->macro_->requires();
665
666         if (!d->needsUpdate_
667                 // non-normal mode? We are done!
668                 || (d->displayMode_ != DISPLAY_NORMAL))
669                 return;
670
671         d->needsUpdate_ = false;
672
673         // get default values of macro
674         vector<docstring> const & defaults = d->macro_->defaults();
675
676         // create MathMacroArgumentValue objects pointing to the cells of the macro
677         vector<MathData> values(nargs());
678         for (size_t i = 0; i < nargs(); ++i) {
679                 ArgumentProxy * proxy;
680                 if (i < defaults.size())
681                         proxy = new ArgumentProxy(this, i, defaults[i]);
682                 else
683                         proxy = new ArgumentProxy(this, i);
684                 values[i].insert(0, MathAtom(proxy));
685         }
686         // expanding macro with the values
687         // Only update the argument macros if anything was expanded, otherwise
688         // we would get an endless loop (bug 9140). UpdateLocker does not work
689         // in this case, since MacroData::expand() creates new MathMacro
690         // objects, so this would be a different recursion path than the one
691         // protected by UpdateLocker.
692         if (d->macro_->expand(values, d->expanded_)) {
693                 if (utype == OutputUpdate && !d->expanded_.empty())
694                         d->expanded_.updateMacros(cur, mc, utype, nesting);
695         }
696         // get definition for list edit mode
697         docstring const & display = d->macro_->display();
698         asArray(display.empty() ? d->macro_->definition() : display,
699                 d->definition_, Parse::QUIET);
700 }
701
702
703 void MathMacro::draw(PainterInfo & pi, int x, int y) const
704 {
705         Dimension const dim = dimension(*pi.base.bv);
706
707         int expx = x;
708         int expy = y;
709
710         if (d->displayMode_ == DISPLAY_INIT || d->displayMode_ == DISPLAY_INTERACTIVE_INIT) {
711                 Changer dummy = pi.base.changeFontSet("lyxtex");
712                 pi.pain.text(x, y, from_ascii("\\") + name(), pi.base.font);
713         } else if (d->displayMode_ == DISPLAY_UNFOLDED) {
714                 Changer dummy = pi.base.changeFontSet("lyxtex");
715                 pi.pain.text(x, y, from_ascii("\\"), pi.base.font);
716                 x += mathed_string_width(pi.base.font, from_ascii("\\")) + 1;
717                 cell(0).draw(pi, x, y);
718         } else if (lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_LIST
719                    && d->editing_[pi.base.bv]) {
720                 // Macro will be edited in a old-style list mode here:
721
722                 CoordCache const & coords = pi.base.bv->coordCache();
723                 FontInfo const & labelFont = sane_font;
724
725                 // box needs one pixel
726                 x += 1;
727
728                 // get maximal font height
729                 Dimension fontDim;
730                 math_font_max_dim(pi.base.font, fontDim.asc, fontDim.des);
731
732                 // draw label
733                 docstring label = from_ascii("Macro \\") + name() + from_ascii(": ");
734                 pi.pain.text(x, y, label, labelFont);
735                 x += mathed_string_width(labelFont, label);
736
737                 // draw definition
738                 d->definition_.draw(pi, x, y);
739                 Dimension const & defDim = coords.getArrays().dim(&d->definition_);
740                 y += max(fontDim.des, defDim.des);
741
742                 // draw parameters
743                 docstring str = from_ascii("#9");
744                 int strw1 = mathed_string_width(labelFont, from_ascii("#9"));
745                 int strw2 = mathed_string_width(labelFont, from_ascii(": "));
746
747                 for (idx_type i = 0; i < nargs(); ++i) {
748                         // position of label
749                         Dimension const & cdim = coords.getArrays().dim(&cell(i));
750                         x = expx + 1;
751                         y += max(fontDim.asc, cdim.asc) + 1;
752
753                         // draw label
754                         str[1] = '1' + i;
755                         pi.pain.text(x, y, str, labelFont);
756                         x += strw1;
757                         pi.pain.text(x, y, from_ascii(":"), labelFont);
758                         x += strw2;
759
760                         // draw paramter
761                         cell(i).draw(pi, x, y);
762
763                         // next line
764                         y += max(fontDim.des, cdim.des);
765                 }
766
767                 pi.pain.rectangle(expx, expy - dim.asc + 1, dim.wid - 1,
768                                   dim.height() - 2, Color_mathmacroframe);
769         } else {
770                 bool drawBox = lyxrc.macro_edit_style == LyXRC::MACRO_EDIT_INLINE_BOX
771                         && d->editing_[pi.base.bv];
772
773                 // warm up cells
774                 for (size_t i = 0; i < nargs(); ++i)
775                         cell(i).setXY(*pi.base.bv, x, y);
776
777                 if (drawBox) {
778                         // draw header and rectangle around
779                         FontInfo font;
780                         font.setSize(FONT_SIZE_TINY);
781                         font.setColor(Color_mathmacrolabel);
782                         Dimension namedim;
783                         mathed_string_dim(font, name(), namedim);
784
785                         pi.pain.fillRectangle(x, y - dim.asc, dim.wid, 1 + namedim.height() + 1, Color_mathmacrobg);
786                         pi.pain.text(x + 1, y - dim.asc + namedim.asc + 2, name(), font);
787                         expx += (dim.wid - d->expanded_.dimension(*pi.base.bv).width()) / 2;
788                 }
789
790                 beforeDraw(pi);
791                 d->expanded_.draw(pi, expx, expy);
792                 afterDraw(pi);
793
794                 if (drawBox)
795                         pi.pain.rectangle(x, y - dim.asc, dim.wid,
796                                           dim.height(), Color_mathmacroframe);
797         }
798
799         // edit mode changed?
800         if (d->editing_[pi.base.bv] != editMode(pi.base.bv))
801                 pi.base.bv->cursor().screenUpdateFlags(Update::SinglePar);
802 }
803
804
805 void MathMacro::drawSelection(PainterInfo & pi, int x, int y) const
806 {
807         // We may have 0 arguments, but InsetMathNest requires at least one.
808         if (!cells_.empty())
809                 InsetMathNest::drawSelection(pi, x, y);
810 }
811
812
813 void MathMacro::setDisplayMode(MathMacro::DisplayMode mode, int appetite)
814 {
815         if (d->displayMode_ != mode) {
816                 // transfer name if changing from or to DISPLAY_UNFOLDED
817                 if (mode == DISPLAY_UNFOLDED) {
818                         cells_.resize(1);
819                         asArray(d->name_, cell(0));
820                 } else if (d->displayMode_ == DISPLAY_UNFOLDED) {
821                         d->name_ = asString(cell(0));
822                         cells_.resize(0);
823                 }
824
825                 d->displayMode_ = mode;
826                 d->needsUpdate_ = true;
827         }
828
829         // the interactive init mode is non-greedy by default
830         if (appetite == -1)
831                 d->appetite_ = (mode == DISPLAY_INTERACTIVE_INIT) ? 0 : 9;
832         else
833                 d->appetite_ = size_t(appetite);
834 }
835
836
837 MathMacro::DisplayMode MathMacro::computeDisplayMode() const
838 {
839         if (d->nextFoldMode_ == true && d->macro_ && !d->macro_->locked())
840                 return DISPLAY_NORMAL;
841         else
842                 return DISPLAY_UNFOLDED;
843 }
844
845
846 bool MathMacro::validName() const
847 {
848         docstring n = name();
849
850         if (n.empty())
851                 return false;
852
853         // converting back and force doesn't swallow anything?
854         /*MathData ma;
855         asArray(n, ma);
856         if (asString(ma) != n)
857                 return false;*/
858
859         // valid characters?
860         for (size_t i = 0; i<n.size(); ++i) {
861                 if (!(n[i] >= 'a' && n[i] <= 'z')
862                     && !(n[i] >= 'A' && n[i] <= 'Z')
863                     && n[i] != '*')
864                         return false;
865         }
866
867         return true;
868 }
869
870
871 size_t MathMacro::arity() const
872 {
873         if (d->displayMode_ == DISPLAY_NORMAL )
874                 return cells_.size();
875         else
876                 return 0;
877 }
878
879
880 size_t MathMacro::optionals() const
881 {
882         return d->optionals_;
883 }
884
885
886 void MathMacro::setOptionals(int n)
887 {
888         if (n <= int(nargs()))
889                 d->optionals_ = n;
890 }
891
892
893 size_t MathMacro::appetite() const
894 {
895         return d->appetite_;
896 }
897
898
899 MathClass MathMacro::mathClass() const
900 {
901         // This can be just a heuristic, since it is only considered for display
902         // when the macro is not linearised. Therefore it affects:
903         // * The spacing of the inset while being edited,
904         // * Intelligent splitting
905         // * Cursor word movement (Ctrl-Arrow).
906         if (MacroData const * m = macroBackup()) {
907                 // If it is a global macro and is defined explicitly
908                 if (m->symbol()) {
909                         MathClass mc = string_to_class(m->symbol()->extra);
910                         if (mc != MC_UNKNOWN)
911                                 return mc;
912                 }
913         }
914         // Otherwise guess from the expanded macro
915         return d->expanded_.mathClass();
916 }
917
918
919 InsetMath::mode_type MathMacro::currentMode() const
920 {
921         // There is no way to guess the mode of user defined macros, so they are
922         // always assumed to be mathmode.  Only the global macros defined in
923         // lib/symbols may be textmode.
924         mode_type mode = modeToEnsure();
925         return (mode == UNDECIDED_MODE) ? MATH_MODE : mode;
926 }
927
928
929 InsetMath::mode_type MathMacro::modeToEnsure() const
930 {
931         // User defined macros can be either text mode or math mode for output and
932         // display. There is no way to guess. For global macros defined in
933         // lib/symbols, we ensure textmode if flagged as such, otherwise we ensure
934         // math mode.
935         if (MacroData const * m = macroBackup())
936                 if (m->symbol())
937                         return (m->symbol()->extra == "textmode") ? TEXT_MODE : MATH_MODE;
938         return UNDECIDED_MODE;
939 }
940
941
942 MacroData const * MathMacro::macroBackup() const
943 {
944         if (macro())
945                 return &d->macroBackup_;
946         if (MacroData const * data = MacroTable::globalMacros().get(name()))
947                 return data;
948         return nullptr;
949 }
950
951
952 void MathMacro::validate(LaTeXFeatures & features) const
953 {
954         // Immediately after a document is loaded, in some cases the MacroData
955         // of the global macros defined in the lib/symbols file may still not
956         // be known to the macro machinery because it will be set only after
957         // the first call to updateMacros(). This is not a problem unless
958         // instant preview is on for math, in which case we will be missing
959         // the corresponding requirements.
960         // In this case, we get the required info from the global macro table.
961         if (!d->requires_.empty())
962                 features.require(d->requires_);
963         else if (!d->macro_) {
964                 // Update requires for known global macros.
965                 MacroData const * data = MacroTable::globalMacros().get(name());
966                 if (data && !data->requires().empty())
967                         features.require(data->requires());
968         }
969
970         if (name() == "binom")
971                 features.require("binom");
972
973         // validate the cells and the definition
974         if (displayMode() == DISPLAY_NORMAL) {
975                 d->definition_.validate(features);
976                 InsetMathNest::validate(features);
977         }
978 }
979
980
981 void MathMacro::edit(Cursor & cur, bool front, EntryDirection entry_from)
982 {
983         cur.screenUpdateFlags(Update::SinglePar);
984         InsetMathNest::edit(cur, front, entry_from);
985 }
986
987
988 Inset * MathMacro::editXY(Cursor & cur, int x, int y)
989 {
990         // We may have 0 arguments, but InsetMathNest requires at least one.
991         if (nargs() > 0) {
992                 cur.screenUpdateFlags(Update::SinglePar);
993                 return InsetMathNest::editXY(cur, x, y);
994         } else
995                 return this;
996 }
997
998
999 void MathMacro::removeArgument(Inset::pos_type pos) {
1000         if (d->displayMode_ == DISPLAY_NORMAL) {
1001                 LASSERT(size_t(pos) < cells_.size(), return);
1002                 cells_.erase(cells_.begin() + pos);
1003                 if (size_t(pos) < d->attachedArgsNum_)
1004                         --d->attachedArgsNum_;
1005                 if (size_t(pos) < d->optionals_) {
1006                         --d->optionals_;
1007                 }
1008
1009                 d->needsUpdate_ = true;
1010         }
1011 }
1012
1013
1014 void MathMacro::insertArgument(Inset::pos_type pos) {
1015         if (d->displayMode_ == DISPLAY_NORMAL) {
1016                 LASSERT(size_t(pos) <= cells_.size(), return);
1017                 cells_.insert(cells_.begin() + pos, MathData());
1018                 if (size_t(pos) < d->attachedArgsNum_)
1019                         ++d->attachedArgsNum_;
1020                 if (size_t(pos) < d->optionals_)
1021                         ++d->optionals_;
1022
1023                 d->needsUpdate_ = true;
1024         }
1025 }
1026
1027
1028 void MathMacro::detachArguments(vector<MathData> & args, bool strip)
1029 {
1030         LASSERT(d->displayMode_ == DISPLAY_NORMAL, return);
1031         args = cells_;
1032
1033         // strip off empty cells, but not more than arity-attachedArgsNum_
1034         if (strip) {
1035                 size_t i;
1036                 for (i = cells_.size(); i > d->attachedArgsNum_; --i)
1037                         if (!cell(i - 1).empty()) break;
1038                 args.resize(i);
1039         }
1040
1041         d->attachedArgsNum_ = 0;
1042         d->expanded_ = MathData();
1043         cells_.resize(0);
1044
1045         d->needsUpdate_ = true;
1046 }
1047
1048
1049 void MathMacro::attachArguments(vector<MathData> const & args, size_t arity, int optionals)
1050 {
1051         LASSERT(d->displayMode_ == DISPLAY_NORMAL, return);
1052         cells_ = args;
1053         d->attachedArgsNum_ = args.size();
1054         cells_.resize(arity);
1055         d->expanded_ = MathData();
1056         d->optionals_ = optionals;
1057
1058         d->needsUpdate_ = true;
1059 }
1060
1061
1062 bool MathMacro::idxFirst(Cursor & cur) const
1063 {
1064         cur.screenUpdateFlags(Update::SinglePar);
1065         return InsetMathNest::idxFirst(cur);
1066 }
1067
1068
1069 bool MathMacro::idxLast(Cursor & cur) const
1070 {
1071         cur.screenUpdateFlags(Update::SinglePar);
1072         return InsetMathNest::idxLast(cur);
1073 }
1074
1075
1076 bool MathMacro::notifyCursorLeaves(Cursor const & old, Cursor & cur)
1077 {
1078         if (d->displayMode_ == DISPLAY_UNFOLDED) {
1079                 docstring const & unfolded_name = name();
1080                 if (unfolded_name != d->name_) {
1081                         // The macro name was changed
1082                         Cursor inset_cursor = old;
1083                         int macroSlice = inset_cursor.find(this);
1084                         // returning true means the cursor is "now" invalid,
1085                         // which it was.
1086                         LASSERT(macroSlice != -1, return true);
1087                         inset_cursor.cutOff(macroSlice);
1088                         inset_cursor.recordUndoInset();
1089                         inset_cursor.pop();
1090                         inset_cursor.cell().erase(inset_cursor.pos());
1091                         inset_cursor.cell().insert(inset_cursor.pos(),
1092                                 createInsetMath(unfolded_name, cur.buffer()));
1093                         cur.resetAnchor();
1094                         cur.screenUpdateFlags(cur.result().screenUpdate() | Update::SinglePar);
1095                         return true;
1096                 }
1097         }
1098         cur.screenUpdateFlags(Update::Force);
1099         return InsetMathNest::notifyCursorLeaves(old, cur);
1100 }
1101
1102
1103 void MathMacro::fold(Cursor & cur)
1104 {
1105         if (!d->nextFoldMode_) {
1106                 d->nextFoldMode_ = true;
1107                 cur.screenUpdateFlags(Update::SinglePar);
1108         }
1109 }
1110
1111
1112 void MathMacro::unfold(Cursor & cur)
1113 {
1114         if (d->nextFoldMode_) {
1115                 d->nextFoldMode_ = false;
1116                 cur.screenUpdateFlags(Update::SinglePar);
1117         }
1118 }
1119
1120
1121 bool MathMacro::folded() const
1122 {
1123         return d->nextFoldMode_;
1124 }
1125
1126
1127 void MathMacro::write(WriteStream & os) const
1128 {
1129         mode_type mode = modeToEnsure();
1130         bool textmode_macro = mode == TEXT_MODE;
1131         bool needs_mathmode = mode == MATH_MODE;
1132         MathEnsurer ensurer(os, needs_mathmode, true, textmode_macro);
1133
1134         // non-normal mode
1135         if (d->displayMode_ != DISPLAY_NORMAL) {
1136                 os << "\\" << name();
1137                 if (name().size() != 1 || isAlphaASCII(name()[0]))
1138                         os.pendingSpace(true);
1139                 return;
1140         }
1141
1142         // normal mode
1143         // we should be ok to continue even if this fails.
1144         LATTEST(d->macro_);
1145
1146         // We may already be in the argument of a macro
1147         bool const inside_macro = os.insideMacro();
1148         os.insideMacro(true);
1149
1150         // Enclose in braces to avoid latex errors with xargs if we have
1151         // optional arguments and are in the optional argument of a macro
1152         if (d->optionals_ && inside_macro)
1153                 os << '{';
1154
1155         // Always protect macros in a fragile environment
1156         if (os.fragile())
1157                 os << "\\protect";
1158
1159         os << "\\" << name();
1160         bool first = true;
1161
1162         // Optional arguments:
1163         // First find last non-empty optional argument
1164         idx_type emptyOptFrom = 0;
1165         idx_type i = 0;
1166         for (; i < cells_.size() && i < d->optionals_; ++i) {
1167                 if (!cell(i).empty())
1168                         emptyOptFrom = i + 1;
1169         }
1170
1171         // print out optionals
1172         for (i=0; i < cells_.size() && i < emptyOptFrom; ++i) {
1173                 first = false;
1174                 os << "[" << cell(i) << "]";
1175         }
1176
1177         // skip the tailing empty optionals
1178         i = d->optionals_;
1179
1180         // Print remaining arguments
1181         for (; i < cells_.size(); ++i) {
1182                 if (cell(i).size() == 1
1183                         && cell(i)[0].nucleus()->asCharInset()
1184                         && isASCII(cell(i)[0].nucleus()->asCharInset()->getChar())) {
1185                         if (first)
1186                                 os << " ";
1187                         os << cell(i);
1188                 } else
1189                         os << "{" << cell(i) << "}";
1190                 first = false;
1191         }
1192
1193         // Close the opened brace or add space if there was no argument
1194         if (d->optionals_ && inside_macro)
1195                 os << '}';
1196         else if (first)
1197                 os.pendingSpace(true);
1198
1199         os.insideMacro(inside_macro);
1200 }
1201
1202
1203 void MathMacro::maple(MapleStream & os) const
1204 {
1205         lyx::maple(d->expanded_, os);
1206 }
1207
1208
1209 void MathMacro::maxima(MaximaStream & os) const
1210 {
1211         lyx::maxima(d->expanded_, os);
1212 }
1213
1214
1215 void MathMacro::mathematica(MathematicaStream & os) const
1216 {
1217         lyx::mathematica(d->expanded_, os);
1218 }
1219
1220
1221 void MathMacro::mathmlize(MathStream & os) const
1222 {
1223         // macro_ is 0 if this is an unknown macro
1224         LATTEST(d->macro_ || d->displayMode_ != DISPLAY_NORMAL);
1225         if (d->macro_) {
1226                 docstring const xmlname = d->macro_->xmlname();
1227                 if (!xmlname.empty()) {
1228                         char const * type = d->macro_->MathMLtype();
1229                         os << '<' << type << "> " << xmlname << " </"
1230                            << type << '>';
1231                         return;
1232                 }
1233         }
1234         if (d->expanded_.empty()) {
1235                 // this means that we do not recognize the macro
1236                 throw MathExportException();
1237         }
1238         os << d->expanded_;
1239 }
1240
1241
1242 void MathMacro::htmlize(HtmlStream & os) const
1243 {
1244         // macro_ is 0 if this is an unknown macro
1245         LATTEST(d->macro_ || d->displayMode_ != DISPLAY_NORMAL);
1246         if (d->macro_) {
1247                 docstring const xmlname = d->macro_->xmlname();
1248                 if (!xmlname.empty()) {
1249                         os << ' ' << xmlname << ' ';
1250                         return;
1251                 }
1252         }
1253         if (d->expanded_.empty()) {
1254                 // this means that we do not recognize the macro
1255                 throw MathExportException();
1256         }
1257         os << d->expanded_;
1258 }
1259
1260
1261 void MathMacro::octave(OctaveStream & os) const
1262 {
1263         lyx::octave(d->expanded_, os);
1264 }
1265
1266
1267 void MathMacro::infoize(odocstream & os) const
1268 {
1269         os << bformat(_("Macro: %1$s"), name());
1270 }
1271
1272
1273 void MathMacro::infoize2(odocstream & os) const
1274 {
1275         os << bformat(_("Macro: %1$s"), name());
1276 }
1277
1278
1279 bool MathMacro::completionSupported(Cursor const & cur) const
1280 {
1281         if (displayMode() != DISPLAY_UNFOLDED)
1282                 return InsetMathNest::completionSupported(cur);
1283
1284         return lyxrc.completion_popup_math
1285                 && displayMode() == DISPLAY_UNFOLDED
1286                 && cur.bv().cursor().pos() == int(name().size());
1287 }
1288
1289
1290 bool MathMacro::inlineCompletionSupported(Cursor const & cur) const
1291 {
1292         if (displayMode() != DISPLAY_UNFOLDED)
1293                 return InsetMathNest::inlineCompletionSupported(cur);
1294
1295         return lyxrc.completion_inline_math
1296                 && displayMode() == DISPLAY_UNFOLDED
1297                 && cur.bv().cursor().pos() == int(name().size());
1298 }
1299
1300
1301 bool MathMacro::automaticInlineCompletion() const
1302 {
1303         if (displayMode() != DISPLAY_UNFOLDED)
1304                 return InsetMathNest::automaticInlineCompletion();
1305
1306         return lyxrc.completion_inline_math;
1307 }
1308
1309
1310 bool MathMacro::automaticPopupCompletion() const
1311 {
1312         if (displayMode() != DISPLAY_UNFOLDED)
1313                 return InsetMathNest::automaticPopupCompletion();
1314
1315         return lyxrc.completion_popup_math;
1316 }
1317
1318
1319 CompletionList const *
1320 MathMacro::createCompletionList(Cursor const & cur) const
1321 {
1322         if (displayMode() != DISPLAY_UNFOLDED)
1323                 return InsetMathNest::createCompletionList(cur);
1324
1325         return new MathCompletionList(cur.bv().cursor());
1326 }
1327
1328
1329 docstring MathMacro::completionPrefix(Cursor const & cur) const
1330 {
1331         if (displayMode() != DISPLAY_UNFOLDED)
1332                 return InsetMathNest::completionPrefix(cur);
1333
1334         if (!completionSupported(cur))
1335                 return docstring();
1336
1337         return "\\" + name();
1338 }
1339
1340
1341 bool MathMacro::insertCompletion(Cursor & cur, docstring const & s,
1342                                         bool finished)
1343 {
1344         if (displayMode() != DISPLAY_UNFOLDED)
1345                 return InsetMathNest::insertCompletion(cur, s, finished);
1346
1347         if (!completionSupported(cur))
1348                 return false;
1349
1350         // append completion
1351         docstring newName = name() + s;
1352         asArray(newName, cell(0));
1353         cur.bv().cursor().pos() = name().size();
1354         cur.screenUpdateFlags(Update::SinglePar);
1355
1356         // finish macro
1357         if (finished) {
1358                 cur.bv().cursor().pop();
1359                 ++cur.bv().cursor().pos();
1360                 cur.screenUpdateFlags(Update::SinglePar);
1361         }
1362
1363         return true;
1364 }
1365
1366
1367 void MathMacro::completionPosAndDim(Cursor const & cur, int & x, int & y,
1368         Dimension & dim) const
1369 {
1370         if (displayMode() != DISPLAY_UNFOLDED)
1371                 InsetMathNest::completionPosAndDim(cur, x, y, dim);
1372
1373         // get inset dimensions
1374         dim = cur.bv().coordCache().insets().dim(this);
1375         // FIXME: these 3 are no accurate, but should depend on the font.
1376         // Now the popup jumps down if you enter a char with descent > 0.
1377         dim.des += 3;
1378         dim.asc += 3;
1379
1380         // and position
1381         Point xy
1382         = cur.bv().coordCache().insets().xy(this);
1383         x = xy.x_;
1384         y = xy.y_;
1385 }
1386
1387
1388 } // namespace lyx