]> git.lyx.org Git - features.git/blobdiff - src/mathed/support.C
write \mathrm{x}\mathrm{y} as \mathrm{xy} again
[features.git] / src / mathed / support.C
index 94e2751a9207e90fd61fb803d04bdb276365d1a1..bf19f55d65b854686ee2710f10b090ce4e2002e4 100644 (file)
@@ -7,17 +7,19 @@
 #include "FontLoader.h"
 #include "font.h"
 #include "math_defs.h"
+#include "math_inset.h"
 #include "math_parser.h"
 #include "Painter.h"
 #include "debug.h"
 
+using std::map;
 using std::endl;
 using std::max;
 
 
 bool isBinaryOp(char c, MathTextCodes type)
 {
-       return type < LM_TC_SYMB && strchr("+-<>=/*", c); 
+       return type < LM_TC_SYMB && strchr("+-<>=/*", c);
 }
 
 
@@ -25,73 +27,32 @@ bool isBinaryOp(char c, MathTextCodes type)
 class Matrix {
 public:
        ///
-       typedef float matriz_data[2][2];
+       Matrix(int, double, double);
        ///
-       Matrix();
-       ///
-       void rotate(int);
-       ///
-       void escalate(float, float);
-       ///
-       void transform(float, float, float &, float &);
+       void transform(double &, double &);
 private:
        ///
-       matriz_data m_;
-       ///
-       void multiply(matriz_data & a);
+       double m_[2][2];
 };
 
-Matrix::Matrix()
-{
-       m_[0][0] = 1;
-       m_[0][1] = 0;
-       m_[1][0] = 0;
-       m_[1][1] = 1;
-}
 
-void Matrix::rotate(int code)
+Matrix::Matrix(int code, double x, double y)
 {
-       matriz_data r;
-       r[0][0] = 1;
-       r[0][1] = 0;
-       r[1][0] = 0;
-       r[1][1] = 1;
-       float const cs = (code & 1) ? 0 : (1 - code);
-       float const sn = (code & 1) ? (2 - code) : 0;
-       r[0][0] = cs;
-       r[0][1] = sn;
-       r[1][0] = -r[0][1];
-       r[1][1] = r[0][0];
-       multiply(r);
+       double const cs = (code & 1) ? 0 : (1 - code);
+       double const sn = (code & 1) ? (2 - code) : 0;
+       m_[0][0] =  cs * x;
+       m_[0][1] =  sn * x;
+       m_[1][0] = -sn * y;
+       m_[1][1] =  cs * y;
 }
 
-void Matrix::escalate(float x, float y)
-{
-       matriz_data s;
-       s[0][0] = x;
-       s[0][1] = 0;
-       s[1][0] = 0;
-       s[1][1] = y;
-       multiply(s);
-}
-
-void Matrix::multiply(matriz_data & a)
-{
-       matriz_data c;
-       c[0][0] = a[0][0] * m_[0][0] + a[0][1] * m_[1][0];
-       c[1][0] = a[1][0] * m_[0][0] + a[1][1] * m_[1][0];
-       c[0][1] = a[0][0] * m_[0][1] + a[0][1] * m_[1][1];
-       c[1][1] = a[1][0] * m_[0][1] + a[1][1] * m_[1][1];
-       m_[0][0] = c[0][0];     
-       m_[0][1] = c[0][1];     
-       m_[1][0] = c[1][0];     
-       m_[1][1] = c[1][1];     
-}
 
-void Matrix::transform(float xp, float yp, float & x, float & y)
+void Matrix::transform(double & x, double & y)
 {
-       x = m_[0][0] * xp + m_[0][1] * yp;
-       y = m_[1][0] * xp + m_[1][1] * yp;
+       double xx = m_[0][0] * x + m_[0][1] * y;
+       double yy = m_[1][0] * x + m_[1][1] * y;
+       x = xx;
+       y = yy;
 }
 
 
@@ -228,11 +189,13 @@ LyXFont const & whichFontBase(MathTextCodes type)
 }
 
 
