]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathHull.h
move everything into namespace lyx
[lyx.git] / src / mathed / InsetMathHull.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathHull.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_HULLINSET_H
13 #define MATH_HULLINSET_H
14
15 #include "InsetMathGrid.h"
16 #include <boost/scoped_ptr.hpp>
17
18
19 namespace lyx {
20
21 class RenderPreview;
22
23
24 /// This provides an interface between "LyX insets" and "LyX math insets"
25 class InsetMathHull : public InsetMathGrid {
26 public:
27         ///
28         InsetMathHull();
29         ///
30         explicit InsetMathHull(HullType type);
31         ///
32         ~InsetMathHull();
33         ///
34         InsetMathHull & operator=(InsetMathHull const &);
35         ///
36         mode_type currentMode() const;
37         ///
38         void metrics(MetricsInfo & mi, Dimension & dim) const;
39         ///
40         void draw(PainterInfo &, int x, int y) const;
41         ///
42         void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
43         ///
44         void drawT(TextPainter &, int x, int y) const;
45         ///
46         std::string label(row_type row) const;
47         ///
48         void label(row_type row, std::string const & label);
49         ///
50         void numbered(row_type row, bool num);
51         ///
52         bool numbered(row_type row) const;
53         ///
54         bool numberedType() const;
55         ///
56         bool ams() const;
57         /// Appends \c list with all labels found within this inset.
58         void getLabelList(Buffer const &,
59                           std::vector<docstring> & list) const;
60         ///
61         void validate(LaTeXFeatures & features) const;
62         /// identifies HullInset
63         InsetMathHull const * asHullInset() const { return this; }
64         /// identifies HullInset
65         InsetMathHull * asHullInset() { return this; }
66
67         /// add a row
68         void addRow(row_type row);
69         /// delete a row
70         void delRow(row_type row);
71         /// swap two rows
72         void swapRow(row_type row);
73         /// add a column
74         void addCol(col_type col);
75         /// delete a column
76         void delCol(col_type col);
77
78         /// get type
79         HullType getType() const;
80         /// change type
81         void mutate(HullType newtype);
82
83         ///
84         int defaultColSpace(col_type col);
85         ///
86         char defaultColAlign(col_type col);
87         ///
88         bool idxFirst(LCursor &) const;
89         ///
90         bool idxLast(LCursor &) const;
91
92         ///
93         void write(WriteStream & os) const;
94         ///
95         void mathmlize(MathMLStream &) const;
96         ///
97         void normalize(NormalStream &) const;
98         ///
99         void infoize(std::ostream & os) const;
100
101         ///
102         void write(Buffer const &, std::ostream & os) const;
103         ///
104         void read(Buffer const &, LyXLex & lex);
105         ///
106         int plaintext(Buffer const &, odocstream &,
107                   OutputParams const &) const;
108         ///
109         int docbook(Buffer const &, odocstream &,
110                     OutputParams const &) const;
111         /// the string that is passed to the TOC
112         virtual int textString(Buffer const &, odocstream &,
113                 OutputParams const &) const;
114
115         /// get notification when the cursor leaves this inset
116         bool notifyCursorLeaves(LCursor & cur);
117         ///
118         //bool insetAllowed(Code code) const;
119         ///
120         void addPreview(graphics::PreviewLoader &) const;
121
122         ///
123         static int displayMargin() { return 12; }
124
125 protected:
126         InsetMathHull(InsetMathHull const &);
127
128         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
129
130         /// do we want to handle this event?
131         bool getStatus(LCursor & cur, FuncRequest const & cmd,
132                 FuncStatus & status) const;
133         ///
134         std::string eolString(row_type row, bool emptyline, bool fragile) const;
135
136 private:
137         virtual std::auto_ptr<InsetBase> doClone() const;
138         ///
139         void setType(HullType type);
140         ///
141         void validate1(LaTeXFeatures & features);
142         ///
143         void header_write(WriteStream &) const;
144         ///
145         void footer_write(WriteStream &) const;
146         ///
147         docstring nicelabel(row_type row) const;
148         ///
149         void doExtern(LCursor & cur, FuncRequest & func);
150         ///
151         void glueall();
152         /*!
153          * split every row at the first relation operator.
154          * The number of columns must be 1. One column is added.
155          * The first relation operator and everything after it goes to the
156          * second column.
157          */
158         void splitTo2Cols();
159         /*!
160          * split every row at the first relation operator.
161          * The number of columns must be < 3. One or two columns are added.
162          * The first relation operator goes to the second column.
163          * Everything after it goes to the third column.
164          */
165         void splitTo3Cols();
166         /// change number of columns, split or combine columns if necessary.
167         void changeCols(col_type);
168         ///
169         char const * standardFont() const;
170         /// consistency check
171         void check() const;
172         /// can this change its number of rows?
173         bool rowChangeOK() const;
174         /// can this change its number of cols?
175         bool colChangeOK() const;
176
177         /// "none", "simple", "display", "eqnarray",...
178         HullType type_;
179         ///
180         std::vector<int> nonum_;
181         ///
182         std::vector<std::string> label_;
183         ///
184         boost::scoped_ptr<RenderPreview> preview_;
185         ///
186         mutable bool use_preview_;
187 //
188 // Incorporate me
189 //
190 public:
191         /// what appears in the minibuffer when opening
192         virtual docstring const editMessage() const;
193         ///
194         virtual void mutateToText();
195         ///
196         virtual void revealCodes(LCursor & cur) const;
197         ///
198         EDITABLE editable() const { return HIGHLY_EDITABLE; }
199         ///
200         void edit(LCursor & cur, bool left);
201         ///
202         InsetBase * editXY(LCursor & cur, int x, int y);
203         ///
204         bool display() const;
205         ///
206         Code lyxCode() const;
207
208 protected:
209         ///
210         void handleFont(LCursor & cur, std::string const & arg,
211                 std::string const & font);
212         ///
213         void handleFont2(LCursor & cur, std::string const & arg);
214         ///
215         bool previewState(BufferView * bv) const;
216 };
217
218
219
220 } // namespace lyx
221 #endif