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