]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathFrac.h
Better fix for bug #8679
[lyx.git] / src / mathed / InsetMathFrac.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathFrac.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  * \author Uwe Stöhr
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef MATH_FRAC_H
15 #define MATH_FRAC_H
16
17 #include "InsetMathNest.h"
18
19
20 namespace lyx {
21
22
23 class InsetMathFracBase : public InsetMathNest {
24 public:
25         ///
26         InsetMathFracBase(Buffer * buf, idx_type ncells = 2);
27         ///
28         bool idxUpDown(Cursor &, bool up) const;
29         ///
30         bool idxBackward(Cursor &) const { return false; }
31         ///
32         bool idxForward(Cursor &) const { return false; }
33 };
34
35
36
37 /// Fraction like objects (frac, binom)
38 class InsetMathFrac : public InsetMathFracBase {
39 public:
40         ///
41         enum Kind {
42                 FRAC,
43                 CFRAC,
44                 CFRACLEFT,
45                 CFRACRIGHT,
46                 DFRAC,
47                 TFRAC,
48                 OVER,
49                 ATOP,
50                 NICEFRAC,
51                 UNITFRAC,
52                 UNIT
53         };
54         ///
55         explicit InsetMathFrac(Buffer * buf, Kind kind = FRAC, idx_type ncells = 2);
56         ///
57         bool idxForward(Cursor &) const;
58         ///
59         bool idxBackward(Cursor &) const;
60         ///
61         void metrics(MetricsInfo & mi, Dimension & dim) const;
62         ///
63         void draw(PainterInfo &, int x, int y) const;
64         ///
65         void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
66         ///
67         void drawT(TextPainter &, int x, int y) const;
68         /// identifies FracInsets
69         InsetMathFrac * asFracInset();
70         /// identifies FracInsets
71         InsetMathFrac const * asFracInset() const;
72         ///
73         docstring name() const;
74         ///
75         bool extraBraces() const;
76         ///
77         void write(WriteStream & os) const;
78         ///
79         void maple(MapleStream &) const;
80         ///
81         void mathematica(MathematicaStream &) const;
82         ///
83         void octave(OctaveStream &) const;
84         ///
85         void mathmlize(MathStream &) const;
86         ///
87         void htmlize(HtmlStream &) const;
88         ///
89         void validate(LaTeXFeatures & features) const;
90 public:
91         Inset * clone() const;
92         ///
93         Kind kind_;
94 };
95
96
97
98 /// Binom like objects
99 class InsetMathBinom : public InsetMathFracBase {
100 public:
101         ///
102         enum Kind {
103                 BINOM,
104                 DBINOM,
105                 TBINOM,
106                 CHOOSE,
107                 BRACE,
108                 BRACK
109         };
110         ///
111         explicit InsetMathBinom(Buffer * buf, Kind kind = BINOM);
112         ///
113         void write(WriteStream & os) const;
114         ///
115         void normalize(NormalStream &) const;
116         ///
117         void metrics(MetricsInfo & mi, Dimension & dim) const;
118         ///
119         void draw(PainterInfo &, int x, int y) const;
120         /// draw decorations.
121         void drawDecoration(PainterInfo & pi, int x, int y) const
122         { drawMarkers2(pi, x, y); }
123         ///
124         bool extraBraces() const;
125         ///
126         void mathmlize(MathStream &) const;
127         ///
128         void htmlize(HtmlStream &) const;
129         ///
130         void validate(LaTeXFeatures & features) const;
131         ///
132         InsetCode lyxCode() const { return MATH_FRAC_CODE; }
133 private:
134         Inset * clone() const;
135         ///
136         int dw(int height) const;
137         ///
138         Kind kind_;
139 };
140
141
142
143 } // namespace lyx
144
145 #endif