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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
|
/**
* $Id: mxSpaceManager.js,v 1.9 2010-01-02 09:45:15 gaudenz Exp $
* Copyright (c) 2006-2010, JGraph Ltd
*/
/**
* Class: mxSpaceManager
*
* In charge of moving cells after a resize.
*
* Constructor: mxSpaceManager
*
* Constructs a new automatic layout for the given graph.
*
* Arguments:
*
* graph - Reference to the enclosing graph.
*/
function mxSpaceManager(graph, shiftRightwards, shiftDownwards, extendParents)
{
this.resizeHandler = mxUtils.bind(this, function(sender, evt)
{
if (this.isEnabled())
{
this.cellsResized(evt.getProperty('cells'));
}
});
this.foldHandler = mxUtils.bind(this, function(sender, evt)
{
if (this.isEnabled())
{
this.cellsResized(evt.getProperty('cells'));
}
});
this.shiftRightwards = (shiftRightwards != null) ? shiftRightwards : true;
this.shiftDownwards = (shiftDownwards != null) ? shiftDownwards : true;
this.extendParents = (extendParents != null) ? extendParents : true;
this.setGraph(graph);
};
/**
* Extends mxEventSource.
*/
mxSpaceManager.prototype = new mxEventSource();
mxSpaceManager.prototype.constructor = mxSpaceManager;
/**
* Variable: graph
*
* Reference to the enclosing <mxGraph>.
*/
mxSpaceManager.prototype.graph = null;
/**
* Variable: enabled
*
* Specifies if event handling is enabled. Default is true.
*/
mxSpaceManager.prototype.enabled = true;
/**
* Variable: shiftRightwards
*
* Specifies if event handling is enabled. Default is true.
*/
mxSpaceManager.prototype.shiftRightwards = true;
/**
* Variable: shiftDownwards
*
* Specifies if event handling is enabled. Default is true.
*/
mxSpaceManager.prototype.shiftDownwards = true;
/**
* Variable: extendParents
*
* Specifies if event handling is enabled. Default is true.
*/
mxSpaceManager.prototype.extendParents = true;
/**
* Variable: resizeHandler
*
* Holds the function that handles the move event.
*/
mxSpaceManager.prototype.resizeHandler = null;
/**
* Variable: foldHandler
*
* Holds the function that handles the fold event.
*/
mxSpaceManager.prototype.foldHandler = null;
/**
* Function: isCellIgnored
*
* Sets the graph that the layouts operate on.
*/
mxSpaceManager.prototype.isCellIgnored = function(cell)
{
return !this.getGraph().getModel().isVertex(cell);
};
/**
* Function: isCellShiftable
*
* Sets the graph that the layouts operate on.
*/
mxSpaceManager.prototype.isCellShiftable = function(cell)
{
return this.getGraph().getModel().isVertex(cell) &&
this.getGraph().isCellMovable(cell);
};
/**
* Function: isEnabled
*
* Returns true if events are handled. This implementation
* returns <enabled>.
*/
mxSpaceManager.prototype.isEnabled = function()
{
return this.enabled;
};
/**
* Function: setEnabled
*
* Enables or disables event handling. This implementation
* updates <enabled>.
*
* Parameters:
*
* enabled - Boolean that specifies the new enabled state.
*/
mxSpaceManager.prototype.setEnabled = function(value)
{
this.enabled = value;
};
/**
* Function: isShiftRightwards
*
* Returns true if events are handled. This implementation
* returns <enabled>.
*/
mxSpaceManager.prototype.isShiftRightwards = function()
{
return this.shiftRightwards;
};
/**
* Function: setShiftRightwards
*
* Enables or disables event handling. This implementation
* updates <enabled>.
*
* Parameters:
*
* enabled - Boolean that specifies the new enabled state.
*/
mxSpaceManager.prototype.setShiftRightwards = function(value)
{
this.shiftRightwards = value;
};
/**
* Function: isShiftDownwards
*
* Returns true if events are handled. This implementation
* returns <enabled>.
*/
mxSpaceManager.prototype.isShiftDownwards = function()
{
return this.shiftDownwards;
};
/**
* Function: setShiftDownwards
*
* Enables or disables event handling. This implementation
* updates <enabled>.
*
* Parameters:
*
* enabled - Boolean that specifies the new enabled state.
*/
mxSpaceManager.prototype.setShiftDownwards = function(value)
{
this.shiftDownwards = value;
};
/**
* Function: isExtendParents
*
* Returns true if events are handled. This implementation
* returns <enabled>.
*/
mxSpaceManager.prototype.isExtendParents = function()
{
return this.extendParents;
};
/**
* Function: setShiftDownwards
*
* Enables or disables event handling. This implementation
* updates <enabled>.
*
* Parameters:
*
* enabled - Boolean that specifies the new enabled state.
*/
mxSpaceManager.prototype.setExtendParents = function(value)
{
this.extendParents = value;
};
/**
* Function: getGraph
*
* Returns the graph that this layout operates on.
*/
mxSpaceManager.prototype.getGraph = function()
{
return this.graph;
};
/**
* Function: setGraph
*
* Sets the graph that the layouts operate on.
*/
mxSpaceManager.prototype.setGraph = function(graph)
{
if (this.graph != null)
{
this.graph.removeListener(this.resizeHandler);
this.graph.removeListener(this.foldHandler);
}
this.graph = graph;
if (this.graph != null)
{
this.graph.addListener(mxEvent.RESIZE_CELLS, this.resizeHandler);
this.graph.addListener(mxEvent.FOLD_CELLS, this.foldHandler);
}
};
/**
* Function: cellsResized
*
* Called from <moveCellsIntoParent> to invoke the <move> hook in the
* automatic layout of each modified cell's parent. The event is used to
* define the x- and y-coordinates passed to the move function.
*
* Parameters:
*
* cell - Array of <mxCells> that have been resized.
*/
mxSpaceManager.prototype.cellsResized = function(cells)
{
if (cells != null)
{
var model = this.graph.getModel();
// Raising the update level should not be required
// since only one call is made below
model.beginUpdate();
try
{
for (var i = 0; i < cells.length; i++)
{
if (!this.isCellIgnored(cells[i]))
{
this.cellResized(cells[i]);
break;
}
}
}
finally
{
model.endUpdate();
}
}
};
/**
* Function: cellResized
*
* Called from <moveCellsIntoParent> to invoke the <move> hook in the
* automatic layout of each modified cell's parent. The event is used to
* define the x- and y-coordinates passed to the move function.
*
* Parameters:
*
* cell - <mxCell> that has been resized.
*/
mxSpaceManager.prototype.cellResized = function(cell)
{
var graph = this.getGraph();
var view = graph.getView();
var model = graph.getModel();
var state = view.getState(cell);
var pstate = view.getState(model.getParent(cell));
if (state != null &&
pstate != null)
{
var cells = this.getCellsToShift(state);
var geo = model.getGeometry(cell);
if (cells != null &&
geo != null)
{
var tr = view.translate;
var scale = view.scale;
var x0 = state.x - pstate.origin.x - tr.x * scale;
var y0 = state.y - pstate.origin.y - tr.y * scale;
var right = state.x + state.width;
var bottom = state.y + state.height;
var dx = state.width - geo.width * scale + x0 - geo.x * scale;
var dy = state.height - geo.height * scale + y0 - geo.y * scale;
var fx = 1 - geo.width * scale / state.width;
var fy = 1 - geo.height * scale / state.height;
model.beginUpdate();
try
{
for (var i = 0; i < cells.length; i++)
{
if (cells[i] != cell &&
this.isCellShiftable(cells[i]))
{
this.shiftCell(cells[i], dx, dy, x0, y0, right, bottom, fx, fy,
this.isExtendParents() &&
graph.isExtendParent(cells[i]));
}
}
}
finally
{
model.endUpdate();
}
}
}
};
/**
* Function: shiftCell
*
* Called from <moveCellsIntoParent> to invoke the <move> hook in the
* automatic layout of each modified cell's parent. The event is used to
* define the x- and y-coordinates passed to the move function.
*
* Parameters:
*
* cell - Array of <mxCells> that have been moved.
* evt - Mouse event that represents the mousedown.
*/
mxSpaceManager.prototype.shiftCell = function(cell, dx, dy, Ox0, y0, right,
bottom, fx, fy, extendParent)
{
var graph = this.getGraph();
var state = graph.getView().getState(cell);
if (state != null)
{
var model = graph.getModel();
var geo = model.getGeometry(cell);
if (geo != null)
{
model.beginUpdate();
try
{
if (this.isShiftRightwards())
{
if (state.x >= right)
{
geo = geo.clone();
geo.translate(-dx, 0);
}
else
{
var tmpDx = Math.max(0, state.x - x0);
geo = geo.clone();
geo.translate(-fx * tmpDx, 0);
}
}
if (this.isShiftDownwards())
{
if (state.y >= bottom)
{
geo = geo.clone();
geo.translate(0, -dy);
}
else
{
var tmpDy = Math.max(0, state.y - y0);
geo = geo.clone();
geo.translate(0, -fy * tmpDy);
}
}
if (geo != model.getGeometry(cell))
{
model.setGeometry(cell, geo);
// Parent size might need to be updated if this
// is seen as part of the resize
if (extendParent)
{
graph.extendParent(cell);
}
}
}
finally
{
model.endUpdate();
}
}
}
};
/**
* Function: getCellsToShift
*
* Returns the cells to shift after a resize of the
* specified <mxCellState>.
*/
mxSpaceManager.prototype.getCellsToShift = function(state)
{
var graph = this.getGraph();
var parent = graph.getModel().getParent(state.cell);
var down = this.isShiftDownwards();
var right = this.isShiftRightwards();
return graph.getCellsBeyond(state.x + ((down) ? 0 : state.width),
state.y + ((down && right) ? 0 : state.height), parent, right, down);
};
/**
* Function: destroy
*
* Removes all handlers from the <graph> and deletes the reference to it.
*/
mxSpaceManager.prototype.destroy = function()
{
this.setGraph(null);
};
|