-LyXFont whichFont(MathTextCodes type, MathStyles size)
+LyXFont whichFont(MathTextCodes type, MathMetricsInfo const & size)
 {
        LyXFont f = whichFontBase(type);
+       // use actual size
+       f.setSize(size.font.size());
 
-       switch (size) {
+       switch (size.style) {
        case LM_ST_DISPLAY:
                if (type == LM_TC_BOLDSYMB || type == LM_TC_CMEX) {
                        f.incSize();
@@ -255,7 +218,7 @@ LyXFont whichFont(MathTextCodes type, MathStyles size)
                break;
 
        default:
-               lyxerr << "Math Error: wrong font size: " << size << endl;
+               lyxerr << "Math Error: wrong font size: " << size.style << endl;
                break;
        }
 
@@ -275,8 +238,7 @@ bool math_font_available(MathTextCodes type)
 {
        if (!font_available_initialized[type]) {
                font_available_initialized[type] = true;
-               font_available[type] = 
-                       fontloader.available(whichFontBase(type));
+               font_available[type] = fontloader.available(whichFontBase(type));
        }
        return font_available[type];
 }
@@ -284,36 +246,36 @@ bool math_font_available(MathTextCodes type)
 
 namespace {
 
-/* 
+/*
  * Internal struct of a drawing: code n x1 y1 ... xn yn, where code is:
  * 0 = end, 1 = line, 2 = polyline, 3 = square line, 4= square polyline
  */
 
 
-float const parenthHigh[] = {
-       2.0, 13.0,
+double const parenthHigh[] = {
+       2, 13,
        0.9840, 0.0014, 0.7143, 0.0323, 0.4603, 0.0772,
        0.2540, 0.1278, 0.1746, 0.1966, 0.0952, 0.3300,
        0.0950, 0.5000, 0.0952, 0.6700, 0.1746, 0.8034,
        0.2540, 0.8722, 0.4603, 0.9228, 0.7143, 0.9677,
        0.9840, 0.9986,
-       0.0 
+       0
 };
 
 
-float const parenth[] = {
-       2.0, 13.0,
+double const parenth[] = {
+       2, 13,
        0.9930, 0.0071, 0.7324, 0.0578, 0.5141, 0.1126,
        0.3380, 0.1714, 0.2183, 0.2333, 0.0634, 0.3621,
        0.0141, 0.5000, 0.0563, 0.6369, 0.2113, 0.7647,
        0.3310, 0.8276, 0.5070, 0.8864, 0.7254, 0.9412,
        0.9930, 0.9919,
-       0.0   
+       0
 };
 
 
-float const brace[] = {
-       2.0, 21.0,
+double const brace[] = {
+       2, 21,
        0.9492, 0.0020, 0.9379, 0.0020, 0.7458, 0.0243,
        0.5819, 0.0527, 0.4859, 0.0892, 0.4463, 0.1278,
        0.4463, 0.3732, 0.4011, 0.4199, 0.2712, 0.4615,
@@ -321,204 +283,203 @@ float const brace[] = {
        0.2712, 0.5385, 0.4011, 0.5801, 0.4463, 0.6268,
        0.4463, 0.8722, 0.4859, 0.9108, 0.5819, 0.9473,
        0.7458, 0.9757, 0.9379, 0.9980, 0.9492, 0.9980,
-       0.0
+       0
 };
 
 
-// Is this correct? (Lgb)
-float const arrow[] = {
+double const arrow[] = {
        4, 7,
        0.0150, 0.7500, 0.2000, 0.6000, 0.3500, 0.3500,
        0.5000, 0.0500, 0.6500, 0.3500, 0.8000, 0.6000,
        0.9500, 0.7500,
        3, 0.5000, 0.1500, 0.5000, 0.9500,
-       0.0 
+       0
 };
 
 
-// Is this correct? (Lgb)
-float const Arrow[] = {
+double const Arrow[] = {
        4, 7,
        0.0150, 0.7500, 0.2000, 0.6000, 0.3500, 0.3500,
        0.5000, 0.0500, 0.6500, 0.3500, 0.8000, 0.6000,
        0.9500, 0.7500,
        3, 0.3500, 0.5000, 0.3500, 0.9500,
        3, 0.6500, 0.5000, 0.6500, 0.9500,
-       0.0
+       0
 };
 
 
-float const udarrow[] = {
+double const udarrow[] = {
        2, 3,
        0.015, 0.25,  0.5, 0.05, 0.95, 0.25,
        2, 3,
-       0.015, 0.75,  0.5, 0.95, 0.95, 0.75,  
+       0.015, 0.75,  0.5, 0.95, 0.95, 0.75,
        1, 0.5, 0.2,  0.5, 0.8,
-       0.0 
+       0
 };
 
 
-float const Udarrow[] = {
+double const Udarrow[] = {
        2, 3,
        0.015, 0.25,  0.5, 0.05, 0.95, 0.25,
        2, 3,
-       0.015, 0.75,  0.5, 0.95, 0.95, 0.75,  
+       0.015, 0.75,  0.5, 0.95, 0.95, 0.75,
        1, 0.35, 0.2, 0.35, 0.8,
        1, 0.65, 0.2, 0.65, 0.8,
-       0.0 
+       0
 };
 
 
-float const brack[] = {
-       2.0, 4,
+double const brack[] = {
+       2, 4,
        0.95, 0.05,  0.05, 0.05,  0.05, 0.95,  0.95, 0.95,
-       0.0
+       0
 };
 
 
-float const corner[] = {
-       2.0, 3,
+double const corner[] = {
+       2, 3,
        0.95, 0.05,  0.05, 0.05,  0.05, 0.95,
-       0.0
+       0
 };
 
 
-float const angle[] = {
-       2.0, 3,
+double const angle[] = {
+       2, 3,
        1, 0,  0.05, 0.5,  1, 1,
-       0.0
+       0
 };
 
 
-float const slash[] = {
-       1, 0.95, 0.05,  0.05, 0.95, 
-       0.0
+double const slash[] = {
+       1, 0.95, 0.05, 0.05, 0.95,
+       0
 };
 
 
-float const hline[] = {
-       1, 0.05, 0.5,  0.95, 0.5, 
-       0.0
+double const hline[] = {
+       1, 0.00, 0.5, 1.0, 0.5,
+       0
 };
 
 
-float const hline2[] = {
-   1, 0.1, 0.5,  0.3, 0.5,
-   1, 0.7, 0.5,  0.9, 0.5,
-   0.0
-}; 
+double const hline2[] = {
+       1, 0.1, 0.5,  0.3, 0.5,
+       1, 0.7, 0.5,  0.9, 0.5,
+       0
+};
 
 
-float const hline3[] = {
-       1, 0.1, 0,  0.15, 0,
+double const hline3[] = {
+       1, 0.1,   0,  0.15,  0,
        1, 0.475, 0,  0.525, 0,
-       1, 0.85, 0,  0.9, 0,  
-       0.0
+       1, 0.85,  0,  0.9,   0,
+       0
 };
 
 
-float const dline3[] = {
-       1, 0.1, 0.1,  0.15, 0.15,
-       1, 0.475, 0.475,  0.525, 0.525,
-       1, 0.85, 0.85,  0.9, 0.9,
-       0.0
-};     
+double const dline3[] = {
+       1, 0.1,   0.1,   0.15,  0.15,
+       1, 0.475, 0.475, 0.525, 0.525,
+       1, 0.85,  0.85,  0.9,   0.9,
+       0
+};
 
 
-float const hlinesmall[] = {
-       1, 0.4, 0.5,  0.6, 0.5, 
-       0.0
+double const hlinesmall[] = {
+       1, 0.4, 0.5, 0.6, 0.5,
+       0
 };
 
 
-float const vert[] = {
-       1, 0.5, 0.05,  0.5, 0.95, 
-       0.0
+double const vert[] = {
+       1, 0.5, 0.05,  0.5, 0.95,
+       0
 };
 
 
-float const  Vert[] = {
-       1, 0.3, 0.05,  0.3, 0.95, 
+double const  Vert[] = {
+       1, 0.3, 0.05,  0.3, 0.95,
        1, 0.7, 0.05,  0.7, 0.95,
-       0.0
+       0
 };
 
 
-float const tilde[] = {
-       2.0, 4,
+double const tilde[] = {
+       2, 4,
        0.05, 0.8,  0.25, 0.2,  0.75, 0.8,  0.95, 0.2,
-       0.0
+       0
 };
 
 
 struct deco_struct {
-       float const * data;
+       double const * data;
        int angle;
 };
 
 struct named_deco_struct {
        char const * name;
-       float const * data;
+       double const * data;
        int angle;
 };
 
-named_deco_struct deco_table[] = {   
+named_deco_struct deco_table[] = {
        // Decorations
-       {"widehat",       angle,      3 },
-       {"widetilde",     tilde,      0 },
-       {"underline",     hline,      0 },
-       {"overline",      hline,      0 },
-       {"underbrace",    brace,      1 },
-       {"overbrace",     brace,      3 },
-       {"overleftarrow", arrow,      1 },
-       {"overightarrow", arrow,      3 },
-                                                         
-       // Delimiters 
-       {"(",            parenth,    0 },
-       {")",            parenth,    2 },
-       {"{",            brace,      0 },
-       {"}",            brace,      2 },
-       {"[",            brack,      0 },
-       {"]",            brack,      2 },
-       {"|",            vert,       0 },
-       {"/",            slash,      0 },
-       {"Vert",         Vert,       0 },
-       {"'",            slash,      1 },
-       {"langle",       angle,      0 },
-       {"lceil",        corner,     0 }, 
-       {"lfloor",       corner,     1 },  
-       {"rangle",       angle,      2 }, 
-       {"rceil",        corner,     3 }, 
-       {"rfloor",       corner,     2 },
-       {"downarrow",    arrow,      2 },
-       {"Downarrow",    Arrow,      2 }, 
-       {"uparrow",      arrow,      0 },
-       {"Uparrow",      Arrow,      0 },
-       {"updownarrow",  udarrow,    0 },
-       {"Updownarrow",  Udarrow,    0 },        
-                                                         
+       {"widehat",        angle,      3 },
+       {"widetilde",      tilde,      0 },
+       {"underline",      hline,      0 },
+       {"overline",       hline,      0 },
+       {"underbrace",     brace,      1 },
+       {"overbrace",      brace,      3 },
+       {"overleftarrow",  arrow,      1 },
+       {"overrightarrow", arrow,      3 },
+       
+       // Delimiters
+       {"(",              parenth,    0 },
+       {")",              parenth,    2 },
+       {"{",              brace,      0 },
+       {"}",              brace,      2 },
+       {"[",              brack,      0 },
+       {"]",              brack,      2 },
+       {"|",              vert,       0 },
+       {"/",              slash,      0 },
+       {"Vert",           Vert,       0 },
+       {"'",              slash,      1 },
+       {"backslash",      slash,      1 },
+       {"langle",         angle,      0 },
+       {"lceil",          corner,     0 },
+       {"lfloor",         corner,     1 },
+       {"rangle",         angle,      2 },
+       {"rceil",          corner,     3 },
+       {"rfloor",         corner,     2 },
+       {"downarrow",      arrow,      2 },
+       {"Downarrow",      Arrow,      2 },
+       {"uparrow",        arrow,      0 },
+       {"Uparrow",        Arrow,      0 },
+       {"updownarrow",    udarrow,    0 },
+       {"Updownarrow",    Udarrow,    0 },     
+       
        // Accents
-       {"ddot",         hline2,     0 },
-       {"hat",          angle,      3 },
-       {"grave",        slash,      1 },
-       {"acute",        slash,      0 },
-       {"tilde",        tilde,      0 },
-       {"bar",          hline,      0 },
-       {"dot",          hlinesmall, 0 },
-       {"check",        angle,      1 },
-       {"breve",        parenth,    1 },
-       {"vec",          arrow,      3 },
-       {"not",          slash,      0 },  
-                                                         
+       {"ddot",           hline2,     0 },
+       {"hat",            angle,      3 },
+       {"grave",          slash,      1 },
+       {"acute",          slash,      0 },
+       {"tilde",          tilde,      0 },
+       {"bar",            hline,      0 },
+       {"dot",            hlinesmall, 0 },
+       {"check",          angle,      1 },
+       {"breve",          parenth,    1 },
+       {"vec",            arrow,      3 },
+       {"not",            slash,      0 },
+       
        // Dots
-       {"ldots",        hline3,     0 }, 
-       {"cdots",        hline3,     0 },
-       {"vdots",        hline3,     1 },
-       {"ddots",        dline3,     0 }
+       {"ldots",          hline3,     0 },
+       {"cdots",          hline3,     0 },
+       {"vdots",          hline3,     1 },
+       {"ddots",          dline3,     0 }
 };
 
 
-std::map<string, deco_struct> deco_list;
+map<string, deco_struct> deco_list;
 
 // sort the table on startup
 struct init_deco_table {
@@ -539,15 +500,15 @@ static init_deco_table dummy;
 deco_struct const * search_deco(string const & name)
 {
        map<string, deco_struct>::const_iterator p = deco_list.find(name);
-       return (p == deco_list.end()) ? 0 : &(p->second); 
+       return (p == deco_list.end()) ? 0 : &(p->second);
 }
 
 
 } // namespace anon
 
 
-void mathed_char_dim(MathTextCodes type, MathStyles size, unsigned char c,
-       int & asc, int & des, int & wid)
+void mathed_char_dim(MathTextCodes type, MathMetricsInfo const & size,
+       unsigned char c, int & asc, int & des, int & wid)
 {
        LyXFont const font = whichFont(type, size);
        des = lyxfont::descent(c, font);
@@ -556,8 +517,8 @@ void mathed_char_dim(MathTextCodes type, MathStyles size, unsigned char c,
 }
 
 
-int mathed_char_height(MathTextCodes type, MathStyles size, unsigned char c,
-       int & asc, int & des)
+int mathed_char_height(MathTextCodes type, MathMetricsInfo const & size,
+       unsigned char c, int & asc, int & des)
 {
        LyXFont const font = whichFont(type, size);
        des = lyxfont::descent(c, font);
@@ -566,7 +527,8 @@ int mathed_char_height(MathTextCodes type, MathStyles size, unsigned char c,
 }
 
 
-int mathed_char_height(MathTextCodes type, MathStyles size, unsigned char c)
+int mathed_char_height(MathTextCodes type, MathMetricsInfo const & size,
+       unsigned char c)
 {
        int asc;
        int des;
@@ -574,42 +536,43 @@ int mathed_char_height(MathTextCodes type, MathStyles size, unsigned char c)
 }
 
 
-int mathed_char_ascent(MathTextCodes type, MathStyles size, unsigned char c)
+int mathed_char_ascent(MathTextCodes type, MathMetricsInfo const & size,
+       unsigned char c)
 {
        LyXFont const font = whichFont(type, size);
        return lyxfont::ascent(c, font);
 }
 
 
-int mathed_char_descent(MathTextCodes type, MathStyles size, unsigned char c)
+int mathed_char_descent(MathTextCodes type, MathMetricsInfo const & size,
+       unsigned char c)
 {
        LyXFont const font = whichFont(type, size);
        return lyxfont::descent(c, font);
 }
 
 
-int mathed_char_width(MathTextCodes type, MathStyles size, unsigned char c)
+int mathed_char_width(MathTextCodes type, MathMetricsInfo const & size,
+       unsigned char c)
 {
        LyXFont const font = whichFont(type, size);
-       LyXFont const f1 = whichFont(LM_TC_TEXTRM, size);
-#warning why f1 is used ?
        if (isBinaryOp(c, type))
-               return lyxfont::width(c, font) + 2 * lyxfont::width(' ', f1);
+               return lyxfont::width(c, font) + 2 * lyxfont::width(' ', font);
        else
                return lyxfont::width(c, font);
 }
 
 
-void mathed_string_dim(MathTextCodes type, MathStyles size, string const & s,
-                        int & asc, int & des, int & wid)
+void mathed_string_dim(MathTextCodes type, MathMetricsInfo const & size,
+       string const & s, int & asc, int & des, int & wid)
 {
        mathed_string_height(type, size, s, asc, des);
        wid = mathed_string_width(type, size, s);
 }
 
 
-int mathed_string_height(MathTextCodes type, MathStyles size, string const & s,
-                        int & asc, int & des)
+int mathed_string_height(MathTextCodes type, MathMetricsInfo const & size,
+       string const & s, int & asc, int & des)
 {
        LyXFont const font = whichFont(type, size);
        asc = des = 0;
@@ -621,19 +584,39 @@ int mathed_string_height(MathTextCodes type, MathStyles size, string const & s,
 }
 
 
-int mathed_string_width(MathTextCodes type, MathStyles size, string const & s)
+int mathed_string_width(MathTextCodes type, MathMetricsInfo const & size,
+       string const & s)
 {
        return lyxfont::width(s, whichFont(type, size));
 }
 
 
+int mathed_string_ascent(MathTextCodes type, MathMetricsInfo const & size,
+       string const & s)
+{
+       LyXFont const font = whichFont(type, size);
+       int asc = 0;
+       for (string::const_iterator it = s.begin(); it != s.end(); ++it)
+               asc = max(asc, lyxfont::ascent(*it, font));
+       return asc;
+}
+
+
+int mathed_string_descent(MathTextCodes type, MathMetricsInfo const & size,
+       string const & s)
+{
+       LyXFont const font = whichFont(type, size);
+       int des = 0;
+       for (string::const_iterator it = s.begin(); it != s.end(); ++it)
+               des = max(des, lyxfont::descent(*it, font));
+       return des;
+}
+
+
+
 void mathed_draw_deco(Painter & pain, int x, int y, int w, int h,
        const string & name)
 {
-       Matrix mt;
-       Matrix sqmt;
-       int i = 0;
-
        if (name == ".") {
                pain.line(x + w/2, y, x + w/2, y + h,
                          LColor::mathcursor, Painter::line_onoffdash);
@@ -643,89 +626,72 @@ void mathed_draw_deco(Painter & pain, int x, int y, int w, int h,
        deco_struct const * mds = search_deco(name);
        if (!mds) {
                lyxerr << "Deco was not found. Programming error?\n";
-               lyxerr << "name: '" << name << "\n";
+               lyxerr << "name: '" << name << "'\n";
                return;
        }
        
+       int const n = (w < h) ? w : h;
        int const r = mds->angle;
-       float const * d = mds->data;
+       double const * d = mds->data;
        
        if (h > 70 && (name == "(" || name == ")"))
                d = parenthHigh;
        
-       mt.rotate(r);
-       mt.escalate(w, h);
-       
-       int const n = (w < h) ? w : h;
-
-       sqmt.rotate(r);
-       sqmt.escalate(n, n);
+       Matrix mt(r, w, h);
+       Matrix sqmt(r, n, n);
 
        if (r > 0 && r < 3)
                y += h;
 
        if (r >= 2)
-               x += w;   
-
-       int code;
-       do {
-               float xx;
-               float yy;
-               float x2;
-               float y2;
-
-               code = int(d[i++]);
-               switch (code) {
-               case 0: break;
-               case 1: 
-               case 3:
-               {
-                       xx = d[i++]; yy = d[i++];
-                       x2 = d[i++]; y2 = d[i++];
-                       if (code == 3) 
-                               sqmt.transform(xx, yy, xx, yy);
+               x += w;
+
+       for (int i = 0; d[i]; ) {
+               int code = int(d[i++]);
+               if (code & 1) {  // code == 1 || code == 3
+                       double xx = d[i++];
+                       double yy = d[i++];
+                       double x2 = d[i++];
+                       double y2 = d[i++];
+                       if (code == 3)
+                               sqmt.transform(xx, yy);
                        else
-                               mt.transform(xx, yy, xx, yy);
-                       mt.transform(x2, y2, x2, y2);
-                       pain.line(x + int(xx), y + int(yy),
-                                 x + int(x2), y + int(y2),
-                                 LColor::mathline);
-                       break;
-               }        
-               case 2: 
-               case 4:
-               {
+                               mt.transform(xx, yy);
+                       mt.transform(x2, y2);
+                       pain.line(x + int(xx), y + int(yy), x + int(x2), y + int(y2),
+                                       LColor::mathline);
+               }       else {
                        int xp[32];
                        int yp[32];
                        int const n = int(d[i++]);
                        for (int j = 0; j < n; ++j) {
-                               xx = d[i++]; yy = d[i++];
+                               double xx = d[i++];
+                               double yy = d[i++];
 //          lyxerr << " " << xx << " " << yy << " ";
-                               if (code == 4) 
-                                       sqmt.transform(xx, yy, xx, yy);
+                               if (code == 4)
+                                       sqmt.transform(xx, yy);
                                else
-                                       mt.transform(xx, yy, xx, yy);
+                                       mt.transform(xx, yy);
                                xp[j] = x + int(xx);
                                yp[j] = y + int(yy);
                                //  lyxerr << "P[" << j " " << xx << " " << yy << " " << x << " " << y << "]";
                        }
                        pain.lines(xp, yp, n, LColor::mathline);
                }
-               }
-       } while (code);
+       }
 }
 
 
 // In the future maybe we use a better fonts renderer
-void drawStr(Painter & pain, MathTextCodes type, MathStyles siz,
+void drawStr(Painter & pain, MathTextCodes type, MathMetricsInfo const & siz,
        int x, int y, string const & s)
 {
        pain.text(x, y, s, whichFont(type, siz));
 }
 
 
-void drawChar
-       (Painter & pain, MathTextCodes type, MathStyles siz, int x, int y, char c)
+void drawChar(Painter & pain, MathTextCodes type, MathMetricsInfo const & siz,
+       int x, int y, char c)
 {
        string s;
        if (isBinaryOp(c, type))
@@ -738,30 +704,29 @@ void drawChar
 
 
 // decrease math size for super- and subscripts
-MathStyles smallerStyleScript(MathStyles st)
+void smallerStyleScript(MathMetricsInfo & st)
 {
-       switch (st) {
+       switch (st.style) {
                case LM_ST_DISPLAY:
-               case LM_ST_TEXT:    st = LM_ST_SCRIPT; break;
-               default:            st = LM_ST_SCRIPTSCRIPT;
+               case LM_ST_TEXT:    st.style = LM_ST_SCRIPT; break;
+               default:            st.style = LM_ST_SCRIPTSCRIPT;
        }
-       return st;
 }
 
 
 // decrease math size for fractions
-MathStyles smallerStyleFrac(MathStyles st)
+void smallerStyleFrac(MathMetricsInfo & st)
 {
-       switch (st) {
-               case LM_ST_DISPLAY: st = LM_ST_TEXT; break;
-               case LM_ST_TEXT:    st = LM_ST_SCRIPT; break;
-               default:            st = LM_ST_SCRIPTSCRIPT;
+       switch (st.style) {
+               case LM_ST_DISPLAY: st.style = LM_ST_TEXT; break;
+               case LM_ST_TEXT:    st.style = LM_ST_SCRIPT; break;
+               default:            st.style = LM_ST_SCRIPTSCRIPT;
        }
-       return st;
 }
 
 
-void math_font_max_dim(MathTextCodes code, MathStyles siz, int & asc, int & des)
+void math_font_max_dim(MathTextCodes code, MathMetricsInfo const & siz,
+       int & asc, int & des)
 {
        LyXFont font = whichFont(code, siz);
        asc = lyxfont::maxAscent(font);
@@ -772,3 +737,22 @@ void math_font_max_dim(MathTextCodes code, MathStyles siz, int & asc, int & des)
 char const * latex_mathspace[] = {
        "!", ",", ":", ";", "quad", "qquad"
 };
+
+
+char const * math_font_name(MathTextCodes code)
+{
+       static char const * theFontNames[] = {
+               "mathrm",
+               "mathcal",
+               "mathbf",
+               "mathbb",
+               "mathsf",
+               "mathtt",
+               "mathit",
+               "textrm"
+       };
+
+       if (code >= LM_TC_RM && code <= LM_TC_TEXTRM) 
+               return theFontNames[code - LM_TC_RM];
+       return 0;
+}