summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/rectangledrawmode.h
Unidiff
Diffstat (limited to 'noncore/graphics/drawpad/rectangledrawmode.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/rectangledrawmode.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/rectangledrawmode.h b/noncore/graphics/drawpad/rectangledrawmode.h
new file mode 100644
index 0000000..62b85b1
--- a/dev/null
+++ b/noncore/graphics/drawpad/rectangledrawmode.h
@@ -0,0 +1,36 @@
1/***************************************************************************
2 * *
3 * DrawPad - a drawing program for Opie Environment *
4 * *
5 * (C) 2002 by S. Prud'homme <prudhomme@laposte.net> *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 ***************************************************************************/
13
14#ifndef RECTANGLEDRAWMODE_H
15#define RECTANGLEDRAWMODE_H
16
17#include "drawmode.h"
18
19#include <qpointarray.h>
20
21class RectangleDrawMode : public DrawMode
22{
23public:
24 RectangleDrawMode(DrawPad* drawPad, DrawPadCanvas* drawPadCanvas);
25 ~RectangleDrawMode();
26
27 void mousePressEvent(QMouseEvent* e);
28 void mouseReleaseEvent(QMouseEvent* e);
29 void mouseMoveEvent(QMouseEvent* e);
30
31private:
32 bool m_mousePressed;
33 QPointArray m_polyline;
34};
35
36#endif // RECTANGLEDRAWMODE_H