]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.h
edit->LFUN_INSET_EDIT + CHangeLog + working URL insets.
[lyx.git] / src / mathed / formulabase.h
1 // -*- C++ -*-
2
3 /*
4  * Common parts of the math LyX insets
5  * \author  André Pönitz
6  *
7  * Full author contact details are available in file CREDITS
8  *
9  * You are free to use and modify this code under the terms of
10  * the GNU General Public Licence version 2 or later.
11  */
12
13 #ifndef INSET_FORMULABASE_H
14 #define INSET_FORMULABASE_H
15
16
17 #include "insets/updatableinset.h"
18 #include "frontends/mouse_state.h"
19 #include "lyxfont.h"
20
21 #include <boost/weak_ptr.hpp>
22 #include <iosfwd>
23
24 class Buffer;
25 class BufferView;
26 class MathAtom;
27
28 /// An abstract base class for all math related LyX insets
29 class InsetFormulaBase : public UpdatableInset {
30 public:
31         ///
32         InsetFormulaBase();
33         ///
34         virtual int ascent(BufferView *, LyXFont const &) const = 0;
35         ///
36         virtual int descent(BufferView *, LyXFont const &) const = 0;
37         ///
38         virtual int width(BufferView *, LyXFont const &) const = 0;
39         ///
40         virtual void draw(BufferView *,LyXFont const &, int, float &) const = 0;
41         /// lowest x coordinate
42         virtual int xlow() const;
43         /// highest x coordinate
44         virtual int xhigh() const;
45         /// lowest y coordinate
46         virtual int ylow() const;
47         /// highest y coordinate
48         virtual int yhigh() const;
49
50 public:
51         ///
52         // Don't use this for AMS validation as long as there is no
53         // user-accessible way to override "false positives"
54         virtual void validate(LaTeXFeatures &) const;
55         ///
56         virtual Inset * clone(Buffer const &, bool same_id = false) const = 0;
57         ///
58         virtual Inset::Code lyxCode() const;
59         /// what appears in the minibuffer when opening
60         virtual string const editMessage() const;
61         ///
62         virtual void fitInsetCursor(BufferView *) const;
63         /// FIXME
64         virtual void getCursorPos(BufferView *, int &, int &) const;
65         /// get the absolute document x,y of the cursor
66         virtual void getCursor(BufferView & bv, int & x, int & y) const;
67         ///
68         virtual void toggleInsetSelection(BufferView * bv);
69         ///
70         virtual void insetUnlock(BufferView *);
71
72         /// To allow transparent use of math editing functions
73         virtual dispatch_result localDispatch(FuncRequest const &);
74         /// To allow transparent use of math editing functions
75         //virtual void status(FuncRequest const &);
76
77         ///
78         virtual std::vector<string> const getLabelList() const;
79         ///
80         virtual MathAtom const & par() const = 0;
81         ///
82         virtual MathAtom & par() = 0;
83         ///
84         // And shouldn't this really return a shared_ptr<BufferView> instead?
85         BufferView * view() const;
86
87         ///
88         virtual bool searchForward(BufferView *, string const &,
89                                    bool = true, bool = false);
90         ///
91         virtual bool searchBackward(BufferView *, string const &,
92                                     bool = true, bool = false);
93         ///
94         virtual bool isTextInset() const { return true; }
95         ///
96         virtual void mutateToText();
97         ///
98         virtual void revealCodes(BufferView *) const;
99         ///
100         virtual EDITABLE editable() const { return HIGHLY_EDITABLE; }
101         ///
102         bool display() const;
103         // return the selection as string
104         string selectionAsString() const;
105
106 private:
107         /// unimplemented
108         void operator=(const InsetFormulaBase &);
109         /// common base for handling accents
110         void handleAccent(BufferView * bv, string const & arg, string const & name);
111         /// lfun handler
112         dispatch_result lfunMousePress(FuncRequest const &);
113         ///
114         dispatch_result lfunMouseRelease(FuncRequest const &);
115         ///
116         dispatch_result lfunMouseMotion(FuncRequest const &);
117
118 protected:
119         ///
120         mutable boost::weak_ptr<BufferView> view_;
121         ///
122         mutable LyXFont font_;
123
124 protected:
125         ///
126         void metrics(BufferView * bv, LyXFont const & font) const;
127         ///
128         void metrics(BufferView * bv = 0) const;
129         ///
130         void handleFont(BufferView * bv, string const & arg, string const & font);
131
132         ///
133         mutable int xo_;
134         ///
135         mutable int yo_;
136 };
137
138 // We don't really mess want around with mathed stuff outside mathed.
139 // So do it here.
140 void mathDispatch(FuncRequest const &);
141
142 ///
143 void releaseMathCursor(BufferView * bv);
144
145 #endif