]> git.lyx.org Git - lyx.git/blob - src/rowpainter.C
f69d693f85cf877d57217014cff09c6f134aed92
[lyx.git] / src / rowpainter.C
1 /**
2  * \file rowpainter.C
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 "buffer.h"
17 #include "coordcache.h"
18 #include "cursor.h"
19 #include "debug.h"
20 #include "bufferparams.h"
21 #include "BufferView.h"
22 #include "encoding.h"
23 #include "gettext.h"
24 #include "language.h"
25 #include "LColor.h"
26 #include "lyxrc.h"
27 #include "lyxrow.h"
28 #include "lyxrow_funcs.h"
29 #include "metricsinfo.h"
30 #include "paragraph.h"
31 #include "paragraph_funcs.h"
32 #include "ParagraphParameters.h"
33 #include "vspace.h"
34
35 #include "frontends/font_metrics.h"
36 #include "frontends/nullpainter.h"
37 #include "frontends/Painter.h"
38
39 #include "insets/insettext.h"
40
41 #include "support/textutils.h"
42
43 using lyx::pos_type;
44 using lyx::par_type;
45
46 using std::endl;
47 using std::max;
48 using std::string;
49
50
51 namespace {
52
53 /**
54  * A class used for painting an individual row of text.
55  */
56 class RowPainter {
57 public:
58         /// initialise and run painter
59         RowPainter(BufferView const & bv, Painter & pain, LyXText const & text,
60                 par_type pit, RowList::iterator rit, int y);
61 private:
62         // paint various parts
63         void paintBackground();
64         void paintSelection();
65         void paintAppendix();
66         void paintDepthBar();
67         void paintChangeBar();
68         void paintFirst();
69         void paintLast();
70         void paintForeignMark(double orig_x, LyXFont const & orig_font);
71         void paintHebrewComposeChar(lyx::pos_type & vpos);
72         void paintArabicComposeChar(lyx::pos_type & vpos);
73         void paintChars(lyx::pos_type & vpos, bool hebrew, bool arabic);
74         int paintAppendixStart(int y);
75         void paintText();
76         void paintFromPos(lyx::pos_type & vpos);
77         void paintInset(lyx::pos_type const pos);
78
79         /// return left margin
80         int leftMargin() const;
81
82         /// return the font at the given pos
83         LyXFont const getFont(lyx::pos_type pos) const;
84
85         /// return the label font for this row
86         LyXFont const getLabelFont() const;
87
88         /// return pixel width for the given pos
89         int singleWidth(lyx::pos_type pos) const;
90         int singleWidth(lyx::pos_type pos, char c) const;
91
92         /// bufferview to paint on
93         BufferView const & bv_;
94
95         /// Painter to use
96         Painter & pain_;
97
98         /// LyXText for the row
99         LyXText const & text_;
100         ParagraphList & pars_;
101
102         /// The row to paint
103         RowList::iterator const rit_;
104         Row & row_;
105
106         /// Row's paragraph
107         mutable par_type pit_;
108
109         // Looks ugly - is
110         double xo_;
111         int yo_;
112         double x_;
113         int width_;
114         double separator_;
115         double hfill_;
116         double label_hfill_;
117 };
118
119
120 RowPainter::RowPainter(BufferView const & bv, Painter & pain,
121         LyXText const & text, par_type pit, RowList::iterator rit, int y)
122         : bv_(bv), pain_(pain), text_(text), pars_(text.paragraphs()),
123           rit_(rit), row_(*rit), pit_(pit),
124           xo_(text_.xo_), yo_(y), width_(text_.width())
125 {
126         //lyxerr << "RowPainter: x: " << x_ << " xo: " << xo << " yo: " << yo
127         //      << " pit->y: " << pit_->y
128         //      << " row: " << (pars_[pit_].size() ? pars_[pit_].getChar(row_.pos()) : 'X') << endl;
129
130         RowMetrics m = text_.computeRowMetrics(pit, row_);
131         x_ = m.x + xo_;
132
133         separator_ = m.separator;
134         hfill_ = m.hfill;
135         label_hfill_ = m.label_hfill;
136
137         // background has already been cleared.
138         if (&text_ == bv_.text())
139                 paintBackground();
140
141         // paint the selection background
142         if (bv_.cursor().selection() && &text_ == bv_.cursor().text())
143                 paintSelection();
144
145         // vertical lines for appendix
146         paintAppendix();
147
148         // environment depth brackets
149         paintDepthBar();
150
151         // changebar
152         paintChangeBar();
153
154         if (row_.pos() == 0)
155                 paintFirst();
156
157         if (row_.endpos() >= pars_[pit_].size())
158                 paintLast();
159
160         // paint text
161         paintText();
162 }
163
164
165 /// "temporary"
166 LyXFont const RowPainter::getFont(pos_type pos) const
167 {
168         return text_.getFont(pit_, pos);
169 }
170
171
172 int RowPainter::singleWidth(lyx::pos_type pos) const
173 {
174         return text_.singleWidth(pit_, pos);
175 }
176
177
178 int RowPainter::singleWidth(lyx::pos_type pos, char c) const
179 {
180         LyXFont const & font = text_.getFont(pit_, pos);
181         return text_.singleWidth(pit_, pos, c, font);
182 }
183
184
185 LyXFont const RowPainter::getLabelFont() const
186 {
187         return text_.getLabelFont(pit_);
188 }
189
190
191 int RowPainter::leftMargin() const
192 {
193         return text_.leftMargin(pit_, row_.pos());
194 }
195
196
197 void RowPainter::paintInset(pos_type const pos)
198 {
199         InsetBase const * inset = pars_[pit_].getInset(pos);
200         BOOST_ASSERT(inset);
201         PainterInfo pi(const_cast<BufferView *>(&bv_), pain_);
202         pi.base.font = getFont(pos);
203         pi.ltr_pos = (text_.bidi.level(pos) % 2 == 0);
204         theCoords.insets_.add(inset, int(x_), yo_ + row_.baseline());
205         inset->drawSelection(pi, int(x_), yo_ + row_.baseline());
206         inset->draw(pi, int(x_), yo_ + row_.baseline());
207         x_ += inset->width();
208 }
209
210
211 void RowPainter::paintHebrewComposeChar(pos_type & vpos)
212 {
213         pos_type pos = text_.bidi.vis2log(vpos);
214
215         string str;
216
217         // first char
218         char c = pars_[pit_].getChar(pos);
219         str += c;
220         ++vpos;
221
222         LyXFont const & font = getFont(pos);
223         int const width = font_metrics::width(c, font);
224         int dx = 0;
225
226         for (pos_type i = pos - 1; i >= 0; --i) {
227                 c = pars_[pit_].getChar(i);
228                 if (!Encodings::IsComposeChar_hebrew(c)) {
229                         if (IsPrintableNonspace(c)) {
230                                 int const width2 = singleWidth(i, c);
231                                 // dalet / resh
232                                 dx = (c == 'ø' || c == 'ã')
233                                         ? width2 - width
234                                         : (width2 - width) / 2;
235                         }
236                         break;
237                 }
238         }
239
240         // Draw nikud
241         pain_.text(int(x_) + dx, yo_ + row_.baseline(), str, font);
242 }
243
244
245 void RowPainter::paintArabicComposeChar(pos_type & vpos)
246 {
247         pos_type pos = text_.bidi.vis2log(vpos);
248         string str;
249
250         // first char
251         char c = pars_[pit_].getChar(pos);
252         c = pars_[pit_].transformChar(c, pos);
253         str += c;
254         ++vpos;
255
256         LyXFont const & font = getFont(pos);
257         int const width = font_metrics::width(c, font);
258         int dx = 0;
259
260         for (pos_type i = pos - 1; i >= 0; --i) {
261                 c = pars_[pit_].getChar(i);
262                 if (!Encodings::IsComposeChar_arabic(c)) {
263                         if (IsPrintableNonspace(c)) {
264                                 int const width2 = singleWidth(i, c);
265                                 dx = (width2 - width) / 2;
266                         }
267                         break;
268                 }
269         }
270         // Draw nikud
271         pain_.text(int(x_) + dx, yo_ + row_.baseline(), str, font);
272 }
273
274
275 void RowPainter::paintChars(pos_type & vpos, bool hebrew, bool arabic)
276 {
277         pos_type pos = text_.bidi.vis2log(vpos);
278         pos_type const end = row_.endpos();
279         LyXFont orig_font = getFont(pos);
280
281         // first character
282         string str;
283         str += pars_[pit_].getChar(pos);
284         if (arabic) {
285                 unsigned char c = str[0];
286                 str[0] = pars_[pit_].transformChar(c, pos);
287         }
288
289         bool prev_struckout = isDeletedText(pars_[pit_], pos);
290         bool prev_newtext = isInsertedText(pars_[pit_], pos);
291
292         // collect as much similar chars as we can
293         for (++vpos; vpos < end && (pos = text_.bidi.vis2log(vpos)) >= 0; ++vpos) {
294                 char c = pars_[pit_].getChar(pos);
295
296                 if (!IsPrintableNonspace(c))
297                         break;
298
299                 if (prev_struckout != isDeletedText(pars_[pit_], pos))
300                         break;
301
302                 if (prev_newtext != isInsertedText(pars_[pit_], pos))
303                         break;
304
305                 if (arabic && Encodings::IsComposeChar_arabic(c))
306                         break;
307
308                 if (hebrew && Encodings::IsComposeChar_hebrew(c))
309                         break;
310
311                 if (orig_font != getFont(pos))
312                         break;
313
314                 if (arabic)
315                         c = pars_[pit_].transformChar(c, pos);
316
317                 str += c;
318         }
319
320         if (prev_struckout)
321                 orig_font.setColor(LColor::strikeout);
322         else if (prev_newtext)
323                 orig_font.setColor(LColor::newtext);
324
325         // Draw text and set the new x position
326         //lyxerr << "paint row: yo_ " << yo_ << " baseline: " << row_.baseline()
327         //      << "\n";
328         pain_.text(int(x_), yo_ + row_.baseline(), str, orig_font);
329         x_ += font_metrics::width(str, orig_font);
330 }
331
332
333 void RowPainter::paintForeignMark(double orig_x, LyXFont const & orig_font)
334 {
335         if (!lyxrc.mark_foreign_language)
336                 return;
337         if (orig_font.language() == latex_language)
338                 return;
339         if (orig_font.language() == bv_.buffer()->params().language)
340                 return;
341
342         int const y = yo_ + row_.baseline() + 1;
343         pain_.line(int(orig_x), y, int(x_), y, LColor::language);
344 }
345
346
347 void RowPainter::paintFromPos(pos_type & vpos)
348 {
349         pos_type const pos = text_.bidi.vis2log(vpos);
350
351         LyXFont const & orig_font = getFont(pos);
352
353         double const orig_x = x_;
354
355         char const c = pars_[pit_].getChar(pos);
356
357         if (c == Paragraph::META_INSET) {
358                 paintInset(pos);
359                 ++vpos;
360                 paintForeignMark(orig_x, orig_font);
361                 return;
362         }
363
364         // usual characters, no insets
365
366         // special case languages
367         bool const hebrew = (orig_font.language()->lang() == "hebrew");
368         bool const arabic =
369                 orig_font.language()->lang() == "arabic" &&
370                 (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
371                 lyxrc.font_norm_type == LyXRC::ISO_10646_1);
372
373         // draw as many chars as we can
374         if ((!hebrew && !arabic)
375                 || (hebrew && !Encodings::IsComposeChar_hebrew(c))
376                 || (arabic && !Encodings::IsComposeChar_arabic(c))) {
377                 paintChars(vpos, hebrew, arabic);
378         } else if (hebrew) {
379                 paintHebrewComposeChar(vpos);
380         } else if (arabic) {
381                 paintArabicComposeChar(vpos);
382         }
383
384         paintForeignMark(orig_x, orig_font);
385 }
386
387
388 void RowPainter::paintBackground()
389 {
390         int const x = int(xo_);
391         int const y = yo_ < 0 ? 0 : yo_;
392         int const h = yo_ < 0 ? row_.height() + yo_ : row_.height();
393         pain_.fillRectangle(x, y, width_, h, text_.backgroundColor());
394 }
395
396
397 void RowPainter::paintSelection()
398 {
399         bool const is_rtl = text_.isRTL(pars_[pit_]);
400
401         // the current selection
402         LCursor const & cur = bv_.cursor();
403         int const starty = text_.cursorY(cur.selBegin());
404         int const endy = text_.cursorY(cur.selEnd());
405         par_type startpit = cur.selBegin().par();
406         par_type endpit = cur.selEnd().par();
407         RowList::iterator startrow = pars_[startpit].getRow(cur.selBegin().pos());
408         RowList::iterator endrow = pars_[endpit].getRow(cur.selEnd().pos());
409         int const h = row_.height();
410
411         int const row_y = text_.yo_ + pars_[pit_].y + row_.y_offset();
412
413         bool const sel_starts_here = startpit == pit_ && startrow == rit_;
414         bool const sel_ends_here   = endpit == pit_ && endrow == rit_;
415         bool const sel_on_one_row  = sel_starts_here && sel_ends_here;
416
417         if (text_.bidi.same_direction()) {
418                 if (sel_on_one_row) {
419                         int const startx = text_.cursorX(cur.selBegin());
420                         int const endx = text_.cursorX(cur.selEnd());
421                         int const x1 = is_rtl ? endx : startx;
422                         int const x2 = is_rtl ? startx : endx;
423                         pain_.fillRectangle(x1, yo_, x2 - x1, h, LColor::selection);
424                 } else if (sel_starts_here) {
425                         int const startx = text_.cursorX(cur.selBegin());
426                         int const x1 = is_rtl ? int(xo_) : startx;
427                         int const x2 = is_rtl ? startx : int(xo_) + width_;
428                         pain_.fillRectangle(x1, yo_, x2 - x1, h, LColor::selection);
429                 } else if (sel_ends_here) {
430                         int const endx = text_.cursorX(cur.selEnd());
431                         int const x1 = is_rtl ? endx : int(xo_);
432                         int const x2 = is_rtl ? int(xo_) + width_ : endx;
433                         pain_.fillRectangle(x1, yo_, x2 - x1, h, LColor::selection);
434                 } else if (row_y > starty && row_y < endy) {
435                         pain_.fillRectangle(int(xo_), yo_, width_, h, LColor::selection);
436                 }
437                 return;
438         }
439
440         if ((startpit != pit_ && startrow != rit_ && !is_rtl)
441                 || (endpit != pit_ && endrow != rit_ && is_rtl))
442                 pain_.fillRectangle(int(xo_), yo_,
443                         int(x_), h, LColor::selection);
444
445         pos_type const body_pos = pars_[pit_].beginOfBody();
446         pos_type const end = row_.endpos();
447         double tmpx = x_;
448
449         for (pos_type vpos = row_.pos(); vpos < end; ++vpos)  {
450                 pos_type pos = text_.bidi.vis2log(vpos);
451                 double const old_tmpx = tmpx;
452                 if (body_pos > 0 && pos == body_pos - 1) {
453                         LyXLayout_ptr const & layout = pars_[pit_].layout();
454                         LyXFont const lfont = getLabelFont();
455
456                         tmpx += label_hfill_ + font_metrics::width(layout->labelsep, lfont);
457
458                         if (pars_[pit_].isLineSeparator(body_pos - 1))
459                                 tmpx -= singleWidth(body_pos - 1);
460                 }
461
462                 tmpx += singleWidth(pos);
463
464                 if (hfillExpansion(pars_[pit_], row_, pos)) {
465                         if (pos >= body_pos)
466                                 tmpx += hfill_;
467                         else
468                                 tmpx += label_hfill_;
469                 } else {
470                         if (pars_[pit_].isSeparator(pos) && pos >= body_pos)
471                                 tmpx += separator_;
472                 }
473
474                 if (((startpit != pit_ && startrow != rit_)
475                                 || cur.selBegin().pos() <= pos) &&
476                         ((endpit != pit_ && endrow != rit_)
477                                 || pos < cur.selEnd().pos())) {
478                         // Here we do not use x_ as xo_ was added to x_.
479                         pain_.fillRectangle(int(old_tmpx), yo_,
480                                 int(tmpx - old_tmpx + 1), h, LColor::selection);
481                 }
482         }
483
484         if ((startpit != pit_ && startrow != rit_ && is_rtl) ||
485             (endpit != pit_ && endrow != rit_ && !is_rtl)) {
486                 pain_.fillRectangle(int(xo_ + tmpx),
487                         yo_, int(width_ - tmpx), h, LColor::selection);
488         }
489 }
490
491
492 void RowPainter::paintChangeBar()
493 {
494         pos_type const start = row_.pos();
495         pos_type const end = row_.endpos();
496
497         if (start == end || !pars_[pit_].isChanged(start, end - 1))
498                 return;
499
500         int const height = text_.isLastRow(pit_, row_)
501                 ? row_.baseline()
502                 : row_.height() + boost::next(rit_)->top_of_text();
503
504         pain_.fillRectangle(4, yo_, 5, height, LColor::changebar);
505 }
506
507
508 void RowPainter::paintAppendix()
509 {
510         if (!pars_[pit_].params().appendix())
511                 return;
512
513         int y = yo_;
514
515         if (pars_[pit_].params().startOfAppendix())
516                 y += 2 * defaultRowHeight();
517
518         pain_.line(1, y, 1, yo_ + row_.height(), LColor::appendix);
519         pain_.line(width_ - 2, y, width_ - 2, yo_ + row_.height(), LColor::appendix);
520 }
521
522
523 void RowPainter::paintDepthBar()
524 {
525         Paragraph::depth_type const depth = pars_[pit_].getDepth();
526
527         if (depth <= 0)
528                 return;
529
530         Paragraph::depth_type prev_depth = 0;
531         if (!text_.isFirstRow(pit_, row_)) {
532                 par_type pit2 = pit_;
533                 if (row_.pos() == 0)
534                         --pit2;
535                 prev_depth = pars_[pit2].getDepth();
536         }
537
538         Paragraph::depth_type next_depth = 0;
539         if (!text_.isLastRow(pit_, row_)) {
540                 par_type pit2 = pit_;
541                 if (row_.endpos() >= pars_[pit2].size())
542                         ++pit2;
543                 next_depth = pars_[pit2].getDepth();
544         }
545
546         for (Paragraph::depth_type i = 1; i <= depth; ++i) {
547                 int const w = nestMargin() / 5;
548                 int x = int(xo_) + w * i;
549                 // only consider the changebar space if we're drawing outermost text
550                 if (text_.isMainText())
551                         x += changebarMargin();
552
553                 int const h = yo_ + row_.height() - 1 - (i - next_depth - 1) * 3;
554
555                 pain_.line(x, yo_, x, h, LColor::depthbar);
556
557                 if (i > prev_depth)
558                         pain_.fillRectangle(x, yo_, w, 2, LColor::depthbar);
559                 if (i > next_depth)
560                         pain_.fillRectangle(x, h, w, 2, LColor::depthbar);
561         }
562 }
563
564
565 int RowPainter::paintAppendixStart(int y)
566 {
567         LyXFont pb_font;
568         pb_font.setColor(LColor::appendix);
569         pb_font.decSize();
570
571         string const label = _("Appendix");
572         int w = 0;
573         int a = 0;
574         int d = 0;
575         font_metrics::rectText(label, pb_font, w, a, d);
576
577         int const text_start = int(xo_ + (width_ - w) / 2);
578         int const text_end = text_start + w;
579
580         pain_.rectText(text_start, y + d, label, pb_font, LColor::none, LColor::none);
581
582         pain_.line(int(xo_ + 1), y, text_start, y, LColor::appendix);
583         pain_.line(text_end, y, int(xo_ + width_ - 2), y, LColor::appendix);
584
585         return 3 * defaultRowHeight();
586 }
587
588
589 void RowPainter::paintFirst()
590 {
591         ParagraphParameters const & parparams = pars_[pit_].params();
592
593         int y_top = 0;
594
595         // start of appendix?
596         if (parparams.startOfAppendix())
597                 y_top += paintAppendixStart(yo_ + y_top + 2 * defaultRowHeight());
598
599         Buffer const & buffer = *bv_.buffer();
600
601         LyXLayout_ptr const & layout = pars_[pit_].layout();
602
603         if (buffer.params().paragraph_separation == BufferParams::PARSEP_SKIP) {
604                 if (pit_ != 0) {
605                         if (layout->latextype == LATEX_PARAGRAPH
606                                 && !pars_[pit_].getDepth()) {
607                                 y_top += buffer.params().getDefSkip().inPixels(bv_);
608                         } else {
609                                 LyXLayout_ptr const & playout = pars_[pit_ - 1].layout();
610                                 if (playout->latextype == LATEX_PARAGRAPH
611                                         && !pars_[pit_ - 1].getDepth()) {
612                                         // is it right to use defskip here, too? (AS)
613                                         y_top += buffer.params().getDefSkip().inPixels(bv_);
614                                 }
615                         }
616                 }
617         }
618
619         bool const is_rtl = text_.isRTL(pars_[pit_]);
620         bool const is_seq = isFirstInSequence(pit_, text_.paragraphs());
621         //lyxerr << "paintFirst: " << pars_[pit_].id() << " is_seq: " << is_seq << std::endl;
622
623         // should we print a label?
624         if (layout->labeltype >= LABEL_STATIC
625             && (layout->labeltype != LABEL_STATIC
626                       || layout->latextype != LATEX_ENVIRONMENT
627                       || is_seq)) {
628
629                 LyXFont font = getLabelFont();
630                 if (!pars_[pit_].getLabelstring().empty()) {
631                         double x = x_;
632                         string const str = pars_[pit_].getLabelstring();
633
634                         // this is special code for the chapter layout. This is
635                         // printed in an extra row and has a pagebreak at
636                         // the top.
637                         if (layout->counter == "chapter") {
638                                 if (buffer.params().secnumdepth >= 0) {
639                                         float spacing_val = 1.0;
640                                         if (!parparams.spacing().isDefault()) {
641                                                 spacing_val = parparams.spacing().getValue();
642                                         } else {
643                                                 spacing_val = buffer.params().spacing().getValue();
644                                         }
645
646                                         int const maxdesc =
647                                                 int(font_metrics::maxDescent(font) * layout->spacing.getValue() * spacing_val)
648                                                 + int(layout->parsep) * defaultRowHeight();
649
650                                         if (is_rtl) {
651                                                 x = width_ - leftMargin() -
652                                                         font_metrics::width(str, font);
653                                         }
654
655                                         pain_.text(int(x),
656                                                 yo_ + row_.baseline() -
657                                                 row_.ascent_of_text() - maxdesc,
658                                                 str, font);
659                                 }
660                         } else {
661                                 if (is_rtl) {
662                                         x = width_ - leftMargin()
663                                                 + font_metrics::width(layout->labelsep, font);
664                                 } else {
665                                         x = x_ - font_metrics::width(layout->labelsep, font)
666                                                 - font_metrics::width(str, font);
667                                 }
668
669                                 pain_.text(int(x), yo_ + row_.baseline(), str, font);
670                         }
671                 }
672
673         // the labels at the top of an environment.
674         // More or less for bibliography
675         } else if (is_seq &&
676                 (layout->labeltype == LABEL_TOP_ENVIRONMENT ||
677                 layout->labeltype == LABEL_BIBLIO ||
678                 layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)) {
679                 LyXFont font = getLabelFont();
680                 if (!pars_[pit_].getLabelstring().empty()) {
681                         string const str = pars_[pit_].getLabelstring();
682                         float spacing_val = 1.0;
683                         if (!parparams.spacing().isDefault()) {
684                                 spacing_val = parparams.spacing().getValue();
685                         } else {
686                                 spacing_val = buffer.params().spacing().getValue();
687                         }
688
689                         int maxdesc =
690                                 int(font_metrics::maxDescent(font) * layout->spacing.getValue() * spacing_val
691                                 + (layout->labelbottomsep * defaultRowHeight()));
692
693                         double x = x_;
694                         if (layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT) {
695                                 x = ((is_rtl ? leftMargin() : x_)
696                                          + width_ - text_.rightMargin(pars_[pit_])) / 2;
697                                 x -= font_metrics::width(str, font) / 2;
698                         } else if (is_rtl) {
699                                 x = width_ - leftMargin() -
700                                         font_metrics::width(str, font);
701                         }
702                         pain_.text(int(x),
703                             yo_ + row_.baseline() - row_.ascent_of_text() - maxdesc,
704                                   str, font);
705                 }
706         }
707 }
708
709
710 void RowPainter::paintLast()
711 {
712         bool const is_rtl = text_.isRTL(pars_[pit_]);
713         int const endlabel = getEndLabel(pit_, text_.paragraphs());
714
715         // draw an endlabel
716         switch (endlabel) {
717         case END_LABEL_BOX:
718         case END_LABEL_FILLED_BOX: {
719                 LyXFont const font = getLabelFont();
720                 int const size = int(0.75 * font_metrics::maxAscent(font));
721                 int const y = yo_ + row_.baseline() - size;
722                 int x = is_rtl ? nestMargin() + changebarMargin() : width_ - size;
723
724                 if (width_ - int(row_.width()) <= size)
725                         x += (size - width_ + row_.width() + 1) * (is_rtl ? -1 : 1);
726
727                 if (endlabel == END_LABEL_BOX)
728                         pain_.rectangle(x, y, size, size, LColor::eolmarker);
729                 else
730                         pain_.fillRectangle(x, y, size, size, LColor::eolmarker);
731                 break;
732         }
733
734         case END_LABEL_STATIC: {
735                 LyXFont font = getLabelFont();
736                 string const & str = pars_[pit_].layout()->endlabelstring();
737                 double const x = is_rtl ?
738                         x_ - font_metrics::width(str, font)
739                         : - text_.rightMargin(pars_[pit_]) - row_.width();
740                 pain_.text(int(x), yo_ + row_.baseline(), str, font);
741                 break;
742         }
743
744         case END_LABEL_NO_LABEL:
745                 break;
746         }
747 }
748
749
750 void RowPainter::paintText()
751 {
752         pos_type const end = row_.endpos();
753         pos_type body_pos = pars_[pit_].beginOfBody();
754         if (body_pos > 0 &&
755                 (body_pos > end || !pars_[pit_].isLineSeparator(body_pos - 1))) {
756                 body_pos = 0;
757         }
758
759         LyXLayout_ptr const & layout = pars_[pit_].layout();
760
761         bool running_strikeout = false;
762         bool is_struckout = false;
763         int last_strikeout_x = 0;
764
765         for (pos_type vpos = row_.pos(); vpos < end; ) {
766                 if (x_ > bv_.workWidth())
767                         break;
768
769                 pos_type pos = text_.bidi.vis2log(vpos);
770
771                 if (pos >= pars_[pit_].size()) {
772                         ++vpos;
773                         continue;
774                 }
775
776                 if (x_ + singleWidth(pos) < 0) {
777                         x_ += singleWidth(pos);
778                         ++vpos;
779                         continue;
780                 }
781
782                 is_struckout = isDeletedText(pars_[pit_], pos);
783
784                 if (is_struckout && !running_strikeout) {
785                         running_strikeout = true;
786                         last_strikeout_x = int(x_);
787                 }
788
789                 bool const highly_editable_inset = pars_[pit_].isInset(pos)
790                         && isHighlyEditableInset(pars_[pit_].getInset(pos));
791
792                 // if we reach the end of a struck out range, paint it
793                 // we also don't paint across things like tables
794                 if (running_strikeout && (highly_editable_inset || !is_struckout)) {
795                         int const middle = yo_ + (row_.baseline() + row_.top_of_text()) / 2;
796                         pain_.line(last_strikeout_x, middle, int(x_), middle,
797                                 LColor::strikeout, Painter::line_solid, Painter::line_thin);
798                         running_strikeout = false;
799                 }
800
801                 if (body_pos > 0 && pos == body_pos - 1) {
802                         int const lwidth = font_metrics::width(layout->labelsep,
803                                 getLabelFont());
804
805                         x_ += label_hfill_ + lwidth - singleWidth(body_pos - 1);
806                 }
807
808                 if (pars_[pit_].isHfill(pos)) {
809                         x_ += 1;
810
811                         int const y0 = yo_ + row_.baseline();
812                         int const y1 = y0 - defaultRowHeight() / 2;
813
814                         pain_.line(int(x_), y1, int(x_), y0, LColor::added_space);
815
816                         if (hfillExpansion(pars_[pit_], row_, pos)) {
817                                 int const y2 = (y0 + y1) / 2;
818
819                                 if (pos >= body_pos) {
820                                         pain_.line(int(x_), y2, int(x_ + hfill_), y2,
821                                                   LColor::added_space,
822                                                   Painter::line_onoffdash);
823                                         x_ += hfill_;
824                                 } else {
825                                         pain_.line(int(x_), y2, int(x_ + label_hfill_), y2,
826                                                   LColor::added_space,
827                                                   Painter::line_onoffdash);
828                                         x_ += label_hfill_;
829                                 }
830                                 pain_.line(int(x_), y1, int(x_), y0, LColor::added_space);
831                         }
832                         x_ += 2;
833                         ++vpos;
834                 } else if (pars_[pit_].isSeparator(pos)) {
835                         x_ += singleWidth(pos);
836                         if (pos >= body_pos)
837                                 x_ += separator_;
838                         ++vpos;
839                 } else {
840                         paintFromPos(vpos);
841                 }
842         }
843
844         // if we reach the end of a struck out range, paint it
845         if (running_strikeout) {
846                 int const middle = yo_ + (row_.baseline() + row_.top_of_text()) / 2;
847                 pain_.line(last_strikeout_x, middle, int(x_), middle,
848                         LColor::strikeout, Painter::line_solid, Painter::line_thin);
849                 running_strikeout = false;
850         }
851 }
852
853
854 int paintPars(BufferView const & bv, Painter & pain,
855               LyXText const & text, par_type pit, par_type end)
856 {
857         //lyxerr << "  paintRows: pit: " << &*pit << endl;
858         ParagraphList & pars = text.paragraphs();
859
860         int y = pars[pit].y + text.yo_ - bv.top_y();
861
862         for (; pit != end; ++pit) {
863                 RowList::iterator row = pars[pit].rows.begin();
864                 RowList::iterator rend = pars[pit].rows.end();
865
866                 // We draw full paragraphs to get the (xo, yo) cache of all
867                 // contained insets right. This is needed for properly working
868                 // editXY. And maybe not even sufficient.
869                 // FIXME: Alfredo, please have a look at the coordinate business
870                 // again.
871                 for ( ; row != rend; ++row) {
872                         RowPainter(bv, pain, text, pit, row, y);
873                         y += row->height();
874                 }
875
876         }
877         return y;
878 }
879
880 } // namespace anon
881
882
883 void refreshPar(BufferView const & bv, LyXText const & text, par_type pit)
884 {
885         static NullPainter nop;
886         paintPars(bv, nop, text, pit, pit + 1);
887 }
888
889
890 int paintText(BufferView const & bv)
891 {
892         par_type pit, end;
893         getParsInRange(bv.text()->paragraphs(), bv.top_y(),
894                        bv.top_y() + bv.workHeight(), pit, end);
895         //lyxerr << "top_y: " << bv.top_y() << " y: " << pit->y << endl;
896         return paintPars(bv, bv.painter(), *bv.text(), pit, end);
897 }
898
899
900 void paintTextInset(LyXText const & text, PainterInfo & pi)
901 {
902         paintPars(*pi.base.bv, pi.pain, text, 0, text.paragraphs().size());
903 }