]> 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 7ff099451127060c60a4cd24f183a96ca7bd4931..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,43 +0,0 @@
-// -*- C++ -*-
-#ifndef MATH_ACCENTINSET_H
-#define MATH_ACCENTINSET_H
-
-#include "math_inset.h"
-#include "mathed/support.h"
-#include "math_defs.h"
-
-/// Accents
-class MathAccentInset : public MathInset {
-public:
-       ///
-       MathAccentInset(byte, MathTextCodes, int);
-       ///
-       MathAccentInset(MathInset *, int);
-       ///
-       ~MathAccentInset();
-       ///
-       MathInset *  Clone() const;
-       ///
-       void draw(Painter &, int, int);
-       ///
-       void Write(std::ostream &, bool fragile) const;
-       ///
-       void WriteNormal(std::ostream &) const;
-       ///
-       void Metrics(MathStyles st);
-       ///
-       int getAccentCode() const;
-protected:
-       ///
-       byte c;
-       ///
-       MathTextCodes fn;
-       ///
-       int code;
-       ///
-       MathInset * inset;
-       ///
-       int dh, dy;
-};
-
-#endif