]> git.lyx.org Git - lyx.git/blob - src/Row.cpp
Allow defaultfamily change with non_TeX fonts (#12608)
[lyx.git] / src / Row.cpp
1 /**
2  * \file Row.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  * \author André Pönitz
9  * \author Jürgen Vigna
10  * \author Jean-Marc Lasgouttes
11  *
12  * Full author contact details are available in file CREDITS.
13  *
14  * Metrics for an on-screen text row.
15  */
16
17 #include <config.h>
18
19 #include "Row.h"
20
21 #include "DocIterator.h"
22 #include "Language.h"
23
24 #include "frontends/FontMetrics.h"
25
26 #include "support/debug.h"
27 #include "support/lassert.h"
28 #include "support/lstrings.h"
29 #include "support/lyxlib.h"
30 #include "support/textutils.h"
31
32 #include <algorithm>
33 #include <ostream>
34
35 using namespace std;
36
37 namespace lyx {
38
39 using frontend::FontMetrics;
40
41
42 // Maximum length that a space can be stretched when justifying text
43 static double const MAX_SPACE_STRETCH = 1.5; //em
44
45
46 int Row::Element::countExpanders() const
47 {
48         if (type != STRING)
49                 return 0;
50         return support::countExpanders(str);
51 }
52
53
54 int Row::Element::expansionAmount() const
55 {
56         if (type != STRING)
57                 return 0;
58         return countExpanders() * theFontMetrics(font).em();
59 }
60
61
62 void Row::Element::setExtra(double extra_per_em)
63 {
64         if (type != STRING)
65                 return;
66         extra = extra_per_em * theFontMetrics(font).em();
67 }
68
69
70 double Row::Element::pos2x(pos_type const i) const
71 {
72         // This can happen with inline completion when clicking on the
73         // row after the completion.
74         if (i < pos || i > endpos)
75                 return 0;
76
77         double w = 0;
78         //handle first the two bounds of the element
79         if (i == endpos && type != VIRTUAL)
80                 w = isRTL() ? 0 : full_width();
81         else if (i == pos || type != STRING)
82                 w = isRTL() ? full_width() : 0;
83         else {
84                 FontMetrics const & fm = theFontMetrics(font);
85                 w = fm.pos2x(str, i - pos, isRTL(), extra);
86         }
87
88         return w;
89 }
90
91
92 pos_type Row::Element::x2pos(int &x) const
93 {
94         //lyxerr << "x2pos: x=" << x << " w=" << width() << " " << *this;
95         size_t i = 0;
96
97         switch (type) {
98         case STRING: {
99                 FontMetrics const & fm = theFontMetrics(font);
100                 i = fm.x2pos(str, x, isRTL(), extra);
101                 break;
102         }
103         case VIRTUAL:
104                 // those elements are actually empty (but they have a width)
105                 i = 0;
106                 x = isRTL() ? int(full_width()) : 0;
107                 break;
108         case INSET:
109         case SPACE:
110         case MARGINSPACE:
111                 // those elements contain only one position. Round to
112                 // the closest side.
113                 if (x > (full_width() + 1) / 2) {
114                         x = int(full_width());
115                         i = !isRTL();
116                 } else {
117                         x = 0;
118                         i = isRTL();
119                 }
120         }
121         //lyxerr << "=> p=" << pos + i << " x=" << x << endl;
122         return pos + i;
123 }
124
125
126 bool Row::Element::splitAt(int const width, int next_width, bool force,
127                            Row::Elements & tail)
128 {
129         // Not a string or already OK.
130         if (type != STRING || (dim.wid > 0 && dim.wid < width))
131                 return false;
132
133         FontMetrics const & fm = theFontMetrics(font);
134
135         // A a string that is not breakable
136         if (!(row_flags & CanBreakInside)) {
137                 // has width been computed yet?
138                 if (dim.wid == 0)
139                         dim.wid = fm.width(str);
140                 return false;
141         }
142
143         bool const wrap_any = !font.language()->wordWrap();
144         FontMetrics::Breaks breaks = fm.breakString(str, width, next_width,
145                                                 isRTL(), wrap_any | force);
146
147         // if breaking did not really work, give up
148         if (!force && breaks.front().nspc_wid > width) {
149                 if (dim.wid == 0)
150                         dim.wid = fm.width(str);
151                 return false;
152         }
153
154         Element first_e(STRING, pos, font, change);
155         // should next element eventually replace *this?
156         bool first = true;
157         docstring::size_type i = 0;
158         for (FontMetrics::Break const & brk : breaks) {
159                 /* For some reason breakString can decide to break before the
160                  * first character (normally we use a 0-width nbsp to prevent
161                  * that). Skip leading empty elements, they are never wanted.
162                  */
163                 if (first && brk.len == 0 && breaks.size() > 1)
164                         continue;
165                 Element e(STRING, pos + i, font, change);
166                 e.str = str.substr(i, brk.len);
167                 e.endpos = e.pos + brk.len;
168                 e.dim.wid = brk.wid;
169                 e.nspc_wid = brk.nspc_wid;
170                 e.row_flags = CanBreakInside | BreakAfter;
171                 if (first) {
172                         // this element eventually goes to *this
173                         e.row_flags |= row_flags & ~AfterFlags;
174                         first_e = e;
175                         first = false;
176                 } else
177                         tail.push_back(e);
178                 i += brk.len;
179         }
180
181         if (!tail.empty()) {
182                 // Avoid having a last empty element. This happens when
183                 // breaking at the trailing space of string
184                 if (tail.back().str.empty())
185                         tail.pop_back();
186                 else {
187                         // Copy the after flags of the original element to the last one.
188                         tail.back().row_flags &= ~BreakAfter;
189                         tail.back().row_flags |= row_flags & AfterFlags;
190                 }
191                 // first_e row should be broken after the original element
192                 first_e.row_flags |= BreakAfter;
193         } else {
194                 // Restore the after flags of the original element.
195                 first_e.row_flags &= ~BreakAfter;
196                 first_e.row_flags |= row_flags & AfterFlags;
197         }
198
199         // update ourselves
200         swap(first_e, *this);
201         return true;
202 }
203
204
205 void Row::Element::rtrim()
206 {
207         if (type != STRING || str.empty() || !isSpace(str.back()))
208                 return;
209         /* This is intended for strings that have been created by splitAt.
210          * If There is a trailing space, we remove it and decrease endpos,
211          * since spaces at row break are invisible.
212          */
213         str.pop_back();
214         endpos = pos + str.length();
215         dim.wid = nspc_wid;
216 }
217
218
219 bool Row::isMarginSelected(bool left, DocIterator const & beg,
220                 DocIterator const & end) const
221 {
222         pos_type const sel_pos = left ? sel_beg : sel_end;
223         pos_type const margin_pos = left ? pos_ : end_;
224
225         // Is there a selection and is the chosen margin selected ?
226         if (!selection() || sel_pos != margin_pos)
227                 return false;
228         else if (beg.pos() == end.pos())
229                 // This is a special case in which the space between after
230                 // pos i-1 and before pos i is selected, i.e. the margins
231                 // (see DocIterator::boundary_).
232                 return beg.boundary() && !end.boundary();
233         else if (end.pos() == margin_pos)
234                 // If the selection ends around the margin, it is only
235                 // drawn if the cursor is after the margin.
236                 return !end.boundary();
237         else if (beg.pos() == margin_pos)
238                 // If the selection begins around the margin, it is
239                 // only drawn if the cursor is before the margin.
240                 return beg.boundary();
241         else
242                 return true;
243 }
244
245
246 void Row::setSelectionAndMargins(DocIterator const & beg,
247                 DocIterator const & end) const
248 {
249         setSelection(beg.pos(), end.pos());
250
251         change(end_margin_sel, isMarginSelected(false, beg, end));
252         change(begin_margin_sel, isMarginSelected(true, beg, end));
253 }
254
255
256 void Row::clearSelectionAndMargins() const
257 {
258         change(sel_beg, -1);
259         change(sel_end, -1);
260         change(end_margin_sel, false);
261         change(begin_margin_sel, false);
262 }
263
264
265 void Row::setSelection(pos_type beg, pos_type end) const
266 {
267         if (pos_ >= beg && pos_ <= end)
268                 change(sel_beg, pos_);
269         else if (beg > pos_ && beg <= end_)
270                 change(sel_beg, beg);
271         else
272                 change(sel_beg, -1);
273
274         if (end_ >= beg && end_ <= end)
275                 change(sel_end,end_);
276         else if (end < end_ && end >= pos_)
277                 change(sel_end, end);
278         else
279                 change(sel_end, -1);
280 }
281
282
283 bool Row::selection() const
284 {
285         return sel_beg != -1 && sel_end != -1;
286 }
287
288
289 ostream & operator<<(ostream & os, Row::Element const & e)
290 {
291         if (e.isRTL())
292                 os << e.endpos << "<<" << e.pos << " ";
293         else
294                 os << e.pos << ">>" << e.endpos << " ";
295
296         switch (e.type) {
297         case Row::STRING:
298                 os << "STRING: `" << to_utf8(e.str) << "' ("
299                    << e.countExpanders() << " expanders.), ";
300                 break;
301         case Row::VIRTUAL:
302                 os << "VIRTUAL: `" << to_utf8(e.str) << "', ";
303                 break;
304         case Row::INSET:
305                 os << "INSET: " << to_utf8(e.inset->layoutName()) << ", ";
306                 break;
307         case Row::SPACE:
308                 os << "SPACE: ";
309                 break;
310         case Row::MARGINSPACE:
311                 os << "MARGINSPACE: ";
312         }
313         os << "width=" << e.full_width() << ", row_flags=" << e.row_flags;
314         return os;
315 }
316
317
318 ostream & operator<<(ostream & os, Row::Elements const & elts)
319 {
320         double x = 0;
321         for (Row::Element const & e : elts) {
322                 os << "x=" << x << " => " << e << endl;
323                 x += e.full_width();
324         }
325         return os;
326 }
327
328
329 ostream & operator<<(ostream & os, Row const & row)
330 {
331         os << " pos: " << row.pos_ << " end: " << row.end_
332            << " left_margin: " << row.left_margin
333            << " width: " << row.dim_.wid
334            << " right_margin: " << row.right_margin
335            << " ascent: " << row.dim_.asc
336            << " descent: " << row.dim_.des
337            << " separator: " << row.separator
338            << " label_hfill: " << row.label_hfill
339            << " end_boundary: " << row.end_boundary()
340            << " flushed: " << row.flushed() << "\n";
341         // We cannot use the operator above, unfortunately
342         double x = row.left_margin;
343         for (Row::Element const & e : row.elements_) {
344                 os << "x=" << x << " => " << e << endl;
345                 x += e.full_width();
346         }
347         return os;
348 }
349
350
351 int Row::left_x() const
352 {
353         double x = left_margin;
354         const_iterator const end = elements_.end();
355         const_iterator cit = elements_.begin();
356         while (cit != end && cit->isVirtual()) {
357                 x += cit->full_width();
358                 ++cit;
359         }
360         return support::iround(x);
361 }
362
363
364 int Row::right_x() const
365 {
366         double x = dim_.wid;
367         const_iterator const begin = elements_.begin();
368         const_iterator cit = elements_.end();
369         while (cit != begin) {
370                 --cit;
371                 if (cit->isVirtual())
372                         x -= cit->full_width();
373                 else
374                         break;
375         }
376         return support::iround(x);
377 }
378
379
380 bool Row::setExtraWidth(int w)
381 {
382         if (w < 0)
383                 // this is not expected to happen (but it does)
384                 return false;
385         // amount of expansion: number of expanders time the em value for each
386         // string element
387         int exp_amount = 0;
388         for (Element const & e : elements_)
389                 exp_amount += e.expansionAmount();
390         if (!exp_amount)
391                 return false;
392         // extra length per expander per em
393         double extra_per_em = double(w) / exp_amount;
394         if (extra_per_em > MAX_SPACE_STRETCH)
395                 // do not stretch more than MAX_SPACE_STRETCH em per expander
396                 return false;
397         // add extra length to each element proportionally to its em.
398         for (Element & e : elements_)
399                 if (e.type == STRING)
400                         e.setExtra(extra_per_em);
401         // update row dimension
402         dim_.wid += w;
403         return true;
404 }
405
406
407 bool Row::sameString(Font const & f, Change const & ch) const
408 {
409         if (elements_.empty())
410                 return false;
411         Element const & elt = elements_.back();
412         return elt.type == STRING && !elt.final
413                    && elt.font == f && elt.change == ch;
414 }
415
416
417 void Row::finalizeLast()
418 {
419         if (elements_.empty())
420                 return;
421         Element & elt = elements_.back();
422         if (elt.final)
423                 return;
424         elt.final = true;
425         if (elt.change.changed())
426                 changebar_ = true;
427 }
428
429
430 void Row::add(pos_type const pos, Inset const * ins, Dimension const & dim,
431               Font const & f, Change const & ch)
432 {
433         finalizeLast();
434         Element e(INSET, pos, f, ch);
435         e.inset = ins;
436         e.dim = dim;
437         e.row_flags = ins->rowFlags();
438         elements_.push_back(e);
439         dim_.wid += dim.wid;
440         changebar_ |= ins->isChanged();
441 }
442
443
444 void Row::add(pos_type const pos, char_type const c,
445               Font const & f, Change const & ch)
446 {
447         if (!sameString(f, ch)) {
448                 finalizeLast();
449                 Element e(STRING, pos, f, ch);
450                 e.row_flags = CanBreakInside;
451                 elements_.push_back(e);
452         }
453         back().str += c;
454         back().endpos = pos + 1;
455 }
456
457
458 void Row::addVirtual(pos_type const pos, docstring const & s,
459                      Font const & f, Change const & ch)
460 {
461         finalizeLast();
462         Element e(VIRTUAL, pos, f, ch);
463         e.str = s;
464         e.dim.wid = theFontMetrics(f).width(s);
465         dim_.wid += e.dim.wid;
466         e.endpos = pos;
467         // Copy after* flags from previous elements, forbid break before element
468         int const prev_row_flags = elements_.empty() ? Inline : elements_.back().row_flags;
469         int const can_inherit = AfterFlags & ~AlwaysBreakAfter;
470         e.row_flags = (prev_row_flags & can_inherit) | NoBreakBefore;
471         elements_.push_back(e);
472         finalizeLast();
473 }
474
475
476 void Row::addSpace(pos_type const pos, int const width,
477                    Font const & f, Change const & ch)
478 {
479         finalizeLast();
480         Element e(SPACE, pos, f, ch);
481         e.dim.wid = width;
482         elements_.push_back(e);
483         dim_.wid += e.dim.wid;
484 }
485
486
487 void Row::addMarginSpace(pos_type const pos, int const width,
488                    Font const & f, Change const & ch)
489 {
490         finalizeLast();
491         Element e(MARGINSPACE, pos, f, ch);
492         e.dim.wid = width;
493         e.row_flags = NoBreakBefore;
494         elements_.push_back(e);
495         dim_.wid += e.dim.wid;
496 }
497
498
499 void Row::push_back(Row::Element const & e)
500 {
501         dim_.wid += e.dim.wid;
502         elements_.push_back(e);
503 }
504
505
506 void Row::pop_back()
507 {
508         dim_.wid -= elements_.back().dim.wid;
509         elements_.pop_back();
510 }
511
512
513 namespace {
514
515 // Move stuff after \c it from \c from and the end of \c to.
516 void moveElements(Row::Elements & from, Row::Elements::iterator const & it,
517                   Row::Elements & to)
518 {
519         to.insert(to.end(), it, from.end());
520         from.erase(it, from.end());
521         if (!from.empty())
522                 from.back().row_flags = (from.back().row_flags & ~AfterFlags) | AlwaysBreakAfter;
523 }
524
525 }
526
527
528 Row::Elements Row::shortenIfNeeded(int const w, int const next_width)
529 {
530         // FIXME: performance: if the last element is a string, we would
531         // like to avoid computing its length.
532         finalizeLast();
533         if (empty() || width() <= w)
534                 return Elements();
535
536         Elements::iterator const beg = elements_.begin();
537         Elements::iterator const end = elements_.end();
538         int wid = left_margin;
539
540         // Search for the first element that goes beyond right margin
541         Elements::iterator cit = beg;
542         for ( ; cit != end ; ++cit) {
543                 if (wid + cit->dim.wid > w)
544                         break;
545                 wid += cit->dim.wid;
546         }
547
548         if (cit == end) {
549                 // This should not happen since the row is too long.
550                 LYXERR0("Something is wrong, cannot shorten row: " << *this);
551                 return Elements();
552         }
553
554         // Iterate backwards over breakable elements and try to break them
555         Elements::iterator cit_brk = cit;
556         int wid_brk = wid + cit_brk->dim.wid;
557         ++cit_brk;
558         Elements tail;
559         while (cit_brk != beg) {
560                 --cit_brk;
561                 // make a copy of the element to work on it.
562                 Element brk = *cit_brk;
563                 /* If the current element is an inset that allows breaking row
564                  * after itself, and if the row is already short enough after
565                  * this element, then cut right after it.
566                  */
567                 if (wid_brk <= w && brk.row_flags & CanBreakAfter) {
568                         end_ = brk.endpos;
569                         dim_.wid = wid_brk;
570                         moveElements(elements_, cit_brk + 1, tail);
571                         return tail;
572                 }
573                 // assume now that the current element is not there
574                 wid_brk -= brk.dim.wid;
575                 /* If the current element is an inset that allows breaking row
576                  * before itself, and if the row is already short enough before
577                  * this element, then cut right before it.
578                  */
579                 if (wid_brk <= w && brk.row_flags & CanBreakBefore && cit_brk != beg) {
580                         end_ = (cit_brk -1)->endpos;
581                         dim_.wid = wid_brk;
582                         moveElements(elements_, cit_brk, tail);
583                         return tail;
584                 }
585                 /* We have found a suitable separable element. This is the common case.
586                  * Try to break it cleanly at a length that is both
587                  * - less than the available space on the row
588                  * - shorter than the natural width of the element, in order to enforce
589                  *   break-up.
590                  */
591                 if (brk.splitAt(min(w - wid_brk, brk.dim.wid - 2), next_width, false, tail)) {
592                         /* if this element originally did not cause a row overflow
593                          * in itself, and the remainder of the row would still be
594                          * too large after breaking, then we will have issues in
595                          * next row. Thus breaking does not help.
596                          */
597                         if (wid_brk + cit_brk->dim.wid < w
598                             && dim_.wid - (wid_brk + brk.dim.wid) >= next_width) {
599                                 tail.clear();
600                                 break;
601                         }
602                         end_ = brk.endpos;
603                         *cit_brk = brk;
604                         dim_.wid = wid_brk + brk.dim.wid;
605                         // If there are other elements, they should be removed.
606                         moveElements(elements_, cit_brk + 1, tail);
607                         return tail;
608                 }
609                 LATTEST(tail.empty());
610         }
611
612         if (cit != beg && cit->row_flags & NoBreakBefore) {
613                 // It is not possible to separate this element from the
614                 // previous one. (e.g. VIRTUAL)
615                 --cit;
616                 wid -= cit->dim.wid;
617         }
618
619         if (cit != beg) {
620                 // There is no usable separator, but several elements have
621                 // been added. We can cut right here.
622                 end_ = cit->pos;
623                 dim_.wid = wid;
624                 moveElements(elements_, cit, tail);
625                 return tail;
626         }
627
628         /* If we are here, it means that we have not found a separator to
629          * shorten the row. Let's try to break it again, but force
630          * splitting this time.
631          */
632         if (cit->splitAt(w - wid, next_width, true, tail)) {
633                 end_ = cit->endpos;
634                 dim_.wid = wid + cit->dim.wid;
635                 // If there are other elements, they should be removed.
636                 moveElements(elements_, cit + 1, tail);
637                 return tail;
638         }
639
640         // cit == beg; remove all elements after the first one.
641         moveElements(elements_, cit + 1, tail);
642         return tail;
643 }
644
645
646 void Row::reverseRTL()
647 {
648         pos_type i = 0;
649         pos_type const end = elements_.size();
650         while (i < end) {
651                 // gather a sequence of elements with the same direction
652                 bool const rtl = elements_[i].isRTL();
653                 pos_type j = i;
654                 while (j < end && elements_[j].isRTL() == rtl)
655                         ++j;
656                 // if the direction is not the same as the paragraph
657                 // direction, the sequence has to be reverted.
658                 if (rtl != rtl_)
659                         reverse(elements_.begin() + i, elements_.begin() + j);
660                 i = j;
661         }
662         // If the paragraph itself is RTL, reverse everything
663         if (rtl_)
664                 reverse(elements_.begin(), elements_.end());
665 }
666
667 Row::const_iterator const
668 Row::findElement(pos_type const pos, bool const boundary, double & x) const
669 {
670         /**
671          * When boundary is true, position i is in the row element (pos, endpos)
672          * if
673          *    pos < i <= endpos
674          * whereas, when boundary is false, the test is
675          *    pos <= i < endpos
676          * The correction below allows to handle both cases.
677         */
678         int const boundary_corr = (boundary && pos) ? -1 : 0;
679
680         x = left_margin;
681
682         /** Early return in trivial cases
683          * 1) the row is empty
684          * 2) the position is the left-most position of the row; there
685          * is a quirk here however: if the first element is virtual
686          * (end-of-par marker for example), then we have to look
687          * closer
688          */
689         if (empty()
690             || (pos == begin()->left_pos() && !boundary
691                         && !begin()->isVirtual()))
692                 return begin();
693
694         const_iterator cit = begin();
695         for ( ; cit != end() ; ++cit) {
696                 /** Look whether the cursor is inside the element's span. Note
697                  * that it is necessary to take the boundary into account, and
698                  * to accept virtual elements, in which case the position
699                  * will be before the virtual element.
700                  */
701                 if (cit->isVirtual() && pos + boundary_corr == cit->pos)
702                         break;
703                 else if (pos + boundary_corr >= cit->pos
704                          && pos + boundary_corr < cit->endpos) {
705                         x += cit->pos2x(pos);
706                         break;
707                 }
708                 x += cit->full_width();
709         }
710
711         if (cit == end())
712                 --cit;
713
714         return cit;
715 }
716
717
718 } // namespace lyx