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