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