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