]> git.lyx.org Git - lyx.git/blob - src/mathed/formulabase.h
architectural changes to tex2lyx
[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 "dimension.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         /// lowest x coordinate
33         virtual int xlow() const;
34         /// highest x coordinate
35         virtual int xhigh() const;
36         /// lowest y coordinate
37         virtual int ylow() const;
38         /// highest y coordinate
39         virtual int yhigh() const;
40
41 public:
42         ///
43         // Don't use this for AMS validation as long as there is no
44         // user-accessible way to override "false positives"
45         virtual void validate(LaTeXFeatures &) const;
46         ///
47         virtual InsetOld::Code lyxCode() const;
48         /// what appears in the minibuffer when opening
49         virtual string const editMessage() const;
50         ///
51         virtual void fitInsetCursor(BufferView *) const;
52         /// FIXME
53         virtual void getCursorPos(BufferView *, int &, int &) const;
54         /// get the absolute document x,y of the cursor
55         virtual void getCursor(BufferView & bv, int & x, int & y) const;
56         ///
57         virtual void toggleInsetSelection(BufferView * bv);
58         ///
59         virtual void insetUnlock(BufferView *);
60
61         /// To allow transparent use of math editing functions
62         virtual dispatch_result localDispatch(FuncRequest const &);
63         /// To allow transparent use of math editing functions
64         //virtual void status(FuncRequest const &);
65
66         ///
67         virtual MathAtom const & par() const = 0;
68         ///
69         virtual MathAtom & par() = 0;
70         ///
71         // And shouldn't this really return a shared_ptr<BufferView> instead?
72         BufferView * view() const;
73
74         ///
75         virtual bool searchForward(BufferView *, string const &,
76                                    bool = true, bool = false);
77         ///
78         virtual bool searchBackward(BufferView *, string const &,
79                                     bool = true, bool = false);
80         ///
81         virtual bool isTextInset() const { return true; }
82         ///
83         virtual void mutateToText();
84         ///
85         virtual void revealCodes(BufferView *) const;
86         ///
87         virtual EDITABLE editable() const { return HIGHLY_EDITABLE; }
88         ///
89         bool display() const;
90         // return the selection as string
91         string selectionAsString() const;
92
93 private:
94         /// unimplemented
95         void operator=(const InsetFormulaBase &);
96         /// common base for handling accents
97         void handleAccent(BufferView * bv, string const & arg, string const & name);
98         /// lfun handler
99         dispatch_result lfunMousePress(FuncRequest const &);
100         ///
101         dispatch_result lfunMouseRelease(FuncRequest const &);
102         ///
103         dispatch_result lfunMouseMotion(FuncRequest const &);
104
105 protected:
106         ///
107         //mutable boost::weak_ptr<BufferView> view_;
108         mutable BufferView * view_;
109
110 protected:
111         ///
112         void handleFont(BufferView * bv, string const & arg, string const & font);
113
114         ///
115         mutable int xo_;
116         ///
117         mutable int yo_;
118 };
119
120 // We don't really mess want around with mathed stuff outside mathed.
121 // So do it here.
122 void mathDispatch(FuncRequest const &);
123
124 ///
125 void releaseMathCursor(BufferView * bv);
126
127 #endif