]> git.lyx.org Git - lyx.git/blob - src/TextMetrics.cpp
Bug fix: correctly redraw a Row containing and inset which Dimension slightly changed...
[lyx.git] / src / TextMetrics.cpp
1 /**
2  * \file src/TextMetrics.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author John Levon
10  * \author André Pönitz
11  * \author Dekel Tsur
12  * \author Jürgen Vigna
13  * \author Abdelrazak Younes
14  *
15  * Full author contact details are available in file CREDITS.
16  */
17
18 #include <config.h>
19
20 #include "TextMetrics.h"
21
22 #include "Buffer.h"
23 #include "BufferParams.h"
24 #include "BufferView.h"
25 #include "paragraph_funcs.h"
26 #include "ParIterator.h"
27 #include "CoordCache.h"
28 #include "debug.h"
29 #include "FuncRequest.h"
30 #include "FontIterator.h"
31 #include "Color.h"
32 #include "Length.h"
33 #include "LyXRC.h"
34 #include "Text.h"
35 #include "MetricsInfo.h"
36 #include "ParagraphParameters.h"
37 #include "VSpace.h"
38
39 #include "frontends/FontMetrics.h"
40 #include "frontends/Painter.h"
41
42 using std::max;
43 using std::min;
44 using std::endl;
45
46 namespace lyx {
47
48 using frontend::FontMetrics;
49
50 namespace {
51
52 int numberOfSeparators(Paragraph const & par, Row const & row)
53 {
54         pos_type const first = max(row.pos(), par.beginOfBody());
55         pos_type const last = row.endpos() - 1;
56         int n = 0;
57         for (pos_type p = first; p < last; ++p) {
58                 if (par.isSeparator(p))
59                         ++n;
60         }
61         return n;
62 }
63
64
65 int numberOfLabelHfills(Paragraph const & par, Row const & row)
66 {
67         pos_type last = row.endpos() - 1;
68         pos_type first = row.pos();
69
70         // hfill *DO* count at the beginning of paragraphs!
71         if (first) {
72                 while (first < last && par.isHfill(first))
73                         ++first;
74         }
75
76         last = min(last, par.beginOfBody());
77         int n = 0;
78         for (pos_type p = first; p < last; ++p) {
79                 if (par.isHfill(p))
80                         ++n;
81         }
82         return n;
83 }
84
85
86 int numberOfHfills(Paragraph const & par, Row const & row)
87 {
88         pos_type const last = row.endpos();
89         pos_type first = row.pos();
90
91         // hfill *DO* count at the beginning of paragraphs!
92         if (first) {
93                 while (first < last && par.isHfill(first))
94                         ++first;
95         }
96
97         first = max(first, par.beginOfBody());
98
99         int n = 0;
100         for (pos_type p = first; p < last; ++p) {
101                 if (par.isHfill(p))
102                         ++n;
103         }
104         return n;
105 }
106
107 } // namespace anon
108
109 TextMetrics::TextMetrics(BufferView * bv, Text * text)
110         : bv_(bv), text_(text)
111 {
112         BOOST_ASSERT(bv_);
113         max_width_ = bv_->workWidth();
114         dim_.wid = max_width_;
115         dim_.asc = 10;
116         dim_.des = 10;
117
118         //text_->updateLabels(bv->buffer());
119 }
120
121
122 ParagraphMetrics const & TextMetrics::parMetrics(pit_type pit) const
123 {
124         return const_cast<TextMetrics *>(this)->parMetrics(pit, true);
125 }
126
127
128 ParagraphMetrics & TextMetrics::parMetrics(pit_type pit,
129                 bool redo)
130 {
131         ParMetricsCache::iterator pmc_it = par_metrics_.find(pit);
132         if (pmc_it == par_metrics_.end()) {
133                 pmc_it = par_metrics_.insert(
134                         std::make_pair(pit, ParagraphMetrics(text_->getPar(pit)))).first;
135         }
136         if (pmc_it->second.rows().empty() && redo) {
137                 redoParagraph(pit);
138         }
139         return pmc_it->second;
140 }
141
142
143 bool TextMetrics::metrics(MetricsInfo & mi, Dimension & dim)
144 {
145         BOOST_ASSERT(mi.base.textwidth);
146         max_width_ = mi.base.textwidth;
147
148         //lyxerr << "Text::metrics: width: " << mi.base.textwidth
149         //      << " maxWidth: " << max_width_ << "\nfont: " << mi.base.font << endl;
150
151         bool changed = false;
152
153         unsigned int h = 0;
154         unsigned int w = 0;
155         for (pit_type pit = 0, n = text_->paragraphs().size(); pit != n; ++pit) {
156                 changed |= redoParagraph(pit);
157                 ParagraphMetrics const & pm = par_metrics_[pit];
158                 h += pm.height();
159                 if (w < pm.width())
160                         w = pm.width();
161         }
162
163         dim.wid = w;
164         dim.asc = par_metrics_[0].ascent();
165         dim.des = h - dim.asc;
166
167         changed |= dim_ != dim;
168         dim_ = dim;
169         return changed;
170 }
171
172
173 int TextMetrics::rightMargin(ParagraphMetrics const & pm) const
174 {
175         return main_text_? pm.rightMargin(bv_->buffer()) : 0;
176 }
177
178
179 int TextMetrics::rightMargin(pit_type const pit) const
180 {
181         return main_text_? par_metrics_[pit].rightMargin(bv_->buffer()) : 0;
182 }
183
184
185 bool TextMetrics::redoParagraph(pit_type const pit)
186 {
187         Paragraph & par = text_->getPar(pit);
188         // IMPORTANT NOTE: We pass 'false' explicitely in order to not call
189         // redoParagraph() recursively inside parMetrics.
190         Dimension old_dim = parMetrics(pit, false).dim();
191         ParagraphMetrics & pm = par_metrics_[pit];
192         pm.reset(par);
193
194         Buffer & buffer = bv_->buffer();
195         main_text_ = (text_ == &buffer.text());
196         bool changed = false;
197
198         // FIXME This check ought to be done somewhere else. It is the reason
199         // why text_ is not     const. But then, where else to do it?
200         // Well, how can you end up with either (a) a biblio environment that
201         // has no InsetBibitem or (b) a biblio environment with more than one
202         // InsetBibitem? I think the answer is: when paragraphs are merged;
203         // when layout is set; when material is pasted.
204         int const moveCursor = par.checkBiblio(buffer.params().trackChanges);
205         if (moveCursor > 0)
206                 const_cast<Cursor &>(bv_->cursor()).posRight();
207         else if (moveCursor < 0) {
208                 Cursor & cursor = const_cast<Cursor &>(bv_->cursor());
209                 if (cursor.pos() >= -moveCursor)
210                         cursor.posLeft();
211         }
212
213         // Optimisation: this is used in the next two loops
214         // so better to calculate that once here.
215         int const right_margin = rightMargin(pm);
216
217         // redo insets
218         // FIXME: We should always use getFont(), see documentation of
219         // noFontChange() in Inset.h.
220         Font const bufferfont = buffer.params().getFont();
221         InsetList::const_iterator ii = par.insetlist.begin();
222         InsetList::const_iterator iend = par.insetlist.end();
223         for (; ii != iend; ++ii) {
224                 Dimension old_dim = ii->inset->dimension();
225                 Dimension dim;
226                 int const w = max_width_ - text_->leftMargin(buffer, max_width_, pit, ii->pos)
227                         - right_margin;
228                 Font const & font = ii->inset->noFontChange() ?
229                         bufferfont : text_->getFont(buffer, par, ii->pos);
230                 MetricsInfo mi(bv_, font, w);
231                 ii->inset->metrics(mi, dim);
232                 changed |= (old_dim != dim);
233         }
234
235         par.setBeginOfBody();
236         pos_type z = 0;
237         // maximum pixel width of a row
238         int width = max_width_ - right_margin; // - leftMargin(buffer, max_width_, pit, row);
239         do {
240                 Row row(z);
241                 rowBreakPoint(width, pit, row);
242                 setRowWidth(right_margin, pit, row);
243                 setHeightOfRow(pit, row);
244                 pm.rows().push_back(row);
245                 pm.dim().wid = std::max(pm.dim().wid, row.width());
246                 pm.dim().des += row.height();
247                 z = row.endpos();
248         } while (z < par.size());
249
250         // Make sure that if a par ends in newline, there is one more row
251         // under it
252         if (z > 0 && par.isNewline(z - 1)) {
253                 Row row(z);
254                 row.endpos(z);
255                 setRowWidth(right_margin, pit, row);
256                 setHeightOfRow(pit, row);
257                 pm.rows().push_back(row);
258                 pm.dim().des += row.height();
259         }
260
261         pm.dim().asc += pm.rows()[0].ascent();
262         pm.dim().des -= pm.rows()[0].ascent();
263
264         changed |= old_dim.height() != pm.dim().height();
265
266         // Update the row change statuses. The painter will need that info
267         // in order to know which row has to be repainted.
268         pm.updateRowChangeStatus();
269
270         return changed;
271 }
272
273 RowMetrics TextMetrics::computeRowMetrics(pit_type const pit,
274                 Row const & row) const
275 {
276         RowMetrics result;
277         Buffer & buffer = bv_->buffer();
278         Paragraph const & par = text_->getPar(pit);
279
280         double w = dim_.wid - row.width();
281
282         bool const is_rtl = text_->isRTL(buffer, par);
283         if (is_rtl)
284                 result.x = rightMargin(pit);
285         else
286                 result.x = text_->leftMargin(buffer, max_width_, pit, row.pos());
287
288         // is there a manual margin with a manual label
289         LayoutPtr const & layout = par.layout();
290
291         if (layout->margintype == MARGIN_MANUAL
292             && layout->labeltype == LABEL_MANUAL) {
293                 /// We might have real hfills in the label part
294                 int nlh = numberOfLabelHfills(par, row);
295
296                 // A manual label par (e.g. List) has an auto-hfill
297                 // between the label text and the body of the
298                 // paragraph too.
299                 // But we don't want to do this auto hfill if the par
300                 // is empty.
301                 if (!par.empty())
302                         ++nlh;
303
304                 if (nlh && !par.getLabelWidthString().empty())
305                         result.label_hfill = labelFill(pit, row) / double(nlh);
306         }
307
308         // are there any hfills in the row?
309         int const nh = numberOfHfills(par, row);
310
311         if (nh) {
312                 if (w > 0)
313                         result.hfill = w / nh;
314         // we don't have to look at the alignment if it is ALIGN_LEFT and
315         // if the row is already larger then the permitted width as then
316         // we force the LEFT_ALIGN'edness!
317         } else if (int(row.width()) < max_width_) {
318                 // is it block, flushleft or flushright?
319                 // set x how you need it
320                 int align;
321                 if (par.params().align() == LYX_ALIGN_LAYOUT)
322                         align = layout->align;
323                 else
324                         align = par.params().align();
325
326                 // Display-style insets should always be on a centred row
327                 // The test on par.size() is to catch zero-size pars, which
328                 // would trigger the assert in Paragraph::getInset().
329                 //inset = par.size() ? par.getInset(row.pos()) : 0;
330                 if (row.pos() < par.size()
331                     && par.isInset(row.pos()))
332                 {
333                     switch(par.getInset(row.pos())->display()) {
334                         case Inset::AlignLeft:
335                                 align = LYX_ALIGN_BLOCK;
336                                 break;
337                         case Inset::AlignCenter:
338                                 align = LYX_ALIGN_CENTER;
339                                 break;
340                         case Inset::Inline:
341                         case Inset::AlignRight:
342                                 // unchanged (use align)
343                                 break;
344                     }
345                 }
346
347                 switch (align) {
348                 case LYX_ALIGN_BLOCK: {
349                         int const ns = numberOfSeparators(par, row);
350                         bool disp_inset = false;
351                         if (row.endpos() < par.size()) {
352                                 Inset const * in = par.getInset(row.endpos());
353                                 if (in)
354                                         disp_inset = in->display();
355                         }
356                         // If we have separators, this is not the last row of a
357                         // par, does not end in newline, and is not row above a
358                         // display inset... then stretch it
359                         if (ns
360                             && row.endpos() < par.size()
361                             && !par.isNewline(row.endpos() - 1)
362                             && !disp_inset
363                                 ) {
364                                 result.separator = w / ns;
365                         } else if (is_rtl) {
366                                 result.x += w;
367                         }
368                         break;
369                 }
370                 case LYX_ALIGN_RIGHT:
371                         result.x += w;
372                         break;
373                 case LYX_ALIGN_CENTER:
374                         result.x += w / 2;
375                         break;
376                 }
377         }
378
379         if (is_rtl) {
380                 pos_type body_pos = par.beginOfBody();
381                 pos_type end = row.endpos();
382
383                 if (body_pos > 0
384                     && (body_pos > end || !par.isLineSeparator(body_pos - 1)))
385                 {
386                         result.x += theFontMetrics(text_->getLabelFont(buffer, par)).
387                                 width(layout->labelsep);
388                         if (body_pos <= end)
389                                 result.x += result.label_hfill;
390                 }
391         }
392
393         return result;
394 }
395
396
397 int TextMetrics::labelFill(pit_type const pit, Row const & row) const
398 {
399         Buffer & buffer = bv_->buffer();
400         Paragraph const & par = text_->getPar(pit);
401
402         pos_type last = par.beginOfBody();
403         BOOST_ASSERT(last > 0);
404
405         // -1 because a label ends with a space that is in the label
406         --last;
407
408         // a separator at this end does not count
409         if (par.isLineSeparator(last))
410                 --last;
411
412         int w = 0;
413         for (pos_type i = row.pos(); i <= last; ++i)
414                 w += singleWidth(pit, i);
415
416         docstring const & label = par.params().labelWidthString();
417         if (label.empty())
418                 return 0;
419
420         FontMetrics const & fm
421                 = theFontMetrics(text_->getLabelFont(buffer, par));
422
423         return max(0, fm.width(label) - w);
424 }
425
426
427 namespace {
428
429 // this needs special handling - only newlines count as a break point
430 pos_type addressBreakPoint(pos_type i, Paragraph const & par)
431 {
432         pos_type const end = par.size();
433
434         for (; i < end; ++i)
435                 if (par.isNewline(i))
436                         return i + 1;
437
438         return end;
439 }
440
441 };
442
443
444 int TextMetrics::labelEnd(pit_type const pit) const
445 {
446         // labelEnd is only needed if the layout fills a flushleft label.
447         if (text_->getPar(pit).layout()->margintype != MARGIN_MANUAL)
448                 return 0;
449         // return the beginning of the body
450         return text_->leftMargin(bv_->buffer(), max_width_, pit);
451 }
452
453
454 void TextMetrics::rowBreakPoint(int width, pit_type const pit,
455                 Row & row) const
456 {
457         Buffer & buffer = bv_->buffer();
458         ParagraphMetrics const & pm = par_metrics_[pit];
459         Paragraph const & par = text_->getPar(pit);
460         pos_type const end = par.size();
461         pos_type const pos = row.pos();
462         if (pos == end) {
463                 row.endpos(end);
464                 return;
465         }
466
467         if (width < 0) {
468                 row.endpos(end);
469                 return;
470         }
471
472         LayoutPtr const & layout = par.layout();
473
474         if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX) {
475                 row.endpos(addressBreakPoint(pos, par));
476                 return;
477         }
478
479         pos_type const body_pos = par.beginOfBody();
480
481
482         // Now we iterate through until we reach the right margin
483         // or the end of the par, then choose the possible break
484         // nearest that.
485
486         int label_end = labelEnd(pit);
487         int const left = text_->leftMargin(buffer, max_width_, pit, pos);
488         int x = left;
489
490         // pixel width since last breakpoint
491         int chunkwidth = 0;
492
493         FontIterator fi = FontIterator(buffer, *text_, par, pos);
494         pos_type point = end;
495         pos_type i = pos;
496         for ( ; i < end; ++i, ++fi) {
497                 int thiswidth = pm.singleWidth(i, *fi);
498
499                 // add the auto-hfill from label end to the body
500                 if (body_pos && i == body_pos) {
501                         FontMetrics const & fm = theFontMetrics(
502                                 text_->getLabelFont(buffer, par));
503                         int add = fm.width(layout->labelsep);
504                         if (par.isLineSeparator(i - 1))
505                                 add -= singleWidth(pit, i - 1);
506
507                         add = std::max(add, label_end - x);
508                         thiswidth += add;
509                 }
510
511                 x += thiswidth;
512                 chunkwidth += thiswidth;
513
514                 // break before a character that will fall off
515                 // the right of the row
516                 if (x >= width) {
517                         // if no break before, break here
518                         if (point == end || chunkwidth >= width - left) {
519                                 if (i > pos)
520                                         point = i;
521                                 else
522                                         point = i + 1;
523
524                         }
525                         // exit on last registered breakpoint:
526                         break;
527                 }
528
529                 if (par.isNewline(i)) {
530                         point = i + 1;
531                         break;
532                 }
533                 // Break before...
534                 if (i + 1 < end) {
535                         if (par.isInset(i + 1) && par.getInset(i + 1)->display()) {
536                                 point = i + 1;
537                                 break;
538                         }
539                         // ...and after.
540                         if (par.isInset(i) && par.getInset(i)->display()) {
541                                 point = i + 1;
542                                 break;
543                         }
544                 }
545
546                 if (!par.isInset(i) || par.getInset(i)->isChar()) {
547                         // some insets are line separators too
548                         if (par.isLineSeparator(i)) {
549                                 // register breakpoint:
550                                 point = i + 1;
551                                 chunkwidth = 0;
552                         }
553                 }
554         }
555
556         // maybe found one, but the par is short enough.
557         if (i == end && x < width)
558                 point = end;
559
560         // manual labels cannot be broken in LaTeX. But we
561         // want to make our on-screen rendering of footnotes
562         // etc. still break
563         if (body_pos && point < body_pos)
564                 point = body_pos;
565
566         row.endpos(point);
567 }
568
569
570 void TextMetrics::setRowWidth(int right_margin,
571                 pit_type const pit, Row & row) const
572 {
573         Buffer & buffer = bv_->buffer();
574         // get the pure distance
575         pos_type const end = row.endpos();
576         ParagraphMetrics const & pm = par_metrics_[pit];
577         Paragraph const & par = text_->getPar(pit);
578         int w = text_->leftMargin(buffer, max_width_, pit, row.pos());
579         int label_end = labelEnd(pit);
580
581         pos_type const body_pos = par.beginOfBody();
582         pos_type i = row.pos();
583
584         if (i < end) {
585                 FontIterator fi = FontIterator(buffer, *text_, par, i);
586                 for ( ; i < end; ++i, ++fi) {
587                         if (body_pos > 0 && i == body_pos) {
588                                 FontMetrics const & fm = theFontMetrics(
589                                         text_->getLabelFont(buffer, par));
590                                 w += fm.width(par.layout()->labelsep);
591                                 if (par.isLineSeparator(i - 1))
592                                         w -= singleWidth(pit, i - 1);
593                                 w = max(w, label_end);
594                         }
595                         w += pm.singleWidth(i, *fi);
596                 }
597         }
598
599         if (body_pos > 0 && body_pos >= end) {
600                 FontMetrics const & fm = theFontMetrics(
601                         text_->getLabelFont(buffer, par));
602                 w += fm.width(par.layout()->labelsep);
603                 if (end > 0 && par.isLineSeparator(end - 1))
604                         w -= singleWidth(pit, end - 1);
605                 w = max(w, label_end);
606         }
607
608         row.width(w + right_margin);
609 }
610
611
612 void TextMetrics::setHeightOfRow(pit_type const pit,
613                 Row & row)
614 {
615         Paragraph const & par = text_->getPar(pit);
616         // get the maximum ascent and the maximum descent
617         double layoutasc = 0;
618         double layoutdesc = 0;
619         double const dh = defaultRowHeight();
620
621         // ok, let us initialize the maxasc and maxdesc value.
622         // Only the fontsize count. The other properties
623         // are taken from the layoutfont. Nicer on the screen :)
624         LayoutPtr const & layout = par.layout();
625
626         // as max get the first character of this row then it can
627         // increase but not decrease the height. Just some point to
628         // start with so we don't have to do the assignment below too
629         // often.
630         Buffer const & buffer = bv_->buffer();
631         Font font = text_->getFont(buffer, par, row.pos());
632         Font::FONT_SIZE const tmpsize = font.size();
633         font = text_->getLayoutFont(buffer, pit);
634         Font::FONT_SIZE const size = font.size();
635         font.setSize(tmpsize);
636
637         Font labelfont = text_->getLabelFont(buffer, par);
638
639         FontMetrics const & labelfont_metrics = theFontMetrics(labelfont);
640         FontMetrics const & fontmetrics = theFontMetrics(font);
641
642         // these are minimum values
643         double const spacing_val = layout->spacing.getValue()
644                 * text_->spacing(buffer, par);
645         //lyxerr << "spacing_val = " << spacing_val << endl;
646         int maxasc  = int(fontmetrics.maxAscent()  * spacing_val);
647         int maxdesc = int(fontmetrics.maxDescent() * spacing_val);
648
649         // insets may be taller
650         InsetList::const_iterator ii = par.insetlist.begin();
651         InsetList::const_iterator iend = par.insetlist.end();
652         for ( ; ii != iend; ++ii) {
653                 if (ii->pos >= row.pos() && ii->pos < row.endpos()) {
654                         maxasc  = max(maxasc,  ii->inset->ascent());
655                         maxdesc = max(maxdesc, ii->inset->descent());
656                 }
657         }
658
659         // Check if any custom fonts are larger (Asger)
660         // This is not completely correct, but we can live with the small,
661         // cosmetic error for now.
662         int labeladdon = 0;
663         pos_type const pos_end = row.endpos();
664
665         Font::FONT_SIZE maxsize =
666                 par.highestFontInRange(row.pos(), pos_end, size);
667         if (maxsize > font.size()) {
668                 // use standard paragraph font with the maximal size
669                 Font maxfont = font;
670                 maxfont.setSize(maxsize);
671                 FontMetrics const & maxfontmetrics = theFontMetrics(maxfont);
672                 maxasc  = max(maxasc,  maxfontmetrics.maxAscent());
673                 maxdesc = max(maxdesc, maxfontmetrics.maxDescent());
674         }
675
676         // This is nicer with box insets:
677         ++maxasc;
678         ++maxdesc;
679
680         row.ascent(maxasc);
681         ParagraphList const & pars = text_->paragraphs();
682
683         // is it a top line?
684         if (row.pos() == 0) {
685                 BufferParams const & bufparams = buffer.params();
686                 // some parskips VERY EASY IMPLEMENTATION
687                 if (bufparams.paragraph_separation
688                     == BufferParams::PARSEP_SKIP
689                         && par.ownerCode() != Inset::ERT_CODE
690                         && par.ownerCode() != Inset::LISTINGS_CODE
691                         && pit > 0
692                         && ((layout->isParagraph() && par.getDepth() == 0)
693                             || (pars[pit - 1].layout()->isParagraph()
694                                 && pars[pit - 1].getDepth() == 0)))
695                 {
696                                 maxasc += bufparams.getDefSkip().inPixels(*bv_);
697                 }
698
699                 if (par.params().startOfAppendix())
700                         maxasc += int(3 * dh);
701
702                 // This is special code for the chapter, since the label of this
703                 // layout is printed in an extra row
704                 if (layout->counter == "chapter"
705                     && !par.params().labelString().empty()) {
706                         labeladdon = int(labelfont_metrics.maxHeight()
707                                      * layout->spacing.getValue()
708                                      * text_->spacing(buffer, par));
709                 }
710
711                 // special code for the top label
712                 if ((layout->labeltype == LABEL_TOP_ENVIRONMENT
713                      || layout->labeltype == LABEL_BIBLIO
714                      || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
715                     && isFirstInSequence(pit, pars)
716                     && !par.getLabelstring().empty())
717                 {
718                         labeladdon = int(
719                                   labelfont_metrics.maxHeight()
720                                         * layout->spacing.getValue()
721                                         * text_->spacing(buffer, par)
722                                 + (layout->topsep + layout->labelbottomsep) * dh);
723                 }
724
725                 // Add the layout spaces, for example before and after
726                 // a section, or between the items of a itemize or enumerate
727                 // environment.
728
729                 pit_type prev = depthHook(pit, pars, par.getDepth());
730                 Paragraph const & prevpar = pars[prev];
731                 if (prev != pit
732                     && prevpar.layout() == layout
733                     && prevpar.getDepth() == par.getDepth()
734                     && prevpar.getLabelWidthString()
735                                         == par.getLabelWidthString()) {
736                         layoutasc = layout->itemsep * dh;
737                 } else if (pit != 0 || row.pos() != 0) {
738                         if (layout->topsep > 0)
739                                 layoutasc = layout->topsep * dh;
740                 }
741
742                 prev = outerHook(pit, pars);
743                 if (prev != pit_type(pars.size())) {
744                         maxasc += int(pars[prev].layout()->parsep * dh);
745                 } else if (pit != 0) {
746                         Paragraph const & prevpar = pars[pit - 1];
747                         if (prevpar.getDepth() != 0 ||
748                                         prevpar.layout() == layout) {
749                                 maxasc += int(layout->parsep * dh);
750                         }
751                 }
752         }
753
754         // is it a bottom line?
755         if (row.endpos() >= par.size()) {
756                 // add the layout spaces, for example before and after
757                 // a section, or between the items of a itemize or enumerate
758                 // environment
759                 pit_type nextpit = pit + 1;
760                 if (nextpit != pit_type(pars.size())) {
761                         pit_type cpit = pit;
762                         double usual = 0;
763                         double unusual = 0;
764
765                         if (pars[cpit].getDepth() > pars[nextpit].getDepth()) {
766                                 usual = pars[cpit].layout()->bottomsep * dh;
767                                 cpit = depthHook(cpit, pars, pars[nextpit].getDepth());
768                                 if (pars[cpit].layout() != pars[nextpit].layout()
769                                         || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
770                                 {
771                                         unusual = pars[cpit].layout()->bottomsep * dh;
772                                 }
773                                 layoutdesc = max(unusual, usual);
774                         } else if (pars[cpit].getDepth() == pars[nextpit].getDepth()) {
775                                 if (pars[cpit].layout() != pars[nextpit].layout()
776                                         || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
777                                         layoutdesc = int(pars[cpit].layout()->bottomsep * dh);
778                         }
779                 }
780         }
781
782         // incalculate the layout spaces
783         maxasc  += int(layoutasc  * 2 / (2 + pars[pit].getDepth()));
784         maxdesc += int(layoutdesc * 2 / (2 + pars[pit].getDepth()));
785
786         // FIXME: the correct way is to do the following is to move the
787         // following code in another method specially tailored for the
788         // main Text. The following test is thus bogus.
789         // Top and bottom margin of the document (only at top-level)
790         if (main_text_) {
791                 if (pit == 0 && row.pos() == 0)
792                         maxasc += 20;
793                 if (pit + 1 == pit_type(pars.size()) &&
794                     row.endpos() == par.size() &&
795                                 !(row.endpos() > 0 && par.isNewline(row.endpos() - 1)))
796                         maxdesc += 20;
797         }
798
799         row.ascent(maxasc + labeladdon);
800         row.descent(maxdesc);
801 }
802
803
804 // x is an absolute screen coord
805 // returns the column near the specified x-coordinate of the row
806 // x is set to the real beginning of this column
807 pos_type TextMetrics::getColumnNearX(pit_type const pit,
808                 Row const & row, int & x, bool & boundary) const
809 {
810         Buffer const & buffer = bv_->buffer();
811
812         /// For the main Text, it is possible that this pit is not
813         /// yet in the CoordCache when moving cursor up.
814         /// x Paragraph coordinate is always 0 for main text anyway.
815         int const xo = main_text_? 0 : bv_->coordCache().get(text_, pit).x_;
816         x -= xo;
817         RowMetrics const r = computeRowMetrics(pit, row);
818         Paragraph const & par = text_->getPar(pit);
819         Bidi bidi;
820         bidi.computeTables(par, buffer, row);
821
822         pos_type vc = row.pos();
823         pos_type end = row.endpos();
824         pos_type c = 0;
825         LayoutPtr const & layout = par.layout();
826
827         bool left_side = false;
828
829         pos_type body_pos = par.beginOfBody();
830
831         double tmpx = r.x;
832         double last_tmpx = tmpx;
833
834         if (body_pos > 0 &&
835             (body_pos > end || !par.isLineSeparator(body_pos - 1)))
836                 body_pos = 0;
837
838         // check for empty row
839         if (vc == end) {
840                 x = int(tmpx) + xo;
841                 return 0;
842         }
843
844         while (vc < end && tmpx <= x) {
845                 c = bidi.vis2log(vc);
846                 last_tmpx = tmpx;
847                 if (body_pos > 0 && c == body_pos - 1) {
848                         FontMetrics const & fm = theFontMetrics(
849                                 text_->getLabelFont(buffer, par));
850                         tmpx += r.label_hfill + fm.width(layout->labelsep);
851                         if (par.isLineSeparator(body_pos - 1))
852                                 tmpx -= singleWidth(pit, body_pos - 1);
853                 }
854
855                 if (par.hfillExpansion(row, c)) {
856                         tmpx += singleWidth(pit, c);
857                         if (c >= body_pos)
858                                 tmpx += r.hfill;
859                         else
860                                 tmpx += r.label_hfill;
861                 } else if (par.isSeparator(c)) {
862                         tmpx += singleWidth(pit, c);
863                         if (c >= body_pos)
864                                 tmpx += r.separator;
865                 } else {
866                         tmpx += singleWidth(pit, c);
867                 }
868                 ++vc;
869         }
870
871         if ((tmpx + last_tmpx) / 2 > x) {
872                 tmpx = last_tmpx;
873                 left_side = true;
874         }
875
876         BOOST_ASSERT(vc <= end);  // This shouldn't happen.
877
878         boundary = false;
879         // This (rtl_support test) is not needed, but gives
880         // some speedup if rtl_support == false
881         bool const lastrow = lyxrc.rtl_support && row.endpos() == par.size();
882
883         // If lastrow is false, we don't need to compute
884         // the value of rtl.
885         bool const rtl = lastrow ? text_->isRTL(buffer, par) : false;
886         if (lastrow &&
887             ((rtl  &&  left_side && vc == row.pos() && x < tmpx - 5) ||
888              (!rtl && !left_side && vc == end  && x > tmpx + 5)))
889                 c = end;
890         else if (vc == row.pos()) {
891                 c = bidi.vis2log(vc);
892                 if (bidi.level(c) % 2 == 1)
893                         ++c;
894         } else {
895                 c = bidi.vis2log(vc - 1);
896                 bool const rtl = (bidi.level(c) % 2 == 1);
897                 if (left_side == rtl) {
898                         ++c;
899                         boundary = text_->isRTLBoundary(buffer, par, c);
900                 }
901         }
902
903 // I believe this code is not needed anymore (Jug 20050717)
904 #if 0
905         // The following code is necessary because the cursor position past
906         // the last char in a row is logically equivalent to that before
907         // the first char in the next row. That's why insets causing row
908         // divisions -- Newline and display-style insets -- must be treated
909         // specially, so cursor up/down doesn't get stuck in an air gap -- MV
910         // Newline inset, air gap below:
911         if (row.pos() < end && c >= end && par.isNewline(end - 1)) {
912                 if (bidi.level(end -1) % 2 == 0)
913                         tmpx -= singleWidth(pit, end - 1);
914                 else
915                         tmpx += singleWidth(pit, end - 1);
916                 c = end - 1;
917         }
918
919         // Air gap above display inset:
920         if (row.pos() < end && c >= end && end < par.size()
921             && par.isInset(end) && par.getInset(end)->display()) {
922                 c = end - 1;
923         }
924         // Air gap below display inset:
925         if (row.pos() < end && c >= end && par.isInset(end - 1)
926             && par.getInset(end - 1)->display()) {
927                 c = end - 1;
928         }
929 #endif
930
931         x = int(tmpx) + xo;
932         pos_type const col = c - row.pos();
933
934         if (!c || end == par.size())
935                 return col;
936
937         if (c==end && !par.isLineSeparator(c-1) && !par.isNewline(c-1)) {
938                 boundary = true;
939                 return col;
940         }
941
942         return min(col, end - 1 - row.pos());
943 }
944
945
946 pos_type TextMetrics::x2pos(pit_type pit, int row, int x) const
947 {
948         ParagraphMetrics const & pm = par_metrics_[pit];
949         BOOST_ASSERT(!pm.rows().empty());
950         BOOST_ASSERT(row < int(pm.rows().size()));
951         bool bound = false;
952         Row const & r = pm.rows()[row];
953         return r.pos() + getColumnNearX(pit, r, x, bound);
954 }
955
956
957 int TextMetrics::singleWidth(pit_type pit, pos_type pos) const
958 {
959         Buffer const & buffer = bv_->buffer();
960         ParagraphMetrics const & pm = par_metrics_[pit];
961
962         return pm.singleWidth(pos, text_->getFont(buffer, text_->getPar(pit), pos));
963 }
964
965
966 //int Text::pos2x(pit_type pit, pos_type pos) const
967 //{
968 //      ParagraphMetrics const & pm = par_metrics_[pit];
969 //      Row const & r = pm.rows()[row];
970 //      int x = 0;
971 //      pos -= r.pos();
972 //}
973
974
975 int defaultRowHeight()
976 {
977         return int(theFontMetrics(Font(Font::ALL_SANE)).maxHeight() *  1.2);
978 }
979
980 } // namespace lyx