]> git.lyx.org Git - lyx.git/blob - src/mathed/MathSupport.h
This commit saves the need to check for lyx::use_gui in a number of places.
[lyx.git] / src / mathed / MathSupport.h
1 // -*- C++ -*-
2 /**
3  * \file MathSupport.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author André Pönitz
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef MATH_SUPPORT_H
14 #define MATH_SUPPORT_H
15
16 #include <string>
17
18 class PainterInfo;
19 class LyXFont;
20 class Dimension;
21 class MathArray;
22 class MathAtom;
23 class InsetMath;
24
25
26 void mathed_char_dim(LyXFont const &, unsigned char c, Dimension & dim);
27 int mathed_char_width(LyXFont const &, unsigned char c);
28
29 void mathed_draw_deco(PainterInfo & pi, int x, int y, int w, int h,
30         std::string const & name);
31
32 void mathed_string_dim(LyXFont const & font, std::string const & s, Dimension & dim);
33 int mathed_string_width(LyXFont const &, std::string const & s);
34
35 void drawStrRed(PainterInfo & pi, int x, int y, std::string const & s);
36 void drawStrBlack(PainterInfo & pi, int x, int y, std::string const & s);
37
38 void math_font_max_dim(LyXFont const &, int & asc, int & desc);
39
40 void augmentFont(LyXFont & f, std::string const & cmd);
41
42 bool isFontName(std::string const & name);
43
44 // converts single cell to string
45 std::string asString(MathArray const & ar);
46 // converts single inset to string
47 std::string asString(InsetMath const &);
48 std::string asString(MathAtom const &);
49 // converts string to single cell
50 void asArray(std::string const & str, MathArray & ar);
51
52 #endif