~ubuntu-branches/ubuntu/utopic/tcm/utopic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
////////////////////////////////////////////////////////////////////////////////
//
// This file is part of Toolkit for Conceptual Modeling (TCM).
// (c) copyright 1995, Vrije Universiteit Amsterdam.
// Author: Frank Dehne (frank@cs.vu.nl).
//
// TCM is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// TCM is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with TCM; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA.
////////////////////////////////////////////////////////////////////////////////
#include "grafport.h"
#include "line.h"
#include "shapeview.h"
#include "diagramviewer.h"
#include "draghandlecmd.h"

DragHandleCmd::DragHandleCmd(Line *l, unsigned n): DragShapeCmd(l) {
	line = l;
	handleNr = n;
	oldPt = *(*line->GetLine())[handleNr];
}

void DragHandleCmd::CalcPoints() {
	oldPt = *(*line->GetLine())[handleNr];
	Point pt = oldPt;
	pt = pt + *GetDelta();
	if (pt.x <= 0)
		pt.x = Shape::HANDLE_WIDTH/2;
	if (pt.y <= 0)
		pt.y = Shape::HANDLE_WIDTH/2;
	GetView()->Snap(&pt);
	newPt = pt;
}

void DragHandleCmd::Erase() {
	line->Undraw();
	CalcPoints();
}

void DragHandleCmd::Redraw() {
	line->CalcPosition();
	line->Draw();
}

void DragHandleCmd::Execute() {
	CalcPoints();
	if (newPt == oldPt) {
		SayAborted();
		Abort();
		return;
	}
	Command::Execute();
	Executable();
}

void DragHandleCmd::Executable() {
	line->Undraw();
	line->SetPoint(&newPt, handleNr);
	line->CalcEndPoint(&newPt, handleNr);
	Redraw();
	if (Toolkit::EditorWithInterEdgeConnections(GetMainWindow()->GetTool()))
                line->GetView()->GetViewer()->ShapePositionUpdate(line);
}

void DragHandleCmd::UnExecute() {
	Command::UnExecute();
	ReverseDelta();
	line->Undraw();
	line->SetPoint(&oldPt, handleNr);
	line->CalcEndPoint(&oldPt, handleNr);
	Redraw();
	if (Toolkit::EditorWithInterEdgeConnections(GetMainWindow()->GetTool()))
                line->GetView()->GetViewer()->ShapePositionUpdate(line);
}

void DragHandleCmd::ReverseDelta() {
	Point virtualPt = Point (oldPt + *GetDelta());
	Point virtualDelta = newPt - virtualPt; 
	Point d = *GetDelta() + virtualDelta;
	d = -d;
	SetDelta(&d);
}

void DragHandleCmd::DrawLines(const Point *p1, const Point *p2, 
				const Point *p3) {
	// feedback of handle
	GetGrafport()->SetLineStyle(LineStyle::DOTTED);
	GetGrafport()->SetLineWidth(1);
	GetGrafport()->SetForegroundColor("black");
	GetGrafport()->DrawRectangle(p1->x - Shape::HANDLE_WIDTH/2, 
		p1->y - Shape::HANDLE_WIDTH/2, 
		Shape::HANDLE_WIDTH, Shape::HANDLE_WIDTH);
	// feedback of lines
	GetGrafport()->DrawLine(p1->x, p1->y, p2->x, p2->y);
	GetGrafport()->DrawLine(p1->x, p1->y, p3->x, p3->y);
}

void DragHandleCmd::DrawOutLine(const Point *d) {
	Point p1 = oldPt + ScaleCorrect(d);
	GetView()->Snap(&p1);
	Point p2, p3;
	// get left and right line segments
	if (check(line->GetSegments(oldPt, &p2, &p3)))
		DrawLines(&p1, &p2, &p3);
}