]> git.lyx.org Git - features.git/blob - src/TextMetrics.cpp
Change the way scrolled rows are tracked
[features.git] / src / TextMetrics.cpp
1 /**
2  * \file src/TextMetrics.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author André Pönitz
11  * \author Dekel Tsur
12  * \author Jürgen Vigna
13  * \author Abdelrazak Younes
14  *
15  * Full author contact details are available in file CREDITS.
16  */
17
18 #include <config.h>
19
20 #include "TextMetrics.h"
21
22 #include "Buffer.h"
23 #include "buffer_funcs.h"
24 #include "BufferParams.h"
25 #include "BufferView.h"
26 #include "CoordCache.h"
27 #include "Cursor.h"
28 #include "CutAndPaste.h"
29 #include "InsetList.h"
30 #include "Language.h"
31 #include "Layout.h"
32 #include "LyXRC.h"
33 #include "MetricsInfo.h"
34 #include "ParagraphParameters.h"
35 #include "RowPainter.h"
36 #include "Text.h"
37 #include "TextClass.h"
38 #include "VSpace.h"
39
40 #include "insets/InsetText.h"
41
42 #include "mathed/InsetMathMacroTemplate.h"
43
44 #include "frontends/FontMetrics.h"
45 #include "frontends/Painter.h"
46 #include "frontends/NullPainter.h"
47
48 #include "support/convert.h"
49 #include "support/debug.h"
50 #include "support/lassert.h"
51 #include "support/lyxlib.h"
52
53 #include <stdlib.h>
54 #include <cmath>
55
56 using namespace std;
57
58
59 namespace lyx {
60
61 using frontend::FontMetrics;
62
63 namespace {
64
65 // the somewhat arbitrary leading added between rows. This is 20% of
66 // the characters height, inluding the possible leading of the font.
67 // 20% is a standard value used by LaTeX and word processors.
68 double const extra_leading = 0.2;
69
70 int numberOfLabelHfills(Paragraph const & par, Row const & row)
71 {
72         pos_type last = row.endpos() - 1;
73         pos_type first = row.pos();
74
75         // hfill *DO* count at the beginning of paragraphs!
76         if (first) {
77                 while (first < last && par.isHfill(first))
78                         ++first;
79         }
80
81         last = min(last, par.beginOfBody());
82         int n = 0;
83         for (pos_type p = first; p < last; ++p) {
84                 if (par.isHfill(p))
85                         ++n;
86         }
87         return n;
88 }
89
90 // FIXME: this needs to be rewritten, probably by merging it into some
91 // code that, besides counting, sets the active status of the space
92 // inset in the row element.
93 int numberOfHfills(Row const & row, ParagraphMetrics const & pm,
94                    pos_type const body_pos)
95 {
96         int n = 0;
97         Row::const_iterator cit = row.begin();
98         Row::const_iterator const end = row.end();
99         for ( ; cit != end ; ++cit)
100                 if (cit->pos >= body_pos
101                     && cit->inset && pm.hfillExpansion(row, cit->pos))
102                         ++n;
103         return n;
104 }
105
106
107 } // namespace
108
109 /////////////////////////////////////////////////////////////////////
110 //
111 // TextMetrics
112 //
113 /////////////////////////////////////////////////////////////////////
114
115
116 TextMetrics::TextMetrics(BufferView * bv, Text * text)
117         : bv_(bv), text_(text)
118 {
119         LBUFERR(bv_);
120         max_width_ = bv_->workWidth();
121         dim_.wid = max_width_;
122         dim_.asc = 10;
123         dim_.des = 10;
124 }
125
126
127 bool TextMetrics::contains(pit_type pit) const
128 {
129         return par_metrics_.find(pit) != par_metrics_.end();
130 }
131
132
133 pair<pit_type, ParagraphMetrics const *> TextMetrics::first() const
134 {
135         ParMetricsCache::const_iterator it = par_metrics_.begin();
136         return make_pair(it->first, &it->second);
137 }
138
139
140 pair<pit_type, ParagraphMetrics const *> TextMetrics::last() const
141 {
142         LBUFERR(!par_metrics_.empty());
143         ParMetricsCache::const_reverse_iterator it = par_metrics_.rbegin();
144         return make_pair(it->first, &it->second);
145 }
146
147
148 bool TextMetrics::isLastRow(Row const & row) const
149 {
150         ParagraphList const & pars = text_->paragraphs();
151         return row.endpos() >= pars[row.pit()].size()
152                 && row.pit() + 1 == pit_type(pars.size());
153 }
154
155
156 bool TextMetrics::isFirstRow(Row const & row) const
157 {
158         return row.pos() == 0 && row.pit() == 0;
159 }
160
161
162 void TextMetrics::setRowChanged(pit_type pit, pos_type pos)
163 {
164         for (auto & pm_pair : par_metrics_)
165                 if (pm_pair.first == pit)
166                         for (Row & row : pm_pair.second.rows())
167                                 if (row.pos() == pos)
168                                         row.changed(true);
169 }
170
171
172 ParagraphMetrics & TextMetrics::parMetrics(pit_type pit, bool redo)
173 {
174         ParMetricsCache::iterator pmc_it = par_metrics_.find(pit);
175         if (pmc_it == par_metrics_.end()) {
176                 pmc_it = par_metrics_.insert(
177                         make_pair(pit, ParagraphMetrics(text_->getPar(pit)))).first;
178         }
179         if (pmc_it->second.rows().empty() && redo)
180                 redoParagraph(pit);
181         return pmc_it->second;
182 }
183
184
185 ParagraphMetrics const & TextMetrics::parMetrics(pit_type pit) const
186 {
187         return const_cast<TextMetrics *>(this)->parMetrics(pit, true);
188 }
189
190
191 void TextMetrics::newParMetricsDown()
192 {
193         pair<pit_type, ParagraphMetrics> const & last = *par_metrics_.rbegin();
194         pit_type const pit = last.first + 1;
195         if (pit == int(text_->paragraphs().size()))
196                 return;
197
198         // do it and update its position.
199         redoParagraph(pit);
200         par_metrics_[pit].setPosition(last.second.position()
201                 + last.second.descent() + par_metrics_[pit].ascent());
202         updatePosCache(pit);
203 }
204
205
206 void TextMetrics::newParMetricsUp()
207 {
208         pair<pit_type, ParagraphMetrics> const & first = *par_metrics_.begin();
209         if (first.first == 0)
210                 return;
211
212         pit_type const pit = first.first - 1;
213         // do it and update its position.
214         redoParagraph(pit);
215         par_metrics_[pit].setPosition(first.second.position()
216                 - first.second.ascent() - par_metrics_[pit].descent());
217         updatePosCache(pit);
218 }
219
220
221 bool TextMetrics::metrics(MetricsInfo & mi, Dimension & dim, int min_width,
222                           bool const expand_on_multipars)
223 {
224         LBUFERR(mi.base.textwidth > 0);
225         max_width_ = mi.base.textwidth;
226         // backup old dimension.
227         Dimension const old_dim = dim_;
228         // reset dimension.
229         dim_ = Dimension();
230         dim_.wid = min_width;
231         pit_type const npar = text_->paragraphs().size();
232         if (npar > 1 && expand_on_multipars)
233                 // If there is more than one row, expand the text to
234                 // the full allowable width.
235                 dim_.wid = max_width_;
236
237         //lyxerr << "TextMetrics::metrics: width: " << mi.base.textwidth
238         //      << " maxWidth: " << max_width_ << "\nfont: " << mi.base.font << endl;
239
240         bool changed = false;
241         unsigned int h = 0;
242         for (pit_type pit = 0; pit != npar; ++pit) {
243                 // create rows, but do not set alignment yet
244                 changed |= redoParagraph(pit, false);
245                 ParagraphMetrics const & pm = par_metrics_[pit];
246                 h += pm.height();
247                 if (dim_.wid < pm.width())
248                         dim_.wid = pm.width();
249         }
250
251         // Now set alignment for all rows (the width might not have been known before).
252         for (pit_type pit = 0; pit != npar; ++pit) {
253                 ParagraphMetrics & pm = par_metrics_[pit];
254                 for (Row & row : pm.rows())
255                         setRowAlignment(row, dim_.wid);
256         }
257
258         dim_.asc = par_metrics_[0].ascent();
259         dim_.des = h - dim_.asc;
260         //lyxerr << "dim_.wid " << dim_.wid << endl;
261         //lyxerr << "dim_.asc " << dim_.asc << endl;
262         //lyxerr << "dim_.des " << dim_.des << endl;
263
264         changed |= dim_ != old_dim;
265         dim = dim_;
266         return changed;
267 }
268
269
270 void TextMetrics::updatePosCache(pit_type pit) const
271 {
272         frontend::NullPainter np;
273         PainterInfo pi(bv_, np);
274         drawParagraph(pi, pit, origin_.x_, par_metrics_[pit].position());
275 }
276
277
278 int TextMetrics::rightMargin(ParagraphMetrics const & pm) const
279 {
280         return text_->isMainText() ? pm.rightMargin(*bv_) : 0;
281 }
282
283
284 int TextMetrics::rightMargin(pit_type const pit) const
285 {
286         return text_->isMainText() ? par_metrics_[pit].rightMargin(*bv_) : 0;
287 }
288
289
290 void TextMetrics::applyOuterFont(Font & font) const
291 {
292         FontInfo lf(font_.fontInfo());
293         lf.reduce(bv_->buffer().params().getFont().fontInfo());
294         font.fontInfo().realize(lf);
295 }
296
297
298 Font TextMetrics::displayFont(pit_type pit, pos_type pos) const
299 {
300         LASSERT(pos >= 0, { static Font f; return f; });
301
302         ParagraphList const & pars = text_->paragraphs();
303         Paragraph const & par = pars[pit];
304         Layout const & layout = par.layout();
305         Buffer const & buffer = bv_->buffer();
306         // FIXME: broken?
307         BufferParams const & params = buffer.params();
308         pos_type const body_pos = par.beginOfBody();
309
310         // We specialize the 95% common case:
311         if (!par.getDepth()) {
312                 Font f = par.getFontSettings(params, pos);
313                 if (!text_->isMainText())
314                         applyOuterFont(f);
315                 bool lab = layout.labeltype == LABEL_MANUAL && pos < body_pos;
316
317                 FontInfo const & lf = lab ? layout.labelfont : layout.font;
318                 FontInfo rlf = lab ? layout.reslabelfont : layout.resfont;
319
320                 // In case the default family has been customized
321                 if (lf.family() == INHERIT_FAMILY)
322                         rlf.setFamily(params.getFont().fontInfo().family());
323                 f.fontInfo().realize(rlf);
324                 return f;
325         }
326
327         // The uncommon case need not be optimized as much
328         FontInfo const & layoutfont = pos < body_pos ?
329                 layout.labelfont : layout.font;
330
331         Font font = par.getFontSettings(params, pos);
332         font.fontInfo().realize(layoutfont);
333
334         if (!text_->isMainText())
335                 applyOuterFont(font);
336
337         // Realize against environment font information
338         // NOTE: the cast to pit_type should be removed when pit_type
339         // changes to a unsigned integer.
340         if (pit < pit_type(pars.size()))
341                 font.fontInfo().realize(text_->outerFont(pit).fontInfo());
342
343         // Realize with the fonts of lesser depth.
344         font.fontInfo().realize(params.getFont().fontInfo());
345
346         return font;
347 }
348
349
350 bool TextMetrics::isRTL(CursorSlice const & sl, bool boundary) const
351 {
352         if (!sl.text())
353                 return false;
354
355         int correction = 0;
356         if (boundary && sl.pos() > 0)
357                 correction = -1;
358
359         return displayFont(sl.pit(), sl.pos() + correction).isVisibleRightToLeft();
360 }
361
362
363 bool TextMetrics::isRTLBoundary(pit_type pit, pos_type pos) const
364 {
365         // no RTL boundary at paragraph start
366         if (pos == 0)
367                 return false;
368
369         Font const & left_font = displayFont(pit, pos - 1);
370
371         return isRTLBoundary(pit, pos, left_font);
372 }
373
374
375 // isRTLBoundary returns false on a real end-of-line boundary,
376 // because otherwise the two boundary types get mixed up.
377 // This is the whole purpose of this being in TextMetrics.
378 bool TextMetrics::isRTLBoundary(pit_type pit, pos_type pos,
379                 Font const & font) const
380 {
381         if (// no RTL boundary at paragraph start
382             pos == 0
383             // if the metrics have not been calculated, then we are not
384             // on screen and can safely ignore issues about boundaries.
385             || !contains(pit))
386                 return false;
387
388         ParagraphMetrics & pm = par_metrics_[pit];
389         // no RTL boundary in empty paragraph
390         if (pm.rows().empty())
391                 return false;
392
393         pos_type endpos = pm.getRow(pos - 1, false).endpos();
394         pos_type startpos = pm.getRow(pos, false).pos();
395         // no RTL boundary at line start:
396         // abc\n   -> toggle to RTL ->    abc\n     (and not:    abc\n|
397         // |                              |                               )
398         if (pos == startpos && pos == endpos) // start of cur row, end of prev row
399                 return false;
400
401         Paragraph const & par = text_->getPar(pit);
402         // no RTL boundary at line break:
403         // abc|\n    -> move right ->   abc\n       (and not:    abc\n|
404         // FED                          FED|                     FED     )
405         if (startpos == pos && endpos == pos && endpos != par.size()
406                 && (par.isNewline(pos - 1)
407                         || par.isEnvSeparator(pos - 1)
408                         || par.isLineSeparator(pos - 1)
409                         || par.isSeparator(pos - 1)))
410                 return false;
411
412         bool left = font.isVisibleRightToLeft();
413         bool right;
414         if (pos == par.size())
415                 right = par.isRTL(bv_->buffer().params());
416         else
417                 right = displayFont(pit, pos).isVisibleRightToLeft();
418
419         return left != right;
420 }
421
422
423 bool TextMetrics::redoParagraph(pit_type const pit, bool const align_rows)
424 {
425         Paragraph & par = text_->getPar(pit);
426         // IMPORTANT NOTE: We pass 'false' explicitly in order to not call
427         // redoParagraph() recursively inside parMetrics.
428         Dimension old_dim = parMetrics(pit, false).dim();
429         ParagraphMetrics & pm = par_metrics_[pit];
430         pm.reset(par);
431
432         Buffer & buffer = bv_->buffer();
433         bool changed = false;
434
435         // Check whether there are InsetBibItems that need fixing
436         // FIXME: This check ought to be done somewhere else. It is the reason
437         // why text_ is not const. But then, where else to do it?
438         // Well, how can you end up with either (a) a biblio environment that
439         // has no InsetBibitem or (b) a biblio environment with more than one
440         // InsetBibitem? I think the answer is: when paragraphs are merged;
441         // when layout is set; when material is pasted.
442         if (par.brokenBiblio()) {
443                 Cursor & cur = const_cast<Cursor &>(bv_->cursor());
444                 // In some cases, we do not know how to record undo
445                 if (&cur.inset() == &text_->inset())
446                         cur.recordUndo(pit, pit);
447
448                 int const moveCursor = par.fixBiblio(buffer);
449
450                 // Is it necessary to update the cursor?
451                 if (&cur.inset() == &text_->inset() && cur.pit() == pit) {
452                         if (moveCursor > 0)
453                                 cur.posForward();
454                         else if (moveCursor < 0 && cur.pos() >= -moveCursor)
455                                 cur.posBackward();
456                 }
457         }
458
459         // Optimisation: this is used in the next two loops
460         // so better to calculate that once here.
461         int const right_margin = rightMargin(pm);
462
463         // iterator pointing to paragraph to resolve macros
464         DocIterator parPos = text_->macrocontextPosition();
465         if (!parPos.empty())
466                 parPos.pit() = pit;
467         else {
468                 LYXERR(Debug::INFO, "MacroContext not initialised!"
469                         << " Going through the buffer again and hope"
470                         << " the context is better then.");
471                 // FIXME audit updateBuffer calls
472                 // This should not be here, but it is not clear yet where else it
473                 // should be.
474                 bv_->buffer().updateBuffer();
475                 parPos = text_->macrocontextPosition();
476                 LBUFERR(!parPos.empty());
477                 parPos.pit() = pit;
478         }
479
480         // redo insets
481         par.setBeginOfBody();
482         Font const bufferfont = buffer.params().getFont();
483         CoordCache::Insets & insetCache = bv_->coordCache().insets();
484         for (auto const & e : par.insetList()) {
485                 // FIXME Doesn't this HAVE to be non-empty?
486                 // position already initialized?
487                 if (!parPos.empty()) {
488                         parPos.pos() = e.pos;
489
490                         // A macro template would normally not be visible
491                         // by itself. But the tex macro semantics allow
492                         // recursion, so we artifically take the context
493                         // after the macro template to simulate this.
494                         if (e.inset->lyxCode() == MATHMACRO_CODE)
495                                 parPos.pos()++;
496                 }
497
498                 // If there is an end of paragraph marker, its size should be
499                 // substracted to the available width. The logic here is
500                 // almost the same as in breakRow, remember keep them in sync.
501                 int eop = 0;
502                 if (lyxrc.paragraph_markers && e.pos + 1 == par.size()
503                     && size_type(pit + 1) < text_->paragraphs().size()) {
504                         Font f(text_->layoutFont(pit));
505                         // ¶ U+00B6 PILCROW SIGN
506                         eop = theFontMetrics(f).width(char_type(0x00B6));
507                 }
508
509                 // do the metric calculation
510                 Dimension dim;
511                 int const w = max_width_ - leftMargin(pit, e.pos)
512                         - right_margin - eop;
513                 Font const & font = e.inset->inheritFont() ?
514                         displayFont(pit, e.pos) : bufferfont;
515                 MacroContext mc(&buffer, parPos);
516                 MetricsInfo mi(bv_, font.fontInfo(), w, mc);
517                 e.inset->metrics(mi, dim);
518                 if (!insetCache.has(e.inset) || insetCache.dim(e.inset) != dim) {
519                         insetCache.add(e.inset, dim);
520                         changed = true;
521                 }
522         }
523
524         pos_type first = 0;
525         size_t row_index = 0;
526         bool need_new_row = false;
527         // maximum pixel width of a row
528         do {
529                 if (row_index == pm.rows().size())
530                         pm.rows().push_back(Row());
531                 Row & row = pm.rows()[row_index];
532                 row.pit(pit);
533                 row.pos(first);
534                 row.pit(pit);
535                 need_new_row = breakRow(row, right_margin);
536                 setRowHeight(row);
537                 row.changed(true);
538                 if ((row_index || row.endpos() < par.size() || row.right_boundary())
539                     && par.inInset().lyxCode() != CELL_CODE) {
540                         /* If there is more than one row or the row has been
541                          * broken by a display inset or a newline, expand the text
542                          * to the full allowable width. This setting here is
543                          * needed for the setRowAlignment() below.
544                          * We do nothing when inside a table cell.
545                          */
546                         if (dim_.wid < max_width_)
547                                 dim_.wid = max_width_;
548                 }
549                 if (align_rows)
550                         setRowAlignment(row, max(dim_.wid, row.width()));
551                 first = row.endpos();
552                 ++row_index;
553
554                 pm.dim().wid = max(pm.dim().wid, row.width());
555                 pm.dim().des += row.height();
556         } while (first < par.size() || need_new_row);
557
558         if (row_index < pm.rows().size())
559                 pm.rows().resize(row_index);
560
561         // FIXME: It might be better to move this in another method
562         // specially tailored for the main text.
563         // Top and bottom margin of the document (only at top-level)
564         if (text_->isMainText()) {
565                 // original value was 20px, which is 0.2in at 100dpi
566                 int const margin = bv_->zoomedPixels(20);
567                 if (pit == 0) {
568                         pm.rows().front().dim().asc += margin;
569                         /* coverity thinks that we should update pm.dim().asc
570                          * below, but all the rows heights are actually counted as
571                          * part of the paragraph metric descent see loop above).
572                          */
573                         // coverity[copy_paste_error]
574                         pm.dim().des += margin;
575                 }
576                 ParagraphList const & pars = text_->paragraphs();
577                 if (pit + 1 == pit_type(pars.size())) {
578                         pm.rows().back().dim().des += margin;
579                         pm.dim().des += margin;
580                 }
581         }
582
583         // The space above and below the paragraph.
584         int const top = parTopSpacing(pit);
585         pm.rows().front().dim().asc += top;
586         int const bottom = parBottomSpacing(pit);
587         pm.rows().back().dim().des += bottom;
588         pm.dim().des += top + bottom;
589
590         pm.dim().asc += pm.rows()[0].ascent();
591         pm.dim().des -= pm.rows()[0].ascent();
592
593         changed |= old_dim.height() != pm.dim().height();
594
595         return changed;
596 }
597
598
599 LyXAlignment TextMetrics::getAlign(Paragraph const & par, Row const & row) const
600 {
601         LyXAlignment align = par.getAlign();
602
603         // handle alignment inside tabular cells
604         Inset const & owner = text_->inset();
605         bool forced_block = false;
606         switch (owner.contentAlignment()) {
607         case LYX_ALIGN_BLOCK:
608                 // In general block align is the default state, but here it is
609                 // an explicit choice. Therefore it should not be overridden
610                 // later.
611                 forced_block = true;
612                 // fall through
613         case LYX_ALIGN_CENTER:
614         case LYX_ALIGN_LEFT:
615         case LYX_ALIGN_RIGHT:
616                 if (align == LYX_ALIGN_NONE || align == LYX_ALIGN_BLOCK)
617                         align = owner.contentAlignment();
618                 break;
619         default:
620                 // unchanged (use align)
621                 break;
622         }
623
624         // Display-style insets should always be on a centered row
625         if (Inset const * inset = par.getInset(row.pos())) {
626                 switch (inset->display()) {
627                 case Inset::AlignLeft:
628                         align = LYX_ALIGN_BLOCK;
629                         break;
630                 case Inset::AlignCenter:
631                         align = LYX_ALIGN_CENTER;
632                         break;
633                 case Inset::Inline:
634                         // unchanged (use align)
635                         break;
636                 case Inset::AlignRight:
637                         align = LYX_ALIGN_RIGHT;
638                         break;
639                 }
640         }
641
642         if (align == LYX_ALIGN_BLOCK) {
643                 // If this row has been broken abruptly by a display inset, or
644                 // it is the end of the paragraph, or the user requested we
645                 // not justify stuff, then don't stretch.
646                 // A forced block alignment can only be overridden the 'no
647                 // justification on screen' setting.
648                 if ((row.flushed() && !forced_block)
649                     || !bv_->buffer().params().justification)
650                         align = row.isRTL() ? LYX_ALIGN_RIGHT : LYX_ALIGN_LEFT;
651         }
652
653         return align;
654 }
655
656
657 void TextMetrics::setRowAlignment(Row & row, int width) const
658 {
659         row.label_hfill = 0;
660         row.separator = 0;
661
662         Paragraph const & par = text_->getPar(row.pit());
663
664         int const w = width - row.right_margin - row.width();
665         // FIXME: put back this assertion when the crash on new doc is solved.
666         //LASSERT(w >= 0, /**/);
667
668         // is there a manual margin with a manual label
669         Layout const & layout = par.layout();
670
671         int nlh = 0;
672         if (layout.margintype == MARGIN_MANUAL
673             && layout.labeltype == LABEL_MANUAL) {
674                 /// We might have real hfills in the label part
675                 nlh = numberOfLabelHfills(par, row);
676
677                 // A manual label par (e.g. List) has an auto-hfill
678                 // between the label text and the body of the
679                 // paragraph too.
680                 // But we don't want to do this auto hfill if the par
681                 // is empty.
682                 if (!par.empty())
683                         ++nlh;
684
685                 if (nlh && !par.getLabelWidthString().empty())
686                         row.label_hfill = labelFill(row) / double(nlh);
687         }
688
689         // are there any hfills in the row?
690         ParagraphMetrics & pm = par_metrics_[row.pit()];
691         int nh = numberOfHfills(row, pm, par.beginOfBody());
692         int hfill = 0;
693         int hfill_rem = 0;
694
695         // We don't have to look at the alignment if the row is already
696         // larger then the permitted width as then we force the
697         // LEFT_ALIGN'edness!
698         if (int(row.width()) >= max_width_)
699                 return;
700
701         if (nh == 0) {
702                 // Common case : there is no hfill, and the alignment will be
703                 // meaningful
704                 switch (getAlign(par, row)) {
705                 case LYX_ALIGN_BLOCK:
706                         // Expand expanding characters by a total of w
707                         if (!row.setExtraWidth(w) && row.isRTL()) {
708                                 // Justification failed and the text is RTL: align to the right
709                                 row.left_margin += w;
710                                 row.dim().wid += w;
711                         }
712                         break;
713                 case LYX_ALIGN_LEFT:
714                         // a displayed inset that is flushed
715                         if (Inset const * inset = par.getInset(row.pos())) {
716                                 row.left_margin += inset->indent(*bv_);
717                                 row.dim().wid += inset->indent(*bv_);
718                         }
719                         break;
720                 case LYX_ALIGN_RIGHT:
721                         if (Inset const * inset = par.getInset(row.pos())) {
722                                 int const new_w = max(w - inset->indent(*bv_), 0);
723                                 row.left_margin += new_w;
724                                 row.dim().wid += new_w;
725                         } else {
726                                 row.left_margin += w;
727                                 row.dim().wid += w;
728                         }
729                         break;
730                 case LYX_ALIGN_CENTER:
731                         row.dim().wid += w / 2;
732                         row.left_margin += w / 2;
733                         break;
734                 case LYX_ALIGN_NONE:
735                 case LYX_ALIGN_LAYOUT:
736                 case LYX_ALIGN_SPECIAL:
737                 case LYX_ALIGN_DECIMAL:
738                         break;
739                 }
740                 return;
741         }
742
743         // Case nh > 0. There are hfill separators.
744         hfill = w / nh;
745         hfill_rem = w % nh;
746         row.dim().wid += w;
747         // Set size of hfill insets
748         pos_type const endpos = row.endpos();
749         pos_type body_pos = par.beginOfBody();
750         if (body_pos > 0
751             && (body_pos > endpos || !par.isLineSeparator(body_pos - 1)))
752                 body_pos = 0;
753
754         CoordCache::Insets & insetCache = bv_->coordCache().insets();
755         for (Row::Element & e : row) {
756                 if (row.label_hfill && e.endpos == body_pos
757                     && e.type == Row::SPACE)
758                         e.dim.wid -= int(row.label_hfill * (nlh - 1));
759                 if (e.inset && pm.hfillExpansion(row, e.pos)) {
760                         if (e.pos >= body_pos) {
761                                 e.dim.wid += hfill;
762                                 --nh;
763                                 if (nh == 0)
764                                         e.dim.wid += hfill_rem;
765                         } else
766                                 e.dim.wid += int(row.label_hfill);
767                         // Cache the inset dimension.
768                         insetCache.add(e.inset, e.dim);
769                 }
770         }
771 }
772
773
774 int TextMetrics::labelFill(Row const & row) const
775 {
776         Paragraph const & par = text_->getPar(row.pit());
777         LBUFERR(par.beginOfBody() > 0 || par.isEnvSeparator(0));
778
779         int w = 0;
780         // iterate over elements before main body (except the last one,
781         // which is extra space).
782         for (Row::Element const & e : row) {
783                 if (e.endpos >= par.beginOfBody())
784                         break;
785                 w += e.dim.wid;
786         }
787
788         docstring const & label = par.params().labelWidthString();
789         if (label.empty())
790                 return 0;
791
792         FontMetrics const & fm
793                 = theFontMetrics(text_->labelFont(par));
794
795         return max(0, fm.width(label) - w);
796 }
797
798
799 #if 0
800 // Not used, see TextMetrics::breakRow
801 // this needs special handling - only newlines count as a break point
802 static pos_type addressBreakPoint(pos_type i, Paragraph const & par)
803 {
804         pos_type const end = par.size();
805
806         for (; i < end; ++i)
807                 if (par.isNewline(i))
808                         return i + 1;
809
810         return end;
811 }
812 #endif
813
814
815 int TextMetrics::labelEnd(pit_type const pit) const
816 {
817         // labelEnd is only needed if the layout fills a flushleft label.
818         if (text_->getPar(pit).layout().margintype != MARGIN_MANUAL)
819                 return 0;
820         // return the beginning of the body
821         return leftMargin(pit);
822 }
823
824 namespace {
825
826 /**
827  * Calling Text::getFont is slow. While rebreaking we scan a
828  * paragraph from left to right calling getFont for every char.  This
829  * simple class address this problem by hidding an optimization trick
830  * (not mine btw -AB): the font is reused in the whole font span.  The
831  * class handles transparently the "hidden" (not part of the fontlist)
832  * label font (as getFont does).
833  **/
834 class FontIterator
835 {
836 public:
837         ///
838         FontIterator(TextMetrics const & tm,
839                 Paragraph const & par, pit_type pit, pos_type pos)
840                 : tm_(tm), par_(par), pit_(pit), pos_(pos),
841                 font_(tm.displayFont(pit, pos)),
842                 endspan_(par.fontSpan(pos).last),
843                 bodypos_(par.beginOfBody())
844         {}
845
846         ///
847         Font const & operator*() const { return font_; }
848
849         ///
850         FontIterator & operator++()
851         {
852                 ++pos_;
853                 if (pos_ < par_.size() && (pos_ > endspan_ || pos_ == bodypos_)) {
854                         font_ = tm_.displayFont(pit_, pos_);
855                         endspan_ = par_.fontSpan(pos_).last;
856                 }
857                 return *this;
858         }
859
860         ///
861         Font * operator->() { return &font_; }
862
863 private:
864         ///
865         TextMetrics const & tm_;
866         ///
867         Paragraph const & par_;
868         ///
869         pit_type pit_;
870         ///
871         pos_type pos_;
872         ///
873         Font font_;
874         ///
875         pos_type endspan_;
876         ///
877         pos_type bodypos_;
878 };
879
880 } // namespace
881
882 /** This is the function where the hard work is done. The code here is
883  * very sensitive to small changes :) Note that part of the
884  * intelligence is also in Row::shortenIfNeeded.
885  */
886 bool TextMetrics::breakRow(Row & row, int const right_margin) const
887 {
888         Paragraph const & par = text_->getPar(row.pit());
889         pos_type const end = par.size();
890         pos_type const pos = row.pos();
891         pos_type const body_pos = par.beginOfBody();
892         bool const is_rtl = text_->isRTL(par);
893         bool need_new_row = false;
894
895         row.clear();
896         row.left_margin = leftMargin(row.pit(), pos);
897         row.right_margin = right_margin;
898         if (is_rtl)
899                 swap(row.left_margin, row.right_margin);
900         // Remember that the row width takes into account the left_margin
901         // but not the right_margin.
902         row.dim().wid = row.left_margin;
903         // the width available for the row.
904         int const width = max_width_ - row.right_margin;
905
906 #if 0
907         //FIXME: As long as leftMargin() is not correctly implemented for
908         // MARGIN_RIGHT_ADDRESS_BOX, we should also not do this here.
909         // Otherwise, long rows will be painted off the screen.
910         if (par.layout().margintype == MARGIN_RIGHT_ADDRESS_BOX)
911                 return addressBreakPoint(pos, par);
912 #endif
913
914         // check for possible inline completion
915         DocIterator const & ic_it = bv_->inlineCompletionPos();
916         pos_type ic_pos = -1;
917         if (ic_it.inTexted() && ic_it.text() == text_ && ic_it.pit() == row.pit())
918                 ic_pos = ic_it.pos();
919
920         // Now we iterate through until we reach the right margin
921         // or the end of the par, then build a representation of the row.
922         pos_type i = pos;
923         FontIterator fi = FontIterator(*this, par, row.pit(), pos);
924         while (i < end && (i == pos || row.width() <= width)) {
925                 char_type c = par.getChar(i);
926                 // The most special cases are handled first.
927                 if (par.isInset(i)) {
928                         Inset const * ins = par.getInset(i);
929                         Dimension dim = bv_->coordCache().insets().dim(ins);
930                         row.add(i, ins, dim, *fi, par.lookupChange(i));
931                 } else if (c == ' ' && i + 1 == body_pos) {
932                         // There is a space at i, but it should not be
933                         // added as a separator, because it is just
934                         // before body_pos. Instead, insert some spacing to
935                         // align text
936                         FontMetrics const & fm = theFontMetrics(text_->labelFont(par));
937                         // this is needed to make sure that the row width is correct
938                         row.finalizeLast();
939                         int const add = max(fm.width(par.layout().labelsep),
940                                             labelEnd(row.pit()) - row.width());
941                         row.addSpace(i, add, *fi, par.lookupChange(i));
942                 } else if (c == '\t')
943                         row.addSpace(i, theFontMetrics(*fi).width(from_ascii("    ")),
944                                      *fi, par.lookupChange(i));
945                 else if (c == 0x2028 || c == 0x2029) {
946                         /**
947                          * U+2028 LINE SEPARATOR
948                          * U+2029 PARAGRAPH SEPARATOR
949
950                          * These are special unicode characters that break
951                          * lines/pragraphs. Not handling them lead to trouble wrt
952                          * Qt QTextLayout formatting. We add a visible character
953                          * on screen so that the user can see that something is
954                          * happening.
955                         */
956                         row.finalizeLast();
957                         // ⤶ U+2936 ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS
958                         // ¶ U+00B6 PILCROW SIGN
959                         char_type const screen_char = (c == 0x2028) ? 0x2936 : 0x00B6;
960                         row.add(i, screen_char, *fi, par.lookupChange(i));
961                 } else
962                         row.add(i, c, *fi, par.lookupChange(i));
963
964                 // add inline completion width
965                 // draw logically behind the previous character
966                 if (ic_pos == i + 1 && !bv_->inlineCompletion().empty()) {
967                         docstring const comp = bv_->inlineCompletion();
968                         size_t const uniqueTo =bv_->inlineCompletionUniqueChars();
969                         Font f = *fi;
970
971                         if (uniqueTo > 0) {
972                                 f.fontInfo().setColor(Color_inlinecompletion);
973                                 row.addVirtual(i + 1, comp.substr(0, uniqueTo), f, Change());
974                         }
975                         f.fontInfo().setColor(Color_nonunique_inlinecompletion);
976                         row.addVirtual(i + 1, comp.substr(uniqueTo), f, Change());
977                 }
978
979                 // Handle some situations that abruptly terminate the row
980                 // - A newline inset
981                 // - Before a display inset
982                 // - After a display inset
983                 Inset const * inset = 0;
984                 if (par.isNewline(i) || par.isEnvSeparator(i)
985                     || (i + 1 < end && (inset = par.getInset(i + 1))
986                         && inset->display())
987                     || (!row.empty() && row.back().inset
988                         && row.back().inset->display())) {
989                         row.flushed(true);
990                         need_new_row = par.isNewline(i);
991                         ++i;
992                         break;
993                 }
994
995                 ++i;
996                 ++fi;
997         }
998         row.finalizeLast();
999         row.endpos(i);
1000
1001         // End of paragraph marker. The logic here is almost the
1002         // same as in redoParagraph, remember keep them in sync.
1003         ParagraphList const & pars = text_->paragraphs();
1004         if (lyxrc.paragraph_markers && !need_new_row
1005             && i == end && size_type(row.pit() + 1) < pars.size()) {
1006                 // add a virtual element for the end-of-paragraph
1007                 // marker; it is shown on screen, but does not exist
1008                 // in the paragraph.
1009                 Font f(text_->layoutFont(row.pit()));
1010                 f.fontInfo().setColor(Color_paragraphmarker);
1011                 BufferParams const & bparams
1012                         = text_->inset().buffer().params();
1013                 f.setLanguage(par.getParLanguage(bparams));
1014                 // ¶ U+00B6 PILCROW SIGN
1015                 row.addVirtual(end, docstring(1, char_type(0x00B6)), f, Change());
1016         }
1017
1018         // Is there a end-of-paragaph change?
1019         if (i == end && par.lookupChange(end).changed() && !need_new_row)
1020                 row.needsChangeBar(true);
1021
1022         // if the row is too large, try to cut at last separator. In case
1023         // of success, reset indication that the row was broken abruptly.
1024         int const next_width = max_width_ - leftMargin(row.pit(), row.endpos())
1025                 - rightMargin(row.pit());
1026
1027         if (row.shortenIfNeeded(body_pos, width, next_width))
1028                 row.flushed(false);
1029         row.right_boundary(!row.empty() && row.endpos() < end
1030                            && row.back().endpos == row.endpos());
1031         // Last row in paragraph is flushed
1032         if (row.endpos() == end)
1033                 row.flushed(true);
1034
1035         // make sure that the RTL elements are in reverse ordering
1036         row.reverseRTL(is_rtl);
1037         //LYXERR0("breakrow: row is " << row);
1038
1039         return need_new_row;
1040 }
1041
1042 int TextMetrics::parTopSpacing(pit_type const pit) const
1043 {
1044         Paragraph const & par = text_->getPar(pit);
1045         Layout const & layout = par.layout();
1046
1047         int asc = 0;
1048         ParagraphList const & pars = text_->paragraphs();
1049         double const dh = defaultRowHeight();
1050
1051         BufferParams const & bparams = bv_->buffer().params();
1052         Inset const & inset = text_->inset();
1053         // some parskips VERY EASY IMPLEMENTATION
1054         if (bparams.paragraph_separation == BufferParams::ParagraphSkipSeparation
1055                 && !inset.getLayout().parbreakIsNewline()
1056                 && !par.layout().parbreak_is_newline
1057                 && pit > 0
1058                 && ((layout.isParagraph() && par.getDepth() == 0)
1059                     || (pars[pit - 1].layout().isParagraph()
1060                         && pars[pit - 1].getDepth() == 0))) {
1061                 asc += bparams.getDefSkip().inPixels(*bv_);
1062         }
1063
1064         if (par.params().startOfAppendix())
1065                 asc += int(3 * dh);
1066
1067         // special code for the top label
1068         if (layout.labelIsAbove()
1069             && (!layout.isParagraphGroup() || text_->isFirstInSequence(pit))
1070             && !par.labelString().empty()) {
1071                 FontInfo labelfont = text_->labelFont(par);
1072                 FontMetrics const & lfm = theFontMetrics(labelfont);
1073                 asc += int(lfm.maxHeight() * layout.spacing.getValue()
1074                                            * text_->spacing(par)
1075                            + (layout.topsep + layout.labelbottomsep) * dh);
1076         }
1077
1078         // Add the layout spaces, for example before and after
1079         // a section, or between the items of a itemize or enumerate
1080         // environment.
1081
1082         pit_type prev = text_->depthHook(pit, par.getDepth());
1083         Paragraph const & prevpar = pars[prev];
1084         double layoutasc = 0;
1085         if (prev != pit
1086             && prevpar.layout() == layout
1087             && prevpar.getDepth() == par.getDepth()
1088             && prevpar.getLabelWidthString() == par.getLabelWidthString()) {
1089                 layoutasc = layout.itemsep * dh;
1090         } else if (pit != 0 && layout.topsep > 0)
1091                 layoutasc = layout.topsep * dh;
1092
1093         asc += int(layoutasc * 2 / (2 + pars[pit].getDepth()));
1094
1095         prev = text_->outerHook(pit);
1096         if (prev != pit_type(pars.size())) {
1097                 asc += int(pars[prev].layout().parsep * dh);
1098         } else if (pit != 0) {
1099                 Paragraph const & prevpar2 = pars[pit - 1];
1100                 if (prevpar2.getDepth() != 0 || prevpar2.layout() == layout)
1101                         asc += int(layout.parsep * dh);
1102         }
1103
1104         return asc;
1105 }
1106
1107
1108 int TextMetrics::parBottomSpacing(pit_type const pit) const
1109 {
1110         double layoutdesc = 0;
1111         ParagraphList const & pars = text_->paragraphs();
1112         double const dh = defaultRowHeight();
1113
1114         // add the layout spaces, for example before and after
1115         // a section, or between the items of a itemize or enumerate
1116         // environment
1117         pit_type nextpit = pit + 1;
1118         if (nextpit != pit_type(pars.size())) {
1119                 pit_type cpit = pit;
1120
1121                 if (pars[cpit].getDepth() > pars[nextpit].getDepth()) {
1122                         double usual = pars[cpit].layout().bottomsep * dh;
1123                         double unusual = 0;
1124                         cpit = text_->depthHook(cpit, pars[nextpit].getDepth());
1125                         if (pars[cpit].layout() != pars[nextpit].layout()
1126                                 || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
1127                                 unusual = pars[cpit].layout().bottomsep * dh;
1128                         layoutdesc = max(unusual, usual);
1129                 } else if (pars[cpit].getDepth() == pars[nextpit].getDepth()) {
1130                         if (pars[cpit].layout() != pars[nextpit].layout()
1131                                 || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
1132                                 layoutdesc = int(pars[cpit].layout().bottomsep * dh);
1133                 }
1134         }
1135
1136         return int(layoutdesc * 2 / (2 + pars[pit].getDepth()));
1137 }
1138
1139
1140 void TextMetrics::setRowHeight(Row & row) const
1141 {
1142         Paragraph const & par = text_->getPar(row.pit());
1143         Layout const & layout = par.layout();
1144         double const spacing_val = layout.spacing.getValue() * text_->spacing(par);
1145
1146         // Initial value for ascent (useful if row is empty).
1147         Font const font = displayFont(row.pit(), row.pos());
1148         FontMetrics const & fm = theFontMetrics(font);
1149         int maxasc = fm.maxAscent() + fm.leading();
1150         int maxdes = fm.maxDescent();
1151
1152         // Find the ascent/descent of the row contents
1153         for (Row::Element const & e : row) {
1154                 maxasc = max(maxasc, e.dim.ascent());
1155                 maxdes = max(maxdes, e.dim.descent());
1156         }
1157
1158         // Add some leading (split between before and after)
1159         int const leading = support::iround(extra_leading * (maxasc + maxdes));
1160         row.dim().asc = int((maxasc + leading - leading / 2) * spacing_val);
1161         row.dim().des = int((maxdes + leading / 2) * spacing_val);
1162 }
1163
1164
1165 // x is an absolute screen coord
1166 // returns the column near the specified x-coordinate of the row
1167 // x is set to the real beginning of this column
1168 pos_type TextMetrics::getPosNearX(Row const & row, int & x,
1169                                   bool & boundary) const
1170 {
1171         //LYXERR0("getPosNearX(" << x << ") row=" << row);
1172         /// For the main Text, it is possible that this pit is not
1173         /// yet in the CoordCache when moving cursor up.
1174         /// x Paragraph coordinate is always 0 for main text anyway.
1175         int const xo = origin_.x_;
1176         x -= xo;
1177
1178         // Adapt to cursor row scroll offset if applicable.
1179         int const offset = bv_->horizScrollOffset(text_, row.pit(), row.pos());
1180         x += offset;
1181
1182         pos_type pos = row.pos();
1183         boundary = false;
1184         if (row.empty())
1185                 x = row.left_margin;
1186         else if (x <= row.left_margin) {
1187                 pos = row.front().left_pos();
1188                 x = row.left_margin;
1189         } else if (x >= row.width()) {
1190                 pos = row.back().right_pos();
1191                 x = row.width();
1192         } else {
1193                 double w = row.left_margin;
1194                 Row::const_iterator cit = row.begin();
1195                 Row::const_iterator cend = row.end();
1196                 for ( ; cit != cend; ++cit) {
1197                         if (w <= x &&  w + cit->full_width() > x) {
1198                                 int x_offset = int(x - w);
1199                                 pos = cit->x2pos(x_offset);
1200                                 x = int(x_offset + w);
1201                                 break;
1202                         }
1203                         w += cit->full_width();
1204                 }
1205                 if (cit == row.end()) {
1206                         pos = row.back().right_pos();
1207                         x = row.width();
1208                 }
1209                 /** This tests for the case where the cursor is placed
1210                  * just before a font direction change. See comment on
1211                  * the boundary_ member in DocIterator.h to understand
1212                  * how boundary helps here.
1213                  */
1214                 else if (pos == cit->endpos
1215                          && ((!cit->isRTL() && cit + 1 != row.end()
1216                               && (cit + 1)->isRTL())
1217                              || (cit->isRTL() && cit != row.begin()
1218                                  && !(cit - 1)->isRTL())))
1219                         boundary = true;
1220         }
1221
1222         /** This tests for the case where the cursor is set at the end
1223          * of a row which has been broken due something else than a
1224          * separator (a display inset or a forced breaking of the
1225          * row). We know that there is a separator when the end of the
1226          * row is larger than the end of its last element.
1227          */
1228         if (!row.empty() && pos == row.back().endpos
1229             && row.back().endpos == row.endpos()) {
1230                 Inset const * inset = row.back().inset;
1231                 if (inset && (inset->lyxCode() == NEWLINE_CODE
1232                               || inset->lyxCode() == SEPARATOR_CODE))
1233                         pos = row.back().pos;
1234                 else
1235                         boundary = row.right_boundary();
1236         }
1237
1238         x += xo - offset;
1239         //LYXERR0("getPosNearX ==> pos=" << pos << ", boundary=" << boundary);
1240
1241         return pos;
1242 }
1243
1244
1245 pos_type TextMetrics::x2pos(pit_type pit, int row, int x) const
1246 {
1247         // We play safe and use parMetrics(pit) to make sure the
1248         // ParagraphMetrics will be redone and OK to use if needed.
1249         // Otherwise we would use an empty ParagraphMetrics in
1250         // upDownInText() while in selection mode.
1251         ParagraphMetrics const & pm = parMetrics(pit);
1252
1253         LBUFERR(row < int(pm.rows().size()));
1254         bool bound = false;
1255         Row const & r = pm.rows()[row];
1256         return getPosNearX(r, x, bound);
1257 }
1258
1259
1260 // y is screen coordinate
1261 pit_type TextMetrics::getPitNearY(int y)
1262 {
1263         LASSERT(!text_->paragraphs().empty(), return -1);
1264         LASSERT(!par_metrics_.empty(), return -1);
1265         LYXERR(Debug::DEBUG, "y: " << y << " cache size: " << par_metrics_.size());
1266
1267         // look for highest numbered paragraph with y coordinate less than given y
1268         pit_type pit = -1;
1269         int yy = -1;
1270         ParMetricsCache::const_iterator it = par_metrics_.begin();
1271         ParMetricsCache::const_iterator et = par_metrics_.end();
1272         ParMetricsCache::const_iterator last = et;
1273         --last;
1274
1275         ParagraphMetrics const & pm = it->second;
1276
1277         if (y < it->second.position() - int(pm.ascent())) {
1278                 // We are looking for a position that is before the first paragraph in
1279                 // the cache (which is in priciple off-screen, that is before the
1280                 // visible part.
1281                 if (it->first == 0)
1282                         // We are already at the first paragraph in the inset.
1283                         return 0;
1284                 // OK, this is the paragraph we are looking for.
1285                 pit = it->first - 1;
1286                 newParMetricsUp();
1287                 return pit;
1288         }
1289
1290         ParagraphMetrics const & pm_last = par_metrics_[last->first];
1291
1292         if (y >= last->second.position() + int(pm_last.descent())) {
1293                 // We are looking for a position that is after the last paragraph in
1294                 // the cache (which is in priciple off-screen), that is before the
1295                 // visible part.
1296                 pit = last->first + 1;
1297                 if (pit == int(text_->paragraphs().size()))
1298                         //  We are already at the last paragraph in the inset.
1299                         return last->first;
1300                 // OK, this is the paragraph we are looking for.
1301                 newParMetricsDown();
1302                 return pit;
1303         }
1304
1305         for (; it != et; ++it) {
1306                 LYXERR(Debug::DEBUG, "examining: pit: " << it->first
1307                         << " y: " << it->second.position());
1308
1309                 ParagraphMetrics const & pm2 = par_metrics_[it->first];
1310
1311                 if (it->first >= pit && int(it->second.position()) - int(pm2.ascent()) <= y) {
1312                         pit = it->first;
1313                         yy = it->second.position();
1314                 }
1315         }
1316
1317         LYXERR(Debug::DEBUG, "found best y: " << yy << " for pit: " << pit);
1318
1319         return pit;
1320 }
1321
1322
1323 Row const & TextMetrics::getPitAndRowNearY(int & y, pit_type & pit,
1324         bool assert_in_view, bool up)
1325 {
1326         ParagraphMetrics const & pm = par_metrics_[pit];
1327
1328         int yy = pm.position() - pm.ascent();
1329         LBUFERR(!pm.rows().empty());
1330         RowList::const_iterator rit = pm.rows().begin();
1331         RowList::const_iterator rlast = pm.rows().end();
1332         --rlast;
1333         for (; rit != rlast; yy += rit->height(), ++rit)
1334                 if (yy + rit->height() > y)
1335                         break;
1336
1337         if (assert_in_view) {
1338                 if (!up && yy + rit->height() > y) {
1339                         if (rit != pm.rows().begin()) {
1340                                 y = yy;
1341                                 --rit;
1342                         } else if (pit != 0) {
1343                                 --pit;
1344                                 newParMetricsUp();
1345                                 ParagraphMetrics const & pm2 = par_metrics_[pit];
1346                                 rit = pm2.rows().end();
1347                                 --rit;
1348                                 y = yy;
1349                         }
1350                 } else if (up && yy != y) {
1351                         if (rit != rlast) {
1352                                 y = yy + rit->height();
1353                                 ++rit;
1354                         } else if (pit < int(text_->paragraphs().size()) - 1) {
1355                                 ++pit;
1356                                 newParMetricsDown();
1357                                 ParagraphMetrics const & pm2 = par_metrics_[pit];
1358                                 rit = pm2.rows().begin();
1359                                 y = pm2.position();
1360                         }
1361                 }
1362         }
1363         return *rit;
1364 }
1365
1366
1367 // x,y are absolute screen coordinates
1368 // sets cursor recursively descending into nested editable insets
1369 Inset * TextMetrics::editXY(Cursor & cur, int x, int y,
1370         bool assert_in_view, bool up)
1371 {
1372         if (lyxerr.debugging(Debug::WORKAREA)) {
1373                 LYXERR0("TextMetrics::editXY(cur, " << x << ", " << y << ")");
1374                 cur.bv().coordCache().dump();
1375         }
1376         pit_type pit = getPitNearY(y);
1377         LASSERT(pit != -1, return 0);
1378         Row const & row = getPitAndRowNearY(y, pit, assert_in_view, up);
1379         cur.pit() = pit;
1380
1381         // Do we cover an inset?
1382         InsetList::Element * e = checkInsetHit(pit, x, y);
1383
1384         if (!e) {
1385                 // No inset, set position in the text
1386                 bool bound = false; // is modified by getPosNearX
1387                 cur.pos() = getPosNearX(row, x, bound);
1388                 cur.boundary(bound);
1389                 cur.setCurrentFont();
1390                 cur.setTargetX(x);
1391                 return 0;
1392         }
1393
1394         Inset * inset = e->inset;
1395         //lyxerr << "inset " << inset << " hit at x: " << x << " y: " << y << endl;
1396
1397         // Set position in front of inset
1398         cur.pos() = e->pos;
1399         cur.boundary(false);
1400         cur.setTargetX(x);
1401
1402         // Try to descend recursively inside the inset.
1403         Inset * edited = inset->editXY(cur, x, y);
1404         // FIXME: it is not clear that the test on position is needed
1405         // Remove it if/when semantics of editXY is clarified
1406         if (cur.text() == text_ && cur.pos() == e->pos) {
1407                 // non-editable inset, set cursor after the inset if x is
1408                 // nearer to that position (bug 9628)
1409                 bool bound = false; // is modified by getPosNearX
1410                 cur.pos() = getPosNearX(row, x, bound);
1411                 cur.boundary(bound);
1412                 cur.setCurrentFont();
1413                 cur.setTargetX(x);
1414         }
1415
1416         if (cur.top().text() == text_)
1417                 cur.setCurrentFont();
1418         return edited;
1419 }
1420
1421
1422 void TextMetrics::setCursorFromCoordinates(Cursor & cur, int const x, int const y)
1423 {
1424         LASSERT(text_ == cur.text(), return);
1425         pit_type const pit = getPitNearY(y);
1426         LASSERT(pit != -1, return);
1427
1428         ParagraphMetrics const & pm = par_metrics_[pit];
1429
1430         int yy = pm.position() - pm.ascent();
1431         LYXERR(Debug::DEBUG, "x: " << x << " y: " << y <<
1432                 " pit: " << pit << " yy: " << yy);
1433
1434         int r = 0;
1435         LBUFERR(pm.rows().size());
1436         for (; r < int(pm.rows().size()) - 1; ++r) {
1437                 Row const & row = pm.rows()[r];
1438                 if (int(yy + row.height()) > y)
1439                         break;
1440                 yy += row.height();
1441         }
1442
1443         Row const & row = pm.rows()[r];
1444
1445         LYXERR(Debug::DEBUG, "row " << r << " from pos: " << row.pos());
1446
1447         bool bound = false;
1448         int xx = x;
1449         pos_type const pos = getPosNearX(row, xx, bound);
1450
1451         LYXERR(Debug::DEBUG, "setting cursor pit: " << pit << " pos: " << pos);
1452
1453         text_->setCursor(cur, pit, pos, true, bound);
1454         // remember new position.
1455         cur.setTargetX();
1456 }
1457
1458
1459 //takes screen x,y coordinates
1460 InsetList::Element * TextMetrics::checkInsetHit(pit_type pit, int x, int y)
1461 {
1462         Paragraph const & par = text_->paragraphs()[pit];
1463         CoordCache::Insets const & insetCache = bv_->coordCache().getInsets();
1464
1465         LYXERR(Debug::DEBUG, "x: " << x << " y: " << y << "  pit: " << pit);
1466
1467         for (InsetList::Element const & e : par.insetList()) {
1468                 LYXERR(Debug::DEBUG, "examining inset " << e.inset);
1469
1470                 if (insetCache.covers(e.inset, x, y)) {
1471                         LYXERR(Debug::DEBUG, "Hit inset: " << e.inset);
1472                         return const_cast<InsetList::Element *>(&e);
1473                 }
1474         }
1475
1476         LYXERR(Debug::DEBUG, "No inset hit. ");
1477         return 0;
1478 }
1479
1480
1481 //takes screen x,y coordinates
1482 Inset * TextMetrics::checkInsetHit(int x, int y)
1483 {
1484         pit_type const pit = getPitNearY(y);
1485         LASSERT(pit != -1, return 0);
1486         InsetList::Element * e = checkInsetHit(pit, x, y);
1487
1488         if (!e)
1489                 return 0;
1490
1491         return e->inset;
1492 }
1493
1494
1495 int TextMetrics::cursorX(CursorSlice const & sl,
1496                 bool boundary) const
1497 {
1498         LASSERT(sl.text() == text_, return 0);
1499
1500         ParagraphMetrics const & pm = par_metrics_[sl.pit()];
1501         if (pm.rows().empty())
1502                 return 0;
1503         Row const & row = pm.getRow(sl.pos(), boundary);
1504         pos_type const pos = sl.pos();
1505
1506         double x = 0;
1507         row.findElement(pos, boundary, x);
1508         return int(x);
1509
1510 }
1511
1512
1513 int TextMetrics::cursorY(CursorSlice const & sl, bool boundary) const
1514 {
1515         //lyxerr << "TextMetrics::cursorY: boundary: " << boundary << endl;
1516         ParagraphMetrics const & pm = parMetrics(sl.pit());
1517         if (pm.rows().empty())
1518                 return 0;
1519
1520         int h = 0;
1521         h -= parMetrics(0).rows()[0].ascent();
1522         for (pit_type pit = 0; pit < sl.pit(); ++pit) {
1523                 h += parMetrics(pit).height();
1524         }
1525         int pos = sl.pos();
1526         if (pos && boundary)
1527                 --pos;
1528         size_t const rend = pm.pos2row(pos);
1529         for (size_t rit = 0; rit != rend; ++rit)
1530                 h += pm.rows()[rit].height();
1531         h += pm.rows()[rend].ascent();
1532         return h;
1533 }
1534
1535
1536 // the cursor set functions have a special mechanism. When they
1537 // realize you left an empty paragraph, they will delete it.
1538
1539 bool TextMetrics::cursorHome(Cursor & cur)
1540 {
1541         LASSERT(text_ == cur.text(), return false);
1542         ParagraphMetrics const & pm = par_metrics_[cur.pit()];
1543         Row const & row = pm.getRow(cur.pos(),cur.boundary());
1544         return text_->setCursor(cur, cur.pit(), row.pos());
1545 }
1546
1547
1548 bool TextMetrics::cursorEnd(Cursor & cur)
1549 {
1550         LASSERT(text_ == cur.text(), return false);
1551         // if not on the last row of the par, put the cursor before
1552         // the final space exept if I have a spanning inset or one string
1553         // is so long that we force a break.
1554         pos_type end = cur.textRow().endpos();
1555         if (end == 0)
1556                 // empty text, end-1 is no valid position
1557                 return false;
1558         bool boundary = false;
1559         if (end != cur.lastpos()) {
1560                 if (!cur.paragraph().isLineSeparator(end-1)
1561                     && !cur.paragraph().isNewline(end-1)
1562                     && !cur.paragraph().isEnvSeparator(end-1))
1563                         boundary = true;
1564                 else
1565                         --end;
1566         } else if (cur.paragraph().isEnvSeparator(end-1))
1567                 --end;
1568         return text_->setCursor(cur, cur.pit(), end, true, boundary);
1569 }
1570
1571
1572 void TextMetrics::deleteLineForward(Cursor & cur)
1573 {
1574         LASSERT(text_ == cur.text(), return);
1575         if (cur.lastpos() == 0) {
1576                 // Paragraph is empty, so we just go forward
1577                 text_->cursorForward(cur);
1578         } else {
1579                 cur.resetAnchor();
1580                 cur.selection(true); // to avoid deletion
1581                 cursorEnd(cur);
1582                 cur.setSelection();
1583                 // What is this test for ??? (JMarc)
1584                 if (!cur.selection())
1585                         text_->deleteWordForward(cur);
1586                 else
1587                         cap::cutSelection(cur, false);
1588                 cur.checkBufferStructure();
1589         }
1590 }
1591
1592
1593 int TextMetrics::leftMargin(pit_type pit) const
1594 {
1595         return leftMargin(pit, text_->paragraphs()[pit].size());
1596 }
1597
1598
1599 int TextMetrics::leftMargin(pit_type const pit, pos_type const pos) const
1600 {
1601         ParagraphList const & pars = text_->paragraphs();
1602
1603         LASSERT(pit >= 0, return 0);
1604         LASSERT(pit < int(pars.size()), return 0);
1605         Paragraph const & par = pars[pit];
1606         LASSERT(pos >= 0, return 0);
1607         LASSERT(pos <= par.size(), return 0);
1608         Buffer const & buffer = bv_->buffer();
1609         //lyxerr << "TextMetrics::leftMargin: pit: " << pit << " pos: " << pos << endl;
1610         DocumentClass const & tclass = buffer.params().documentClass();
1611         Layout const & layout = par.layout();
1612         FontMetrics const & bfm = theFontMetrics(buffer.params().getFont());
1613
1614         docstring parindent = layout.parindent;
1615
1616         int l_margin = 0;
1617
1618         if (text_->isMainText()) {
1619                 l_margin += bv_->leftMargin();
1620                 l_margin += bfm.signedWidth(tclass.leftmargin());
1621         }
1622
1623         int depth = par.getDepth();
1624         if (depth != 0) {
1625                 // find the next level paragraph
1626                 pit_type newpar = text_->outerHook(pit);
1627                 if (newpar != pit_type(pars.size())) {
1628                         if (pars[newpar].layout().isEnvironment()) {
1629                                 int nestmargin = depth * nestMargin();
1630                                 if (text_->isMainText())
1631                                         nestmargin += changebarMargin();
1632                                 l_margin = max(leftMargin(newpar), nestmargin);
1633                                 // Remove the parindent that has been added
1634                                 // if the paragraph was empty.
1635                                 if (pars[newpar].empty() &&
1636                                     buffer.params().paragraph_separation ==
1637                                     BufferParams::ParagraphIndentSeparation) {
1638                                         docstring pi = pars[newpar].layout().parindent;
1639                                         l_margin -= bfm.signedWidth(pi);
1640                                 }
1641                         }
1642                         if (tclass.isDefaultLayout(par.layout())
1643                             || tclass.isPlainLayout(par.layout())) {
1644                                 if (pars[newpar].params().noindent())
1645                                         parindent.erase();
1646                                 else
1647                                         parindent = pars[newpar].layout().parindent;
1648                         }
1649                 }
1650         }
1651
1652         // This happens after sections or environments in standard classes.
1653         // We have to check the previous layout at same depth.
1654         if (buffer.params().paragraph_separation ==
1655                         BufferParams::ParagraphSkipSeparation)
1656                 parindent.erase();
1657         else if (pit > 0 && pars[pit - 1].getDepth() >= par.getDepth()) {
1658                 pit_type prev = text_->depthHook(pit, par.getDepth());
1659                 if (par.layout() == pars[prev].layout()) {
1660                         if (prev != pit - 1
1661                             && pars[pit - 1].layout().nextnoindent)
1662                                 parindent.erase();
1663                 } else if (pars[prev].layout().nextnoindent)
1664                         parindent.erase();
1665         }
1666
1667         FontInfo const labelfont = text_->labelFont(par);
1668         FontMetrics const & lfm = theFontMetrics(labelfont);
1669
1670         switch (layout.margintype) {
1671         case MARGIN_DYNAMIC:
1672                 if (!layout.leftmargin.empty()) {
1673                         l_margin += bfm.signedWidth(layout.leftmargin);
1674                 }
1675                 if (!par.labelString().empty()) {
1676                         l_margin += lfm.signedWidth(layout.labelindent);
1677                         l_margin += lfm.width(par.labelString());
1678                         l_margin += lfm.width(layout.labelsep);
1679                 }
1680                 break;
1681
1682         case MARGIN_MANUAL: {
1683                 l_margin += lfm.signedWidth(layout.labelindent);
1684                 // The width of an empty par, even with manual label, should be 0
1685                 if (!par.empty() && pos >= par.beginOfBody()) {
1686                         if (!par.getLabelWidthString().empty()) {
1687                                 docstring labstr = par.getLabelWidthString();
1688                                 l_margin += lfm.width(labstr);
1689                                 l_margin += lfm.width(layout.labelsep);
1690                         }
1691                 }
1692                 break;
1693         }
1694
1695         case MARGIN_STATIC: {
1696                 l_margin += bfm.signedWidth(layout.leftmargin) * 4
1697                              / (par.getDepth() + 4);
1698                 break;
1699         }
1700
1701         case MARGIN_FIRST_DYNAMIC:
1702                 if (layout.labeltype == LABEL_MANUAL) {
1703                         // if we are at position 0, we are never in the body
1704                         if (pos > 0 && pos >= par.beginOfBody())
1705                                 l_margin += lfm.signedWidth(layout.leftmargin);
1706                         else
1707                                 l_margin += lfm.signedWidth(layout.labelindent);
1708                 } else if (pos != 0
1709                            // Special case to fix problems with
1710                            // theorems (JMarc)
1711                            || (layout.labeltype == LABEL_STATIC
1712                                && layout.latextype == LATEX_ENVIRONMENT
1713                                && !text_->isFirstInSequence(pit))) {
1714                         l_margin += lfm.signedWidth(layout.leftmargin);
1715                 } else if (!layout.labelIsAbove()) {
1716                         l_margin += lfm.signedWidth(layout.labelindent);
1717                         l_margin += lfm.width(layout.labelsep);
1718                         l_margin += lfm.width(par.labelString());
1719                 }
1720                 break;
1721
1722         case MARGIN_RIGHT_ADDRESS_BOX: {
1723 #if 0
1724                 // The left margin depends on the widest row in this paragraph.
1725                 // This code is wrong because it depends on the rows, but at the
1726                 // same time this function is used in redoParagraph to construct
1727                 // the rows.
1728                 ParagraphMetrics const & pm = par_metrics_[pit];
1729                 int minfill = max_width_;
1730                 for (row : pm.rows())
1731                         if (row.fill() < minfill)
1732                                 minfill = row.fill();
1733                 l_margin += bfm.signedWidth(layout.leftmargin);
1734                 l_margin += minfill;
1735 #endif
1736                 // also wrong, but much shorter.
1737                 l_margin += max_width_ / 2;
1738                 break;
1739         }
1740         }
1741
1742         if (!par.params().leftIndent().zero())
1743                 l_margin += par.params().leftIndent().inPixels(max_width_, lfm.em());
1744
1745         LyXAlignment align = par.getAlign();
1746
1747         // set the correct parindent
1748         if (pos == 0
1749             && (layout.labeltype == LABEL_NO_LABEL
1750                 || layout.labeltype == LABEL_ABOVE
1751                 || layout.labeltype == LABEL_CENTERED
1752                 || (layout.labeltype == LABEL_STATIC
1753                     && layout.latextype == LATEX_ENVIRONMENT
1754                     && !text_->isFirstInSequence(pit)))
1755             && (align == LYX_ALIGN_BLOCK || align == LYX_ALIGN_LEFT)
1756             && !par.params().noindent()
1757             // in some insets, paragraphs are never indented
1758             && !text_->inset().neverIndent()
1759             // display style insets are always centered, omit indentation
1760             && !(!par.empty()
1761                  && par.isInset(pos)
1762                  && par.getInset(pos)->display())
1763             && (!(tclass.isDefaultLayout(par.layout())
1764                 || tclass.isPlainLayout(par.layout()))
1765                 || buffer.params().paragraph_separation
1766                                 == BufferParams::ParagraphIndentSeparation)) {
1767                 /* use the parindent of the layout when the default
1768                  * indentation is used otherwise use the indentation set in
1769                  * the document settings
1770                  */
1771                 if (buffer.params().getParIndent().empty())
1772                         l_margin += bfm.signedWidth(parindent);
1773                 else
1774                         l_margin += buffer.params().getParIndent().inPixels(max_width_, bfm.em());
1775         }
1776
1777         return l_margin;
1778 }
1779
1780
1781 void TextMetrics::draw(PainterInfo & pi, int x, int y) const
1782 {
1783         if (par_metrics_.empty())
1784                 return;
1785
1786         origin_.x_ = x;
1787         origin_.y_ = y;
1788
1789         y -= par_metrics_.begin()->second.ascent();
1790         for (auto & pm_pair : par_metrics_) {
1791                 pit_type const pit = pm_pair.first;
1792                 ParagraphMetrics & pm = pm_pair.second;
1793                 y += pm.ascent();
1794                 // Save the paragraph position in the cache.
1795                 pm.setPosition(y);
1796                 drawParagraph(pi, pit, x, y);
1797                 y += pm.descent();
1798         }
1799 }
1800
1801
1802 void TextMetrics::drawParagraph(PainterInfo & pi, pit_type const pit, int const x, int y) const
1803 {
1804         ParagraphMetrics const & pm = par_metrics_[pit];
1805         if (pm.rows().empty())
1806                 return;
1807         size_t const nrows = pm.rows().size();
1808
1809         // Use fast lane in nodraw stage.
1810         if (pi.pain.isNull()) {
1811                 for (size_t i = 0; i != nrows; ++i) {
1812
1813                         Row const & row = pm.rows()[i];
1814                         // Adapt to cursor row scroll offset if applicable.
1815                         int row_x = x - bv_->horizScrollOffset(text_, pit, row.pos());
1816                         if (i)
1817                                 y += row.ascent();
1818
1819                         RowPainter rp(pi, *text_, row, row_x, y);
1820
1821                         rp.paintOnlyInsets();
1822                         y += row.descent();
1823                 }
1824                 return;
1825         }
1826
1827         int const ww = bv_->workHeight();
1828         Cursor const & cur = bv_->cursor();
1829         DocIterator sel_beg = cur.selectionBegin();
1830         DocIterator sel_end = cur.selectionEnd();
1831         bool selection = cur.selection()
1832                 // This is our text.
1833                 && cur.text() == text_
1834                 // if the anchor is outside, this is not our selection
1835                 && cur.normalAnchor().text() == text_
1836                 && pit >= sel_beg.pit() && pit <= sel_end.pit();
1837
1838         // We store the begin and end pos of the selection relative to this par
1839         DocIterator sel_beg_par = cur.selectionBegin();
1840         DocIterator sel_end_par = cur.selectionEnd();
1841
1842         // We care only about visible selection.
1843         if (selection) {
1844                 if (pit != sel_beg.pit()) {
1845                         sel_beg_par.pit() = pit;
1846                         sel_beg_par.pos() = 0;
1847                 }
1848                 if (pit != sel_end.pit()) {
1849                         sel_end_par.pit() = pit;
1850                         sel_end_par.pos() = sel_end_par.lastpos();
1851                 }
1852         }
1853
1854         for (size_t i = 0; i != nrows; ++i) {
1855
1856                 Row const & row = pm.rows()[i];
1857                 // Adapt to cursor row scroll offset if applicable.
1858                 int row_x = x - bv_->horizScrollOffset(text_, pit, row.pos());
1859                 if (i)
1860                         y += row.ascent();
1861
1862                 // It is not needed to draw on screen if we are not inside.
1863                 bool const inside = (y + row.descent() >= 0
1864                         && y - row.ascent() < ww);
1865                 if (!inside) {
1866                         // Inset positions have already been set in nodraw stage.
1867                         y += row.descent();
1868                         continue;
1869                 }
1870
1871                 if (selection)
1872                         row.setSelectionAndMargins(sel_beg_par, sel_end_par);
1873                 else
1874                         row.clearSelectionAndMargins();
1875
1876                 // The row knows nothing about the paragraph, so we have to check
1877                 // whether this row is the first or last and update the margins.
1878                 if (row.selection()) {
1879                         if (row.sel_beg == 0)
1880                                 row.change(row.begin_margin_sel, sel_beg.pit() < pit);
1881                         if (row.sel_end == sel_end_par.lastpos())
1882                                 row.change(row.end_margin_sel, sel_end.pit() > pit);
1883                 }
1884
1885                 // Take this opportunity to spellcheck the row contents.
1886                 if (row.changed() && pi.do_spellcheck && lyxrc.spellcheck_continuously) {
1887                         text_->getPar(pit).spellCheck();
1888                 }
1889
1890                 RowPainter rp(pi, *text_, row, row_x, y);
1891
1892                 // Don't paint the row if a full repaint has not been requested
1893                 // and if it has not changed.
1894                 if (!pi.full_repaint && !row.changed()) {
1895                         // Paint only the insets if the text itself is
1896                         // unchanged.
1897                         rp.paintOnlyInsets();
1898                         row.changed(false);
1899                         y += row.descent();
1900                         continue;
1901                 }
1902
1903                 // Clear background of this row if paragraph background was not
1904                 // already cleared because of a full repaint.
1905                 if (!pi.full_repaint && row.changed()) {
1906                         LYXERR(Debug::PAINTING, "Clear rect@("
1907                                << max(row_x, 0) << ", " << y - row.ascent() << ")="
1908                                << width() << " x " << row.height());
1909                         // FIXME: this is a hack. We know that at least this
1910                         // amount of pixels can be cleared on right and left.
1911                         // Doing so gets rid of caret ghosts when the cursor is at
1912                         // the begining/end of row. However, it will not work if
1913                         // the caret has a ridiculous width like 6. (see ticket
1914                         // #10797)
1915                         pi.pain.fillRectangle(max(row_x, 0) - Inset::TEXT_TO_INSET_OFFSET,
1916                                               y - row.ascent(),
1917                                               width() + 2 * Inset::TEXT_TO_INSET_OFFSET,
1918                                               row.height(), pi.background_color);
1919                 }
1920
1921                 // Instrumentation for testing row cache (see also
1922                 // 12 lines lower):
1923                 if (lyxerr.debugging(Debug::PAINTING)
1924                     && (row.selection() || pi.full_repaint || row.changed())) {
1925                         string const foreword = text_->isMainText() ? "main text redraw "
1926                                 : "inset text redraw: ";
1927                         LYXERR0(foreword << "pit=" << pit << " row=" << i
1928                                 << (row.selection() ? " row_selection": "")
1929                                 << (pi.full_repaint ? " full_repaint" : "")
1930                                 << (row.changed() ? " row.changed" : ""));
1931                 }
1932
1933                 // Backup full_repaint status and force full repaint
1934                 // for inner insets as the Row has been cleared out.
1935                 bool tmp = pi.full_repaint;
1936                 pi.full_repaint = true;
1937
1938                 rp.paintSelection();
1939                 rp.paintAppendix();
1940                 rp.paintDepthBar();
1941                 if (row.needsChangeBar())
1942                         rp.paintChangeBar();
1943                 if (i == 0)
1944                         rp.paintFirst();
1945                 if (i == nrows - 1)
1946                         rp.paintLast();
1947                 rp.paintText();
1948                 rp.paintTooLargeMarks(row_x + row.left_x() < 0,
1949                                       row_x + row.right_x() > bv_->workWidth());
1950                 y += row.descent();
1951
1952 #if 0
1953                 // This debug code shows on screen which rows are repainted.
1954                 // FIXME: since the updates related to caret blinking restrict
1955                 // the painter to a small rectangle, the numbers are not
1956                 // updated when this happens. Change the code in
1957                 // GuiWorkArea::Private::show/hideCaret if this is important.
1958                 static int count = 0;
1959                 ++count;
1960                 FontInfo fi(sane_font);
1961                 fi.setSize(FONT_SIZE_TINY);
1962                 fi.setColor(Color_red);
1963                 pi.pain.text(row_x, y, convert<docstring>(count), fi);
1964 #endif
1965
1966                 // Restore full_repaint status.
1967                 pi.full_repaint = tmp;
1968
1969                 row.changed(false);
1970         }
1971
1972         //LYXERR(Debug::PAINTING, ".");
1973 }
1974
1975
1976 void TextMetrics::completionPosAndDim(Cursor const & cur, int & x, int & y,
1977         Dimension & dim) const
1978 {
1979         Cursor const & bvcur = cur.bv().cursor();
1980
1981         // get word in front of cursor
1982         docstring word = text_->previousWord(bvcur.top());
1983         DocIterator wordStart = bvcur;
1984         wordStart.pos() -= word.length();
1985
1986         // calculate dimensions of the word
1987         Row row;
1988         row.pit(bvcur.pit());
1989         row.pos(wordStart.pos());
1990         row.endpos(bvcur.pos());
1991         setRowHeight(row);
1992         dim = row.dim();
1993
1994         // get position on screen of the word start and end
1995         //FIXME: Is it necessary to explicitly set this to false?
1996         wordStart.boundary(false);
1997         Point lxy = cur.bv().getPos(wordStart);
1998         Point rxy = cur.bv().getPos(bvcur);
1999         dim.wid = abs(rxy.x_ - lxy.x_);
2000
2001         // calculate position of word
2002         y = lxy.y_;
2003         x = min(rxy.x_, lxy.x_);
2004
2005         //lyxerr << "wid=" << dim.width() << " x=" << x << " y=" << y << " lxy.x_=" << lxy.x_ << " rxy.x_=" << rxy.x_ << " word=" << word << std::endl;
2006         //lyxerr << " wordstart=" << wordStart << " bvcur=" << bvcur << " cur=" << cur << std::endl;
2007 }
2008
2009 int defaultRowHeight()
2010 {
2011         FontMetrics const & fm = theFontMetrics(sane_font);
2012         return support::iround(fm.maxHeight() * (1 + extra_leading) + fm.leading());
2013 }
2014
2015 } // namespace lyx