]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_accentinset.h
fix pullArg when pressing <Delete> at the end of an cell
[lyx.git] / src / mathed / math_accentinset.h
index b6d29b4de8cdee79862b8a9cea9120030b250b94..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,39 +0,0 @@
-// -*- C++ -*-
-#ifndef MATH_ACCENTINSET_H
-#define MATH_ACCENTINSET_H
-
-#include "math_inset.h"
-
-/// Accents
-class MathAccentInset: public MathedInset {
-public:
-       ///
-       MathAccentInset(byte, MathedTextCodes, int, short st = LM_ST_TEXT);
-       ///
-       MathAccentInset(MathedInset *, int, short st = LM_ST_TEXT);
-       ///
-       ~MathAccentInset();
-       ///
-       MathedInset * Clone();
-       ///
-       void draw(Painter &, int, int);
-       ///
-       void Write(std::ostream &, bool fragile);
-       ///
-       void Metrics();
-       ///
-       int getAccentCode() const { return code; }
-       
-protected:
-       ///
-       byte c;
-       ///
-       MathedTextCodes fn;
-       ///
-       int code;
-       ///
-       MathedInset * inset;
-       ///
-       int dh, dy;
-};
-#endif