]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathHull.h
* insets/insetbase.h (textString): Simplify the signature
[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         bool 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         docstring label(row_type row) const;
47         ///
48         void label(row_type row, docstring 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(MathStream &) const;
96         ///
97         void normalize(NormalStream &) const;
98         ///
99         void infoize(odocstream & 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 void textString(Buffer const &, odocstream &) const;
113
114         /// get notification when the cursor leaves this inset
115         bool notifyCursorLeaves(LCursor & cur);
116         ///
117         //bool insetAllowed(Code code) const;
118         ///
119         void addPreview(graphics::PreviewLoader &) const;
120
121         ///
122         static int displayMargin() { return 12; }
123
124 protected:
125         InsetMathHull(InsetMathHull const &);
126
127         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
128
129         /// do we want to handle this event?
130         bool getStatus(LCursor & cur, FuncRequest const & cmd,
131                 FuncStatus & status) const;
132         ///
133         docstring eolString(row_type row, bool emptyline, bool fragile) const;
134
135 private:
136         virtual std::auto_ptr<InsetBase> doClone() const;
137         ///
138         void setType(HullType type);
139         ///
140         void validate1(LaTeXFeatures & features);
141         ///
142         void header_write(WriteStream &) const;
143         ///
144         void footer_write(WriteStream &) const;
145         ///
146         docstring nicelabel(row_type row) const;
147         ///
148         void doExtern(LCursor & cur, FuncRequest & func);
149         ///
150         void glueall();
151         /*!
152          * split every row at the first relation operator.
153          * The number of columns must be 1. One column is added.
154          * The first relation operator and everything after it goes to the
155          * second column.
156          */
157         void splitTo2Cols();
158         /*!
159          * split every row at the first relation operator.
160          * The number of columns must be < 3. One or two columns are added.
161          * The first relation operator goes to the second column.
162          * Everything after it goes to the third column.
163          */
164         void splitTo3Cols();
165         /// change number of columns, split or combine columns if necessary.
166         void changeCols(col_type);
167         ///
168         docstring standardFont() const;
169         /// consistency check
170         void check() const;
171         /// can this change its number of rows?
172         bool rowChangeOK() const;
173         /// can this change its number of cols?
174         bool colChangeOK() const;
175
176         /// "none", "simple", "display", "eqnarray",...
177         HullType type_;
178         ///
179         std::vector<int> nonum_;
180         ///
181         std::vector<docstring> label_;
182         ///
183         boost::scoped_ptr<RenderPreview> preview_;
184         ///
185         mutable bool use_preview_;
186 //
187 // Incorporate me
188 //
189 public:
190         /// what appears in the minibuffer when opening
191         virtual docstring const editMessage() const;
192         ///
193         virtual void mutateToText();
194         ///
195         virtual void revealCodes(LCursor & cur) const;
196         ///
197         EDITABLE editable() const { return HIGHLY_EDITABLE; }
198         ///
199         void edit(LCursor & cur, bool left);
200         ///
201         InsetBase * editXY(LCursor & cur, int x, int y);
202         ///
203         bool display() const;
204         ///
205         Code lyxCode() const;
206
207 protected:
208         ///
209         void handleFont(LCursor & cur, docstring const & arg,
210                 docstring const & font);
211         ///
212         void handleFont2(LCursor & cur, docstring const & arg);
213         ///
214         bool previewState(BufferView * bv) const;
215 };
216
217
218
219 } // namespace lyx
220 #endif