]> git.lyx.org Git - lyx.git/blob - src/MetricsInfo.cpp
\\spellchecker_ignore: use LyX language name rather than langcode
[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 "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(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 #if __cplusplus >= 201402L
79         return rc;
80 #else
81         return move(rc);
82 #endif
83 }
84
85
86 Changer MetricsBase::changeEnsureMath(Inset::mode_type mode)
87 {
88         switch (mode) {
89         case Inset::UNDECIDED_MODE:
90                 return noChange();
91         case Inset::TEXT_MODE:
92                 return isMathFont(fontname) ? changeFontSet("textnormal") : noChange();
93         case Inset::MATH_MODE:
94                 // FIXME:
95                 //   \textit{\ensuremath{\text{a}}}
96                 // should appear in italics
97                 return isTextFont(fontname) ? changeFontSet("mathnormal"): noChange();
98         }
99         return noChange();
100 }
101
102
103 int MetricsBase::inPixels(Length const & len) const
104 {
105         FontInfo fi = font;
106         if (len.unit() == Length::MU)
107                 // mu is 1/18th of an em in the math symbol font
108                 fi.setFamily(SYMBOL_FAMILY);
109         else
110                 // Math style is only taken into account in the case of mu
111                 fi.setStyle(TEXT_STYLE);
112         return len.inPixels(textwidth, theFontMetrics(fi).em());
113 }
114
115
116 /////////////////////////////////////////////////////////////////////////
117 //
118 // MetricsInfo
119 //
120 /////////////////////////////////////////////////////////////////////////
121
122 MetricsInfo::MetricsInfo(BufferView * bv, FontInfo font, int textwidth,
123                          MacroContext const & mc, bool vm)
124         : base(bv, font, textwidth), macrocontext(mc), vmode(vm)
125 {}
126
127
128 /////////////////////////////////////////////////////////////////////////
129 //
130 // PainterInfo
131 //
132 /////////////////////////////////////////////////////////////////////////
133
134 PainterInfo::PainterInfo(BufferView * bv, lyx::frontend::Painter & painter)
135         : pain(painter), ltr_pos(false), change(), selected(false),
136           do_spellcheck(true), full_repaint(true), background_color(Color_background),
137           leftx(0), rightx(0)
138 {
139         base.bv = bv;
140 }
141
142
143 void PainterInfo::draw(int x, int y, char_type c)
144 {
145         pain.text(x, y, c, base.font);
146 }
147
148
149 void PainterInfo::draw(int x, int y, docstring const & str)
150 {
151         pain.text(x, y, str, base.font);
152 }
153
154
155 ColorCode PainterInfo::backgroundColor(Inset const * inset, bool sel) const
156 {
157         if (selected && sel)
158                 // This inset is in a selection
159                 return Color_selection;
160
161         // special handling for inset background
162         if (inset != nullptr) {
163                 if (pain.develMode() && !inset->isBufferValid())
164                         // This inset is in error
165                         return Color_error;
166
167                 ColorCode const color_bg = inset->backgroundColor(*this);
168                 if (color_bg != Color_none)
169                         // This inset has its own color
170                         return color_bg;
171         }
172
173         if (background_color == Color_none)
174                 // This inset has no own color and does not inherit a color
175                 return Color_background;
176
177         // This inset has no own color, but inherits a color
178         return background_color;
179 }
180
181
182 Color PainterInfo::textColor(Color const & color) const
183 {
184         if (change.changed())
185                 return change.color();
186         if (selected)
187                 return Color_selectiontext;
188         return color;
189 }
190
191
192 Changer MetricsBase::changeScript()
193 {
194         switch (font.style()) {
195         case DISPLAY_STYLE:
196         case TEXT_STYLE:
197                 return font.changeStyle(SCRIPT_STYLE);
198         case SCRIPT_STYLE:
199         case SCRIPTSCRIPT_STYLE:
200                 return font.changeStyle(SCRIPTSCRIPT_STYLE);
201         case INHERIT_STYLE:
202         case IGNORE_STYLE:
203                 return noChange();
204         }
205         //remove Warning
206         return noChange();
207 }
208
209
210 Changer MetricsBase::changeFrac()
211 {
212         switch (font.style()) {
213         case DISPLAY_STYLE:
214                 return font.changeStyle(TEXT_STYLE);
215         case TEXT_STYLE:
216                 return font.changeStyle(SCRIPT_STYLE);
217         case SCRIPT_STYLE:
218         case SCRIPTSCRIPT_STYLE:
219                 return font.changeStyle(SCRIPTSCRIPT_STYLE);
220         case INHERIT_STYLE:
221         case IGNORE_STYLE:
222                 return noChange();
223         }
224         //remove Warning
225         return noChange();
226 }
227
228
229 Changer MetricsBase::changeArray(bool small)
230 {
231         if (small)
232                 return font.changeStyle(SCRIPT_STYLE);
233         return (font.style() == DISPLAY_STYLE) ? font.changeStyle(TEXT_STYLE)
234                 : noChange();
235 }
236
237
238 } // namespace lyx