]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathFracBase.h
* up/down jumps between macro parameters
[lyx.git] / src / mathed / InsetMathFracBase.h
1 // -*- C++ -*-
2 /**
3  * \file InsetMathFracBase.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_FRACBASE_H
13 #define MATH_FRACBASE_H
14
15 #include "InsetMathNest.h"
16
17
18 namespace lyx {
19
20
21 class InsetMathFracBase : public InsetMathNest {
22 public:
23         ///
24         InsetMathFracBase();
25         ///
26         bool idxUpDown(Cursor &, bool up) const;
27         ///
28         bool idxLeft(Cursor &) const;
29         ///
30         bool idxRight(Cursor &) const;
31 };
32
33
34
35 } // namespace lyx
36 #endif