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