]> git.lyx.org Git - lyx.git/blob - src/rowpainter.cpp
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / rowpainter.cpp
1 /**
2  * \file rowpainter.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author various
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "rowpainter.h"
15
16 #include "Bidi.h"
17 #include "Buffer.h"
18 #include "CoordCache.h"
19 #include "Cursor.h"
20 #include "debug.h"
21 #include "BufferParams.h"
22 #include "BufferView.h"
23 #include "Encoding.h"
24 #include "gettext.h"
25 #include "Language.h"
26 #include "Color.h"
27 #include "LyXRC.h"
28 #include "Row.h"
29 #include "MetricsInfo.h"
30 #include "Paragraph.h"
31 #include "ParagraphMetrics.h"
32 #include "paragraph_funcs.h"
33 #include "ParagraphParameters.h"
34 #include "TextMetrics.h"
35 #include "VSpace.h"
36
37 #include "frontends/FontMetrics.h"
38 #include "frontends/Painter.h"
39
40 #include "insets/InsetText.h"
41
42 #include "support/textutils.h"
43
44 #include <boost/crc.hpp>
45
46
47 namespace lyx {
48
49 using frontend::Painter;
50 using frontend::FontMetrics;
51
52 using std::endl;
53 using std::max;
54 using std::string;
55
56
57 namespace {
58
59 /// Flag: do a full redraw of inside text of inset
60 /// Working variable indicating a full screen refresh
61 bool refreshInside;
62
63 /**
64  * A class used for painting an individual row of text.
65  */
66 class RowPainter {
67 public:
68         /// initialise and run painter
69         RowPainter(PainterInfo & pi, Text const & text,
70                 pit_type pit, Row const & row, Bidi & bidi, int x, int y);
71
72         // paint various parts
73         void paintAppendix();
74         void paintDepthBar();
75         void paintChangeBar();
76         void paintFirst();
77         void paintLast();
78         void paintText();
79         int maxWidth() { return max_width_; }
80
81 private:
82         void paintForeignMark(double orig_x, Font const & font, int desc = 0);
83         void paintHebrewComposeChar(pos_type & vpos, Font const & font);
84         void paintArabicComposeChar(pos_type & vpos, Font const & font);
85         void paintChars(pos_type & vpos, Font const & font,
86                         bool hebrew, bool arabic);
87         int paintAppendixStart(int y);
88         void paintFromPos(pos_type & vpos);
89         void paintInset(pos_type const pos, Font const & font);
90
91         /// return left margin
92         int leftMargin() const;
93
94         /// return the label font for this row
95         Font const getLabelFont() const;
96
97         /// bufferview to paint on
98         BufferView & bv_;
99
100         /// Painter to use
101         Painter & pain_;
102
103         /// Text for the row
104         Text const & text_;
105         TextMetrics & text_metrics_;
106         ParagraphList const & pars_;
107
108         /// The row to paint
109         Row const & row_;
110
111         /// Row's paragraph
112         pit_type const pit_;
113         Paragraph const & par_;
114         ParagraphMetrics const & pm_;
115         int max_width_;
116
117         /// bidi cache, comes from outside the rowpainter because
118         /// rowpainters are normally created in a for loop and there only
119         /// one of them is active at a time.
120         Bidi & bidi_;
121
122         /// is row erased? (change tracking)
123         bool erased_;
124
125         // Looks ugly - is
126         double const xo_;
127         int const yo_;    // current baseline
128         double x_;
129         int width_;
130         double separator_;
131         double hfill_;
132         double label_hfill_;
133 };
134
135
136 RowPainter::RowPainter(PainterInfo & pi,
137         Text const & text, pit_type pit, Row const & row, Bidi & bidi, int x, int y)
138         : bv_(*pi.base.bv), pain_(pi.pain), text_(text),
139           text_metrics_(pi.base.bv->textMetrics(&text)),
140           pars_(text.paragraphs()),
141           row_(row), pit_(pit), par_(text.paragraphs()[pit]),
142           pm_(text_metrics_.parMetrics(pit)),
143           max_width_(bv_.workWidth()),
144                 bidi_(bidi), erased_(pi.erased_),
145           xo_(x), yo_(y), width_(text_metrics_.width())
146 {
147         RowMetrics m = text_metrics_.computeRowMetrics(pit_, row_);
148         bidi_.computeTables(par_, *bv_.buffer(), row_);
149         x_ = m.x + xo_;
150
151         //lyxerr << "RowPainter: x: " << x_ << " xo: " << xo_ << " yo: " << yo_ << endl;
152         //row_.dump();
153
154         separator_ = m.separator;
155         hfill_ = m.hfill;
156         label_hfill_ = m.label_hfill;
157
158         BOOST_ASSERT(pit >= 0);
159         BOOST_ASSERT(pit < int(text.paragraphs().size()));
160 }
161
162
163 Font const RowPainter::getLabelFont() const
164 {
165         return text_.getLabelFont(*bv_.buffer(), par_);
166 }
167
168
169 int RowPainter::leftMargin() const
170 {
171         return text_.leftMargin(*bv_.buffer(), max_width_, pit_, row_.pos());
172 }
173
174
175 // If you want to debug inset metrics uncomment the following line:
176 // #define DEBUG_METRICS
177 // This draws green lines around each inset.
178
179
180 void RowPainter::paintInset(pos_type const pos, Font const & font)
181 {
182         Inset const * inset = par_.getInset(pos);
183         BOOST_ASSERT(inset);
184         PainterInfo pi(const_cast<BufferView *>(&bv_), pain_);
185         // FIXME: We should always use font, see documentation of
186         // noFontChange() in Inset.h.
187         pi.base.font = inset->noFontChange() ?
188                 bv_.buffer()->params().getFont() :
189                 font;
190         pi.ltr_pos = (bidi_.level(pos) % 2 == 0);
191         pi.erased_ = erased_ || par_.isDeleted(pos);
192 #ifdef DEBUG_METRICS
193         int const x1 = int(x_);
194 #endif
195         bv_.coordCache().insets().add(inset, int(x_), yo_);
196         InsetText const * const in = inset->asTextInset();
197         // non-wide insets are painted completely. Recursive
198         bool tmp = refreshInside;
199         if (!in || !in->wide()) {
200                 refreshInside = true;
201                 LYXERR(Debug::PAINTING) << endl << "Paint inset fully" << endl;
202         }
203         if (refreshInside)
204                 inset->drawSelection(pi, int(x_), yo_);
205         inset->draw(pi, int(x_), yo_);
206         refreshInside = tmp;
207         x_ += inset->width();
208 #ifdef DEBUG_METRICS
209         Dimension dim;
210         BOOST_ASSERT(max_witdh_ > 0);
211         int right_margin = text_metrics_.rightMargin(pm_);
212         int const w = max_witdh_ - leftMargin() - right_margin;
213         MetricsInfo mi(&bv_, font, w);
214         inset->metrics(mi, dim);
215         if (inset->width() > dim.wid)
216                 lyxerr << "Error: inset " << to_ascii(inset->getInsetName())
217                        << " draw width " << inset->width()
218                        << "> metrics width " << dim.wid << "." << std::endl;
219         if (inset->ascent() > dim.asc)
220                 lyxerr << "Error: inset " << to_ascii(inset->getInsetName())
221                        << " draw ascent " << inset->ascent()
222                        << "> metrics ascent " << dim.asc << "." << std::endl;
223         if (inset->descent() > dim.des)
224                 lyxerr << "Error: inset " << to_ascii(inset->getInsetName())
225                        << " draw ascent " << inset->descent()
226                        << "> metrics descent " << dim.des << "." << std::endl;
227         BOOST_ASSERT(inset->width() <= dim.wid);
228         BOOST_ASSERT(inset->ascent() <= dim.asc);
229         BOOST_ASSERT(inset->descent() <= dim.des);
230         int const x2 = x1 + dim.wid;
231         int const y1 = yo_ + dim.des;
232         int const y2 = yo_ - dim.asc;
233         pi.pain.line(x1, y1, x1, y2, Color::green);
234         pi.pain.line(x1, y1, x2, y1, Color::green);
235         pi.pain.line(x2, y1, x2, y2, Color::green);
236         pi.pain.line(x1, y2, x2, y2, Color::green);
237 #endif
238 }
239
240
241 void RowPainter::paintHebrewComposeChar(pos_type & vpos, Font const & font)
242 {
243         pos_type pos = bidi_.vis2log(vpos);
244
245         docstring str;
246
247         // first char
248         char_type c = par_.getChar(pos);
249         str += c;
250         ++vpos;
251
252         int const width = theFontMetrics(font).width(c);
253         int dx = 0;
254
255         for (pos_type i = pos - 1; i >= 0; --i) {
256                 c = par_.getChar(i);
257                 if (!Encodings::isComposeChar_hebrew(c)) {
258                         if (isPrintableNonspace(c)) {
259                                 int const width2 = text_.singleWidth(par_, i, c,
260                                         text_.getFont(*bv_.buffer(), par_, i));
261                                 dx = (c == 0x05e8 || // resh
262                                       c == 0x05d3)   // dalet
263                                         ? width2 - width
264                                         : (width2 - width) / 2;
265                         }
266                         break;
267                 }
268         }
269
270         // Draw nikud
271         pain_.text(int(x_) + dx, yo_, str, font);
272 }
273
274
275 void RowPainter::paintArabicComposeChar(pos_type & vpos, Font const & font)
276 {
277         pos_type pos = bidi_.vis2log(vpos);
278         docstring str;
279
280         // first char
281         char_type c = par_.getChar(pos);
282         c = par_.transformChar(c, pos);
283         str += c;
284         ++vpos;
285
286         int const width = theFontMetrics(font).width(c);
287         int dx = 0;
288
289         for (pos_type i = pos - 1; i >= 0; --i) {
290                 c = par_.getChar(i);
291                 if (!Encodings::isComposeChar_arabic(c)) {
292                         if (isPrintableNonspace(c)) {
293                                 int const width2 = text_.singleWidth(par_, i, c,
294                                                 text_.getFont(*bv_.buffer(), par_, i));
295                                 dx = (width2 - width) / 2;
296                         }
297                         break;
298                 }
299         }
300         // Draw nikud
301         pain_.text(int(x_) + dx, yo_, str, font);
302 }
303
304
305 void RowPainter::paintChars(pos_type & vpos, Font const & font,
306                             bool hebrew, bool arabic)
307 {
308         // This method takes up 70% of time when typing
309         pos_type pos = bidi_.vis2log(vpos);
310         pos_type const end = row_.endpos();
311         FontSpan const font_span = par_.fontSpan(pos);
312         Change::Type const prev_change = par_.lookupChange(pos).type;
313
314         // first character
315         std::vector<char_type> str;
316         str.reserve(100);
317         str.push_back(par_.getChar(pos));
318
319         if (arabic) {
320                 char_type c = str[0];
321                 if (c == '(')
322                         c = ')';
323                 else if (c == ')')
324                         c = '(';
325                 str[0] = par_.transformChar(c, pos);
326         }
327
328         // collect as much similar chars as we can
329         for (++vpos ; vpos < end ; ++vpos) {
330                 pos = bidi_.vis2log(vpos);
331                 if (pos < font_span.first || pos > font_span.last)
332                         break;
333
334                 if (prev_change != par_.lookupChange(pos).type)
335                         break;
336
337                 char_type c = par_.getChar(pos);
338
339                 if (!isPrintableNonspace(c))
340                         break;
341
342                 /* Because we do our own bidi, at this point the strings are
343                  * already in visual order. However, Qt also applies its own
344                  * bidi algorithm to strings that it paints to the screen.
345                  * Therefore, if we were to paint Hebrew/Arabic words as a
346                  * single string, the letters in the words would get reversed
347                  * again. In order to avoid that, we don't collect Hebrew/
348                  * Arabic characters, but rather paint them one at a time.
349                  * See also http://thread.gmane.org/gmane.editors.lyx.devel/79740
350                  */
351                 if (hebrew)
352                         break;
353
354                 /* FIXME: these checks are irrelevant, since 'arabic' and
355                  * 'hebrew' alone are already going to trigger a break.
356                  * However, this should not be removed completely, because
357                  * if an alternative solution is found which allows grouping
358                  * of arabic and hebrew characters, then these breaks may have
359                  * to be re-applied.
360
361                 if (arabic && Encodings::isComposeChar_arabic(c))
362                         break;
363
364                 if (hebrew && Encodings::isComposeChar_hebrew(c))
365                         break;
366                 */
367
368                 if (arabic) {
369                         if (c == '(')
370                                 c = ')';
371                         else if (c == ')')
372                                 c = '(';
373                         c = par_.transformChar(c, pos);
374                         /* see comment in hebrew, explaining why we break */
375                         break;
376                 }
377
378                 str.push_back(c);
379         }
380
381         docstring s(&str[0], str.size());
382
383         if (prev_change != Change::UNCHANGED) {
384                 Font copy(font);
385                 if (prev_change == Change::DELETED) {
386                         copy.setColor(Color::deletedtext);
387                 } else if (prev_change == Change::INSERTED) {
388                         copy.setColor(Color::addedtext);
389                 }
390                 x_ += pain_.text(int(x_), yo_, s, copy);
391         } else {
392                 x_ += pain_.text(int(x_), yo_, s, font);
393         }
394 }
395
396
397 void RowPainter::paintForeignMark(double orig_x, Font const & font, int desc)
398 {
399         if (!lyxrc.mark_foreign_language)
400                 return;
401         if (font.language() == latex_language)
402                 return;
403         if (font.language() == bv_.buffer()->params().language)
404                 return;
405
406         int const y = yo_ + 1 + desc;
407         pain_.line(int(orig_x), y, int(x_), y, Color::language);
408 }
409
410
411 void RowPainter::paintFromPos(pos_type & vpos)
412 {
413         pos_type const pos = bidi_.vis2log(vpos);
414         Font orig_font = text_.getFont(*bv_.buffer(), par_, pos);
415
416         double const orig_x = x_;
417
418         if (par_.isInset(pos)) {
419                 paintInset(pos, orig_font);
420                 ++vpos;
421                 paintForeignMark(orig_x, orig_font,
422                         par_.getInset(pos)->descent());
423                 return;
424         }
425
426         // usual characters, no insets
427         char_type const c = par_.getChar(pos);
428
429         // special case languages
430         std::string const & lang = orig_font.language()->lang();
431         bool const hebrew = lang == "hebrew";
432         bool const arabic = lang == "arabic_arabtex" || lang == "arabic_arabi" || 
433                                                 lang == "farsi";
434
435         // draw as many chars as we can
436         if ((!hebrew && !arabic)
437                 || (hebrew && !Encodings::isComposeChar_hebrew(c))
438                 || (arabic && !Encodings::isComposeChar_arabic(c))) {
439                 paintChars(vpos, orig_font, hebrew, arabic);
440         } else if (hebrew) {
441                 paintHebrewComposeChar(vpos, orig_font);
442         } else if (arabic) {
443                 paintArabicComposeChar(vpos, orig_font);
444         }
445
446         paintForeignMark(orig_x, orig_font);
447 }
448
449
450 void RowPainter::paintChangeBar()
451 {
452         pos_type const start = row_.pos();
453         pos_type end = row_.endpos();
454
455         if (par_.size() == end) {
456                 // this is the last row of the paragraph;
457                 // thus, we must also consider the imaginary end-of-par character
458                 end++;
459         }
460
461         if (start == end || !par_.isChanged(start, end))
462                 return;
463
464         int const height = text_.isLastRow(pit_, row_)
465                 ? row_.ascent()
466                 : row_.height();
467
468         pain_.fillRectangle(5, yo_ - row_.ascent(), 3, height, Color::changebar);
469 }
470
471
472 void RowPainter::paintAppendix()
473 {
474         // only draw the appendix frame once (for the main text)
475         if (!par_.params().appendix() || !text_.isMainText(*bv_.buffer()))
476                 return;
477
478         int y = yo_ - row_.ascent();
479
480         if (par_.params().startOfAppendix())
481                 y += 2 * defaultRowHeight();
482
483         pain_.line(1, y, 1, yo_ + row_.height(), Color::appendix);
484         pain_.line(width_ - 2, y, width_ - 2, yo_ + row_.height(), Color::appendix);
485 }
486
487
488 void RowPainter::paintDepthBar()
489 {
490         depth_type const depth = par_.getDepth();
491
492         if (depth <= 0)
493                 return;
494
495         depth_type prev_depth = 0;
496         if (!text_.isFirstRow(pit_, row_)) {
497                 pit_type pit2 = pit_;
498                 if (row_.pos() == 0)
499                         --pit2;
500                 prev_depth = pars_[pit2].getDepth();
501         }
502
503         depth_type next_depth = 0;
504         if (!text_.isLastRow(pit_, row_)) {
505                 pit_type pit2 = pit_;
506                 if (row_.endpos() >= pars_[pit2].size())
507                         ++pit2;
508                 next_depth = pars_[pit2].getDepth();
509         }
510
511         for (depth_type i = 1; i <= depth; ++i) {
512                 int const w = nestMargin() / 5;
513                 int x = int(xo_) + w * i;
514                 // only consider the changebar space if we're drawing outermost text
515                 if (text_.isMainText(*bv_.buffer()))
516                         x += changebarMargin();
517
518                 int const starty = yo_ - row_.ascent();
519                 int const h =  row_.height() - 1 - (i - next_depth - 1) * 3;
520
521                 pain_.line(x, starty, x, starty + h, Color::depthbar);
522
523                 if (i > prev_depth)
524                         pain_.fillRectangle(x, starty, w, 2, Color::depthbar);
525                 if (i > next_depth)
526                         pain_.fillRectangle(x, starty + h, w, 2, Color::depthbar);
527         }
528 }
529
530
531 int RowPainter::paintAppendixStart(int y)
532 {
533         Font pb_font;
534         pb_font.setColor(Color::appendix);
535         pb_font.decSize();
536
537         int w = 0;
538         int a = 0;
539         int d = 0;
540
541         docstring const label = _("Appendix");
542         theFontMetrics(pb_font).rectText(label, w, a, d);
543
544         int const text_start = int(xo_ + (width_ - w) / 2);
545         int const text_end = text_start + w;
546
547         pain_.rectText(text_start, y + d, label, pb_font, Color::none, Color::none);
548
549         pain_.line(int(xo_ + 1), y, text_start, y, Color::appendix);
550         pain_.line(text_end, y, int(xo_ + width_ - 2), y, Color::appendix);
551
552         return 3 * defaultRowHeight();
553 }
554
555
556 void RowPainter::paintFirst()
557 {
558         ParagraphParameters const & parparams = par_.params();
559
560         int y_top = 0;
561
562         // start of appendix?
563         if (parparams.startOfAppendix())
564                 y_top += paintAppendixStart(yo_ - row_.ascent() + 2 * defaultRowHeight());
565
566         Buffer const & buffer = *bv_.buffer();
567
568         Layout_ptr const & layout = par_.layout();
569
570         if (buffer.params().paragraph_separation == BufferParams::PARSEP_SKIP) {
571                 if (pit_ != 0) {
572                         if (layout->latextype == LATEX_PARAGRAPH
573                                 && !par_.getDepth()) {
574                                 y_top += buffer.params().getDefSkip().inPixels(bv_);
575                         } else {
576                                 Layout_ptr const & playout = pars_[pit_ - 1].layout();
577                                 if (playout->latextype == LATEX_PARAGRAPH
578                                         && !pars_[pit_ - 1].getDepth()) {
579                                         // is it right to use defskip here, too? (AS)
580                                         y_top += buffer.params().getDefSkip().inPixels(bv_);
581                                 }
582                         }
583                 }
584         }
585
586         bool const is_rtl = text_.isRTL(buffer, par_);
587         bool const is_seq = isFirstInSequence(pit_, text_.paragraphs());
588         //lyxerr << "paintFirst: " << par_.id() << " is_seq: " << is_seq << std::endl;
589
590         // should we print a label?
591         if (layout->labeltype >= LABEL_STATIC
592             && (layout->labeltype != LABEL_STATIC
593                       || layout->latextype != LATEX_ENVIRONMENT
594                       || is_seq)) {
595
596                 Font const font = getLabelFont();
597                 FontMetrics const & fm = theFontMetrics(font);
598
599                 docstring const str = par_.getLabelstring();
600                 if (!str.empty()) {
601                         double x = x_;
602
603                         // this is special code for the chapter layout. This is
604                         // printed in an extra row and has a pagebreak at
605                         // the top.
606                         if (layout->counter == "chapter") {
607                                 double spacing_val = 1.0;
608                                 if (!parparams.spacing().isDefault()) {
609                                         spacing_val = parparams.spacing().getValue();
610                                 } else {
611                                         spacing_val = buffer.params().spacing().getValue();
612                                 }
613
614                                 int const labeladdon = int(fm.maxHeight() * layout->spacing.getValue() * spacing_val);
615
616                                 int const maxdesc = int(fm.maxDescent() * layout->spacing.getValue() * spacing_val)
617                                         + int(layout->parsep) * defaultRowHeight();
618
619                                 if (is_rtl) {
620                                         x = width_ - leftMargin() -
621                                                 fm.width(str);
622                                 }
623
624                                 pain_.text(int(x), yo_ - maxdesc - labeladdon, str, font);
625                         } else {
626                                 // FIXME UNICODE
627                                 docstring lab = from_utf8(layout->labelsep);
628                                 if (is_rtl) {
629                                         x = width_ - leftMargin()
630                                                 + fm.width(lab);
631                                 } else {
632                                         x = x_ - fm.width(lab)
633                                                 - fm.width(str);
634                                 }
635
636                                 pain_.text(int(x), yo_, str, font);
637                         }
638                 }
639
640         // the labels at the top of an environment.
641         // More or less for bibliography
642         } else if (is_seq &&
643                 (layout->labeltype == LABEL_TOP_ENVIRONMENT ||
644                 layout->labeltype == LABEL_BIBLIO ||
645                 layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)) {
646                 Font font = getLabelFont();
647                 if (!par_.getLabelstring().empty()) {
648                         docstring const str = par_.getLabelstring();
649                         double spacing_val = 1.0;
650                         if (!parparams.spacing().isDefault())
651                                 spacing_val = parparams.spacing().getValue();
652                         else
653                                 spacing_val = buffer.params().spacing().getValue();
654
655                         FontMetrics const & fm = theFontMetrics(font);
656
657                         int const labeladdon = int(fm.maxHeight()
658                                 * layout->spacing.getValue() * spacing_val);
659
660                         int maxdesc =
661                                 int(fm.maxDescent() * layout->spacing.getValue() * spacing_val
662                                 + (layout->labelbottomsep * defaultRowHeight()));
663
664                         double x = x_;
665                         if (layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT) {
666                                 if (is_rtl)
667                                         x = leftMargin();
668                                 x += (width_ - text_metrics_.rightMargin(pm_) - leftMargin()) / 2;
669                                 x -= fm.width(str) / 2;
670                         } else if (is_rtl) {
671                                 x = width_ - leftMargin() -     fm.width(str);
672                         }
673                         pain_.text(int(x), yo_ - maxdesc - labeladdon, str, font);
674                 }
675         }
676 }
677
678
679 void RowPainter::paintLast()
680 {
681         bool const is_rtl = text_.isRTL(*bv_.buffer(), par_);
682         int const endlabel = getEndLabel(pit_, text_.paragraphs());
683
684         // paint imaginary end-of-paragraph character
685
686         if (par_.isInserted(par_.size()) || par_.isDeleted(par_.size())) {
687                 FontMetrics const & fm = theFontMetrics(bv_.buffer()->params().getFont());
688                 int const length = fm.maxAscent() / 2;
689                 Color::color col = par_.isInserted(par_.size()) ? Color::addedtext : Color::deletedtext;
690
691                 pain_.line(int(x_) + 1, yo_ + 2, int(x_) + 1, yo_ + 2 - length, col,
692                            Painter::line_solid, Painter::line_thick);
693                 pain_.line(int(x_) + 1 - length, yo_ + 2, int(x_) + 1, yo_ + 2, col,
694                            Painter::line_solid, Painter::line_thick);
695         }
696
697         // draw an endlabel
698
699         switch (endlabel) {
700         case END_LABEL_BOX:
701         case END_LABEL_FILLED_BOX: {
702                 Font const font = getLabelFont();
703                 FontMetrics const & fm = theFontMetrics(font);
704                 int const size = int(0.75 * fm.maxAscent());
705                 int const y = yo_ - size;
706                 int x = is_rtl ? nestMargin() + changebarMargin() : width_ - size;
707
708                 if (width_ - int(row_.width()) <= size)
709                         x += (size - width_ + row_.width() + 1) * (is_rtl ? -1 : 1);
710
711                 if (endlabel == END_LABEL_BOX)
712                         pain_.rectangle(x, y, size, size, Color::eolmarker);
713                 else
714                         pain_.fillRectangle(x, y, size, size, Color::eolmarker);
715                 break;
716         }
717
718         case END_LABEL_STATIC: {
719                 Font font = getLabelFont();
720                 FontMetrics const & fm = theFontMetrics(font);
721                 docstring const & str = par_.layout()->endlabelstring();
722                 double const x = is_rtl ?
723                         x_ - fm.width(str)
724                         : - text_metrics_.rightMargin(pm_) - row_.width();
725                 pain_.text(int(x), yo_, str, font);
726                 break;
727         }
728
729         case END_LABEL_NO_LABEL:
730                 break;
731         }
732 }
733
734
735 void RowPainter::paintText()
736 {
737         pos_type const end = row_.endpos();
738         // Spaces at logical line breaks in bidi text must be skipped during 
739         // painting. However, they may appear visually in the middle
740         // of a row; they must be skipped, wherever they are...
741         // * logically "abc_[HEBREW_\nHEBREW]"
742         // * visually "abc_[_WERBEH\nWERBEH]"
743         pos_type skipped_sep_vpos = -1;
744         pos_type body_pos = par_.beginOfBody();
745         if (body_pos > 0 &&
746                 (body_pos > end || !par_.isLineSeparator(body_pos - 1))) {
747                 body_pos = 0;
748         }
749
750         Layout_ptr const & layout = par_.layout();
751
752         bool running_strikeout = false;
753         bool is_struckout = false;
754         int last_strikeout_x = 0;
755
756         // Use font span to speed things up, see below
757         FontSpan font_span;
758         Font font;
759         Buffer const & buffer = *bv_.buffer();
760
761         // If the last logical character is a separator, don't paint it, unless
762         // it's in the last row of a paragraph; see skipped_sep_vpos declaration
763         if (end > 0 && end < par_.size() && par_.isSeparator(end - 1))
764                 skipped_sep_vpos = bidi_.log2vis(end - 1);
765         
766         for (pos_type vpos = row_.pos(); vpos < end; ) {
767                 if (x_ > bv_.workWidth())
768                         break;
769
770                 // Skip the separator at the logical end of the row
771                 if (vpos == skipped_sep_vpos) {
772                         ++vpos;
773                         continue;
774                 }
775
776                 pos_type const pos = bidi_.vis2log(vpos);
777
778                 if (pos >= par_.size()) {
779                         ++vpos;
780                         continue;
781                 }
782
783                 // Use font span to speed things up, see above
784                 if (vpos < font_span.first || vpos > font_span.last) {
785                         font_span = par_.fontSpan(vpos);
786                         font = text_.getFont(buffer, par_, vpos);
787                 }
788
789                 const int width_pos =
790                         text_.singleWidth(par_, pos, par_.getChar(pos), font);
791
792                 if (x_ + width_pos < 0) {
793                         x_ += width_pos;
794                         ++vpos;
795                         continue;
796                 }
797
798                 is_struckout = par_.isDeleted(pos);
799
800                 if (is_struckout && !running_strikeout) {
801                         running_strikeout = true;
802                         last_strikeout_x = int(x_);
803                 }
804
805                 bool const highly_editable_inset = par_.isInset(pos)
806                         && isHighlyEditableInset(par_.getInset(pos));
807
808                 // If we reach the end of a struck out range, paint it.
809                 // We also don't paint across things like tables
810                 if (running_strikeout && (highly_editable_inset || !is_struckout)) {
811                         // Calculate 1/3 height of the buffer's default font
812                         FontMetrics const & fm
813                                 = theFontMetrics(bv_.buffer()->params().getFont());
814                         int const middle = yo_ - fm.maxAscent() / 3;
815                         pain_.line(last_strikeout_x, middle, int(x_), middle,
816                                 Color::deletedtext, Painter::line_solid, Painter::line_thin);
817                         running_strikeout = false;
818                 }
819
820                 if (body_pos > 0 && pos == body_pos - 1) {
821                         // FIXME UNICODE
822                         int const lwidth = theFontMetrics(getLabelFont())
823                                 .width(from_utf8(layout->labelsep));
824
825                         x_ += label_hfill_ + lwidth - width_pos;
826                 }
827
828                 if (par_.isHfill(pos)) {
829                         x_ += 1;
830
831                         int const y0 = yo_;
832                         int const y1 = y0 - defaultRowHeight() / 2;
833
834                         pain_.line(int(x_), y1, int(x_), y0, Color::added_space);
835
836                         if (par_.hfillExpansion(row_, pos)) {
837                                 int const y2 = (y0 + y1) / 2;
838
839                                 if (pos >= body_pos) {
840                                         pain_.line(int(x_), y2, int(x_ + hfill_), y2,
841                                                   Color::added_space,
842                                                   Painter::line_onoffdash);
843                                         x_ += hfill_;
844                                 } else {
845                                         pain_.line(int(x_), y2, int(x_ + label_hfill_), y2,
846                                                   Color::added_space,
847                                                   Painter::line_onoffdash);
848                                         x_ += label_hfill_;
849                                 }
850                                 pain_.line(int(x_), y1, int(x_), y0, Color::added_space);
851                         }
852                         x_ += 2;
853                         ++vpos;
854                 } else if (par_.isSeparator(pos)) {
855                         Font orig_font = text_.getFont(*bv_.buffer(), par_, pos);
856                         double const orig_x = x_;
857                         x_ += width_pos;
858                         if (pos >= body_pos)
859                                 x_ += separator_;
860                         ++vpos;
861                         paintForeignMark(orig_x, orig_font);
862                 } else {
863                         paintFromPos(vpos);
864                 }
865         }
866
867         // if we reach the end of a struck out range, paint it
868         if (running_strikeout) {
869                 // calculate 1/3 height of the buffer's default font
870                 FontMetrics const & fm
871                         = theFontMetrics(bv_.buffer()->params().getFont());
872                 int const middle = yo_ - fm.maxAscent() / 3;
873                 pain_.line(last_strikeout_x, middle, int(x_), middle,
874                         Color::deletedtext, Painter::line_solid, Painter::line_thin);
875                 running_strikeout = false;
876         }
877 }
878
879
880 bool CursorOnRow(PainterInfo & pi, pit_type const pit,
881         RowList::const_iterator rit, Text const & text)
882 {
883         // Is there a cursor on this row (or inside inset on row)
884         Cursor & cur = pi.base.bv->cursor();
885         for (size_type d = 0; d < cur.depth(); ++d) {
886                 CursorSlice const & sl = cur[d];
887                 if (sl.text() == &text
888                     && sl.pit() == pit
889                     && sl.pos() >= rit->pos()
890                     && sl.pos() <= rit->endpos())
891                         return true;
892         }
893         return false;
894 }
895
896
897 bool innerCursorOnRow(PainterInfo & pi, pit_type pit,
898         RowList::const_iterator rit, Text const & text)
899 {
900         // Is there a cursor inside an inset on this row, and is this inset
901         // the only "character" on this row
902         Cursor & cur = pi.base.bv->cursor();
903         if (rit->pos() + 1 != rit->endpos())
904                 return false;
905         for (size_type d = 0; d < cur.depth(); d++) {
906                 CursorSlice const & sl = cur[d];
907                 if (sl.text() == &text
908                     && sl.pit() == pit
909                     && sl.pos() == rit->pos())
910                         return d < cur.depth() - 1;
911         }
912         return false;
913 }
914
915
916 // FIXME: once wide() is obsolete, remove this as well!
917 bool inNarrowInset(PainterInfo & pi)
918 {
919         // check whether the current inset is nested in a non-wide inset
920         Cursor & cur = pi.base.bv->cursor();
921         Inset const * cur_in = &cur.inset();
922         // check all higher nested insets
923         for (size_type i = 1; i < cur.depth(); ++i) {
924                 Inset * const in = &cur[i].inset();
925                 if (in == cur_in)
926                         // we reached the level of the current inset, so stop
927                         return false;
928                 else if (in) {
929                         if (in->hasFixedWidth())
930                                 return true;
931                         InsetText * t =
932                                 const_cast<InsetText *>(in->asTextInset());
933                         if (t && !t->wide())
934                                 // OK, we are in a non-wide() inset
935                                 return true;
936                 }
937         }
938         return false;
939 }
940
941
942 void paintPar
943         (PainterInfo & pi, Text const & text, pit_type pit, int x, int y,
944          bool repaintAll)
945 {
946 //      lyxerr << "  paintPar: pit: " << pit << " at y: " << y << endl;
947         int const ww = pi.base.bv->workHeight();
948
949         pi.base.bv->coordCache().parPos()[&text][pit] = Point(x, y);
950
951         Paragraph const & par = text.paragraphs()[pit];
952         ParagraphMetrics const & pm = pi.base.bv->parMetrics(&text, pit);
953         if (pm.rows().empty())
954                 return;
955
956         RowList::const_iterator const rb = pm.rows().begin();
957         RowList::const_iterator const re = pm.rows().end();
958
959         Bidi bidi;
960
961         y -= rb->ascent();
962         size_type rowno = 0;
963         for (RowList::const_iterator rit = rb; rit != re; ++rit, ++rowno) {
964                 y += rit->ascent();
965                 // Allow setting of refreshInside for nested insets in
966                 // this row only
967                 bool tmp = refreshInside;
968
969                 // Row signature; has row changed since last paint?
970                 bool row_has_changed = pm.rowChangeStatus()[rowno];
971
972                 bool cursor_on_row = CursorOnRow(pi, pit, rit, text);
973                 bool in_inset_alone_on_row =
974                         innerCursorOnRow(pi, pit, rit, text);
975                 bool leftEdgeFixed =
976                         (par.getAlign() == LYX_ALIGN_LEFT ||
977                          par.getAlign() == LYX_ALIGN_BLOCK);
978                 bool inNarrowIns = inNarrowInset(pi);
979
980                 // If this is the only object on the row, we can make it wide
981                 //
982                 // FIXME: there is a const_cast here because paintPar() is not supposed
983                 // to touch the paragraph contents. So either we move this "wide"
984                 // property out of InsetText or we localize the feature to the painting
985                 // done here.
986                 // JSpitzm: We should aim at removing wide() altogether while retaining
987                 // typing speed within insets.
988                 for (pos_type i = rit->pos() ; i != rit->endpos(); ++i) {
989                         Inset const * const in = par.getInset(i);
990                         if (in) {
991                                 InsetText * t = const_cast<InsetText *>(in->asTextInset());
992                                 if (t)
993                                         t->setWide(in_inset_alone_on_row
994                                                    && leftEdgeFixed
995                                                    && !inNarrowIns);
996                         }
997                 }
998
999                 // If selection is on, the current row signature differs
1000                 // from cache, or cursor is inside an inset _on this row_,
1001                 // then paint the row
1002                 if (repaintAll || row_has_changed || cursor_on_row) {
1003                         bool const inside = (y + rit->descent() >= 0
1004                                 && y - rit->ascent() < ww);
1005                         // it is not needed to draw on screen if we are not inside.
1006                         pi.pain.setDrawingEnabled(inside);
1007                         RowPainter rp(pi, text, pit, *rit, bidi, x, y);
1008                         // Clear background of this row
1009                         // (if paragraph background was not cleared)
1010                         if (!repaintAll &&
1011                             (!(in_inset_alone_on_row && leftEdgeFixed && !inNarrowIns)
1012                                 || row_has_changed)) {
1013                                 pi.pain.fillRectangle(x, y - rit->ascent(),
1014                                     rp.maxWidth(), rit->height(),
1015                                     text.backgroundColor());
1016                                 // If outer row has changed, force nested
1017                                 // insets to repaint completely
1018                                 if (row_has_changed)
1019                                         refreshInside = true;
1020                         }
1021
1022                         // Instrumentation for testing row cache (see also
1023                         // 12 lines lower):
1024                         if (lyxerr.debugging(Debug::PAINTING)) {
1025                                 if (text.isMainText(*pi.base.bv->buffer()))
1026                                         LYXERR(Debug::PAINTING) << "#";
1027                                 else
1028                                         LYXERR(Debug::PAINTING) << "[" <<
1029                                                 repaintAll << row_has_changed <<
1030                                                 cursor_on_row << "]";
1031                         }
1032                         rp.paintAppendix();
1033                         rp.paintDepthBar();
1034                         rp.paintChangeBar();
1035                         if (rit == rb)
1036                                 rp.paintFirst();
1037                         rp.paintText();
1038                         if (rit + 1 == re)
1039                                 rp.paintLast();
1040                 }
1041                 y += rit->descent();
1042                 // Restore, see above
1043                 refreshInside = tmp;
1044         }
1045         // Re-enable screen drawing for future use of the painter.
1046         pi.pain.setDrawingEnabled(true);
1047
1048         LYXERR(Debug::PAINTING) << "." << endl;
1049 }
1050
1051 } // namespace anon
1052
1053
1054 void paintText(BufferView & bv,
1055                Painter & pain)
1056 {
1057         BOOST_ASSERT(bv.buffer());
1058         Buffer const & buffer = *bv.buffer();
1059         Text & text = buffer.text();
1060         bool const select = bv.cursor().selection();
1061         ViewMetricsInfo const & vi = bv.viewMetricsInfo();
1062
1063         PainterInfo pi(const_cast<BufferView *>(&bv), pain);
1064         // Should the whole screen, including insets, be refreshed?
1065         // FIXME: We should also distinguish DecorationUpdate to avoid text
1066         // drawing if possible. This is not possible to do easily right now
1067         // because of the single backing pixmap.
1068         bool repaintAll = select || vi.update_strategy != SingleParUpdate;
1069
1070         if (repaintAll) {
1071                 // Clear background (if not delegated to rows)
1072                 pain.fillRectangle(0, vi.y1, bv.workWidth(), vi.y2 - vi.y1,
1073                         text.backgroundColor());
1074         }
1075         if (select) {
1076                 text.drawSelection(pi, 0, 0);
1077         }
1078
1079         int yy = vi.y1;
1080         // draw contents
1081         for (pit_type pit = vi.p1; pit <= vi.p2; ++pit) {
1082                 refreshInside = repaintAll;
1083                 ParagraphMetrics const & pm = bv.parMetrics(&text, pit);
1084                 yy += pm.ascent();
1085                 paintPar(pi, text, pit, 0, yy, repaintAll);
1086                 yy += pm.descent();
1087         }
1088
1089         // and grey out above (should not happen later)
1090 //      lyxerr << "par ascent: " << text.getPar(vi.p1).ascent() << endl;
1091         if (vi.y1 > 0 && vi.update_strategy == FullScreenUpdate)
1092                 pain.fillRectangle(0, 0, bv.workWidth(), vi.y1, Color::bottomarea);
1093
1094         // and possibly grey out below
1095 //      lyxerr << "par descent: " << text.getPar(vi.p1).ascent() << endl;
1096         if (vi.y2 < bv.workHeight() && vi.update_strategy == FullScreenUpdate)
1097                 pain.fillRectangle(0, vi.y2, bv.workWidth(), bv.workHeight() - vi.y2, Color::bottomarea);
1098 }
1099
1100
1101 void paintTextInset(Text const & text, PainterInfo & pi, int x, int y)
1102 {
1103 //      lyxerr << "  paintTextInset: y: " << y << endl;
1104
1105         y -= pi.base.bv->parMetrics(&text, 0).ascent();
1106         // This flag cannot be set from within same inset:
1107         bool repaintAll = refreshInside;
1108         for (int pit = 0; pit < int(text.paragraphs().size()); ++pit) {
1109                 ParagraphMetrics const & pmi
1110                         = pi.base.bv->parMetrics(&text, pit);
1111                 y += pmi.ascent();
1112                 paintPar(pi, text, pit, x, y, repaintAll);
1113                 y += pmi.descent();
1114         }
1115 }
1116
1117
1118 } // namespace lyx