]> 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 b161cca9b1912c29eea7785252b565772e27eaff..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,49 +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 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 WriteNormal(std::ostream &);
-       ///
-       void Metrics();
-       ///
-       int getAccentCode() const;
-protected:
-       ///
-       byte c;
-       ///
-       MathedTextCodes fn;
-       ///
-       int code;
-       ///
-       MathedInset * inset;
-       ///
-       int dh, dy;
-};
-
-
-inline
-int MathAccentInset::getAccentCode() const
-{
-       return code;
-}
-#endif