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