X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxfont.h;h=5d75c20f2eac7891981d12779e99584716bac2fc;hb=34d28f9daae536db06d6cf1a9dcf62dc0f5aa432;hp=906115a887fba693f354de8eb3d49d83e2d2b2bd;hpb=e59e72d1d10e6184fafa1bd4daedaf5512a1e23b;p=lyx.git diff --git a/src/lyxfont.h b/src/lyxfont.h index 906115a887..5d75c20f2e 100644 --- a/src/lyxfont.h +++ b/src/lyxfont.h @@ -5,7 +5,7 @@ * LyX, The Document Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1995-2000 The LyX Team. + * Copyright 1995-2001 The LyX Team. * * ====================================================== */ @@ -25,6 +25,7 @@ class LyXLex; class BufferParams; class Language; + /// class LyXFont { public: @@ -44,9 +45,25 @@ public: /// SYMBOL_FAMILY, /// + CMR_FAMILY, + /// + CMSY_FAMILY, + /// + CMM_FAMILY, + /// + CMEX_FAMILY, + /// + MSA_FAMILY, + /// + MSB_FAMILY, + /// + EUFRAK_FAMILY, + /// INHERIT_FAMILY, /// - IGNORE_FAMILY + IGNORE_FAMILY, + /// + NUM_FAMILIES = INHERIT_FAMILY }; /// @@ -185,9 +202,6 @@ public: /// FONT_MISC_STATE noun() const; - /// - FONT_MISC_STATE latex() const; - /// FONT_MISC_STATE number() const; @@ -202,6 +216,9 @@ public: /// bool isVisibleRightToLeft() const; + + /// + bool isSymbolFont() const; /// LyXFont & setFamily(LyXFont::FONT_FAMILY f); @@ -218,8 +235,6 @@ public: /// LyXFont & setNoun(LyXFont::FONT_MISC_STATE n); /// - LyXFont & setLatex(LyXFont::FONT_MISC_STATE l); - /// LyXFont & setNumber(LyXFont::FONT_MISC_STATE n); /// LyXFont & setColor(LColor::color c); @@ -256,7 +271,7 @@ public: a INHERIT_FAMILY was asked for. This is necessary for the toggle-user-defined-style button on the toolbar. */ - void update(LyXFont const & newfont, + void update(LyXFont const & newfont, Language const * default_lang, bool toggleall = false); @@ -265,8 +280,11 @@ public: void reduce(LyXFont const & tmplt); /// Realize font from a template (INHERIT are realized) +#ifndef INHERIT_LANGUAGE LyXFont & realize(LyXFont const & tmplt); - +#else + LyXFont & realize(LyXFont const & tmplt, Language const * language); +#endif /// Is a given font fully resolved? bool resolved() const; @@ -274,7 +292,12 @@ public: LyXFont & lyxRead(LyXLex &); /// Writes the changes from this font to orgfont in .lyx format in file +#ifndef INHERIT_LANGUAGE void lyxWriteChanges(LyXFont const & orgfont, std::ostream &) const; +#else + void lyxWriteChanges(LyXFont const & orgfont, Language const * doclang, + std::ostream &) const; +#endif /** Writes the head of the LaTeX needed to change to this font. Writes to string, the head of the LaTeX needed to change @@ -301,9 +324,6 @@ public: friend bool operator==(LyXFont const & font1, LyXFont const & font2); - /// compares two fonts, ignoring the setting of the Latex part. - bool equalExceptLatex(LyXFont const &) const; - /// Converts logical attributes to concrete shape attribute LyXFont::FONT_SHAPE realShape() const; private: @@ -330,8 +350,6 @@ private: /// FONT_MISC_STATE noun; /// - FONT_MISC_STATE latex; - /// FONT_MISC_STATE number; }; @@ -363,6 +381,27 @@ LyXFont::FONT_SHAPE LyXFont::shape() const } +inline +LyXFont::FONT_FAMILY LyXFont::family() const +{ + return bits.family; +} + + +inline +LyXFont::FONT_SERIES LyXFont::series() const +{ + return bits.series; +} + + +inline +LyXFont::FONT_SIZE LyXFont::size() const +{ + return bits.size; +} + + inline LyXFont::FONT_MISC_STATE LyXFont::emph() const { @@ -370,6 +409,29 @@ LyXFont::FONT_MISC_STATE LyXFont::emph() const } +inline +LyXFont::FONT_MISC_STATE LyXFont::noun() const +{ + return bits.noun; +} + + +inline +bool LyXFont::isSymbolFont() const +{ + switch(family()) { + case LyXFont::SYMBOL_FAMILY: + case LyXFont::CMSY_FAMILY: + case LyXFont::CMM_FAMILY: + case LyXFont::CMEX_FAMILY: + case LyXFont::MSA_FAMILY: + case LyXFont::MSB_FAMILY: + return true; + default: + return false; + } +} + /// std::ostream & operator<<(std::ostream &, LyXFont::FONT_MISC_STATE);