]> git.lyx.org Git - lyx.git/blob - src/mathed/MathData.C
* output_plaintext.C: cosmetics in comment: line length cannot be < 0
[lyx.git] / src / mathed / MathData.C
1 /**
2  * \file MathData.C
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  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "MathData.h"
14 #include "InsetMathFont.h"
15 #include "InsetMathScript.h"
16 #include "InsetMathMacro.h"
17 #include "MathMacroTable.h"
18 #include "MathStream.h"
19 #include "MathSupport.h"
20 #include "MathReplace.h"
21
22 #include "BufferView.h"
23 #include "buffer.h"
24 #include "cursor.h"
25 #include "debug.h"
26 #include "LColor.h"
27
28 #include "frontends/FontMetrics.h"
29 #include "frontends/Painter.h"
30
31 #include <boost/assert.hpp>
32
33
34 namespace lyx {
35
36 using std::abs;
37 using std::endl;
38 using std::min;
39 using std::ostringstream;
40 using std::string;
41 using std::vector;
42
43
44 MathArray::MathArray(const_iterator from, const_iterator to)
45         : base_type(from, to)
46 {}
47
48
49 MathAtom & MathArray::operator[](pos_type pos)
50 {
51         BOOST_ASSERT(pos < size());
52         return base_type::operator[](pos);
53 }
54
55
56 MathAtom const & MathArray::operator[](pos_type pos) const
57 {
58         BOOST_ASSERT(pos < size());
59         return base_type::operator[](pos);
60 }
61
62
63 void MathArray::insert(size_type pos, MathAtom const & t)
64 {
65         base_type::insert(begin() + pos, t);
66 }
67
68
69 void MathArray::insert(size_type pos, MathArray const & ar)
70 {
71         BOOST_ASSERT(pos <= size());
72         base_type::insert(begin() + pos, ar.begin(), ar.end());
73 }
74
75
76 void MathArray::append(MathArray const & ar)
77 {
78         insert(size(), ar);
79 }
80
81
82 void MathArray::erase(size_type pos)
83 {
84         if (pos < size())
85                 erase(pos, pos + 1);
86 }
87
88
89 void MathArray::erase(iterator pos1, iterator pos2)
90 {
91         base_type::erase(pos1, pos2);
92 }
93
94
95 void MathArray::erase(iterator pos)
96 {
97         base_type::erase(pos);
98 }
99
100
101 void MathArray::erase(size_type pos1, size_type pos2)
102 {
103         base_type::erase(begin() + pos1, begin() + pos2);
104 }
105
106
107 void MathArray::dump2() const
108 {
109         odocstringstream os;
110         NormalStream ns(os);
111         for (const_iterator it = begin(); it != end(); ++it)
112                 ns << *it << ' ';
113         lyxerr << to_utf8(os.str());
114 }
115
116
117 void MathArray::dump() const
118 {
119         odocstringstream os;
120         NormalStream ns(os);
121         for (const_iterator it = begin(); it != end(); ++it)
122                 ns << '<' << *it << '>';
123         lyxerr << to_utf8(os.str());
124 }
125
126
127 void MathArray::validate(LaTeXFeatures & features) const
128 {
129         for (const_iterator it = begin(); it != end(); ++it)
130                 (*it)->validate(features);
131 }
132
133
134 bool MathArray::match(MathArray const & ar) const
135 {
136         return size() == ar.size() && matchpart(ar, 0);
137 }
138
139
140 bool MathArray::matchpart(MathArray const & ar, pos_type pos) const
141 {
142         if (size() < ar.size() + pos)
143                 return false;
144         const_iterator it = begin() + pos;
145         for (const_iterator jt = ar.begin(); jt != ar.end(); ++jt, ++it)
146                 if (asString(*it) != asString(*jt))
147                         return false;
148         return true;
149 }
150
151
152 void MathArray::replace(ReplaceData & rep)
153 {
154         for (size_type i = 0; i < size(); ++i) {
155                 if (find1(rep.from, i)) {
156                         // match found
157                         lyxerr << "match found!" << endl;
158                         erase(i, i + rep.from.size());
159                         insert(i, rep.to);
160                 }
161         }
162
163 #ifdef WITH_WARNINGS
164 #warning temporarily disabled
165         // for (const_iterator it = begin(); it != end(); ++it)
166         //      it->nucleus()->replace(rep);
167 #endif
168 }
169
170
171 bool MathArray::find1(MathArray const & ar, size_type pos) const
172 {
173         lyxerr << "finding '" << ar << "' in '" << *this << "'" << endl;
174         for (size_type i = 0, n = ar.size(); i < n; ++i)
175                 if (asString(operator[](pos + i)) != asString(ar[i]))
176                         return false;
177         return true;
178 }
179
180
181 MathArray::size_type MathArray::find(MathArray const & ar) const
182 {
183         for (int i = 0, last = size() - ar.size(); i < last; ++i)
184                 if (find1(ar, i))
185                         return i;
186         return size();
187 }
188
189
190 MathArray::size_type MathArray::find_last(MathArray const & ar) const
191 {
192         for (int i = size() - ar.size(); i >= 0; --i)
193                 if (find1(ar, i))
194                         return i;
195         return size();
196 }
197
198
199 bool MathArray::contains(MathArray const & ar) const
200 {
201         if (find(ar) != size())
202                 return true;
203         for (const_iterator it = begin(); it != end(); ++it)
204                 if ((*it)->contains(ar))
205                         return true;
206         return false;
207 }
208
209
210 void MathArray::touch() const
211 {
212 }
213
214
215 bool MathArray::metrics(MetricsInfo & mi, Dimension & dim) const
216 {
217         dim = dim_;
218         metrics(mi);
219         if (dim_ == dim)
220                 return false;
221         dim = dim_;
222         return true;
223 }
224
225
226 namespace {
227
228 bool isInside(DocIterator const & it, MathArray const & ar,
229         pos_type p1, pos_type p2)
230 {
231         for (size_t i = 0; i != it.depth(); ++i) {
232                 CursorSlice const & sl = it[i];
233                 if (sl.inset().inMathed() && &sl.cell() == &ar)
234                         return p1 <= sl.pos() && sl.pos() < p2;
235         }
236         return false;
237 }
238
239 }
240
241
242
243 void MathArray::metrics(MetricsInfo & mi) const
244 {
245         dim_ = theFontMetrics(mi.base.font).dimension('I');
246
247         if (empty())
248                 return;
249
250         dim_.wid = 0;
251         Dimension d;
252         //BufferView & bv  = *mi.base.bv;
253         //Buffer const & buf = *bv.buffer();
254         for (size_t i = 0, n = size(); i != n; ++i) {
255                 MathAtom const & at = operator[](i);
256 #if 0
257                 MathMacro const * mac = at->asMacro();
258                 if (mac && buf.hasMacro(mac->name())) {
259                         MacroData const & tmpl = buf.getMacro(mac->name());
260                         int numargs = tmpl.numargs();
261                         if (i + numargs > n)
262                                 numargs = n - i - 1;
263                         lyxerr << "metrics:found macro: " << mac->name()
264                                 << " numargs: " << numargs << endl;
265                         if (!isInside(bv.cursor(), *this, i + 1, i + numargs + 1)) {
266                                 MathArray args(begin() + i + 1, begin() + i + numargs + 1);
267                                 MathArray exp;
268                                 tmpl.expand(args, exp);
269                                 mac->setExpansion(exp, args);
270                                 mac->metricsExpanded(mi, d);
271                                 dim_.wid += mac->widthExpanded();
272                                 i += numargs;
273                                 continue;
274                         }
275                 }
276 #endif
277                 at->metrics(mi, d);
278                 dim_ += d;
279         }
280 }
281
282
283 void MathArray::draw(PainterInfo & pi, int x, int y) const
284 {
285         //lyxerr << "MathArray::draw: x: " << x << " y: " << y << endl;
286         BufferView & bv  = *pi.base.bv;
287         setXY(bv, x, y);
288
289         if (empty()) {
290                 pi.pain.rectangle(x, y - ascent(), width(), height(), LColor::mathline);
291                 return;
292         }
293
294         // don't draw outside the workarea
295         if (y + descent() <= 0
296                 || y - ascent() >= bv.workHeight()
297                 || x + width() <= 0
298                 || x >= bv. workWidth())
299                 return;
300
301         for (size_t i = 0, n = size(); i != n; ++i) {
302                 MathAtom const & at = operator[](i);
303 #if 0
304         Buffer const & buf = bv.buffer();
305                 // special macro handling
306                 MathMacro const * mac = at->asMacro();
307                 if (mac && buf.hasMacro(mac->name())) {
308                         MacroData const & tmpl = buf.getMacro(mac->name());
309                         int numargs = tmpl.numargs();
310                         if (i + numargs > n)
311                                 numargs = n - i - 1;
312                         if (!isInside(bv.cursor(), *this, i + 1, i + numargs + 1)) {
313                                 mac->drawExpanded(pi, x, y);
314                                 x += mac->widthExpanded();
315                                 i += numargs;
316                                 continue;
317                         }
318                 }
319 #endif
320                 bv.coordCache().insets().add(at.nucleus(), x, y);
321                 at->drawSelection(pi, x, y);
322                 at->draw(pi, x, y);
323                 x += at->width();
324         }
325 }
326
327
328 void MathArray::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
329 {
330         dim.clear();
331         Dimension d;
332         for (const_iterator it = begin(); it != end(); ++it) {
333                 (*it)->metricsT(mi, d);
334                 dim += d;
335         }
336 }
337
338
339 void MathArray::drawT(TextPainter & pain, int x, int y) const
340 {
341         //lyxerr << "x: " << x << " y: " << y << ' ' << pain.workAreaHeight() << endl;
342
343         // FIXME: Abdel 16/10/2006
344         // This drawT() method is never used, this is dead code.
345
346         for (const_iterator it = begin(), et = end(); it != et; ++it) {
347                 (*it)->drawT(pain, x, y);
348                 //x += (*it)->width_;
349                 x += 2;
350         }
351 }
352
353
354 int MathArray::pos2x(size_type pos) const
355 {
356         return pos2x(pos, 0);
357 }
358
359
360 int MathArray::pos2x(size_type pos, int glue) const
361 {
362         int x = 0;
363         size_type target = min(pos, size());
364         for (size_type i = 0; i < target; ++i) {
365                 const_iterator it = begin() + i;
366                 if ((*it)->getChar() == ' ')
367                         x += glue;
368                 //lyxerr << "char: " << (*it)->getChar()
369                 //      << "width: " << (*it)->width() << std::endl;
370                 x += (*it)->width();
371         }
372         return x;
373 }
374
375
376 MathArray::size_type MathArray::x2pos(int targetx) const
377 {
378         return x2pos(targetx, 0);
379 }
380
381
382 MathArray::size_type MathArray::x2pos(int targetx, int glue) const
383 {
384         const_iterator it = begin();
385         int lastx = 0;
386         int currx = 0;
387         // find first position after targetx
388         for (; currx < targetx && it < end(); ++it) {
389                 lastx = currx;
390                 if ((*it)->getChar() == ' ')
391                         currx += glue;
392                 currx += (*it)->width();
393         }
394
395         /**
396          * If we are not at the beginning of the array, go to the left
397          * of the inset if one of the following two condition holds:
398          * - the current inset is editable (so that the cursor tip is
399          *   deeper than us): in this case, we want all intermediate
400          *   cursor slices to be before insets;
401          * - the mouse is closer to the left side of the inset than to
402          *   the right one.
403          * See bug 1918 for details.
404          **/
405         if (it != begin() && currx >= targetx
406             && ((*boost::prior(it))->asNestInset()
407                 || abs(lastx - targetx) < abs(currx - targetx))) {
408                 --it;
409         }
410
411         return it - begin();
412 }
413
414
415 int MathArray::dist(BufferView const & bv, int x, int y) const
416 {
417         int xx = 0;
418         int yy = 0;
419
420         const int xo_ = xo(bv);
421         const int yo_ = yo(bv);
422
423         if (x < xo_)
424                 xx = xo_ - x;
425         else if (x > xo_ + width())
426                 xx = x - xo_ - width();
427
428         if (y < yo_ - ascent())
429                 yy = yo_ - ascent() - y;
430         else if (y > yo_ + descent())
431                 yy = y - yo_ - descent();
432
433         return xx + yy;
434 }
435
436
437 void MathArray::setXY(BufferView & bv, int x, int y) const
438 {
439         //lyxerr << "setting position cache for MathArray " << this << std::endl;
440         bv.coordCache().arrays().add(this, x, y);
441 }
442
443
444 int MathArray::xo(BufferView const & bv) const
445 {
446         return bv.coordCache().getArrays().x(this);
447 }
448
449
450 int MathArray::yo(BufferView const & bv) const
451 {
452         return bv.coordCache().getArrays().y(this);
453 }
454
455
456 std::ostream & operator<<(std::ostream & os, MathArray const & ar)
457 {
458         odocstringstream oss;
459         NormalStream ns(oss);
460         ns << ar;
461         return os << to_utf8(oss.str());
462 }
463
464
465 odocstream & operator<<(odocstream & os, MathArray const & ar)
466 {
467         NormalStream ns(os);
468         ns << ar;
469         return os;
470 }
471
472
473 } // namespace lyx