summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/erasedrawmode.h
authorleseb <leseb>2002-03-27 17:17:06 (UTC)
committer leseb <leseb>2002-03-27 17:17:06 (UTC)
commit7578abbb11ce2dbae3c54ab7051ad2b39d31360b (patch) (side-by-side diff)
treed87912e163039608f6c1c2dfcdab2f99010df118 /noncore/graphics/drawpad/erasedrawmode.h
parent4372bb8e59eb4b0d2fa5fba8f6525dc14873f239 (diff)
downloadopie-7578abbb11ce2dbae3c54ab7051ad2b39d31360b.zip
opie-7578abbb11ce2dbae3c54ab7051ad2b39d31360b.tar.gz
opie-7578abbb11ce2dbae3c54ab7051ad2b39d31360b.tar.bz2
Rename drawmode -> tool
Diffstat (limited to 'noncore/graphics/drawpad/erasedrawmode.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/erasedrawmode.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/noncore/graphics/drawpad/erasedrawmode.h b/noncore/graphics/drawpad/erasedrawmode.h
deleted file mode 100644
index c64b010..0000000
--- a/noncore/graphics/drawpad/erasedrawmode.h
+++ b/dev/null
@@ -1,36 +0,0 @@
-/***************************************************************************
- * *
- * DrawPad - a drawing program for Opie Environment *
- * *
- * (C) 2002 by S. Prud'homme <prudhomme@laposte.net> *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
-#ifndef ERASEDRAWMODE_H
-#define ERASEPOINTDRAWMODE_H
-
-#include "drawmode.h"
-
-#include <qpointarray.h>
-
-class EraseDrawMode : public DrawMode
-{
-public:
- EraseDrawMode(DrawPad* drawPad, DrawPadCanvas* drawPadCanvas);
- ~EraseDrawMode();
-
- void mousePressEvent(QMouseEvent* e);
- void mouseReleaseEvent(QMouseEvent* e);
- void mouseMoveEvent(QMouseEvent* e);
-
-private:
- bool m_mousePressed;
- QPointArray m_polyline;
-};
-
-#endif // ERASEDRAWMODE_H