]> git.lyx.org Git - lyx.git/blob - src/TextMetrics.cpp
document my LFUN changes in the past
[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 "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.separator = 0;
517
518         Buffer & buffer = bv_->buffer();
519         Paragraph const & par = text_->getPar(pit);
520
521         double w = width - row.width();
522         // FIXME: put back this assertion when the crash on new doc is solved.
523         //BOOST_ASSERT(w >= 0);
524
525         //lyxerr << "\ndim_.wid " << dim_.wid << endl;
526         //lyxerr << "row.width() " << row.width() << endl;
527         //lyxerr << "w " << w << endl;
528
529         bool const is_rtl = text_->isRTL(buffer, par);
530         if (is_rtl)
531                 row.x = rightMargin(pit);
532         else
533                 row.x = leftMargin(max_width_, pit, row.pos());
534
535         // is there a manual margin with a manual label
536         LayoutPtr const & layout = par.layout();
537
538         if (layout->margintype == MARGIN_MANUAL
539             && layout->labeltype == LABEL_MANUAL) {
540                 /// We might have real hfills in the label part
541                 int nlh = numberOfLabelHfills(par, row);
542
543                 // A manual label par (e.g. List) has an auto-hfill
544                 // between the label text and the body of the
545                 // paragraph too.
546                 // But we don't want to do this auto hfill if the par
547                 // is empty.
548                 if (!par.empty())
549                         ++nlh;
550
551                 if (nlh && !par.getLabelWidthString().empty())
552                         row.label_hfill = labelFill(pit, row) / double(nlh);
553         }
554
555         double hfill = 0;
556         if (w > 0) {
557                 // are there any hfills in the row?
558                 if (int nh = numberOfHfills(par, row))
559                         hfill = w / double(nh);
560         // we don't have to look at the alignment if it is ALIGN_LEFT and
561         // if the row is already larger then the permitted width as then
562         // we force the LEFT_ALIGN'edness!
563         } else if (int(row.width()) < max_width_) {
564                 // is it block, flushleft or flushright?
565                 // set x how you need it
566                 int align;
567                 if (par.params().align() == LYX_ALIGN_LAYOUT)
568                         align = layout->align;
569                 else
570                         align = par.params().align();
571
572                 // Display-style insets should always be on a centred row
573                 // The test on par.size() is to catch zero-size pars, which
574                 // would trigger the assert in Paragraph::getInset().
575                 //inset = par.size() ? par.getInset(row.pos()) : 0;
576                 if (row.pos() < par.size() && par.isInset(row.pos())) {
577                         switch(par.getInset(row.pos())->display()) {
578                                 case Inset::AlignLeft:
579                                         align = LYX_ALIGN_BLOCK;
580                                         break;
581                                 case Inset::AlignCenter:
582                                         align = LYX_ALIGN_CENTER;
583                                         break;
584                                 case Inset::Inline:
585                                 case Inset::AlignRight:
586                                         // unchanged (use align)
587                                         break;
588                         }
589                 }
590
591                 switch (align) {
592                 case LYX_ALIGN_BLOCK: {
593                         int const ns = numberOfSeparators(par, row);
594                         bool disp_inset = false;
595                         if (row.endpos() < par.size()) {
596                                 Inset const * in = par.getInset(row.endpos());
597                                 if (in)
598                                         disp_inset = in->display();
599                         }
600                         // If we have separators, this is not the last row of a
601                         // par, does not end in newline, and is not row above a
602                         // display inset... then stretch it
603                         if (ns
604                             && row.endpos() < par.size()
605                             && !par.isNewline(row.endpos() - 1)
606                             && !disp_inset
607                                 ) {
608                                 row.separator = w / ns;
609                                 //lyxerr << "row.separator " << row.separator << endl;
610                                 //lyxerr << "ns " << ns << endl;
611                         } else if (is_rtl) {
612                                 row.x += w;
613                         }
614                         break;
615                 }
616                 case LYX_ALIGN_RIGHT:
617                         row.x += w;
618                         break;
619                 case LYX_ALIGN_CENTER:
620                         row.x += w / 2;
621                         break;
622                 }
623         }
624
625         if (is_rtl) {
626                 pos_type body_pos = par.beginOfBody();
627                 pos_type end = row.endpos();
628
629                 if (body_pos > 0
630                     && (body_pos > end || !par.isLineSeparator(body_pos - 1)))
631                 {
632                         row.x += theFontMetrics(text_->getLabelFont(buffer, par)).
633                                 width(layout->labelsep);
634                         if (body_pos <= end)
635                                 row.x += row.label_hfill;
636                 }
637         }
638
639         pos_type const endpos = row.endpos();
640         pos_type body_pos = par.beginOfBody();
641         if (body_pos > 0
642                 && (body_pos > endpos || !par.isLineSeparator(body_pos - 1)))
643                 body_pos = 0;
644
645         ParagraphMetrics & pm = par_metrics_[pit];
646         InsetList::const_iterator ii = par.insetList().begin();
647         InsetList::const_iterator iend = par.insetList().end();
648         for ( ; ii != iend; ++ii) {
649                 if (ii->pos >= endpos || ii->pos < row.pos()
650                         || ii->inset->lyxCode() != HFILL_CODE)
651                         continue;
652                 Dimension dim = row.dimension();
653                 if (pm.hfillExpansion(row, ii->pos))
654                         dim.wid = int(ii->pos >= body_pos ?
655                                 max(hfill, 5.0) : row.label_hfill);
656                 else
657                         dim.wid = 5;
658                 // Cache the inset dimension. 
659                 bv_->coordCache().insets().add(ii->inset, dim);
660                 pm.setInsetDimension(ii->inset, dim);
661         }
662 }
663
664
665 int TextMetrics::labelFill(pit_type const pit, Row const & row) const
666 {
667         Buffer & buffer = bv_->buffer();
668         Paragraph const & par = text_->getPar(pit);
669
670         pos_type last = par.beginOfBody();
671         BOOST_ASSERT(last > 0);
672
673         // -1 because a label ends with a space that is in the label
674         --last;
675
676         // a separator at this end does not count
677         if (par.isLineSeparator(last))
678                 --last;
679
680         int w = 0;
681         for (pos_type i = row.pos(); i <= last; ++i)
682                 w += singleWidth(pit, i);
683
684         docstring const & label = par.params().labelWidthString();
685         if (label.empty())
686                 return 0;
687
688         FontMetrics const & fm
689                 = theFontMetrics(text_->getLabelFont(buffer, par));
690
691         return max(0, fm.width(label) - w);
692 }
693
694
695 // this needs special handling - only newlines count as a break point
696 static pos_type addressBreakPoint(pos_type i, Paragraph const & par)
697 {
698         pos_type const end = par.size();
699
700         for (; i < end; ++i)
701                 if (par.isNewline(i))
702                         return i + 1;
703
704         return end;
705 }
706
707
708 int TextMetrics::labelEnd(pit_type const pit) const
709 {
710         // labelEnd is only needed if the layout fills a flushleft label.
711         if (text_->getPar(pit).layout()->margintype != MARGIN_MANUAL)
712                 return 0;
713         // return the beginning of the body
714         return leftMargin(max_width_, pit);
715 }
716
717
718 pit_type TextMetrics::rowBreakPoint(int width, pit_type const pit,
719                 pit_type pos) const
720 {
721         Buffer & buffer = bv_->buffer();
722         ParagraphMetrics const & pm = par_metrics_[pit];
723         Paragraph const & par = text_->getPar(pit);
724         pos_type const end = par.size();
725         if (pos == end || width < 0)
726                 return end;
727
728         LayoutPtr const & layout = par.layout();
729
730         if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX)
731                 return addressBreakPoint(pos, par);
732
733         pos_type const body_pos = par.beginOfBody();
734
735
736         // Now we iterate through until we reach the right margin
737         // or the end of the par, then choose the possible break
738         // nearest that.
739
740         int label_end = labelEnd(pit);
741         int const left = leftMargin(max_width_, pit, pos);
742         int x = left;
743
744         // pixel width since last breakpoint
745         int chunkwidth = 0;
746
747         FontIterator fi = FontIterator(*this, par, pit, pos);
748         pos_type point = end;
749         pos_type i = pos;
750         for ( ; i < end; ++i, ++fi) {
751                 int thiswidth = pm.singleWidth(i, *fi);
752
753                 // add the auto-hfill from label end to the body
754                 if (body_pos && i == body_pos) {
755                         FontMetrics const & fm = theFontMetrics(
756                                 text_->getLabelFont(buffer, par));
757                         int add = fm.width(layout->labelsep);
758                         if (par.isLineSeparator(i - 1))
759                                 add -= singleWidth(pit, i - 1);
760
761                         add = std::max(add, label_end - x);
762                         thiswidth += add;
763                 }
764
765                 x += thiswidth;
766                 chunkwidth += thiswidth;
767
768                 // break before a character that will fall off
769                 // the right of the row
770                 if (x >= width) {
771                         // if no break before, break here
772                         if (point == end || chunkwidth >= width - left) {
773                                 if (i > pos)
774                                         point = i;
775                                 else
776                                         point = i + 1;
777                         }
778                         // exit on last registered breakpoint:
779                         break;
780                 }
781
782                 if (par.isNewline(i)) {
783                         point = i + 1;
784                         break;
785                 }
786                 // Break before...
787                 if (i + 1 < end) {
788                         if (par.isInset(i + 1) && par.getInset(i + 1)->display()) {
789                                 point = i + 1;
790                                 break;
791                         }
792                         // ...and after.
793                         if (par.isInset(i) && par.getInset(i)->display()) {
794                                 point = i + 1;
795                                 break;
796                         }
797                 }
798
799                 if (!par.isInset(i) || par.getInset(i)->isChar()) {
800                         // some insets are line separators too
801                         if (par.isLineSeparator(i)) {
802                                 // register breakpoint:
803                                 point = i + 1;
804                                 chunkwidth = 0;
805                         }
806                 }
807         }
808
809         // maybe found one, but the par is short enough.
810         if (i == end && x < width)
811                 point = end;
812
813         // manual labels cannot be broken in LaTeX. But we
814         // want to make our on-screen rendering of footnotes
815         // etc. still break
816         if (body_pos && point < body_pos)
817                 point = body_pos;
818
819         return point;
820 }
821
822
823 int TextMetrics::rowWidth(int right_margin, pit_type const pit,
824                 pos_type const first, pos_type const end) const
825 {
826         Buffer & buffer = bv_->buffer();
827         // get the pure distance
828         ParagraphMetrics const & pm = par_metrics_[pit];
829         Paragraph const & par = text_->getPar(pit);
830         int w = leftMargin(max_width_, pit, first);
831         int label_end = labelEnd(pit);
832
833         pos_type const body_pos = par.beginOfBody();
834         pos_type i = first;
835
836         if (i < end) {
837                 FontIterator fi = FontIterator(*this, par, pit, i);
838                 for ( ; i < end; ++i, ++fi) {
839                         if (body_pos > 0 && i == body_pos) {
840                                 FontMetrics const & fm = theFontMetrics(
841                                         text_->getLabelFont(buffer, par));
842                                 w += fm.width(par.layout()->labelsep);
843                                 if (par.isLineSeparator(i - 1))
844                                         w -= singleWidth(pit, i - 1);
845                                 w = max(w, label_end);
846                         }
847                         w += pm.singleWidth(i, *fi);
848                 }
849         }
850
851         if (body_pos > 0 && body_pos >= end) {
852                 FontMetrics const & fm = theFontMetrics(
853                         text_->getLabelFont(buffer, par));
854                 w += fm.width(par.layout()->labelsep);
855                 if (end > 0 && par.isLineSeparator(end - 1))
856                         w -= singleWidth(pit, end - 1);
857                 w = max(w, label_end);
858         }
859
860         return w + right_margin;
861 }
862
863
864 Dimension TextMetrics::rowHeight(pit_type const pit, pos_type const first,
865                 pos_type const end) const
866 {
867         Paragraph const & par = text_->getPar(pit);
868         // get the maximum ascent and the maximum descent
869         double layoutasc = 0;
870         double layoutdesc = 0;
871         double const dh = defaultRowHeight();
872
873         // ok, let us initialize the maxasc and maxdesc value.
874         // Only the fontsize count. The other properties
875         // are taken from the layoutfont. Nicer on the screen :)
876         LayoutPtr const & layout = par.layout();
877
878         // as max get the first character of this row then it can
879         // increase but not decrease the height. Just some point to
880         // start with so we don't have to do the assignment below too
881         // often.
882         Buffer const & buffer = bv_->buffer();
883         Font font = getDisplayFont(pit, first);
884         FontSize const tmpsize = font.fontInfo().size();
885         font.fontInfo() = text_->getLayoutFont(buffer, pit);
886         FontSize const size = font.fontInfo().size();
887         font.fontInfo().setSize(tmpsize);
888
889         FontInfo labelfont = text_->getLabelFont(buffer, par);
890
891         FontMetrics const & labelfont_metrics = theFontMetrics(labelfont);
892         FontMetrics const & fontmetrics = theFontMetrics(font);
893
894         // these are minimum values
895         double const spacing_val = layout->spacing.getValue()
896                 * text_->spacing(buffer, par);
897         //lyxerr << "spacing_val = " << spacing_val << endl;
898         int maxasc  = int(fontmetrics.maxAscent()  * spacing_val);
899         int maxdesc = int(fontmetrics.maxDescent() * spacing_val);
900
901         // insets may be taller
902         ParagraphMetrics const & pm = par_metrics_[pit];
903         InsetList::const_iterator ii = par.insetList().begin();
904         InsetList::const_iterator iend = par.insetList().end();
905         for ( ; ii != iend; ++ii) {
906                 Dimension const & dim = pm.insetDimension(ii->inset);
907                 if (ii->pos >= first && ii->pos < end) {
908                         maxasc  = max(maxasc,  dim.ascent());
909                         maxdesc = max(maxdesc, dim.descent());
910                 }
911         }
912
913         // Check if any custom fonts are larger (Asger)
914         // This is not completely correct, but we can live with the small,
915         // cosmetic error for now.
916         int labeladdon = 0;
917
918         FontSize maxsize =
919                 par.highestFontInRange(first, end, size);
920         if (maxsize > font.fontInfo().size()) {
921                 // use standard paragraph font with the maximal size
922                 FontInfo maxfont = font.fontInfo();
923                 maxfont.setSize(maxsize);
924                 FontMetrics const & maxfontmetrics = theFontMetrics(maxfont);
925                 maxasc  = max(maxasc,  maxfontmetrics.maxAscent());
926                 maxdesc = max(maxdesc, maxfontmetrics.maxDescent());
927         }
928
929         // This is nicer with box insets:
930         ++maxasc;
931         ++maxdesc;
932
933         ParagraphList const & pars = text_->paragraphs();
934
935         // is it a top line?
936         if (first == 0) {
937                 BufferParams const & bufparams = buffer.params();
938                 // some parskips VERY EASY IMPLEMENTATION
939                 if (bufparams.paragraph_separation
940                     == BufferParams::PARSEP_SKIP
941                         && par.ownerCode() != ERT_CODE
942                         && par.ownerCode() != LISTINGS_CODE
943                         && pit > 0
944                         && ((layout->isParagraph() && par.getDepth() == 0)
945                             || (pars[pit - 1].layout()->isParagraph()
946                                 && pars[pit - 1].getDepth() == 0)))
947                 {
948                                 maxasc += bufparams.getDefSkip().inPixels(*bv_);
949                 }
950
951                 if (par.params().startOfAppendix())
952                         maxasc += int(3 * dh);
953
954                 // This is special code for the chapter, since the label of this
955                 // layout is printed in an extra row
956                 if (layout->counter == "chapter"
957                     && !par.params().labelString().empty()) {
958                         labeladdon = int(labelfont_metrics.maxHeight()
959                                      * layout->spacing.getValue()
960                                      * text_->spacing(buffer, par));
961                 }
962
963                 // special code for the top label
964                 if ((layout->labeltype == LABEL_TOP_ENVIRONMENT
965                      || layout->labeltype == LABEL_BIBLIO
966                      || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
967                     && isFirstInSequence(pit, pars)
968                     && !par.getLabelstring().empty())
969                 {
970                         labeladdon = int(
971                                   labelfont_metrics.maxHeight()
972                                         * layout->spacing.getValue()
973                                         * text_->spacing(buffer, par)
974                                 + (layout->topsep + layout->labelbottomsep) * dh);
975                 }
976
977                 // Add the layout spaces, for example before and after
978                 // a section, or between the items of a itemize or enumerate
979                 // environment.
980
981                 pit_type prev = depthHook(pit, pars, par.getDepth());
982                 Paragraph const & prevpar = pars[prev];
983                 if (prev != pit
984                     && prevpar.layout() == layout
985                     && prevpar.getDepth() == par.getDepth()
986                     && prevpar.getLabelWidthString()
987                                         == par.getLabelWidthString()) {
988                         layoutasc = layout->itemsep * dh;
989                 } else if (pit != 0 || first != 0) {
990                         if (layout->topsep > 0)
991                                 layoutasc = layout->topsep * dh;
992                 }
993
994                 prev = outerHook(pit, pars);
995                 if (prev != pit_type(pars.size())) {
996                         maxasc += int(pars[prev].layout()->parsep * dh);
997                 } else if (pit != 0) {
998                         Paragraph const & prevpar = pars[pit - 1];
999                         if (prevpar.getDepth() != 0 ||
1000                                         prevpar.layout() == layout) {
1001                                 maxasc += int(layout->parsep * dh);
1002                         }
1003                 }
1004         }
1005
1006         // is it a bottom line?
1007         if (end >= par.size()) {
1008                 // add the layout spaces, for example before and after
1009                 // a section, or between the items of a itemize or enumerate
1010                 // environment
1011                 pit_type nextpit = pit + 1;
1012                 if (nextpit != pit_type(pars.size())) {
1013                         pit_type cpit = pit;
1014                         double usual = 0;
1015                         double unusual = 0;
1016
1017                         if (pars[cpit].getDepth() > pars[nextpit].getDepth()) {
1018                                 usual = pars[cpit].layout()->bottomsep * dh;
1019                                 cpit = depthHook(cpit, pars, pars[nextpit].getDepth());
1020                                 if (pars[cpit].layout() != pars[nextpit].layout()
1021                                         || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
1022                                 {
1023                                         unusual = pars[cpit].layout()->bottomsep * dh;
1024                                 }
1025                                 layoutdesc = max(unusual, usual);
1026                         } else if (pars[cpit].getDepth() == pars[nextpit].getDepth()) {
1027                                 if (pars[cpit].layout() != pars[nextpit].layout()
1028                                         || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
1029                                         layoutdesc = int(pars[cpit].layout()->bottomsep * dh);
1030                         }
1031                 }
1032         }
1033
1034         // incalculate the layout spaces
1035         maxasc  += int(layoutasc  * 2 / (2 + pars[pit].getDepth()));
1036         maxdesc += int(layoutdesc * 2 / (2 + pars[pit].getDepth()));
1037
1038         // FIXME: the correct way is to do the following is to move the
1039         // following code in another method specially tailored for the
1040         // main Text. The following test is thus bogus.
1041         // Top and bottom margin of the document (only at top-level)
1042         if (main_text_) {
1043                 if (pit == 0 && first == 0)
1044                         maxasc += 20;
1045                 if (pit + 1 == pit_type(pars.size()) &&
1046                     end == par.size() &&
1047                                 !(end > 0 && par.isNewline(end - 1)))
1048                         maxdesc += 20;
1049         }
1050
1051         return Dimension(0, maxasc + labeladdon, maxdesc);
1052 }
1053
1054
1055 // x is an absolute screen coord
1056 // returns the column near the specified x-coordinate of the row
1057 // x is set to the real beginning of this column
1058 pos_type TextMetrics::getColumnNearX(pit_type const pit,
1059                 Row const & row, int & x, bool & boundary) const
1060 {
1061         Buffer const & buffer = bv_->buffer();
1062
1063         /// For the main Text, it is possible that this pit is not
1064         /// yet in the CoordCache when moving cursor up.
1065         /// x Paragraph coordinate is always 0 for main text anyway.
1066         int const xo = origin_.x_;
1067         x -= xo;
1068         Paragraph const & par = text_->getPar(pit);
1069         Bidi bidi;
1070         bidi.computeTables(par, buffer, row);
1071
1072         pos_type vc = row.pos();
1073         pos_type end = row.endpos();
1074         pos_type c = 0;
1075         LayoutPtr const & layout = par.layout();
1076
1077         bool left_side = false;
1078
1079         pos_type body_pos = par.beginOfBody();
1080
1081         double tmpx = row.x;
1082         double last_tmpx = tmpx;
1083
1084         if (body_pos > 0 &&
1085             (body_pos > end || !par.isLineSeparator(body_pos - 1)))
1086                 body_pos = 0;
1087
1088         // check for empty row
1089         if (vc == end) {
1090                 x = int(tmpx) + xo;
1091                 return 0;
1092         }
1093
1094         while (vc < end && tmpx <= x) {
1095                 c = bidi.vis2log(vc);
1096                 last_tmpx = tmpx;
1097                 if (body_pos > 0 && c == body_pos - 1) {
1098                         FontMetrics const & fm = theFontMetrics(
1099                                 text_->getLabelFont(buffer, par));
1100                         tmpx += row.label_hfill + fm.width(layout->labelsep);
1101                         if (par.isLineSeparator(body_pos - 1))
1102                                 tmpx -= singleWidth(pit, body_pos - 1);
1103                 }
1104
1105                 tmpx += singleWidth(pit, c);
1106                 if (par.isSeparator(c) && c >= body_pos)
1107                                 tmpx += row.separator;
1108                 ++vc;
1109         }
1110
1111         if ((tmpx + last_tmpx) / 2 > x) {
1112                 tmpx = last_tmpx;
1113                 left_side = true;
1114         }
1115
1116         BOOST_ASSERT(vc <= end);  // This shouldn't happen.
1117
1118         boundary = false;
1119         // This (rtl_support test) is not needed, but gives
1120         // some speedup if rtl_support == false
1121         bool const lastrow = lyxrc.rtl_support && row.endpos() == par.size();
1122
1123         // If lastrow is false, we don't need to compute
1124         // the value of rtl.
1125         bool const rtl = lastrow ? text_->isRTL(buffer, par) : false;
1126         if (lastrow &&
1127             ((rtl  &&  left_side && vc == row.pos() && x < tmpx - 5) ||
1128              (!rtl && !left_side && vc == end  && x > tmpx + 5)))
1129                 c = end;
1130         else if (vc == row.pos()) {
1131                 c = bidi.vis2log(vc);
1132                 if (bidi.level(c) % 2 == 1)
1133                         ++c;
1134         } else {
1135                 c = bidi.vis2log(vc - 1);
1136                 bool const rtl = (bidi.level(c) % 2 == 1);
1137                 if (left_side == rtl) {
1138                         ++c;
1139                         boundary = isRTLBoundary(pit, c);
1140                 }
1141         }
1142
1143 // I believe this code is not needed anymore (Jug 20050717)
1144 #if 0
1145         // The following code is necessary because the cursor position past
1146         // the last char in a row is logically equivalent to that before
1147         // the first char in the next row. That's why insets causing row
1148         // divisions -- Newline and display-style insets -- must be treated
1149         // specially, so cursor up/down doesn't get stuck in an air gap -- MV
1150         // Newline inset, air gap below:
1151         if (row.pos() < end && c >= end && par.isNewline(end - 1)) {
1152                 if (bidi.level(end -1) % 2 == 0)
1153                         tmpx -= singleWidth(pit, end - 1);
1154                 else
1155                         tmpx += singleWidth(pit, end - 1);
1156                 c = end - 1;
1157         }
1158
1159         // Air gap above display inset:
1160         if (row.pos() < end && c >= end && end < par.size()
1161             && par.isInset(end) && par.getInset(end)->display()) {
1162                 c = end - 1;
1163         }
1164         // Air gap below display inset:
1165         if (row.pos() < end && c >= end && par.isInset(end - 1)
1166             && par.getInset(end - 1)->display()) {
1167                 c = end - 1;
1168         }
1169 #endif
1170
1171         x = int(tmpx) + xo;
1172         pos_type const col = c - row.pos();
1173
1174         if (!c || end == par.size())
1175                 return col;
1176
1177         if (c==end && !par.isLineSeparator(c-1) && !par.isNewline(c-1)) {
1178                 boundary = true;
1179                 return col;
1180         }
1181
1182         return min(col, end - 1 - row.pos());
1183 }
1184
1185
1186 pos_type TextMetrics::x2pos(pit_type pit, int row, int x) const
1187 {
1188         // We play safe and use parMetrics(pit) to make sure the
1189         // ParagraphMetrics will be redone and OK to use if needed.
1190         // Otherwise we would use an empty ParagraphMetrics in
1191         // upDownInText() while in selection mode.
1192         ParagraphMetrics const & pm = parMetrics(pit);
1193
1194         BOOST_ASSERT(row < int(pm.rows().size()));
1195         bool bound = false;
1196         Row const & r = pm.rows()[row];
1197         return r.pos() + getColumnNearX(pit, r, x, bound);
1198 }
1199
1200
1201 void TextMetrics::newParMetricsDown()
1202 {
1203         pair<pit_type, ParagraphMetrics> const & last = *par_metrics_.rbegin();
1204         pit_type const pit = last.first + 1;
1205         if (pit == int(text_->paragraphs().size()))
1206                 return;
1207
1208         // do it and update its position.
1209         redoParagraph(pit);
1210         par_metrics_[pit].setPosition(last.second.position()
1211                 + last.second.descent());
1212 }
1213
1214
1215 void TextMetrics::newParMetricsUp()
1216 {
1217         pair<pit_type, ParagraphMetrics> const & first = *par_metrics_.begin();
1218         if (first.first == 0)
1219                 return;
1220
1221         pit_type const pit = first.first - 1;
1222         // do it and update its position.
1223         redoParagraph(pit);
1224         par_metrics_[pit].setPosition(first.second.position()
1225                 - first.second.ascent());
1226 }
1227
1228 // y is screen coordinate
1229 pit_type TextMetrics::getPitNearY(int y)
1230 {
1231         BOOST_ASSERT(!text_->paragraphs().empty());
1232         LYXERR(Debug::DEBUG, "y: " << y << " cache size: " << par_metrics_.size());
1233
1234         // look for highest numbered paragraph with y coordinate less than given y
1235         pit_type pit = -1;
1236         int yy = -1;
1237         ParMetricsCache::const_iterator it = par_metrics_.begin();
1238         ParMetricsCache::const_iterator et = par_metrics_.end();
1239         ParMetricsCache::const_iterator last = et; last--;
1240
1241         ParagraphMetrics const & pm = it->second;
1242
1243         if (y < it->second.position() - int(pm.ascent())) {
1244                 // We are looking for a position that is before the first paragraph in
1245                 // the cache (which is in priciple off-screen, that is before the
1246                 // visible part.
1247                 if (it->first == 0)
1248                         // We are already at the first paragraph in the inset.
1249                         return 0;
1250                 // OK, this is the paragraph we are looking for.
1251                 pit = it->first - 1;
1252                 newParMetricsUp();
1253                 return pit;
1254         }
1255
1256         ParagraphMetrics const & pm_last = par_metrics_[last->first];
1257
1258         if (y >= last->second.position() + int(pm_last.descent())) {
1259                 // We are looking for a position that is after the last paragraph in
1260                 // the cache (which is in priciple off-screen, that is before the
1261                 // visible part.
1262                 pit = last->first + 1;
1263                 if (pit == int(text_->paragraphs().size()))
1264                         //  We are already at the last paragraph in the inset.
1265                         return last->first;
1266                 // OK, this is the paragraph we are looking for.
1267                 newParMetricsDown();
1268                 return pit;
1269         }
1270
1271         for (; it != et; ++it) {
1272                 LYXERR(Debug::DEBUG, "examining: pit: " << it->first
1273                         << " y: " << it->second.position());
1274
1275                 ParagraphMetrics const & pm = par_metrics_[it->first];
1276
1277                 if (it->first >= pit && int(it->second.position()) - int(pm.ascent()) <= y) {
1278                         pit = it->first;
1279                         yy = it->second.position();
1280                 }
1281         }
1282
1283         LYXERR(Debug::DEBUG, "found best y: " << yy << " for pit: " << pit);
1284
1285         return pit;
1286 }
1287
1288
1289 Row const & TextMetrics::getRowNearY(int y, pit_type pit) const
1290 {
1291         ParagraphMetrics const & pm = par_metrics_[pit];
1292
1293         int yy = pm.position() - pm.ascent();
1294         BOOST_ASSERT(!pm.rows().empty());
1295         RowList::const_iterator rit = pm.rows().begin();
1296         RowList::const_iterator rlast = pm.rows().end();
1297         --rlast;
1298         for (; rit != rlast; yy += rit->height(), ++rit)
1299                 if (yy + rit->height() > y)
1300                         break;
1301         return *rit;
1302 }
1303
1304
1305 // x,y are absolute screen coordinates
1306 // sets cursor recursively descending into nested editable insets
1307 Inset * TextMetrics::editXY(Cursor & cur, int x, int y)
1308 {
1309         if (lyxerr.debugging(Debug::WORKAREA)) {
1310                 LYXERR0("TextMetrics::editXY(cur, " << x << ", " << y << ")");
1311                 cur.bv().coordCache().dump();
1312         }
1313         pit_type pit = getPitNearY(y);
1314         BOOST_ASSERT(pit != -1);
1315
1316         Row const & row = getRowNearY(y, pit);
1317         bool bound = false;
1318
1319         int xx = x; // is modified by getColumnNearX
1320         pos_type const pos = row.pos()
1321                 + getColumnNearX(pit, row, xx, bound);
1322         cur.pit() = pit;
1323         cur.pos() = pos;
1324         cur.boundary(bound);
1325         cur.setTargetX(x);
1326
1327         // try to descend into nested insets
1328         Inset * inset = checkInsetHit(x, y);
1329         //lyxerr << "inset " << inset << " hit at x: " << x << " y: " << y << endl;
1330         if (!inset) {
1331                 // Either we deconst editXY or better we move current_font
1332                 // and real_current_font to Cursor
1333                 // FIXME: what is needed now that current_font and real_current_font
1334                 // are transferred?
1335                 cur.setCurrentFont();
1336                 return 0;
1337         }
1338
1339         ParagraphList const & pars = text_->paragraphs();
1340         Inset const * insetBefore = pos? pars[pit].getInset(pos - 1): 0;
1341         //Inset * insetBehind = pars[pit].getInset(pos);
1342
1343         // This should be just before or just behind the
1344         // cursor position set above.
1345         BOOST_ASSERT((pos != 0 && inset == insetBefore)
1346                 || inset == pars[pit].getInset(pos));
1347
1348         // Make sure the cursor points to the position before
1349         // this inset.
1350         if (inset == insetBefore) {
1351                 --cur.pos();
1352                 cur.boundary(false);
1353         }
1354
1355         // Try to descend recursively inside the inset.
1356         inset = inset->editXY(cur, x, y);
1357
1358         if (cur.top().text() == text_)
1359                 cur.setCurrentFont();
1360         return inset;
1361 }
1362
1363
1364 void TextMetrics::setCursorFromCoordinates(Cursor & cur, int const x, int const y)
1365 {
1366         BOOST_ASSERT(text_ == cur.text());
1367         pit_type pit = getPitNearY(y);
1368
1369         ParagraphMetrics const & pm = par_metrics_[pit];
1370
1371         int yy = pm.position() - pm.ascent();
1372         LYXERR(Debug::DEBUG, "x: " << x << " y: " << y <<
1373                 " pit: " << pit << " yy: " << yy);
1374
1375         int r = 0;
1376         BOOST_ASSERT(pm.rows().size());
1377         for (; r < int(pm.rows().size()) - 1; ++r) {
1378                 Row const & row = pm.rows()[r];
1379                 if (int(yy + row.height()) > y)
1380                         break;
1381                 yy += row.height();
1382         }
1383
1384         Row const & row = pm.rows()[r];
1385
1386         LYXERR(Debug::DEBUG, "row " << r << " from pos: " << row.pos());
1387
1388         bool bound = false;
1389         int xx = x;
1390         pos_type const pos = row.pos() + getColumnNearX(pit, row, xx, bound);
1391
1392         LYXERR(Debug::DEBUG, "setting cursor pit: " << pit << " pos: " << pos);
1393
1394         text_->setCursor(cur, pit, pos, true, bound);
1395         // remember new position.
1396         cur.setTargetX();
1397 }
1398
1399
1400 //takes screen x,y coordinates
1401 Inset * TextMetrics::checkInsetHit(int x, int y)
1402 {
1403         pit_type pit = getPitNearY(y);
1404         BOOST_ASSERT(pit != -1);
1405
1406         Paragraph const & par = text_->paragraphs()[pit];
1407         ParagraphMetrics const & pm = par_metrics_[pit];
1408
1409         LYXERR(Debug::DEBUG, "x: " << x << " y: " << y << "  pit: " << pit);
1410
1411         InsetList::const_iterator iit = par.insetList().begin();
1412         InsetList::const_iterator iend = par.insetList().end();
1413         for (; iit != iend; ++iit) {
1414                 Inset * inset = iit->inset;
1415
1416                 LYXERR(Debug::DEBUG, "examining inset " << inset);
1417
1418                 if (!bv_->coordCache().getInsets().has(inset)) {
1419                         LYXERR(Debug::DEBUG, "inset has no cached position");
1420                         return 0;
1421                 }
1422
1423                 Dimension const & dim = pm.insetDimension(inset);
1424                 Point p = bv_->coordCache().getInsets().xy(inset);
1425
1426                 LYXERR(Debug::DEBUG, "xo: " << p.x_ << "..." << p.x_ + dim.wid
1427                         << " yo: " << p.y_ - dim.asc << "..." << p.y_ + dim.des);
1428
1429                 if (x >= p.x_
1430                         && x <= p.x_ + dim.wid
1431                         && y >= p.y_ - dim.asc
1432                         && y <= p.y_ + dim.des) {
1433                         LYXERR(Debug::DEBUG, "Hit inset: " << inset);
1434                         return inset;
1435                 }
1436         }
1437
1438         LYXERR(Debug::DEBUG, "No inset hit. ");
1439         return 0;
1440 }
1441
1442
1443 int TextMetrics::cursorX(CursorSlice const & sl,
1444                 bool boundary) const
1445 {
1446         BOOST_ASSERT(sl.text() == text_);
1447         pit_type const pit = sl.pit();
1448         Paragraph const & par = text_->paragraphs()[pit];
1449         ParagraphMetrics const & pm = par_metrics_[pit];
1450         if (pm.rows().empty())
1451                 return 0;
1452
1453         pos_type ppos = sl.pos();
1454         // Correct position in front of big insets
1455         bool const boundary_correction = ppos != 0 && boundary;
1456         if (boundary_correction)
1457                 --ppos;
1458
1459         Row const & row = pm.getRow(sl.pos(), boundary);
1460
1461         pos_type cursor_vpos = 0;
1462
1463         Buffer const & buffer = bv_->buffer();
1464         double x = row.x;
1465         Bidi bidi;
1466         bidi.computeTables(par, buffer, row);
1467
1468         pos_type const row_pos  = row.pos();
1469         pos_type const end      = row.endpos();
1470         // Spaces at logical line breaks in bidi text must be skipped during 
1471         // cursor positioning. However, they may appear visually in the middle
1472         // of a row; they must be skipped, wherever they are...
1473         // * logically "abc_[HEBREW_\nHEBREW]"
1474         // * visually "abc_[_WERBEH\nWERBEH]"
1475         pos_type skipped_sep_vpos = -1;
1476
1477         if (end <= row_pos)
1478                 cursor_vpos = row_pos;
1479         else if (ppos >= end)
1480                 cursor_vpos = text_->isRTL(buffer, par) ? row_pos : end;
1481         else if (ppos > row_pos && ppos >= end)
1482                 // Place cursor after char at (logical) position pos - 1
1483                 cursor_vpos = (bidi.level(ppos - 1) % 2 == 0)
1484                         ? bidi.log2vis(ppos - 1) + 1 : bidi.log2vis(ppos - 1);
1485         else
1486                 // Place cursor before char at (logical) position ppos
1487                 cursor_vpos = (bidi.level(ppos) % 2 == 0)
1488                         ? bidi.log2vis(ppos) : bidi.log2vis(ppos) + 1;
1489
1490         pos_type body_pos = par.beginOfBody();
1491         if (body_pos > 0 &&
1492             (body_pos > end || !par.isLineSeparator(body_pos - 1)))
1493                 body_pos = 0;
1494
1495         // Use font span to speed things up, see below
1496         FontSpan font_span;
1497         Font font;
1498
1499         // If the last logical character is a separator, skip it, unless
1500         // it's in the last row of a paragraph; see skipped_sep_vpos declaration
1501         if (end > 0 && end < par.size() && par.isSeparator(end - 1))
1502                 skipped_sep_vpos = bidi.log2vis(end - 1);
1503         
1504         for (pos_type vpos = row_pos; vpos < cursor_vpos; ++vpos) {
1505                 // Skip the separator which is at the logical end of the row
1506                 if (vpos == skipped_sep_vpos)
1507                         continue;
1508                 pos_type pos = bidi.vis2log(vpos);
1509                 if (body_pos > 0 && pos == body_pos - 1) {
1510                         FontMetrics const & labelfm = theFontMetrics(
1511                                 text_->getLabelFont(buffer, par));
1512                         x += row.label_hfill + labelfm.width(par.layout()->labelsep);
1513                         if (par.isLineSeparator(body_pos - 1))
1514                                 x -= singleWidth(pit, body_pos - 1);
1515                 }
1516
1517                 // Use font span to speed things up, see above
1518                 if (pos < font_span.first || pos > font_span.last) {
1519                         font_span = par.fontSpan(pos);
1520                         font = getDisplayFont(pit, pos);
1521                 }
1522
1523                 x += pm.singleWidth(pos, font);
1524
1525                 if (par.isSeparator(pos) && pos >= body_pos)
1526                         x += row.separator;
1527         }
1528
1529         // see correction above
1530         if (boundary_correction) {
1531                 if (isRTL(sl, boundary))
1532                         x -= singleWidth(pit, ppos);
1533                 else
1534                         x += singleWidth(pit, ppos);
1535         }
1536
1537         return int(x);
1538 }
1539
1540
1541 int TextMetrics::cursorY(CursorSlice const & sl, bool boundary) const
1542 {
1543         //lyxerr << "TextMetrics::cursorY: boundary: " << boundary << std::endl;
1544         ParagraphMetrics const & pm = par_metrics_[sl.pit()];
1545         if (pm.rows().empty())
1546                 return 0;
1547
1548         int h = 0;
1549         h -= par_metrics_[0].rows()[0].ascent();
1550         for (pit_type pit = 0; pit < sl.pit(); ++pit) {
1551                 h += par_metrics_[pit].height();
1552         }
1553         int pos = sl.pos();
1554         if (pos && boundary)
1555                 --pos;
1556         size_t const rend = pm.pos2row(pos);
1557         for (size_t rit = 0; rit != rend; ++rit)
1558                 h += pm.rows()[rit].height();
1559         h += pm.rows()[rend].ascent();
1560         return h;
1561 }
1562
1563
1564 void TextMetrics::cursorPrevious(Cursor & cur)
1565 {
1566         pos_type cpos = cur.pos();
1567         pit_type cpar = cur.pit();
1568
1569         int x = cur.x_target();
1570         setCursorFromCoordinates(cur, x, 0);
1571         cur.dispatch(FuncRequest(cur.selection()? LFUN_UP_SELECT: LFUN_UP));
1572
1573         if (cpar == cur.pit() && cpos == cur.pos())
1574                 // we have a row which is taller than the workarea. The
1575                 // simplest solution is to move to the previous row instead.
1576                 cur.dispatch(FuncRequest(cur.selection()? LFUN_UP_SELECT: LFUN_UP));
1577
1578         cur.finishUndo();
1579         cur.updateFlags(Update::Force | Update::FitCursor);
1580 }
1581
1582
1583 void TextMetrics::cursorNext(Cursor & cur)
1584 {
1585         pos_type cpos = cur.pos();
1586         pit_type cpar = cur.pit();
1587
1588         int x = cur.x_target();
1589         setCursorFromCoordinates(cur, x, cur.bv().workHeight() - 1);
1590         cur.dispatch(FuncRequest(cur.selection()? LFUN_DOWN_SELECT: LFUN_DOWN));
1591
1592         if (cpar == cur.pit() && cpos == cur.pos())
1593                 // we have a row which is taller than the workarea. The
1594                 // simplest solution is to move to the next row instead.
1595                 cur.dispatch(
1596                         FuncRequest(cur.selection()? LFUN_DOWN_SELECT: LFUN_DOWN));
1597
1598         cur.finishUndo();
1599         cur.updateFlags(Update::Force | Update::FitCursor);
1600 }
1601
1602
1603 // the cursor set functions have a special mechanism. When they
1604 // realize you left an empty paragraph, they will delete it.
1605
1606 bool TextMetrics::cursorHome(Cursor & cur)
1607 {
1608         BOOST_ASSERT(text_ == cur.text());
1609         ParagraphMetrics const & pm = par_metrics_[cur.pit()];
1610         Row const & row = pm.getRow(cur.pos(),cur.boundary());
1611         return text_->setCursor(cur, cur.pit(), row.pos());
1612 }
1613
1614
1615 bool TextMetrics::cursorEnd(Cursor & cur)
1616 {
1617         BOOST_ASSERT(text_ == cur.text());
1618         // if not on the last row of the par, put the cursor before
1619         // the final space exept if I have a spanning inset or one string
1620         // is so long that we force a break.
1621         pos_type end = cur.textRow().endpos();
1622         if (end == 0)
1623                 // empty text, end-1 is no valid position
1624                 return false;
1625         bool boundary = false;
1626         if (end != cur.lastpos()) {
1627                 if (!cur.paragraph().isLineSeparator(end-1)
1628                     && !cur.paragraph().isNewline(end-1))
1629                         boundary = true;
1630                 else
1631                         --end;
1632         }
1633         return text_->setCursor(cur, cur.pit(), end, true, boundary);
1634 }
1635
1636
1637 void TextMetrics::deleteLineForward(Cursor & cur)
1638 {
1639         BOOST_ASSERT(text_ == cur.text());
1640         if (cur.lastpos() == 0) {
1641                 // Paragraph is empty, so we just go forward
1642                 text_->cursorForward(cur);
1643         } else {
1644                 cur.resetAnchor();
1645                 cur.selection() = true; // to avoid deletion
1646                 cursorEnd(cur);
1647                 cur.setSelection();
1648                 // What is this test for ??? (JMarc)
1649                 if (!cur.selection())
1650                         text_->deleteWordForward(cur);
1651                 else
1652                         cap::cutSelection(cur, true, false);
1653                 checkBufferStructure(cur.buffer(), cur);
1654         }
1655 }
1656
1657
1658 bool TextMetrics::isLastRow(pit_type pit, Row const & row) const
1659 {
1660         ParagraphList const & pars = text_->paragraphs();
1661         return row.endpos() >= pars[pit].size()
1662                 && pit + 1 == pit_type(pars.size());
1663 }
1664
1665
1666 bool TextMetrics::isFirstRow(pit_type pit, Row const & row) const
1667 {
1668         return row.pos() == 0 && pit == 0;
1669 }
1670
1671
1672 int TextMetrics::leftMargin(int max_width, pit_type pit) const
1673 {
1674         BOOST_ASSERT(pit >= 0);
1675         BOOST_ASSERT(pit < int(text_->paragraphs().size()));
1676         return leftMargin(max_width, pit, text_->paragraphs()[pit].size());
1677 }
1678
1679
1680 int TextMetrics::leftMargin(int max_width,
1681                 pit_type const pit, pos_type const pos) const
1682 {
1683         ParagraphList const & pars = text_->paragraphs();
1684
1685         BOOST_ASSERT(pit >= 0);
1686         BOOST_ASSERT(pit < int(pars.size()));
1687         Paragraph const & par = pars[pit];
1688         BOOST_ASSERT(pos >= 0);
1689         BOOST_ASSERT(pos <= par.size());
1690         Buffer const & buffer = bv_->buffer();
1691         //lyxerr << "TextMetrics::leftMargin: pit: " << pit << " pos: " << pos << endl;
1692         TextClass const & tclass = buffer.params().getTextClass();
1693         LayoutPtr const & layout = par.layout();
1694
1695         docstring parindent = layout->parindent;
1696
1697         int l_margin = 0;
1698
1699         if (text_->isMainText(buffer))
1700                 l_margin += changebarMargin();
1701
1702         l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(
1703                 tclass.leftmargin());
1704
1705         if (par.getDepth() != 0) {
1706                 // find the next level paragraph
1707                 pit_type newpar = outerHook(pit, pars);
1708                 if (newpar != pit_type(pars.size())) {
1709                         if (pars[newpar].layout()->isEnvironment()) {
1710                                 l_margin = leftMargin(max_width, newpar);
1711                         }
1712                         if (par.layout() == tclass.defaultLayout()) {
1713                                 if (pars[newpar].params().noindent())
1714                                         parindent.erase();
1715                                 else
1716                                         parindent = pars[newpar].layout()->parindent;
1717                         }
1718                 }
1719         }
1720
1721         // This happens after sections in standard classes. The 1.3.x
1722         // code compared depths too, but it does not seem necessary
1723         // (JMarc)
1724         if (par.layout() == tclass.defaultLayout()
1725             && pit > 0 && pars[pit - 1].layout()->nextnoindent)
1726                 parindent.erase();
1727
1728         FontInfo const labelfont = text_->getLabelFont(buffer, par);
1729         FontMetrics const & labelfont_metrics = theFontMetrics(labelfont);
1730
1731         switch (layout->margintype) {
1732         case MARGIN_DYNAMIC:
1733                 if (!layout->leftmargin.empty()) {
1734                         l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(
1735                                 layout->leftmargin);
1736                 }
1737                 if (!par.getLabelstring().empty()) {
1738                         l_margin += labelfont_metrics.signedWidth(layout->labelindent);
1739                         l_margin += labelfont_metrics.width(par.getLabelstring());
1740                         l_margin += labelfont_metrics.width(layout->labelsep);
1741                 }
1742                 break;
1743
1744         case MARGIN_MANUAL: {
1745                 l_margin += labelfont_metrics.signedWidth(layout->labelindent);
1746                 // The width of an empty par, even with manual label, should be 0
1747                 if (!par.empty() && pos >= par.beginOfBody()) {
1748                         if (!par.getLabelWidthString().empty()) {
1749                                 docstring labstr = par.getLabelWidthString();
1750                                 l_margin += labelfont_metrics.width(labstr);
1751                                 l_margin += labelfont_metrics.width(layout->labelsep);
1752                         }
1753                 }
1754                 break;
1755         }
1756
1757         case MARGIN_STATIC: {
1758                 l_margin += theFontMetrics(buffer.params().getFont()).
1759                         signedWidth(layout->leftmargin) * 4     / (par.getDepth() + 4);
1760                 break;
1761         }
1762
1763         case MARGIN_FIRST_DYNAMIC:
1764                 if (layout->labeltype == LABEL_MANUAL) {
1765                         if (pos >= par.beginOfBody()) {
1766                                 l_margin += labelfont_metrics.signedWidth(layout->leftmargin);
1767                         } else {
1768                                 l_margin += labelfont_metrics.signedWidth(layout->labelindent);
1769                         }
1770                 } else if (pos != 0
1771                            // Special case to fix problems with
1772                            // theorems (JMarc)
1773                            || (layout->labeltype == LABEL_STATIC
1774                                && layout->latextype == LATEX_ENVIRONMENT
1775                                && !isFirstInSequence(pit, pars))) {
1776                         l_margin += labelfont_metrics.signedWidth(layout->leftmargin);
1777                 } else if (layout->labeltype != LABEL_TOP_ENVIRONMENT
1778                            && layout->labeltype != LABEL_BIBLIO
1779                            && layout->labeltype !=
1780                            LABEL_CENTERED_TOP_ENVIRONMENT) {
1781                         l_margin += labelfont_metrics.signedWidth(layout->labelindent);
1782                         l_margin += labelfont_metrics.width(layout->labelsep);
1783                         l_margin += labelfont_metrics.width(par.getLabelstring());
1784                 }
1785                 break;
1786
1787         case MARGIN_RIGHT_ADDRESS_BOX: {
1788 #if 0
1789                 // ok, a terrible hack. The left margin depends on the widest
1790                 // row in this paragraph.
1791                 RowList::iterator rit = par.rows().begin();
1792                 RowList::iterator end = par.rows().end();
1793                 // FIXME: This is wrong.
1794                 int minfill = max_width;
1795                 for ( ; rit != end; ++rit)
1796                         if (rit->fill() < minfill)
1797                                 minfill = rit->fill();
1798                 l_margin += theFontMetrics(params.getFont()).signedWidth(layout->leftmargin);
1799                 l_margin += minfill;
1800 #endif
1801                 // also wrong, but much shorter.
1802                 l_margin += max_width / 2;
1803                 break;
1804         }
1805         }
1806
1807         if (!par.params().leftIndent().zero())
1808                 l_margin += par.params().leftIndent().inPixels(max_width);
1809
1810         LyXAlignment align;
1811
1812         if (par.params().align() == LYX_ALIGN_LAYOUT)
1813                 align = layout->align;
1814         else
1815                 align = par.params().align();
1816
1817         // set the correct parindent
1818         if (pos == 0
1819             && (layout->labeltype == LABEL_NO_LABEL
1820                || layout->labeltype == LABEL_TOP_ENVIRONMENT
1821                || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT
1822                || (layout->labeltype == LABEL_STATIC
1823                    && layout->latextype == LATEX_ENVIRONMENT
1824                    && !isFirstInSequence(pit, pars)))
1825             && align == LYX_ALIGN_BLOCK
1826             && !par.params().noindent()
1827             // in some insets, paragraphs are never indented
1828             && !(par.inInset() && par.inInset()->neverIndent(buffer))
1829             // display style insets are always centered, omit indentation
1830             && !(!par.empty()
1831                     && par.isInset(pos)
1832                     && par.getInset(pos)->display())
1833             && (par.layout() != tclass.defaultLayout()
1834                 || buffer.params().paragraph_separation ==
1835                    BufferParams::PARSEP_INDENT))
1836         {
1837                 l_margin += theFontMetrics(buffer.params().getFont()).signedWidth(
1838                         parindent);
1839         }
1840
1841         return l_margin;
1842 }
1843
1844
1845 int TextMetrics::singleWidth(pit_type pit, pos_type pos) const
1846 {
1847         ParagraphMetrics const & pm = par_metrics_[pit];
1848
1849         return pm.singleWidth(pos, getDisplayFont(pit, pos));
1850 }
1851
1852
1853 void TextMetrics::draw(PainterInfo & pi, int x, int y) const
1854 {
1855         if (par_metrics_.empty())
1856                 return;
1857
1858         origin_.x_ = x;
1859         origin_.y_ = y;
1860
1861         ParMetricsCache::iterator it = par_metrics_.begin();
1862         ParMetricsCache::iterator const pm_end = par_metrics_.end();
1863         y -= it->second.ascent();
1864         for (; it != pm_end; ++it) {
1865                 ParagraphMetrics const & pmi = it->second;
1866                 y += pmi.ascent();
1867                 pit_type const pit = it->first;
1868                 // Save the paragraph position in the cache.
1869                 it->second.setPosition(y);
1870                 drawParagraph(pi, pit, x, y);
1871                 y += pmi.descent();
1872         }
1873 }
1874
1875
1876 void TextMetrics::drawParagraph(PainterInfo & pi, pit_type pit, int x, int y) const
1877 {
1878         BufferParams const & bparams = bv_->buffer().params();
1879         ParagraphMetrics const & pm = par_metrics_[pit];
1880         if (pm.rows().empty())
1881                 return;
1882
1883         Bidi bidi;
1884         bool const original_drawing_state = pi.pain.isDrawingEnabled();
1885         int const ww = bv_->workHeight();
1886         size_t const nrows = pm.rows().size();
1887
1888         for (size_t i = 0; i != nrows; ++i) {
1889
1890                 Row const & row = pm.rows()[i];
1891                 if (i)
1892                         y += row.ascent();
1893
1894                 bool const inside = (y + row.descent() >= 0
1895                         && y - row.ascent() < ww);
1896                 // It is not needed to draw on screen if we are not inside.
1897                 pi.pain.setDrawingEnabled(inside && original_drawing_state);
1898                 RowPainter rp(pi, *text_, pit, row, bidi, x, y);
1899
1900                 // Row signature; has row changed since last paint?
1901                 row.setCrc(pm.computeRowSignature(row, bparams));
1902                 bool row_has_changed = row.changed();
1903                 
1904                 // Don't paint the row if a full repaint has not been requested
1905                 // and if it has not changed.
1906                 if (!pi.full_repaint && !row_has_changed) {
1907                         // Paint only the insets if the text itself is
1908                         // unchanged.
1909                         rp.paintOnlyInsets();
1910                         y += row.descent();
1911                         continue;
1912                 }
1913
1914                 // Clear background of this row if paragraph background was not
1915                 // already cleared because of a full repaint.
1916                 if (!pi.full_repaint && row_has_changed) {
1917                         pi.pain.fillRectangle(x, y - row.ascent(),
1918                                 width(), row.height(), pi.background_color);
1919                 }
1920
1921                 bool row_selection = row.sel_beg != -1 && row.sel_end != -1;
1922                 if (row_selection) {
1923                         DocIterator beg = bv_->cursor().selectionBegin();
1924                         DocIterator end = bv_->cursor().selectionEnd();
1925                         bool const beg_margin = beg.pit() < pit && i == 0;
1926                         bool const end_margin = end.pit() > pit && i == nrows - 1;
1927                         beg.pit() = pit;
1928                         beg.pos() = row.sel_beg;
1929                         end.pit() = pit;
1930                         end.pos() = row.sel_end;
1931                         drawRowSelection(pi, x, row, beg, end, beg_margin, end_margin);
1932                 }
1933
1934                 // Instrumentation for testing row cache (see also
1935                 // 12 lines lower):
1936                 if (lyxerr.debugging(Debug::PAINTING) && inside
1937                         && (row_selection || pi.full_repaint || row_has_changed)) {
1938                                 std::string const foreword = text_->isMainText(bv_->buffer()) ?
1939                                         "main text redraw " : "inset text redraw: ";
1940                         LYXERR(Debug::PAINTING, foreword << "pit=" << pit << " row=" << i
1941                                 << " row_selection="    << row_selection
1942                                 << " full_repaint="     << pi.full_repaint
1943                                 << " row_has_changed="  << row_has_changed);
1944                 }
1945
1946                 // Backup full_repaint status and force full repaint
1947                 // for inner insets as the Row has been cleared out.
1948                 bool tmp = pi.full_repaint;
1949                 pi.full_repaint = true;
1950                 rp.paintAppendix();
1951                 rp.paintDepthBar();
1952                 rp.paintChangeBar();
1953                 if (i == 0)
1954                         rp.paintFirst();
1955                 rp.paintText();
1956                 if (i == nrows - 1)
1957                         rp.paintLast();
1958                 y += row.descent();
1959                 // Restore full_repaint status.
1960                 pi.full_repaint = tmp;
1961         }
1962         // Re-enable screen drawing for future use of the painter.
1963         pi.pain.setDrawingEnabled(original_drawing_state);
1964
1965         //LYXERR(Debug::PAINTING, ".");
1966 }
1967
1968
1969 void TextMetrics::drawRowSelection(PainterInfo & pi, int x, Row const & row,
1970                 DocIterator const & beg, DocIterator const & end,
1971                 bool drawOnBegMargin, bool drawOnEndMargin) const
1972 {
1973         Buffer & buffer = bv_->buffer();
1974         DocIterator cur = beg;
1975         int x1 = cursorX(beg.top(), beg.boundary());
1976         int x2 = cursorX(end.top(), end.boundary());
1977         int y1 = bv_->getPos(cur, cur.boundary()).y_ - row.ascent();
1978         int y2 = y1 + row.height();
1979         
1980         // draw the margins
1981         if (drawOnBegMargin) {
1982                 if (text_->isRTL(buffer, beg.paragraph()))
1983                         pi.pain.fillRectangle(x + x1, y1, width() - x1, y2 - y1, Color_selection);
1984                 else
1985                         pi.pain.fillRectangle(x, y1, x1, y2 - y1, Color_selection);
1986         }
1987         
1988         if (drawOnEndMargin) {
1989                 if (text_->isRTL(buffer, beg.paragraph()))
1990                         pi.pain.fillRectangle(x, y1, x2, y2 - y1, Color_selection);
1991                 else
1992                         pi.pain.fillRectangle(x + x2, y1, width() - x2, y2 - y1, Color_selection);
1993         }
1994         
1995         // if we are on a boundary from the beginning, it's probably
1996         // a RTL boundary and we jump to the other side directly as this
1997         // segement is 0-size and confuses the logic below
1998         if (cur.boundary())
1999                 cur.boundary(false);
2000         
2001         // go through row and draw from RTL boundary to RTL boundary
2002         while (cur < end) {
2003                 bool drawNow = false;
2004                 
2005                 // simplified cursorForward code below which does not
2006                 // descend into insets and which does not go into the
2007                 // next line. Compare the logic with the original cursorForward
2008                 
2009                 // if left of boundary -> just jump to right side
2010                 // but for RTL boundaries don't, because: abc|DDEEFFghi -> abcDDEEF|Fghi
2011                 if (cur.boundary()) {
2012                         cur.boundary(false);
2013                 }       else if (isRTLBoundary(cur.pit(), cur.pos() + 1)) {
2014                         // in front of RTL boundary -> Stay on this side of the boundary because:
2015                         //   ab|cDDEEFFghi -> abc|DDEEFFghi
2016                         ++cur.pos();
2017                         cur.boundary(true);
2018                         drawNow = true;
2019                 } else {
2020                         // move right
2021                         ++cur.pos();
2022                         
2023                         // line end?
2024                         if (cur.pos() == row.endpos())
2025                                 cur.boundary(true);
2026                 }
2027                         
2028                 if (x1 == -1) {
2029                         // the previous segment was just drawn, now the next starts
2030                         x1 = cursorX(cur.top(), cur.boundary());
2031                 }
2032                 
2033                 if (!(cur < end) || drawNow) {
2034                         x2 = cursorX(cur.top(), cur.boundary());
2035                         pi.pain.fillRectangle(x + min(x1,x2), y1, abs(x2 - x1), y2 - y1,
2036                                 Color_selection);
2037                         
2038                         // reset x1, so it is set again next round (which will be on the 
2039                         // right side of a boundary or at the selection end)
2040                         x1 = -1;
2041                 }
2042         }
2043 }
2044
2045 //int TextMetrics::pos2x(pit_type pit, pos_type pos) const
2046 //{
2047 //      ParagraphMetrics const & pm = par_metrics_[pit];
2048 //      Row const & r = pm.rows()[row];
2049 //      int x = 0;
2050 //      pos -= r.pos();
2051 //}
2052
2053
2054 int defaultRowHeight()
2055 {
2056         return int(theFontMetrics(sane_font).maxHeight() *  1.2);
2057 }
2058
2059 } // namespace lyx