]> git.lyx.org Git - features.git/blob - src/MetricsInfo.cpp
Update sk.po
[features.git] / src / MetricsInfo.cpp
1 /**
2  * \file MetricsInfo.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "MetricsInfo.h"
14
15 #include "LyXRC.h"
16
17 #include "insets/Inset.h"
18
19 #include "mathed/MathSupport.h"
20
21 #include "frontends/FontMetrics.h"
22 #include "frontends/Painter.h"
23
24 using namespace std;
25
26
27 namespace lyx {
28
29 /////////////////////////////////////////////////////////////////////////
30 //
31 // MetricsBase
32 //
33 /////////////////////////////////////////////////////////////////////////
34
35 MetricsBase::MetricsBase(BufferView * b, FontInfo f, int w)
36         : bv(b), font(std::move(f)), fontname("mathnormal"),
37           textwidth(w), macro_nesting(0),
38           solid_line_thickness_(1), solid_line_offset_(1), dotted_line_thickness_(1)
39 {
40         if (lyxrc.currentZoom >= 200) {
41                 // derive the line thickness from zoom factor
42                 // the zoom is given in percent
43                 // (increase thickness at 250%, 450% etc.)
44                 solid_line_thickness_ = (lyxrc.currentZoom + 150) / 200;
45                 // adjust line_offset_ too
46                 solid_line_offset_ = 1 + solid_line_thickness_ / 2;
47         }
48         if (lyxrc.currentZoom >= 100) {
49                 // derive the line thickness from zoom factor
50                 // the zoom is given in percent
51                 // (increase thickness at 150%, 250% etc.)
52                 dotted_line_thickness_ = (lyxrc.currentZoom + 50) / 100;
53         }
54 }
55
56
57 Changer MetricsBase::changeFontSet(string const & name)
58 {
59         RefChanger<MetricsBase> rc = make_save(*this);
60         ColorCode oldcolor = font.color();
61         string const oldname = fontname;
62         fontname = name;
63         if (isMathFont(name) || isMathFont(oldname))
64                 font = sane_font;
65         augmentFont(font, name);
66         font.setSize(rc->old.font.size());
67         font.setStyle(rc->old.font.style());
68         if (name == "emph") {
69                 font.setColor(oldcolor);
70                 if (rc->old.font.shape() != UP_SHAPE)
71                         font.setShape(UP_SHAPE);
72                 else
73                         font.setShape(ITALIC_SHAPE);
74         } else if (name != "lyxtex"
75             && ((isTextFont(oldname) && oldcolor != Color_foreground)
76                 || (isMathFont(oldname) && oldcolor != Color_math)))
77                 font.setColor(oldcolor);
78         return rc;
79 }
80
81
82 Changer MetricsBase::changeEnsureMath(Inset::mode_type mode)
83 {
84         switch (mode) {
85         case Inset::UNDECIDED_MODE:
86                 return noChange();
87         case Inset::TEXT_MODE:
88                 return isMathFont(fontname) ? changeFontSet("textnormal") : noChange();
89         case Inset::MATH_MODE:
90                 // FIXME:
91                 //   \textit{\ensuremath{\text{a}}}
92                 // should appear in italics
93                 return isTextFont(fontname) ? changeFontSet("mathnormal"): noChange();
94         }
95         return noChange();
96 }
97
98
99 int MetricsBase::inPixels(Length const & len) const
100 {
101         FontInfo fi = font;
102         if (len.unit() == Length::MU)
103                 // mu is 1/18th of an em in the math symbol font
104                 fi.setFamily(SYMBOL_FAMILY);
105         else
106                 // Math style is only taken into account in the case of mu
107                 fi.setStyle(TEXT_STYLE);
108         return len.inPixels(textwidth, theFontMetrics(fi).em());
109 }
110
111
112 /////////////////////////////////////////////////////////////////////////
113 //
114 // MetricsInfo
115 //
116 /////////////////////////////////////////////////////////////////////////
117
118 MetricsInfo::MetricsInfo(BufferView * bv, FontInfo font, int textwidth,
119                          MacroContext const & mc, bool vm, bool tight)
120         : base(bv, font, textwidth), macrocontext(mc), vmode(vm), tight_insets(tight)
121 {}
122
123
124 /////////////////////////////////////////////////////////////////////////
125 //
126 // PainterInfo
127 //
128 /////////////////////////////////////////////////////////////////////////
129
130 PainterInfo::PainterInfo(BufferView * bv, lyx::frontend::Painter & painter)
131         : pain(painter), ltr_pos(false), change(),
132           selected(false), selected_left(false), selected_right(false),
133           do_spellcheck(true), full_repaint(true), background_color(Color_background),
134           leftx(0), rightx(0)
135 {
136         base.bv = bv;
137 }
138
139
140 void PainterInfo::draw(int x, int y, char_type c)
141 {
142         pain.text(x, y, c, base.font);
143 }
144
145
146 void PainterInfo::draw(int x, int y, docstring const & str)
147 {
148         pain.text(x, y, str, base.font);
149 }
150
151
152 ColorCode PainterInfo::backgroundColor(Inset const * inset, bool sel) const
153 {
154         if (selected && sel)
155                 // This inset is in a selection
156                 return Color_selection;
157
158         // special handling for inset background
159         if (inset != nullptr) {
160                 if (pain.develMode() && !inset->isBufferValid())
161                         // This inset is in error
162                         return Color_error;
163
164                 ColorCode const color_bg = inset->backgroundColor(*this);
165                 if (color_bg != Color_none)
166                         // This inset has its own color
167                         return color_bg;
168         }
169
170         if (background_color == Color_none)
171                 // This inset has no own color and does not inherit a color
172                 return Color_background;
173
174         // This inset has no own color, but inherits a color
175         return background_color;
176 }
177
178
179 Color PainterInfo::textColor(Color const & color) const
180 {
181         if (change.changed())
182                 return change.color();
183         if (selected)
184                 return Color_selectiontext;
185         return color;
186 }
187
188
189 Changer MetricsBase::changeScript()
190 {
191         switch (font.style()) {
192         case DISPLAY_STYLE:
193         case TEXT_STYLE:
194                 return font.changeStyle(SCRIPT_STYLE);
195         case SCRIPT_STYLE:
196         case SCRIPTSCRIPT_STYLE:
197                 return font.changeStyle(SCRIPTSCRIPT_STYLE);
198         case INHERIT_STYLE:
199         case IGNORE_STYLE:
200                 return noChange();
201         }
202         //remove Warning
203         return noChange();
204 }
205
206
207 Changer MetricsBase::changeFrac()
208 {
209         switch (font.style()) {
210         case DISPLAY_STYLE:
211                 return font.changeStyle(TEXT_STYLE);
212         case TEXT_STYLE:
213                 return font.changeStyle(SCRIPT_STYLE);
214         case SCRIPT_STYLE:
215         case SCRIPTSCRIPT_STYLE:
216                 return font.changeStyle(SCRIPTSCRIPT_STYLE);
217         case INHERIT_STYLE:
218         case IGNORE_STYLE:
219                 return noChange();
220         }
221         //remove Warning
222         return noChange();
223 }
224
225
226 Changer MetricsBase::changeArray(bool small)
227 {
228         if (small)
229                 return font.changeStyle(SCRIPT_STYLE);
230         return (font.style() == DISPLAY_STYLE) ? font.changeStyle(TEXT_STYLE)
231                 : noChange();
232 }
233
234
235 } // namespace lyx