]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_undersetinset.h
move around stuff, remove unneeded declarations etc
[lyx.git] / src / mathed / math_undersetinset.h
index 35ed008fee2a534be75c964506031d01a61dae2b..002ff0d7bd7465d061bfd73bc8e4cc0fc03366c5 100644 (file)
@@ -1,31 +1,39 @@
 // -*- C++ -*-
+/**
+ * \file math_undersetinset.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_UNDERSETINSET_H
 #define MATH_UNDERSETINSET_H
 
-#include "math_fracbase.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "math_fracbase.h"
 
-/** Underset objects
-    \author André Pönitz
- */
+/// Inset for underset
 class MathUndersetInset : public MathFracbaseInset {
 public:
        ///
-       MathUndersetInset();
+       std::auto_ptr<InsetBase> clone() const;
        ///
-       MathInset * clone() const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void draw(Painter &, int x, int y) const;
-
+       bool idxFirst(LCursor & cur) const;
+       ///
+       bool idxLast(LCursor & cur) const;
+       ///
+       bool idxUpDown(LCursor & cur, bool up) const;
        ///
-       void write(WriteStream & os) const;
+       void write(WriteStream & ws) const;
        ///
-       void normalize(NormalStream &) const;
+       void normalize(NormalStream & ns) const;
 };
 
 #endif