2007-10-28 18:51:54 +00:00
|
|
|
/**
|
|
|
|
* \file src/FontInfo.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2007-10-28 18:51:54 +00:00
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
* \author Angus Leeming
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2007-10-28 18:51:54 +00:00
|
|
|
* \author Dekel Tsur
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2009-10-27 16:16:15 +00:00
|
|
|
#include "ColorSet.h"
|
2007-10-28 18:51:54 +00:00
|
|
|
#include "FontInfo.h"
|
2009-10-27 16:16:15 +00:00
|
|
|
#include "Lexer.h"
|
2016-11-19 20:25:34 +00:00
|
|
|
#include "LyXRC.h"
|
2007-10-28 18:51:54 +00:00
|
|
|
|
2016-11-19 20:25:34 +00:00
|
|
|
#include "support/convert.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
#include "support/debug.h"
|
2009-10-26 21:35:35 +00:00
|
|
|
#include "support/docstring.h"
|
2019-05-10 08:43:01 +00:00
|
|
|
#include "support/gettext.h"
|
2009-10-27 16:16:15 +00:00
|
|
|
#include "support/lstrings.h"
|
2016-05-23 21:30:23 +00:00
|
|
|
#include "support/RefChanger.h"
|
2007-10-28 18:51:54 +00:00
|
|
|
|
2016-11-23 18:16:18 +00:00
|
|
|
#include <algorithm>
|
2013-03-31 13:33:26 +00:00
|
|
|
#include <ostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2009-10-27 16:16:15 +00:00
|
|
|
using namespace lyx::support;
|
2007-10-28 18:51:54 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2019-05-10 08:43:01 +00:00
|
|
|
//
|
|
|
|
// Names for the GUI
|
|
|
|
//
|
|
|
|
|
|
|
|
char const * GUIFamilyNames[NUM_FAMILIES + 2 /* default & error */] =
|
|
|
|
{ N_("Roman"), N_("Sans Serif"), N_("Typewriter"), N_("Symbol"),
|
|
|
|
"cmr", "cmsy", "cmm", "cmex", "msa", "msb", "eufrak", "rsfs", "stmry",
|
|
|
|
"wasy", "esint", N_("Inherit"), N_("Ignore") };
|
|
|
|
|
|
|
|
char const * GUISeriesNames[NUM_SERIES + 2 /* default & error */] =
|
|
|
|
{ N_("Medium"), N_("Bold"), N_("Inherit"), N_("Ignore") };
|
|
|
|
|
|
|
|
char const * GUIShapeNames[NUM_SHAPE + 2 /* default & error */] =
|
|
|
|
{ N_("Upright"), N_("Italic"), N_("Slanted"), N_("Smallcaps"), N_("Inherit"),
|
|
|
|
N_("Ignore") };
|
|
|
|
|
|
|
|
char const * GUISizeNames[NUM_SIZE + 4 /* increase, decrease, default & error */] =
|
|
|
|
{ N_("Tiny"), N_("Smallest"), N_("Smaller"), N_("Small"), N_("Normal"), N_("Large"),
|
|
|
|
N_("Larger"), N_("Largest"), N_("Huge"), N_("Huger"), N_("Increase"), N_("Decrease"),
|
|
|
|
N_("Inherit"), N_("Ignore") };
|
|
|
|
|
|
|
|
char const * GUIMiscNames[5] =
|
|
|
|
{ N_("Off"), N_("On"), N_("Toggle"), N_("Inherit"), N_("Ignore") };
|
|
|
|
|
|
|
|
|
2009-10-27 16:16:15 +00:00
|
|
|
//
|
|
|
|
// Strings used to read and write .lyx format files
|
|
|
|
//
|
|
|
|
char const * LyXFamilyNames[NUM_FAMILIES + 2 /* default & error */] =
|
|
|
|
{ "roman", "sans", "typewriter", "symbol",
|
2012-12-15 12:02:40 +00:00
|
|
|
"cmr", "cmsy", "cmm", "cmex", "msa", "msb", "eufrak", "rsfs", "stmry",
|
|
|
|
"wasy", "esint", "default", "error" };
|
2009-10-27 16:16:15 +00:00
|
|
|
|
2012-12-09 12:04:29 +00:00
|
|
|
char const * LyXSeriesNames[NUM_SERIES + 2 /* default & error */] =
|
2009-10-27 16:16:15 +00:00
|
|
|
{ "medium", "bold", "default", "error" };
|
|
|
|
|
2012-12-09 12:04:29 +00:00
|
|
|
char const * LyXShapeNames[NUM_SHAPE + 2 /* default & error */] =
|
2009-10-27 16:16:15 +00:00
|
|
|
{ "up", "italic", "slanted", "smallcaps", "default", "error" };
|
|
|
|
|
2012-12-09 12:04:29 +00:00
|
|
|
char const * LyXSizeNames[NUM_SIZE + 4 /* increase, decrease, default & error */] =
|
2009-10-27 16:16:15 +00:00
|
|
|
{ "tiny", "scriptsize", "footnotesize", "small", "normal", "large",
|
|
|
|
"larger", "largest", "huge", "giant",
|
|
|
|
"increase", "decrease", "default", "error" };
|
|
|
|
|
|
|
|
char const * LyXMiscNames[5] =
|
|
|
|
{ "off", "on", "toggle", "default", "error" };
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
FontInfo const sane_font(
|
|
|
|
ROMAN_FAMILY,
|
|
|
|
MEDIUM_SERIES,
|
|
|
|
UP_SHAPE,
|
2019-06-14 14:42:02 +00:00
|
|
|
NORMAL_SIZE,
|
|
|
|
TEXT_STYLE,
|
2007-10-28 18:51:54 +00:00
|
|
|
Color_none,
|
|
|
|
Color_background,
|
|
|
|
FONT_OFF,
|
|
|
|
FONT_OFF,
|
|
|
|
FONT_OFF,
|
2009-05-03 22:45:14 +00:00
|
|
|
FONT_OFF,
|
2009-05-05 09:26:28 +00:00
|
|
|
FONT_OFF,
|
|
|
|
FONT_OFF,
|
2017-04-04 22:01:19 +00:00
|
|
|
FONT_OFF,
|
2018-05-06 17:48:21 +00:00
|
|
|
FONT_OFF,
|
2007-10-28 18:51:54 +00:00
|
|
|
FONT_OFF);
|
|
|
|
|
|
|
|
FontInfo const inherit_font(
|
|
|
|
INHERIT_FAMILY,
|
|
|
|
INHERIT_SERIES,
|
|
|
|
INHERIT_SHAPE,
|
2019-06-14 14:42:02 +00:00
|
|
|
INHERIT_SIZE,
|
|
|
|
INHERIT_STYLE,
|
2007-10-28 18:51:54 +00:00
|
|
|
Color_inherit,
|
|
|
|
Color_inherit,
|
|
|
|
FONT_INHERIT,
|
|
|
|
FONT_INHERIT,
|
|
|
|
FONT_INHERIT,
|
2009-05-03 22:45:14 +00:00
|
|
|
FONT_INHERIT,
|
2009-05-05 09:26:28 +00:00
|
|
|
FONT_INHERIT,
|
|
|
|
FONT_INHERIT,
|
2017-04-04 22:01:19 +00:00
|
|
|
FONT_INHERIT,
|
2018-05-06 17:48:21 +00:00
|
|
|
FONT_OFF,
|
|
|
|
FONT_INHERIT);
|
2007-10-28 18:51:54 +00:00
|
|
|
|
|
|
|
FontInfo const ignore_font(
|
|
|
|
IGNORE_FAMILY,
|
|
|
|
IGNORE_SERIES,
|
|
|
|
IGNORE_SHAPE,
|
2019-06-14 14:42:02 +00:00
|
|
|
IGNORE_SIZE,
|
|
|
|
IGNORE_STYLE,
|
2007-10-28 18:51:54 +00:00
|
|
|
Color_ignore,
|
|
|
|
Color_ignore,
|
|
|
|
FONT_IGNORE,
|
|
|
|
FONT_IGNORE,
|
|
|
|
FONT_IGNORE,
|
2009-05-03 22:45:14 +00:00
|
|
|
FONT_IGNORE,
|
2009-05-05 09:26:28 +00:00
|
|
|
FONT_IGNORE,
|
|
|
|
FONT_IGNORE,
|
2017-04-04 22:01:19 +00:00
|
|
|
FONT_IGNORE,
|
2018-05-06 17:48:21 +00:00
|
|
|
FONT_IGNORE,
|
2007-10-28 18:51:54 +00:00
|
|
|
FONT_IGNORE);
|
|
|
|
|
|
|
|
|
|
|
|
FontInfo::FontInfo()
|
|
|
|
{
|
|
|
|
*this = sane_font;
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
/// Decreases font size_ by one
|
|
|
|
FontInfo & FontInfo::decSize()
|
|
|
|
{
|
|
|
|
switch (size_) {
|
2019-06-14 14:42:02 +00:00
|
|
|
case HUGER_SIZE: size_ = HUGE_SIZE; break;
|
|
|
|
case HUGE_SIZE: size_ = LARGEST_SIZE; break;
|
|
|
|
case LARGEST_SIZE: size_ = LARGER_SIZE; break;
|
|
|
|
case LARGER_SIZE: size_ = LARGE_SIZE; break;
|
|
|
|
case LARGE_SIZE: size_ = NORMAL_SIZE; break;
|
|
|
|
case NORMAL_SIZE: size_ = SMALL_SIZE; break;
|
|
|
|
case SMALL_SIZE: size_ = FOOTNOTE_SIZE; break;
|
|
|
|
case FOOTNOTE_SIZE: size_ = SCRIPT_SIZE; break;
|
|
|
|
case SCRIPT_SIZE: size_ = TINY_SIZE; break;
|
|
|
|
case TINY_SIZE: break;
|
|
|
|
case INCREASE_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::decSize on INCREASE_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case DECREASE_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::decSize on DECREASE_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case INHERIT_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::decSize on INHERIT_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case IGNORE_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::decSize on IGNORE_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Increases font size_ by one
|
|
|
|
FontInfo & FontInfo::incSize()
|
|
|
|
{
|
|
|
|
switch (size_) {
|
2019-06-14 14:42:02 +00:00
|
|
|
case HUGER_SIZE: break;
|
|
|
|
case HUGE_SIZE: size_ = HUGER_SIZE; break;
|
|
|
|
case LARGEST_SIZE: size_ = HUGE_SIZE; break;
|
|
|
|
case LARGER_SIZE: size_ = LARGEST_SIZE; break;
|
|
|
|
case LARGE_SIZE: size_ = LARGER_SIZE; break;
|
|
|
|
case NORMAL_SIZE: size_ = LARGE_SIZE; break;
|
|
|
|
case SMALL_SIZE: size_ = NORMAL_SIZE; break;
|
|
|
|
case FOOTNOTE_SIZE: size_ = SMALL_SIZE; break;
|
|
|
|
case SCRIPT_SIZE: size_ = FOOTNOTE_SIZE; break;
|
|
|
|
case TINY_SIZE: size_ = SCRIPT_SIZE; break;
|
|
|
|
case INCREASE_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::incSize on INCREASE_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case DECREASE_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::incSize on DECREASE_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case INHERIT_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::incSize on INHERIT_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case IGNORE_SIZE:
|
|
|
|
LYXERR0("Can't FontInfo::incSize on IGNORE_SIZE");
|
2007-10-28 18:51:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-19 20:25:34 +00:00
|
|
|
double FontInfo::realSize() const
|
|
|
|
{
|
|
|
|
double d = convert<double>(lyxrc.font_sizes[size()]);
|
|
|
|
// The following is according to the average of the values in the
|
|
|
|
// definitions of \defaultscriptratio and \defaultscriptscriptratio in LaTeX
|
|
|
|
// font packages. No attempt is made to implement the actual values from
|
|
|
|
// \DefineMathSizes.
|
|
|
|
switch (style()) {
|
2019-06-14 14:42:02 +00:00
|
|
|
case DISPLAY_STYLE:
|
|
|
|
case TEXT_STYLE:
|
|
|
|
case INHERIT_STYLE:
|
|
|
|
case IGNORE_STYLE:
|
2016-11-19 20:25:34 +00:00
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case SCRIPT_STYLE:
|
2016-11-19 20:25:34 +00:00
|
|
|
d *= .73;
|
|
|
|
break;
|
2019-06-14 14:42:02 +00:00
|
|
|
case SCRIPTSCRIPT_STYLE:
|
2016-11-19 20:25:34 +00:00
|
|
|
d *= .55;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Never go below the smallest size
|
2019-06-14 14:42:02 +00:00
|
|
|
return max(d, convert<double>(lyxrc.font_sizes[TINY_SIZE]));
|
2016-11-19 20:25:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
/// Reduce font to fall back to template where possible
|
|
|
|
void FontInfo::reduce(FontInfo const & tmplt)
|
|
|
|
{
|
|
|
|
if (family_ == tmplt.family_)
|
|
|
|
family_ = INHERIT_FAMILY;
|
|
|
|
if (series_ == tmplt.series_)
|
|
|
|
series_ = INHERIT_SERIES;
|
|
|
|
if (shape_ == tmplt.shape_)
|
|
|
|
shape_ = INHERIT_SHAPE;
|
|
|
|
if (size_ == tmplt.size_)
|
2019-06-14 14:42:02 +00:00
|
|
|
size_ = INHERIT_SIZE;
|
2019-03-22 14:19:27 +00:00
|
|
|
if (style_ == tmplt.style_)
|
2019-06-14 14:42:02 +00:00
|
|
|
style_ = INHERIT_STYLE;
|
2007-10-28 18:51:54 +00:00
|
|
|
if (emph_ == tmplt.emph_)
|
|
|
|
emph_ = FONT_INHERIT;
|
|
|
|
if (underbar_ == tmplt.underbar_)
|
|
|
|
underbar_ = FONT_INHERIT;
|
2009-05-03 22:45:14 +00:00
|
|
|
if (strikeout_ == tmplt.strikeout_)
|
|
|
|
strikeout_ = FONT_INHERIT;
|
2017-04-04 22:01:19 +00:00
|
|
|
if (xout_ == tmplt.xout_)
|
|
|
|
xout_ = FONT_INHERIT;
|
2009-05-05 09:26:28 +00:00
|
|
|
if (uuline_ == tmplt.uuline_)
|
|
|
|
uuline_ = FONT_INHERIT;
|
|
|
|
if (uwave_ == tmplt.uwave_)
|
|
|
|
uwave_ = FONT_INHERIT;
|
2007-10-28 18:51:54 +00:00
|
|
|
if (noun_ == tmplt.noun_)
|
|
|
|
noun_ = FONT_INHERIT;
|
|
|
|
if (color_ == tmplt.color_)
|
|
|
|
color_ = Color_inherit;
|
|
|
|
if (background_ == tmplt.background_)
|
|
|
|
background_ = Color_inherit;
|
2018-05-06 17:48:21 +00:00
|
|
|
if (nospellcheck_ == tmplt.nospellcheck_)
|
2018-05-07 08:15:23 +00:00
|
|
|
nospellcheck_ = FONT_INHERIT;
|
2007-10-28 18:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Realize font from a template
|
|
|
|
FontInfo & FontInfo::realize(FontInfo const & tmplt)
|
|
|
|
{
|
|
|
|
if ((*this) == inherit_font) {
|
|
|
|
operator=(tmplt);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (family_ == INHERIT_FAMILY)
|
|
|
|
family_ = tmplt.family_;
|
|
|
|
|
|
|
|
if (series_ == INHERIT_SERIES)
|
|
|
|
series_ = tmplt.series_;
|
|
|
|
|
|
|
|
if (shape_ == INHERIT_SHAPE)
|
|
|
|
shape_ = tmplt.shape_;
|
|
|
|
|
2019-06-14 14:42:02 +00:00
|
|
|
if (size_ == INHERIT_SIZE)
|
2007-10-28 18:51:54 +00:00
|
|
|
size_ = tmplt.size_;
|
|
|
|
|
2019-06-14 14:42:02 +00:00
|
|
|
if (style_ == INHERIT_STYLE)
|
2019-03-22 14:19:27 +00:00
|
|
|
style_ = tmplt.style_;
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
if (emph_ == FONT_INHERIT)
|
|
|
|
emph_ = tmplt.emph_;
|
|
|
|
|
|
|
|
if (underbar_ == FONT_INHERIT)
|
|
|
|
underbar_ = tmplt.underbar_;
|
|
|
|
|
2009-05-03 22:45:14 +00:00
|
|
|
if (strikeout_ == FONT_INHERIT)
|
|
|
|
strikeout_ = tmplt.strikeout_;
|
|
|
|
|
2017-04-04 22:01:19 +00:00
|
|
|
if (xout_ == FONT_INHERIT)
|
|
|
|
xout_ = tmplt.xout_;
|
|
|
|
|
2009-05-05 09:26:28 +00:00
|
|
|
if (uuline_ == FONT_INHERIT)
|
|
|
|
uuline_ = tmplt.uuline_;
|
|
|
|
|
|
|
|
if (uwave_ == FONT_INHERIT)
|
|
|
|
uwave_ = tmplt.uwave_;
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
if (noun_ == FONT_INHERIT)
|
|
|
|
noun_ = tmplt.noun_;
|
|
|
|
|
|
|
|
if (color_ == Color_inherit)
|
|
|
|
color_ = tmplt.color_;
|
|
|
|
|
|
|
|
if (background_ == Color_inherit)
|
|
|
|
background_ = tmplt.background_;
|
|
|
|
|
2018-05-06 17:48:21 +00:00
|
|
|
if (nospellcheck_ == FONT_INHERIT)
|
|
|
|
nospellcheck_ = tmplt.nospellcheck_;
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-20 18:53:16 +00:00
|
|
|
Changer FontInfo::changeColor(ColorCode const color)
|
2016-05-23 21:30:23 +00:00
|
|
|
{
|
2016-11-20 18:53:16 +00:00
|
|
|
return make_change(color_, color);
|
2016-05-23 21:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-20 18:53:16 +00:00
|
|
|
Changer FontInfo::changeShape(FontShape const shape)
|
2016-05-23 21:30:23 +00:00
|
|
|
{
|
2016-11-20 18:53:16 +00:00
|
|
|
return make_change(shape_, shape);
|
2016-05-23 21:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-20 18:53:16 +00:00
|
|
|
Changer FontInfo::changeStyle(MathStyle const new_style)
|
2016-11-19 20:25:34 +00:00
|
|
|
{
|
2016-11-20 18:53:16 +00:00
|
|
|
return make_change(style_, new_style);
|
2016-11-19 20:25:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-20 18:53:16 +00:00
|
|
|
Changer FontInfo::change(FontInfo font, bool realiz)
|
2016-05-23 21:30:23 +00:00
|
|
|
{
|
|
|
|
if (realiz)
|
|
|
|
font.realize(*this);
|
2016-11-20 18:53:16 +00:00
|
|
|
return make_change(*this, font);
|
2016-05-23 21:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
/// Updates a misc setting according to request
|
|
|
|
static FontState setMisc(FontState newfont,
|
|
|
|
FontState org)
|
|
|
|
{
|
|
|
|
if (newfont == FONT_TOGGLE) {
|
|
|
|
if (org == FONT_ON)
|
|
|
|
return FONT_OFF;
|
|
|
|
else if (org == FONT_OFF)
|
|
|
|
return FONT_ON;
|
|
|
|
else {
|
2007-11-29 07:04:28 +00:00
|
|
|
LYXERR0("Font::setMisc: Need state"
|
|
|
|
" FONT_ON or FONT_OFF to toggle. Setting to FONT_ON");
|
2007-10-28 18:51:54 +00:00
|
|
|
return FONT_ON;
|
|
|
|
}
|
|
|
|
} else if (newfont == FONT_IGNORE)
|
|
|
|
return org;
|
|
|
|
else
|
|
|
|
return newfont;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Updates font settings according to request
|
|
|
|
void FontInfo::update(FontInfo const & newfont, bool toggleall)
|
|
|
|
{
|
|
|
|
if (newfont.family_ == family_ && toggleall)
|
|
|
|
setFamily(INHERIT_FAMILY); // toggle 'back'
|
|
|
|
else if (newfont.family_ != IGNORE_FAMILY)
|
|
|
|
setFamily(newfont.family_);
|
|
|
|
// else it's IGNORE_SHAPE
|
|
|
|
|
|
|
|
// "Old" behaviour: "Setting" bold will toggle bold on/off.
|
|
|
|
switch (newfont.series_) {
|
|
|
|
case BOLD_SERIES:
|
|
|
|
// We toggle...
|
|
|
|
if (series_ == BOLD_SERIES && toggleall)
|
|
|
|
setSeries(MEDIUM_SERIES);
|
|
|
|
else
|
|
|
|
setSeries(BOLD_SERIES);
|
|
|
|
break;
|
|
|
|
case MEDIUM_SERIES:
|
|
|
|
case INHERIT_SERIES:
|
|
|
|
setSeries(newfont.series_);
|
|
|
|
break;
|
|
|
|
case IGNORE_SERIES:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newfont.shape_ == shape_ && toggleall)
|
|
|
|
shape_ = INHERIT_SHAPE; // toggle 'back'
|
|
|
|
else if (newfont.shape_ != IGNORE_SHAPE)
|
|
|
|
shape_ = newfont.shape_;
|
|
|
|
// else it's IGNORE_SHAPE
|
|
|
|
|
2019-06-14 14:42:02 +00:00
|
|
|
if (newfont.size_ != IGNORE_SIZE) {
|
|
|
|
if (newfont.size_ == INCREASE_SIZE)
|
2007-10-28 18:51:54 +00:00
|
|
|
incSize();
|
2019-06-14 14:42:02 +00:00
|
|
|
else if (newfont.size_ == DECREASE_SIZE)
|
2007-10-28 18:51:54 +00:00
|
|
|
decSize();
|
|
|
|
else
|
|
|
|
size_ = newfont.size_;
|
|
|
|
}
|
|
|
|
|
2019-06-14 14:42:02 +00:00
|
|
|
if (newfont.style_ != IGNORE_STYLE) {
|
2019-03-22 14:19:27 +00:00
|
|
|
style_ = newfont.style_;
|
|
|
|
}
|
|
|
|
|
2007-10-28 18:51:54 +00:00
|
|
|
setEmph(setMisc(newfont.emph_, emph_));
|
|
|
|
setUnderbar(setMisc(newfont.underbar_, underbar_));
|
2009-05-03 22:45:14 +00:00
|
|
|
setStrikeout(setMisc(newfont.strikeout_, strikeout_));
|
2017-04-04 22:01:19 +00:00
|
|
|
setXout(setMisc(newfont.xout_, xout_));
|
2009-05-05 09:26:28 +00:00
|
|
|
setUuline(setMisc(newfont.uuline_, uuline_));
|
|
|
|
setUwave(setMisc(newfont.uwave_, uwave_));
|
2007-10-28 18:51:54 +00:00
|
|
|
setNoun(setMisc(newfont.noun_, noun_));
|
|
|
|
setNumber(setMisc(newfont.number_, number_));
|
2018-05-06 17:48:21 +00:00
|
|
|
setNoSpellcheck(setMisc(newfont.nospellcheck_, nospellcheck_));
|
2007-10-28 18:51:54 +00:00
|
|
|
|
|
|
|
if (newfont.color_ == color_ && toggleall)
|
|
|
|
setColor(Color_inherit); // toggle 'back'
|
|
|
|
else if (newfont.color_ != Color_ignore)
|
|
|
|
setColor(newfont.color_);
|
|
|
|
|
|
|
|
if (newfont.background_ == background_ && toggleall)
|
|
|
|
setBackground(Color_inherit); // toggle 'back'
|
|
|
|
else if (newfont.background_ != Color_ignore)
|
|
|
|
setBackground(newfont.background_);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Is font resolved?
|
|
|
|
bool FontInfo::resolved() const
|
|
|
|
{
|
|
|
|
return (family_ != INHERIT_FAMILY && series_ != INHERIT_SERIES
|
2019-06-14 14:42:02 +00:00
|
|
|
&& shape_ != INHERIT_SHAPE && size_ != INHERIT_SIZE
|
|
|
|
&& style_ != INHERIT_STYLE
|
2007-10-28 18:51:54 +00:00
|
|
|
&& emph_ != FONT_INHERIT && underbar_ != FONT_INHERIT
|
2009-05-05 09:26:28 +00:00
|
|
|
&& uuline_ != FONT_INHERIT && uwave_ != FONT_INHERIT
|
2017-04-04 22:01:19 +00:00
|
|
|
&& strikeout_ != FONT_INHERIT && xout_ != FONT_INHERIT
|
|
|
|
&& noun_ != FONT_INHERIT && color_ != Color_inherit
|
2018-05-06 17:48:21 +00:00
|
|
|
&& background_ != Color_inherit && nospellcheck_ != FONT_INHERIT);
|
2007-10-28 18:51:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-09 20:22:48 +00:00
|
|
|
Color FontInfo::realColor() const
|
2007-10-28 18:51:54 +00:00
|
|
|
{
|
2009-02-09 20:22:48 +00:00
|
|
|
if (paint_color_ != Color_none)
|
|
|
|
return paint_color_;
|
2007-10-28 18:51:54 +00:00
|
|
|
if (color_ == Color_none)
|
|
|
|
return Color_foreground;
|
|
|
|
return color_;
|
|
|
|
}
|
|
|
|
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
void appendSep(string & s1, string const & s2)
|
|
|
|
{
|
|
|
|
if (s2.empty())
|
|
|
|
return;
|
|
|
|
s1 += s1.empty() ? "" : "\n";
|
|
|
|
s1 += s2;
|
|
|
|
}
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
string makeCSSTag(string const & key, string const & val)
|
|
|
|
{
|
|
|
|
return key + ": " + val + ";";
|
|
|
|
}
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
string getFamilyCSS(FontFamily const & f)
|
|
|
|
{
|
|
|
|
switch (f) {
|
|
|
|
case ROMAN_FAMILY:
|
|
|
|
return "serif";
|
|
|
|
case SANS_FAMILY:
|
|
|
|
return "sans-serif";
|
|
|
|
case TYPEWRITER_FAMILY:
|
|
|
|
return "monospace";
|
|
|
|
case SYMBOL_FAMILY:
|
|
|
|
case CMR_FAMILY:
|
|
|
|
case CMSY_FAMILY:
|
|
|
|
case CMM_FAMILY:
|
|
|
|
case CMEX_FAMILY:
|
|
|
|
case MSA_FAMILY:
|
|
|
|
case MSB_FAMILY:
|
2020-06-11 14:42:31 +00:00
|
|
|
case DS_FAMILY:
|
2012-10-27 13:45:27 +00:00
|
|
|
case EUFRAK_FAMILY:
|
|
|
|
case RSFS_FAMILY:
|
2012-12-15 12:02:40 +00:00
|
|
|
case STMARY_FAMILY:
|
2012-10-27 13:45:27 +00:00
|
|
|
case WASY_FAMILY:
|
|
|
|
case ESINT_FAMILY:
|
|
|
|
case INHERIT_FAMILY:
|
|
|
|
case IGNORE_FAMILY:
|
|
|
|
break;
|
2009-10-26 21:35:35 +00:00
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
return "";
|
|
|
|
}
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
string getSeriesCSS(FontSeries const & s)
|
|
|
|
{
|
|
|
|
switch (s) {
|
|
|
|
case MEDIUM_SERIES:
|
|
|
|
return "normal";
|
|
|
|
case BOLD_SERIES:
|
|
|
|
return "bold";
|
|
|
|
case INHERIT_SERIES:
|
|
|
|
case IGNORE_SERIES:
|
|
|
|
break;
|
2009-10-26 21:35:35 +00:00
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
return "";
|
|
|
|
}
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
string getShapeCSS(FontShape const & s)
|
|
|
|
{
|
|
|
|
string fs = "normal";
|
|
|
|
string fv = "normal";
|
|
|
|
switch (s) {
|
|
|
|
case UP_SHAPE: break;
|
|
|
|
case ITALIC_SHAPE: fs = "italic"; break;
|
|
|
|
case SLANTED_SHAPE: fs = "oblique"; break;
|
|
|
|
case SMALLCAPS_SHAPE: fv = "small-caps"; break;
|
|
|
|
case IGNORE_SHAPE:
|
|
|
|
case INHERIT_SHAPE:
|
|
|
|
fs = ""; fv = ""; break;
|
2009-10-26 21:35:35 +00:00
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
string retval;
|
|
|
|
if (!fs.empty())
|
|
|
|
appendSep(retval, makeCSSTag("font-style", fs));
|
|
|
|
if (!fv.empty())
|
|
|
|
appendSep(retval, makeCSSTag("font-variant", fv));
|
|
|
|
return retval;
|
|
|
|
}
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
|
2012-10-27 13:45:27 +00:00
|
|
|
string getSizeCSS(FontSize const & s)
|
|
|
|
{
|
|
|
|
switch (s) {
|
2019-06-14 14:42:02 +00:00
|
|
|
case TINY_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "xx-small";
|
2019-06-14 14:42:02 +00:00
|
|
|
case SCRIPT_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "x-small";
|
2019-06-14 14:42:02 +00:00
|
|
|
case FOOTNOTE_SIZE:
|
|
|
|
case SMALL_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "small";
|
2019-06-14 14:42:02 +00:00
|
|
|
case NORMAL_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "medium";
|
2019-06-14 14:42:02 +00:00
|
|
|
case LARGE_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "large";
|
2019-06-14 14:42:02 +00:00
|
|
|
case LARGER_SIZE:
|
|
|
|
case LARGEST_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "x-large";
|
2019-06-14 14:42:02 +00:00
|
|
|
case HUGE_SIZE:
|
|
|
|
case HUGER_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "xx-large";
|
2019-06-14 14:42:02 +00:00
|
|
|
case INCREASE_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "larger";
|
2019-06-14 14:42:02 +00:00
|
|
|
case DECREASE_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
return "smaller";
|
2019-06-14 14:42:02 +00:00
|
|
|
case IGNORE_SIZE:
|
|
|
|
case INHERIT_SIZE:
|
2012-10-27 13:45:27 +00:00
|
|
|
break;
|
2009-10-26 21:35:35 +00:00
|
|
|
}
|
2012-10-27 13:45:27 +00:00
|
|
|
return "";
|
|
|
|
}
|
2017-07-03 17:53:14 +00:00
|
|
|
|
2017-07-23 11:11:54 +00:00
|
|
|
} // namespace
|
2009-10-26 21:35:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
// FIXME This does not yet handle color
|
2017-07-03 17:53:14 +00:00
|
|
|
docstring FontInfo::asCSS() const
|
2009-10-26 21:35:35 +00:00
|
|
|
{
|
|
|
|
string retval;
|
2009-10-27 12:13:34 +00:00
|
|
|
string tmp = getFamilyCSS(family_);
|
2009-10-26 21:35:35 +00:00
|
|
|
if (!tmp.empty())
|
|
|
|
appendSep(retval, makeCSSTag("font-family", tmp));
|
2009-10-27 12:13:34 +00:00
|
|
|
tmp = getSeriesCSS(series_);
|
2009-10-26 21:35:35 +00:00
|
|
|
if (!tmp.empty())
|
2009-10-27 13:04:13 +00:00
|
|
|
appendSep(retval, makeCSSTag("font-weight", tmp));
|
2009-10-27 12:13:34 +00:00
|
|
|
appendSep(retval, getShapeCSS(shape_));
|
|
|
|
tmp = getSizeCSS(size_);
|
2009-10-26 21:35:35 +00:00
|
|
|
if (!tmp.empty())
|
|
|
|
appendSep(retval, makeCSSTag("font-size", tmp));
|
2017-07-03 17:53:14 +00:00
|
|
|
return from_ascii(retval);
|
2009-10-26 21:35:35 +00:00
|
|
|
}
|
|
|
|
|
2009-10-27 18:23:53 +00:00
|
|
|
|
2019-05-10 08:43:01 +00:00
|
|
|
docstring const FontInfo::stateText(bool const terse) const
|
|
|
|
{
|
|
|
|
odocstringstream os;
|
|
|
|
if (family() != INHERIT_FAMILY && (!terse || family() != IGNORE_FAMILY))
|
|
|
|
os << _(GUIFamilyNames[family()]) << ", ";
|
|
|
|
if (series() != INHERIT_SERIES && (!terse || series() != IGNORE_SERIES))
|
|
|
|
os << _(GUISeriesNames[series()]) << ", ";
|
|
|
|
if (shape() != INHERIT_SHAPE && (!terse || shape() != IGNORE_SHAPE))
|
|
|
|
os << _(GUIShapeNames[shape()]) << ", ";
|
2019-06-14 14:42:02 +00:00
|
|
|
if (size() != INHERIT_SIZE && (!terse || size() != IGNORE_SIZE))
|
2019-05-10 08:43:01 +00:00
|
|
|
os << _(GUISizeNames[size()]) << ", ";
|
|
|
|
// FIXME: shall style be handled there? Probably not.
|
|
|
|
if (color() != Color_inherit && (!terse || color() != Color_ignore))
|
|
|
|
os << lcolor.getGUIName(color()) << ", ";
|
|
|
|
// FIXME: uncomment this when we support background.
|
|
|
|
//if (background() != Color_inherit)
|
|
|
|
// os << lcolor.getGUIName(background()) << ", ";
|
|
|
|
if (emph() != FONT_INHERIT && (!terse || emph() != FONT_IGNORE))
|
|
|
|
os << bformat(_("Emphasis %1$s, "),
|
|
|
|
_(GUIMiscNames[emph()]));
|
|
|
|
if (underbar() != FONT_INHERIT && (!terse || underbar() == FONT_ON))
|
|
|
|
os << bformat(_("Underline %1$s, "),
|
|
|
|
_(GUIMiscNames[underbar()]));
|
|
|
|
if (uuline() != FONT_INHERIT && (!terse || uuline() == FONT_ON))
|
|
|
|
os << bformat(_("Double underline %1$s, "),
|
|
|
|
_(GUIMiscNames[uuline()]));
|
|
|
|
if (uwave() != FONT_INHERIT && (!terse || uwave() == FONT_ON))
|
|
|
|
os << bformat(_("Wavy underline %1$s, "),
|
|
|
|
_(GUIMiscNames[uwave()]));
|
|
|
|
if (strikeout() != FONT_INHERIT && (!terse || strikeout() == FONT_ON))
|
|
|
|
os << bformat(_("Strike out %1$s, "),
|
|
|
|
_(GUIMiscNames[strikeout()]));
|
|
|
|
if (xout() != FONT_INHERIT && (!terse || xout() == FONT_ON))
|
|
|
|
os << bformat(_("Cross out %1$s, "),
|
|
|
|
_(GUIMiscNames[xout()]));
|
|
|
|
if (noun() != FONT_INHERIT && (!terse || noun() != FONT_IGNORE))
|
|
|
|
os << bformat(_("Noun %1$s, "),
|
|
|
|
_(GUIMiscNames[noun()]));
|
|
|
|
if (*this == inherit_font)
|
|
|
|
os << _("Default") << ", ";
|
|
|
|
|
|
|
|
return os.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-27 16:16:15 +00:00
|
|
|
// Set family according to lyx format string
|
|
|
|
void setLyXFamily(string const & fam, FontInfo & f)
|
|
|
|
{
|
|
|
|
string const s = ascii_lowercase(fam);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
while (LyXFamilyNames[i] != s &&
|
|
|
|
LyXFamilyNames[i] != string("error"))
|
|
|
|
++i;
|
|
|
|
if (s == LyXFamilyNames[i])
|
|
|
|
f.setFamily(FontFamily(i));
|
|
|
|
else
|
|
|
|
LYXERR0("Unknown family `" << s << '\'');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set series according to lyx format string
|
|
|
|
void setLyXSeries(string const & ser, FontInfo & f)
|
|
|
|
{
|
|
|
|
string const s = ascii_lowercase(ser);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
while (LyXSeriesNames[i] != s &&
|
|
|
|
LyXSeriesNames[i] != string("error")) ++i;
|
|
|
|
if (s == LyXSeriesNames[i]) {
|
|
|
|
f.setSeries(FontSeries(i));
|
|
|
|
} else
|
|
|
|
LYXERR0("Unknown series `" << s << '\'');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set shape according to lyx format string
|
|
|
|
void setLyXShape(string const & sha, FontInfo & f)
|
|
|
|
{
|
|
|
|
string const s = ascii_lowercase(sha);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
while (LyXShapeNames[i] != s && LyXShapeNames[i] != string("error"))
|
|
|
|
++i;
|
|
|
|
if (s == LyXShapeNames[i])
|
|
|
|
f.setShape(FontShape(i));
|
|
|
|
else
|
|
|
|
LYXERR0("Unknown shape `" << s << '\'');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set size according to lyx format string
|
|
|
|
void setLyXSize(string const & siz, FontInfo & f)
|
|
|
|
{
|
|
|
|
string const s = ascii_lowercase(siz);
|
|
|
|
int i = 0;
|
|
|
|
while (LyXSizeNames[i] != s && LyXSizeNames[i] != string("error"))
|
|
|
|
++i;
|
|
|
|
if (s == LyXSizeNames[i]) {
|
|
|
|
f.setSize(FontSize(i));
|
|
|
|
} else
|
|
|
|
LYXERR0("Unknown size `" << s << '\'');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set size according to lyx format string
|
|
|
|
FontState setLyXMisc(string const & siz)
|
|
|
|
{
|
|
|
|
string const s = ascii_lowercase(siz);
|
|
|
|
int i = 0;
|
|
|
|
while (LyXMiscNames[i] != s &&
|
|
|
|
LyXMiscNames[i] != string("error")) ++i;
|
|
|
|
if (s == LyXMiscNames[i])
|
|
|
|
return FontState(i);
|
|
|
|
LYXERR0("Unknown misc flag `" << s << '\'');
|
|
|
|
return FONT_OFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Sets color after LyX text format
|
|
|
|
void setLyXColor(string const & col, FontInfo & f)
|
|
|
|
{
|
|
|
|
f.setColor(lcolor.getFromLyXName(col));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Read a font definition from given file in lyx format
|
|
|
|
// Used for layouts
|
|
|
|
FontInfo lyxRead(Lexer & lex, FontInfo const & fi)
|
|
|
|
{
|
|
|
|
FontInfo f = fi;
|
|
|
|
bool error = false;
|
|
|
|
bool finished = false;
|
|
|
|
while (!finished && lex.isOK() && !error) {
|
|
|
|
lex.next();
|
|
|
|
string const tok = ascii_lowercase(lex.getString());
|
|
|
|
|
|
|
|
if (tok.empty()) {
|
|
|
|
continue;
|
|
|
|
} else if (tok == "endfont") {
|
|
|
|
finished = true;
|
|
|
|
} else if (tok == "family") {
|
|
|
|
lex.next();
|
|
|
|
string const ttok = lex.getString();
|
|
|
|
setLyXFamily(ttok, f);
|
|
|
|
} else if (tok == "series") {
|
|
|
|
lex.next();
|
|
|
|
string const ttok = lex.getString();
|
|
|
|
setLyXSeries(ttok, f);
|
|
|
|
} else if (tok == "shape") {
|
|
|
|
lex.next();
|
|
|
|
string const ttok = lex.getString();
|
|
|
|
setLyXShape(ttok, f);
|
|
|
|
} else if (tok == "size") {
|
|
|
|
lex.next();
|
|
|
|
string const ttok = lex.getString();
|
|
|
|
setLyXSize(ttok, f);
|
|
|
|
} else if (tok == "misc") {
|
|
|
|
lex.next();
|
|
|
|
string const ttok = ascii_lowercase(lex.getString());
|
|
|
|
|
|
|
|
if (ttok == "no_bar") {
|
|
|
|
f.setUnderbar(FONT_OFF);
|
|
|
|
} else if (ttok == "no_strikeout") {
|
|
|
|
f.setStrikeout(FONT_OFF);
|
2017-04-04 22:01:19 +00:00
|
|
|
} else if (ttok == "no_xout") {
|
|
|
|
f.setXout(FONT_OFF);
|
2009-10-27 16:16:15 +00:00
|
|
|
} else if (ttok == "no_uuline") {
|
|
|
|
f.setUuline(FONT_OFF);
|
|
|
|
} else if (ttok == "no_uwave") {
|
|
|
|
f.setUwave(FONT_OFF);
|
|
|
|
} else if (ttok == "no_emph") {
|
|
|
|
f.setEmph(FONT_OFF);
|
|
|
|
} else if (ttok == "no_noun") {
|
|
|
|
f.setNoun(FONT_OFF);
|
|
|
|
} else if (ttok == "emph") {
|
|
|
|
f.setEmph(FONT_ON);
|
|
|
|
} else if (ttok == "underbar") {
|
|
|
|
f.setUnderbar(FONT_ON);
|
|
|
|
} else if (ttok == "strikeout") {
|
|
|
|
f.setStrikeout(FONT_ON);
|
2017-04-04 22:01:19 +00:00
|
|
|
} else if (ttok == "xout") {
|
|
|
|
f.setXout(FONT_ON);
|
2009-10-27 16:16:15 +00:00
|
|
|
} else if (ttok == "uuline") {
|
|
|
|
f.setUuline(FONT_ON);
|
|
|
|
} else if (ttok == "uwave") {
|
|
|
|
f.setUwave(FONT_ON);
|
|
|
|
} else if (ttok == "noun") {
|
|
|
|
f.setNoun(FONT_ON);
|
2018-05-06 17:48:21 +00:00
|
|
|
} else if (ttok == "nospellcheck") {
|
|
|
|
f.setNoSpellcheck(FONT_ON);
|
|
|
|
} else if (ttok == "no_nospellcheck") {
|
|
|
|
f.setNoSpellcheck(FONT_OFF);
|
2009-10-27 16:16:15 +00:00
|
|
|
} else {
|
|
|
|
lex.printError("Illegal misc type");
|
|
|
|
}
|
|
|
|
} else if (tok == "color") {
|
|
|
|
lex.next();
|
|
|
|
string const ttok = lex.getString();
|
|
|
|
setLyXColor(ttok, f);
|
|
|
|
} else {
|
|
|
|
lex.printError("Unknown tag");
|
|
|
|
error = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-31 13:33:26 +00:00
|
|
|
void lyxWrite(ostream & os, FontInfo const & f, string const & start, int level)
|
|
|
|
{
|
|
|
|
string indent;
|
|
|
|
for (int i = 0; i < level; ++i)
|
|
|
|
indent += '\t';
|
|
|
|
ostringstream oss;
|
|
|
|
if (f.family() != INHERIT_FAMILY)
|
|
|
|
oss << indent << "\tFamily " << LyXFamilyNames[f.family()]
|
|
|
|
<< '\n';
|
|
|
|
if (f.series() != INHERIT_SERIES)
|
|
|
|
oss << indent << "\tSeries " << LyXSeriesNames[f.series()]
|
|
|
|
<< '\n';
|
|
|
|
if (f.shape() != INHERIT_SHAPE)
|
|
|
|
oss << indent << "\tShape " << LyXShapeNames[f.shape()]
|
|
|
|
<< '\n';
|
2019-06-14 14:42:02 +00:00
|
|
|
if (f.size() != INHERIT_SIZE)
|
2013-03-31 13:33:26 +00:00
|
|
|
oss << indent << "\tSize " << LyXSizeNames[f.size()]
|
|
|
|
<< '\n';
|
2019-03-22 14:19:27 +00:00
|
|
|
//FIXME: shall style be handled here? Probably not.
|
2013-03-31 13:33:26 +00:00
|
|
|
if (f.underbar() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Underbar\n";
|
|
|
|
else if (f.underbar() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Bar\n";
|
|
|
|
if (f.strikeout() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Strikeout\n";
|
|
|
|
else if (f.strikeout() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Strikeout\n";
|
2017-04-04 22:01:19 +00:00
|
|
|
if (f.xout() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Xout\n";
|
|
|
|
else if (f.xout() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Xout\n";
|
2013-03-31 13:33:26 +00:00
|
|
|
if (f.uuline() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Uuline\n";
|
|
|
|
else if (f.uuline() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Uuline\n";
|
|
|
|
if (f.uwave() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Uwave\n";
|
|
|
|
else if (f.uwave() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Uwave\n";
|
|
|
|
if (f.emph() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Emph\n";
|
|
|
|
else if (f.emph() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Emph\n";
|
|
|
|
if (f.noun() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc Noun\n";
|
|
|
|
else if (f.noun() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_Noun\n";
|
2018-05-06 17:48:21 +00:00
|
|
|
if (f.nospellcheck() == FONT_ON)
|
|
|
|
oss << indent << "\tMisc NoSpellcheck\n";
|
|
|
|
else if (f.nospellcheck() == FONT_OFF)
|
|
|
|
oss << indent << "\tMisc No_NoSpellcheck\n";
|
2013-03-31 13:33:26 +00:00
|
|
|
if (f.color() != Color_inherit && f.color() != Color_none)
|
|
|
|
oss << indent << "\tColor " << lcolor.getLyXName(f.color())
|
|
|
|
<< '\n';
|
|
|
|
if (!oss.str().empty()) {
|
|
|
|
os << indent << start << '\n'
|
|
|
|
<< oss.str()
|
|
|
|
<< indent << "EndFont\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-02 23:42:27 +00:00
|
|
|
} // namespace lyx
|