]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathMBox.h
Rename files in src/mathed and src/graphics from .C to .cpp, step 2
[lyx.git] / src / mathed / InsetMathMBox.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathMBox.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #define MATH_MBOX
13
14 #ifdef MATH_MBOX
15
16 #ifndef MATH_MBOXINSET_H
17 #define MATH_MBOXINSET_H
18
19 #include "InsetMathDim.h"
20 #include "lyxtext.h"
21
22
23 namespace lyx {
24
25 class Buffer;
26 class BufferView;
27
28 // almost a substitute for the real text inset...
29
30 class InsetMathMBox : public InsetMathDim {
31 public:
32         ///
33         explicit InsetMathMBox();
34         explicit InsetMathMBox(LyXLayout_ptr const & layout);
35
36         /// this stores metrics information in cache_
37         bool metrics(MetricsInfo & mi, Dimension & dim) const;
38         /// draw according to cached metrics
39         void draw(PainterInfo &, int x, int y) const;
40         ///
41         void drawSelection(PainterInfo & pi, int x, int y) const;
42         ///
43         bool inMathed() const { return false; }
44         ///
45         bool isActive() const { return true; }
46
47         ///
48         void write(Buffer const & buf, WriteStream & os) const;
49         ///
50         int latex(Buffer const &, odocstream & os,
51                         OutputParams const & runparams) const;
52         ///
53         LyXText * getText(int) const;
54         ///
55         void cursorPos(BufferView const & bv, CursorSlice const & sl,
56                 bool boundary, int & x, int & y) const;
57 protected:
58         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
59
60         ///
61         mutable LyXText text_;
62
63 private:
64         virtual std::auto_ptr<InsetBase> doClone() const;
65 };
66
67
68
69 } // namespace lyx
70
71 #endif //MATH_MBOXINSET_H
72
73 #endif //MATH_MBOX