]> git.lyx.org Git - features.git/blob - src/FontInfo.cpp
Support the mathbbm font.
[features.git] / src / FontInfo.cpp
1 /**
2  * \file src/FontInfo.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Jean-Marc Lasgouttes
8  * \author Angus Leeming
9  * \author André Pönitz
10  * \author Dekel Tsur
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "ColorSet.h"
18 #include "FontInfo.h"
19 #include "Lexer.h"
20 #include "LyXRC.h"
21
22 #include "support/convert.h"
23 #include "support/debug.h"
24 #include "support/docstring.h"
25 #include "support/gettext.h"
26 #include "support/lstrings.h"
27 #include "support/RefChanger.h"
28
29 #include <algorithm>
30 #include <ostream>
31 #include <sstream>
32
33 using namespace std;
34 using namespace lyx::support;
35
36 namespace lyx {
37
38 //
39 // Names for the GUI
40 //
41
42 char const * GUIFamilyNames[NUM_FAMILIES + 2 /* default & error */] =
43 { N_("Roman"), N_("Sans Serif"), N_("Typewriter"), N_("Symbol"),
44   "cmr", "cmsy", "cmm", "cmex", "msa", "msb", "ds", "eufrak", "rsfs", "stmry",
45   "wasy", "esint", N_("Inherit"), N_("Ignore") };
46
47 char const * GUISeriesNames[NUM_SERIES + 2 /* default & error */] =
48 { N_("Medium"), N_("Bold"), N_("Inherit"), N_("Ignore") };
49
50 char const * GUIShapeNames[NUM_SHAPE + 2 /* default & error */] =
51 { N_("Upright"), N_("Italic"), N_("Slanted"), N_("Smallcaps"), N_("Inherit"),
52   N_("Ignore") };
53
54 char const * GUISizeNames[NUM_SIZE + 4 /* increase, decrease, default & error */] =
55 { N_("Tiny"), N_("Smallest"), N_("Smaller"), N_("Small"), N_("Normal"), N_("Large"),
56   N_("Larger"), N_("Largest"), N_("Huge"), N_("Huger"), N_("Increase"), N_("Decrease"),
57   N_("Inherit"), N_("Ignore") };
58
59 char const * GUIMiscNames[5] =
60 { N_("Off"), N_("On"), N_("Toggle"), N_("Inherit"), N_("Ignore") };
61
62
63 //
64 // Strings used to read and write .lyx format files
65 //
66 char const * LyXFamilyNames[NUM_FAMILIES + 2 /* default & error */] =
67 { "roman", "sans", "typewriter", "symbol",
68   "cmr", "cmsy", "cmm", "cmex", "msa", "msb", "ds", "eufrak", "rsfs", "stmry",
69   "wasy", "esint", "default", "error" };
70
71 char const * LyXSeriesNames[NUM_SERIES + 2 /* default & error */] =
72 { "medium", "bold", "default", "error" };
73
74 char const * LyXShapeNames[NUM_SHAPE + 2 /* default & error */] =
75 { "up", "italic", "slanted", "smallcaps", "default", "error" };
76
77 char const * LyXSizeNames[NUM_SIZE + 4 /* increase, decrease, default & error */] =
78 { "tiny", "scriptsize", "footnotesize", "small", "normal", "large",
79   "larger", "largest", "huge", "giant",
80   "increase", "decrease", "default", "error" };
81
82 char const * LyXMiscNames[5] =
83 { "off", "on", "toggle", "default", "error" };
84
85
86 FontInfo const sane_font(
87         ROMAN_FAMILY,
88         MEDIUM_SERIES,
89         UP_SHAPE,
90         NORMAL_SIZE,
91         TEXT_STYLE,
92         Color_none,
93         Color_background,
94         FONT_OFF,
95         FONT_OFF,
96         FONT_OFF,
97         FONT_OFF,
98         FONT_OFF,
99         FONT_OFF,
100         FONT_OFF,
101         FONT_OFF,
102         FONT_OFF);
103
104 FontInfo const inherit_font(
105         INHERIT_FAMILY,
106         INHERIT_SERIES,
107         INHERIT_SHAPE,
108         INHERIT_SIZE,
109         INHERIT_STYLE,
110         Color_inherit,
111         Color_inherit,
112         FONT_INHERIT,
113         FONT_INHERIT,
114         FONT_INHERIT,
115         FONT_INHERIT,
116         FONT_INHERIT,
117         FONT_INHERIT,
118         FONT_INHERIT,
119         FONT_OFF,
120         FONT_INHERIT);
121
122 FontInfo const ignore_font(
123         IGNORE_FAMILY,
124         IGNORE_SERIES,
125         IGNORE_SHAPE,
126         IGNORE_SIZE,
127         IGNORE_STYLE,
128         Color_ignore,
129         Color_ignore,
130         FONT_IGNORE,
131         FONT_IGNORE,
132         FONT_IGNORE,
133         FONT_IGNORE,
134         FONT_IGNORE,
135         FONT_IGNORE,
136         FONT_IGNORE,
137         FONT_IGNORE,
138         FONT_IGNORE);
139
140
141 FontInfo::FontInfo()
142 {
143         *this = sane_font;
144 }
145
146
147 /// Decreases font size_ by one
148 FontInfo & FontInfo::decSize()
149 {
150         switch (size_) {
151         case HUGER_SIZE:        size_ = HUGE_SIZE;     break;
152         case HUGE_SIZE:         size_ = LARGEST_SIZE;  break;
153         case LARGEST_SIZE:      size_ = LARGER_SIZE;   break;
154         case LARGER_SIZE:       size_ = LARGE_SIZE;    break;
155         case LARGE_SIZE:        size_ = NORMAL_SIZE;   break;
156         case NORMAL_SIZE:       size_ = SMALL_SIZE;    break;
157         case SMALL_SIZE:        size_ = FOOTNOTE_SIZE; break;
158         case FOOTNOTE_SIZE:     size_ = SCRIPT_SIZE;   break;
159         case SCRIPT_SIZE:       size_ = TINY_SIZE;     break;
160         case TINY_SIZE:         break;
161         case INCREASE_SIZE:
162                 LYXERR0("Can't FontInfo::decSize on INCREASE_SIZE");
163                 break;
164         case DECREASE_SIZE:
165                 LYXERR0("Can't FontInfo::decSize on DECREASE_SIZE");
166                 break;
167         case INHERIT_SIZE:
168                 LYXERR0("Can't FontInfo::decSize on INHERIT_SIZE");
169                 break;
170         case IGNORE_SIZE:
171                 LYXERR0("Can't FontInfo::decSize on IGNORE_SIZE");
172                 break;
173         }
174         return *this;
175 }
176
177
178 /// Increases font size_ by one
179 FontInfo & FontInfo::incSize()
180 {
181         switch (size_) {
182         case HUGER_SIZE:        break;
183         case HUGE_SIZE:         size_ = HUGER_SIZE;    break;
184         case LARGEST_SIZE:      size_ = HUGE_SIZE;     break;
185         case LARGER_SIZE:       size_ = LARGEST_SIZE;  break;
186         case LARGE_SIZE:        size_ = LARGER_SIZE;   break;
187         case NORMAL_SIZE:       size_ = LARGE_SIZE;    break;
188         case SMALL_SIZE:        size_ = NORMAL_SIZE;   break;
189         case FOOTNOTE_SIZE:     size_ = SMALL_SIZE;    break;
190         case SCRIPT_SIZE:       size_ = FOOTNOTE_SIZE; break;
191         case TINY_SIZE:         size_ = SCRIPT_SIZE;   break;
192         case INCREASE_SIZE:
193                 LYXERR0("Can't FontInfo::incSize on INCREASE_SIZE");
194                 break;
195         case DECREASE_SIZE:
196                 LYXERR0("Can't FontInfo::incSize on DECREASE_SIZE");
197                 break;
198         case INHERIT_SIZE:
199                 LYXERR0("Can't FontInfo::incSize on INHERIT_SIZE");
200                 break;
201         case IGNORE_SIZE:
202                 LYXERR0("Can't FontInfo::incSize on IGNORE_SIZE");
203                 break;
204         }
205         return *this;
206 }
207
208
209 double FontInfo::realSize() const
210 {
211         double d = convert<double>(lyxrc.font_sizes[size()]);
212         // The following is according to the average of the values in the
213         // definitions of \defaultscriptratio and \defaultscriptscriptratio in LaTeX
214         // font packages. No attempt is made to implement the actual values from
215         // \DefineMathSizes.
216         switch (style()) {
217         case DISPLAY_STYLE:
218         case TEXT_STYLE:
219         case INHERIT_STYLE:
220         case IGNORE_STYLE:
221                 break;
222         case SCRIPT_STYLE:
223                 d *= .73;
224                 break;
225         case SCRIPTSCRIPT_STYLE:
226                 d *= .55;
227                 break;
228         }
229         // Never go below the smallest size
230         return max(d, convert<double>(lyxrc.font_sizes[TINY_SIZE]));
231 }
232
233
234 /// Reduce font to fall back to template where possible
235 void FontInfo::reduce(FontInfo const & tmplt)
236 {
237         if (family_ == tmplt.family_)
238                 family_ = INHERIT_FAMILY;
239         if (series_ == tmplt.series_)
240                 series_ = INHERIT_SERIES;
241         if (shape_ == tmplt.shape_)
242                 shape_ = INHERIT_SHAPE;
243         if (size_ == tmplt.size_)
244                 size_ = INHERIT_SIZE;
245         if (style_ == tmplt.style_)
246                 style_ = INHERIT_STYLE;
247         if (emph_ == tmplt.emph_)
248                 emph_ = FONT_INHERIT;
249         if (underbar_ == tmplt.underbar_)
250                 underbar_ = FONT_INHERIT;
251         if (strikeout_ == tmplt.strikeout_)
252                 strikeout_ = FONT_INHERIT;
253         if (xout_ == tmplt.xout_)
254                 xout_ = FONT_INHERIT;
255         if (uuline_ == tmplt.uuline_)
256                 uuline_ = FONT_INHERIT;
257         if (uwave_ == tmplt.uwave_)
258                 uwave_ = FONT_INHERIT;
259         if (noun_ == tmplt.noun_)
260                 noun_ = FONT_INHERIT;
261         if (color_ == tmplt.color_)
262                 color_ = Color_inherit;
263         if (background_ == tmplt.background_)
264                 background_ = Color_inherit;
265         if (nospellcheck_ == tmplt.nospellcheck_)
266                 nospellcheck_ = FONT_INHERIT;
267 }
268
269
270 /// Realize font from a template
271 FontInfo & FontInfo::realize(FontInfo const & tmplt)
272 {
273         if ((*this) == inherit_font) {
274                 operator=(tmplt);
275                 return *this;
276         }
277
278         if (family_ == INHERIT_FAMILY)
279                 family_ = tmplt.family_;
280
281         if (series_ == INHERIT_SERIES)
282                 series_ = tmplt.series_;
283
284         if (shape_ == INHERIT_SHAPE)
285                 shape_ = tmplt.shape_;
286
287         if (size_ == INHERIT_SIZE)
288                 size_ = tmplt.size_;
289
290         if (style_ == INHERIT_STYLE)
291                 style_ = tmplt.style_;
292
293         if (emph_ == FONT_INHERIT)
294                 emph_ = tmplt.emph_;
295
296         if (underbar_ == FONT_INHERIT)
297                 underbar_ = tmplt.underbar_;
298
299         if (strikeout_ == FONT_INHERIT)
300                 strikeout_ = tmplt.strikeout_;
301
302         if (xout_ == FONT_INHERIT)
303                 xout_ = tmplt.xout_;
304
305         if (uuline_ == FONT_INHERIT)
306                 uuline_ = tmplt.uuline_;
307
308         if (uwave_ == FONT_INHERIT)
309                 uwave_ = tmplt.uwave_;
310
311         if (noun_ == FONT_INHERIT)
312                 noun_ = tmplt.noun_;
313
314         if (color_ == Color_inherit)
315                 color_ = tmplt.color_;
316
317         if (background_ == Color_inherit)
318                 background_ = tmplt.background_;
319
320         if (nospellcheck_ == FONT_INHERIT)
321                 nospellcheck_ = tmplt.nospellcheck_;
322
323         return *this;
324 }
325
326
327 Changer FontInfo::changeColor(ColorCode const color)
328 {
329         return make_change(color_, color);
330 }
331
332
333 Changer FontInfo::changeShape(FontShape const shape)
334 {
335         return make_change(shape_, shape);
336 }
337
338
339 Changer FontInfo::changeStyle(MathStyle const new_style)
340 {
341         return make_change(style_, new_style);
342 }
343
344
345 Changer FontInfo::change(FontInfo font, bool realiz)
346 {
347         if (realiz)
348                 font.realize(*this);
349         return make_change(*this, font);
350 }
351
352
353 /// Updates a misc setting according to request
354 static FontState setMisc(FontState newfont,
355         FontState org)
356 {
357         if (newfont == FONT_TOGGLE) {
358                 if (org == FONT_ON)
359                         return FONT_OFF;
360                 else if (org == FONT_OFF)
361                         return FONT_ON;
362                 else {
363                         LYXERR0("Font::setMisc: Need state"
364                                 " FONT_ON or FONT_OFF to toggle. Setting to FONT_ON");
365                         return FONT_ON;
366                 }
367         } else if (newfont == FONT_IGNORE)
368                 return org;
369         else
370                 return newfont;
371 }
372
373 /// Updates font settings according to request
374 void FontInfo::update(FontInfo const & newfont, bool toggleall)
375 {
376         if (newfont.family_ == family_ && toggleall)
377                 setFamily(INHERIT_FAMILY); // toggle 'back'
378         else if (newfont.family_ != IGNORE_FAMILY)
379                 setFamily(newfont.family_);
380         // else it's IGNORE_SHAPE
381
382         // "Old" behaviour: "Setting" bold will toggle bold on/off.
383         switch (newfont.series_) {
384         case BOLD_SERIES:
385                 // We toggle...
386                 if (series_ == BOLD_SERIES && toggleall)
387                         setSeries(MEDIUM_SERIES);
388                 else
389                         setSeries(BOLD_SERIES);
390                 break;
391         case MEDIUM_SERIES:
392         case INHERIT_SERIES:
393                 setSeries(newfont.series_);
394                 break;
395         case IGNORE_SERIES:
396                 break;
397         }
398
399         if (newfont.shape_ == shape_ && toggleall)
400                 shape_ = INHERIT_SHAPE; // toggle 'back'
401         else if (newfont.shape_ != IGNORE_SHAPE)
402                 shape_ = newfont.shape_;
403         // else it's IGNORE_SHAPE
404
405         if (newfont.size_ != IGNORE_SIZE) {
406                 if (newfont.size_ == INCREASE_SIZE)
407                         incSize();
408                 else if (newfont.size_ == DECREASE_SIZE)
409                         decSize();
410                 else
411                         size_ = newfont.size_;
412         }
413
414         if (newfont.style_ != IGNORE_STYLE) {
415                         style_ = newfont.style_;
416         }
417
418         setEmph(setMisc(newfont.emph_, emph_));
419         setUnderbar(setMisc(newfont.underbar_, underbar_));
420         setStrikeout(setMisc(newfont.strikeout_, strikeout_));
421         setXout(setMisc(newfont.xout_, xout_));
422         setUuline(setMisc(newfont.uuline_, uuline_));
423         setUwave(setMisc(newfont.uwave_, uwave_));
424         setNoun(setMisc(newfont.noun_, noun_));
425         setNumber(setMisc(newfont.number_, number_));
426         setNoSpellcheck(setMisc(newfont.nospellcheck_, nospellcheck_));
427
428         if (newfont.color_ == color_ && toggleall)
429                 setColor(Color_inherit); // toggle 'back'
430         else if (newfont.color_ != Color_ignore)
431                 setColor(newfont.color_);
432
433         if (newfont.background_ == background_ && toggleall)
434                 setBackground(Color_inherit); // toggle 'back'
435         else if (newfont.background_ != Color_ignore)
436                 setBackground(newfont.background_);
437 }
438
439 /// Is font resolved?
440 bool FontInfo::resolved() const
441 {
442         return (family_ != INHERIT_FAMILY && series_ != INHERIT_SERIES
443                 && shape_ != INHERIT_SHAPE && size_ != INHERIT_SIZE
444                 && style_ != INHERIT_STYLE
445                 && emph_ != FONT_INHERIT && underbar_ != FONT_INHERIT
446                 && uuline_ != FONT_INHERIT && uwave_ != FONT_INHERIT
447                 && strikeout_ != FONT_INHERIT && xout_ != FONT_INHERIT
448                 && noun_ != FONT_INHERIT && color_ != Color_inherit
449                 && background_ != Color_inherit && nospellcheck_ != FONT_INHERIT);
450 }
451
452
453 Color FontInfo::realColor() const
454 {
455         if (paint_color_ != Color_none)
456                 return paint_color_;
457         if (color_ == Color_none)
458                 return Color_foreground;
459         return color_;
460 }
461
462
463 namespace {
464
465 void appendSep(string & s1, string const & s2)
466 {
467         if (s2.empty())
468                 return;
469         s1 += s1.empty() ? "" : "\n";
470         s1 += s2;
471 }
472
473
474 string makeCSSTag(string const & key, string const & val)
475 {
476         return key + ": " + val + ";";
477 }
478
479
480 string getFamilyCSS(FontFamily const & f)
481 {
482         switch (f) {
483         case ROMAN_FAMILY:
484                 return "serif";
485         case SANS_FAMILY:
486                 return "sans-serif";
487         case TYPEWRITER_FAMILY:
488                 return "monospace";
489         case SYMBOL_FAMILY:
490         case CMR_FAMILY:
491         case CMSY_FAMILY:
492         case CMM_FAMILY:
493         case CMEX_FAMILY:
494         case MSA_FAMILY:
495         case MSB_FAMILY:
496         case DS_FAMILY:
497         case BBM_FAMILY:
498         case EUFRAK_FAMILY:
499         case RSFS_FAMILY:
500         case STMARY_FAMILY:
501         case WASY_FAMILY:
502         case ESINT_FAMILY:
503         case INHERIT_FAMILY:
504         case IGNORE_FAMILY:
505                 break;
506         }
507         return "";
508 }
509
510
511 string getSeriesCSS(FontSeries const & s)
512 {
513         switch (s) {
514         case MEDIUM_SERIES:
515                 return "normal";
516         case BOLD_SERIES:
517                 return "bold";
518         case INHERIT_SERIES:
519         case IGNORE_SERIES:
520                 break;
521         }
522         return "";
523 }
524
525
526 string getShapeCSS(FontShape const & s)
527 {
528         string fs = "normal";
529         string fv = "normal";
530         switch (s) {
531         case UP_SHAPE: break;
532         case ITALIC_SHAPE: fs = "italic"; break;
533         case SLANTED_SHAPE: fs = "oblique"; break;
534         case SMALLCAPS_SHAPE: fv = "small-caps"; break;
535         case IGNORE_SHAPE:
536         case INHERIT_SHAPE:
537                 fs = ""; fv = ""; break;
538         }
539         string retval;
540         if (!fs.empty())
541                 appendSep(retval, makeCSSTag("font-style", fs));
542         if (!fv.empty())
543                 appendSep(retval, makeCSSTag("font-variant", fv));
544         return retval;
545 }
546
547
548 string getSizeCSS(FontSize const & s)
549 {
550         switch (s) {
551         case TINY_SIZE:
552                 return "xx-small";
553         case SCRIPT_SIZE:
554                 return "x-small";
555         case FOOTNOTE_SIZE:
556         case SMALL_SIZE:
557                 return "small";
558         case NORMAL_SIZE:
559                 return "medium";
560         case LARGE_SIZE:
561                 return "large";
562         case LARGER_SIZE:
563         case LARGEST_SIZE:
564                 return "x-large";
565         case HUGE_SIZE:
566         case HUGER_SIZE:
567                 return "xx-large";
568         case INCREASE_SIZE:
569                 return "larger";
570         case DECREASE_SIZE:
571                 return "smaller";
572         case IGNORE_SIZE:
573         case INHERIT_SIZE:
574                 break;
575         }
576         return "";
577 }
578
579 } // namespace
580
581
582 // FIXME This does not yet handle color
583 docstring FontInfo::asCSS() const
584 {
585         string retval;
586         string tmp = getFamilyCSS(family_);
587         if (!tmp.empty())
588                 appendSep(retval, makeCSSTag("font-family", tmp));
589         tmp = getSeriesCSS(series_);
590         if (!tmp.empty())
591                 appendSep(retval, makeCSSTag("font-weight", tmp));
592         appendSep(retval, getShapeCSS(shape_));
593         tmp = getSizeCSS(size_);
594         if (!tmp.empty())
595                 appendSep(retval, makeCSSTag("font-size", tmp));
596         return from_ascii(retval);
597 }
598
599
600 docstring const FontInfo::stateText(bool const terse) const
601 {
602         odocstringstream os;
603         if (family() != INHERIT_FAMILY && (!terse || family() != IGNORE_FAMILY))
604                 os << _(GUIFamilyNames[family()]) << ", ";
605         if (series() != INHERIT_SERIES && (!terse || series() != IGNORE_SERIES))
606                 os << _(GUISeriesNames[series()]) << ", ";
607         if (shape() != INHERIT_SHAPE && (!terse || shape() != IGNORE_SHAPE))
608                 os << _(GUIShapeNames[shape()]) << ", ";
609         if (size() != INHERIT_SIZE && (!terse || size() != IGNORE_SIZE))
610                 os << _(GUISizeNames[size()]) << ", ";
611         // FIXME: shall style be handled there? Probably not.
612         if (color() != Color_inherit && (!terse || color() != Color_ignore))
613                 os << lcolor.getGUIName(color()) << ", ";
614         // FIXME: uncomment this when we support background.
615         //if (background() != Color_inherit)
616         //      os << lcolor.getGUIName(background()) << ", ";
617         if (emph() != FONT_INHERIT && (!terse || emph() != FONT_IGNORE))
618                 os << bformat(_("Emphasis %1$s, "),
619                               _(GUIMiscNames[emph()]));
620         if (underbar() != FONT_INHERIT && (!terse || underbar() == FONT_ON))
621                 os << bformat(_("Underline %1$s, "),
622                               _(GUIMiscNames[underbar()]));
623         if (uuline() != FONT_INHERIT && (!terse || uuline() == FONT_ON))
624                 os << bformat(_("Double underline %1$s, "),
625                               _(GUIMiscNames[uuline()]));
626         if (uwave() != FONT_INHERIT && (!terse || uwave() == FONT_ON))
627                 os << bformat(_("Wavy underline %1$s, "),
628                               _(GUIMiscNames[uwave()]));
629         if (strikeout() != FONT_INHERIT && (!terse || strikeout() == FONT_ON))
630                 os << bformat(_("Strike out %1$s, "),
631                               _(GUIMiscNames[strikeout()]));
632         if (xout() != FONT_INHERIT && (!terse || xout() == FONT_ON))
633                 os << bformat(_("Cross out %1$s, "),
634                               _(GUIMiscNames[xout()]));
635         if (noun() != FONT_INHERIT && (!terse || noun() != FONT_IGNORE))
636                 os << bformat(_("Noun %1$s, "),
637                               _(GUIMiscNames[noun()]));
638         if (*this == inherit_font)
639                 os << _("Default") << ", ";
640
641         return os.str();
642 }
643
644
645 // Set family according to lyx format string
646 void setLyXFamily(string const & fam, FontInfo & f)
647 {
648         string const s = ascii_lowercase(fam);
649
650         int i = 0;
651         while (LyXFamilyNames[i] != s &&
652                LyXFamilyNames[i] != string("error"))
653                 ++i;
654         if (s == LyXFamilyNames[i])
655                 f.setFamily(FontFamily(i));
656         else
657                 LYXERR0("Unknown family `" << s << '\'');
658 }
659
660
661 // Set series according to lyx format string
662 void setLyXSeries(string const & ser, FontInfo & f)
663 {
664         string const s = ascii_lowercase(ser);
665
666         int i = 0;
667         while (LyXSeriesNames[i] != s &&
668                LyXSeriesNames[i] != string("error")) ++i;
669         if (s == LyXSeriesNames[i]) {
670                 f.setSeries(FontSeries(i));
671         } else
672                 LYXERR0("Unknown series `" << s << '\'');
673 }
674
675
676 // Set shape according to lyx format string
677 void setLyXShape(string const & sha, FontInfo & f)
678 {
679         string const s = ascii_lowercase(sha);
680
681         int i = 0;
682         while (LyXShapeNames[i] != s && LyXShapeNames[i] != string("error"))
683                         ++i;
684         if (s == LyXShapeNames[i])
685                 f.setShape(FontShape(i));
686         else
687                 LYXERR0("Unknown shape `" << s << '\'');
688 }
689
690
691 // Set size according to lyx format string
692 void setLyXSize(string const & siz, FontInfo & f)
693 {
694         string const s = ascii_lowercase(siz);
695         int i = 0;
696         while (LyXSizeNames[i] != s && LyXSizeNames[i] != string("error"))
697                 ++i;
698         if (s == LyXSizeNames[i]) {
699                 f.setSize(FontSize(i));
700         } else
701                 LYXERR0("Unknown size `" << s << '\'');
702 }
703
704
705 // Set size according to lyx format string
706 FontState setLyXMisc(string const & siz)
707 {
708         string const s = ascii_lowercase(siz);
709         int i = 0;
710         while (LyXMiscNames[i] != s &&
711                LyXMiscNames[i] != string("error")) ++i;
712         if (s == LyXMiscNames[i])
713                 return FontState(i);
714         LYXERR0("Unknown misc flag `" << s << '\'');
715         return FONT_OFF;
716 }
717
718
719 /// Sets color after LyX text format
720 void setLyXColor(string const & col, FontInfo & f)
721 {
722         f.setColor(lcolor.getFromLyXName(col));
723 }
724
725
726 // Read a font definition from given file in lyx format
727 // Used for layouts
728 FontInfo lyxRead(Lexer & lex, FontInfo const & fi)
729 {
730         FontInfo f = fi;
731         bool error = false;
732         bool finished = false;
733         while (!finished && lex.isOK() && !error) {
734                 lex.next();
735                 string const tok = ascii_lowercase(lex.getString());
736
737                 if (tok.empty()) {
738                         continue;
739                 } else if (tok == "endfont") {
740                         finished = true;
741                 } else if (tok == "family") {
742                         lex.next();
743                         string const ttok = lex.getString();
744                         setLyXFamily(ttok, f);
745                 } else if (tok == "series") {
746                         lex.next();
747                         string const ttok = lex.getString();
748                         setLyXSeries(ttok, f);
749                 } else if (tok == "shape") {
750                         lex.next();
751                         string const ttok = lex.getString();
752                         setLyXShape(ttok, f);
753                 } else if (tok == "size") {
754                         lex.next();
755                         string const ttok = lex.getString();
756                         setLyXSize(ttok, f);
757                 } else if (tok == "misc") {
758                         lex.next();
759                         string const ttok = ascii_lowercase(lex.getString());
760
761                         if (ttok == "no_bar") {
762                                 f.setUnderbar(FONT_OFF);
763                         } else if (ttok == "no_strikeout") {
764                                 f.setStrikeout(FONT_OFF);
765                         } else if (ttok == "no_xout") {
766                                 f.setXout(FONT_OFF);
767                         } else if (ttok == "no_uuline") {
768                                 f.setUuline(FONT_OFF);
769                         } else if (ttok == "no_uwave") {
770                                 f.setUwave(FONT_OFF);
771                         } else if (ttok == "no_emph") {
772                                 f.setEmph(FONT_OFF);
773                         } else if (ttok == "no_noun") {
774                                 f.setNoun(FONT_OFF);
775                         } else if (ttok == "emph") {
776                                 f.setEmph(FONT_ON);
777                         } else if (ttok == "underbar") {
778                                 f.setUnderbar(FONT_ON);
779                         } else if (ttok == "strikeout") {
780                                 f.setStrikeout(FONT_ON);
781                         } else if (ttok == "xout") {
782                                 f.setXout(FONT_ON);
783                         } else if (ttok == "uuline") {
784                                 f.setUuline(FONT_ON);
785                         } else if (ttok == "uwave") {
786                                 f.setUwave(FONT_ON);
787                         } else if (ttok == "noun") {
788                                 f.setNoun(FONT_ON);
789                         } else if (ttok == "nospellcheck") {
790                                 f.setNoSpellcheck(FONT_ON);
791                         } else if (ttok == "no_nospellcheck") {
792                                 f.setNoSpellcheck(FONT_OFF);
793                         } else {
794                                 lex.printError("Illegal misc type");
795                         }
796                 } else if (tok == "color") {
797                         lex.next();
798                         string const ttok = lex.getString();
799                         setLyXColor(ttok, f);
800                 } else {
801                         lex.printError("Unknown tag");
802                         error = true;
803                 }
804         }
805         return f;
806 }
807
808
809 void lyxWrite(ostream & os, FontInfo const & f, string const & start, int level)
810 {
811         string indent;
812         for (int i = 0; i < level; ++i)
813                 indent += '\t';
814         ostringstream oss;
815         if (f.family() != INHERIT_FAMILY)
816                 oss << indent << "\tFamily " << LyXFamilyNames[f.family()]
817                     << '\n';
818         if (f.series() != INHERIT_SERIES)
819                 oss << indent << "\tSeries " << LyXSeriesNames[f.series()]
820                     << '\n';
821         if (f.shape() != INHERIT_SHAPE)
822                 oss << indent << "\tShape " << LyXShapeNames[f.shape()]
823                     << '\n';
824         if (f.size() != INHERIT_SIZE)
825                 oss << indent << "\tSize " << LyXSizeNames[f.size()]
826                     << '\n';
827         //FIXME: shall style be handled here? Probably not.
828         if (f.underbar() == FONT_ON)
829                 oss << indent << "\tMisc Underbar\n";
830         else if (f.underbar() == FONT_OFF)
831                 oss << indent << "\tMisc No_Bar\n";
832         if (f.strikeout() == FONT_ON)
833                 oss << indent << "\tMisc Strikeout\n";
834         else if (f.strikeout() == FONT_OFF)
835                 oss << indent << "\tMisc No_Strikeout\n";
836         if (f.xout() == FONT_ON)
837                 oss << indent << "\tMisc Xout\n";
838         else if (f.xout() == FONT_OFF)
839                 oss << indent << "\tMisc No_Xout\n";
840         if (f.uuline() == FONT_ON)
841                 oss << indent << "\tMisc Uuline\n";
842         else if (f.uuline() == FONT_OFF)
843                 oss << indent << "\tMisc No_Uuline\n";
844         if (f.uwave() == FONT_ON)
845                 oss << indent << "\tMisc Uwave\n";
846         else if (f.uwave() == FONT_OFF)
847                 oss << indent << "\tMisc No_Uwave\n";
848         if (f.emph() == FONT_ON)
849                 oss << indent << "\tMisc Emph\n";
850         else if (f.emph() == FONT_OFF)
851                 oss << indent << "\tMisc No_Emph\n";
852         if (f.noun() == FONT_ON)
853                 oss << indent << "\tMisc Noun\n";
854         else if (f.noun() == FONT_OFF)
855                 oss << indent << "\tMisc No_Noun\n";
856         if (f.nospellcheck() == FONT_ON)
857                 oss << indent << "\tMisc NoSpellcheck\n";
858         else if (f.nospellcheck() == FONT_OFF)
859                 oss << indent << "\tMisc No_NoSpellcheck\n";
860         if (f.color() != Color_inherit && f.color() != Color_none)
861                 oss << indent << "\tColor " << lcolor.getLyXName(f.color())
862                     << '\n';
863         if (!oss.str().empty()) {
864                 os << indent << start << '\n'
865                    << oss.str()
866                    << indent << "EndFont\n";
867         }
868 }
869
870
871 } // namespace lyx