1 // drawlineaction.cpp: Action class for drawing lines
3 // Part of the Architektonas Project
4 // (C) 2011 Underground Software
5 // See the README and GPLv3 files for licensing and warranty information
7 // JLH = James Hammons <jlhamm@acm.org>
10 // --- ---------- ------------------------------------------------------------
11 // JLH 10/04/2011 Created this file
12 // JLH 11/07/2011 Made it so this class actually does something ;-)
15 #include "drawlineaction.h"
25 DrawLineAction::DrawLineAction(): state(0), line(NULL)
29 DrawLineAction::~DrawLineAction()
34 /*virtual*/ void DrawLineAction::Draw(Painter * painter)
36 painter->SetPen(QPen(Qt::red, 2.0, Qt::DotLine));
38 // I think stuff like crosshairs should be done in the DrawingView, tho
39 if (state == FIRST_POINT)
41 painter->DrawHandle(p1);
45 painter->DrawLine(p1, p2);
46 painter->DrawHandle(p2);
50 /*virtual*/ void DrawLineAction::MouseDown(Vector point)
52 if (state == FIRST_POINT)
58 /*virtual*/ void DrawLineAction::MouseMoved(Vector point)
60 if (state == FIRST_POINT)
66 /*virtual*/ void DrawLineAction::MouseReleased(void)
68 if (state == FIRST_POINT)
73 else if (state == NEXT_POINT)
75 // We create the new object here, and then pass it off to the
76 // DrawingView which stuffs it into the document.
77 line = new Line(p1, p2);
78 // We don't need no stinkin' sentinels, when we have signals & slots!
79 emit ObjectReady(line);