]> git.lyx.org Git - lyx.git/blob - src/mathed/MathSupport.h
Improve support for on screen length calculation
[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 "MathParser_flags.h"
17 #include "support/strfwd.h"
18
19 namespace lyx {
20
21 class MetricsInfo;
22 class PainterInfo;
23 class FontInfo;
24 class Dimension;
25 class MathData;
26 class MathAtom;
27 class InsetMath;
28
29
30 int mathed_font_em(FontInfo const &);
31
32 int mathed_char_width(FontInfo const &, char_type c);
33
34 int mathed_char_kerning(FontInfo const &, char_type c);
35
36 void mathed_draw_deco(PainterInfo & pi, int x, int y, int w, int h,
37         docstring const & name);
38
39 void mathed_string_dim(FontInfo const & font,
40                        docstring const & s,
41                        Dimension & dim);
42
43 int mathed_string_width(FontInfo const &, docstring const & s);
44
45 void metricsStrRedBlack(MetricsInfo & mi, Dimension & dim, docstring const & s);
46
47 void drawStrRed(PainterInfo & pi, int x, int y, docstring const & s);
48 void drawStrBlack(PainterInfo & pi, int x, int y, docstring const & s);
49
50 void math_font_max_dim(FontInfo const &, int & asc, int & desc);
51
52 void augmentFont(FontInfo & f, docstring const & cmd);
53
54 bool isFontName(docstring const & name);
55
56 bool isMathFont(docstring const & name);
57
58 bool isTextFont(docstring const & name);
59
60 bool isAlphaSymbol(MathAtom const & at);
61
62 // converts single cell to string
63 docstring asString(MathData const & ar);
64 // converts single inset to string
65 docstring asString(InsetMath const &);
66 docstring asString(MathAtom const &);
67 // converts string to single cell
68 void asArray(docstring const &, MathData &, Parse::flags f = Parse::NORMAL);
69
70 } // namespace lyx
71
72 #endif