]> git.lyx.org Git - lyx.git/blob - src/TextMetrics.C
typos
[lyx.git] / src / TextMetrics.C
1 /**
2  * \file src/TextMetrics.C
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 "LColor.h"
32 #include "lyxlength.h"
33 #include "lyxrc.h"
34 #include "lyxtext.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, LyXText * 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 << "LyXText::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 = parMetrics(pit);
158                 h += pm.height();
159                 if (w < pm.width())
160                         w = pm.width();
161         }
162
163         dim.wid = w;
164         dim.asc = parMetrics(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         ParagraphMetrics pm(par);
189         Buffer & buffer = *bv_->buffer();
190         main_text_ = (text_ == &buffer.text());
191         bool changed = false;
192
193         // FIXME: this has nothing to do here and is the reason why text_ is not
194         // const.
195         if (par.checkBiblio(buffer.params().trackChanges))
196                 const_cast<LCursor &>(bv_->cursor()).posRight();
197
198         // Optimisation: this is used in the next two loops
199         // so better to calculate that once here.
200         int const right_margin = rightMargin(pm);
201
202         // redo insets
203         // FIXME: We should always use getFont(), see documentation of
204         // noFontChange() in insetbase.h.
205         LyXFont const bufferfont = buffer.params().getFont();
206         InsetList::const_iterator ii = par.insetlist.begin();
207         InsetList::const_iterator iend = par.insetlist.end();
208         for (; ii != iend; ++ii) {
209                 Dimension dim;
210                 int const w = max_width_ - text_->leftMargin(buffer, max_width_, pit, ii->pos)
211                         - right_margin;
212                 LyXFont const & font = ii->inset->noFontChange() ?
213                         bufferfont : text_->getFont(buffer, par, ii->pos);
214                 MetricsInfo mi(bv_, font, w);
215                 changed |= ii->inset->metrics(mi, dim);
216         }
217
218         // rebreak the paragraph
219         pm.rows().clear();
220
221         par.setBeginOfBody();
222         pos_type z = 0;
223         // maximum pixel width of a row
224         int width = max_width_ - right_margin; // - leftMargin(buffer, max_width_, pit, row);
225         do {
226                 Row row(z);
227                 rowBreakPoint(width, pit, row);
228                 setRowWidth(right_margin, pit, row);
229                 setHeightOfRow(pit, row);
230                 pm.rows().push_back(row);
231                 pm.dim().wid = std::max(pm.dim().wid, row.width());
232                 pm.dim().des += row.height();
233                 z = row.endpos();
234         } while (z < par.size());
235
236         // Make sure that if a par ends in newline, there is one more row
237         // under it
238         // FIXME this is a dirty trick. Now the _same_ position in the
239         // paragraph occurs in _two_ different rows, and has two different
240         // display positions, leading to weird behaviour when moving up/down.
241         if (z > 0 && par.isNewline(z - 1)) {
242                 Row row(z - 1);
243                 row.endpos(z - 1);
244                 setRowWidth(right_margin, pit, row);
245                 setHeightOfRow(pit, row);
246                 pm.rows().push_back(row);
247                 pm.dim().des += row.height();
248         }
249
250         pm.dim().asc += pm.rows()[0].ascent();
251         pm.dim().des -= pm.rows()[0].ascent();
252
253         // IMPORTANT NOTE: We pass 'false' explicitely in order to not call
254         // redoParagraph() recursively inside parMetrics.
255         Dimension old_dim = parMetrics(pit, false).dim();
256
257         changed |= old_dim.height() != pm.dim().height();
258
259         par_metrics_[pit] = pm;
260
261         // Update the row change statuses. The painter will need that info
262         // in order to know which row has to be repainted.
263         par_metrics_[pit].updateRowChangeStatus();
264
265         return changed;
266 }
267
268 RowMetrics TextMetrics::computeRowMetrics(pit_type const pit,
269                 Row const & row) const
270 {
271         RowMetrics result;
272         Buffer & buffer = *bv_->buffer();
273         Paragraph const & par = text_->getPar(pit);
274
275         double w = dim_.wid - row.width();
276
277         bool const is_rtl = text_->isRTL(buffer, par);
278         if (is_rtl)
279                 result.x = rightMargin(pit);
280         else
281                 result.x = text_->leftMargin(buffer, max_width_, pit, row.pos());
282
283         // is there a manual margin with a manual label
284         LyXLayout_ptr const & layout = par.layout();
285
286         if (layout->margintype == MARGIN_MANUAL
287             && layout->labeltype == LABEL_MANUAL) {
288                 /// We might have real hfills in the label part
289                 int nlh = numberOfLabelHfills(par, row);
290
291                 // A manual label par (e.g. List) has an auto-hfill
292                 // between the label text and the body of the
293                 // paragraph too.
294                 // But we don't want to do this auto hfill if the par
295                 // is empty.
296                 if (!par.empty())
297                         ++nlh;
298
299                 if (nlh && !par.getLabelWidthString().empty())
300                         result.label_hfill = labelFill(par, row) / double(nlh);
301         }
302
303         // are there any hfills in the row?
304         int const nh = numberOfHfills(par, row);
305
306         if (nh) {
307                 if (w > 0)
308                         result.hfill = w / nh;
309         // we don't have to look at the alignment if it is ALIGN_LEFT and
310         // if the row is already larger then the permitted width as then
311         // we force the LEFT_ALIGN'edness!
312         } else if (int(row.width()) < max_width_) {
313                 // is it block, flushleft or flushright?
314                 // set x how you need it
315                 int align;
316                 if (par.params().align() == LYX_ALIGN_LAYOUT)
317                         align = layout->align;
318                 else
319                         align = par.params().align();
320
321                 // Display-style insets should always be on a centred row
322                 // The test on par.size() is to catch zero-size pars, which
323                 // would trigger the assert in Paragraph::getInset().
324                 //inset = par.size() ? par.getInset(row.pos()) : 0;
325                 if (!par.empty()
326                     && par.isInset(row.pos())
327                     && par.getInset(row.pos())->display())
328                 {
329                         align = LYX_ALIGN_CENTER;
330                 }
331
332                 switch (align) {
333                 case LYX_ALIGN_BLOCK: {
334                         int const ns = numberOfSeparators(par, row);
335                         bool disp_inset = false;
336                         if (row.endpos() < par.size()) {
337                                 InsetBase const * in = par.getInset(row.endpos());
338                                 if (in)
339                                         disp_inset = in->display();
340                         }
341                         // If we have separators, this is not the last row of a
342                         // par, does not end in newline, and is not row above a
343                         // display inset... then stretch it
344                         if (ns
345                             && row.endpos() < par.size()
346                             && !par.isNewline(row.endpos() - 1)
347                             && !disp_inset
348                                 ) {
349                                 result.separator = w / ns;
350                         } else if (is_rtl) {
351                                 result.x += w;
352                         }
353                         break;
354                 }
355                 case LYX_ALIGN_RIGHT:
356                         result.x += w;
357                         break;
358                 case LYX_ALIGN_CENTER:
359                         result.x += w / 2;
360                         break;
361                 }
362         }
363
364         text_->bidi.computeTables(par, buffer, row);
365         if (is_rtl) {
366                 pos_type body_pos = par.beginOfBody();
367                 pos_type end = row.endpos();
368
369                 if (body_pos > 0
370                     && (body_pos > end || !par.isLineSeparator(body_pos - 1)))
371                 {
372                         docstring const lsep = from_utf8(layout->labelsep);
373                         result.x += theFontMetrics(text_->getLabelFont(buffer, par)).width(lsep);
374                         if (body_pos <= end)
375                                 result.x += result.label_hfill;
376                 }
377         }
378
379         return result;
380 }
381
382
383 int TextMetrics::labelFill(Paragraph const & par, Row const & row) const
384 {
385         Buffer & buffer = *bv_->buffer();
386
387         pos_type last = par.beginOfBody();
388         BOOST_ASSERT(last > 0);
389
390         // -1 because a label ends with a space that is in the label
391         --last;
392
393         // a separator at this end does not count
394         if (par.isLineSeparator(last))
395                 --last;
396
397         int w = 0;
398         for (pos_type i = row.pos(); i <= last; ++i)
399                 w += text_->singleWidth(buffer, par, i);
400
401         docstring const & label = par.params().labelWidthString();
402         if (label.empty())
403                 return 0;
404
405         FontMetrics const & fm 
406                 = theFontMetrics(text_->getLabelFont(buffer, par));
407
408         return max(0, fm.width(label) - w);
409 }
410
411
412 namespace {
413
414 // this needs special handling - only newlines count as a break point
415 pos_type addressBreakPoint(pos_type i, Paragraph const & par)
416 {
417         pos_type const end = par.size();
418
419         for (; i < end; ++i)
420                 if (par.isNewline(i))
421                         return i + 1;
422
423         return end;
424 }
425
426 };
427
428
429 int TextMetrics::labelEnd(pit_type const pit) const
430 {
431         // labelEnd is only needed if the layout fills a flushleft label.
432         if (text_->getPar(pit).layout()->margintype != MARGIN_MANUAL)
433                 return 0;
434         // return the beginning of the body
435         return text_->leftMargin(*bv_->buffer(), max_width_, pit);
436 }
437
438
439 void TextMetrics::rowBreakPoint(int width, pit_type const pit,
440                 Row & row) const
441 {
442         Buffer & buffer = *bv_->buffer();
443         Paragraph const & par = text_->getPar(pit);
444         pos_type const end = par.size();
445         pos_type const pos = row.pos();
446         if (pos == end) {
447                 row.endpos(end);
448                 return;
449         }
450
451         if (width < 0) {
452                 row.endpos(end);
453                 return;
454         }
455
456         LyXLayout_ptr const & layout = par.layout();
457
458         if (layout->margintype == MARGIN_RIGHT_ADDRESS_BOX) {
459                 row.endpos(addressBreakPoint(pos, par));
460                 return;
461         }
462
463         pos_type const body_pos = par.beginOfBody();
464
465
466         // Now we iterate through until we reach the right margin
467         // or the end of the par, then choose the possible break
468         // nearest that.
469
470         int label_end = labelEnd(pit);
471         int const left = text_->leftMargin(buffer, max_width_, pit, pos);
472         int x = left;
473
474         // pixel width since last breakpoint
475         int chunkwidth = 0;
476
477         FontIterator fi = FontIterator(buffer, *text_, par, pos);
478         pos_type point = end;
479         pos_type i = pos;
480         FontMetrics const & fm = theFontMetrics(text_->getLabelFont(buffer, par));
481         for ( ; i < end; ++i, ++fi) {
482                 char_type const c = par.getChar(i);
483                 int thiswidth = text_->singleWidth(par, i, c, *fi);
484
485                 // add the auto-hfill from label end to the body
486                 if (body_pos && i == body_pos) {
487                         docstring lsep = from_utf8(layout->labelsep);
488                         int add = fm.width(lsep);
489                         if (par.isLineSeparator(i - 1))
490                                 add -= text_->singleWidth(buffer, par, i - 1);
491
492                         add = std::max(add, label_end - x);
493                         thiswidth += add;
494                 }
495
496                 x += thiswidth;
497                 chunkwidth += thiswidth;
498
499                 // break before a character that will fall off
500                 // the right of the row
501                 if (x >= width) {
502                         // if no break before, break here
503                         if (point == end || chunkwidth >= width - left) {
504                                 if (i > pos)
505                                         point = i;
506                                 else
507                                         point = i + 1;
508
509                         }
510                         // exit on last registered breakpoint:
511                         break;
512                 }
513
514                 if (par.isNewline(i)) {
515                         point = i + 1;
516                         break;
517                 }
518                 // Break before...
519                 if (i + 1 < end) {
520                         if (par.isInset(i + 1) && par.getInset(i + 1)->display()) {
521                                 point = i + 1;
522                                 break;
523                         }
524                         // ...and after.
525                         if (par.isInset(i) && par.getInset(i)->display()) {
526                                 point = i + 1;
527                                 break;
528                         }
529                 }
530
531                 if (!par.isInset(i) || par.getInset(i)->isChar()) {
532                         // some insets are line separators too
533                         if (par.isLineSeparator(i)) {
534                                 // register breakpoint:
535                                 point = i + 1;
536                                 chunkwidth = 0;
537                         }
538                 }
539         }
540
541         // maybe found one, but the par is short enough.
542         if (i == end && x < width)
543                 point = end;
544
545         // manual labels cannot be broken in LaTeX. But we
546         // want to make our on-screen rendering of footnotes
547         // etc. still break
548         if (body_pos && point < body_pos)
549                 point = body_pos;
550
551         row.endpos(point);
552 }
553
554
555 void TextMetrics::setRowWidth(int right_margin,
556                 pit_type const pit, Row & row) const
557 {
558         Buffer & buffer = *bv_->buffer();
559         // get the pure distance
560         pos_type const end = row.endpos();
561
562         Paragraph const & par = text_->getPar(pit);
563         docstring const labelsep = from_utf8(par.layout()->labelsep);
564         int w = text_->leftMargin(buffer, max_width_, pit, row.pos());
565         int label_end = labelEnd(pit);
566
567         pos_type const body_pos = par.beginOfBody();
568         pos_type i = row.pos();
569
570         FontMetrics const & fm = theFontMetrics(text_->getLabelFont(buffer, par));
571
572         if (i < end) {
573                 FontIterator fi = FontIterator(buffer, *text_, par, i);
574                 for ( ; i < end; ++i, ++fi) {
575                         if (body_pos > 0 && i == body_pos) {
576                                 w += fm.width(labelsep);
577                                 if (par.isLineSeparator(i - 1))
578                                         w -= text_->singleWidth(buffer, par, i - 1);
579                                 w = max(w, label_end);
580                         }
581                         char_type const c = par.getChar(i);
582                         w += text_->singleWidth(par, i, c, *fi);
583                 }
584         }
585
586         if (body_pos > 0 && body_pos >= end) {
587                 w += fm.width(labelsep);
588                 if (end > 0 && par.isLineSeparator(end - 1))
589                         w -= text_->singleWidth(buffer, par, end - 1);
590                 w = max(w, label_end);
591         }
592
593         row.width(w + right_margin);
594 }
595
596
597 void TextMetrics::setHeightOfRow(pit_type const pit,
598                 Row & row)
599 {
600         Paragraph const & par = text_->getPar(pit);
601         // get the maximum ascent and the maximum descent
602         double layoutasc = 0;
603         double layoutdesc = 0;
604         double const dh = defaultRowHeight();
605
606         // ok, let us initialize the maxasc and maxdesc value.
607         // Only the fontsize count. The other properties
608         // are taken from the layoutfont. Nicer on the screen :)
609         LyXLayout_ptr const & layout = par.layout();
610
611         // as max get the first character of this row then it can
612         // increase but not decrease the height. Just some point to
613         // start with so we don't have to do the assignment below too
614         // often.
615         Buffer const & buffer = *bv_->buffer();
616         LyXFont font = text_->getFont(buffer, par, row.pos());
617         LyXFont::FONT_SIZE const tmpsize = font.size();
618         font = text_->getLayoutFont(buffer, pit);
619         LyXFont::FONT_SIZE const size = font.size();
620         font.setSize(tmpsize);
621
622         LyXFont labelfont = text_->getLabelFont(buffer, par);
623
624         FontMetrics const & labelfont_metrics = theFontMetrics(labelfont);
625         FontMetrics const & fontmetrics = theFontMetrics(font);
626
627         // these are minimum values
628         double const spacing_val = layout->spacing.getValue()
629                 * text_->spacing(buffer, par);
630         //lyxerr << "spacing_val = " << spacing_val << endl;
631         int maxasc  = int(fontmetrics.maxAscent()  * spacing_val);
632         int maxdesc = int(fontmetrics.maxDescent() * spacing_val);
633
634         // insets may be taller
635         InsetList::const_iterator ii = par.insetlist.begin();
636         InsetList::const_iterator iend = par.insetlist.end();
637         for ( ; ii != iend; ++ii) {
638                 if (ii->pos >= row.pos() && ii->pos < row.endpos()) {
639                         maxasc  = max(maxasc,  ii->inset->ascent());
640                         maxdesc = max(maxdesc, ii->inset->descent());
641                 }
642         }
643
644         // Check if any custom fonts are larger (Asger)
645         // This is not completely correct, but we can live with the small,
646         // cosmetic error for now.
647         int labeladdon = 0;
648         pos_type const pos_end = row.endpos();
649
650         LyXFont::FONT_SIZE maxsize =
651                 par.highestFontInRange(row.pos(), pos_end, size);
652         if (maxsize > font.size()) {
653                 font.setSize(maxsize);
654                 maxasc  = max(maxasc,  fontmetrics.maxAscent());
655                 maxdesc = max(maxdesc, fontmetrics.maxDescent());
656         }
657
658         // This is nicer with box insets:
659         ++maxasc;
660         ++maxdesc;
661
662         row.ascent(maxasc);
663         ParagraphList const & pars = text_->paragraphs();
664
665         // is it a top line?
666         if (row.pos() == 0) {
667                 BufferParams const & bufparams = buffer.params();
668                 // some parksips VERY EASY IMPLEMENTATION
669                 if (bufparams.paragraph_separation
670                     == BufferParams::PARSEP_SKIP
671                         && pit > 0
672                         && ((layout->isParagraph() && par.getDepth() == 0)
673                             || (pars[pit - 1].layout()->isParagraph()
674                                 && pars[pit - 1].getDepth() == 0)))
675                 {
676                                 maxasc += bufparams.getDefSkip().inPixels(*bv_);
677                 }
678
679                 if (par.params().startOfAppendix())
680                         maxasc += int(3 * dh);
681
682                 // This is special code for the chapter, since the label of this
683                 // layout is printed in an extra row
684                 if (layout->counter == "chapter"
685                     && !par.params().labelString().empty()) {
686                         labeladdon = int(labelfont_metrics.maxHeight()
687                                      * layout->spacing.getValue()
688                                      * text_->spacing(buffer, par));
689                 }
690
691                 // special code for the top label
692                 if ((layout->labeltype == LABEL_TOP_ENVIRONMENT
693                      || layout->labeltype == LABEL_BIBLIO
694                      || layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)
695                     && isFirstInSequence(pit, pars)
696                     && !par.getLabelstring().empty())
697                 {
698                         labeladdon = int(
699                                   labelfont_metrics.maxHeight()
700                                         * layout->spacing.getValue()
701                                         * text_->spacing(buffer, par)
702                                 + (layout->topsep + layout->labelbottomsep) * dh);
703                 }
704
705                 // Add the layout spaces, for example before and after
706                 // a section, or between the items of a itemize or enumerate
707                 // environment.
708
709                 pit_type prev = depthHook(pit, pars, par.getDepth());
710                 Paragraph const & prevpar = pars[prev];
711                 if (prev != pit
712                     && prevpar.layout() == layout
713                     && prevpar.getDepth() == par.getDepth()
714                     && prevpar.getLabelWidthString()
715                                         == par.getLabelWidthString()) {
716                         layoutasc = layout->itemsep * dh;
717                 } else if (pit != 0 || row.pos() != 0) {
718                         if (layout->topsep > 0)
719                                 layoutasc = layout->topsep * dh;
720                 }
721
722                 prev = outerHook(pit, pars);
723                 if (prev != pit_type(pars.size())) {
724                         maxasc += int(pars[prev].layout()->parsep * dh);
725                 } else if (pit != 0) {
726                         Paragraph const & prevpar = pars[pit - 1];
727                         if (prevpar.getDepth() != 0 ||
728                                         prevpar.layout() == layout) {
729                                 maxasc += int(layout->parsep * dh);
730                         }
731                 }
732         }
733
734         // is it a bottom line?
735         if (row.endpos() >= par.size()) {
736                 // add the layout spaces, for example before and after
737                 // a section, or between the items of a itemize or enumerate
738                 // environment
739                 pit_type nextpit = pit + 1;
740                 if (nextpit != pit_type(pars.size())) {
741                         pit_type cpit = pit;
742                         double usual = 0;
743                         double unusual = 0;
744
745                         if (pars[cpit].getDepth() > pars[nextpit].getDepth()) {
746                                 usual = pars[cpit].layout()->bottomsep * dh;
747                                 cpit = depthHook(cpit, pars, pars[nextpit].getDepth());
748                                 if (pars[cpit].layout() != pars[nextpit].layout()
749                                         || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
750                                 {
751                                         unusual = pars[cpit].layout()->bottomsep * dh;
752                                 }
753                                 layoutdesc = max(unusual, usual);
754                         } else if (pars[cpit].getDepth() == pars[nextpit].getDepth()) {
755                                 if (pars[cpit].layout() != pars[nextpit].layout()
756                                         || pars[nextpit].getLabelWidthString() != pars[cpit].getLabelWidthString())
757                                         layoutdesc = int(pars[cpit].layout()->bottomsep * dh);
758                         }
759                 }
760         }
761
762         // incalculate the layout spaces
763         maxasc  += int(layoutasc  * 2 / (2 + pars[pit].getDepth()));
764         maxdesc += int(layoutdesc * 2 / (2 + pars[pit].getDepth()));
765
766         // FIXME: the correct way is to do the following is to move the 
767         // following code in another method specially tailored for the 
768         // main LyXText. The following test is thus bogus.
769         // Top and bottom margin of the document (only at top-level)
770         if (main_text_) {
771                 if (pit == 0 && row.pos() == 0)
772                         maxasc += 20;
773                 if (pit + 1 == pit_type(pars.size()) &&
774                     row.endpos() == par.size())
775                         maxdesc += 20;
776         }
777
778         row.ascent(maxasc + labeladdon);
779         row.descent(maxdesc);
780 }
781
782
783 // x is an absolute screen coord
784 // returns the column near the specified x-coordinate of the row
785 // x is set to the real beginning of this column
786 pos_type TextMetrics::getColumnNearX(pit_type const pit,
787                 Row const & row, int & x, bool & boundary) const
788 {
789         Buffer const & buffer = *bv_->buffer();
790
791         /// For the main LyXText, it is possible that this pit is not
792         /// yet in the CoordCache when moving cursor up.
793         /// x Paragraph coordinate is always 0 for main text anyway.
794         int const xo = main_text_? 0 : bv_->coordCache().get(text_, pit).x_;
795         x -= xo;
796         RowMetrics const r = computeRowMetrics(pit, row);
797         Paragraph const & par = text_->getPar(pit);
798
799         pos_type vc = row.pos();
800         pos_type end = row.endpos();
801         pos_type c = 0;
802         LyXLayout_ptr const & layout = par.layout();
803
804         bool left_side = false;
805
806         pos_type body_pos = par.beginOfBody();
807
808         double tmpx = r.x;
809         double last_tmpx = tmpx;
810
811         if (body_pos > 0 &&
812             (body_pos > end || !par.isLineSeparator(body_pos - 1)))
813                 body_pos = 0;
814
815         // check for empty row
816         if (vc == end) {
817                 x = int(tmpx) + xo;
818                 return 0;
819         }
820
821         frontend::FontMetrics const & fm 
822                 = theFontMetrics(text_->getLabelFont(buffer, par));
823
824         while (vc < end && tmpx <= x) {
825                 c = text_->bidi.vis2log(vc);
826                 last_tmpx = tmpx;
827                 if (body_pos > 0 && c == body_pos - 1) {
828                         // FIXME UNICODE
829                         docstring const lsep = from_utf8(layout->labelsep);
830                         tmpx += r.label_hfill + fm.width(lsep);
831                         if (par.isLineSeparator(body_pos - 1))
832                                 tmpx -= text_->singleWidth(buffer, par, body_pos - 1);
833                 }
834
835                 if (par.hfillExpansion(row, c)) {
836                         tmpx += text_->singleWidth(buffer, par, c);
837                         if (c >= body_pos)
838                                 tmpx += r.hfill;
839                         else
840                                 tmpx += r.label_hfill;
841                 } else if (par.isSeparator(c)) {
842                         tmpx += text_->singleWidth(buffer, par, c);
843                         if (c >= body_pos)
844                                 tmpx += r.separator;
845                 } else {
846                         tmpx += text_->singleWidth(buffer, par, c);
847                 }
848                 ++vc;
849         }
850
851         if ((tmpx + last_tmpx) / 2 > x) {
852                 tmpx = last_tmpx;
853                 left_side = true;
854         }
855
856         BOOST_ASSERT(vc <= end);  // This shouldn't happen.
857
858         boundary = false;
859         // This (rtl_support test) is not needed, but gives
860         // some speedup if rtl_support == false
861         bool const lastrow = lyxrc.rtl_support && row.endpos() == par.size();
862
863         // If lastrow is false, we don't need to compute
864         // the value of rtl.
865         bool const rtl = lastrow ? text_->isRTL(buffer, par) : false;
866         if (lastrow &&
867             ((rtl  &&  left_side && vc == row.pos() && x < tmpx - 5) ||
868              (!rtl && !left_side && vc == end  && x > tmpx + 5)))
869                 c = end;
870         else if (vc == row.pos()) {
871                 c = text_->bidi.vis2log(vc);
872                 if (text_->bidi.level(c) % 2 == 1)
873                         ++c;
874         } else {
875                 c = text_->bidi.vis2log(vc - 1);
876                 bool const rtl = (text_->bidi.level(c) % 2 == 1);
877                 if (left_side == rtl) {
878                         ++c;
879                         boundary = text_->bidi.isBoundary(buffer, par, c);
880                 }
881         }
882
883 // I believe this code is not needed anymore (Jug 20050717)
884 #if 0
885         // The following code is necessary because the cursor position past
886         // the last char in a row is logically equivalent to that before
887         // the first char in the next row. That's why insets causing row
888         // divisions -- Newline and display-style insets -- must be treated
889         // specially, so cursor up/down doesn't get stuck in an air gap -- MV
890         // Newline inset, air gap below:
891         if (row.pos() < end && c >= end && par.isNewline(end - 1)) {
892                 if (text_->bidi.level(end -1) % 2 == 0)
893                         tmpx -= text_->singleWidth(buffer, par, end - 1);
894                 else
895                         tmpx += text_->singleWidth(buffer, par, end - 1);
896                 c = end - 1;
897         }
898
899         // Air gap above display inset:
900         if (row.pos() < end && c >= end && end < par.size()
901             && par.isInset(end) && par.getInset(end)->display()) {
902                 c = end - 1;
903         }
904         // Air gap below display inset:
905         if (row.pos() < end && c >= end && par.isInset(end - 1)
906             && par.getInset(end - 1)->display()) {
907                 c = end - 1;
908         }
909 #endif
910
911         x = int(tmpx) + xo;
912         pos_type const col = c - row.pos();
913
914         if (!c || end == par.size())
915                 return col;
916
917         if (c==end && !par.isLineSeparator(c-1) && !par.isNewline(c-1)) {
918                 boundary = true;
919                 return col;
920         }
921
922         return min(col, end - 1 - row.pos());
923 }
924
925
926 pos_type TextMetrics::x2pos(pit_type pit, int row, int x) const
927 {
928         ParagraphMetrics const & pm = parMetrics(pit);
929         BOOST_ASSERT(!pm.rows().empty());
930         BOOST_ASSERT(row < int(pm.rows().size()));
931         bool bound = false;
932         Row const & r = pm.rows()[row];
933         return r.pos() + getColumnNearX(pit, r, x, bound);
934 }
935
936
937 //int LyXText::pos2x(pit_type pit, pos_type pos) const
938 //{
939 //      ParagraphMetrics const & pm = parMetrics(pit);
940 //      Row const & r = pm.rows()[row];
941 //      int x = 0;
942 //      pos -= r.pos();
943 //}
944
945
946 int defaultRowHeight()
947 {
948         return int(theFontMetrics(LyXFont(LyXFont::ALL_SANE)).maxHeight() *  1.2);
949 }
950
951 } // namespace lyx