]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.h
cloase a leak; remove a few casts; cosmetics
[lyx.git] / src / mathed / formulabase.h
1 // -*- C++ -*-
2 /*
3  *  File:        formulabase.h
4  *  Purpose:     Common parts of the math LyX insets
5  *  Author:      André Pönitz
6  *  Created:     May 2001
7  *  Description: Allows the edition of math paragraphs inside Lyx. 
8  *
9  *  Copyright: 2001, The LyX Project
10  *
11  *   You are free to use and modify this code under the terms of
12  *   the GNU General Public Licence version 2 or later.
13  */
14
15 #ifndef INSET_FORMULABASE_H 
16 #define INSET_FORMULABASE_H
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
21
22 #include <iosfwd>
23 #include "insets/inset.h"
24
25 // only for getType():
26 #include "math_defs.h"
27
28 class Buffer;
29 class BufferView;
30 class MathInset;
31
32 ///
33 class InsetFormulaBase : public UpdatableInset {
34 public:
35         ///
36         InsetFormulaBase();
37         ///
38         virtual int ascent(BufferView *, LyXFont const &) const = 0;
39         ///
40         virtual int descent(BufferView *, LyXFont const &) const = 0;
41         ///
42         virtual int width(BufferView *, LyXFont const &) const = 0;
43         ///
44         virtual void draw(BufferView *,LyXFont const &, int, float &, bool) const = 0;
45
46         /// These are just wrappers taking the unused Buffer * dummy parameter
47         /// 
48         virtual void write(Buffer const *, std::ostream &) const;
49         ///
50         virtual void read(Buffer const *, LyXLex & lex);
51         ///
52         virtual int latex(Buffer const *, std::ostream &,
53                   bool fragile, bool free_spc) const;
54         ///
55         virtual int ascii(Buffer const *, std::ostream &, int linelen) const;
56         ///
57         virtual int linuxdoc(Buffer const *, std::ostream &) const;
58         ///
59         virtual int docBook(Buffer const *, std::ostream &) const;
60         ///
61         virtual MathInsetTypes getType() const = 0;
62
63 protected:
64         /// the actual functions don't use the Buffer * parameter
65         ///
66         virtual void write(std::ostream &) const = 0;
67         ///
68         virtual void read(LyXLex & lex) = 0;
69         ///
70         virtual int latex(std::ostream &, bool fragile, bool free_spc) const = 0;
71         ///
72         virtual int ascii(std::ostream &, int linelen) const = 0;
73         ///
74         virtual int linuxdoc(std::ostream &) const = 0;
75         ///
76         virtual int docBook(std::ostream &) const = 0;
77
78 public:
79         ///
80         virtual void validate(LaTeXFeatures &) const;
81         ///
82         virtual Inset * clone(Buffer const &, bool same_id = false) const = 0;
83         ///
84         virtual Inset::Code lyxCode() const;
85         ///
86         virtual LyXFont const convertFont(LyXFont const & f) const;
87         /// what appears in the minibuffer when opening
88         virtual string const editMessage() const;
89         ///
90         virtual void edit(BufferView *, int x, int y, unsigned int button);
91         virtual void edit(BufferView *, bool front = true);
92         ///
93         virtual void toggleInsetCursor(BufferView *);
94         ///
95         virtual void showInsetCursor(BufferView *, bool show = true);
96         ///
97         virtual void hideInsetCursor(BufferView *);
98         ///
99         virtual void getCursorPos(BufferView *, int &, int &) const;
100         ///
101         virtual void toggleInsetSelection(BufferView * bv);
102         ///
103         virtual void insetButtonPress(BufferView *, int x, int y, int button);
104         ///
105         virtual void insetButtonRelease(BufferView *, int x, int y, int button);
106         ///
107         virtual void insetKeyPress(XKeyEvent * ev);
108         ///
109         virtual void insetMotionNotify(BufferView *, int x, int y, int state);
110         ///
111         virtual void insetUnlock(BufferView *);
112    
113         /// To allow transparent use of math editing functions
114         virtual RESULT localDispatch(BufferView *, kb_action, string const &);
115     
116         ///
117         virtual std::vector<string> const getLabelList() const;
118         ///
119         virtual MathInset * par() const = 0;
120         ///
121         virtual void metrics() const = 0;
122 protected:
123         ///
124         virtual void updateLocal(BufferView * bv, bool mark_dirty);
125 private:
126         /// unimplemented
127         void operator=(const InsetFormulaBase &);
128 };
129
130 // We don't really mess want around with mathed stuff outside mathed.
131 // So do it here.
132 //
133 void mathDispatchCreation(BufferView *, string const &, bool);
134 //
135 void mathDispatchMathDisplay(BufferView *, string const &);
136 //
137 void mathDispatchMathMode(BufferView *, string const &);
138 //
139 void mathDispatchMathMacro(BufferView *, string const &);
140 //
141 void mathDispatchMathDelim(BufferView *, string const &);
142 //
143 void mathDispatchInsertMath(BufferView *, string const &);
144 //
145 void mathDispatchInsertMatrix(BufferView *, string const &);
146 //
147 void mathDispatchMathImportSelection(BufferView *, string const &);
148
149 #endif