lyx_mirror/src/mathed/math_support.h
Lars Gullik Bjønnes 99d1627a47 dont use pragma impementation and interface anymore
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-13 16:53:15 +00:00

40 lines
1.2 KiB
C++

// -*- C++ -*-
#ifndef MATH_SUPPORT_H
#define MATH_SUPPORT_H
#include "LString.h"
class MathPainterInfo;
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(MathPainterInfo & pi, int x, int y, int w, int h,
string const & name);
void mathed_draw_framebox(MathPainterInfo & 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(MathPainterInfo & pi,
LyXFont const &, int x, int y, string const & s);
void drawStrRed(MathPainterInfo & pi, int x, int y, string const & s);
void drawStrBlack(MathPainterInfo & pi, int x, int y, string const & s);
void drawChar(MathPainterInfo & 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