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