]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.h
static_cast-based key/mouse-state. Kill insetKeyPress.
[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 #include "frontends/mouse_state.h"
25 #include "lyxfont.h"
26
27 // only for getType():
28 #include "math_defs.h"
29
30 class Buffer;
31 class BufferView;
32 class MathAtom;
33
34 /// An abstract base class for all math related LyX insets
35 class InsetFormulaBase : public UpdatableInset {
36 public:
37         ///
38         InsetFormulaBase();
39         ///
40         virtual int ascent(BufferView *, LyXFont const &) const = 0;
41         ///
42         virtual int descent(BufferView *, LyXFont const &) const = 0;
43         ///
44         virtual int width(BufferView *, LyXFont const &) const = 0;
45         ///
46         virtual void draw(BufferView *,LyXFont const &, int, float &, bool) const = 0;
47         ///
48         virtual MathInsetTypes getType() const = 0;
49         /// lowest x coordinate
50         virtual int xlow() const;
51         /// highest x coordinate
52         virtual int xhigh() const;
53         /// lowest y coordinate
54         virtual int ylow() const;
55         /// highest y coordinate
56         virtual int yhigh() const;
57
58 public:
59         ///
60         virtual void validate(LaTeXFeatures &) const;
61         ///
62         virtual Inset * clone(Buffer const &, bool same_id = false) const = 0;
63         ///
64         virtual Inset::Code lyxCode() const;
65         /// what appears in the minibuffer when opening
66         virtual string const editMessage() const;
67         ///
68         virtual void edit(BufferView *, int x, int y, mouse_button::state button);
69         ///
70         virtual void edit(BufferView *, bool front = true);
71         ///
72         virtual void toggleInsetCursor(BufferView *);
73         ///
74         virtual void showInsetCursor(BufferView *, bool show = true);
75         ///
76         virtual void hideInsetCursor(BufferView *);
77         ///
78         virtual void getCursorPos(BufferView *, int &, int &) const;
79         ///
80         virtual void toggleInsetSelection(BufferView * bv);
81         ///
82         virtual void insetButtonPress(BufferView *, int x, int y, mouse_button::state button);
83         ///
84         virtual bool insetButtonRelease(BufferView *, int x, int y, mouse_button::state button);
85         ///
86         virtual void insetMotionNotify(BufferView *, int x, int y, mouse_button::state state);
87         ///
88         virtual void insetUnlock(BufferView *);
89
90         /// To allow transparent use of math editing functions
91         virtual RESULT localDispatch(BufferView *, kb_action, string const &);
92
93         ///
94         virtual std::vector<string> const getLabelList() const;
95         ///
96         virtual MathAtom const & par() const = 0;
97         ///
98         virtual MathAtom & par() = 0;
99         ///
100         virtual void updateLocal(BufferView * bv, bool mark_dirty);
101         ///
102         BufferView * view() const { return view_; }
103
104         ///
105         virtual bool searchForward(BufferView *, string const &,
106                                    bool = true, bool = false);
107         ///
108         virtual bool searchBackward(BufferView *, string const &,
109                                     bool = true, bool = false);
110         ///
111         virtual bool isTextInset() const { return true; }
112         ///
113         virtual void mutateToText();
114         ///
115         virtual void revealCodes(BufferView *) const;
116         ///
117         virtual Inset::EDITABLE editable() const { return HIGHLY_EDITABLE; }
118
119
120 private:
121         /// unimplemented
122         void operator=(const InsetFormulaBase &);
123         /// common base for handling accents
124         void handleAccent(BufferView * bv, string const & arg, string const & name);
125
126         ///
127         mutable BufferView * view_;
128         ///
129         mutable LyXFont font_;
130
131 protected:
132         ///
133         void metrics(BufferView * bv, LyXFont const & font) const;
134         ///
135         void metrics(BufferView * bv = 0) const;
136         ///
137         void handleFont(BufferView * bv, string const & arg, MathTextCodes t);
138
139         ///
140         mutable int xo_;
141         ///
142         mutable int yo_;
143 };
144
145 // We don't really mess want around with mathed stuff outside mathed.
146 // So do it here.
147 //
148 void mathDispatchCreation(BufferView *, string const &, bool);
149 //
150 void mathDispatchMathDisplay(BufferView *, string const &);
151 //
152 void mathDispatchMathMode(BufferView *, string const &);
153 //
154 void mathDispatchMathMacro(BufferView *, string const &);
155 //
156 void mathDispatchMathDelim(BufferView *, string const &);
157 //
158 void mathDispatchInsertMath(BufferView *, string const &);
159 //
160 void mathDispatchInsertMatrix(BufferView *, string const &);
161 //
162 void mathDispatchGreek(BufferView *, string const &);
163 //
164 void mathDispatchMathImportSelection(BufferView *, string const &);
165 //
166 void mathDispatch(BufferView *, kb_action, string const &);
167
168 #endif