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