]> git.lyx.org Git - lyx.git/blob - src/mathed/math_hullinset.h
remove part of old texted<->mathed interface
[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
17
18 /// This provides an interface between "LyX insets" and "LyX math insets"
19 class MathHullInset : public MathGridInset {
20 public:
21         ///
22         MathHullInset();
23         ///
24         explicit MathHullInset(std::string const & type);
25         ///
26         std::auto_ptr<InsetBase> clone() const;
27         ///
28         mode_type currentMode() const;
29         ///
30         void metrics(MetricsInfo & mi, Dimension & dim) const;
31         ///
32         void draw(PainterInfo &, int x, int y) const;
33         ///
34         void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
35         ///
36         void drawT(TextPainter &, int x, int y) const;
37         ///
38         std::string label(row_type row) const;
39         ///
40         void label(row_type row, std::string const & label);
41         ///
42         void numbered(row_type row, bool num);
43         ///
44         bool numbered(row_type row) const;
45         ///
46         bool numberedType() const;
47         ///
48         bool ams() const;
49         /// Appends \c list with all labels found within this inset.
50         void getLabelList(Buffer const &,
51                           std::vector<std::string> & list) const;
52         ///
53         void validate(LaTeXFeatures & features) const;
54         /// identifies MatrixInsets
55         MathHullInset const * asHullInset() const { return this; }
56         /// identifies HullInset
57         MathHullInset * asHullInset() { return this; }
58
59         /// add a row
60         void addRow(row_type row);
61         /// delete a row
62         void delRow(row_type row);
63         ///
64         void swapRow(row_type row);
65         /// add a column
66         void addCol(col_type col);
67         /// delete a column
68         void delCol(col_type col);
69
70         /// get type
71         std::string const & getType() const;
72         /// change type
73         void mutate(std::string const &);
74
75         ///
76         int defaultColSpace(col_type col);
77         ///
78         char defaultColAlign(col_type col);
79         ///
80         bool idxFirst(LCursor &) const;
81         ///
82         bool idxLast(LCursor &) const;
83
84         ///
85         std::string fileInsetLabel() const;
86         ///
87         void write(WriteStream & os) const;
88         ///
89         void mathmlize(MathMLStream &) const;
90         ///
91         void normalize(NormalStream &) const;
92         ///
93         void infoize(std::ostream & os) const;
94
95         ///
96         void write(Buffer const &, std::ostream & os) const;
97         ///
98         void read(Buffer const &, LyXLex & lex);
99         ///
100         int latex(Buffer const &, std::ostream &,
101                   OutputParams const &) const;
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         ///
113         //bool insetAllowed(Code code) const;
114         ///
115         //void addPreview(lyx::graphics::PreviewLoader &) const;
116
117
118 protected:
119         ///
120         void priv_dispatch(LCursor & cur, FuncRequest & cmd);
121         ///
122         std::string eolString(row_type row, bool fragile) const;
123
124 private:
125         ///
126         void setType(std::string const & type);
127         ///
128         void validate1(LaTeXFeatures & features);
129         ///
130         void header_write(WriteStream &) const;
131         ///
132         void footer_write(WriteStream &) const;
133         ///
134         std::string nicelabel(row_type row) const;
135         ///
136         void doExtern(LCursor & cur, FuncRequest & func);
137         ///
138         void glueall();
139         ///
140         char const * standardFont() const;
141         /// consistency check
142         void check() const;
143         /// can this change its number of cols?
144         bool colChangeOK() const;
145
146         /// "none", "simple", "display", "eqnarray",...
147         std::string type_;
148         ///
149         std::vector<int> nonum_;
150         ///
151         std::vector<std::string> label_;
152
153 //
154 // Incorporate me
155 //
156 public:
157         /// what appears in the minibuffer when opening
158         virtual std::string const editMessage() const;
159         ///
160         virtual void getCursorDim(int &, int &) const;
161
162         /// To allow transparent use of math editing functions
163         //virtual void status(FuncRequest &);
164
165         ///
166         virtual bool searchForward(BufferView *, std::string const &,
167                                    bool = true, bool = false);
168         ///
169         virtual bool searchBackward(BufferView *, std::string const &,
170                                     bool = true, bool = false);
171         ///
172         virtual bool isTextInset() const { return true; }
173         ///
174         virtual void mutateToText();
175         ///
176         virtual void revealCodes(LCursor & cur) const;
177         ///
178         virtual EDITABLE editable() const { return HIGHLY_EDITABLE; }
179         ///
180         bool display() const;
181         ///
182         Code lyxCode() const;
183
184 protected:
185         ///
186         void handleFont(LCursor &, std::string const & arg, std::string const & font);
187         ///
188         void handleFont2(LCursor &, std::string const & arg);
189 };
190
191 #endif