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