summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/filledrectangletool.cpp
Unidiff
Diffstat (limited to 'noncore/graphics/drawpad/filledrectangletool.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/filledrectangletool.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/filledrectangletool.cpp b/noncore/graphics/drawpad/filledrectangletool.cpp
new file mode 100644
index 0000000..388acbd
--- a/dev/null
+++ b/noncore/graphics/drawpad/filledrectangletool.cpp
@@ -0,0 +1,43 @@
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#include "filledrectangletool.h"
15
16#include "drawpad.h"
17#include "drawpadcanvas.h"
18
19FilledRectangleTool::FilledRectangleTool(DrawPad* drawPad, DrawPadCanvas* drawPadCanvas)
20 : ShapeTool(drawPad, drawPadCanvas)
21{
22}
23
24FilledRectangleTool::~FilledRectangleTool()
25{
26}
27
28void FilledRectangleTool::drawFinalShape(QPainter& p)
29{
30 p.setRasterOp(Qt::NotROP);
31 p.drawRect(QRect(m_polyline[2], m_polyline[0]));
32 p.setRasterOp(Qt::CopyROP);
33 p.fillRect(QRect(m_polyline[2], m_polyline[0]), m_pDrawPad->brush());
34 p.setPen(m_pDrawPad->pen());
35 p.drawRect(QRect(m_polyline[2], m_polyline[0]));
36}
37
38void FilledRectangleTool::drawTemporaryShape(QPainter& p)
39{
40 p.setRasterOp(Qt::NotROP);
41 p.drawRect(QRect(m_polyline[2], m_polyline[1]));
42 p.drawRect(QRect(m_polyline[2], m_polyline[0]));
43}