]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.h
remove unneeded convertFont()
[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         /// what appears in the minibuffer when opening
86         virtual string const editMessage() const;
87         ///
88         virtual void edit(BufferView *, int x, int y, unsigned int button);
89         virtual void edit(BufferView *, bool front = true);
90         ///
91         virtual void toggleInsetCursor(BufferView *);
92         ///
93         virtual void showInsetCursor(BufferView *, bool show = true);
94         ///
95         virtual void hideInsetCursor(BufferView *);
96         ///
97         virtual void getCursorPos(BufferView *, int &, int &) const;
98         ///
99         virtual void toggleInsetSelection(BufferView * bv);
100         ///
101         virtual void insetButtonPress(BufferView *, int x, int y, int button);
102         ///
103         virtual void insetButtonRelease(BufferView *, int x, int y, int button);
104         ///
105         virtual void insetKeyPress(XKeyEvent * ev);
106         ///
107         virtual void insetMotionNotify(BufferView *, int x, int y, int state);
108         ///
109         virtual void insetUnlock(BufferView *);
110    
111         /// To allow transparent use of math editing functions
112         virtual RESULT localDispatch(BufferView *, kb_action, string const &);
113     
114         ///
115         virtual std::vector<string> const getLabelList() const;
116         ///
117         virtual MathInset const * par() const = 0;
118         ///
119         virtual void metrics() const = 0;
120 protected:
121         ///
122         virtual void updateLocal(BufferView * bv, bool mark_dirty);
123 private:
124         /// unimplemented
125         void operator=(const InsetFormulaBase &);
126 };
127
128 // We don't really mess want around with mathed stuff outside mathed.
129 // So do it here.
130 //
131 void mathDispatchCreation(BufferView *, string const &, bool);
132 //
133 void mathDispatchMathDisplay(BufferView *, string const &);
134 //
135 void mathDispatchMathMode(BufferView *, string const &);
136 //
137 void mathDispatchMathMacro(BufferView *, string const &);
138 //
139 void mathDispatchMathDelim(BufferView *, string const &);
140 //
141 void mathDispatchInsertMath(BufferView *, string const &);
142 //
143 void mathDispatchInsertMatrix(BufferView *, string const &);
144 //
145 void mathDispatchMathImportSelection(BufferView *, string const &);
146
147 #endif