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