]> git.lyx.org Git - lyx.git/blob - src/mathed/MathRow.h
Simplify Changers interface
[lyx.git] / src / mathed / MathRow.h
1 // -*- C++ -*-
2 /**
3  * \file MathRow.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_ROW_H
13 #define MATH_ROW_H
14
15 #include "MathClass.h"
16
17 #include "ColorCode.h"
18
19 #include "support/docstring.h"
20
21 #include <vector>
22
23 namespace lyx {
24
25 class BufferView;
26 class Dimension;
27 class MetricsInfo;
28 class PainterInfo;
29
30 class InsetMath;
31 class MathData;
32 class MathMacro;
33
34 /*
35  * While for editing purpose it is important that macros are counted
36  * as a single element, this is not the case for display. To get the
37  * spacing correct, it is necessary to dissolve all the macros that
38  * can be, along with their arguments. Then one obtains a
39  * representation of the MathData contents as a string of insets and
40  * then spacing can be done properly.
41  *
42  * This is the purpose of the MathRow class.
43  */
44 class MathRow
45 {
46 public:
47         // What row elements can be
48         enum Type {
49                 INSET, // this element is a plain inset
50                 BEG_MACRO, // a macro begins here
51                 END_MACRO, // a macro ends here
52                 BEG_ARG, // a macro argument begins here
53                 END_ARG, // a macro argument ends here
54                 BEGIN, // dummy element before row
55                 END, // dummy element after row
56                 BOX // an empty box
57         };
58
59         // An elements, together with its spacing
60         struct Element
61         {
62                 ///
63                 Element(Type t, MetricsInfo & mi);
64
65                 /// Classifies the contents of the object
66                 Type type;
67                 /// count wether the current mathdata is nested in macro(s)
68                 int macro_nesting;
69
70                 /// When type is INSET
71                 /// the math inset
72                 InsetMath const * inset;
73                 /// the class of the inset
74                 MathClass mclass;
75                 /// the spacing around the inset
76                 int before, after;
77                 // Non empty when there is a completion to draw
78                 docstring compl_text;
79                 // the number of characters forming the unique part.
80                 size_t compl_unique_to;
81
82                 /// When type is BEG_MACRO, END_MACRO, BEG_ARG, END_ARG
83                 /// the math macro
84                 MathMacro const * macro;
85
86                 // type is BEG_ARG, END_ARG
87                 MathData const * ar;
88
89                 // type is BOX
90                 ColorCode color;
91         };
92
93         ///
94         MathRow() {};
95         ///
96         typedef std::vector<Element> Elements;
97         ///
98         typedef Elements::iterator iterator;
99         ///
100         typedef Elements::const_iterator const_iterator;
101         ///
102         iterator begin() { return elements_.begin(); }
103         ///
104         iterator end() { return elements_.end(); }
105         ///
106         const_iterator begin() const { return elements_.begin(); }
107         ///
108         const_iterator end() const { return elements_.end(); }
109         //
110         void push_back(Element const & e) { elements_.push_back(e); }
111         //
112         Element & back() { return elements_.back(); }
113
114         // create the math row by unwinding all macros in the MathData and
115         // compute the spacings.
116         MathRow(MetricsInfo & mi, MathData const * ar);
117
118         //
119         void metrics(MetricsInfo & mi, Dimension & dim) const;
120         //
121         void draw(PainterInfo & pi, int const x, int const y) const;
122
123         /// superscript kerning
124         int kerning(BufferView const *) const;
125
126 private:
127         // Index of the first inset element before position i
128         int before(int i) const;
129         // Index of the first inset element after position i
130         int after(int i) const;
131
132         ///
133         Elements elements_;
134 };
135
136 ///
137 std::ostream & operator<<(std::ostream & os, MathRow::Element const & elt);
138
139 ///
140 std::ostream & operator<<(std::ostream & os, MathRow const & mrow);
141
142
143 } // namespace lyx
144
145 #endif