]> git.lyx.org Git - lyx.git/blob - src/mathed/math_frameboxinset.h
remove noload/don't typeset
[lyx.git] / src / mathed / math_frameboxinset.h
1 // -*- C++ -*-
2 #ifndef MATH_FRAMEBOXINSET_H
3 #define MATH_FRAMEBOXINSET_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /** Extra nesting
12     \author André Pönitz
13 */
14
15 class MathFrameboxInset : public MathNestInset {
16 public:
17         ///
18         MathFrameboxInset();
19         ///
20         MathInset * clone() const;
21         ///
22         void metrics(MathMetricsInfo & mi) const;
23         ///
24         void draw(MathPainterInfo & pi, int x, int y) const;
25         ///
26         void write(WriteStream & os) const;
27         /// write normalized content
28         void normalize(NormalStream & ns) const;
29 private:
30         /// width of '[' in current font
31         mutable int w_;
32 };
33
34 #endif