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