]> git.lyx.org Git - lyx.git/blob - src/mathed/MathMacroTemplate.cpp
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / MathMacroTemplate.cpp
1 /**
2  * \file MathMacroTemplate.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  * \author Stefan Schimanski
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "MathMacroTemplate.h"
15
16 #include "DocIterator.h"
17 #include "LaTeXFeatures.h"
18 #include "InsetMathBrace.h"
19 #include "InsetMathChar.h"
20 #include "InsetMathSqrt.h"
21 #include "MathMacro.h"
22 #include "MathMacroArgument.h"
23 #include "MathStream.h"
24 #include "MathParser.h"
25 #include "MathSupport.h"
26 #include "MathMacroArgument.h"
27
28 #include "Buffer.h"
29 #include "BufferView.h"
30 #include "Color.h"
31 #include "Cursor.h"
32 #include "DispatchResult.h"
33 #include "FuncRequest.h"
34 #include "FuncStatus.h"
35 #include "Lexer.h"
36 #include "Undo.h"
37
38 #include "frontends/Painter.h"
39
40 #include "support/lassert.h"
41 #include "support/convert.h"
42 #include "support/debug.h"
43 #include "support/gettext.h"
44 #include "support/docstream.h"
45 #include "support/lstrings.h"
46
47 #include <sstream>
48
49 using namespace std;
50
51 namespace lyx {
52
53 using support::bformat;
54
55 //////////////////////////////////////////////////////////////////////
56
57 class InsetLabelBox : public InsetMathNest {
58 public:
59         ///
60         InsetLabelBox(MathAtom const & atom, docstring label,
61                       MathMacroTemplate const & parent, bool frame = false);
62         InsetLabelBox(docstring label, MathMacroTemplate const & parent,
63                       bool frame = false);
64         ///
65         void metrics(MetricsInfo & mi, Dimension & dim) const;
66         ///
67         void draw(PainterInfo &, int x, int y) const;
68
69 protected:
70         ///
71         MathMacroTemplate const & parent_;
72         ///
73         Inset * clone() const;
74         ///
75         docstring const label_;
76         ///
77         bool frame_;
78 };
79
80
81 InsetLabelBox::InsetLabelBox(MathAtom const & atom, docstring label,
82         MathMacroTemplate const & parent, bool frame)
83         : InsetMathNest(1), parent_(parent), label_(label), frame_(frame)
84 {
85         cell(0).insert(0, atom);
86 }
87
88
89 InsetLabelBox::InsetLabelBox(docstring label,
90                              MathMacroTemplate const & parent, bool frame)
91         : InsetMathNest(1), parent_(parent), label_(label), frame_(frame)
92 {
93 }
94
95
96 Inset * InsetLabelBox::clone() const
97 {
98         return new InsetLabelBox(*this);
99 }
100
101
102 void InsetLabelBox::metrics(MetricsInfo & mi, Dimension & dim) const
103 {
104         // kernel
105         cell(0).metrics(mi, dim);
106
107         // frame
108         if (frame_) {
109                 dim.wid += 6;
110                 dim.asc += 5;
111                 dim.des += 5;
112         }
113
114         // adjust to common height in main metrics phase
115         if (!parent_.premetrics()) {
116                 dim.asc = max(dim.asc, parent_.commonLabelBoxAscent());
117                 dim.des = max(dim.des, parent_.commonLabelBoxDescent());
118         }
119
120         // label
121         if (parent_.editing(mi.base.bv) && label_.length() > 0) {
122                 // grey
123                 FontInfo font = sane_font;
124                 font.setSize(FONT_SIZE_TINY);
125                 font.setColor(Color_mathmacrolabel);
126
127                 // make space for label and box
128                 int lwid = mathed_string_width(font, label_);
129                 int maxasc;
130                 int maxdes;
131                 math_font_max_dim(font, maxasc, maxdes);
132
133                 dim.wid = max(dim.wid, lwid + 2);
134
135                 // space for the label
136                 if (!parent_.premetrics())
137                         dim.des += maxasc + maxdes + 1;
138         }
139 }
140
141
142 void InsetLabelBox::draw(PainterInfo & pi, int x, int y) const
143 {
144         Dimension const dim = dimension(*pi.base.bv);
145         Dimension const cdim = cell(0).dimension(*pi.base.bv);
146
147         // kernel
148         cell(0).draw(pi, x + (dim.wid - cdim.wid) / 2, y);
149
150         // label
151         if (parent_.editing(pi.base.bv) && label_.length() > 0) {
152                 // grey
153                 FontInfo font = sane_font;
154                 font.setSize(FONT_SIZE_TINY);
155                 font.setColor(Color_mathmacrolabel);
156
157                 // make space for label and box
158                 int lwid = mathed_string_width(font, label_);
159                 int maxasc;
160                 int maxdes;
161                 math_font_max_dim(font, maxasc, maxdes);
162
163                 if (lwid < dim.wid)
164                         pi.pain.text(x + (dim.wid - lwid) / 2, y + dim.des - maxdes, label_, font);
165                 else
166                         pi.pain.text(x, y + dim.des - maxdes, label_, font);
167         }
168
169         // draw frame
170         int boxHeight = parent_.commonLabelBoxAscent() + parent_.commonLabelBoxDescent();
171         if (frame_) {
172                 pi.pain.rectangle(x + 1, y - dim.ascent() + 1,
173                                   dim.wid - 2, boxHeight - 2,
174                                   Color_mathline);
175         }
176 }
177
178
179 //////////////////////////////////////////////////////////////////////
180
181 class DisplayLabelBox : public InsetLabelBox {
182 public:
183         ///
184         DisplayLabelBox(MathAtom const & atom, docstring label,
185                         MathMacroTemplate const & parent);
186
187         ///
188         void metrics(MetricsInfo & mi, Dimension & dim) const;
189         ///
190         void draw(PainterInfo &, int x, int y) const;
191
192 protected:
193         ///
194         Inset * clone() const;
195 };
196
197
198 DisplayLabelBox::DisplayLabelBox(MathAtom const & atom,
199                                  docstring label,
200                                  MathMacroTemplate const & parent)
201         : InsetLabelBox(atom, label, parent, true)
202 {
203 }
204
205
206
207 Inset * DisplayLabelBox::clone() const
208 {
209         return new DisplayLabelBox(*this);
210 }
211
212
213 void DisplayLabelBox::metrics(MetricsInfo & mi, Dimension & dim) const
214 {
215         InsetLabelBox::metrics(mi, dim);
216         if (!parent_.editing(mi.base.bv)
217             && parent_.cell(parent_.displayIdx()).empty()) {
218                 dim.wid = 0;
219                 dim.asc = 0;
220                 dim.des = 0;
221         }
222 }
223
224
225 void DisplayLabelBox::draw(PainterInfo & pi, int x, int y) const
226 {
227         if (parent_.editing(pi.base.bv)
228             || !parent_.cell(parent_.displayIdx()).empty()) {
229                 InsetLabelBox::draw(pi, x, y);
230         } else {
231                 bool enabled = pi.pain.isDrawingEnabled();
232                 pi.pain.setDrawingEnabled(false);
233                 InsetLabelBox::draw(pi, x, y);
234                 pi.pain.setDrawingEnabled(enabled);
235         }
236 }
237
238
239 //////////////////////////////////////////////////////////////////////
240
241 class InsetMathWrapper : public InsetMath {
242 public:
243         ///
244         InsetMathWrapper(MathData const * value) : value_(value) {}
245         ///
246         void metrics(MetricsInfo & mi, Dimension & dim) const;
247         ///
248         void draw(PainterInfo &, int x, int y) const;
249
250 private:
251         ///
252         Inset * clone() const;
253         ///
254         MathData const * value_;
255 };
256
257
258 Inset * InsetMathWrapper::clone() const
259 {
260         return new InsetMathWrapper(*this);
261 }
262
263
264 void InsetMathWrapper::metrics(MetricsInfo & mi, Dimension & dim) const
265 {
266         value_->metrics(mi, dim);
267         //metricsMarkers2(dim);
268 }
269
270
271 void InsetMathWrapper::draw(PainterInfo & pi, int x, int y) const
272 {
273         value_->draw(pi, x, y);
274         //drawMarkers(pi, x, y);
275 }
276
277
278 ///////////////////////////////////////////////////////////////////////
279 class InsetColoredCell : public InsetMathNest {
280 public:
281         ///
282         InsetColoredCell(ColorCode min, ColorCode max);
283         ///
284         InsetColoredCell(ColorCode min, ColorCode max, MathAtom const & atom);
285         ///
286         void draw(PainterInfo &, int x, int y) const;
287         ///
288         void metrics(MetricsInfo & mi, Dimension & dim) const;
289
290 protected:
291         ///
292         Inset * clone() const;
293         ///
294         ColorCode min_;
295         ///
296         ColorCode max_;
297 };
298
299
300 InsetColoredCell::InsetColoredCell(ColorCode min, ColorCode max)
301         : InsetMathNest(1), min_(min), max_(max)
302 {
303 }
304
305
306 InsetColoredCell::InsetColoredCell(ColorCode min, ColorCode max, MathAtom const & atom)
307         : InsetMathNest(1), min_(min), max_(max)
308 {
309         cell(0).insert(0, atom);
310 }
311
312
313 Inset * InsetColoredCell::clone() const
314 {
315         return new InsetColoredCell(*this);
316 }
317
318
319 void InsetColoredCell::metrics(MetricsInfo & mi, Dimension & dim) const
320 {
321         cell(0).metrics(mi, dim);
322 }
323
324
325 void InsetColoredCell::draw(PainterInfo & pi, int x, int y) const
326 {
327         pi.pain.enterMonochromeMode(min_, max_);
328         cell(0).draw(pi, x, y);
329         pi.pain.leaveMonochromeMode();
330 }
331
332
333 ///////////////////////////////////////////////////////////////////////
334
335 class InsetNameWrapper : public InsetMathWrapper {
336 public:
337         ///
338         InsetNameWrapper(MathData const * value, MathMacroTemplate const & parent);
339         ///
340         void metrics(MetricsInfo & mi, Dimension & dim) const;
341         ///
342         void draw(PainterInfo &, int x, int y) const;
343
344 private:
345         ///
346         MathMacroTemplate const & parent_;
347         ///
348         Inset * clone() const;
349 };
350
351
352 InsetNameWrapper::InsetNameWrapper(MathData const * value,
353                                    MathMacroTemplate const & parent)
354         : InsetMathWrapper(value), parent_(parent)
355 {
356 }
357
358
359 Inset * InsetNameWrapper::clone() const
360 {
361         return new InsetNameWrapper(*this);
362 }
363
364
365 void InsetNameWrapper::metrics(MetricsInfo & mi, Dimension & dim) const
366 {
367         InsetMathWrapper::metrics(mi, dim);
368         dim.wid += mathed_string_width(mi.base.font, from_ascii("\\"));
369 }
370
371
372 void InsetNameWrapper::draw(PainterInfo & pi, int x, int y) const
373 {
374         // create fonts
375         PainterInfo namepi = pi;
376         if (parent_.validMacro())
377                 namepi.base.font.setColor(Color_latex);
378         else
379                 namepi.base.font.setColor(Color_error);
380
381         // draw backslash
382         pi.pain.text(x, y, from_ascii("\\"), namepi.base.font);
383         x += mathed_string_width(namepi.base.font, from_ascii("\\"));
384
385         // draw name
386         InsetMathWrapper::draw(namepi, x, y);
387 }
388
389
390 ///////////////////////////////////////////////////////////////////////
391
392
393 MathMacroTemplate::MathMacroTemplate()
394         : InsetMathNest(3), numargs_(0), argsInLook_(0), optionals_(0),
395           type_(MacroTypeNewcommand), lookOutdated_(true)
396 {
397         initMath();
398 }
399
400
401 MathMacroTemplate::MathMacroTemplate(docstring const & name, int numargs,
402         int optionals, MacroType type,
403         vector<MathData> const & optionalValues,
404         MathData const & def, MathData const & display)
405         : InsetMathNest(optionals + 3), numargs_(numargs), argsInLook_(numargs),
406           optionals_(optionals), optionalValues_(optionalValues),
407           type_(type), lookOutdated_(true)
408 {
409         initMath();
410
411         if (numargs_ > 9)
412                 lyxerr << "MathMacroTemplate::MathMacroTemplate: wrong # of arguments: "
413                         << numargs_ << endl;
414
415         asArray(name, cell(0));
416         optionalValues_.resize(9);
417         for (int i = 0; i < optionals_; ++i)
418                 cell(optIdx(i)) = optionalValues_[i];
419         cell(defIdx()) = def;
420         cell(displayIdx()) = display;
421
422         updateLook();
423 }
424
425
426 MathMacroTemplate::MathMacroTemplate(docstring const & str)
427         : InsetMathNest(3), numargs_(0), optionals_(0),
428         type_(MacroTypeNewcommand), lookOutdated_(true)
429 {
430         initMath();
431
432         MathData ar;
433         mathed_parse_cell(ar, str);
434         if (ar.size() != 1 || !ar[0]->asMacroTemplate()) {
435                 lyxerr << "Cannot read macro from '" << ar << "'" << endl;
436                 asArray(from_ascii("invalidmacro"), cell(0));
437                 // FIXME: The macro template does not make sense after this.
438                 // The whole parsing should not be in a constructor which
439                 // has no chance to report failure.
440                 return;
441         }
442         operator=( *(ar[0]->asMacroTemplate()) );
443
444         updateLook();
445 }
446
447
448 Inset * MathMacroTemplate::clone() const
449 {
450         MathMacroTemplate * inset = new MathMacroTemplate(*this);
451         // the parent pointers of the proxy insets above will point to
452         // to the old template. Hence, the look must be updated.
453         inset->updateLook();
454         return inset;
455 }
456
457
458 docstring MathMacroTemplate::name() const
459 {
460         return asString(cell(0));
461 }
462
463
464 void MathMacroTemplate::updateToContext(MacroContext const & mc) const
465 {
466         redefinition_ = mc.get(name()) != 0;
467 }
468
469
470 void MathMacroTemplate::updateLook() const
471 {
472         lookOutdated_ = true;
473 }
474
475
476 void MathMacroTemplate::createLook(int args) const
477 {
478         look_.clear();
479         argsInLook_ = args;
480
481         // \foo
482         look_.push_back(MathAtom(new InsetLabelBox(_("Name"), *this, false)));
483         MathData & nameData = look_[look_.size() - 1].nucleus()->cell(0);
484         nameData.push_back(MathAtom(new InsetNameWrapper(&cell(0), *this)));
485
486         // [#1][#2]
487         int i = 0;
488         if (optionals_ > 0) {
489                 look_.push_back(MathAtom(new InsetLabelBox(_("optional"), *this, false)));
490                 
491                 MathData * optData = &look_[look_.size() - 1].nucleus()->cell(0);
492                 for (; i < optionals_; ++i) {
493                         // color it light grey, if it is to be removed when the cursor leaves
494                         if (i == argsInLook_) {
495                                 optData->push_back(MathAtom(
496                                         new InsetColoredCell(Color_mathbg, Color_mathmacrooldarg)));
497                                 optData = &(*optData)[optData->size() - 1].nucleus()->cell(0);
498                         }
499
500                         optData->push_back(MathAtom(new InsetMathChar('[')));
501                         optData->push_back(MathAtom(new InsetMathWrapper(&cell(1 + i))));
502                         optData->push_back(MathAtom(new InsetMathChar(']')));
503                 }
504         }
505
506         // {#3}{#4}
507         for (; i < numargs_; ++i) {
508                 MathData arg;
509                 arg.push_back(MathAtom(new MathMacroArgument(i + 1)));
510                 if (i >= argsInLook_) {
511                         look_.push_back(MathAtom(new InsetColoredCell(
512                                 Color_mathbg, Color_mathmacrooldarg,
513                                 MathAtom(new InsetMathBrace(arg)))));
514                 } else
515                         look_.push_back(MathAtom(new InsetMathBrace(arg)));
516         }
517         for (; i < argsInLook_; ++i) {
518                 MathData arg;
519                 arg.push_back(MathAtom(new MathMacroArgument(i + 1)));
520                 look_.push_back(MathAtom(new InsetColoredCell(
521                         Color_mathbg, Color_mathmacronewarg,
522                         MathAtom(new InsetMathBrace(arg)))));
523         }
524         
525         // :=
526         look_.push_back(MathAtom(new InsetMathChar(':')));
527         look_.push_back(MathAtom(new InsetMathChar('=')));
528
529         // definition
530         look_.push_back(MathAtom(
531                 new InsetLabelBox(MathAtom(
532                         new InsetMathWrapper(&cell(defIdx()))), _("TeX"), *this,        true)));
533
534         // display
535         look_.push_back(MathAtom(
536                 new DisplayLabelBox(MathAtom(
537                         new InsetMathWrapper(&cell(displayIdx()))), _("LyX"), *this)));
538 }
539
540
541 void MathMacroTemplate::metrics(MetricsInfo & mi, Dimension & dim) const
542 {
543         FontSetChanger dummy1(mi.base, from_ascii("mathnormal"));
544         StyleChanger dummy2(mi.base, LM_ST_TEXT);
545
546         // valid macro?
547         MacroData const * macro = 0;
548         if (validName()) {
549                 macro = mi.macrocontext.get(name());
550
551                 // updateToContext() - avoids another lookup
552                 redefinition_ = macro != 0;
553         }
554
555         // update look?
556         int argsInDef = maxArgumentInDefinition();
557         if (lookOutdated_ || argsInDef != argsInLook_) {
558                 lookOutdated_ = false;
559                 createLook(argsInDef);
560         }
561
562         /// metrics for inset contents
563         if (macro)
564                 macro->lock();
565
566         // first phase, premetric:
567         premetrics_ = true;
568         look_.metrics(mi, dim);
569         labelBoxAscent_ = dim.asc;
570         labelBoxDescent_ = dim.des;
571
572         // second phase, main metric:
573         premetrics_ = false;
574         look_.metrics(mi, dim);
575
576         if (macro)
577                 macro->unlock();
578
579         dim.wid += 6;
580         dim.des += 2;
581         dim.asc += 2;
582
583         setDimCache(mi, dim);
584 }
585
586
587 void MathMacroTemplate::draw(PainterInfo & pi, int x, int y) const
588 {
589         FontSetChanger dummy1(pi.base, from_ascii("mathnormal"));
590         StyleChanger dummy2(pi.base, LM_ST_TEXT);
591
592         setPosCache(pi, x, y);
593         Dimension const dim = dimension(*pi.base.bv);
594
595         // draw outer frame
596         int const a = y - dim.asc + 1;
597         int const w = dim.wid - 2;
598         int const h = dim.height() - 2;
599         pi.pain.rectangle(x, a, w, h, Color_mathframe);
600
601         // just to be sure: set some dummy values for coord cache
602         for (idx_type i = 0; i < nargs(); ++i)
603                 cell(i).setXY(*pi.base.bv, x, y);
604
605         // draw contents
606         look_.draw(pi, x + 3, y);
607 }
608
609
610 void MathMacroTemplate::edit(Cursor & cur, bool front, EntryDirection entry_from)
611 {
612         updateLook();
613         cur.updateFlags(Update::SinglePar);
614         InsetMathNest::edit(cur, front, entry_from);
615 }
616
617
618 bool MathMacroTemplate::notifyCursorLeaves(Cursor const & old, Cursor & cur)
619 {
620         // find this in cursor old
621         Cursor insetCur = old;
622         int scriptSlice = insetCur.find(this);
623         LASSERT(scriptSlice != -1, /**/);
624         insetCur.cutOff(scriptSlice);
625         
626         commitEditChanges(insetCur);
627         updateLook();
628         cur.updateFlags(Update::Force);
629         return InsetMathNest::notifyCursorLeaves(old, cur);
630 }
631
632
633 void MathMacroTemplate::removeArguments(Cursor & cur, int from, int to)
634 {
635         for (DocIterator it = doc_iterator_begin(&buffer(), this); it; it.forwardChar()) {
636                 if (!it.nextInset())
637                         continue;
638                 if (it.nextInset()->lyxCode() != MATHMACROARG_CODE)
639                         continue;
640                 MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
641                 int n = arg->number() - 1;
642                 if (from <= n && n <= to) {
643                         int cellSlice = cur.find(it.cell());
644                         if (cellSlice != -1 && cur[cellSlice].pos() > it.pos())
645                                 --cur[cellSlice].pos();
646
647                         it.cell().erase(it.pos());
648                 }
649         }
650
651         updateLook();
652 }
653
654
655 void MathMacroTemplate::shiftArguments(size_t from, int by)
656 {
657         for (DocIterator it = doc_iterator_begin(&buffer(), this); it; it.forwardChar()) {
658                 if (!it.nextInset())
659                         continue;
660                 if (it.nextInset()->lyxCode() != MATHMACROARG_CODE)
661                         continue;
662                 MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
663                 if (arg->number() >= int(from) + 1)
664                         arg->setNumber(arg->number() + by);
665         }
666
667         updateLook();
668 }
669
670
671 int MathMacroTemplate::maxArgumentInDefinition() const
672 {
673         int maxArg = 0;
674         DocIterator it = doc_iterator_begin(&buffer(), this);
675         it.idx() = defIdx();
676         for (; it; it.forwardChar()) {
677                 if (!it.nextInset())
678                         continue;
679                 if (it.nextInset()->lyxCode() != MATHMACROARG_CODE)
680                         continue;
681                 MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
682                 maxArg = std::max(int(arg->number()), maxArg);
683         }
684         return maxArg;
685 }
686
687
688 void MathMacroTemplate::insertMissingArguments(int maxArg)
689 {
690         bool found[9] = { false, false, false, false, false, false, false, false, false };
691         idx_type idx = cell(displayIdx()).empty() ? defIdx() : displayIdx();
692
693         // search for #n macros arguments
694         DocIterator it = doc_iterator_begin(&buffer(), this);
695         it.idx() = idx;
696         for (; it && it[0].idx() == idx; it.forwardChar()) {
697                 if (!it.nextInset())
698                         continue;
699                 if (it.nextInset()->lyxCode() != MATHMACROARG_CODE)
700                         continue;
701                 MathMacroArgument * arg = static_cast<MathMacroArgument*>(it.nextInset());
702                 found[arg->number() - 1] = true;
703         }
704
705         // add missing ones
706         for (int i = 0; i < maxArg; ++i) {
707                 if (found[i])
708                         continue;
709
710                 cell(idx).push_back(MathAtom(new MathMacroArgument(i + 1)));
711         }
712 }
713
714
715 void MathMacroTemplate::changeArity(Cursor & cur, int newNumArg)
716 {
717         // remove parameter which do not appear anymore in the definition
718         for (int i = numargs_; i > newNumArg; --i)
719                 removeParameter(cur, numargs_ - 1, false);
720         
721         // add missing parameter
722         for (int i = numargs_; i < newNumArg; ++i)
723                 insertParameter(cur, numargs_, false, false);
724 }
725
726
727 void MathMacroTemplate::commitEditChanges(Cursor & cur)
728 {
729         int argsInDef = maxArgumentInDefinition();
730         if (argsInDef != numargs_) {
731                 cur.recordUndoFullDocument();
732                 changeArity(cur, argsInDef);
733         }
734         insertMissingArguments(argsInDef);
735 }
736
737
738 // FIXME: factorize those functions here with a functional style, maybe using Boost's function
739 // objects?
740
741 void fixMacroInstancesAddRemove(Cursor const & from, docstring const & name, int n, bool insert) {
742         Cursor dit = from;
743
744         for (; dit; dit.forwardPos()) {
745                 // only until a macro is redefined
746                 if (dit.inset().lyxCode() == MATHMACRO_CODE) {
747                         MathMacroTemplate const & macroTemplate
748                         = static_cast<MathMacroTemplate const &>(dit.inset());
749                         if (macroTemplate.name() == name)
750                                 break;
751                 }
752
753                 // in front of macro instance?
754                 Inset * inset = dit.nextInset();
755                 if (!inset)
756                         continue;
757                 InsetMath * insetMath = inset->asInsetMath();
758                 if (!insetMath)
759                         continue;
760
761                 MathMacro * macro = insetMath->asMacro();
762                 if (macro && macro->name() == name && macro->folded()) {
763                         // found macro instance
764                         if (insert)
765                                 macro->insertArgument(n);
766                         else
767                                 macro->removeArgument(n);
768                 }
769         }
770 }
771
772
773 void fixMacroInstancesOptional(Cursor const & from, docstring const & name, int optionals) {
774         Cursor dit = from;
775
776         for (; dit; dit.forwardPos()) {
777                 // only until a macro is redefined
778                 if (dit.inset().lyxCode() == MATHMACRO_CODE) {
779                         MathMacroTemplate const & macroTemplate
780                         = static_cast<MathMacroTemplate const &>(dit.inset());
781                         if (macroTemplate.name() == name)
782                                 break;
783                 }
784
785                 // in front of macro instance?
786                 Inset * inset = dit.nextInset();
787                 if (!inset)
788                         continue;
789                 InsetMath * insetMath = inset->asInsetMath();
790                 if (!insetMath)
791                         continue;
792                 MathMacro * macro = insetMath->asMacro();
793                 if (macro && macro->name() == name && macro->folded()) {
794                         // found macro instance
795                         macro->setOptionals(optionals);
796                 }
797         }
798 }
799
800
801 template<class F>
802 void fixMacroInstancesFunctional(Cursor const & from,
803         docstring const & name, F & fix) {
804         Cursor dit = from;
805
806         for (; dit; dit.forwardPos()) {
807                 // only until a macro is redefined
808                 if (dit.inset().lyxCode() == MATHMACRO_CODE) {
809                         MathMacroTemplate const & macroTemplate
810                         = static_cast<MathMacroTemplate const &>(dit.inset());
811                         if (macroTemplate.name() == name)
812                                 break;
813                 }
814
815                 // in front of macro instance?
816                 Inset * inset = dit.nextInset();
817                 if (!inset)
818                         continue;
819                 InsetMath * insetMath = inset->asInsetMath();
820                 if (!insetMath)
821                         continue;
822                 MathMacro * macro = insetMath->asMacro();
823                 if (macro && macro->name() == name && macro->folded())
824                         F(macro);
825         }
826 }
827
828
829 void MathMacroTemplate::insertParameter(Cursor & cur, int pos, bool greedy, bool addarg)
830 {
831         if (pos <= numargs_ && pos >= optionals_ && numargs_ < 9) {
832                 ++numargs_;
833                 
834                 // append example #n
835                 if (addarg) {
836                         shiftArguments(pos, 1);
837
838                         cell(defIdx()).push_back(MathAtom(new MathMacroArgument(pos + 1)));
839                         if (!cell(displayIdx()).empty())
840                                 cell(displayIdx()).push_back(MathAtom(new MathMacroArgument(pos + 1)));
841                 }
842
843                 if (!greedy) {
844                         Cursor dit = cur;
845                         dit.leaveInset(*this);
846                         // TODO: this was dit.forwardPosNoDescend before. Check that this is the same
847                         dit.top().forwardPos();
848
849                         // fix macro instances
850                         fixMacroInstancesAddRemove(dit, name(), pos, true);
851                 }
852         }
853
854         updateLook();
855 }
856
857
858 void MathMacroTemplate::removeParameter(Cursor & cur, int pos, bool greedy)
859 {
860         if (pos < numargs_ && pos >= 0) {
861                 --numargs_;
862                 removeArguments(cur, pos, pos);
863                 shiftArguments(pos + 1, -1);
864
865                 // removed optional parameter?
866                 if (pos < optionals_) {
867                         --optionals_;
868                         optionalValues_[pos] = cell(optIdx(pos));
869                         cells_.erase(cells_.begin() + optIdx(pos));
870
871                         // fix cursor
872                         int macroSlice = cur.find(this);
873                         if (macroSlice != -1) {
874                                 if (cur[macroSlice].idx() == optIdx(pos)) {
875                                         cur.cutOff(macroSlice);
876                                         cur[macroSlice].idx() = 1;
877                                         cur[macroSlice].pos() = 0;
878                                 } else if (cur[macroSlice].idx() > optIdx(pos))
879                                         --cur[macroSlice].idx();
880                         }
881                 }
882
883                 if (!greedy) {
884                         // fix macro instances
885                         //boost::function<void(MathMacro *)> fix = _1->insertArgument(n);
886                         //fixMacroInstancesFunctional(dit, name(), fix);
887                         Cursor dit = cur;
888                         dit.leaveInset(*this);
889                         // TODO: this was dit.forwardPosNoDescend before. Check that this is the same
890                         dit.top().forwardPos();
891                         fixMacroInstancesAddRemove(dit, name(), pos, false);
892                 }
893         }
894
895         updateLook();
896 }
897
898
899 void MathMacroTemplate::makeOptional(Cursor & cur) {
900         if (numargs_ > 0 && optionals_ < numargs_) {
901                 ++optionals_;
902                 cells_.insert(cells_.begin() + optIdx(optionals_ - 1), optionalValues_[optionals_ - 1]);
903                 // fix cursor
904                 int macroSlice = cur.find(this);
905                 if (macroSlice != -1 && cur[macroSlice].idx() >= optIdx(optionals_ - 1))
906                         ++cur[macroSlice].idx();
907
908                 // fix macro instances
909                 Cursor dit = cur;
910                 dit.leaveInset(*this);
911                 // TODO: this was dit.forwardPosNoDescend before. Check that this is the same
912                 dit.top().forwardPos();
913                 fixMacroInstancesOptional(dit, name(), optionals_);
914         }
915
916         updateLook();
917 }
918
919
920 void MathMacroTemplate::makeNonOptional(Cursor & cur) {
921         if (numargs_ > 0 && optionals_ > 0) {
922                 --optionals_;
923
924                 // store default value for later if the user changes his mind
925                 optionalValues_[optionals_] = cell(optIdx(optionals_));
926                 cells_.erase(cells_.begin() + optIdx(optionals_));
927
928                 // fix cursor
929                 int macroSlice = cur.find(this);
930                 if (macroSlice != -1) {
931                         if (cur[macroSlice].idx() > optIdx(optionals_))
932                                 --cur[macroSlice].idx();
933                         else if (cur[macroSlice].idx() == optIdx(optionals_)) {
934                                 cur.cutOff(macroSlice);
935                                 cur[macroSlice].idx() = optIdx(optionals_);
936                                 cur[macroSlice].pos() = 0;
937                         }
938                 }
939
940                 // fix macro instances
941                 Cursor dit = cur;
942                 dit.leaveInset(*this);
943                 // TODO: this was dit.forwardPosNoDescend before. Check that this is the same
944                 dit.top().forwardPos();
945                 fixMacroInstancesOptional(dit, name(), optionals_);
946         }
947
948         updateLook();
949 }
950
951
952 void MathMacroTemplate::doDispatch(Cursor & cur, FuncRequest & cmd)
953 {
954         string const arg = to_utf8(cmd.argument());
955         switch (cmd.action) {
956
957         case LFUN_MATH_MACRO_ADD_PARAM:
958                 if (numargs_ < 9) {
959                         commitEditChanges(cur);
960                         cur.recordUndoFullDocument();
961                         size_t pos = numargs_;
962                         if (arg.size() != 0)
963                                 pos = (size_t)convert<int>(arg) - 1; // it is checked for >=0 in getStatus
964                         insertParameter(cur, pos);
965                 }
966                 break;
967
968
969         case LFUN_MATH_MACRO_REMOVE_PARAM:
970                 if (numargs_ > 0) {
971                         commitEditChanges(cur);
972                         cur.recordUndoFullDocument();
973                         size_t pos = numargs_ - 1;
974                         if (arg.size() != 0)
975                                 pos = (size_t)convert<int>(arg) - 1; // it is checked for >=0 in getStatus
976                         removeParameter(cur, pos);
977                 }
978                 break;
979
980         case LFUN_MATH_MACRO_APPEND_GREEDY_PARAM:
981                 if (numargs_ < 9) {
982                         commitEditChanges(cur);
983                         cur.recordUndoFullDocument();
984                         insertParameter(cur, numargs_, true);
985                 }
986                 break;
987
988         case LFUN_MATH_MACRO_REMOVE_GREEDY_PARAM:
989                 if (numargs_ > 0) {
990                         commitEditChanges(cur);
991                         cur.recordUndoFullDocument();
992                         removeParameter(cur, numargs_ - 1, true);
993                 }
994                 break;
995
996         case LFUN_MATH_MACRO_MAKE_OPTIONAL:
997                 commitEditChanges(cur);
998                 cur.recordUndoFullDocument();
999                 makeOptional(cur);
1000                 break;
1001
1002         case LFUN_MATH_MACRO_MAKE_NONOPTIONAL:
1003                 commitEditChanges(cur);
1004                 cur.recordUndoFullDocument();
1005                 makeNonOptional(cur);
1006                 break;
1007
1008         case LFUN_MATH_MACRO_ADD_OPTIONAL_PARAM:
1009                 if (numargs_ < 9) {
1010                         commitEditChanges(cur);
1011                         cur.recordUndoFullDocument();
1012                         insertParameter(cur, optionals_);
1013                         makeOptional(cur);
1014                 }
1015                 break;
1016
1017         case LFUN_MATH_MACRO_REMOVE_OPTIONAL_PARAM:
1018                 if (optionals_ > 0) {
1019                         commitEditChanges(cur);
1020                         cur.recordUndoFullDocument();
1021                         removeParameter(cur, optionals_ - 1);
1022                 } break;
1023
1024         case LFUN_MATH_MACRO_ADD_GREEDY_OPTIONAL_PARAM:
1025                 if (numargs_ == optionals_) {
1026                         commitEditChanges(cur);
1027                         cur.recordUndoFullDocument();
1028                         insertParameter(cur, 0, true);
1029                         makeOptional(cur);
1030                 }
1031                 break;
1032
1033         default:
1034                 InsetMathNest::doDispatch(cur, cmd);
1035                 break;
1036         }
1037 }
1038
1039
1040 bool MathMacroTemplate::getStatus(Cursor & /*cur*/, FuncRequest const & cmd,
1041         FuncStatus & flag) const
1042 {
1043         bool ret = true;
1044         string const arg = to_utf8(cmd.argument());
1045         switch (cmd.action) {
1046                 case LFUN_MATH_MACRO_ADD_PARAM: {
1047                         int num = numargs_ + 1;
1048                         if (arg.size() != 0)
1049                                 num = convert<int>(arg);
1050                         bool on = (num >= optionals_
1051                                    && numargs_ < 9 && num <= numargs_ + 1);
1052                         flag.setEnabled(on);
1053                         break;
1054                 }
1055
1056                 case LFUN_MATH_MACRO_APPEND_GREEDY_PARAM:
1057                         flag.setEnabled(numargs_ < 9);
1058                         break;
1059
1060                 case LFUN_MATH_MACRO_REMOVE_PARAM: {
1061                         int num = numargs_;
1062                         if (arg.size() != 0)
1063                                 num = convert<int>(arg);
1064                         flag.setEnabled(num >= 1 && num <= numargs_);
1065                         break;
1066                 }
1067
1068                 case LFUN_MATH_MACRO_MAKE_OPTIONAL:
1069                         flag.setEnabled(numargs_ > 0
1070                                      && optionals_ < numargs_
1071                                      && type_ != MacroTypeDef);
1072                         break;
1073
1074                 case LFUN_MATH_MACRO_MAKE_NONOPTIONAL:
1075                         flag.setEnabled(optionals_ > 0
1076                                      && type_ != MacroTypeDef);
1077                         break;
1078
1079                 case LFUN_MATH_MACRO_ADD_OPTIONAL_PARAM:
1080                         flag.setEnabled(numargs_ < 9);
1081                         break;
1082
1083                 case LFUN_MATH_MACRO_REMOVE_OPTIONAL_PARAM:
1084                         flag.setEnabled(optionals_ > 0);
1085                         break;
1086
1087                 case LFUN_MATH_MACRO_ADD_GREEDY_OPTIONAL_PARAM:
1088                         flag.setEnabled(numargs_ == 0
1089                                      && type_ != MacroTypeDef);
1090                         break;
1091
1092                 case LFUN_IN_MATHMACROTEMPLATE:
1093                         flag.setEnabled(true);
1094                         break;
1095
1096                 default:
1097                         ret = false;
1098                         break;
1099         }
1100         return ret;
1101 }
1102
1103
1104 void MathMacroTemplate::read(Lexer & lex)
1105 {
1106         MathData ar;
1107         mathed_parse_cell(ar, lex.getStream());
1108         if (ar.size() != 1 || !ar[0]->asMacroTemplate()) {
1109                 lyxerr << "Cannot read macro from '" << ar << "'" << endl;
1110                 lyxerr << "Read: " << to_utf8(asString(ar)) << endl;
1111                 return;
1112         }
1113         operator=( *(ar[0]->asMacroTemplate()) );
1114
1115         updateLook();
1116 }
1117
1118
1119 void MathMacroTemplate::write(ostream & os) const
1120 {
1121         odocstringstream oss;
1122         WriteStream wi(oss, false, false, false);
1123         oss << "FormulaMacro\n";
1124         write(wi);
1125         os << to_utf8(oss.str());
1126 }
1127
1128
1129 void MathMacroTemplate::write(WriteStream & os) const
1130 {
1131         write(os, false);
1132 }
1133
1134
1135 void MathMacroTemplate::write(WriteStream & os, bool overwriteRedefinition) const
1136 {
1137         if (os.latex()) {
1138                 if (optionals_ > 0) {
1139                         // macros with optionals use the xargs package, e.g.:
1140                         // \newcommandx{\foo}[2][usedefault, addprefix=\global,1=default]{#1,#2}
1141                         // \long is implicit by xargs
1142                         if (redefinition_ && !overwriteRedefinition)
1143                                 os << "\\renewcommandx";
1144                         else
1145                                 os << "\\newcommandx";
1146
1147                         os << "\\" << name()
1148                            << "[" << numargs_ << "]"
1149                            << "[usedefault, addprefix=\\global";
1150                         for (int i = 0; i < optionals_; ++i) {
1151                                 docstring optValue = asString(cell(optIdx(i)));
1152                                 if (optValue.find(']') != docstring::npos
1153                                     || optValue.find(',') != docstring::npos)
1154                                         os << ", " << i + 1 << "="
1155                                         << "{" << cell(optIdx(i)) << "}";
1156                                 else
1157                                         os << ", " << i + 1 << "="
1158                                         << cell(optIdx(i));
1159                         }
1160                         os << "]";
1161                 } else {
1162                         // Macros without optionals use standard _global_ \def macros:
1163                         //   \global\def\long\foo#1#2{#1,#2}
1164                         // We use the \long prefix as this is the equivalent to \newcommand.
1165                         // We cannot use \newcommand directly because \global does not work with it.
1166                         os << "\\global\\long\\def\\" << name();
1167                         docstring param = from_ascii("#0");
1168                         for (int i = 1; i <= numargs_; ++i) { 
1169                                 param[1] = '0' + i;
1170                                 os << param;
1171                         }
1172                 }
1173         } else {
1174                 // in LyX output we use some pseudo syntax which is implementation
1175                 // independent, e.g.
1176                 // \newcommand{\foo}[2][default]{#1,#2}
1177                 if (redefinition_ && !overwriteRedefinition)
1178                         os << "\\renewcommand";
1179                 else
1180                         os << "\\newcommand";
1181                 os << "{\\" << name() << '}';
1182                 if (numargs_ > 0)
1183                         os << '[' << numargs_ << ']';
1184
1185                 for (int i = 0; i < optionals_; ++i) {
1186                         docstring optValue = asString(cell(optIdx(i)));
1187                         if (optValue.find(']') != docstring::npos)
1188                                 os << "[{" << cell(optIdx(i)) << "}]";
1189                         else
1190                                 os << "[" << cell(optIdx(i)) << "]";
1191                 }
1192         }
1193
1194         os << "{" << cell(defIdx()) << "}";
1195
1196         if (os.latex()) {
1197                 // writing .tex. done.
1198                 os << "\n";
1199         } else {
1200                 // writing .lyx, write special .tex export only if necessary
1201                 if (!cell(displayIdx()).empty())
1202                         os << "\n{" << cell(displayIdx()) << '}';
1203         }
1204 }
1205
1206
1207 int MathMacroTemplate::plaintext(odocstream & os,
1208                                  OutputParams const &) const
1209 {
1210         static docstring const str = '[' + buffer().B_("math macro") + ']';
1211
1212         os << str;
1213         return str.size();
1214 }
1215
1216
1217 bool MathMacroTemplate::validName() const
1218 {
1219         docstring n = name();
1220
1221         // empty name?
1222         if (n.size() == 0)
1223                 return false;
1224
1225         // converting back and force doesn't swallow anything?
1226         /*MathData ma;
1227         asArray(n, ma);
1228         if (asString(ma) != n)
1229                 return false;*/
1230
1231         // valid characters?
1232         for (size_t i = 0; i < n.size(); ++i) {
1233                 if (!(n[i] >= 'a' && n[i] <= 'z')
1234                     && !(n[i] >= 'A' && n[i] <= 'Z')
1235                     && n[i] != '*')
1236                         return false;
1237         }
1238
1239         return true;
1240 }
1241
1242
1243 bool MathMacroTemplate::validMacro() const
1244 {
1245         return validName();
1246 }
1247
1248
1249 bool MathMacroTemplate::fixNameAndCheckIfValid()
1250 {
1251         // check all the characters/insets in the name cell
1252         size_t i = 0;
1253         MathData & data = cell(0);
1254         while (i < data.size()) {
1255                 InsetMathChar const * cinset = data[i]->asCharInset();
1256                 if (cinset) {
1257                         // valid character in [a-zA-Z]?
1258                         char_type c = cinset->getChar();
1259                         if ((c >= 'a' && c <= 'z')
1260                             || (c >= 'A' && c <= 'Z')) {
1261                                 ++i;
1262                                 continue;
1263                         }
1264                 }
1265
1266                 // throw cell away
1267                 data.erase(i);
1268         }
1269
1270         // now it should be valid if anything in the name survived
1271         return data.size() > 0;
1272 }
1273
1274         
1275 void MathMacroTemplate::validate(LaTeXFeatures & features) const
1276 {
1277         // we need global optional macro arguments. They are not available 
1278         // with \def, and \newcommand does not support global macros. So we
1279         // are bound to xargs also for the single-optional-parameter case.
1280         if (optionals_ > 0)
1281                 features.require("xargs");
1282 }
1283
1284 void MathMacroTemplate::getDefaults(vector<docstring> & defaults) const
1285 {
1286         defaults.resize(numargs_);
1287         for (int i = 0; i < optionals_; ++i)
1288                 defaults[i] = asString(cell(optIdx(i)));
1289 }
1290
1291
1292 docstring MathMacroTemplate::definition() const
1293 {
1294         return asString(cell(defIdx()));
1295 }
1296
1297
1298 docstring MathMacroTemplate::displayDefinition() const
1299 {
1300         return asString(cell(displayIdx()));
1301 }
1302
1303
1304 size_t MathMacroTemplate::numArgs() const
1305 {
1306         return numargs_;
1307 }
1308
1309
1310 size_t MathMacroTemplate::numOptionals() const
1311 {
1312         return optionals_;
1313 }
1314
1315
1316 void MathMacroTemplate::infoize(odocstream & os) const
1317 {
1318         os << "Math Macro: \\" << name();
1319 }
1320
1321
1322 docstring MathMacroTemplate::contextMenu(BufferView const &, int, int) const
1323 {
1324         return from_ascii("context-math-macro-definition");
1325 }
1326
1327 } // namespace lyx