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