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