]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_support.h
fix #1073
[lyx.git] / src / mathed / math_support.h
index 2b219a39a55eee2cda3612dd830deb3aab717a22..722f9833284f7bb4ea7aaec86b9a10c28ada0b1d 100644 (file)
@@ -3,58 +3,37 @@
 #ifndef MATH_SUPPORT_H
 #define MATH_SUPPORT_H
 
-#include "math_defs.h"
-#include "LString.h"
 
-class Painter;
-class latexkeys;
-class MathMetricsInfo;
+#include "LString.h"
 
-extern char const * latex_mathspace[];
+class PainterInfo;
+class MathInset;
+class LyXFont;
+class Dimension;
 
-int mathed_char_height(MathTextCodes type, MathMetricsInfo const & size,
-       unsigned char c, int & asc, int & des);
-void mathed_char_dim(MathTextCodes type, MathMetricsInfo const & size,
-       unsigned char c, int & asc, int & des, int & wid);
-int mathed_char_width(MathTextCodes type, MathMetricsInfo const & size,
-       unsigned char c);
-int mathed_char_ascent(MathTextCodes type, MathMetricsInfo const & size,
-       unsigned char c);
-int mathed_char_descent(MathTextCodes type, MathMetricsInfo const & size,
-       unsigned char c);
+void mathed_char_dim(LyXFont const &, unsigned char c, Dimension & dim);
+int mathed_char_width(LyXFont const &, unsigned char c);
+int mathed_char_ascent(LyXFont const &, unsigned char c);
+int mathed_char_descent(LyXFont const &, unsigned char c);
 
-void mathed_draw_deco(Painter & pain, int x, int y, int w, int h,
+void mathed_draw_deco(PainterInfo & pi, int x, int y, int w, int h,
        string const & name);
 
-void mathed_string_dim(MathTextCodes type, MathMetricsInfo const & size,
-       string const & s, int & asc, int & des, int & wid);
-int mathed_string_height(MathTextCodes type, MathMetricsInfo const & size,
-       string const & s, int & asc, int & des);
-
-int mathed_string_width(MathTextCodes type, MathMetricsInfo const & size,
-       string const & s);
-int mathed_string_ascent(MathTextCodes type, MathMetricsInfo const & size,
-       string const & s);
-int mathed_string_descent(MathTextCodes type, MathMetricsInfo const & size,
-       string const & s);
-
-void drawStr(Painter & pain, MathTextCodes type, MathMetricsInfo const & siz,
-       int x, int y, string const & s);
-void drawChar(Painter & pain, MathTextCodes type, MathMetricsInfo const & siz,
-       int x, int y, char c);
-
-void math_font_max_dim(MathTextCodes code, MathMetricsInfo const & siz,
-       int & asc, int & desc);
+void mathed_draw_framebox(PainterInfo & pi, int x, int y, MathInset const *);
 
-bool math_font_available(MathTextCodes code);
+void mathed_string_dim(LyXFont const & font, string const & s, Dimension & dim);
+int mathed_string_width(LyXFont const &, string const & s);
 
-// decrease math size for super- and subscripts
-void smallerStyleScript(MathMetricsInfo &);
+void drawStr(PainterInfo & pi,
+       LyXFont const &, int x, int y, string const & s);
+void drawStrRed(PainterInfo & pi, int x, int y, string const & s);
+void drawStrBlack(PainterInfo & pi, int x, int y, string const & s);
+void drawChar(PainterInfo & pi, LyXFont const & font, int x, int y, char c);
 
-// decrease math size for fractions
-void smallerStyleFrac(MathMetricsInfo & st);
+void math_font_max_dim(LyXFont const &, int & asc, int & desc);
 
-char const * math_font_name(MathTextCodes type);
+void augmentFont(LyXFont & f, string const & cmd);
 
+bool isFontName(string const & name);
 
 #endif