]> git.lyx.org Git - lyx.git/blob - src/mathed/math_mboxinset.h
soem more IU for \mbox
[lyx.git] / src / mathed / math_mboxinset.h
1 // -*- C++ -*-
2 /**
3  * \file math_mboxinset.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 #ifndef MATH_MBOXINSET_H
13 #define MATH_MBOXINSET_H
14
15 #include "math_diminset.h"
16 #include "lyxtext.h"
17
18
19 // almost a substitute for the real text inset...
20
21 class MathMBoxInset : public MathDimInset {
22 public:
23         ///
24         MathMBoxInset(BufferView & bv);
25         ///
26         std::auto_ptr<InsetBase> clone() const;
27         /// this stores metrics information in cache_
28         void metrics(MetricsInfo & mi, Dimension & dim) const;
29         /// draw according to cached metrics
30         void draw(PainterInfo &, int x, int y) const;
31         ///
32         void priv_dispatch(LCursor & cur, FuncRequest & cmd);
33
34         ///
35         bool inMathed() const { return false; }
36         ///
37         bool isActive() const { return true; }
38
39         ///
40         void write(WriteStream & os) const;
41         ///
42         int latex(Buffer const &, std::ostream & os,
43                         OutputParams const & runparams) const;
44         ///
45         LyXText * getText(int) const;
46         ///
47         void getCursorPos(CursorSlice const & cur, int & x, int & y) const;
48 protected:
49         ///
50         mutable LyXText text_;
51         ///
52         BufferView * const bv_;
53 };
54
55 #endif