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