lyx_mirror/src/mathed/math_support.h
André Pönitz 1829cdef6a promote MathMetricsInfo to MetricsInfo, change mathed accordingly
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
2003-03-21 14:20:48 +00:00

40 lines
1.1 KiB
C++

// -*- C++ -*-
#ifndef MATH_SUPPORT_H
#define MATH_SUPPORT_H
#include "LString.h"
class PainterInfo;
class MathInset;
class LyXFont;
class Dimension;
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(PainterInfo & pi, int x, int y, int w, int h,
string const & name);
void mathed_draw_framebox(PainterInfo & pi, int x, int y, MathInset const *);
void mathed_string_dim(LyXFont const & font, string const & s, Dimension & dim);
int mathed_string_width(LyXFont const &, string const & s);
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);
void math_font_max_dim(LyXFont const &, int & asc, int & desc);
void augmentFont(LyXFont & f, string const & cmd);
bool isFontName(string const & name);
#endif