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