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