]> git.lyx.org Git - lyx.git/blob - src/rowpainter.h
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[lyx.git] / src / rowpainter.h
1 // -*- C++ -*-
2 /**
3  * \file rowpainter.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author various
8  * \author John Levon
9  * \author André Pönitz
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef ROWPAINTER_H
15 #define ROWPAINTER_H
16
17 #include "support/types.h"
18
19 namespace lyx {
20
21 class Bidi;
22 class BufferView;
23 class Font;
24 class Inset;
25 class PainterInfo;
26 class Paragraph;
27 class ParagraphList;
28 class ParagraphMetrics;
29 class Row;
30 class Text;
31 class TextMetrics;
32 class ViewMetricsInfo;
33
34 namespace frontend { class Painter; }
35
36 /**
37  * A class used for painting an individual row of text.
38  * FIXME: get rid of that class.
39  */
40 class RowPainter {
41 public:
42         /// initialise and run painter
43         RowPainter(PainterInfo & pi, Text const & text,
44                 pit_type pit, Row const & row, Bidi & bidi, int x, int y);
45
46         /// paint various parts
47         /// FIXME: transfer to TextMetrics
48         void paintAppendix();
49         void paintDepthBar();
50         void paintChangeBar();
51         void paintFirst();
52         void paintLast();
53         void paintText();
54         void paintOnlyInsets();
55
56 private:
57         void paintForeignMark(double orig_x, Font const & font, int desc = 0);
58         void paintHebrewComposeChar(pos_type & vpos, Font const & font);
59         void paintArabicComposeChar(pos_type & vpos, Font const & font);
60         void paintChars(pos_type & vpos, Font const & font,
61                         bool hebrew, bool arabic);
62         int paintAppendixStart(int y);
63         void paintFromPos(pos_type & vpos);
64         void paintInset(Inset const * inset, pos_type const pos);
65         void paintHfill(pos_type const pos, pos_type const body_pos);
66
67         /// return left margin
68         int leftMargin() const;
69
70         /// return the label font for this row
71         Font const getLabelFont() const;
72
73         /// contains painting related information.
74         PainterInfo & pi_;
75
76         /// Text for the row
77         Text const & text_;
78         TextMetrics & text_metrics_;
79         ParagraphList const & pars_;
80
81         /// The row to paint
82         Row const & row_;
83
84         /// Row's paragraph
85         pit_type const pit_;
86         Paragraph const & par_;
87         ParagraphMetrics const & pm_;
88
89         /// bidi cache, comes from outside the rowpainter because
90         /// rowpainters are normally created in a for loop and there only
91         /// one of them is active at a time.
92         Bidi & bidi_;
93
94         /// is row erased? (change tracking)
95         bool erased_;
96
97         // Looks ugly - is
98         double const xo_;
99         int const yo_;    // current baseline
100         double x_;
101         int width_;
102 };
103
104 } // namespace lyx
105
106 #endif // ROWPAINTER_H