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