]> git.lyx.org Git - lyx.git/blob - src/mathed/math_boxinset.h
Ensure all #warning statements are wrapped by #ifdef WITH_WARNINGS.
[lyx.git] / src / mathed / math_boxinset.h
1 // -*- C++ -*-
2 /**
3  * \file math_boxinset.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_BOXINSET_H
13 #define MATH_BOXINSET_H
14
15 #include "math_nestinset.h"
16
17 #include <string>
18
19
20 class LyXFont;
21
22 /// Support for \\mbox
23
24 class MathBoxInset : public MathNestInset {
25 public:
26         ///
27         explicit MathBoxInset(std::string const & name);
28         ///
29         virtual std::auto_ptr<InsetBase> clone() const;
30         ///
31         mode_type currentMode() const { return TEXT_MODE; }
32         ///
33         void metrics(MetricsInfo & mi, Dimension & dim) const;
34         ///
35         void draw(PainterInfo & pi, int x, int y) const;
36         ///
37         void write(WriteStream & os) const;
38         ///
39         void normalize(NormalStream & ns) const;
40         ///
41         void infoize(std::ostream & os) const;
42
43 private:
44         ///
45         std::string name_;
46 };
47
48
49 #endif