]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.h
mathed uglyfication
[lyx.git] / src / mathed / math_fracbase.h
index 08f05017d5a9212623f6040432c8acbbbf0dddb6..3e4549b9f1b89c8ca5739bb5f9db8c4f4ac1b153 100644 (file)
@@ -1,25 +1,30 @@
 // -*- C++ -*-
+/**
+ * \file math_fracbase.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_FRACBASE_H
 #define MATH_FRACBASE_H
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 class MathFracbaseInset : public MathNestInset {
 public:
        ///
        MathFracbaseInset();
        ///
-       bool idxUp(MathInset::idx_type &, MathInset::pos_type &) const;
-       ///
-       bool idxDown(MathInset::idx_type &, MathInset::pos_type &) const;
+       bool idxUpDown(BufferView &, bool up, int targetx) const;
        ///
-       bool idxLeft(MathInset::idx_type &, MathInset::pos_type &) const;
+       bool idxLeft(BufferView &) const;
        ///
-       bool idxRight(MathInset::idx_type &, MathInset::pos_type &) const;
+       bool idxRight(BufferView &) const;
 };
 
 #endif