]> git.lyx.org Git - lyx.git/blob - src/mathed/math_inset.h
improved function function argument detection for math-extern:
[lyx.git] / src / mathed / math_inset.h
1 // -*- C++ -*-
2 /*
3  *  File:        math_inset.h
4  *  Purpose:     Declaration of insets for mathed 
5  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
6  *  Created:     January 1996
7  *  Description: Math paragraph and objects for a WYSIWYG math editor.
8  *
9  *  Dependencies: Xlib, XForms
10  *
11  *  Copyright: 1996, 1997 Alejandro Aguilar Sierra
12  *
13  *   Version: 0.8beta, Math & Lyx project.
14  *
15  *   You are free to use and modify this code under the terms of
16  *   the GNU General Public Licence version 2 or later.
17  */
18
19 //  Note: These math insets are internal to Math and are not derived
20 //        from lyx inset.
21
22 #ifndef MATH_INSET_H
23 #define MATH_INSET_H
24
25 #include <config.h>
26
27 #ifdef __GNUG__
28 #pragma interface
29 #endif
30
31 #include "math_xdata.h"
32 #include "math_defs.h"
33
34 /** Abstract base class for all math objects.
35     A math insets is for use of the math editor only, it isn't a
36     general LyX inset. It's used to represent all the math objects.
37     The formulaInset (a LyX inset) encapsulates a math inset.
38 */
39
40
41 class MathArrayInset;
42 class MathBoxInset;
43 class MathCharInset;
44 class MathDelimInset;
45 class MathFuncInset;
46 class MathGridInset;
47 class MathFracInset;
48 class MathHullInset;
49 class MathMatrixInset;
50 class MathNestInset;
51 class MathScriptInset;
52 class MathStringInset;
53 class MathSpaceInset;
54 class MathSymbolInset;
55
56 class NormalStream;
57 class OctaveStream;
58 class MapleStream;
59 class MathMLStream;
60 class WriteStream;
61 class MathArray;
62
63 class LaTeXFeatures;
64 class BufferView;
65 class UpdatableInset;
66 class MathMacroTemplate;
67
68
69 class MathInset {
70 public: 
71         /// short of anything else reasonable
72         typedef MathArray::size_type     size_type;
73         /// type for cursor positions within a cell
74         typedef MathArray::size_type     pos_type;
75         /// type for cell indices
76         typedef size_type                idx_type;
77         /// type for row numbers
78         typedef size_type                row_type;
79         /// type for column numbers
80         typedef size_type                col_type;
81
82         ///
83         MathInset();
84         /// the virtual base destructor
85         virtual ~MathInset(); 
86
87         /// draw the object
88         virtual void draw(Painter &, int x, int y) const;
89         /// write LaTeX and Lyx code
90         virtual void write(WriteStream & os) const;
91         /// reproduce itself
92         virtual MathInset * clone() const = 0;
93         ///substitutes macro arguments if necessary
94         virtual void substitute(MathMacro const & macro);
95         /// compute the size of the object, sets ascend_, descend_ and width_
96         virtual void metrics(MathMetricsInfo const & st) const;
97         /// 
98         virtual int ascent() const { return 1; }
99         ///
100         virtual int descent() const { return 1; }
101         ///
102         virtual int width() const { return 2; }
103         ///
104         virtual int height() const;
105
106         /// Where should we go when we press the up cursor key?
107         virtual bool idxUp(idx_type & idx, pos_type & pos) const;
108         /// The down key
109         virtual bool idxDown(idx_type & idx, pos_type & pos) const;
110         /// The left key
111         virtual bool idxLeft(idx_type & idx, pos_type & pos) const;
112         /// The right key
113         virtual bool idxRight(idx_type & idx, pos_type & pos) const;
114
115         /// Move one physical cell up
116         virtual bool idxNext(idx_type & idx, pos_type & pos) const;
117         /// Move one physical cell down
118         virtual bool idxPrev(idx_type & idx, pos_type & pos) const;
119
120         /// Target pos when we enter the inset from the left by pressing "Right"
121         virtual bool idxFirst(idx_type & idx, pos_type & pos) const;
122         /// Target pos when we enter the inset from the right by pressing "Left"
123         virtual bool idxLast(idx_type & idx, pos_type & pos) const;
124
125         /// Where should we go if we press home?
126         virtual bool idxHome(idx_type & idx, pos_type & pos) const;
127         /// Where should we go if we press end?
128         virtual bool idxEnd(idx_type & idx, pos_type & pos) const;
129
130         /// Delete a cell and move cursor
131         // the return value indicates whether the cursor should leave the inset
132         // and/or the whole inset should be deleted
133         virtual void idxDelete(idx_type & idx, bool & popit, bool & deleteit);
134         // deletes a cell range and moves the cursor 
135         virtual void idxDeleteRange(idx_type from, idx_type to);
136         // returns list of cell indices that are "between" from and to for
137         // selection purposes
138         virtual std::vector<idx_type> idxBetween(idx_type from, idx_type to) const;
139
140         ///
141         virtual idx_type nargs() const;
142
143         ///
144         virtual MathArray & cell(idx_type);
145         ///
146         virtual MathArray const & cell(idx_type) const;
147         ///
148         virtual MathXArray & xcell(idx_type);
149         ///
150         virtual MathXArray const & xcell(idx_type) const;
151                         
152         ///
153         virtual col_type ncols() const { return 1; }
154         ///
155         virtual row_type nrows() const { return 1; }
156         ///
157         virtual col_type col(row_type) const { return 0; }
158         ///
159         virtual row_type row(row_type) const { return 0; }
160         ///
161         virtual int cellXOffset(row_type) const { return 0; }
162         ///
163         virtual int cellYOffset(row_type) const { return 0; }
164         ///
165         virtual void addRow(row_type) {}
166         ///
167         virtual void delRow(row_type) {}
168         ///
169         virtual void addCol(col_type) {}
170         ///
171         virtual void delCol(col_type) {}
172
173         ///
174         virtual bool covers(int x, int y) const;
175
176         /// identifies certain types of insets
177         virtual MathArrayInset        * asArrayInset()        { return 0; }
178         virtual MathBoxInset          * asBoxInset()          { return 0; }
179         virtual MathCharInset const   * asCharInset() const   { return 0; }
180         virtual MathDelimInset        * asDelimInset()        { return 0; }
181         virtual MathDelimInset const  * asDelimInset() const  { return 0; }
182         virtual MathFuncInset         * asFuncInset()         { return 0; }
183         virtual MathFracInset         * asFracInset()         { return 0; }
184         virtual MathGridInset         * asGridInset()         { return 0; }
185         virtual MathHullInset         * asHullInset()         { return 0; }
186         virtual MathHullInset const   * asHullInset() const   { return 0; }
187         virtual MathMacroTemplate     * asMacroTemplate()     { return 0; }
188         virtual MathMatrixInset const * asMatrixInset() const { return 0; }
189         virtual MathNestInset         * asNestInset()         { return 0; }
190         virtual MathScriptInset       * asScriptInset()       { return 0; }
191         virtual MathScriptInset const * asScriptInset() const { return 0; }
192         virtual MathSpaceInset        * asSpaceInset()        { return 0; }
193         virtual MathStringInset       * asStringInset()       { return 0; }
194         virtual MathSymbolInset       * asSymbolInset()       { return 0; }
195         virtual UpdatableInset   * asHyperActiveInset() const { return 0; }
196
197         /// identifies things that can get scripts
198         virtual bool isScriptable() const { return false; }
199         /// thing that can be moved into
200         virtual bool isActive() const { return nargs() > 0; }
201         /// identifies insets from the outer world
202         virtual bool isHyperActive() const { return 0; }
203         ///
204         virtual bool isRelOp() const { return false; }
205         ///
206         virtual bool isMacro() const { return false; }
207
208         ///
209         virtual char getChar() const { return 0; }
210         ///
211         virtual MathTextCodes code() const { return LM_TC_MIN; }
212         /// identifies things that can get \limits or \nolimits
213         virtual bool takesLimits() const { return false; }
214
215         ///
216         virtual void dump() const;
217         ///
218         virtual void edit(BufferView *, int, int, unsigned int) {}
219
220         ///
221         virtual void validate(LaTeXFeatures & features) const;
222         ///
223         virtual void handleFont(MathTextCodes) {}
224
225         /// write normalized content
226         virtual void normalize(NormalStream &) const;
227         ///
228         virtual void maplize(MapleStream &) const;
229         ///
230         virtual void mathmlize(MathMLStream &) const;
231         ///
232         virtual void octavize(OctaveStream &) const;
233 };
234
235 std::ostream & operator<<(std::ostream &, MathInset const &);
236
237 #endif