]> git.lyx.org Git - lyx.git/blob - src/mathed/MathData.cpp
Check path of Qt tools if qtchooser is detected
[lyx.git] / src / mathed / MathData.cpp
1 /**
2  * \file MathData.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 "MathData.h"
15
16 #include "InsetMathBrace.h"
17 #include "InsetMathFont.h"
18 #include "InsetMathScript.h"
19 #include "MacroTable.h"
20 #include "MathMacro.h"
21 #include "MathStream.h"
22 #include "MathSupport.h"
23 #include "MetricsInfo.h"
24 #include "ReplaceData.h"
25
26 #include "Buffer.h"
27 #include "BufferView.h"
28 #include "CoordCache.h"
29 #include "Cursor.h"
30
31 #include "mathed/InsetMathUnknown.h"
32
33 #include "support/debug.h"
34 #include "support/docstream.h"
35
36 #include "frontends/FontMetrics.h"
37 #include "frontends/Painter.h"
38
39 #include "support/gettext.h"
40 #include "support/lassert.h"
41 #include "support/lyxalgo.h"
42
43 #include <cstdlib>
44
45 using namespace std;
46
47 namespace lyx {
48
49
50 MathData::MathData(Buffer * buf, const_iterator from, const_iterator to)
51         : base_type(from, to), minasc_(0), mindes_(0), slevel_(0),
52           sshift_(0), kerning_(0), buffer_(buf)
53 {}
54
55
56 MathAtom & MathData::operator[](pos_type pos)
57 {
58         LBUFERR(pos < size());
59         return base_type::operator[](pos);
60 }
61
62
63 MathAtom const & MathData::operator[](pos_type pos) const
64 {
65         LBUFERR(pos < size());
66         return base_type::operator[](pos);
67 }
68
69
70 void MathData::insert(size_type pos, MathAtom const & t)
71 {
72         LBUFERR(pos <= size());
73         base_type::insert(begin() + pos, t);
74 }
75
76
77 void MathData::insert(size_type pos, MathData const & ar)
78 {
79         LBUFERR(pos <= size());
80         base_type::insert(begin() + pos, ar.begin(), ar.end());
81 }
82
83
84 void MathData::append(MathData const & ar)
85 {
86         insert(size(), ar);
87 }
88
89
90 void MathData::erase(size_type pos)
91 {
92         if (pos < size())
93                 erase(pos, pos + 1);
94 }
95
96
97 void MathData::erase(iterator pos1, iterator pos2)
98 {
99         base_type::erase(pos1, pos2);
100 }
101
102
103 void MathData::erase(iterator pos)
104 {
105         base_type::erase(pos);
106 }
107
108
109 void MathData::erase(size_type pos1, size_type pos2)
110 {
111         base_type::erase(begin() + pos1, begin() + pos2);
112 }
113
114
115 void MathData::dump2() const
116 {
117         odocstringstream os;
118         NormalStream ns(os);
119         for (const_iterator it = begin(); it != end(); ++it)
120                 ns << *it << ' ';
121         lyxerr << to_utf8(os.str());
122 }
123
124
125 void MathData::dump() const
126 {
127         odocstringstream os;
128         NormalStream ns(os);
129         for (const_iterator it = begin(); it != end(); ++it)
130                 ns << '<' << *it << '>';
131         lyxerr << to_utf8(os.str());
132 }
133
134
135 void MathData::validate(LaTeXFeatures & features) const
136 {
137         for (const_iterator it = begin(); it != end(); ++it)
138                 (*it)->validate(features);
139 }
140
141
142 bool MathData::match(MathData const & ar) const
143 {
144         return size() == ar.size() && matchpart(ar, 0);
145 }
146
147
148 bool MathData::matchpart(MathData const & ar, pos_type pos) const
149 {
150         if (size() < ar.size() + pos)
151                 return false;
152         const_iterator it = begin() + pos;
153         for (const_iterator jt = ar.begin(); jt != ar.end(); ++jt, ++it)
154                 if (asString(*it) != asString(*jt))
155                         return false;
156         return true;
157 }
158
159
160 void MathData::replace(ReplaceData & rep)
161 {
162         for (size_type i = 0; i < size(); ++i) {
163                 if (find1(rep.from, i)) {
164                         // match found
165                         lyxerr << "match found!" << endl;
166                         erase(i, i + rep.from.size());
167                         insert(i, rep.to);
168                 }
169         }
170
171         // FIXME: temporarily disabled
172         // for (const_iterator it = begin(); it != end(); ++it)
173         //      it->nucleus()->replace(rep);
174 }
175
176
177 bool MathData::find1(MathData const & ar, size_type pos) const
178 {
179         lyxerr << "finding '" << ar << "' in '" << *this << "'" << endl;
180         for (size_type i = 0, n = ar.size(); i < n; ++i)
181                 if (asString(operator[](pos + i)) != asString(ar[i]))
182                         return false;
183         return true;
184 }
185
186
187 MathData::size_type MathData::find(MathData const & ar) const
188 {
189         for (int i = 0, last = size() - ar.size(); i < last; ++i)
190                 if (find1(ar, i))
191                         return i;
192         return size();
193 }
194
195
196 MathData::size_type MathData::find_last(MathData const & ar) const
197 {
198         for (int i = size() - ar.size(); i >= 0; --i)
199                 if (find1(ar, i))
200                         return i;
201         return size();
202 }
203
204
205 bool MathData::contains(MathData const & ar) const
206 {
207         if (find(ar) != size())
208                 return true;
209         for (const_iterator it = begin(); it != end(); ++it)
210                 if ((*it)->contains(ar))
211                         return true;
212         return false;
213 }
214
215
216 void MathData::touch() const
217 {
218 }
219
220
221 #if 0
222 namespace {
223
224 bool isInside(DocIterator const & it, MathData const & ar,
225         pos_type p1, pos_type p2)
226 {
227         for (size_t i = 0; i != it.depth(); ++i) {
228                 CursorSlice const & sl = it[i];
229                 if (sl.inset().inMathed() && &sl.cell() == &ar)
230                         return p1 <= sl.pos() && sl.pos() < p2;
231         }
232         return false;
233 }
234
235 }
236 #endif
237
238
239 void MathData::metrics(MetricsInfo & mi, Dimension & dim) const
240 {
241         frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
242         dim = fm.dimension('I');
243         int xascent = fm.dimension('x').ascent();
244         if (xascent >= dim.asc)
245                 xascent = (2 * dim.asc) / 3;
246         minasc_ = xascent;
247         mindes_ = (3 * xascent) / 4;
248         slevel_ = (4 * xascent) / 5;
249         sshift_ = xascent / 4;
250         kerning_ = 0;
251
252         if (empty()) {
253                 // Cache the dimension.
254                 mi.base.bv->coordCache().arrays().add(this, dim);
255                 return;
256         }
257
258         Cursor & cur = mi.base.bv->cursor();
259         const_cast<MathData*>(this)->updateMacros(&cur, mi.macrocontext, InternalUpdate);
260
261         DocIterator const & inlineCompletionPos = mi.base.bv->inlineCompletionPos();
262         MathData const * inlineCompletionData = 0;
263         if (inlineCompletionPos.inMathed())
264                 inlineCompletionData = &inlineCompletionPos.cell();
265
266         dim.asc = 0;
267         dim.wid = 0;
268         Dimension d;
269         CoordCache::Insets & coords = mi.base.bv->coordCache().insets();
270         for (pos_type i = 0, n = size(); i != n; ++i) {
271                 MathAtom const & at = operator[](i);
272                 at->metrics(mi, d);
273                 coords.add(at.nucleus(), d);
274                 dim += d;
275                 if (i == n - 1)
276                         kerning_ = at->kerning(mi.base.bv);
277
278                 // HACK to draw completion suggestion inline
279                 if (inlineCompletionData != this
280                     || size_t(inlineCompletionPos.pos()) != i + 1)
281                         continue;
282
283                 docstring const & completion = mi.base.bv->inlineCompletion();
284                 if (completion.length() == 0)
285                         continue;
286
287                 FontInfo font = mi.base.font;
288                 augmentFont(font, "mathnormal");
289                 dim.wid += mathed_string_width(font, completion);
290         }
291         // Cache the dimension.
292         mi.base.bv->coordCache().arrays().add(this, dim);
293 }
294
295
296 void MathData::draw(PainterInfo & pi, int x, int y) const
297 {
298         //lyxerr << "MathData::draw: x: " << x << " y: " << y << endl;
299         BufferView & bv  = *pi.base.bv;
300         setXY(bv, x, y);
301
302         Dimension const & dim = bv.coordCache().getArrays().dim(this);
303
304         if (empty()) {
305                 pi.pain.rectangle(x, y - dim.ascent(), dim.width(), dim.height(), Color_mathline);
306                 return;
307         }
308
309         // don't draw outside the workarea
310         if (y + dim.descent() <= 0
311                 || y - dim.ascent() >= bv.workHeight()
312                 || x + dim.width() <= 0
313                 || x >= bv. workWidth())
314                 return;
315
316         DocIterator const & inlineCompletionPos = bv.inlineCompletionPos();
317         MathData const * inlineCompletionData = 0;
318         if (inlineCompletionPos.inMathed())
319                 inlineCompletionData = &inlineCompletionPos.cell();
320
321         CoordCache::Insets & coords = pi.base.bv->coordCache().insets();
322         for (size_t i = 0, n = size(); i != n; ++i) {
323                 MathAtom const & at = operator[](i);
324                 coords.add(at.nucleus(), x, y);
325                 at->drawSelection(pi, x, y);
326                 at->draw(pi, x, y);
327                 x += coords.dim(at.nucleus()).wid;
328
329                 // Is the inline completion here?
330                 if (inlineCompletionData != this
331                     || size_t(inlineCompletionPos.pos()) != i + 1)
332                         continue;
333                 docstring const & completion = bv.inlineCompletion();
334                 if (completion.length() == 0)
335                         continue;
336                 FontInfo f = pi.base.font;
337                 augmentFont(f, "mathnormal");
338
339                 // draw the unique and the non-unique completion part
340                 // Note: this is not time-critical as it is
341                 // only done once per screen.
342                 size_t uniqueTo = bv.inlineCompletionUniqueChars();
343                 docstring s1 = completion.substr(0, uniqueTo);
344                 docstring s2 = completion.substr(uniqueTo);
345
346                 if (!s1.empty()) {
347                         f.setColor(Color_inlinecompletion);
348                         pi.pain.text(x, y, s1, f);
349                         x += mathed_string_width(f, s1);
350                 }
351
352                 if (!s2.empty()) {
353                         f.setColor(Color_nonunique_inlinecompletion);
354                         pi.pain.text(x, y, s2, f);
355                         x += mathed_string_width(f, s2);
356                 }
357         }
358 }
359
360
361 void MathData::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
362 {
363         dim.clear();
364         Dimension d;
365         for (const_iterator it = begin(); it != end(); ++it) {
366                 (*it)->metricsT(mi, d);
367                 dim += d;
368         }
369 }
370
371
372 void MathData::drawT(TextPainter & pain, int x, int y) const
373 {
374         //lyxerr << "x: " << x << " y: " << y << ' ' << pain.workAreaHeight() << endl;
375
376         // FIXME: Abdel 16/10/2006
377         // This drawT() method is never used, this is dead code.
378
379         for (const_iterator it = begin(), et = end(); it != et; ++it) {
380                 (*it)->drawT(pain, x, y);
381                 //x += (*it)->width_;
382                 x += 2;
383         }
384 }
385
386
387 void MathData::updateBuffer(ParIterator const & it, UpdateType utype)
388 {
389         // pass down
390         for (size_t i = 0, n = size(); i != n; ++i) {
391                 MathAtom & at = operator[](i);
392                 at.nucleus()->updateBuffer(it, utype);
393         }
394 }
395
396
397 void MathData::updateMacros(Cursor * cur, MacroContext const & mc,
398                 UpdateType utype)
399 {
400         // If we are editing a macro, we cannot update it immediately,
401         // otherwise wrong undo steps will be recorded (bug 6208).
402         InsetMath const * inmath = cur ? cur->inset().asInsetMath() : 0;
403         MathMacro const * inmacro = inmath ? inmath->asMacro() : 0;
404         docstring const edited_name = inmacro ? inmacro->name() : docstring();
405
406         // go over the array and look for macros
407         for (size_t i = 0; i < size(); ++i) {
408                 MathMacro * macroInset = operator[](i).nucleus()->asMacro();
409                 if (!macroInset || macroInset->macroName().empty()
410                                 || macroInset->macroName()[0] == '^'
411                                 || macroInset->macroName()[0] == '_'
412                                 || (macroInset->name() == edited_name
413                                     && macroInset->displayMode() ==
414                                                 MathMacro::DISPLAY_UNFOLDED))
415                         continue;
416
417                 // get macro
418                 macroInset->updateMacro(mc);
419                 size_t macroNumArgs = 0;
420                 size_t macroOptionals = 0;
421                 MacroData const * macro = macroInset->macro();
422                 if (macro) {
423                         macroNumArgs = macro->numargs();
424                         macroOptionals = macro->optionals();
425                 }
426
427                 // store old and compute new display mode
428                 MathMacro::DisplayMode newDisplayMode;
429                 MathMacro::DisplayMode oldDisplayMode = macroInset->displayMode();
430                 newDisplayMode = macroInset->computeDisplayMode();
431
432                 // arity changed or other reason to detach?
433                 if (oldDisplayMode == MathMacro::DISPLAY_NORMAL
434                     && (macroInset->arity() != macroNumArgs
435                         || macroInset->optionals() != macroOptionals
436                         || newDisplayMode == MathMacro::DISPLAY_UNFOLDED))
437                         detachMacroParameters(cur, i);
438
439                 // the macro could have been copied while resizing this
440                 macroInset = operator[](i).nucleus()->asMacro();
441
442                 // Cursor in \label?
443                 if (newDisplayMode != MathMacro::DISPLAY_UNFOLDED
444                     && oldDisplayMode == MathMacro::DISPLAY_UNFOLDED) {
445                         // put cursor in front of macro
446                         if (cur) {
447                                 int macroSlice = cur->find(macroInset);
448                                 if (macroSlice != -1)
449                                         cur->cutOff(macroSlice - 1);
450                         }
451                 }
452
453                 // update the display mode
454                 size_t appetite = macroInset->appetite();
455                 macroInset->setDisplayMode(newDisplayMode);
456
457                 // arity changed?
458                 if (newDisplayMode == MathMacro::DISPLAY_NORMAL
459                     && (macroInset->arity() != macroNumArgs
460                         || macroInset->optionals() != macroOptionals)) {
461                         // is it a virgin macro which was never attached to parameters?
462                         bool fromInitToNormalMode
463                         = (oldDisplayMode == MathMacro::DISPLAY_INIT
464                            || oldDisplayMode == MathMacro::DISPLAY_INTERACTIVE_INIT)
465                           && newDisplayMode == MathMacro::DISPLAY_NORMAL;
466
467                         // if the macro was entered interactively (i.e. not by paste or during
468                         // loading), it should not be greedy, but the cursor should
469                         // automatically jump into the macro when behind
470                         bool interactive = (oldDisplayMode == MathMacro::DISPLAY_INTERACTIVE_INIT);
471
472                         // attach parameters
473                         attachMacroParameters(cur, i, macroNumArgs, macroOptionals,
474                                 fromInitToNormalMode, interactive, appetite);
475
476                         if (cur)
477                                 cur->updateInsets(&cur->bottom().inset());
478                 }
479
480                 // Give macro the chance to adapt to new situation.
481                 // The macroInset could be invalid now because it was put into a script
482                 // inset and therefore "deep" copied. So get it again from the MathData.
483                 InsetMath * inset = operator[](i).nucleus();
484                 if (inset->asScriptInset())
485                         inset = inset->asScriptInset()->nuc()[0].nucleus();
486                 LASSERT(inset->asMacro(), continue);
487                 inset->asMacro()->updateRepresentation(cur, mc, utype);
488         }
489 }
490
491
492 void MathData::detachMacroParameters(DocIterator * cur, const size_type macroPos)
493 {
494         MathMacro * macroInset = operator[](macroPos).nucleus()->asMacro();
495         // We store this now, because the inset pointer will be invalidated in the scond loop below
496         size_t const optionals = macroInset->optionals();
497
498         // detach all arguments
499         vector<MathData> detachedArgs;
500         if (macroPos + 1 == size())
501                 // strip arguments if we are at the MathData end
502                 macroInset->detachArguments(detachedArgs, true);
503         else
504                 macroInset->detachArguments(detachedArgs, false);
505
506         // find cursor slice
507         int curMacroSlice = -1;
508         if (cur)
509                 curMacroSlice = cur->find(macroInset);
510         idx_type curMacroIdx = -1;
511         pos_type curMacroPos = -1;
512         vector<CursorSlice> argSlices;
513         if (curMacroSlice != -1) {
514                 curMacroPos = (*cur)[curMacroSlice].pos();
515                 curMacroIdx = (*cur)[curMacroSlice].idx();
516                 cur->cutOff(curMacroSlice, argSlices);
517                 cur->pop_back();
518         }
519
520         // only [] after the last non-empty argument can be dropped later
521         size_t lastNonEmptyOptional = 0;
522         for (size_t l = 0; l < detachedArgs.size() && l < optionals; ++l) {
523                 if (!detachedArgs[l].empty())
524                         lastNonEmptyOptional = l;
525         }
526
527         // optional arguments to be put back?
528         pos_type p = macroPos + 1;
529         size_t j = 0;
530         // We do not want to use macroInset below, the insert() call in
531         // the loop will invalidate it.
532         macroInset = 0;
533         for (; j < detachedArgs.size() && j < optionals; ++j) {
534                 // another non-empty parameter follows?
535                 bool canDropEmptyOptional = j >= lastNonEmptyOptional;
536
537                 // then we can drop empty optional parameters
538                 if (detachedArgs[j].empty() && canDropEmptyOptional) {
539                         if (curMacroIdx == j)
540                                 (*cur)[curMacroSlice - 1].pos() = macroPos + 1;
541                         continue;
542                 }
543
544                 // Otherwise we don't drop an empty optional, put it back normally
545                 MathData optarg;
546                 asArray(from_ascii("[]"), optarg);
547                 MathData & arg = detachedArgs[j];
548
549                 // look for "]", i.e. put a brace around?
550                 InsetMathBrace * brace = 0;
551                 for (size_t q = 0; q < arg.size(); ++q) {
552                         if (arg[q]->getChar() == ']') {
553                                 // put brace
554                                 brace = new InsetMathBrace(buffer_);
555                                 break;
556                         }
557                 }
558
559                 // put arg between []
560                 if (brace) {
561                         brace->cell(0) = arg;
562                         optarg.insert(1, MathAtom(brace));
563                 } else
564                         optarg.insert(1, arg);
565
566                 // insert it into the array
567                 insert(p, optarg);
568                 p += optarg.size();
569
570                 // cursor in macro?
571                 if (curMacroSlice == -1)
572                         continue;
573
574                 // cursor in optional argument of macro?
575                 if (curMacroIdx == j) {
576                         if (brace) {
577                                 cur->append(0, curMacroPos);
578                                 (*cur)[curMacroSlice - 1].pos() = macroPos + 2;
579                         } else
580                                 (*cur)[curMacroSlice - 1].pos() = macroPos + 2 + curMacroPos;
581                         cur->append(argSlices);
582                 } else if ((*cur)[curMacroSlice - 1].pos() >= int(p))
583                         // cursor right of macro
584                         (*cur)[curMacroSlice - 1].pos() += optarg.size();
585         }
586
587         // put them back into the MathData
588         for (; j < detachedArgs.size(); ++j, ++p) {
589                 MathData const & arg = detachedArgs[j];
590                 if (arg.size() == 1
591                     && !arg[0]->asScriptInset()
592                     && !(arg[0]->asMacro() && arg[0]->asMacro()->arity() > 0))
593                         insert(p, arg[0]);
594                 else
595                         insert(p, MathAtom(new InsetMathBrace(arg)));
596
597                 // cursor in macro?
598                 if (curMacroSlice == -1)
599                         continue;
600
601                 // cursor in j-th argument of macro?
602                 if (curMacroIdx == j) {
603                         if (operator[](p).nucleus()->asBraceInset()) {
604                                 (*cur)[curMacroSlice - 1].pos() = p;
605                                 cur->append(0, curMacroPos);
606                                 cur->append(argSlices);
607                         } else {
608                                 (*cur)[curMacroSlice - 1].pos() = p; // + macroPos;
609                                 cur->append(argSlices);
610                         }
611                 } else if ((*cur)[curMacroSlice - 1].pos() >= int(p))
612                         ++(*cur)[curMacroSlice - 1].pos();
613         }
614
615         if (cur)
616                 cur->updateInsets(&cur->bottom().inset());
617 }
618
619
620 void MathData::attachMacroParameters(Cursor * cur,
621         const size_type macroPos, const size_type macroNumArgs,
622         const int macroOptionals, const bool fromInitToNormalMode,
623         const bool interactiveInit, const size_t appetite)
624 {
625         MathMacro * macroInset = operator[](macroPos).nucleus()->asMacro();
626
627         // start at atom behind the macro again, maybe with some new arguments
628         // from the detach phase above, to add them back into the macro inset
629         size_t p = macroPos + 1;
630         vector<MathData> detachedArgs;
631         MathAtom scriptToPutAround;
632
633         // find cursor slice again of this MathData
634         int thisSlice = -1;
635         if (cur)
636                 thisSlice = cur->find(*this);
637         int thisPos = -1;
638         if (thisSlice != -1)
639                 thisPos = (*cur)[thisSlice].pos();
640
641         // find arguments behind the macro
642         if (!interactiveInit) {
643                 collectOptionalParameters(cur, macroOptionals, detachedArgs, p,
644                         scriptToPutAround, macroPos, thisPos, thisSlice);
645         }
646         collectParameters(cur, macroNumArgs, detachedArgs, p,
647                 scriptToPutAround, macroPos, thisPos, thisSlice, appetite);
648
649         // attach arguments back to macro inset
650         macroInset->attachArguments(detachedArgs, macroNumArgs, macroOptionals);
651
652         // found tail script? E.g. \foo{a}b^x
653         if (scriptToPutAround.nucleus()) {
654                 InsetMathScript * scriptInset =
655                         scriptToPutAround.nucleus()->asScriptInset();
656                 // In the math parser we remove empty braces in the base
657                 // of a script inset, but we have to restore them here.
658                 if (scriptInset->nuc().empty()) {
659                         MathData ar;
660                         scriptInset->nuc().push_back(
661                                         MathAtom(new InsetMathBrace(ar)));
662                 }
663                 // put macro into a script inset
664                 scriptInset->nuc()[0] = operator[](macroPos);
665                 operator[](macroPos) = scriptToPutAround;
666
667                 // go into the script inset nucleus
668                 if (cur && thisPos == int(macroPos))
669                         cur->append(0, 0);
670
671                 // get pointer to "deep" copied macro inset
672                 scriptInset = operator[](macroPos).nucleus()->asScriptInset();
673                 macroInset = scriptInset->nuc()[0].nucleus()->asMacro();
674         }
675
676         // remove them from the MathData
677         erase(macroPos + 1, p);
678
679         // cursor outside this MathData?
680         if (thisSlice == -1)
681                 return;
682
683         // fix cursor if right of p
684         if (thisPos >= int(p))
685                 (*cur)[thisSlice].pos() -= p - (macroPos + 1);
686
687         // was the macro inset just inserted interactively and was now folded
688         // and the cursor is just behind?
689         if ((*cur)[thisSlice].pos() == int(macroPos + 1)
690             && interactiveInit
691             && fromInitToNormalMode
692             && macroInset->arity() > 0
693             && thisSlice + 1 == int(cur->depth())) {
694                 // then enter it if the cursor was just behind
695                 (*cur)[thisSlice].pos() = macroPos;
696                 cur->push_back(CursorSlice(*macroInset));
697                 macroInset->idxFirst(*cur);
698         }
699 }
700
701
702 void MathData::collectOptionalParameters(Cursor * cur,
703         const size_type numOptionalParams, vector<MathData> & params,
704         size_t & pos, MathAtom & scriptToPutAround,
705         const pos_type macroPos, const int thisPos, const int thisSlice)
706 {
707         Buffer * buf = cur ? cur->buffer() : 0;
708         // insert optional arguments?
709         while (params.size() < numOptionalParams
710                && pos < size()
711                && !scriptToPutAround.nucleus()) {
712                 // is a [] block following which could be an optional parameter?
713                 if (operator[](pos)->getChar() != '[')
714                         break;
715
716                 // found possible optional argument, look for "]"
717                 size_t right = pos + 1;
718                 for (; right < size(); ++right) {
719                         MathAtom & cell = operator[](right);
720
721                         if (cell->getChar() == ']')
722                                 // found right end
723                                 break;
724
725                         // maybe "]" with a script around?
726                         InsetMathScript * script = cell.nucleus()->asScriptInset();
727                         if (!script)
728                                 continue;
729                         if (script->nuc().size() != 1)
730                                 continue;
731                         if (script->nuc()[0]->getChar() == ']') {
732                                 // script will be put around the macro later
733                                 scriptToPutAround = cell;
734                                 break;
735                         }
736                 }
737
738                 // found?
739                 if (right >= size()) {
740                         // no ] found, so it's not an optional argument
741                         break;
742                 }
743
744                 // add everything between [ and ] as optional argument
745                 MathData optarg(buf, begin() + pos + 1, begin() + right);
746
747                 // a brace?
748                 bool brace = false;
749                 if (optarg.size() == 1 && optarg[0]->asBraceInset()) {
750                         brace = true;
751                         params.push_back(optarg[0]->asBraceInset()->cell(0));
752                 } else
753                         params.push_back(optarg);
754
755                 // place cursor in optional argument of macro
756                 if (thisSlice != -1
757                     && thisPos >= int(pos) && thisPos <= int(right)) {
758                         int paramPos = max(0, thisPos - int(pos) - 1);
759                         vector<CursorSlice> x;
760                         cur->cutOff(thisSlice, x);
761                         (*cur)[thisSlice].pos() = macroPos;
762                         if (brace) {
763                                 paramPos = x[0].pos();
764                                 x.erase(x.begin());
765                         }
766                         cur->append(0, paramPos);
767                         cur->append(x);
768                 }
769                 pos = right + 1;
770         }
771
772         // fill up empty optional parameters
773         while (params.size() < numOptionalParams)
774                 params.push_back(MathData());
775 }
776
777
778 void MathData::collectParameters(Cursor * cur,
779         const size_type numParams, vector<MathData> & params,
780         size_t & pos, MathAtom & scriptToPutAround,
781         const pos_type macroPos, const int thisPos, const int thisSlice,
782         const size_t appetite)
783 {
784         size_t startSize = params.size();
785
786         // insert normal arguments
787         while (params.size() < numParams
788                && params.size() - startSize < appetite
789                && pos < size()
790                && !scriptToPutAround.nucleus()) {
791                 MathAtom & cell = operator[](pos);
792
793                 // fix cursor
794                 vector<CursorSlice> argSlices;
795                 int argPos = 0;
796                 if (thisSlice != -1 && thisPos == int(pos))
797                         cur->cutOff(thisSlice, argSlices);
798
799                 // which kind of parameter is it? In {}? With index x^n?
800                 InsetMathBrace const * brace = cell->asBraceInset();
801                 if (brace) {
802                         // found brace, convert into argument
803                         params.push_back(brace->cell(0));
804
805                         // cursor inside of the brace or just in front of?
806                         if (thisPos == int(pos) && !argSlices.empty()) {
807                                 argPos = argSlices[0].pos();
808                                 argSlices.erase(argSlices.begin());
809                         }
810                 } else if (cell->asScriptInset() && params.size() + 1 == numParams) {
811                         // last inset with scripts without braces
812                         // -> they belong to the macro, not the argument
813                         InsetMathScript * script = cell.nucleus()->asScriptInset();
814                         if (script->nuc().size() == 1 && script->nuc()[0]->asBraceInset())
815                                 // nucleus in brace? Unpack!
816                                 params.push_back(script->nuc()[0]->asBraceInset()->cell(0));
817                         else
818                                 params.push_back(script->nuc());
819
820                         // script will be put around below
821                         scriptToPutAround = cell;
822
823                         // this should only happen after loading, so make cursor handling simple
824                         if (thisPos >= int(macroPos) && thisPos <= int(macroPos + numParams)) {
825                                 argSlices.clear();
826                                 if (cur)
827                                         cur->append(0, 0);
828                         }
829                 } else {
830                         // the simplest case: plain inset
831                         MathData array;
832                         array.insert(0, cell);
833                         params.push_back(array);
834                 }
835
836                 // put cursor in argument again
837                 if (thisSlice != - 1 && thisPos == int(pos)) {
838                         cur->append(params.size() - 1, argPos);
839                         cur->append(argSlices);
840                         (*cur)[thisSlice].pos() = macroPos;
841                 }
842
843                 ++pos;
844         }
845 }
846
847
848 int MathData::pos2x(BufferView const * bv, size_type pos) const
849 {
850         return pos2x(bv, pos, 0);
851 }
852
853
854 int MathData::pos2x(BufferView const * bv, size_type pos, int glue) const
855 {
856         int x = 0;
857         size_type target = min(pos, size());
858         CoordCache::Insets const & coords = bv->coordCache().getInsets();
859         for (size_type i = 0; i < target; ++i) {
860                 const_iterator it = begin() + i;
861                 if ((*it)->getChar() == ' ')
862                         x += glue;
863                 //lyxerr << "char: " << (*it)->getChar()
864                 //      << "width: " << (*it)->width() << endl;
865                 x += coords.dim((*it).nucleus()).wid;
866         }
867         return x;
868 }
869
870
871 MathData::size_type MathData::x2pos(BufferView const * bv, int targetx) const
872 {
873         return x2pos(bv, targetx, 0);
874 }
875
876
877 MathData::size_type MathData::x2pos(BufferView const * bv, int targetx, int glue) const
878 {
879         const_iterator it = begin();
880         int lastx = 0;
881         int currx = 0;
882         CoordCache::Insets const & coords = bv->coordCache().getInsets();
883         // find first position after targetx
884         for (; currx < targetx && it != end(); ++it) {
885                 lastx = currx;
886                 if ((*it)->getChar() == ' ')
887                         currx += glue;
888                 currx += coords.dim((*it).nucleus()).wid;
889         }
890
891         /**
892          * If we are not at the beginning of the array, go to the left
893          * of the inset if one of the following two condition holds:
894          * - the current inset is editable (so that the cursor tip is
895          *   deeper than us): in this case, we want all intermediate
896          *   cursor slices to be before insets;
897          * - the mouse is closer to the left side of the inset than to
898          *   the right one.
899          * See bug 1918 for details.
900          **/
901         if (it != begin() && currx >= targetx
902             && ((*prev(it, 1))->asNestInset()
903                 || abs(lastx - targetx) < abs(currx - targetx))) {
904                 --it;
905         }
906
907         return it - begin();
908 }
909
910
911 int MathData::dist(BufferView const & bv, int x, int y) const
912 {
913         return bv.coordCache().getArrays().squareDistance(this, x, y);
914 }
915
916
917 void MathData::setXY(BufferView & bv, int x, int y) const
918 {
919         //lyxerr << "setting position cache for MathData " << this << endl;
920         bv.coordCache().arrays().add(this, x, y);
921 }
922
923
924 Dimension const & MathData::dimension(BufferView const & bv) const
925 {
926         return bv.coordCache().getArrays().dim(this);
927 }
928
929
930 int MathData::xm(BufferView const & bv) const
931 {
932         Geometry const & g = bv.coordCache().getArrays().geometry(this);
933
934         return g.pos.x_ + g.dim.wid / 2;
935 }
936
937
938 int MathData::ym(BufferView const & bv) const
939 {
940         Geometry const & g = bv.coordCache().getArrays().geometry(this);
941
942         return g.pos.y_ + (g.dim.des - g.dim.asc) / 2;
943 }
944
945
946 int MathData::xo(BufferView const & bv) const
947 {
948         return bv.coordCache().getArrays().x(this);
949 }
950
951
952 int MathData::yo(BufferView const & bv) const
953 {
954         return bv.coordCache().getArrays().y(this);
955 }
956
957
958 ostream & operator<<(ostream & os, MathData const & ar)
959 {
960         odocstringstream oss;
961         NormalStream ns(oss);
962         ns << ar;
963         return os << to_utf8(oss.str());
964 }
965
966
967 odocstream & operator<<(odocstream & os, MathData const & ar)
968 {
969         NormalStream ns(os);
970         ns << ar;
971         return os;
972 }
973
974
975 } // namespace lyx