2012-08-16 11:23:39 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file LaTeXFonts.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Jürgen Spitzmüller
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LATEXFONTS_H
|
|
|
|
#define LATEXFONTS_H
|
|
|
|
|
|
|
|
#include "support/docstring.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
class Lexer;
|
|
|
|
|
|
|
|
/// LaTeX Font definition
|
|
|
|
class LaTeXFont {
|
|
|
|
public:
|
|
|
|
/// TeX font
|
2015-03-04 22:21:34 +00:00
|
|
|
LaTeXFont() : osfdefault_(false), switchdefault_(false) {}
|
2012-08-16 11:23:39 +00:00
|
|
|
/// The font name
|
|
|
|
docstring const & name() { return name_; }
|
|
|
|
/// The name to appear in the document dialog
|
|
|
|
docstring const & guiname() { return guiname_; }
|
|
|
|
/// Font family (rm, sf, tt)
|
|
|
|
docstring const & family() { return family_; }
|
|
|
|
/// The package that provides this font
|
|
|
|
docstring const & package() { return package_; }
|
2012-09-22 08:59:53 +00:00
|
|
|
/// Alternative font if package() is not available
|
|
|
|
std::vector<docstring> const & altfonts() { return altfonts_; }
|
|
|
|
/// A font that provides all families
|
|
|
|
docstring const & completefont() { return completefont_; }
|
|
|
|
/// A font specifically needed for OT1 font encoding
|
|
|
|
docstring const & ot1font() { return ot1font_; }
|
|
|
|
/// A font that provides Old Style Figures for this type face
|
|
|
|
docstring const & osffont() { return osffont_; }
|
2012-08-18 11:10:34 +00:00
|
|
|
/// A package option needed to load this font
|
|
|
|
docstring const & packageoption() { return packageoption_; }
|
2012-08-16 11:23:39 +00:00
|
|
|
/// A package option for Old Style Figures
|
|
|
|
docstring const & osfoption() { return osfoption_; }
|
|
|
|
/// A package option for true SmallCaps
|
|
|
|
docstring const & scoption() { return scoption_; }
|
|
|
|
/// A package option for both Old Style Figures and SmallCaps
|
|
|
|
docstring const & osfscoption() { return osfscoption_; }
|
|
|
|
/// A package option for font scaling
|
|
|
|
docstring const & scaleoption() { return scaleoption_; }
|
|
|
|
/// Alternative requirement to test for
|
|
|
|
docstring const & requires() { return requires_; }
|
2012-09-19 13:46:19 +00:00
|
|
|
/// Does this font provide a given \p feature
|
2012-09-22 15:44:00 +00:00
|
|
|
bool provides(std::string const & name, bool ot1,
|
|
|
|
bool complete, bool nomath);
|
2012-08-16 11:23:39 +00:00
|
|
|
/// Issue the familydefault switch
|
|
|
|
bool switchdefault() const { return switchdefault_; }
|
2012-09-19 15:46:55 +00:00
|
|
|
/// Does the font provide Old Style Figures as default?
|
|
|
|
bool osfDefault() const { return osfdefault_; }
|
2012-08-16 11:23:39 +00:00
|
|
|
/// Is this font available?
|
2012-09-22 15:44:00 +00:00
|
|
|
bool available(bool ot1, bool nomath);
|
|
|
|
/// Does this font provide an alternative without math?
|
|
|
|
bool providesNoMath(bool ot1, bool complete);
|
2012-08-16 11:23:39 +00:00
|
|
|
/// Does this font provide Old Style Figures?
|
2012-09-22 15:44:00 +00:00
|
|
|
bool providesOSF(bool ot1, bool complete, bool nomath);
|
2012-08-16 11:23:39 +00:00
|
|
|
/// Does this font provide optional true SmallCaps?
|
2012-09-22 15:44:00 +00:00
|
|
|
bool providesSC(bool ot1, bool complete, bool nomath);
|
2013-02-11 14:02:24 +00:00
|
|
|
/** does this font provide OSF and Small Caps only via
|
|
|
|
* a single, undifferentiated expert option?
|
|
|
|
*/
|
|
|
|
bool hasMonolithicExpertSet(bool ot1, bool complete, bool nomath);
|
2012-08-16 11:23:39 +00:00
|
|
|
/// Does this font provide scaling?
|
2012-09-22 15:44:00 +00:00
|
|
|
bool providesScale(bool ot1, bool complete, bool nomath);
|
2012-08-18 09:57:16 +00:00
|
|
|
/// Return the LaTeX Code
|
|
|
|
std::string const getLaTeXCode(bool dryrun, bool ot1, bool complete,
|
2012-09-22 15:44:00 +00:00
|
|
|
bool sc, bool osf, bool nomath,
|
2012-08-18 09:57:16 +00:00
|
|
|
int const & scale = 100);
|
2012-09-22 08:59:53 +00:00
|
|
|
/// Return the actually used font
|
2012-09-22 15:44:00 +00:00
|
|
|
docstring const getUsedFont(bool ot1, bool complete, bool nomath);
|
2013-09-01 08:21:21 +00:00
|
|
|
/// Return the actually used package
|
|
|
|
docstring const getUsedPackage(bool ot1, bool complete, bool nomath);
|
2012-08-16 11:23:39 +00:00
|
|
|
///
|
|
|
|
bool read(Lexer & lex);
|
|
|
|
///
|
|
|
|
bool readFont(Lexer & lex);
|
|
|
|
private:
|
2012-08-18 09:57:16 +00:00
|
|
|
/// Return the preferred available package
|
2012-09-22 08:59:53 +00:00
|
|
|
std::string const getAvailablePackage(bool dryrun);
|
2012-08-18 09:57:16 +00:00
|
|
|
/// Return the package options
|
|
|
|
std::string const getPackageOptions(bool ot1,
|
2012-09-22 08:59:53 +00:00
|
|
|
bool complete,
|
2012-08-18 09:57:16 +00:00
|
|
|
bool sc,
|
|
|
|
bool osf,
|
2012-09-22 15:44:00 +00:00
|
|
|
int scale,
|
|
|
|
bool nomath);
|
2012-09-22 08:59:53 +00:00
|
|
|
/// Return an alternative font
|
|
|
|
LaTeXFont altFont(docstring const & name);
|
2012-08-16 11:23:39 +00:00
|
|
|
///
|
|
|
|
docstring name_;
|
|
|
|
///
|
|
|
|
docstring guiname_;
|
|
|
|
///
|
|
|
|
docstring family_;
|
|
|
|
///
|
|
|
|
docstring package_;
|
|
|
|
///
|
2012-09-22 08:59:53 +00:00
|
|
|
std::vector<docstring> altfonts_;
|
2012-08-16 11:23:39 +00:00
|
|
|
///
|
2012-09-22 08:59:53 +00:00
|
|
|
docstring completefont_;
|
2012-08-16 11:23:39 +00:00
|
|
|
///
|
2012-09-22 15:44:00 +00:00
|
|
|
docstring nomathfont_;
|
|
|
|
///
|
2012-09-22 08:59:53 +00:00
|
|
|
docstring ot1font_;
|
2012-08-16 11:23:39 +00:00
|
|
|
///
|
2012-09-22 08:59:53 +00:00
|
|
|
docstring osffont_;
|
2012-08-16 11:23:39 +00:00
|
|
|
///
|
2012-08-18 11:10:34 +00:00
|
|
|
docstring packageoption_;
|
|
|
|
///
|
2012-08-16 11:23:39 +00:00
|
|
|
docstring osfoption_;
|
|
|
|
///
|
|
|
|
docstring scoption_;
|
|
|
|
///
|
|
|
|
docstring osfscoption_;
|
|
|
|
///
|
|
|
|
docstring scaleoption_;
|
|
|
|
///
|
2012-09-19 13:46:19 +00:00
|
|
|
std::vector<std::string> provides_;
|
|
|
|
///
|
2012-08-16 11:23:39 +00:00
|
|
|
docstring requires_;
|
|
|
|
///
|
2013-02-09 10:00:42 +00:00
|
|
|
std::string preamble_;
|
|
|
|
///
|
2012-09-19 15:46:55 +00:00
|
|
|
bool osfdefault_;
|
|
|
|
///
|
2012-08-16 11:23:39 +00:00
|
|
|
bool switchdefault_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** The list of available LaTeX fonts
|
|
|
|
*/
|
|
|
|
class LaTeXFonts {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
typedef std::map<docstring, LaTeXFont> TexFontMap;
|
|
|
|
/// Get all LaTeXFonts
|
|
|
|
TexFontMap getLaTeXFonts();
|
|
|
|
/// Get a specific LaTeXFont \p name
|
|
|
|
LaTeXFont getLaTeXFont(docstring const & name);
|
2012-09-22 08:59:53 +00:00
|
|
|
/// Get a specific AltFont \p name
|
|
|
|
LaTeXFont getAltFont(docstring const & name);
|
2012-08-16 11:23:39 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
void readLaTeXFonts();
|
|
|
|
///
|
|
|
|
TexFontMap texfontmap_;
|
2012-09-22 08:59:53 +00:00
|
|
|
///
|
|
|
|
TexFontMap texaltfontmap_;
|
2012-08-16 11:23:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Implementation is in LyX.cpp
|
|
|
|
extern LaTeXFonts & theLaTeXFonts();
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif
|