summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/filldrawmode.h
Unidiff
Diffstat (limited to 'noncore/graphics/drawpad/filldrawmode.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/drawpad/filldrawmode.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/filldrawmode.h b/noncore/graphics/drawpad/filldrawmode.h
new file mode 100644
index 0000000..1b7e7b5
--- a/dev/null
+++ b/noncore/graphics/drawpad/filldrawmode.h
@@ -0,0 +1,42 @@
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 FILLDRAWMODE_H
15#define FILLDRAWMODE_H
16
17#include "drawmode.h"
18
19#include <qimage.h>
20
21class FillDrawMode : public DrawMode
22{
23public:
24 FillDrawMode(DrawPad* drawPad, DrawPadCanvas* drawPadCanvas);
25 ~FillDrawMode();
26
27 void mousePressEvent(QMouseEvent* e);
28 void mouseReleaseEvent(QMouseEvent* e);
29 void mouseMoveEvent(QMouseEvent* e);
30
31private:
32 void fillEast(int x, int y);
33 void fillSouth(int x, int y);
34 void fillWest(int x, int y);
35 void fillNorth(int x, int y);
36
37 QImage m_image;
38 QRgb m_fillRgb;
39 QRgb m_oldRgb;
40};
41
42#endif // FILLDRAWMODE_H