]> git.lyx.org Git - lyx.git/blob - src/TextMetrics.cpp
Bulk cleanup/fix incorrect annotation at the end of namespaces.
[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                         break;
646                 case LYX_ALIGN_RIGHT:
647                         if (Inset const * inset = par.getInset(row.pos())) {
648                                 int const new_w = max(w - inset->indent(*bv_), 0);
649                                 row.left_margin += new_w;
650                                 row.dimension().wid += new_w;
651                         } else {
652                                 row.left_margin += w;
653                                 row.dimension().wid += w;
654                         }
655                         break;
656                 case LYX_ALIGN_CENTER:
657                         row.dimension().wid += w / 2;
658                         row.left_margin += w / 2;
659                         break;
660                 case LYX_ALIGN_NONE:
661                 case LYX_ALIGN_LAYOUT:
662                 case LYX_ALIGN_SPECIAL:
663                 case LYX_ALIGN_DECIMAL:
664                         break;
665                 }
666                 return;
667         }
668
669         // Case nh > 0. There are hfill separators.
670         hfill = w / nh;
671         hfill_rem = w % nh;
672         row.dimension().wid += w;
673         // Set size of hfill insets
674         pos_type const endpos = row.endpos();
675         pos_type body_pos = par.beginOfBody();
676         if (body_pos > 0
677             && (body_pos > endpos || !par.isLineSeparator(body_pos - 1)))
678                 body_pos = 0;
679
680         CoordCache::Insets & insetCache = bv_->coordCache().insets();
681         Row::iterator cit = row.begin();
682         Row::iterator const cend = row.end();
683         for ( ; cit != cend; ++cit) {
684                 if (row.label_hfill && cit->endpos == body_pos
685                     && cit->type == Row::SPACE)
686                         cit->dim.wid -= int(row.label_hfill * (nlh - 1));
687                 if (cit->inset && pm.hfillExpansion(row, cit->pos)) {
688                         if (cit->pos >= body_pos) {
689                                 cit->dim.wid += hfill;
690                                 --nh;
691                                 if (nh == 0)
692                                         cit->dim.wid += hfill_rem;
693                         } else
694                                 cit->dim.wid += int(row.label_hfill);
695                         // Cache the inset dimension.
696                         insetCache.add(cit->inset, cit->dim);
697                 }
698         }
699 }
700
701
702 int TextMetrics::labelFill(Row const & row) const
703 {
704         Paragraph const & par = text_->getPar(row.pit());
705         LBUFERR(par.beginOfBody() > 0 || par.isEnvSeparator(0));
706
707         int w = 0;
708         Row::const_iterator cit = row.begin();
709         Row::const_iterator const end = row.end();
710         // iterate over elements before main body (except the last one,
711         // which is extra space).
712         while (cit!= end && cit->endpos < par.beginOfBody()) {
713                 w += cit->dim.wid;
714                 ++cit;
715         }
716
717         docstring const & label = par.params().labelWidthString();
718         if (label.empty())
719                 return 0;
720
721         FontMetrics const & fm
722                 = theFontMetrics(text_->labelFont(par));
723
724         return max(0, fm.width(label) - w);
725 }
726
727
728 #if 0
729 // Not used, see TextMetrics::breakRow
730 // this needs special handling - only newlines count as a break point
731 static pos_type addressBreakPoint(pos_type i, Paragraph const & par)
732 {
733         pos_type const end = par.size();
734
735         for (; i < end; ++i)
736                 if (par.isNewline(i))
737                         return i + 1;
738
739         return end;
740 }
741 #endif
742
743
744 int TextMetrics::labelEnd(pit_type const pit) const
745 {
746         // labelEnd is only needed if the layout fills a flushleft label.
747         if (text_->getPar(pit).layout().margintype != MARGIN_MANUAL)
748                 return 0;
749         // return the beginning of the body
750         return leftMargin(pit);
751 }
752
753 namespace {
754
755 /**
756  * Calling Text::getFont is slow. While rebreaking we scan a
757  * paragraph from left to right calling getFont for every char.  This
758  * simple class address this problem by hidding an optimization trick
759  * (not mine btw -AB): the font is reused in the whole font span.  The
760  * class handles transparently the "hidden" (not part of the fontlist)
761  * label font (as getFont does).
762  **/
763 class FontIterator
764 {
765 public:
766         ///
767         FontIterator(TextMetrics const & tm,
768                 Paragraph const & par, pit_type pit, pos_type pos)
769                 : tm_(tm), par_(par), pit_(pit), pos_(pos),
770                 font_(tm.displayFont(pit, pos)),
771                 endspan_(par.fontSpan(pos).last),
772                 bodypos_(par.beginOfBody())
773         {}
774
775         ///
776         Font const & operator*() const { return font_; }
777
778         ///
779         FontIterator & operator++()
780         {
781                 ++pos_;
782                 if (pos_ < par_.size() && (pos_ > endspan_ || pos_ == bodypos_)) {
783                         font_ = tm_.displayFont(pit_, pos_);
784                         endspan_ = par_.fontSpan(pos_).last;
785                 }
786                 return *this;
787         }
788
789         ///
790         Font * operator->() { return &font_; }
791
792 private:
793         ///
794         TextMetrics const & tm_;
795         ///
796         Paragraph const & par_;
797         ///
798         pit_type pit_;
799         ///
800         pos_type pos_;
801         ///
802         Font font_;
803         ///
804         pos_type endspan_;
805         ///
806         pos_type bodypos_;
807 };
808
809 } // namespace
810
811 /** This is the function where the hard work is done. The code here is
812  * very sensitive to small changes :) Note that part of the
813  * intelligence is also in Row::shortenIfNeeded.
814  */
815 bool TextMetrics::breakRow(Row & row, int const right_margin) const
816 {
817         Paragraph const & par = text_->getPar(row.pit());
818         pos_type const end = par.size();
819         pos_type const pos = row.pos();
820         pos_type const body_pos = par.beginOfBody();
821         bool const is_rtl = text_->isRTL(par);
822         bool need_new_row = false;
823
824         row.clear();
825         row.left_margin = leftMargin(row.pit(), pos);
826         row.right_margin = right_margin;
827         if (is_rtl)
828                 swap(row.left_margin, row.right_margin);
829         // Remember that the row width takes into account the left_margin
830         // but not the right_margin.
831         row.dimension().wid = row.left_margin;
832         // the width available for the row.
833         int const width = max_width_ - row.right_margin;
834
835         if (pos >= end || row.width() > width) {
836                 row.endpos(end);
837                 return need_new_row;
838         }
839
840 #if 0
841         //FIXME: As long as leftMargin() is not correctly implemented for
842         // MARGIN_RIGHT_ADDRESS_BOX, we should also not do this here.
843         // Otherwise, long rows will be painted off the screen.
844         if (par.layout().margintype == MARGIN_RIGHT_ADDRESS_BOX)
845                 return addressBreakPoint(pos, par);
846 #endif
847
848         // check for possible inline completion
849         DocIterator const & ic_it = bv_->inlineCompletionPos();
850         pos_type ic_pos = -1;
851         if (ic_it.inTexted() && ic_it.text() == text_ && ic_it.pit() == row.pit())
852                 ic_pos = ic_it.pos();
853
854         // Now we iterate through until we reach the right margin
855         // or the end of the par, then build a representation of the row.
856         pos_type i = pos;
857         FontIterator fi = FontIterator(*this, par, row.pit(), pos);
858         do {
859                 // this can happen for an empty row after a newline
860                 if (i >= end)
861                         break;
862                 char_type c = par.getChar(i);
863                 // The most special cases are handled first.
864                 if (par.isInset(i)) {
865                         Inset const * ins = par.getInset(i);
866                         Dimension dim = bv_->coordCache().insets().dim(ins);
867                         row.add(i, ins, dim, *fi, par.lookupChange(i));
868                 } else if (c == ' ' && i + 1 == body_pos) {
869                         // There is a space at i, but it should not be
870                         // added as a separator, because it is just
871                         // before body_pos. Instead, insert some spacing to
872                         // align text
873                         FontMetrics const & fm = theFontMetrics(text_->labelFont(par));
874                         // this is needed to make sure that the row width is correct
875                         row.finalizeLast();
876                         int const add = max(fm.width(par.layout().labelsep),
877                                             labelEnd(row.pit()) - row.width());
878                         row.addSpace(i, add, *fi, par.lookupChange(i));
879                 } else if (c == '\t')
880                         row.addSpace(i, theFontMetrics(*fi).width(from_ascii("    ")),
881                                      *fi, par.lookupChange(i));
882                 else if (c == 0x2028 || c == 0x2029) {
883                         /**
884                          * U+2028 LINE SEPARATOR
885                          * U+2029 PARAGRAPH SEPARATOR
886
887                          * These are special unicode characters that break
888                          * lines/pragraphs. Not handling them lead to trouble wrt
889                          * Qt QTextLayout formatting. We add a visible character
890                          * on screen so that the user can see that something is
891                          * happening.
892                         */
893                         row.finalizeLast();
894                         // ⤶ U+2936 ARROW POINTING DOWNWARDS THEN CURVING LEFTWARDS
895                         // ¶ U+00B6 PILCROW SIGN
896                         char_type const screen_char = (c == 0x2028) ? 0x2936 : 0x00B6;
897                         row.add(i, screen_char, *fi, par.lookupChange(i));
898                 } else {
899                         // FIXME: please someone fix the Hebrew/Arabic parenthesis mess!
900                         // see also Paragraph::getUChar.
901                         if (fi->language()->lang() == "hebrew") {
902                                 if (c == '(')
903                                         c = ')';
904                                 else if (c == ')')
905                                         c = '(';
906                         }
907                         row.add(i, c, *fi, par.lookupChange(i));
908                 }
909
910                 // add inline completion width
911                 // draw logically behind the previous character
912                 if (ic_pos == i + 1 && !bv_->inlineCompletion().empty()) {
913                         docstring const comp = bv_->inlineCompletion();
914                         size_t const uniqueTo =bv_->inlineCompletionUniqueChars();
915                         Font f = *fi;
916
917                         if (uniqueTo > 0) {
918                                 f.fontInfo().setColor(Color_inlinecompletion);
919                                 row.addVirtual(i + 1, comp.substr(0, uniqueTo), f, Change());
920                         }
921                         f.fontInfo().setColor(Color_nonunique_inlinecompletion);
922                         row.addVirtual(i + 1, comp.substr(uniqueTo), f, Change());
923                 }
924
925                 // Handle some situations that abruptly terminate the row
926                 // - A newline inset
927                 // - Before a display inset
928                 // - After a display inset
929                 Inset const * inset = 0;
930                 if (par.isNewline(i) || par.isEnvSeparator(i)
931                     || (i + 1 < end && (inset = par.getInset(i + 1))
932                         && inset->display())
933                     || (!row.empty() && row.back().inset
934                         && row.back().inset->display())) {
935                         row.flushed(true);
936                         need_new_row = par.isNewline(i);
937                         ++i;
938                         break;
939                 }
940
941                 ++i;
942                 ++fi;
943         } while (i < end && row.width() <= width);
944         row.finalizeLast();
945         row.endpos(i);
946
947         // End of paragraph marker. The logic here is almost the
948         // same as in redoParagraph, remember keep them in sync.
949         ParagraphList const & pars = text_->paragraphs();
950         if (lyxrc.paragraph_markers && !need_new_row
951             && i == end && size_type(row.pit() + 1) < pars.size()) {
952                 // add a virtual element for the end-of-paragraph
953                 // marker; it is shown on screen, but does not exist
954                 // in the paragraph.
955                 Font f(text_->layoutFont(row.pit()));
956                 f.fontInfo().setColor(Color_paragraphmarker);
957                 BufferParams const & bparams
958                         = text_->inset().buffer().params();
959                 f.setLanguage(par.getParLanguage(bparams));
960                 // ¶ U+00B6 PILCROW SIGN
961                 row.addVirtual(end, docstring(1, char_type(0x00B6)), f, Change());
962         }
963
964         // if the row is too large, try to cut at last separator. In case
965         // of success, reset indication that the row was broken abruptly.
966         int const next_width = max_width_ - leftMargin(row.pit(), row.endpos())
967                 - rightMargin(row.pit());
968
969         row.shortenIfNeeded(body_pos, width, next_width);
970         row.right_boundary(!row.empty() && row.endpos() < end
971                            && row.back().endpos == row.endpos());
972         // Last row in paragraph is flushed
973         if (row.endpos() == end)
974                 row.flushed(true);
975
976         // make sure that the RTL elements are in reverse ordering
977         row.reverseRTL(is_rtl);
978         //LYXERR0("breakrow: row is " << row);
979
980         return need_new_row;
981 }
982
983 int TextMetrics::parTopSpacing(pit_type const pit) const
984 {
985         Paragraph const & par = text_->getPar(pit);
986         Layout const & layout = par.layout();
987
988         int asc = 0;
989         ParagraphList const & pars = text_->paragraphs();
990         double const dh = defaultRowHeight();
991
992         BufferParams const & bparams = bv_->buffer().params();
993         Inset const & inset = text_->inset();
994         // some parskips VERY EASY IMPLEMENTATION
995         if (bparams.paragraph_separation == BufferParams::ParagraphSkipSeparation
996                 && !inset.getLayout().parbreakIsNewline()
997                 && !par.layout().parbreak_is_newline
998                 && pit > 0
999                 && ((layout.isParagraph() && par.getDepth() == 0)
1000                     || (pars[pit - 1].layout().isParagraph()
1001                         && pars[pit - 1].getDepth() == 0))) {
1002                 asc += bparams.getDefSkip().inPixels(*bv_);
1003         }
1004
1005         if (par.params().startOfAppendix())
1006                 asc += int(3 * dh);
1007
1008         // special code for the top label
1009         if (layout.labelIsAbove()
1010             && (!layout.isParagraphGroup() || text_->isFirstInSequence(pit))
1011             && !par.labelString().empty()) {
1012                 FontInfo labelfont = text_->labelFont(par);
1013                 FontMetrics const & lfm = theFontMetrics(labelfont);
1014                 asc += int(lfm.maxHeight() * layout.spacing.getValue()
1015                                            * text_->spacing(par)
1016                            + (layout.topsep + layout.labelbottomsep) * dh);
1017         }
1018
1019         // Add the layout spaces, for example before and after
1020         // a section, or between the items of a itemize or enumerate
1021         // environment.
1022
1023         pit_type prev = text_->depthHook(pit, par.getDepth());
1024         Paragraph const & prevpar = pars[prev];
1025         double layoutasc = 0;
1026         if (prev != pit
1027             && prevpar.layout() == layout
1028             && prevpar.getDepth() == par.getDepth()
1029             && prevpar.getLabelWidthString() == par.getLabelWidthString()) {
1030                 layoutasc = layout.itemsep * dh;
1031         } else if (pit != 0 && layout.topsep > 0)
1032                 layoutasc = layout.topsep * dh;
1033
1034         asc += int(layoutasc * 2 / (2 + pars[pit].getDepth()));
1035
1036         prev = text_->outerHook(pit);
1037         if (prev != pit_type(pars.size())) {
1038                 asc += int(pars[prev].layout().parsep * dh);
1039         } else if (pit != 0) {
1040                 Paragraph const & prevpar = pars[pit - 1];
1041                 if (prevpar.getDepth() != 0 || prevpar.layout() == layout)
1042                         asc += int(layout.parsep * dh);
1043         }
1044
1045         return asc;
1046 }
1047
1048
1049 int TextMetrics::parBottomSpacing(pit_type const pit) const
1050 {
1051         double layoutdesc = 0;
1052         ParagraphList const & pars = text_->paragraphs();
1053         double const dh = defaultRowHeight();
1054
1055         // add the layout spaces, for example before and after
1056         // a section, or between the items of a itemize or enumerate
1057         // environment
1058         pit_type nextpit = pit + 1;
1059         if (nextpit != pit_type(pars.size())) {
1060                 pit_type cpit = pit;
1061
1062                 if (pars[cpit].getDepth() > pars[nextpit].getDepth()) {
1063                         double usual = pars[cpit].layout().bottomsep * dh;
1064                         double unusual = 0;
1065                         cpit = text_->depthHook(cpit, pars[nextpit].getDepth());
1066                         if (pars[cpit].layout() != pars[nextpit].layout()
1067                                 || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
1068                                 unusual = pars[cpit].layout().bottomsep * dh;
1069                         layoutdesc = max(unusual, usual);
1070                 } else if (pars[cpit].getDepth() == pars[nextpit].getDepth()) {
1071                         if (pars[cpit].layout() != pars[nextpit].layout()
1072                                 || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
1073                                 layoutdesc = int(pars[cpit].layout().bottomsep * dh);
1074                 }
1075         }
1076
1077         return int(layoutdesc * 2 / (2 + pars[pit].getDepth()));
1078 }
1079
1080
1081 void TextMetrics::setRowHeight(Row & row) const
1082 {
1083         Paragraph const & par = text_->getPar(row.pit());
1084         Layout const & layout = par.layout();
1085         double const spacing_val = layout.spacing.getValue() * text_->spacing(par);
1086
1087         // Initial value for ascent (useful if row is empty).
1088         Font const font = displayFont(row.pit(), row.pos());
1089         FontMetrics const & fm = theFontMetrics(font);
1090         int maxasc = int(fm.maxAscent() * spacing_val);
1091         int maxdes = int(fm.maxDescent() * spacing_val);
1092
1093         // Find the ascent/descent of the row contents
1094         Row::const_iterator cit = row.begin();
1095         Row::const_iterator cend = row.end();
1096         for ( ; cit != cend; ++cit) {
1097                 if (cit->inset) {
1098                         maxasc = max(maxasc, cit->dim.ascent());
1099                         maxdes = max(maxdes, cit->dim.descent());
1100                 } else {
1101                         FontMetrics const & fm = theFontMetrics(cit->font);
1102                         maxasc = max(maxasc, int(fm.maxAscent() * spacing_val));
1103                         maxdes = max(maxdes, int(fm.maxDescent() * spacing_val));
1104                 }
1105         }
1106
1107         // This is nicer with box insets
1108         ++maxasc;
1109         ++maxdes;
1110
1111         row.dimension().asc = maxasc;
1112         row.dimension().des = maxdes;
1113 }
1114
1115
1116 // x is an absolute screen coord
1117 // returns the column near the specified x-coordinate of the row
1118 // x is set to the real beginning of this column
1119 pos_type TextMetrics::getPosNearX(Row const & row, int & x,
1120                                   bool & boundary) const
1121 {
1122         //LYXERR0("getPosNearX(" << x << ") row=" << row);
1123         /// For the main Text, it is possible that this pit is not
1124         /// yet in the CoordCache when moving cursor up.
1125         /// x Paragraph coordinate is always 0 for main text anyway.
1126         int const xo = origin_.x_;
1127         x -= xo;
1128
1129         // Adapt to cursor row scroll offset if applicable.
1130         int const offset = bv_->horizScrollOffset(text_, row.pit(), row.pos());
1131         x += offset;
1132
1133         pos_type pos = row.pos();
1134         boundary = false;
1135         if (row.empty())
1136                 x = row.left_margin;
1137         else if (x <= row.left_margin) {
1138                 pos = row.front().left_pos();
1139                 x = row.left_margin;
1140         } else if (x >= row.width()) {
1141                 pos = row.back().right_pos();
1142                 x = row.width();
1143         } else {
1144                 double w = row.left_margin;
1145                 Row::const_iterator cit = row.begin();
1146                 Row::const_iterator cend = row.end();
1147                 for ( ; cit != cend; ++cit) {
1148                         if (w <= x &&  w + cit->full_width() > x) {
1149                                 int x_offset = int(x - w);
1150                                 pos = cit->x2pos(x_offset);
1151                                 x = int(x_offset + w);
1152                                 break;
1153                         }
1154                         w += cit->full_width();
1155                 }
1156                 if (cit == row.end()) {
1157                         pos = row.back().right_pos();
1158                         x = row.width();
1159                 }
1160                 /** This tests for the case where the cursor is placed
1161                  * just before a font direction change. See comment on
1162                  * the boundary_ member in DocIterator.h to understand
1163                  * how boundary helps here.
1164                  */
1165                 else if (pos == cit->endpos
1166                          && ((!cit->isRTL() && cit + 1 != row.end()
1167                               && (cit + 1)->isRTL())
1168                              || (cit->isRTL() && cit != row.begin()
1169                                  && !(cit - 1)->isRTL())))
1170                         boundary = true;
1171         }
1172
1173         /** This tests for the case where the cursor is set at the end
1174          * of a row which has been broken due something else than a
1175          * separator (a display inset or a forced breaking of the
1176          * row). We know that there is a separator when the end of the
1177          * row is larger than the end of its last element.
1178          */
1179         if (!row.empty() && pos == row.back().endpos
1180             && row.back().endpos == row.endpos()) {
1181                 Inset const * inset = row.back().inset;
1182                 if (inset && (inset->lyxCode() == NEWLINE_CODE
1183                               || inset->lyxCode() == SEPARATOR_CODE))
1184                         pos = row.back().pos;
1185                 else
1186                         boundary = row.right_boundary();
1187         }
1188
1189         x += xo - offset;
1190         //LYXERR0("getPosNearX ==> pos=" << pos << ", boundary=" << boundary);
1191
1192         return pos;
1193 }
1194
1195
1196 pos_type TextMetrics::x2pos(pit_type pit, int row, int x) const
1197 {
1198         // We play safe and use parMetrics(pit) to make sure the
1199         // ParagraphMetrics will be redone and OK to use if needed.
1200         // Otherwise we would use an empty ParagraphMetrics in
1201         // upDownInText() while in selection mode.
1202         ParagraphMetrics const & pm = parMetrics(pit);
1203
1204         LBUFERR(row < int(pm.rows().size()));
1205         bool bound = false;
1206         Row const & r = pm.rows()[row];
1207         return getPosNearX(r, x, bound);
1208 }
1209
1210
1211 void TextMetrics::newParMetricsDown()
1212 {
1213         pair<pit_type, ParagraphMetrics> const & last = *par_metrics_.rbegin();
1214         pit_type const pit = last.first + 1;
1215         if (pit == int(text_->paragraphs().size()))
1216                 return;
1217
1218         // do it and update its position.
1219         redoParagraph(pit);
1220         par_metrics_[pit].setPosition(last.second.position()
1221                 + last.second.descent() + par_metrics_[pit].ascent());
1222 }
1223
1224
1225 void TextMetrics::newParMetricsUp()
1226 {
1227         pair<pit_type, ParagraphMetrics> const & first = *par_metrics_.begin();
1228         if (first.first == 0)
1229                 return;
1230
1231         pit_type const pit = first.first - 1;
1232         // do it and update its position.
1233         redoParagraph(pit);
1234         par_metrics_[pit].setPosition(first.second.position()
1235                 - first.second.ascent() - par_metrics_[pit].descent());
1236 }
1237
1238 // y is screen coordinate
1239 pit_type TextMetrics::getPitNearY(int y)
1240 {
1241         LASSERT(!text_->paragraphs().empty(), return -1);
1242         LASSERT(!par_metrics_.empty(), return -1);
1243         LYXERR(Debug::DEBUG, "y: " << y << " cache size: " << par_metrics_.size());
1244
1245         // look for highest numbered paragraph with y coordinate less than given y
1246         pit_type pit = -1;
1247         int yy = -1;
1248         ParMetricsCache::const_iterator it = par_metrics_.begin();
1249         ParMetricsCache::const_iterator et = par_metrics_.end();
1250         ParMetricsCache::const_iterator last = et;
1251         --last;
1252
1253         ParagraphMetrics const & pm = it->second;
1254
1255         if (y < it->second.position() - int(pm.ascent())) {
1256                 // We are looking for a position that is before the first paragraph in
1257                 // the cache (which is in priciple off-screen, that is before the
1258                 // visible part.
1259                 if (it->first == 0)
1260                         // We are already at the first paragraph in the inset.
1261                         return 0;
1262                 // OK, this is the paragraph we are looking for.
1263                 pit = it->first - 1;
1264                 newParMetricsUp();
1265                 return pit;
1266         }
1267
1268         ParagraphMetrics const & pm_last = par_metrics_[last->first];
1269
1270         if (y >= last->second.position() + int(pm_last.descent())) {
1271                 // We are looking for a position that is after the last paragraph in
1272                 // the cache (which is in priciple off-screen), that is before the
1273                 // visible part.
1274                 pit = last->first + 1;
1275                 if (pit == int(text_->paragraphs().size()))
1276                         //  We are already at the last paragraph in the inset.
1277                         return last->first;
1278                 // OK, this is the paragraph we are looking for.
1279                 newParMetricsDown();
1280                 return pit;
1281         }
1282
1283         for (; it != et; ++it) {
1284                 LYXERR(Debug::DEBUG, "examining: pit: " << it->first
1285                         << " y: " << it->second.position());
1286
1287                 ParagraphMetrics const & pm = par_metrics_[it->first];
1288
1289                 if (it->first >= pit && int(it->second.position()) - int(pm.ascent()) <= y) {
1290                         pit = it->first;
1291                         yy = it->second.position();
1292                 }
1293         }
1294
1295         LYXERR(Debug::DEBUG, "found best y: " << yy << " for pit: " << pit);
1296
1297         return pit;
1298 }
1299
1300
1301 Row const & TextMetrics::getPitAndRowNearY(int & y, pit_type & pit,
1302         bool assert_in_view, bool up)
1303 {
1304         ParagraphMetrics const & pm = par_metrics_[pit];
1305
1306         int yy = pm.position() - pm.ascent();
1307         LBUFERR(!pm.rows().empty());
1308         RowList::const_iterator rit = pm.rows().begin();
1309         RowList::const_iterator rlast = pm.rows().end();
1310         --rlast;
1311         for (; rit != rlast; yy += rit->height(), ++rit)
1312                 if (yy + rit->height() > y)
1313                         break;
1314
1315         if (assert_in_view) {
1316                 if (!up && yy + rit->height() > y) {
1317                         if (rit != pm.rows().begin()) {
1318                                 y = yy;
1319                                 --rit;
1320                         } else if (pit != 0) {
1321                                 --pit;
1322                                 newParMetricsUp();
1323                                 ParagraphMetrics const & pm2 = par_metrics_[pit];
1324                                 rit = pm2.rows().end();
1325                                 --rit;
1326                                 y = yy;
1327                         }
1328                 } else if (up && yy != y) {
1329                         if (rit != rlast) {
1330                                 y = yy + rit->height();
1331                                 ++rit;
1332                         } else if (pit < int(text_->paragraphs().size()) - 1) {
1333                                 ++pit;
1334                                 newParMetricsDown();
1335                                 ParagraphMetrics const & pm2 = par_metrics_[pit];
1336                                 rit = pm2.rows().begin();
1337                                 y = pm2.position();
1338                         }
1339                 }
1340         }
1341         return *rit;
1342 }
1343
1344
1345 // x,y are absolute screen coordinates
1346 // sets cursor recursively descending into nested editable insets
1347 Inset * TextMetrics::editXY(Cursor & cur, int x, int y,
1348         bool assert_in_view, bool up)
1349 {
1350         if (lyxerr.debugging(Debug::WORKAREA)) {
1351                 LYXERR0("TextMetrics::editXY(cur, " << x << ", " << y << ")");
1352                 cur.bv().coordCache().dump();
1353         }
1354         pit_type pit = getPitNearY(y);
1355         LASSERT(pit != -1, return 0);
1356         Row const & row = getPitAndRowNearY(y, pit, assert_in_view, up);
1357         cur.pit() = pit;
1358
1359         // Do we cover an inset?
1360         InsetList::InsetTable * it = checkInsetHit(pit, x, y);
1361
1362         if (!it) {
1363                 // No inset, set position in the text
1364                 bool bound = false; // is modified by getPosNearX
1365                 cur.pos() = getPosNearX(row, x, bound);
1366                 cur.boundary(bound);
1367                 cur.setCurrentFont();
1368                 cur.setTargetX(x);
1369                 return 0;
1370         }
1371
1372         Inset * inset = it->inset;
1373         //lyxerr << "inset " << inset << " hit at x: " << x << " y: " << y << endl;
1374
1375         // Set position in front of inset
1376         cur.pos() = it->pos;
1377         cur.boundary(false);
1378         cur.setTargetX(x);
1379
1380         // Try to descend recursively inside the inset.
1381         Inset * edited = inset->editXY(cur, x, y);
1382         // FIXME: it is not clear that the test on position is needed
1383         // Remove it if/when semantics of editXY is clarified
1384         if (cur.text() == text_ && cur.pos() == it->pos) {
1385                 // non-editable inset, set cursor after the inset if x is
1386                 // nearer to that position (bug 9628)
1387                 bool bound = false; // is modified by getPosNearX
1388                 cur.pos() = getPosNearX(row, x, bound);
1389                 cur.boundary(bound);
1390                 cur.setCurrentFont();
1391                 cur.setTargetX(x);
1392         }
1393
1394         if (cur.top().text() == text_)
1395                 cur.setCurrentFont();
1396         return edited;
1397 }
1398
1399
1400 void TextMetrics::setCursorFromCoordinates(Cursor & cur, int const x, int const y)
1401 {
1402         LASSERT(text_ == cur.text(), return);
1403         pit_type const pit = getPitNearY(y);
1404         LASSERT(pit != -1, return);
1405
1406         ParagraphMetrics const & pm = par_metrics_[pit];
1407
1408         int yy = pm.position() - pm.ascent();
1409         LYXERR(Debug::DEBUG, "x: " << x << " y: " << y <<
1410                 " pit: " << pit << " yy: " << yy);
1411
1412         int r = 0;
1413         LBUFERR(pm.rows().size());
1414         for (; r < int(pm.rows().size()) - 1; ++r) {
1415                 Row const & row = pm.rows()[r];
1416                 if (int(yy + row.height()) > y)
1417                         break;
1418                 yy += row.height();
1419         }
1420
1421         Row const & row = pm.rows()[r];
1422
1423         LYXERR(Debug::DEBUG, "row " << r << " from pos: " << row.pos());
1424
1425         bool bound = false;
1426         int xx = x;
1427         pos_type const pos = getPosNearX(row, xx, bound);
1428
1429         LYXERR(Debug::DEBUG, "setting cursor pit: " << pit << " pos: " << pos);
1430
1431         text_->setCursor(cur, pit, pos, true, bound);
1432         // remember new position.
1433         cur.setTargetX();
1434 }
1435
1436
1437 //takes screen x,y coordinates
1438 InsetList::InsetTable * TextMetrics::checkInsetHit(pit_type pit, int x, int y)
1439 {
1440         Paragraph const & par = text_->paragraphs()[pit];
1441         CoordCache::Insets const & insetCache = bv_->coordCache().getInsets();
1442
1443         LYXERR(Debug::DEBUG, "x: " << x << " y: " << y << "  pit: " << pit);
1444
1445         for (auto const & it : par.insetList()) {
1446                 LYXERR(Debug::DEBUG, "examining inset " << it.inset);
1447
1448                 if (insetCache.covers(it.inset, x, y)) {
1449                         LYXERR(Debug::DEBUG, "Hit inset: " << it.inset);
1450                         return const_cast<InsetList::InsetTable *>(&it);
1451                 }
1452         }
1453
1454         LYXERR(Debug::DEBUG, "No inset hit. ");
1455         return 0;
1456 }
1457
1458
1459 //takes screen x,y coordinates
1460 Inset * TextMetrics::checkInsetHit(int x, int y)
1461 {
1462         pit_type const pit = getPitNearY(y);
1463         LASSERT(pit != -1, return 0);
1464         InsetList::InsetTable * it = checkInsetHit(pit, x, y);
1465
1466         if (!it)
1467                 return 0;
1468
1469         return it->inset;
1470 }
1471
1472
1473 int TextMetrics::cursorX(CursorSlice const & sl,
1474                 bool boundary) const
1475 {
1476         LASSERT(sl.text() == text_, return 0);
1477
1478         ParagraphMetrics const & pm = par_metrics_[sl.pit()];
1479         if (pm.rows().empty())
1480                 return 0;
1481         Row const & row = pm.getRow(sl.pos(), boundary);
1482         pos_type const pos = sl.pos();
1483
1484         double x = 0;
1485         row.findElement(pos, boundary, x);
1486         return int(x);
1487
1488 }
1489
1490
1491 int TextMetrics::cursorY(CursorSlice const & sl, bool boundary) const
1492 {
1493         //lyxerr << "TextMetrics::cursorY: boundary: " << boundary << endl;
1494         ParagraphMetrics const & pm = par_metrics_[sl.pit()];
1495         if (pm.rows().empty())
1496                 return 0;
1497
1498         int h = 0;
1499         h -= par_metrics_[0].rows()[0].ascent();
1500         for (pit_type pit = 0; pit < sl.pit(); ++pit) {
1501                 h += par_metrics_[pit].height();
1502         }
1503         int pos = sl.pos();
1504         if (pos && boundary)
1505                 --pos;
1506         size_t const rend = pm.pos2row(pos);
1507         for (size_t rit = 0; rit != rend; ++rit)
1508                 h += pm.rows()[rit].height();
1509         h += pm.rows()[rend].ascent();
1510         return h;
1511 }
1512
1513
1514 // the cursor set functions have a special mechanism. When they
1515 // realize you left an empty paragraph, they will delete it.
1516
1517 bool TextMetrics::cursorHome(Cursor & cur)
1518 {
1519         LASSERT(text_ == cur.text(), return false);
1520         ParagraphMetrics const & pm = par_metrics_[cur.pit()];
1521         Row const & row = pm.getRow(cur.pos(),cur.boundary());
1522         return text_->setCursor(cur, cur.pit(), row.pos());
1523 }
1524
1525
1526 bool TextMetrics::cursorEnd(Cursor & cur)
1527 {
1528         LASSERT(text_ == cur.text(), return false);
1529         // if not on the last row of the par, put the cursor before
1530         // the final space exept if I have a spanning inset or one string
1531         // is so long that we force a break.
1532         pos_type end = cur.textRow().endpos();
1533         if (end == 0)
1534                 // empty text, end-1 is no valid position
1535                 return false;
1536         bool boundary = false;
1537         if (end != cur.lastpos()) {
1538                 if (!cur.paragraph().isLineSeparator(end-1)
1539                     && !cur.paragraph().isNewline(end-1)
1540                     && !cur.paragraph().isEnvSeparator(end-1))
1541                         boundary = true;
1542                 else
1543                         --end;
1544         } else if (cur.paragraph().isEnvSeparator(end-1))
1545                 --end;
1546         return text_->setCursor(cur, cur.pit(), end, true, boundary);
1547 }
1548
1549
1550 void TextMetrics::deleteLineForward(Cursor & cur)
1551 {
1552         LASSERT(text_ == cur.text(), return);
1553         if (cur.lastpos() == 0) {
1554                 // Paragraph is empty, so we just go forward
1555                 text_->cursorForward(cur);
1556         } else {
1557                 cur.resetAnchor();
1558                 cur.selection(true); // to avoid deletion
1559                 cursorEnd(cur);
1560                 cur.setSelection();
1561                 // What is this test for ??? (JMarc)
1562                 if (!cur.selection())
1563                         text_->deleteWordForward(cur);
1564                 else
1565                         cap::cutSelection(cur, true, false);
1566                 cur.checkBufferStructure();
1567         }
1568 }
1569
1570
1571 bool TextMetrics::isLastRow(Row const & row) const
1572 {
1573         ParagraphList const & pars = text_->paragraphs();
1574         return row.endpos() >= pars[row.pit()].size()
1575                 && row.pit() + 1 == pit_type(pars.size());
1576 }
1577
1578
1579 bool TextMetrics::isFirstRow(Row const & row) const
1580 {
1581         return row.pos() == 0 && row.pit() == 0;
1582 }
1583
1584
1585 int TextMetrics::leftMargin(pit_type pit) const
1586 {
1587         return leftMargin(pit, text_->paragraphs()[pit].size());
1588 }
1589
1590
1591 int TextMetrics::leftMargin(pit_type const pit, pos_type const pos) const
1592 {
1593         ParagraphList const & pars = text_->paragraphs();
1594
1595         LASSERT(pit >= 0, return 0);
1596         LASSERT(pit < int(pars.size()), return 0);
1597         Paragraph const & par = pars[pit];
1598         LASSERT(pos >= 0, return 0);
1599         LASSERT(pos <= par.size(), return 0);
1600         Buffer const & buffer = bv_->buffer();
1601         //lyxerr << "TextMetrics::leftMargin: pit: " << pit << " pos: " << pos << endl;
1602         DocumentClass const & tclass = buffer.params().documentClass();
1603         Layout const & layout = par.layout();
1604         FontMetrics const & bfm = theFontMetrics(buffer.params().getFont());
1605
1606         docstring parindent = layout.parindent;
1607
1608         int l_margin = 0;
1609
1610         if (text_->isMainText())
1611                 l_margin += bv_->leftMargin();
1612
1613         l_margin += bfm.signedWidth(tclass.leftmargin());
1614
1615         int depth = par.getDepth();
1616         if (depth != 0) {
1617                 // find the next level paragraph
1618                 pit_type newpar = text_->outerHook(pit);
1619                 if (newpar != pit_type(pars.size())) {
1620                         if (pars[newpar].layout().isEnvironment()) {
1621                                 int nestmargin = depth * nestMargin();
1622                                 if (text_->isMainText())
1623                                         nestmargin += changebarMargin();
1624                                 l_margin = max(leftMargin(newpar), nestmargin);
1625                                 // Remove the parindent that has been added
1626                                 // if the paragraph was empty.
1627                                 if (pars[newpar].empty() &&
1628                                     buffer.params().paragraph_separation ==
1629                                     BufferParams::ParagraphIndentSeparation) {
1630                                         docstring pi = pars[newpar].layout().parindent;
1631                                         l_margin -= bfm.signedWidth(pi);
1632                                 }
1633                         }
1634                         if (tclass.isDefaultLayout(par.layout())
1635                             || tclass.isPlainLayout(par.layout())) {
1636                                 if (pars[newpar].params().noindent())
1637                                         parindent.erase();
1638                                 else
1639                                         parindent = pars[newpar].layout().parindent;
1640                         }
1641                 }
1642         }
1643
1644         // This happens after sections or environments in standard classes.
1645         // We have to check the previous layout at same depth.
1646         if (buffer.params().paragraph_separation ==
1647                         BufferParams::ParagraphSkipSeparation)
1648                 parindent.erase();
1649         else if (pit > 0 && pars[pit - 1].getDepth() >= par.getDepth()) {
1650                 pit_type prev = text_->depthHook(pit, par.getDepth());
1651                 if (par.layout() == pars[prev].layout()) {
1652                         if (prev != pit - 1
1653                             && pars[pit - 1].layout().nextnoindent)
1654                                 parindent.erase();
1655                 } else if (pars[prev].layout().nextnoindent)
1656                         parindent.erase();
1657         }
1658
1659         FontInfo const labelfont = text_->labelFont(par);
1660         FontMetrics const & lfm = theFontMetrics(labelfont);
1661
1662         switch (layout.margintype) {
1663         case MARGIN_DYNAMIC:
1664                 if (!layout.leftmargin.empty()) {
1665                         l_margin += bfm.signedWidth(layout.leftmargin);
1666                 }
1667                 if (!par.labelString().empty()) {
1668                         l_margin += lfm.signedWidth(layout.labelindent);
1669                         l_margin += lfm.width(par.labelString());
1670                         l_margin += lfm.width(layout.labelsep);
1671                 }
1672                 break;
1673
1674         case MARGIN_MANUAL: {
1675                 l_margin += lfm.signedWidth(layout.labelindent);
1676                 // The width of an empty par, even with manual label, should be 0
1677                 if (!par.empty() && pos >= par.beginOfBody()) {
1678                         if (!par.getLabelWidthString().empty()) {
1679                                 docstring labstr = par.getLabelWidthString();
1680                                 l_margin += lfm.width(labstr);
1681                                 l_margin += lfm.width(layout.labelsep);
1682                         }
1683                 }
1684                 break;
1685         }
1686
1687         case MARGIN_STATIC: {
1688                 l_margin += bfm.signedWidth(layout.leftmargin) * 4
1689                              / (par.getDepth() + 4);
1690                 break;
1691         }
1692
1693         case MARGIN_FIRST_DYNAMIC:
1694                 if (layout.labeltype == LABEL_MANUAL) {
1695                         // if we are at position 0, we are never in the body
1696                         if (pos > 0 && pos >= par.beginOfBody())
1697                                 l_margin += lfm.signedWidth(layout.leftmargin);
1698                         else
1699                                 l_margin += lfm.signedWidth(layout.labelindent);
1700                 } else if (pos != 0
1701                            // Special case to fix problems with
1702                            // theorems (JMarc)
1703                            || (layout.labeltype == LABEL_STATIC
1704                                && layout.latextype == LATEX_ENVIRONMENT
1705                                && !text_->isFirstInSequence(pit))) {
1706                         l_margin += lfm.signedWidth(layout.leftmargin);
1707                 } else if (!layout.labelIsAbove()) {
1708                         l_margin += lfm.signedWidth(layout.labelindent);
1709                         l_margin += lfm.width(layout.labelsep);
1710                         l_margin += lfm.width(par.labelString());
1711                 }
1712                 break;
1713
1714         case MARGIN_RIGHT_ADDRESS_BOX: {
1715 #if 0
1716                 // The left margin depends on the widest row in this paragraph.
1717                 // This code is wrong because it depends on the rows, but at the
1718                 // same time this function is used in redoParagraph to construct
1719                 // the rows.
1720                 ParagraphMetrics const & pm = par_metrics_[pit];
1721                 RowList::const_iterator rit = pm.rows().begin();
1722                 RowList::const_iterator end = pm.rows().end();
1723                 int minfill = max_width_;
1724                 for ( ; rit != end; ++rit)
1725                         if (rit->fill() < minfill)
1726                                 minfill = rit->fill();
1727                 l_margin += bfm.signedWidth(layout.leftmargin);
1728                 l_margin += minfill;
1729 #endif
1730                 // also wrong, but much shorter.
1731                 l_margin += max_width_ / 2;
1732                 break;
1733         }
1734         }
1735
1736         if (!par.params().leftIndent().zero())
1737                 l_margin += par.params().leftIndent().inPixels(max_width_, lfm.em());
1738
1739         LyXAlignment align = par.getAlign();
1740
1741         // set the correct parindent
1742         if (pos == 0
1743             && (layout.labeltype == LABEL_NO_LABEL
1744                 || layout.labeltype == LABEL_ABOVE
1745                 || layout.labeltype == LABEL_CENTERED
1746                 || (layout.labeltype == LABEL_STATIC
1747                     && layout.latextype == LATEX_ENVIRONMENT
1748                     && !text_->isFirstInSequence(pit)))
1749             && (align == LYX_ALIGN_BLOCK || align == LYX_ALIGN_LEFT)
1750             && !par.params().noindent()
1751             // in some insets, paragraphs are never indented
1752             && !text_->inset().neverIndent()
1753             // display style insets are always centered, omit indentation
1754             && !(!par.empty()
1755                  && par.isInset(pos)
1756                  && par.getInset(pos)->display())
1757             && (!(tclass.isDefaultLayout(par.layout())
1758                 || tclass.isPlainLayout(par.layout()))
1759                 || buffer.params().paragraph_separation
1760                                 == BufferParams::ParagraphIndentSeparation)) {
1761                 /* use the parindent of the layout when the default
1762                  * indentation is used otherwise use the indentation set in
1763                  * the document settings
1764                  */
1765                 if (buffer.params().getParIndent().empty())
1766                         l_margin += bfm.signedWidth(parindent);
1767                 else
1768                         l_margin += buffer.params().getParIndent().inPixels(max_width_, bfm.em());
1769         }
1770
1771         return l_margin;
1772 }
1773
1774
1775 void TextMetrics::draw(PainterInfo & pi, int x, int y) const
1776 {
1777         if (par_metrics_.empty())
1778                 return;
1779
1780         origin_.x_ = x;
1781         origin_.y_ = y;
1782
1783         ParMetricsCache::iterator it = par_metrics_.begin();
1784         ParMetricsCache::iterator const pm_end = par_metrics_.end();
1785         y -= it->second.ascent();
1786         for (; it != pm_end; ++it) {
1787                 ParagraphMetrics const & pmi = it->second;
1788                 y += pmi.ascent();
1789                 pit_type const pit = it->first;
1790                 // Save the paragraph position in the cache.
1791                 it->second.setPosition(y);
1792                 drawParagraph(pi, pit, x, y);
1793                 y += pmi.descent();
1794         }
1795 }
1796
1797
1798 void TextMetrics::drawParagraph(PainterInfo & pi, pit_type const pit, int const x, int y) const
1799 {
1800         ParagraphMetrics const & pm = par_metrics_[pit];
1801         if (pm.rows().empty())
1802                 return;
1803         size_t const nrows = pm.rows().size();
1804
1805         // Use fast lane when drawing is disabled.
1806         if (!pi.pain.isDrawingEnabled()) {
1807                 for (size_t i = 0; i != nrows; ++i) {
1808
1809                         Row const & row = pm.rows()[i];
1810                         // Adapt to cursor row scroll offset if applicable.
1811                         int row_x = x - bv_->horizScrollOffset(text_, pit, row.pos());
1812                         if (i)
1813                                 y += row.ascent();
1814
1815                         RowPainter rp(pi, *text_, row, row_x, y);
1816
1817                         rp.paintOnlyInsets();
1818                         y += row.descent();
1819                 }
1820                 return;
1821         }
1822
1823         int const ww = bv_->workHeight();
1824         Cursor const & cur = bv_->cursor();
1825         DocIterator sel_beg = cur.selectionBegin();
1826         DocIterator sel_end = cur.selectionEnd();
1827         bool selection = cur.selection()
1828                 // This is our text.
1829                 && cur.text() == text_
1830                 // if the anchor is outside, this is not our selection
1831                 && cur.normalAnchor().text() == text_
1832                 && pit >= sel_beg.pit() && pit <= sel_end.pit();
1833
1834         // We store the begin and end pos of the selection relative to this par
1835         DocIterator sel_beg_par = cur.selectionBegin();
1836         DocIterator sel_end_par = cur.selectionEnd();
1837
1838         // We care only about visible selection.
1839         if (selection) {
1840                 if (pit != sel_beg.pit()) {
1841                         sel_beg_par.pit() = pit;
1842                         sel_beg_par.pos() = 0;
1843                 }
1844                 if (pit != sel_end.pit()) {
1845                         sel_end_par.pit() = pit;
1846                         sel_end_par.pos() = sel_end_par.lastpos();
1847                 }
1848         }
1849
1850         for (size_t i = 0; i != nrows; ++i) {
1851
1852                 Row const & row = pm.rows()[i];
1853                 // Adapt to cursor row scroll offset if applicable.
1854                 int row_x = x - bv_->horizScrollOffset(text_, pit, row.pos());
1855                 if (i)
1856                         y += row.ascent();
1857
1858                 RowPainter rp(pi, *text_, row, row_x, y);
1859
1860                 // It is not needed to draw on screen if we are not inside.
1861                 bool const inside = (y + row.descent() >= 0
1862                         && y - row.ascent() < ww);
1863                 pi.pain.setDrawingEnabled(inside);
1864                 if (!inside) {
1865                         // Paint only the insets to set inset cache correctly
1866                         // FIXME: remove paintOnlyInsets when we know that positions
1867                         // have already been set.
1868                         rp.paintOnlyInsets();
1869                         y += row.descent();
1870                         continue;
1871                 }
1872
1873                 if (selection)
1874                         row.setSelectionAndMargins(sel_beg_par, sel_end_par);
1875                 else
1876                         row.setSelection(-1, -1);
1877
1878                 // The row knows nothing about the paragraph, so we have to check
1879                 // whether this row is the first or last and update the margins.
1880                 if (row.selection()) {
1881                         if (row.sel_beg == 0)
1882                                 row.begin_margin_sel = sel_beg.pit() < pit;
1883                         if (row.sel_end == sel_end_par.lastpos())
1884                                 row.end_margin_sel = sel_end.pit() > pit;
1885                 }
1886
1887                 // Row signature; has row changed since last paint?
1888                 row.setCrc(pm.computeRowSignature(row, *bv_));
1889                 bool row_has_changed = row.changed()
1890                         || bv_->hadHorizScrollOffset(text_, pit, row.pos());
1891
1892                 // Take this opportunity to spellcheck the row contents.
1893                 if (row_has_changed && pi.do_spellcheck && lyxrc.spellcheck_continuously) {
1894                         text_->getPar(pit).spellCheck();
1895                 }
1896
1897                 // Don't paint the row if a full repaint has not been requested
1898                 // and if it has not changed.
1899                 if (!pi.full_repaint && !row_has_changed) {
1900                         // Paint only the insets if the text itself is
1901                         // unchanged.
1902                         rp.paintOnlyInsets();
1903                         y += row.descent();
1904                         continue;
1905                 }
1906
1907                 // Clear background of this row if paragraph background was not
1908                 // already cleared because of a full repaint.
1909                 if (!pi.full_repaint && row_has_changed) {
1910                         LYXERR(Debug::PAINTING, "Clear rect@("
1911                                << max(row_x, 0) << ", " << y - row.ascent() << ")="
1912                                << width() << " x " << row.height());
1913                         pi.pain.fillRectangle(max(row_x, 0), y - row.ascent(),
1914                                 width(), row.height(), pi.background_color);
1915                 }
1916
1917                 // Instrumentation for testing row cache (see also
1918                 // 12 lines lower):
1919                 if (lyxerr.debugging(Debug::PAINTING)
1920                         && (row.selection() || pi.full_repaint || row_has_changed)) {
1921                                 string const foreword = text_->isMainText() ?
1922                                         "main text redraw " : "inset text redraw: ";
1923                         LYXERR(Debug::PAINTING, foreword << "pit=" << pit << " row=" << i
1924                                 << " row_selection="    << row.selection()
1925                                 << " full_repaint="     << pi.full_repaint
1926                                 << " row_has_changed="  << row_has_changed
1927                                 << " drawingEnabled=" << pi.pain.isDrawingEnabled());
1928                 }
1929
1930                 // Backup full_repaint status and force full repaint
1931                 // for inner insets as the Row has been cleared out.
1932                 bool tmp = pi.full_repaint;
1933                 pi.full_repaint = true;
1934
1935                 rp.paintSelection();
1936                 rp.paintAppendix();
1937                 rp.paintDepthBar();
1938                 rp.paintChangeBar();
1939                 if (i == 0 && !row.isRTL())
1940                         rp.paintFirst();
1941                 if (i == nrows - 1 && row.isRTL())
1942                         rp.paintLast();
1943                 rp.paintText();
1944                 if (i == nrows - 1 && !row.isRTL())
1945                         rp.paintLast();
1946                 if (i == 0 && row.isRTL())
1947                         rp.paintFirst();
1948                 rp.paintTooLargeMarks(row_x + row.left_x() < 0,
1949                                       row_x + row.right_x() > bv_->workWidth());
1950                 y += row.descent();
1951
1952                 // Restore full_repaint status.
1953                 pi.full_repaint = tmp;
1954         }
1955         // Re-enable screen drawing for future use of the painter.
1956         pi.pain.setDrawingEnabled(true);
1957
1958         //LYXERR(Debug::PAINTING, ".");
1959 }
1960
1961
1962 void TextMetrics::completionPosAndDim(Cursor const & cur, int & x, int & y,
1963         Dimension & dim) const
1964 {
1965         Cursor const & bvcur = cur.bv().cursor();
1966
1967         // get word in front of cursor
1968         docstring word = text_->previousWord(bvcur.top());
1969         DocIterator wordStart = bvcur;
1970         wordStart.pos() -= word.length();
1971
1972         // calculate dimensions of the word
1973         Row row;
1974         row.pit(bvcur.pit());
1975         row.pos(wordStart.pos());
1976         row.endpos(bvcur.pos());
1977         setRowHeight(row);
1978         dim = row.dimension();
1979
1980         // get position on screen of the word start and end
1981         //FIXME: Is it necessary to explicitly set this to false?
1982         wordStart.boundary(false);
1983         Point lxy = cur.bv().getPos(wordStart);
1984         Point rxy = cur.bv().getPos(bvcur);
1985         dim.wid = abs(rxy.x_ - lxy.x_);
1986
1987         // calculate position of word
1988         y = lxy.y_;
1989         x = min(rxy.x_, lxy.x_);
1990
1991         //lyxerr << "wid=" << dim.width() << " x=" << x << " y=" << y << " lxy.x_=" << lxy.x_ << " rxy.x_=" << rxy.x_ << " word=" << word << std::endl;
1992         //lyxerr << " wordstart=" << wordStart << " bvcur=" << bvcur << " cur=" << cur << std::endl;
1993 }
1994
1995 int defaultRowHeight()
1996 {
1997         return int(theFontMetrics(sane_font).maxHeight() *  1.2);
1998 }
1999
2000 } // namespace lyx