File: hdDrawing.cpp

package info (click to toggle)
pgadmin3 1.20.0~beta2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 73,704 kB
  • ctags: 18,591
  • sloc: cpp: 193,786; ansic: 18,736; sh: 5,154; pascal: 1,120; yacc: 927; makefile: 516; lex: 421; xml: 126; perl: 40
file content (245 lines) | stat: -rw-r--r-- 5,127 bytes parent folder | download
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// hdDrawing.cpp - Main storage class for all objects of the diagram,
// their functions are used by model and shouldn't be called directly
//////////////////////////////////////////////////////////////////////////

#include "pgAdmin3.h"

// wxWindows headers
#include <wx/wx.h>

// App headers
#include "hotdraw/main/hdDrawing.h"
#include "hotdraw/main/hdDrawingView.h"
#include "hotdraw/main/hdDrawingEditor.h"
#include "hotdraw/utilities/hdArrayCollection.h"
#include "hotdraw/utilities/hdRect.h"
#include "hotdraw/figures/hdIFigure.h"


hdDrawing::hdDrawing(hdDrawingEditor *owner)
{
	figures = new hdCollection(new hdArrayCollection());
	selection =  new hdCollection(new hdArrayCollection());
	usedView = NULL;
	ownerEditor = owner;
	drawingName = wxEmptyString;
}

hdDrawing::~hdDrawing()
{
	//clear selection
	if(selection)
	{
		selection->removeAll();
		delete selection;
	}

	//Cannot delete figures, because they belong to model not to diagram
	hdIFigure *tmp;
	while(figures->count() > 0)
	{
		tmp = (hdIFigure *) figures->getItemAt(0);
		figures->removeItemAt(0);
	}

	if(figures)
		delete figures;
}

void hdDrawing::add(hdIFigure *figure)
{
	if(figures)
		figures->addItem(figure);
}

void hdDrawing::remove(hdIFigure *figure)
{
	if(figures)
	{
		figures->removeItem(figure);
		if(usedView)
			figure->moveTo(usedView->getIdx(), -1, -1);
	}
}

bool hdDrawing::includes(hdIFigure *figure)
{
	if(figures)
		return figures->existsObject(figure);
	return false;
}

hdIFigure *hdDrawing::findFigure(int posIdx, int x, int y)
{
	hdIFigure *tmp = NULL, *out = NULL;
	hdIteratorBase *iterator = figures->createIterator();
	while(iterator->HasNext())
	{
		tmp = (hdIFigure *)iterator->Next();
		if(tmp->containsPoint(posIdx, x, y))
		{
			out = tmp;
			break;
		}
	}

	delete iterator;;

	return out;
}

void hdDrawing::recalculateDisplayBox(int posIdx)
{
	bool first = true;
	hdIFigure *figure = NULL;

	hdIteratorBase *iterator = figures->createIterator();
	while(iterator->HasNext())
	{
		figure = (hdIFigure *)iterator->Next();
		if(first)
		{
			displayBox = figure->displayBox().gethdRect(posIdx);
			first = false;
		}
		else
		{
			displayBox.add(figure->displayBox().gethdRect(posIdx));
		}
	}

	delete iterator;
}

void hdDrawing::bringToFront(hdIFigure *figure)
{
	//To bring to front this figure need to be at last position when is draw
	//because this reason sendToBack (last position) is used.
	figures->sendToBack(figure);
}

void hdDrawing::sendToBack(hdIFigure *figure)
{
	//To send to back this figure need to be at first position when is draw
	//because this reason bringToFront (1st position) is used.
	figures->bringToFront(figure);
}

hdRect &hdDrawing::DisplayBox()
{
	return displayBox;
}

hdIteratorBase *hdDrawing::figuresEnumerator()
{
	return figures->createIterator();
}

hdIteratorBase *hdDrawing::figuresInverseEnumerator()
{
	return figures->createDownIterator();
}

void hdDrawing::deleteAllFigures()
{
	selection->removeAll();

	hdIFigure *tmp;
	while(figures->count() > 0)
	{
		tmp = (hdIFigure *) figures->getItemAt(0);
		figures->removeItemAt(0);
		delete tmp;
	}
	//handles delete it together with figures
}

void hdDrawing::removeAllFigures()
{
	selection->removeAll();

	hdIFigure *tmp;
	while(figures->count() > 0)
	{
		tmp = (hdIFigure *) figures->getItemAt(0);
		figures->removeItemAt(0);
		if(usedView)
			tmp->moveTo(usedView->getIdx(), -1, -1);
	}
}

void hdDrawing::deleteSelectedFigures()
{
	//Allow to customize delete dialog at Editor
	ownerEditor->remOrDelSelFigures(usedView->getIdx());
}

void hdDrawing::addToSelection(hdIFigure *figure)
{
	if(!selection)
	{
		selection = new hdCollection(new hdArrayCollection());
	}
	if(figure)
	{
		figure->setSelected(usedView->getIdx(), true);
		selection->addItem(figure);
	}
}

void hdDrawing::addToSelection(hdCollection *figures)
{
}

void hdDrawing::removeFromSelection(hdIFigure *figure)
{
	figure->setSelected(usedView->getIdx(), false);
	if(selection)
		selection->removeItem(figure);
}


void hdDrawing::toggleSelection(hdIFigure *figure)
{
	if(figure->isSelected(usedView->getIdx()) &&	selection->existsObject(figure))
		selection->removeItem(figure);
	else if(!figure->isSelected(usedView->getIdx()) && this->includes(figure))
		selection->addItem(figure);

	figure->setSelected(usedView->getIdx(), !figure->isSelected(usedView->getIdx()));
}

void hdDrawing::clearSelection()
{
	hdIFigure *tmp = NULL;
	hdIteratorBase *iterator = selection->createIterator();
	while(iterator->HasNext())
	{
		tmp = (hdIFigure *)iterator->Next();
		tmp->setSelected(usedView->getIdx(), false);
	}
	selection->removeAll();
	delete iterator;
}

bool hdDrawing::isFigureSelected(hdIFigure *figure)
{
	return selection->existsObject(figure);
}

hdIteratorBase *hdDrawing::selectionFigures()
{
	return selection->createIterator();
}

int hdDrawing::countSelectedFigures()
{
	return selection->count();
}