]> git.lyx.org Git - lyx.git/blob - src/rowpainter.C
weekend stuff less the chunk John "*strongly* disagrees with"
[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 "frontends/Painter.h"
15 #include "frontends/screen.h"
16 #include "frontends/font_metrics.h"
17 #include "support/LAssert.h"
18 #include "paragraph.h"
19 #include "paragraph_funcs.h"
20 #include "support/textutils.h"
21
22 #include "insets/insettext.h"
23 #include "ParagraphParameters.h"
24 #include "debug.h"
25 #include "BufferView.h"
26 #include "buffer.h"
27 #include "gettext.h"
28 #include "language.h"
29 #include "encoding.h"
30 #include "lyxtext.h"
31 #include "rowpainter.h"
32 #include "lyxrc.h"
33 #include "lyxrow_funcs.h"
34 #include "metricsinfo.h"
35
36 #include <algorithm>
37
38 using namespace lyx::support;
39
40 using std::max;
41 using lyx::pos_type;
42
43 extern int PAPER_MARGIN;
44 extern int CHANGEBAR_MARGIN;
45 extern int LEFT_MARGIN;
46
47 namespace {
48
49 // "temporary". We'll never get to use more
50 // references until we start adding hacks like
51 // these until other places catch up.
52 BufferView * perv(BufferView const & bv)
53 {
54         return const_cast<BufferView *>(&bv);
55 }
56
57 /**
58  * A class used for painting an individual row of text.
59  */
60 class RowPainter {
61 public:
62         /// initialise painter
63         RowPainter(BufferView const & bv, LyXText const & text,
64                 RowList::iterator rit, int y_offset, int x_offset, int y);
65
66         /// do the painting
67         void paint();
68 private:
69         // paint various parts
70         void paintBackground();
71         void paintSelection();
72         void paintAppendix();
73         void paintDepthBar();
74         void paintChangeBar();
75         void paintFirst();
76         void paintLast();
77         void paintForeignMark(double orig_x, LyXFont const & orig_font);
78         void paintHebrewComposeChar(lyx::pos_type & vpos);
79         void paintArabicComposeChar(lyx::pos_type & vpos);
80         void paintChars(lyx::pos_type & vpos, bool hebrew, bool arabic);
81         int paintPageBreak(string const & label, int y);
82         int paintAppendixStart(int y);
83         int paintLengthMarker(string const & prefix, VSpace const & vsp, int start);
84         void paintText();
85         void paintFromPos(lyx::pos_type & vpos);
86         void paintInset(lyx::pos_type const pos);
87
88         /// return left margin
89         int leftMargin() const;
90
91         /// return the font at the given pos
92         LyXFont const getFont(lyx::pos_type pos) const;
93
94         /// return the label font for this row
95         LyXFont const getLabelFont() const;
96
97         char const transformChar(char c, lyx::pos_type pos) const;
98
99         /// return pixel width for the given pos
100         int singleWidth(lyx::pos_type pos) const;
101         int singleWidth(lyx::pos_type pos, char c) const;
102
103         /// bufferview to paint on
104         BufferView const & bv_;
105
106         /// Painter to use
107         Painter & pain_;
108
109         /// LyXText for the row
110         LyXText const & text_;
111
112         /// The row to paint
113         RowList::iterator row_;
114
115         /// Row's paragraph
116         mutable ParagraphList::iterator  pit_;
117
118         // Looks ugly - is
119         double xo_;
120         int yo_;
121         double x_;
122         int y_;
123         int width_;
124         double separator_;
125         double hfill_;
126         double label_hfill_;
127 };
128
129
130 RowPainter::RowPainter(BufferView const & bv, LyXText const & text,
131      RowList::iterator rit,
132      int y_offset, int x_offset, int y)
133         : bv_(bv), pain_(bv_.painter()), text_(text), row_(rit),
134           pit_(rit->par()),
135                 xo_(x_offset), yo_(y_offset), y_(y)
136 {}
137
138
139 /// "temporary"
140 LyXFont const RowPainter::getFont(pos_type pos) const
141 {
142         return text_.getFont(pit_, pos);
143 }
144
145
146 int RowPainter::singleWidth(lyx::pos_type pos) const
147 {
148         return text_.singleWidth(pit_, pos);
149 }
150
151
152 int RowPainter::singleWidth(lyx::pos_type pos, char c) const
153 {
154         return text_.singleWidth(pit_, pos, c);
155 }
156
157
158 LyXFont const RowPainter::getLabelFont() const
159 {
160         return text_.getLabelFont(pit_);
161 }
162
163
164 char const RowPainter::transformChar(char c, lyx::pos_type pos) const
165 {
166         return text_.transformChar(c, *pit_, pos);
167 }
168
169
170 int RowPainter::leftMargin() const
171 {
172         return text_.leftMargin(*row_);
173 }
174
175
176 void RowPainter::paintInset(pos_type const pos)
177 {
178         InsetOld * inset = const_cast<InsetOld*>(pit_->getInset(pos));
179
180         Assert(inset);
181
182         PainterInfo pi(perv(bv_));
183         pi.base.font = getFont(pos);
184         inset->draw(pi, int(x_), yo_ + row_->baseline());
185         x_ += inset->width();
186 }
187
188
189 void RowPainter::paintHebrewComposeChar(pos_type & vpos)
190 {
191         pos_type pos = text_.vis2log(vpos);
192
193         string str;
194
195         // first char
196         char c = pit_->getChar(pos);
197         str += c;
198         ++vpos;
199
200         LyXFont const & font = getFont(pos);
201         int const width = font_metrics::width(c, font);
202         int dx = 0;
203
204         for (pos_type i = pos - 1; i >= 0; --i) {
205                 c = pit_->getChar(i);
206                 if (!Encodings::IsComposeChar_hebrew(c)) {
207                         if (IsPrintableNonspace(c)) {
208                                 int const width2 =
209                                         singleWidth(i, c);
210                                 // dalet / resh
211                                 dx = (c == 'ø' || c == 'ã')
212                                         ? width2 - width
213                                         : (width2 - width) / 2;
214                         }
215                         break;
216                 }
217         }
218
219         // Draw nikud
220         pain_.text(int(x_) + dx, yo_ + row_->baseline(), str, font);
221 }
222
223
224 void RowPainter::paintArabicComposeChar(pos_type & vpos)
225 {
226         pos_type pos = text_.vis2log(vpos);
227         string str;
228
229         // first char
230         char c = pit_->getChar(pos);
231         c = transformChar(c, pos);
232         str +=c;
233         ++vpos;
234
235         LyXFont const & font = getFont(pos);
236         int const width = font_metrics::width(c, font);
237         int dx = 0;
238
239         for (pos_type i = pos - 1; i >= 0; --i) {
240                 c = pit_->getChar(i);
241                 if (!Encodings::IsComposeChar_arabic(c)) {
242                         if (IsPrintableNonspace(c)) {
243                                 int const width2 =
244                                         singleWidth(i, c);
245                                 dx = (width2 - width) / 2;
246                         }
247                         break;
248                 }
249         }
250         // Draw nikud
251         pain_.text(int(x_) + dx, yo_ + row_->baseline(), str, font);
252 }
253
254
255 void RowPainter::paintChars(pos_type & vpos, bool hebrew, bool arabic)
256 {
257         pos_type pos = text_.vis2log(vpos);
258         pos_type const last = lastPrintablePos(text_, row_);
259         LyXFont orig_font = getFont(pos);
260
261         // first character
262         string str;
263         str += pit_->getChar(pos);
264         if (arabic) {
265                 unsigned char c = str[0];
266                 str[0] = transformChar(c, pos);
267         }
268
269         bool prev_struckout(isDeletedText(*pit_, pos));
270         bool prev_newtext(isInsertedText(*pit_, pos));
271
272         ++vpos;
273
274         // collect as much similar chars as we can
275         while (vpos <= last && (pos = text_.vis2log(vpos)) >= 0) {
276                 char c = pit_->getChar(pos);
277
278                 if (!IsPrintableNonspace(c))
279                         break;
280
281                 if (prev_struckout != isDeletedText(*pit_, pos))
282                         break;
283
284                 if (prev_newtext != isInsertedText(*pit_, pos))
285                         break;
286
287                 if (arabic && Encodings::IsComposeChar_arabic(c))
288                         break;
289                 if (hebrew && Encodings::IsComposeChar_hebrew(c))
290                         break;
291
292                 if (orig_font != getFont(pos))
293                         break;
294
295                 if (arabic)
296                         c = transformChar(c, pos);
297                 str += c;
298                 ++vpos;
299         }
300
301         if (prev_struckout) {
302                 orig_font.setColor(LColor::strikeout);
303         } else if (prev_newtext) {
304                 orig_font.setColor(LColor::newtext);
305         }
306
307         // Draw text and set the new x position
308         //lyxerr << "paint row: yo_ " << yo_ << " baseline: " << row_->baseline()
309         //      << "\n";
310         pain_.text(int(x_), yo_ + row_->baseline(), str, orig_font);
311         x_ += font_metrics::width(str, orig_font);
312 }
313
314
315 void RowPainter::paintForeignMark(double orig_x, LyXFont const & orig_font)
316 {
317         if (!lyxrc.mark_foreign_language)
318                 return;
319         if (orig_font.language() == latex_language)
320                 return;
321         if (orig_font.language() == bv_.buffer()->params.language)
322                 return;
323
324         int const y = yo_ + row_->baseline() + 1;
325         pain_.line(int(orig_x), y, int(x_), y, LColor::language);
326 }
327
328
329 void RowPainter::paintFromPos(pos_type & vpos)
330 {
331         pos_type const pos = text_.vis2log(vpos);
332
333         LyXFont const & orig_font = getFont(pos);
334
335         double const orig_x = x_;
336
337         char const c = pit_->getChar(pos);
338
339         if (IsInsetChar(c)) {
340                 paintInset(pos);
341                 ++vpos;
342                 paintForeignMark(orig_x, orig_font);
343                 return;
344         }
345
346         // usual characters, no insets
347
348         // special case languages
349         bool const hebrew = (orig_font.language()->lang() == "hebrew");
350         bool const arabic =
351                 orig_font.language()->lang() == "arabic" &&
352                 (lyxrc.font_norm_type == LyXRC::ISO_8859_6_8 ||
353                 lyxrc.font_norm_type == LyXRC::ISO_10646_1);
354
355         // draw as many chars as we can
356         if ((!hebrew && !arabic)
357                 || (hebrew && !Encodings::IsComposeChar_hebrew(c))
358                 || (arabic && !Encodings::IsComposeChar_arabic(c))) {
359                 paintChars(vpos, hebrew, arabic);
360         } else if (hebrew) {
361                 paintHebrewComposeChar(vpos);
362         } else if (arabic) {
363                 paintArabicComposeChar(vpos);
364         }
365
366         paintForeignMark(orig_x, orig_font);
367
368         return;
369 }
370
371
372 void RowPainter::paintBackground()
373 {
374         int const x = int(xo_);
375         int const y = yo_ < 0 ? 0 : yo_;
376         int const h = yo_ < 0 ? row_->height() + yo_ : row_->height();
377         pain_.fillRectangle(x, y, width_, h, text_.backgroundColor());
378 }
379
380
381 void RowPainter::paintSelection()
382 {
383         bool const is_rtl = pit_->isRightToLeftPar(bv_.buffer()->params);
384
385         // the current selection
386         int const startx = text_.selection.start.x();
387         int const endx = text_.selection.end.x();
388         int const starty = text_.selection.start.y();
389         int const endy = text_.selection.end.y();
390         RowList::iterator startrow = text_.getRow(text_.selection.start);
391         RowList::iterator endrow = text_.getRow(text_.selection.end);
392
393         if (text_.bidi_same_direction) {
394                 int x;
395                 int y = yo_;
396                 int w;
397                 int h = row_->height();
398
399                 if (startrow == row_ && endrow == row_) {
400                         if (startx < endx) {
401                                 x = int(xo_) + startx;
402                                 w = endx - startx;
403                                 pain_.fillRectangle(x, y, w, h, LColor::selection);
404                         } else {
405                                 x = int(xo_) + endx;
406                                 w = startx - endx;
407                                 pain_.fillRectangle(x, y, w, h, LColor::selection);
408                         }
409                 } else if (startrow == row_) {
410                         int const x = is_rtl ? int(xo_) : int(xo_ + startx);
411                         int const w = is_rtl ? startx : (width_ - startx);
412                         pain_.fillRectangle(x, y, w, h, LColor::selection);
413                 } else if (endrow == row_) {
414                         int const x = is_rtl ? int(xo_ + endx) : int(xo_);
415                         int const w = is_rtl ? (width_ - endx) : endx;
416                         pain_.fillRectangle(x, y, w, h, LColor::selection);
417                 } else if (y_ > starty && y_ < endy) {
418                         pain_.fillRectangle(int(xo_), y, width_, h, LColor::selection);
419                 }
420                 return;
421         } else if (startrow != row_ && endrow != row_) {
422                 if (y_ > starty && y_ < endy) {
423                         int w = width_;
424                         int h = row_->height();
425                         pain_.fillRectangle(int(xo_), yo_, w, h, LColor::selection);
426                 }
427                 return;
428         }
429
430         if ((startrow != row_ && !is_rtl) || (endrow != row_ && is_rtl))
431                 pain_.fillRectangle(int(xo_), yo_,
432                         int(x_), row_->height(), LColor::selection);
433
434         pos_type const body_pos = pit_->beginningOfBody();
435         pos_type const last = lastPrintablePos(text_, row_);
436         double tmpx = x_;
437
438         for (pos_type vpos = row_->pos(); vpos <= last; ++vpos)  {
439                 pos_type pos = text_.vis2log(vpos);
440                 double const old_tmpx = tmpx;
441                 if (body_pos > 0 && pos == body_pos - 1) {
442                         LyXLayout_ptr const & layout = pit_->layout();
443                         LyXFont const lfont = getLabelFont();
444
445                         tmpx += label_hfill_ + font_metrics::width(layout->labelsep, lfont);
446
447                         if (pit_->isLineSeparator(body_pos - 1))
448                                 tmpx -= singleWidth(body_pos - 1);
449                 }
450
451                 if (hfillExpansion(text_, row_, pos)) {
452                         tmpx += singleWidth(pos);
453                         if (pos >= body_pos)
454                                 tmpx += hfill_;
455                         else
456                                 tmpx += label_hfill_;
457                 }
458
459                 else if (pit_->isSeparator(pos)) {
460                         tmpx += singleWidth(pos);
461                         if (pos >= body_pos)
462                                 tmpx += separator_;
463                 } else {
464                         tmpx += singleWidth(pos);
465                 }
466
467                 if ((startrow != row_ || text_.selection.start.pos() <= pos) &&
468                         (endrow != row_ || pos < text_.selection.end.pos())) {
469                         // Here we do not use x_ as xo_ was added to x_.
470                         pain_.fillRectangle(int(old_tmpx), yo_,
471                                 int(tmpx - old_tmpx + 1),
472                                 row_->height(), LColor::selection);
473                 }
474         }
475
476         if ((startrow != row_ && is_rtl) || (endrow != row_ && !is_rtl)) {
477                 pain_.fillRectangle(int(xo_ + tmpx),
478                                       yo_, int(bv_.workWidth() - tmpx),
479                                       row_->height(), LColor::selection);
480         }
481 }
482
483
484 void RowPainter::paintChangeBar()
485 {
486         pos_type const start = row_->pos();
487         pos_type const end = lastPrintablePos(text_, row_);
488
489         if (!pit_->isChanged(start, end))
490                 return;
491
492         int const height = (boost::next(row_) != text_.rows().end()
493                 ? row_->height() + boost::next(row_)->top_of_text()
494                 : row_->baseline());
495
496         pain_.fillRectangle(4, yo_, 5, height, LColor::changebar);
497 }
498
499
500 void RowPainter::paintAppendix()
501 {
502         if (!pit_->params().appendix())
503                 return;
504
505         // FIXME: can be just width_ ?
506         int const ww = bv_.workWidth();
507
508         int y = yo_;
509
510         if (pit_->params().startOfAppendix())
511                 y += 2 * defaultRowHeight();
512
513         pain_.line(1, y, 1, yo_ + row_->height(), LColor::appendix);
514         pain_.line(ww - 2, y, ww - 2, yo_ + row_->height(), LColor::appendix);
515 }
516
517
518 void RowPainter::paintDepthBar()
519 {
520         Paragraph::depth_type const depth = pit_->getDepth();
521
522         if (depth <= 0)
523                 return;
524
525         Paragraph::depth_type prev_depth = 0;
526         if (row_ != text_.rows().begin())
527                 prev_depth = boost::prior(row_)->par()->getDepth();
528         Paragraph::depth_type next_depth = 0;
529
530         RowList::iterator next_row = boost::next(row_);
531         if (next_row != text_.rows().end())
532                 next_depth = next_row->par()->getDepth();
533
534         for (Paragraph::depth_type i = 1; i <= depth; ++i) {
535                 int const w = PAPER_MARGIN / 5;
536                 int x = int(w * i + xo_);
537                 // only consider the changebar space if we're drawing outer left
538                 if (!xo_)
539                         x += CHANGEBAR_MARGIN;
540                 int const h = yo_ + row_->height() - 1 - (i - next_depth - 1) * 3;
541
542                 pain_.line(x, yo_, x, h, LColor::depthbar);
543
544                 if (i > prev_depth)
545                         pain_.fillRectangle(x, yo_, w, 2, LColor::depthbar);
546                 if (i > next_depth)
547                         pain_.fillRectangle(x, h, w, 2, LColor::depthbar);
548         }
549 }
550
551
552 int RowPainter::paintLengthMarker(string const & prefix, VSpace const & vsp, int start)
553 {
554         if (vsp.kind() == VSpace::NONE)
555                 return 0;
556
557         int const arrow_size = 4;
558         int const size = getLengthMarkerHeight(bv_, vsp);
559         int const end = start + size;
560
561         // the label to display (if any)
562         string str;
563         // y-values for top arrow
564         int ty1, ty2;
565         // y-values for bottom arrow
566         int by1, by2;
567
568         str = prefix + " (" + vsp.asLyXCommand() + ")";
569
570         if (vsp.kind() == VSpace::VFILL) {
571                 ty1 = ty2 = start;
572                 by1 = by2 = end;
573         } else {
574                 // adding or removing space
575                 bool const added = vsp.kind() != VSpace::LENGTH ||
576                                    vsp.length().len().value() > 0.0;
577                 ty1 = added ? (start + arrow_size) : start;
578                 ty2 = added ? start : (start + arrow_size);
579                 by1 = added ? (end - arrow_size) : end;
580                 by2 = added ? end : (end - arrow_size);
581         }
582
583         int const leftx = int(xo_) + leftMargin();
584         int const midx = leftx + arrow_size;
585         int const rightx = midx + arrow_size;
586
587         // first the string
588         int w = 0;
589         int a = 0;
590         int d = 0;
591
592         LyXFont font;
593         font.setColor(LColor::added_space).decSize().decSize();
594         font_metrics::rectText(str, font, w, a, d);
595
596         pain_.rectText(leftx + 2 * arrow_size + 5,
597                          start + ((end - start) / 2) + d,
598                          str, font);
599
600         // top arrow
601         pain_.line(leftx, ty1, midx, ty2, LColor::added_space);
602         pain_.line(midx, ty2, rightx, ty1, LColor::added_space);
603
604         // bottom arrow
605         pain_.line(leftx, by1, midx, by2, LColor::added_space);
606         pain_.line(midx, by2, rightx, by1, LColor::added_space);
607
608         // joining line
609         pain_.line(midx, ty2, midx, by2, LColor::added_space);
610
611         return size;
612 }
613
614
615 int RowPainter::paintPageBreak(string const & label, int y)
616 {
617         LyXFont pb_font;
618         pb_font.setColor(LColor::pagebreak).decSize();
619
620         int w = 0;
621         int a = 0;
622         int d = 0;
623         font_metrics::rectText(label, pb_font, w, a, d);
624
625         int const text_start = int(xo_ + (width_ - w) / 2);
626         int const text_end = text_start + w;
627
628         pain_.rectText(text_start, y + d, label, pb_font);
629
630         pain_.line(int(xo_), y, text_start, y,
631                 LColor::pagebreak, Painter::line_onoffdash);
632         pain_.line(text_end, y, int(xo_ + width_), y,
633                 LColor::pagebreak, Painter::line_onoffdash);
634
635         return 3 * defaultRowHeight();
636 }
637
638
639 int RowPainter::paintAppendixStart(int y)
640 {
641         LyXFont pb_font;
642         pb_font.setColor(LColor::appendix).decSize();
643
644         string const label = _("Appendix");
645         int w = 0;
646         int a = 0;
647         int d = 0;
648         font_metrics::rectText(label, pb_font, w, a, d);
649
650         int const text_start = int(xo_ + (width_ - w) / 2);
651         int const text_end = text_start + w;
652
653         pain_.rectText(text_start, y + d, label, pb_font);
654
655         pain_.line(int(xo_ + 1), y, text_start, y, LColor::appendix);
656         pain_.line(text_end, y, int(xo_ + width_ - 2), y, LColor::appendix);
657
658         return 3 * defaultRowHeight();
659 }
660
661
662 void RowPainter::paintFirst()
663 {
664         ParagraphParameters const & parparams = pit_->params();
665
666         int y_top = 0;
667
668         // start of appendix?
669         if (parparams.startOfAppendix())
670                 y_top += paintAppendixStart(yo_ + y_top + 2 * defaultRowHeight());
671
672         // the top margin
673         if (row_ == text_.rows().begin() && !text_.isInInset())
674                 y_top += PAPER_MARGIN;
675
676         // draw a top pagebreak
677         if (parparams.pagebreakTop())
678                 y_top += paintPageBreak(_("Page Break (top)"),
679                         yo_ + y_top + 2 * defaultRowHeight());
680
681         // draw the additional space if needed:
682         y_top += paintLengthMarker(_("Space above"), parparams.spaceTop(),
683                         yo_ + y_top);
684
685         Buffer const * buffer = bv_.buffer();
686
687         LyXLayout_ptr const & layout = pit_->layout();
688
689         if (buffer->params.paragraph_separation == BufferParams::PARSEP_SKIP) {
690                 if (pit_ != text_.ownerParagraphs().begin()) {
691                         if (layout->latextype == LATEX_PARAGRAPH
692                                 && !pit_->getDepth()) {
693                                 y_top += buffer->params.getDefSkip().inPixels(bv_);
694                         } else {
695                                 LyXLayout_ptr const & playout =
696                                         boost::prior(pit_)->layout();
697                                 if (playout->latextype == LATEX_PARAGRAPH
698                                         && !boost::prior(pit_)->getDepth()) {
699                                         // is it right to use defskip here, too? (AS)
700                                         y_top += buffer->params.getDefSkip().inPixels(bv_);
701                                 }
702                         }
703                 }
704         }
705
706         int const ww = bv_.workWidth();
707
708         // draw a top line
709         if (parparams.lineTop()) {
710                 int const asc = font_metrics::ascent('x', getFont(0));
711
712                 y_top += asc;
713
714                 int const w = (text_.isInInset() ? text_.inset_owner->width() : ww);
715                 int const xp = static_cast<int>(text_.isInInset() ? xo_ : 0);
716                 pain_.line(xp, yo_ + y_top, xp + w, yo_ + y_top,
717                         LColor::topline, Painter::line_solid,
718                         Painter::line_thick);
719
720                 y_top += asc;
721         }
722
723         bool const is_rtl = pit_->isRightToLeftPar(bv_.buffer()->params);
724
725         // should we print a label?
726         if (layout->labeltype >= LABEL_STATIC
727             && (layout->labeltype != LABEL_STATIC
728                 || layout->latextype != LATEX_ENVIRONMENT
729                 || isFirstInSequence(pit_, text_.ownerParagraphs()))) {
730
731                 LyXFont font = getLabelFont();
732                 if (!pit_->getLabelstring().empty()) {
733                         double x = x_;
734                         string const str = pit_->getLabelstring();
735
736                         // this is special code for the chapter layout. This is
737                         // printed in an extra row and has a pagebreak at
738                         // the top.
739                         if (layout->labeltype == LABEL_COUNTER_CHAPTER) {
740                                 if (buffer->params.secnumdepth >= 0) {
741                                         float spacing_val = 1.0;
742                                         if (!parparams.spacing().isDefault()) {
743                                                 spacing_val = parparams.spacing().getValue();
744                                         } else {
745                                                 spacing_val = buffer->params.spacing.getValue();
746                                         }
747
748                                         int const maxdesc =
749                                                 int(font_metrics::maxDescent(font) * layout->spacing.getValue() * spacing_val)
750                                                 + int(layout->parsep) * defaultRowHeight();
751
752                                         if (is_rtl) {
753                                                 x = ww - leftMargin() -
754                                                         font_metrics::width(str, font);
755                                         }
756
757                                         pain_.text(int(x),
758                                                 yo_ + row_->baseline() -
759                                                 row_->ascent_of_text() - maxdesc,
760                                                 str, font);
761                                 }
762                         } else {
763                                 if (is_rtl) {
764                                         x = ww - leftMargin()
765                                                 + font_metrics::width(layout->labelsep, font);
766                                 } else {
767                                         x = x_ - font_metrics::width(layout->labelsep, font)
768                                                 - font_metrics::width(str, font);
769                                 }
770
771                                 pain_.text(int(x), yo_ + row_->baseline(), str, font);
772                         }
773                 }
774
775         // the labels at the top of an environment.
776         // More or less for bibliography
777         } else if (isFirstInSequence(pit_, text_.ownerParagraphs()) &&
778                 (layout->labeltype == LABEL_TOP_ENVIRONMENT ||
779                 layout->labeltype == LABEL_BIBLIO ||
780                 layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT)) {
781                 LyXFont font = getLabelFont();
782                 if (!pit_->getLabelstring().empty()) {
783                         string const str = pit_->getLabelstring();
784                         float spacing_val = 1.0;
785                         if (!parparams.spacing().isDefault()) {
786                                 spacing_val = parparams.spacing().getValue();
787                         } else {
788                                 spacing_val = buffer->params.spacing.getValue();
789                         }
790
791                         int maxdesc =
792                                 int(font_metrics::maxDescent(font) * layout->spacing.getValue() * spacing_val
793                                 + (layout->labelbottomsep * defaultRowHeight()));
794
795                         double x = x_;
796                         if (layout->labeltype == LABEL_CENTERED_TOP_ENVIRONMENT) {
797                                 x = ((is_rtl ? leftMargin() : x_)
798                                          + ww - text_.rightMargin(*bv_.buffer(), *row_)) / 2;
799                                 x -= font_metrics::width(str, font) / 2;
800                         } else if (is_rtl) {
801                                 x = ww - leftMargin() -
802                                         font_metrics::width(str, font);
803                         }
804                         pain_.text(int(x),
805                             yo_ + row_->baseline() - row_->ascent_of_text() - maxdesc,
806                                   str, font);
807                 }
808         }
809 }
810
811
812 void RowPainter::paintLast()
813 {
814         ParagraphParameters const & parparams = pit_->params();
815         int y_bottom = row_->height() - 1;
816
817         // the bottom margin
818         if (boost::next(row_) == text_.rows().end() && !text_.isInInset())
819                 y_bottom -= PAPER_MARGIN;
820
821         int const ww = bv_.workWidth();
822
823         // draw a bottom pagebreak
824         if (parparams.pagebreakBottom()) {
825                 y_bottom -= paintPageBreak(_("Page Break (bottom)"),
826                         yo_ + y_bottom - 2 * defaultRowHeight());
827         }
828
829         // draw the additional space if needed:
830         int const height = getLengthMarkerHeight(bv_, parparams.spaceBottom());
831         y_bottom -= paintLengthMarker(_("Space below"), parparams.spaceBottom(),
832                              yo_ + y_bottom - height);
833
834         // draw a bottom line
835         if (parparams.lineBottom()) {
836                 int const asc = font_metrics::ascent('x',
837                         getFont(max(pos_type(0), pit_->size() - 1)));
838
839                 y_bottom -= asc;
840
841                 int const w = text_.isInInset() ? text_.inset_owner->width() : ww;
842                 int const xp = int(text_.isInInset() ? xo_ : 0);
843                 int const y = yo_ + y_bottom;
844                 pain_.line(xp, y, xp + w, y, LColor::topline, Painter::line_solid,
845                           Painter::line_thick);
846
847                 y_bottom -= asc;
848         }
849
850         bool const is_rtl = pit_->isRightToLeftPar(bv_.buffer()->params);
851         int const endlabel = getEndLabel(pit_, text_.ownerParagraphs());
852
853         // draw an endlabel
854         switch (endlabel) {
855         case END_LABEL_BOX:
856         case END_LABEL_FILLED_BOX:
857         {
858                 LyXFont const font = getLabelFont();
859                 int const size = int(0.75 * font_metrics::maxAscent(font));
860                 int const y = (yo_ + row_->baseline()) - size;
861                 int x = is_rtl ? LEFT_MARGIN : ww - PAPER_MARGIN - size;
862
863                 if (row_->fill() <= size)
864                         x += (size - row_->fill() + 1) * (is_rtl ? -1 : 1);
865
866                 if (endlabel == END_LABEL_BOX)
867                         pain_.rectangle(x, y, size, size, LColor::eolmarker);
868                 else
869                         pain_.fillRectangle(x, y, size, size, LColor::eolmarker);
870                 break;
871         }
872         case END_LABEL_STATIC:
873         {
874                 LyXFont font = getLabelFont();
875                 string const & str = pit_->layout()->endlabelstring();
876                 double const x = is_rtl ?
877                         x_ - font_metrics::width(str, font)
878                         : ww - text_.rightMargin(*bv_.buffer(), *row_) - row_->fill();
879                 pain_.text(int(x), yo_ + row_->baseline(), str, font);
880                 break;
881         }
882         case END_LABEL_NO_LABEL:
883                 break;
884         }
885 }
886
887
888 void RowPainter::paintText()
889 {
890         pos_type const last = lastPrintablePos(text_, row_);
891         pos_type body_pos = pit_->beginningOfBody();
892         if (body_pos > 0 &&
893                 (body_pos - 1 > last || !pit_->isLineSeparator(body_pos - 1))) {
894                 body_pos = 0;
895         }
896
897         LyXLayout_ptr const & layout = pit_->layout();
898
899         bool running_strikeout = false;
900         bool is_struckout = false;
901         int last_strikeout_x = 0;
902
903         pos_type vpos = row_->pos();
904         while (vpos <= last) {
905                 if (x_ > bv_.workWidth())
906                         break;
907                 pos_type pos = text_.vis2log(vpos);
908
909                 if (pos >= pit_->size()) {
910                         ++vpos;
911                         continue;
912                 }
913
914                 if (x_ + singleWidth(pos) < 0) {
915                         x_ += singleWidth(pos);
916                         ++vpos;
917                         continue;
918                 }
919
920                 is_struckout = isDeletedText(*pit_, pos);
921
922                 if (is_struckout && !running_strikeout) {
923                         running_strikeout = true;
924                         last_strikeout_x = int(x_);
925                 }
926
927                 bool const highly_editable_inset = pit_->isInset(pos)
928                         && isHighlyEditableInset(pit_->getInset(pos));
929
930                 // if we reach the end of a struck out range, paint it
931                 // we also don't paint across things like tables
932                 if (running_strikeout && (highly_editable_inset || !is_struckout)) {
933                         int const middle = yo_ + row_->top_of_text()
934                                 + (row_->baseline() - row_->top_of_text()) / 2;
935                         pain_.line(last_strikeout_x, middle, int(x_), middle,
936                                 LColor::strikeout, Painter::line_solid, Painter::line_thin);
937                         running_strikeout = false;
938                 }
939
940                 if (body_pos > 0 && pos == body_pos - 1) {
941                         int const lwidth = font_metrics::width(layout->labelsep,
942                                 getLabelFont());
943
944                         x_ += label_hfill_ + lwidth - singleWidth(body_pos - 1);
945                 }
946
947                 if (pit_->isHfill(pos)) {
948                         x_ += 1;
949
950                         int const y0 = yo_ + row_->baseline();
951                         int const y1 = y0 - defaultRowHeight() / 2;
952
953                         pain_.line(int(x_), y1, int(x_), y0, LColor::added_space);
954
955                         if (hfillExpansion(text_, row_, pos)) {
956                                 int const y2 = (y0 + y1) / 2;
957
958                                 if (pos >= body_pos) {
959                                         pain_.line(int(x_), y2, int(x_ + hfill_), y2,
960                                                   LColor::added_space,
961                                                   Painter::line_onoffdash);
962                                         x_ += hfill_;
963                                 } else {
964                                         pain_.line(int(x_), y2, int(x_ + label_hfill_), y2,
965                                                   LColor::added_space,
966                                                   Painter::line_onoffdash);
967                                         x_ += label_hfill_;
968                                 }
969                                 pain_.line(int(x_), y1, int(x_), y0, LColor::added_space);
970                         }
971                         x_ += 2;
972                         ++vpos;
973                 } else if (pit_->isSeparator(pos)) {
974                         x_ += singleWidth(pos);
975                         if (pos >= body_pos)
976                                 x_ += separator_;
977                         ++vpos;
978                 } else {
979                         paintFromPos(vpos);
980                 }
981         }
982
983         // if we reach the end of a struck out range, paint it
984         if (running_strikeout) {
985                 int const middle = yo_ + row_->top_of_text()
986                         + ((row_->baseline() - row_->top_of_text()) / 2);
987                 pain_.line(last_strikeout_x, middle, int(x_), middle,
988                         LColor::strikeout, Painter::line_solid, Painter::line_thin);
989                 running_strikeout = false;
990         }
991 }
992
993
994 void RowPainter::paint()
995 {
996         width_ = text_.workWidth();
997
998         // FIXME: must be a cleaner way here. Aren't these calculations
999         // belonging to row metrics ?
1000         text_.prepareToPrint(row_, x_, separator_, hfill_, label_hfill_);
1001
1002         // FIXME: what is this fixing ?
1003         if (text_.isInInset() && x_ < 0)
1004                 x_ = 0;
1005         x_ += xo_;
1006
1007         // If we're *not* at the top-level of rows, then the
1008         // background has already been cleared.
1009         if (&text_ == bv_.text)
1010                 paintBackground();
1011
1012         // paint the selection background
1013         if (text_.selection.set())
1014                 paintSelection();
1015
1016         // vertical lines for appendix
1017         paintAppendix();
1018
1019         // environment depth brackets
1020         paintDepthBar();
1021
1022         // changebar
1023         paintChangeBar();
1024
1025         if (row_->isParStart())
1026                 paintFirst();
1027
1028         if (isParEnd(text_, row_))
1029                 paintLast();
1030
1031         // paint text
1032         paintText();
1033 }
1034
1035
1036 } // namespace anon
1037
1038
1039 int getLengthMarkerHeight(BufferView const & bv, VSpace const & vsp)
1040 {
1041         if (vsp.kind() == VSpace::NONE)
1042                 return 0;
1043
1044         int const arrow_size = 4;
1045         int const space_size = vsp.inPixels(bv);
1046
1047         LyXFont font;
1048         font.decSize();
1049         int const min_size = max(3 * arrow_size,
1050                 font_metrics::maxAscent(font)
1051                 + font_metrics::maxDescent(font));
1052
1053         if (vsp.length().len().value() < 0.0)
1054                 return min_size;
1055         else
1056                 return max(min_size, space_size);
1057 }
1058
1059
1060 void paintRowsHelper(BufferView const & bv, LyXText const & text,
1061         RowList::iterator rit, int y_offset, int x_offset, int y)
1062 {
1063         // fix up missing metrics() call for main LyXText
1064         // calling metrics() directly is (a) slow and (b) crashs
1065         if (&text == bv.text) {
1066 #if 1
1067                 // make sure all insets are updated
1068                 ParagraphList::iterator pit = text.ownerParagraphs().begin();
1069                 ParagraphList::iterator end = text.ownerParagraphs().end();
1070
1071                 // compute inset metrics
1072                 for (; pit != end; ++pit) {
1073                         InsetList & insetList = pit->insetlist;
1074                         InsetList::iterator ii = insetList.begin();
1075                         InsetList::iterator iend = insetList.end();
1076                         for (; ii != iend; ++ii) {
1077                                 Dimension dim;
1078                                 LyXFont font;
1079                                 MetricsInfo mi(perv(bv), font, text.workWidth());
1080                                 ii->inset->metrics(mi, dim);
1081                         }
1082                 }
1083 #else
1084                 LyXFont font;
1085                 Dimension dim;
1086                 MetricsInfo mi(perv(bv), font, text.workWidth());
1087                 const_cast<LyXText&>(text).metrics(mi, dim);
1088 #endif
1089         }
1090
1091         RowPainter painter(bv, text, rit, y_offset, x_offset, y);
1092         painter.paint();
1093 }
1094
1095
1096 int paintRows(BufferView const & bv, LyXText const & text,
1097         RowList::iterator rit, int xo, int y, int yf, int y2, int yo)
1098 {
1099         RowList::iterator end = text.rows().end();
1100         while (rit != end && yf < y2) {
1101                 //const_cast<LyXText &>(text).setHeightOfRow(rit);
1102                 paintRowsHelper(bv, text, rit, y + yo, xo, y + text.top_y());
1103                 y += rit->height();
1104                 yf += rit->height();
1105                 ++rit;
1106         }
1107         return y;
1108 }
1109