]> git.lyx.org Git - lyx.git/blob - src/mathed/math_xyarrowinset.h
popup math panel on right mouse click
[lyx.git] / src / mathed / math_xyarrowinset.h
1 // -*- C++ -*-
2 #ifndef MATH_XYARROWINSET_H
3 #define MATH_ARROWINSET_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11
12 class MathXYArrowInset : public MathNestInset {
13 public: 
14         ///
15         MathXYArrowInset();
16         ///
17         MathInset * clone() const;
18         ///
19         void metrics(MathMetricsInfo const & st) const;
20         ///
21         MathXYArrowInset * asXYArrowInset() { return this; }
22         ///
23         void normalize();
24
25         ///
26         void write(WriteStream & os) const;
27         ///
28         void normalize(NormalStream &) const;
29 };
30
31 #endif