]> git.lyx.org Git - lyx.git/blob - src/mathed/math_fracbase.h
the up/down stuff reworked
[lyx.git] / src / mathed / math_fracbase.h
1 // -*- C++ -*-
2 #ifndef MATH_FRACBASE_H
3 #define MATH_FRACBASE_H
4
5 #include "math_nestinset.h"
6
7 #ifdef __GNUG__
8 #pragma interface
9 #endif
10
11 class MathFracbaseInset : public MathNestInset {
12 public:
13         ///
14         MathFracbaseInset();
15         ///
16         bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
17         ///
18         bool idxLeft(idx_type & idx, pos_type & pos) const;
19         ///
20         bool idxRight(idx_type & idx, pos_type & pos) const;
21 };
22
23 #endif