2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
2003-10-08 11:31:51 +00:00
|
|
|
|
* \file src/lyxfont.C
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
* \author Dekel Tsur
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "lyxfont.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
|
|
|
|
|
#include "bufferparams.h" // stateText
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
#include "gettext.h"
|
2001-11-26 18:03:23 +00:00
|
|
|
|
#include "language.h"
|
2003-09-16 09:01:15 +00:00
|
|
|
|
#include "LColor.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
#include "lyxlex.h"
|
|
|
|
|
#include "lyxrc.h"
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
|
#include "support/lstrings.h"
|
2003-09-09 22:13:45 +00:00
|
|
|
|
#include "support/std_sstream.h"
|
|
|
|
|
|
|
|
|
|
using lyx::support::ascii_lowercase;
|
|
|
|
|
using lyx::support::bformat;
|
|
|
|
|
using lyx::support::rtrim;
|
|
|
|
|
using lyx::support::subst;
|
|
|
|
|
|
|
|
|
|
using std::endl;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2000-04-04 00:19:15 +00:00
|
|
|
|
using std::ostream;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::ostringstream;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-06-01 10:53:24 +00:00
|
|
|
|
#ifndef CXX_GLOBAL_CSTD
|
|
|
|
|
using std::strlen;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
//
|
|
|
|
|
// Names for the GUI
|
|
|
|
|
//
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * GUIFamilyNames[LyXFont::NUM_FAMILIES + 2 /* default & error */] =
|
2003-01-23 16:23:43 +00:00
|
|
|
|
{ N_("Roman"), N_("Sans Serif"), N_("Typewriter"), N_("Symbol"),
|
2002-07-09 13:38:27 +00:00
|
|
|
|
"cmr", "cmsy", "cmm", "cmex", "msa", "msb", "eufrak", "wasy",
|
2001-08-30 22:42:26 +00:00
|
|
|
|
N_("Inherit"), N_("Ignore") };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * GUISeriesNames[4] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ N_("Medium"), N_("Bold"), N_("Inherit"), N_("Ignore") };
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * GUIShapeNames[6] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ N_("Upright"), N_("Italic"), N_("Slanted"), N_("Smallcaps"), N_("Inherit"),
|
1999-12-07 00:44:53 +00:00
|
|
|
|
N_("Ignore") };
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * GUISizeNames[14] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ N_("Tiny"), N_("Smallest"), N_("Smaller"), N_("Small"), N_("Normal"), N_("Large"),
|
2002-03-21 17:27:08 +00:00
|
|
|
|
N_("Larger"), N_("Largest"), N_("Huge"), N_("Huger"), N_("Increase"), N_("Decrease"),
|
1999-09-27 18:44:28 +00:00
|
|
|
|
N_("Inherit"), N_("Ignore") };
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
|
|
|
|
char const * GUIMiscNames[5] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ N_("Off"), N_("On"), N_("Toggle"), N_("Inherit"), N_("Ignore") };
|
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
//
|
|
|
|
|
// Strings used to read and write .lyx format files
|
|
|
|
|
//
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LyXFamilyNames[LyXFont::NUM_FAMILIES + 2 /* default & error */] =
|
2001-08-31 11:36:32 +00:00
|
|
|
|
{ "roman", "sans", "typewriter", "symbol",
|
2002-07-09 13:38:27 +00:00
|
|
|
|
"cmr", "cmsy", "cmm", "cmex", "msa", "msb", "eufrak", "wasy",
|
2001-08-31 11:36:32 +00:00
|
|
|
|
"default", "error" };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LyXSeriesNames[4] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "medium", "bold", "default", "error" };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LyXShapeNames[6] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "up", "italic", "slanted", "smallcaps", "default", "error" };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LyXSizeNames[14] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "tiny", "scriptsize", "footnotesize", "small", "normal", "large",
|
2002-03-21 17:27:08 +00:00
|
|
|
|
"larger", "largest", "huge", "giant",
|
2001-09-27 16:51:34 +00:00
|
|
|
|
"increase", "decrease", "default", "error" };
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LyXMiscNames[5] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "off", "on", "toggle", "default", "error" };
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Strings used to write LaTeX files
|
|
|
|
|
//
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LaTeXFamilyNames[6] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "textrm", "textsf", "texttt", "error1", "error2", "error3" };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LaTeXSeriesNames[4] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "textmd", "textbf", "error4", "error5" };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LaTeXShapeNames[6] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "textup", "textit", "textsl", "textsc", "error6", "error7" };
|
2000-03-28 02:18:55 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
char const * LaTeXSizeNames[14] =
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{ "tiny", "scriptsize", "footnotesize", "small", "normalsize", "large",
|
|
|
|
|
"Large", "LARGE", "huge", "Huge", "error8", "error9", "error10", "error11" };
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
// Initialize static member
|
2000-02-23 16:39:03 +00:00
|
|
|
|
LyXFont::FontBits LyXFont::sane = {
|
|
|
|
|
ROMAN_FAMILY,
|
|
|
|
|
MEDIUM_SERIES,
|
|
|
|
|
UP_SHAPE,
|
|
|
|
|
SIZE_NORMAL,
|
|
|
|
|
LColor::none,
|
|
|
|
|
OFF,
|
|
|
|
|
OFF,
|
2001-03-06 14:07:14 +00:00
|
|
|
|
OFF,
|
2000-03-17 10:14:46 +00:00
|
|
|
|
OFF };
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
|
// Initialize static member
|
2000-02-23 16:39:03 +00:00
|
|
|
|
LyXFont::FontBits LyXFont::inherit = {
|
|
|
|
|
INHERIT_FAMILY,
|
|
|
|
|
INHERIT_SERIES,
|
|
|
|
|
INHERIT_SHAPE,
|
|
|
|
|
INHERIT_SIZE,
|
|
|
|
|
LColor::inherit,
|
|
|
|
|
INHERIT,
|
|
|
|
|
INHERIT,
|
2001-03-06 14:07:14 +00:00
|
|
|
|
INHERIT,
|
|
|
|
|
OFF };
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
|
// Initialize static member
|
2000-02-23 16:39:03 +00:00
|
|
|
|
LyXFont::FontBits LyXFont::ignore = {
|
|
|
|
|
IGNORE_FAMILY,
|
|
|
|
|
IGNORE_SERIES,
|
|
|
|
|
IGNORE_SHAPE,
|
|
|
|
|
IGNORE_SIZE,
|
|
|
|
|
LColor::ignore,
|
|
|
|
|
IGNORE,
|
|
|
|
|
IGNORE,
|
2001-03-06 14:07:14 +00:00
|
|
|
|
IGNORE,
|
2000-03-17 10:14:46 +00:00
|
|
|
|
IGNORE };
|
2000-02-23 16:39:03 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-06-10 07:57:39 +00:00
|
|
|
|
bool operator==(LyXFont::FontBits const & lhs,
|
|
|
|
|
LyXFont::FontBits const & rhs)
|
2000-04-04 00:19:15 +00:00
|
|
|
|
{
|
2002-06-10 07:57:39 +00:00
|
|
|
|
return lhs.family == rhs.family &&
|
|
|
|
|
lhs.series == rhs.series &&
|
|
|
|
|
lhs.shape == rhs.shape &&
|
|
|
|
|
lhs.size == rhs.size &&
|
|
|
|
|
lhs.color == rhs.color &&
|
|
|
|
|
lhs.emph == rhs.emph &&
|
|
|
|
|
lhs.underbar == rhs.underbar &&
|
|
|
|
|
lhs.noun == rhs.noun &&
|
|
|
|
|
lhs.number == rhs.number;
|
2000-04-04 00:19:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-11-26 18:03:23 +00:00
|
|
|
|
LyXFont::LyXFont()
|
|
|
|
|
: bits(sane), lang(default_language)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
|
LyXFont::LyXFont(LyXFont::FONT_INIT1)
|
2001-08-11 18:31:14 +00:00
|
|
|
|
: bits(inherit), lang(default_language)
|
2001-04-04 20:20:42 +00:00
|
|
|
|
{}
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont::LyXFont(LyXFont::FONT_INIT2)
|
2001-04-04 20:20:42 +00:00
|
|
|
|
: bits(ignore), lang(ignore_language)
|
|
|
|
|
{}
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont::LyXFont(LyXFont::FONT_INIT3)
|
2001-04-04 20:20:42 +00:00
|
|
|
|
: bits(sane), lang(default_language)
|
|
|
|
|
{}
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont::LyXFont(LyXFont::FONT_INIT1, Language const * l)
|
2001-04-04 20:20:42 +00:00
|
|
|
|
: bits(inherit), lang(l)
|
|
|
|
|
{}
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont::LyXFont(LyXFont::FONT_INIT2, Language const * l)
|
2001-04-04 20:20:42 +00:00
|
|
|
|
: bits(ignore), lang(l)
|
|
|
|
|
{}
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont::LyXFont(LyXFont::FONT_INIT3, Language const * l)
|
2001-04-04 20:20:42 +00:00
|
|
|
|
: bits(sane), lang(l)
|
|
|
|
|
{}
|
2001-03-06 14:07:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LyXFont::FONT_MISC_STATE LyXFont::underbar() const
|
|
|
|
|
{
|
|
|
|
|
return bits.underbar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-18 11:48:11 +00:00
|
|
|
|
LColor_color LyXFont::color() const
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
2003-09-16 09:01:15 +00:00
|
|
|
|
return LColor::color(bits.color);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
Language const * LyXFont::language() const
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
return lang;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXFont::FONT_MISC_STATE LyXFont::number() const
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
return bits.number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
bool LyXFont::isRightToLeft() const
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
return lang->RightToLeft();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
bool LyXFont::isVisibleRightToLeft() const
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
|
return (lang->RightToLeft() &&
|
|
|
|
|
number() != ON);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setFamily(LyXFont::FONT_FAMILY f)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.family = f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setSeries(LyXFont::FONT_SERIES s)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.series = s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setShape(LyXFont::FONT_SHAPE s)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.shape = s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setSize(LyXFont::FONT_SIZE s)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.size = s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setEmph(LyXFont::FONT_MISC_STATE e)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.emph = e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setUnderbar(LyXFont::FONT_MISC_STATE u)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.underbar = u;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setNoun(LyXFont::FONT_MISC_STATE n)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.noun = n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-18 11:48:11 +00:00
|
|
|
|
void LyXFont::setColor(LColor_color c)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
2003-09-16 09:01:15 +00:00
|
|
|
|
bits.color = int(c);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setLanguage(Language const * l)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
lang = l;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-16 09:01:15 +00:00
|
|
|
|
void LyXFont::setNumber(LyXFont::FONT_MISC_STATE n)
|
2001-03-06 14:07:14 +00:00
|
|
|
|
{
|
|
|
|
|
bits.number = n;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// Decreases font size by one
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXFont & LyXFont::decSize()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
switch (size()) {
|
|
|
|
|
case SIZE_HUGER: setSize(SIZE_HUGE); break;
|
|
|
|
|
case SIZE_HUGE: setSize(SIZE_LARGEST); break;
|
|
|
|
|
case SIZE_LARGEST: setSize(SIZE_LARGER); break;
|
|
|
|
|
case SIZE_LARGER: setSize(SIZE_LARGE); break;
|
|
|
|
|
case SIZE_LARGE: setSize(SIZE_NORMAL); break;
|
|
|
|
|
case SIZE_NORMAL: setSize(SIZE_SMALL); break;
|
|
|
|
|
case SIZE_SMALL: setSize(SIZE_FOOTNOTE); break;
|
|
|
|
|
case SIZE_FOOTNOTE: setSize(SIZE_SCRIPT); break;
|
|
|
|
|
case SIZE_SCRIPT: setSize(SIZE_TINY); break;
|
|
|
|
|
case SIZE_TINY: break;
|
|
|
|
|
case INCREASE_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "Can't LyXFont::decSize on INCREASE_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case DECREASE_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::decSize on DECREASE_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case INHERIT_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::decSize on INHERIT_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case IGNORE_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::decSize on IGNORE_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Increases font size by one
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXFont & LyXFont::incSize()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-11-04 10:00:12 +00:00
|
|
|
|
switch (size()) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
case SIZE_HUGER: break;
|
|
|
|
|
case SIZE_HUGE: setSize(SIZE_HUGER); break;
|
|
|
|
|
case SIZE_LARGEST: setSize(SIZE_HUGE); break;
|
|
|
|
|
case SIZE_LARGER: setSize(SIZE_LARGEST); break;
|
|
|
|
|
case SIZE_LARGE: setSize(SIZE_LARGER); break;
|
|
|
|
|
case SIZE_NORMAL: setSize(SIZE_LARGE); break;
|
|
|
|
|
case SIZE_SMALL: setSize(SIZE_NORMAL); break;
|
|
|
|
|
case SIZE_FOOTNOTE: setSize(SIZE_SMALL); break;
|
|
|
|
|
case SIZE_SCRIPT: setSize(SIZE_FOOTNOTE); break;
|
|
|
|
|
case SIZE_TINY: setSize(SIZE_SCRIPT); break;
|
|
|
|
|
case INCREASE_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::incSize on INCREASE_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case DECREASE_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::incSize on DECREASE_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case INHERIT_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::incSize on INHERIT_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
case IGNORE_SIZE:
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"Can't LyXFont::incSize on IGNORE_SIZE" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Updates a misc setting according to request
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXFont::FONT_MISC_STATE LyXFont::setMisc(FONT_MISC_STATE newfont,
|
1999-09-27 18:44:28 +00:00
|
|
|
|
FONT_MISC_STATE org)
|
|
|
|
|
{
|
|
|
|
|
if (newfont == TOGGLE) {
|
|
|
|
|
if (org == ON)
|
|
|
|
|
return OFF;
|
|
|
|
|
else if (org == OFF)
|
|
|
|
|
return ON;
|
|
|
|
|
else {
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr <<"LyXFont::setMisc: Need state"
|
|
|
|
|
" ON or OFF to toggle. Setting to ON" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return ON;
|
|
|
|
|
}
|
|
|
|
|
} else if (newfont == IGNORE)
|
|
|
|
|
return org;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
else
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return newfont;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Updates font settings according to request
|
2002-03-21 17:27:08 +00:00
|
|
|
|
void LyXFont::update(LyXFont const & newfont,
|
2001-08-11 18:31:14 +00:00
|
|
|
|
Language const * document_language,
|
|
|
|
|
bool toggleall)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-11-04 10:00:12 +00:00
|
|
|
|
if (newfont.family() == family() && toggleall)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
setFamily(INHERIT_FAMILY); // toggle 'back'
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else if (newfont.family() != IGNORE_FAMILY)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
setFamily(newfont.family());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// 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;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
case IGNORE_SERIES:
|
1999-09-27 18:44:28 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
|
if (newfont.shape() == shape() && toggleall)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
setShape(INHERIT_SHAPE); // toggle 'back'
|
1999-09-27 18:44:28 +00:00
|
|
|
|
else if (newfont.shape() != IGNORE_SHAPE)
|
1999-12-07 00:44:53 +00:00
|
|
|
|
setShape(newfont.shape());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// else it's IGNORE_SHAPE
|
|
|
|
|
|
|
|
|
|
if (newfont.size() != IGNORE_SIZE) {
|
|
|
|
|
if (newfont.size() == INCREASE_SIZE)
|
|
|
|
|
incSize();
|
|
|
|
|
else if (newfont.size() == DECREASE_SIZE)
|
|
|
|
|
decSize();
|
|
|
|
|
else
|
|
|
|
|
setSize(newfont.size());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setEmph(setMisc(newfont.emph(), emph()));
|
|
|
|
|
setUnderbar(setMisc(newfont.underbar(), underbar()));
|
|
|
|
|
setNoun(setMisc(newfont.noun(), noun()));
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
|
setNumber(setMisc(newfont.number(), number()));
|
2000-04-17 14:00:18 +00:00
|
|
|
|
if (newfont.language() == language() && toggleall)
|
2001-08-11 18:31:14 +00:00
|
|
|
|
if (language() == document_language)
|
|
|
|
|
setLanguage(default_language);
|
|
|
|
|
else
|
|
|
|
|
setLanguage(document_language);
|
2000-04-17 14:00:18 +00:00
|
|
|
|
else if (newfont.language() != ignore_language)
|
|
|
|
|
setLanguage(newfont.language());
|
2000-02-03 19:51:27 +00:00
|
|
|
|
|
2000-03-17 10:14:46 +00:00
|
|
|
|
if (newfont.color() == color() && toggleall)
|
2000-02-10 17:53:36 +00:00
|
|
|
|
setColor(LColor::inherit); // toggle 'back'
|
|
|
|
|
else if (newfont.color() != LColor::ignore)
|
|
|
|
|
setColor(newfont.color());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Reduce font to fall back to template where possible
|
|
|
|
|
void LyXFont::reduce(LyXFont const & tmplt)
|
|
|
|
|
{
|
|
|
|
|
if (family() == tmplt.family())
|
|
|
|
|
setFamily(INHERIT_FAMILY);
|
|
|
|
|
if (series() == tmplt.series())
|
|
|
|
|
setSeries(INHERIT_SERIES);
|
|
|
|
|
if (shape() == tmplt.shape())
|
|
|
|
|
setShape(INHERIT_SHAPE);
|
|
|
|
|
if (size() == tmplt.size())
|
|
|
|
|
setSize(INHERIT_SIZE);
|
|
|
|
|
if (emph() == tmplt.emph())
|
|
|
|
|
setEmph(INHERIT);
|
|
|
|
|
if (underbar() == tmplt.underbar())
|
|
|
|
|
setUnderbar(INHERIT);
|
|
|
|
|
if (noun() == tmplt.noun())
|
|
|
|
|
setNoun(INHERIT);
|
|
|
|
|
if (color() == tmplt.color())
|
2000-02-10 17:53:36 +00:00
|
|
|
|
setColor(LColor::inherit);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Realize font from a template
|
2001-08-11 18:31:14 +00:00
|
|
|
|
LyXFont & LyXFont::realize(LyXFont const & tmplt)
|
2001-07-27 12:03:36 +00:00
|
|
|
|
{
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (bits == inherit) {
|
|
|
|
|
bits = tmplt.bits;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (bits.family == INHERIT_FAMILY) {
|
|
|
|
|
bits.family = tmplt.bits.family;
|
|
|
|
|
}
|
|
|
|
|
if (bits.series == INHERIT_SERIES) {
|
|
|
|
|
bits.series = tmplt.bits.series;
|
|
|
|
|
}
|
|
|
|
|
if (bits.shape == INHERIT_SHAPE) {
|
|
|
|
|
bits.shape = tmplt.bits.shape;
|
|
|
|
|
}
|
|
|
|
|
if (bits.size == INHERIT_SIZE) {
|
|
|
|
|
bits.size = tmplt.bits.size;
|
|
|
|
|
}
|
|
|
|
|
if (bits.emph == INHERIT) {
|
|
|
|
|
bits.emph = tmplt.bits.emph;
|
|
|
|
|
}
|
|
|
|
|
if (bits.underbar == INHERIT) {
|
|
|
|
|
bits.underbar = tmplt.bits.underbar;
|
|
|
|
|
}
|
|
|
|
|
if (bits.noun == INHERIT) {
|
|
|
|
|
bits.noun = tmplt.bits.noun;
|
|
|
|
|
}
|
|
|
|
|
if (bits.color == LColor::inherit) {
|
|
|
|
|
bits.color = tmplt.bits.color;
|
|
|
|
|
}
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Is font resolved?
|
2000-02-10 17:53:36 +00:00
|
|
|
|
bool LyXFont::resolved() const
|
|
|
|
|
{
|
|
|
|
|
return (family() != INHERIT_FAMILY && series() != INHERIT_SERIES &&
|
|
|
|
|
shape() != INHERIT_SHAPE && size() != INHERIT_SIZE &&
|
2002-03-21 17:27:08 +00:00
|
|
|
|
emph() != INHERIT && underbar() != INHERIT &&
|
2001-06-27 14:10:35 +00:00
|
|
|
|
noun() != INHERIT &&
|
2001-08-11 18:31:14 +00:00
|
|
|
|
color() != LColor::inherit);
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// Build GUI description of font state
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LyXFont::stateText(BufferParams * params) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-05-13 09:48:57 +00:00
|
|
|
|
ostringstream os;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (family() != INHERIT_FAMILY)
|
2003-05-13 09:48:57 +00:00
|
|
|
|
os << _(GUIFamilyNames[family()]) << ", ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (series() != INHERIT_SERIES)
|
2003-05-13 09:48:57 +00:00
|
|
|
|
os << _(GUISeriesNames[series()]) << ", ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (shape() != INHERIT_SHAPE)
|
2003-05-13 09:48:57 +00:00
|
|
|
|
os << _(GUIShapeNames[shape()]) << ", ";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (size() != INHERIT_SIZE)
|
2003-05-13 09:48:57 +00:00
|
|
|
|
os << _(GUISizeNames[size()]) << ", ";
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (color() != LColor::inherit)
|
2003-05-13 09:48:57 +00:00
|
|
|
|
os << lcolor.getGUIName(color()) << ", ";
|
|
|
|
|
if (emph() != INHERIT)
|
|
|
|
|
os << bformat(_("Emphasis %1$s, "), _(GUIMiscNames[emph()]));
|
|
|
|
|
if (underbar() != INHERIT)
|
|
|
|
|
os << bformat(_("Underline %1$s, "), _(GUIMiscNames[underbar()]));
|
|
|
|
|
if (noun() != INHERIT)
|
|
|
|
|
os << bformat(_("Noun %1$s, "), _(GUIMiscNames[noun()]));
|
2000-05-09 16:18:31 +00:00
|
|
|
|
if (bits == inherit)
|
2003-05-13 09:48:57 +00:00
|
|
|
|
os << _("Default") << ", ";
|
|
|
|
|
if (!params || (language() != params->language))
|
|
|
|
|
os << bformat(_("Language: %1$s, "), _(language()->display()));
|
|
|
|
|
if (number() != OFF)
|
|
|
|
|
os << bformat(_(" Number %1$s"), _(GUIMiscNames[number()]));
|
2003-09-15 11:00:00 +00:00
|
|
|
|
return rtrim(os.str(), ", ");
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set family according to lyx format string
|
1999-12-07 00:44:53 +00:00
|
|
|
|
LyXFont & LyXFont::setLyXFamily(string const & fam)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const s = ascii_lowercase(fam);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
1999-12-15 06:12:28 +00:00
|
|
|
|
int i = 0;
|
2003-05-19 17:03:12 +00:00
|
|
|
|
while (s != LyXFamilyNames[i] && LyXFamilyNames[i] != "error")
|
|
|
|
|
++i;
|
|
|
|
|
if (s == LyXFamilyNames[i])
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setFamily(LyXFont::FONT_FAMILY(i));
|
2003-05-19 17:03:12 +00:00
|
|
|
|
else
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "LyXFont::setLyXFamily: Unknown family `"
|
|
|
|
|
<< s << '\'' << endl;
|
1999-12-15 06:12:28 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set series according to lyx format string
|
1999-12-07 00:44:53 +00:00
|
|
|
|
LyXFont & LyXFont::setLyXSeries(string const & ser)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const s = ascii_lowercase(ser);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
1999-12-15 06:12:28 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
while (s != LyXSeriesNames[i] && LyXSeriesNames[i] != "error") ++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (s == LyXSeriesNames[i]) {
|
|
|
|
|
setSeries(LyXFont::FONT_SERIES(i));
|
|
|
|
|
} else
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "LyXFont::setLyXSeries: Unknown series `"
|
|
|
|
|
<< s << '\'' << endl;
|
1999-12-15 06:12:28 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set shape according to lyx format string
|
1999-12-07 00:44:53 +00:00
|
|
|
|
LyXFont & LyXFont::setLyXShape(string const & sha)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const s = ascii_lowercase(sha);
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
1999-12-15 06:12:28 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
while (s != LyXShapeNames[i] && LyXShapeNames[i] != "error") ++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (s == LyXShapeNames[i]) {
|
|
|
|
|
setShape(LyXFont::FONT_SHAPE(i));
|
|
|
|
|
} else
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "LyXFont::setLyXShape: Unknown shape `"
|
|
|
|
|
<< s << '\'' << endl;
|
1999-12-15 06:12:28 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set size according to lyx format string
|
1999-12-07 00:44:53 +00:00
|
|
|
|
LyXFont & LyXFont::setLyXSize(string const & siz)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const s = ascii_lowercase(siz);
|
1999-12-15 06:12:28 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
while (s != LyXSizeNames[i] && LyXSizeNames[i] != "error") ++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (s == LyXSizeNames[i]) {
|
|
|
|
|
setSize(LyXFont::FONT_SIZE(i));
|
|
|
|
|
} else
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "LyXFont::setLyXSize: Unknown size `"
|
|
|
|
|
<< s << '\'' << endl;
|
1999-12-15 06:12:28 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Set size according to lyx format string
|
1999-10-02 16:21:10 +00:00
|
|
|
|
LyXFont::FONT_MISC_STATE LyXFont::setLyXMisc(string const & siz)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const s = ascii_lowercase(siz);
|
2000-04-04 00:19:15 +00:00
|
|
|
|
int i = 0;
|
1999-12-15 06:12:28 +00:00
|
|
|
|
while (s != LyXMiscNames[i] && LyXMiscNames[i] != "error") ++i;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (s == LyXMiscNames[i])
|
|
|
|
|
return FONT_MISC_STATE(i);
|
1999-10-07 18:44:17 +00:00
|
|
|
|
lyxerr << "LyXFont::setLyXMisc: Unknown misc flag `"
|
|
|
|
|
<< s << '\'' << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return OFF;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// Sets color after LyX text format
|
1999-12-07 00:44:53 +00:00
|
|
|
|
LyXFont & LyXFont::setLyXColor(string const & col)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-02-10 17:53:36 +00:00
|
|
|
|
setColor(lcolor.getFromLyXName(col));
|
1999-12-15 06:12:28 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Returns size in latex format
|
2000-09-14 17:53:12 +00:00
|
|
|
|
string const LyXFont::latexSize() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
return LaTeXSizeNames[size()];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Read a font definition from given file in lyx format
|
|
|
|
|
// Used for layouts
|
|
|
|
|
LyXFont & LyXFont::lyxRead(LyXLex & lex)
|
|
|
|
|
{
|
|
|
|
|
bool error = false;
|
|
|
|
|
bool finished = false;
|
2001-08-06 19:12:46 +00:00
|
|
|
|
while (!finished && lex.isOK() && !error) {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
lex.next();
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const tok = ascii_lowercase(lex.getString());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
if (tok.empty()) {
|
|
|
|
|
continue;
|
|
|
|
|
} else if (tok == "endfont") {
|
|
|
|
|
finished = true;
|
|
|
|
|
} else if (tok == "family") {
|
|
|
|
|
lex.next();
|
2001-08-06 19:12:46 +00:00
|
|
|
|
string const ttok = lex.getString();
|
2001-03-06 14:07:14 +00:00
|
|
|
|
setLyXFamily(ttok);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tok == "series") {
|
|
|
|
|
lex.next();
|
2001-08-06 19:12:46 +00:00
|
|
|
|
string const ttok = lex.getString();
|
2001-03-06 14:07:14 +00:00
|
|
|
|
setLyXSeries(ttok);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tok == "shape") {
|
|
|
|
|
lex.next();
|
2001-08-06 19:12:46 +00:00
|
|
|
|
string const ttok = lex.getString();
|
2001-03-06 14:07:14 +00:00
|
|
|
|
setLyXShape(ttok);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tok == "size") {
|
|
|
|
|
lex.next();
|
2001-08-06 19:12:46 +00:00
|
|
|
|
string const ttok = lex.getString();
|
2001-03-06 14:07:14 +00:00
|
|
|
|
setLyXSize(ttok);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else if (tok == "misc") {
|
|
|
|
|
lex.next();
|
2002-07-16 21:17:10 +00:00
|
|
|
|
string const ttok = ascii_lowercase(lex.getString());
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
|
if (ttok == "no_bar") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setUnderbar(OFF);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
} else if (ttok == "no_emph") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setEmph(OFF);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
} else if (ttok == "no_noun") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setNoun(OFF);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
} else if (ttok == "emph") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setEmph(ON);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
} else if (ttok == "underbar") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setUnderbar(ON);
|
2001-03-06 14:07:14 +00:00
|
|
|
|
} else if (ttok == "noun") {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
setNoun(ON);
|
|
|
|
|
} else {
|
|
|
|
|
lex.printError("Illegal misc type `$$Token<65>");
|
|
|
|
|
}
|
|
|
|
|
} else if (tok == "color") {
|
|
|
|
|
lex.next();
|
2001-08-06 19:12:46 +00:00
|
|
|
|
string const ttok = lex.getString();
|
2001-03-06 14:07:14 +00:00
|
|
|
|
setLyXColor(ttok);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
} else {
|
|
|
|
|
lex.printError("Unknown tag `$$Token'");
|
|
|
|
|
error = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
return *this;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Writes the changes from this font to orgfont in .lyx format in file
|
2001-07-27 12:03:36 +00:00
|
|
|
|
void LyXFont::lyxWriteChanges(LyXFont const & orgfont,
|
2001-08-11 18:31:14 +00:00
|
|
|
|
ostream & os) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (orgfont.family() != family()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\\family " << LyXFamilyNames[family()] << " \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (orgfont.series() != series()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\\series " << LyXSeriesNames[series()] << " \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (orgfont.shape() != shape()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\\shape " << LyXShapeNames[shape()] << " \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (orgfont.size() != size()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\\size " << LyXSizeNames[size()] << " \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (orgfont.emph() != emph()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\\emph " << LyXMiscNames[emph()] << " \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-10-09 12:30:52 +00:00
|
|
|
|
if (orgfont.number() != number()) {
|
|
|
|
|
os << "\\numeric " << LyXMiscNames[number()] << " \n";
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (orgfont.underbar() != underbar()) {
|
|
|
|
|
// This is only for backwards compatibility
|
|
|
|
|
switch (underbar()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
case OFF: os << "\\bar no \n"; break;
|
|
|
|
|
case ON: os << "\\bar under \n"; break;
|
1999-10-07 18:44:17 +00:00
|
|
|
|
case TOGGLE: lyxerr << "LyXFont::lyxWriteFontChanges: "
|
|
|
|
|
"TOGGLE should not appear here!"
|
|
|
|
|
<< endl;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
break;
|
|
|
|
|
case INHERIT: os << "\\bar default \n"; break;
|
1999-10-07 18:44:17 +00:00
|
|
|
|
case IGNORE: lyxerr << "LyXFont::lyxWriteFontChanges: "
|
|
|
|
|
"IGNORE should not appear here!"
|
|
|
|
|
<< endl;
|
1999-12-07 00:44:53 +00:00
|
|
|
|
break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (orgfont.noun() != noun()) {
|
1999-12-07 00:44:53 +00:00
|
|
|
|
os << "\\noun " << LyXMiscNames[noun()] << " \n";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-02-10 17:53:36 +00:00
|
|
|
|
if (orgfont.color() != color()) {
|
2000-05-19 19:46:23 +00:00
|
|
|
|
// To make us file compatible with older
|
|
|
|
|
// lyx versions we emit "default" instead
|
2000-05-20 21:37:05 +00:00
|
|
|
|
// of "inherit"
|
2000-05-19 19:46:23 +00:00
|
|
|
|
string col_str(lcolor.getLyXName(color()));
|
|
|
|
|
if (col_str == "inherit") col_str = "default";
|
|
|
|
|
os << "\\color " << col_str << "\n";
|
2000-02-10 17:53:36 +00:00
|
|
|
|
}
|
2000-09-27 15:23:24 +00:00
|
|
|
|
if (orgfont.language() != language()) {
|
2001-08-11 18:31:14 +00:00
|
|
|
|
if (language())
|
2000-06-08 23:16:16 +00:00
|
|
|
|
os << "\\lang " << language()->lang() << "\n";
|
2000-03-17 10:14:46 +00:00
|
|
|
|
else
|
|
|
|
|
os << "\\lang unknown\n";
|
2000-02-03 19:51:27 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Writes the head of the LaTeX needed to impose this font
|
|
|
|
|
// Returns number of chars written.
|
2000-03-06 02:42:40 +00:00
|
|
|
|
int LyXFont::latexWriteStartChanges(ostream & os, LyXFont const & base,
|
|
|
|
|
LyXFont const & prev) const
|
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
bool env = false;
|
|
|
|
|
|
2000-10-10 12:36:36 +00:00
|
|
|
|
if (language()->babel() != base.language()->babel() &&
|
2002-04-11 13:35:03 +00:00
|
|
|
|
language() != prev.language()) {
|
2000-03-17 10:14:46 +00:00
|
|
|
|
if (isRightToLeft() != prev.isRightToLeft()) {
|
|
|
|
|
if (isRightToLeft()) {
|
|
|
|
|
os << "\\R{";
|
|
|
|
|
count += 3;
|
|
|
|
|
} else {
|
|
|
|
|
os << "\\L{";
|
|
|
|
|
count += 3;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2001-03-06 14:07:14 +00:00
|
|
|
|
string const tmp =
|
2001-02-25 10:22:54 +00:00
|
|
|
|
subst(lyxrc.language_command_local,
|
2000-10-10 12:36:36 +00:00
|
|
|
|
"$$lang", language()->babel());
|
2000-03-17 10:14:46 +00:00
|
|
|
|
os << tmp;
|
|
|
|
|
count += tmp.length();
|
2000-03-06 02:42:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
|
if (number() == ON && prev.number() != ON &&
|
|
|
|
|
language()->lang() == "hebrew") {
|
|
|
|
|
os << "{\\beginL ";
|
|
|
|
|
count += 9;
|
|
|
|
|
}
|
|
|
|
|
|
2000-03-17 10:14:46 +00:00
|
|
|
|
LyXFont f = *this;
|
|
|
|
|
f.reduce(base);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-03-06 02:42:40 +00:00
|
|
|
|
if (f.family() != INHERIT_FAMILY) {
|
|
|
|
|
os << '\\'
|
|
|
|
|
<< LaTeXFamilyNames[f.family()]
|
2000-03-07 01:14:37 +00:00
|
|
|
|
<< '{';
|
2001-06-01 10:53:24 +00:00
|
|
|
|
count += strlen(LaTeXFamilyNames[f.family()]) + 2;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
|
|
|
|
if (f.series() != INHERIT_SERIES) {
|
|
|
|
|
os << '\\'
|
|
|
|
|
<< LaTeXSeriesNames[f.series()]
|
|
|
|
|
<< '{';
|
2001-06-01 10:53:24 +00:00
|
|
|
|
count += strlen(LaTeXSeriesNames[f.series()]) + 2;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
|
|
|
|
if (f.shape() != INHERIT_SHAPE) {
|
|
|
|
|
os << '\\'
|
|
|
|
|
<< LaTeXShapeNames[f.shape()]
|
|
|
|
|
<< '{';
|
2001-06-01 10:53:24 +00:00
|
|
|
|
count += strlen(LaTeXShapeNames[f.shape()]) + 2;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
if (f.color() != LColor::inherit && f.color() != LColor::ignore) {
|
2000-03-06 02:42:40 +00:00
|
|
|
|
os << "\\textcolor{"
|
|
|
|
|
<< lcolor.getLaTeXName(f.color())
|
|
|
|
|
<< "}{";
|
|
|
|
|
count += lcolor.getLaTeXName(f.color()).length() + 13;
|
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
|
|
|
|
if (f.emph() == ON) {
|
|
|
|
|
os << "\\emph{";
|
|
|
|
|
count += 6;
|
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
|
|
|
|
if (f.underbar() == ON) {
|
|
|
|
|
os << "\\underbar{";
|
|
|
|
|
count += 10;
|
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
|
|
|
|
// \noun{} is a LyX special macro
|
|
|
|
|
if (f.noun() == ON) {
|
|
|
|
|
os << "\\noun{";
|
2003-05-27 13:32:32 +00:00
|
|
|
|
count += 6;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
env = true; //We have opened a new environment
|
|
|
|
|
}
|
|
|
|
|
if (f.size() != INHERIT_SIZE) {
|
|
|
|
|
// If we didn't open an environment above, we open one here
|
|
|
|
|
if (!env) {
|
|
|
|
|
os << '{';
|
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
os << '\\'
|
|
|
|
|
<< LaTeXSizeNames[f.size()]
|
|
|
|
|
<< ' ';
|
2001-06-01 10:53:24 +00:00
|
|
|
|
count += strlen(LaTeXSizeNames[f.size()]) + 2;
|
2000-03-06 02:42:40 +00:00
|
|
|
|
}
|
|
|
|
|
return count;
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-03-06 02:42:40 +00:00
|
|
|
|
/// Writes ending block of LaTeX needed to close use of this font
|
|
|
|
|
// Returns number of chars written
|
|
|
|
|
// This one corresponds to latexWriteStartChanges(). (Asger)
|
|
|
|
|
int LyXFont::latexWriteEndChanges(ostream & os, LyXFont const & base,
|
2002-03-21 17:27:08 +00:00
|
|
|
|
LyXFont const & next) const
|
2000-03-06 02:42:40 +00:00
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
bool env = false;
|
|
|
|
|
|
2002-08-24 22:02:30 +00:00
|
|
|
|
// reduce the current font to changes against the base
|
|
|
|
|
// font (of the layout). We use a temporary for this to
|
|
|
|
|
// avoid changing this font instance, as that would break
|
|
|
|
|
LyXFont f = *this;
|
|
|
|
|
f.reduce(base);
|
2000-10-09 12:30:52 +00:00
|
|
|
|
|
2000-03-06 02:42:40 +00:00
|
|
|
|
if (f.family() != INHERIT_FAMILY) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
|
|
|
|
if (f.series() != INHERIT_SERIES) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
|
|
|
|
if (f.shape() != INHERIT_SHAPE) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
2000-09-14 17:53:12 +00:00
|
|
|
|
if (f.color() != LColor::inherit && f.color() != LColor::ignore) {
|
2000-03-06 02:42:40 +00:00
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
|
|
|
|
if (f.emph() == ON) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
|
|
|
|
if (f.underbar() == ON) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
|
|
|
|
if (f.noun() == ON) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
env = true; // Size change need not bother about closing env.
|
|
|
|
|
}
|
|
|
|
|
if (f.size() != INHERIT_SIZE) {
|
|
|
|
|
// We only have to close if only size changed
|
|
|
|
|
if (!env) {
|
|
|
|
|
os << '}';
|
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-03-17 10:14:46 +00:00
|
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
|
if (number() == ON && next.number() != ON &&
|
|
|
|
|
language()->lang() == "hebrew") {
|
|
|
|
|
os << "\\endL}";
|
|
|
|
|
count += 6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (language() != base.language() && language() != next.language()) {
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << '}';
|
2000-10-09 12:30:52 +00:00
|
|
|
|
++count;
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-09-18 11:48:11 +00:00
|
|
|
|
LColor_color LyXFont::realColor() const
|
2000-02-10 17:53:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (color() == LColor::none)
|
|
|
|
|
return LColor::foreground;
|
|
|
|
|
return color();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// Convert logical attributes to concrete shape attribute
|
|
|
|
|
LyXFont::FONT_SHAPE LyXFont::realShape() const
|
|
|
|
|
{
|
|
|
|
|
register FONT_SHAPE s = shape();
|
|
|
|
|
|
|
|
|
|
if (emph() == ON) {
|
|
|
|
|
if (s == UP_SHAPE)
|
|
|
|
|
s = ITALIC_SHAPE;
|
|
|
|
|
else
|
|
|
|
|
s = UP_SHAPE;
|
|
|
|
|
}
|
|
|
|
|
if (noun() == ON)
|
|
|
|
|
s = SMALLCAPS_SHAPE;
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-21 16:15:14 +00:00
|
|
|
|
ostream & operator<<(ostream & os, LyXFont::FONT_MISC_STATE fms)
|
|
|
|
|
{
|
|
|
|
|
return os << int(fms);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::ostream & operator<<(std::ostream & os, LyXFont const & font)
|
1999-10-07 18:44:17 +00:00
|
|
|
|
{
|
2003-10-21 16:15:14 +00:00
|
|
|
|
return os << "font:"
|
|
|
|
|
<< " family " << font.bits.family
|
|
|
|
|
<< " series " << font.bits.series
|
|
|
|
|
<< " shape " << font.bits.shape
|
|
|
|
|
<< " size " << font.bits.size
|
|
|
|
|
<< " color " << font.bits.color
|
|
|
|
|
<< " emph " << font.bits.emph
|
|
|
|
|
<< " underbar " << font.bits.underbar
|
|
|
|
|
<< " noun " << font.bits.noun
|
|
|
|
|
<< " number " << font.bits.number
|
|
|
|
|
<< " lang: " << (font.lang ? font.lang->lang() : 0);
|
1999-10-07 18:44:17 +00:00
|
|
|
|
}
|