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