]> git.lyx.org Git - lyx.git/blob - src/mathed/math_kerninset.h
69da69f96152c45d59cba63f19a15b1d9685cbb7
[lyx.git] / src / mathed / math_kerninset.h
1 // -*- C++ -*-
2 #ifndef MATH_CHEATINSET_H
3 #define MATH_CHEATINSET_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 /// Some hack for visual effects
12
13 class MathKernInset : public MathNestInset {
14 public:
15         ///
16         MathKernInset();
17         ///
18         MathInset * clone() const;
19         ///
20         void draw(Painter &, int x, int y) const;
21         ///
22         void write(WriteStream & os) const;
23         ///
24         void normalize(NormalStream & ns) const;
25         ///
26         void metrics(MathMetricsInfo const &cwmist) const;
27 };
28 #endif