]> git.lyx.org Git - features.git/blob - src/MetricsInfo.h
Simplify Changers interface
[features.git] / src / MetricsInfo.h
1 // -*- C++ -*-
2 /**
3  * \file MetricsInfo.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  * \author Stefan Schimanski
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef METRICSINFO_H
14 #define METRICSINFO_H
15
16 #include "Changes.h"
17 #include "ColorCode.h"
18 #include "FontInfo.h"
19
20 #include "support/strfwd.h"
21 #include "support/Changer.h"
22
23
24 #include <string>
25
26
27 namespace lyx {
28
29 namespace frontend { class Painter; }
30 class BufferView;
31 class Inset;
32 class MacroContext;
33
34
35 //
36 // This is the part common to MetricsInfo and PainterInfo
37 //
38 class MetricsBase {
39 public:
40         ///
41         MetricsBase(BufferView * bv = 0, FontInfo font = FontInfo(),
42                     int textwidth = 0);
43
44         /// the current view
45         BufferView * bv;
46         /// current font
47         FontInfo font;
48         /// name of current font - mathed specific
49         std::string fontname;
50         /// This is the width available in pixels
51         int textwidth;
52         /// count wether the current mathdata is nested in macro(s)
53         int macro_nesting;
54
55         /// Temporarily change a full font.
56         Changer changeFontSet(std::string const & font);
57         // Temporarily change to the style suitable for use in fractions
58         Changer changeFrac();
59         // Temporarily change to the style suitable for use in arrays
60         Changer changeArray();
61         // Temporarily change the style to (script)script style
62         Changer changeScript();
63         ///
64         int solidLineThickness() const { return solid_line_thickness_; }
65         ///
66         int solidLineOffset() const { return solid_line_offset_; }
67         ///
68         int dottedLineThickness() const { return dotted_line_thickness_; }
69 private:
70         int solid_line_thickness_;
71         int solid_line_offset_;
72         int dotted_line_thickness_;
73 };
74
75
76 //
77 // This contains a MetricsBase and information that's only relevant during
78 // the first phase of the two-phase draw
79 //
80 class MetricsInfo {
81 public:
82         ///
83         MetricsInfo();
84         ///
85         MetricsInfo(BufferView * bv, FontInfo font, int textwidth,
86                     MacroContext const & mc);
87
88         ///
89         MetricsBase base;
90         /// The context to resolve macros
91         MacroContext const & macrocontext;
92 };
93
94
95 //
96 // This contains a MetricsBase and information that's only relevant during
97 // the second phase of the two-phase draw
98 //
99 class PainterInfo {
100 public:
101         ///
102         PainterInfo(BufferView * bv, frontend::Painter & pain);
103         ///
104         void draw(int x, int y, char_type c);
105         ///
106         void draw(int x, int y, docstring const & str);
107         /// Determines the background color for the specified inset based on the
108         /// selection state, the background color inherited from the parent inset 
109         /// and the inset's own background color.
110         /// \param sel whether to take the selection state into account
111         ColorCode backgroundColor(Inset const * inset, bool sel = true) const;
112
113         /// Determines the text color based on the intended color, the
114         /// change tracking state and the selection state. 
115         /// \param color what the color should be by default
116         Color textColor(Color const & color) const;
117
118         ///
119         MetricsBase base;
120         ///
121         frontend::Painter & pain;
122         /// Whether the text at this point is right-to-left (for InsetNewline)
123         bool ltr_pos;
124         /// The change the parent is part of (change tracking)
125         Change change_;
126         /// Whether the parent is selected as a whole
127         bool selected;
128         /// Whether the spell checker is enabled for the parent
129         bool do_spellcheck;
130         ///
131         bool full_repaint;
132         /// Current background color
133         ColorCode background_color;
134 };
135
136 class TextMetricsInfo {};
137
138 } // namespace lyx
139
140 #endif