wisemapping-open-source/mindplot/src/main/javascript/Designer.js

736 lines
26 KiB
JavaScript
Raw Normal View History

2009-06-07 20:59:43 +02:00
/*
2011-07-27 19:53:32 +02:00
* Copyright [2011] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2011-10-04 06:16:29 +02:00
mindplot.Designer = new Class({
Extends: Events,
2012-02-02 00:31:40 +01:00
initialize: function(options, divElement) {
$assert(options, "options must be defined");
$assert(options.zoom, "zoom must be defined");
2011-07-27 19:53:32 +02:00
$assert(divElement, "divElement must be defined");
2012-02-02 00:31:40 +01:00
this._options = options;
2012-02-04 01:21:29 +01:00
// Set full div elem render area ...
divElement.setStyles(options.size);
// Dispatcher manager ...
2011-08-05 03:12:53 +02:00
var commandContext = new mindplot.CommandContext(this);
2012-02-02 16:28:54 +01:00
if (!$defined(options.collab) || options.collab == 'standalone') {
this._actionDispatcher = new mindplot.StandaloneActionDispatcher(commandContext);
} else {
this._actionDispatcher = new mindplot.BrixActionDispatcher(commandContext);
}
2011-08-05 03:12:53 +02:00
this._actionDispatcher.addEvent("modelUpdate", function(event) {
this.fireEvent("modelUpdate", event);
2011-08-05 03:12:53 +02:00
}.bind(this));
2011-08-05 03:12:53 +02:00
mindplot.ActionDispatcher.setInstance(this._actionDispatcher);
2012-02-02 00:31:40 +01:00
this._model = new mindplot.DesignerModel(options);
2011-07-27 19:53:32 +02:00
// Init Screen manager..
var screenManager = new mindplot.ScreenManager(divElement);
this._workspace = new mindplot.Workspace(screenManager, this._model.getZoom());
2012-01-31 00:17:47 +01:00
// Init layout manager ...
this._eventBussDispatcher = new mindplot.layout.EventBusDispatcher(this.getModel());
2011-07-27 19:53:32 +02:00
// Register events
2012-02-02 00:31:40 +01:00
if (!this.isReadOnly()) {
this._registerEvents();
2012-01-31 00:17:47 +01:00
this._dragManager = this._buildDragManager(this._workspace);
}
2011-10-09 22:59:16 +02:00
this._relPivot = new mindplot.RelationshipPivot(this._workspace, this);
2012-02-04 01:21:29 +01:00
// Set editor working area ...
this.setViewPort(options.viewPort);
},
_registerEvents : function() {
// Register mouse events ...
this._registerMouseEvents();
// Register keyboard events ...
2011-08-20 15:50:48 +02:00
mindplot.DesignerKeyboard.register(this);
},
_registerMouseEvents : function() {
var workspace = this._workspace;
var screenManager = workspace.getScreenManager();
// Initialize workspace event listeners.
2011-08-20 15:50:48 +02:00
screenManager.addEvent('update', function() {
// Topic must be set to his original state. All editors must be closed.
2011-10-09 22:59:16 +02:00
var topics = this.getModel().getTopics();
topics.forEach(function(object) {
2011-08-20 15:50:48 +02:00
object.closeEditors();
});
// Clean some selected nodes on event ..
if (this._cleanScreen)
this._cleanScreen();
}.bind(this));
// Deselect on click ...
screenManager.addEvent('click', function(event) {
this.onObjectFocusEvent(null, event);
}.bind(this));
// Create nodes on double click...
2012-01-17 04:51:13 +01:00
screenManager.addEvent('dblclick', function(event) {
if (workspace.isWorkspaceEventsEnabled()) {
2012-01-17 04:51:13 +01:00
var mousePos = screenManager.getWorkspaceMousePosition(event);
var centralTopic = this.getModel().getCentralTopic();
2012-01-17 04:51:13 +01:00
var model = this._createChildModel(centralTopic, mousePos);
this._actionDispatcher.addTopic(model, centralTopic.getId());
}
}.bind(this));
$(document).addEvent('mousewheel', function(event) {
if (event.wheel > 0) {
this.zoomIn(1.05);
}
else {
this.zoomOut(1.05);
}
}.bind(this));
2011-07-27 19:53:32 +02:00
},
2009-06-07 20:59:43 +02:00
_buildDragManager: function(workspace) {
2012-01-31 00:17:47 +01:00
var designerModel = this.getModel();
var dragConnector = new mindplot.DragConnector(designerModel, this._workspace);
var dragManager = new mindplot.DragManager(workspace, this._eventBussDispatcher);
var topics = designerModel.getTopics();
2012-01-31 00:17:47 +01:00
dragManager.addEvent('startdragging', function() {
// Enable all mouse events.
for (var i = 0; i < topics.length; i++) {
topics[i].setMouseEventsEnabled(false);
}
});
2012-01-31 00:17:47 +01:00
dragManager.addEvent('dragging', function(event, dragTopic) {
2012-01-18 05:26:39 +01:00
dragTopic.updateFreeLayout(event);
if (!dragTopic.isFreeLayoutOn(event)) {
// The node is being drag. Is the connection still valid ?
dragConnector.checkConnection(dragTopic);
if (!dragTopic.isVisible() && dragTopic.isConnected()) {
dragTopic.setVisibility(true);
}
2012-01-21 22:02:38 +01:00
}
});
2012-01-31 00:17:47 +01:00
dragManager.addEvent('enddragging', function(event, dragTopic) {
for (var i = 0; i < topics.length; i++) {
topics[i].setMouseEventsEnabled(true);
}
dragTopic.applyChanges(workspace);
});
2012-01-31 00:17:47 +01:00
return dragManager;
},
setViewPort : function(size) {
this._workspace.setViewPort(size);
var model = this.getModel();
this._workspace.setZoom(model.getZoom(), true);
},
2011-07-27 19:53:32 +02:00
2012-02-02 00:31:40 +01:00
_buildNodeGraph : function(model, readOnly) {
2011-07-27 19:53:32 +02:00
var workspace = this._workspace;
// Create node graph ...
2012-02-02 00:31:40 +01:00
var topic = mindplot.NodeGraph.create(model, {readOnly:readOnly});
2011-07-27 19:53:32 +02:00
// Append it to the workspace ...
this.getModel().addTopic(topic);
2011-08-20 15:50:48 +02:00
2011-07-27 19:53:32 +02:00
// Add Topic events ...
2012-02-02 00:31:40 +01:00
if (!readOnly) {
2011-08-20 15:50:48 +02:00
// If a node had gained focus, clean the rest of the nodes ...
2011-08-21 17:42:00 +02:00
topic.addEvent('mousedown', function(event) {
2011-08-20 15:50:48 +02:00
this.onObjectFocusEvent(topic, event);
}.bind(this));
// Register node listeners ...
if (topic.getType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
// Central Topic doesn't support to be dragged
2012-02-02 00:31:40 +01:00
this._dragManager.add(topic);
}
2011-08-20 15:50:48 +02:00
}
2011-07-27 19:53:32 +02:00
// Connect Topic ...
var isConnected = model.isConnected();
if (isConnected) {
// Improve this ...
var targetTopicModel = model.getParent();
var targetTopic = null;
var topics = this.getModel().getTopics();
2011-07-27 19:53:32 +02:00
for (var i = 0; i < topics.length; i++) {
var t = topics[i];
if (t.getModel() == targetTopicModel) {
targetTopic = t;
// Disconnect the node. It will be connected again later ...
model.disconnect();
break;
}
}
$assert(targetTopic, "Could not find a topic to connect");
topic.connectTo(targetTopic, workspace);
2009-06-07 20:59:43 +02:00
}
2011-10-04 06:16:29 +02:00
topic.addEvent('ontblur', function() {
var topics = this.getModel().filterSelectedTopics();
var rels = this.getModel().filterSelectedRelations();
if (topics.length == 0 || rels.length == 0) {
this.fireEvent('onblur');
}
}.bind(this));
topic.addEvent('ontfocus', function() {
var topics = this.getModel().filterSelectedTopics();
var rels = this.getModel().filterSelectedRelations();
if (topics.length == 1 || rels.length == 1) {
this.fireEvent('onfocus');
}
}.bind(this));
2011-07-27 19:53:32 +02:00
return topic;
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
onObjectFocusEvent : function(currentObject, event) {
2011-08-20 15:50:48 +02:00
// Close node editors ..
var topics = this.getModel().getTopics();
2011-08-20 15:50:48 +02:00
topics.forEach(function(topic) {
topic.closeEditors();
});
2011-08-05 06:06:56 +02:00
var model = this.getModel();
var objects = model.getObjects();
2011-08-20 15:50:48 +02:00
objects.forEach(function(object) {
// Disable all nodes on focus but not the current if Ctrl key isn't being pressed
2011-11-29 04:51:38 +01:00
if (!$defined(event) || (!event.control && !event.meta)) {
if (object.isOnFocus() && object != currentObject) {
object.setOnFocus(false);
2011-07-27 19:53:32 +02:00
}
2011-08-20 15:50:48 +02:00
}
});
2011-07-27 19:53:32 +02:00
},
2009-06-07 20:59:43 +02:00
selectAll : function() {
var model = this.getModel();
var objects = model.getObjects();
objects.forEach(function(object) {
object.setOnFocus(true);
});
},
deselectAll : function() {
var objects = this.getModel().getObjects();
objects.forEach(function(object) {
object.setOnFocus(false);
});
},
2011-08-25 05:01:17 +02:00
zoomOut : function(factor) {
if (!factor)
factor = 1.2;
var model = this.getModel();
var scale = model.getZoom() * factor;
if (scale <= 1.9) {
model.setZoom(scale);
this._workspace.setZoom(scale);
}
else {
$notify('No more zoom can be applied');
2011-08-25 05:01:17 +02:00
}
},
zoomIn : function(factor) {
if (!factor)
factor = 1.2;
var model = this.getModel();
var scale = model.getZoom() / factor;
2011-08-25 05:01:17 +02:00
2011-07-27 19:53:32 +02:00
if (scale >= 0.3) {
model.setZoom(scale);
2011-08-25 05:01:17 +02:00
this._workspace.setZoom(scale);
2011-07-27 19:53:32 +02:00
}
else {
$notify('No more zoom can be applied');
2011-07-27 19:53:32 +02:00
}
},
getModel : function() {
return this._model;
},
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
createChildForSelectedNode : function() {
2009-06-07 20:59:43 +02:00
var nodes = this.getModel().filterSelectedTopics();
2011-07-27 19:53:32 +02:00
if (nodes.length <= 0) {
// If there are more than one node selected,
$notify('Could not create a topic. Only one node must be selected.');
2011-07-27 19:53:32 +02:00
return;
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
}
2011-09-10 02:53:41 +02:00
if (nodes.length != 1) {
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
// If there are more than one node selected,
$notify('Could not create a topic. One topic must be selected.');
2011-07-27 19:53:32 +02:00
return;
}
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
// Add new node ...
2011-09-10 02:53:41 +02:00
var parentTopic = nodes[0];
var parentTopicId = parentTopic.getId();
2012-01-14 13:58:06 +01:00
var childModel = this._createChildModel(parentTopic);
2009-06-07 20:59:43 +02:00
// Execute event ...
this._actionDispatcher.addTopic(childModel, parentTopicId, true);
2011-08-20 15:50:48 +02:00
},
2009-06-07 20:59:43 +02:00
2012-01-17 04:51:13 +01:00
_createChildModel : function(topic, mousePos) {
2012-01-14 13:58:06 +01:00
// Create a new node ...
var model = topic.getModel();
var mindmap = model.getMindmap();
var childModel = mindmap.createNode(mindplot.model.INodeModel.MAIN_TOPIC_TYPE);
// Create a new node ...
var layoutManager = this._eventBussDispatcher.getLayoutManager();
var result = layoutManager.predict(topic.getId(), null, mousePos);
2012-01-14 13:58:06 +01:00
childModel.setOrder(result.order);
var position = result.position;
childModel.setPosition(position.x, position.y);
return childModel;
},
2011-07-27 19:53:32 +02:00
createSiblingForSelectedNode : function() {
var nodes = this.getModel().filterSelectedTopics();
2011-07-27 19:53:32 +02:00
if (nodes.length <= 0) {
// If there are more than one node selected,
$notify('Could not create a topic. Only one node must be selected.');
2011-07-27 19:53:32 +02:00
return;
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
}
if (nodes.length > 1) {
// If there are more than one node selected,
$notify('Could not create a topic. One topic must be selected.');
2011-07-27 19:53:32 +02:00
return;
}
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
var topic = nodes[0];
2011-09-08 15:03:42 +02:00
if (topic.getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
2011-07-27 19:53:32 +02:00
// Central topic doesn't have siblings ...
this.createChildForSelectedNode();
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
} else {
var parentTopic = topic.getOutgoingConnectedTopic();
2012-01-14 13:58:06 +01:00
var siblingModel = this._createSiblingModel(topic);
2011-07-27 19:53:32 +02:00
var parentTopicId = parentTopic.getId();
this._actionDispatcher.addTopic(siblingModel, parentTopicId, true);
2009-06-07 20:59:43 +02:00
}
2011-08-25 05:17:13 +02:00
},
2011-07-27 19:53:32 +02:00
2012-01-14 13:58:06 +01:00
_createSiblingModel : function(topic) {
var result = null;
var parentTopic = topic.getOutgoingConnectedTopic();
if (parentTopic != null) {
// Create a new node ...
var model = topic.getModel();
var mindmap = model.getMindmap();
result = mindmap.createNode(mindplot.model.INodeModel.MAIN_TOPIC_TYPE);
// Create a new node ...
var order = topic.getOrder() + 1;
result.setOrder(order);
result.setPosition(10, 10); // Set a dummy pisition ...
}
return result;
},
2011-10-09 22:59:16 +02:00
showRelPivot : function(event) {
// Current mouse position ....
2011-07-27 19:53:32 +02:00
var screen = this._workspace.getScreenManager();
var pos = screen.getWorkspaceMousePosition(event);
2011-10-09 22:59:16 +02:00
var selectedTopic = this.getModel().selectedTopic();
2011-07-27 19:53:32 +02:00
2011-10-09 22:59:16 +02:00
// create a connection ...
this._relPivot.start(selectedTopic, pos);
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-10-09 22:59:16 +02:00
connectByRelation : function(sourceTopic, targetTopic) {
$assert(sourceTopic, "sourceTopic can not be null");
$assert(targetTopic, "targetTopic can not be null");
2011-07-27 19:53:32 +02:00
// Create a new topic model ...
2011-10-09 23:38:41 +02:00
// @Todo: Model should not be modified from here ...
2011-07-27 19:53:32 +02:00
var mindmap = this.getMindmap();
2011-10-09 22:59:16 +02:00
var model = mindmap.createRelationship(sourceTopic.getModel().getId(), targetTopic.getModel().getId());
2011-10-09 23:38:41 +02:00
2011-10-09 22:59:16 +02:00
this._actionDispatcher.connectByRelation(model);
},
2011-07-27 19:53:32 +02:00
needsSave : function() {
2011-10-02 19:47:54 +02:00
//@Todo: Review all this ...
2011-10-15 18:23:27 +02:00
return this._actionDispatcher._actionRunner.hasBeenChanged();
2011-07-27 19:53:32 +02:00
},
2009-06-07 20:59:43 +02:00
getMindmapProperties : function() {
return {zoom:this.getModel().getZoom()};
},
2009-06-07 20:59:43 +02:00
2011-09-08 14:16:50 +02:00
loadMap : function(mindmapModel) {
$assert(mindmapModel, "mindmapModel can not be null");
this._mindmap = mindmapModel;
2009-06-07 20:59:43 +02:00
2012-02-04 16:51:50 +01:00
try {
// Init layout manager ...
var size = {width:25,height:25};
var layoutManager = new mindplot.layout.LayoutManager(mindmapModel.getCentralTopic().getId(), size);
layoutManager.addEvent('change', function(event) {
var id = event.getId();
var topic = this.getModel().findTopicById(id);
topic.setPosition(event.getPosition());
topic.setOrder(event.getOrder());
}.bind(this));
this._eventBussDispatcher.setLayoutManager(layoutManager);
2012-01-21 22:02:38 +01:00
2012-02-04 16:51:50 +01:00
// Building node graph ...
var branches = mindmapModel.getBranches();
for (var i = 0; i < branches.length; i++) {
// NodeModel -> NodeGraph ...
var nodeModel = branches[i];
var nodeGraph = this._nodeModelToNodeGraph(nodeModel, false);
2009-06-07 20:59:43 +02:00
2012-02-04 16:51:50 +01:00
// Update shrink render state...
nodeGraph.setBranchVisibility(true);
}
2011-11-14 01:18:34 +01:00
2012-02-04 16:51:50 +01:00
var relationships = mindmapModel.getRelationships();
for (var j = 0; j < relationships.length; j++) {
this._relationshipModelToRelationship(relationships[j]);
}
2009-06-07 20:59:43 +02:00
2012-02-04 16:51:50 +01:00
// Place the focus on the Central Topic
var centralTopic = this.getModel().getCentralTopic();
this.goToNode(centralTopic);
2012-01-10 03:50:52 +01:00
2012-02-04 16:51:50 +01:00
// Finally, sort the map ...
mindplot.EventBus.instance.fireEvent(mindplot.EventBus.events.DoLayout);
this.fireEvent('loadSuccess');
} catch(e) {
this.fireEvent('loadError',e);
}
},
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
getMindmap : function() {
return this._mindmap;
},
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
undo : function() {
2011-10-15 18:23:27 +02:00
// @Todo: This is a hack...
this._actionDispatcher._actionRunner.undo();
},
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
redo : function() {
2011-10-15 18:23:27 +02:00
this._actionDispatcher._actionRunner.redo();
},
2009-06-07 20:59:43 +02:00
2012-02-02 00:31:40 +01:00
isReadOnly : function() {
return this._options.readOnly;
},
2011-07-27 19:53:32 +02:00
_nodeModelToNodeGraph : function(nodeModel, isVisible) {
$assert(nodeModel, "Node model can not be null");
2012-01-12 04:49:18 +01:00
var children = nodeModel.getChildren().slice();
children = children.sort(function(a, b) {
return a.getOrder() - b.getOrder()
});
2012-01-12 04:49:18 +01:00
2012-02-02 00:31:40 +01:00
var nodeGraph = this._buildNodeGraph(nodeModel, this.isReadOnly());
2009-06-07 20:59:43 +02:00
2012-01-12 04:49:18 +01:00
if (isVisible) {
2011-07-27 19:53:32 +02:00
nodeGraph.setVisibility(isVisible);
2012-01-12 04:49:18 +01:00
}
2012-01-12 04:49:18 +01:00
this._workspace.appendChild(nodeGraph);
2011-07-27 19:53:32 +02:00
for (var i = 0; i < children.length; i++) {
var child = children[i];
if ($defined(child))
2011-08-05 06:06:56 +02:00
this._nodeModelToNodeGraph(child, false);
2011-07-27 19:53:32 +02:00
}
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
return nodeGraph;
2011-11-14 01:18:34 +01:00
},
2011-07-27 19:53:32 +02:00
_relationshipModelToRelationship : function(model) {
$assert(model, "Node model can not be null");
2011-10-09 22:59:16 +02:00
2011-07-27 19:53:32 +02:00
var relationship = this._buildRelationship(model);
var sourceTopic = relationship.getSourceTopic();
2011-10-09 22:59:16 +02:00
sourceTopic.connectByRelation(relationship);
2011-07-27 19:53:32 +02:00
var targetTopic = relationship.getTargetTopic();
2011-10-09 22:59:16 +02:00
targetTopic.connectByRelation(relationship);
2011-07-27 19:53:32 +02:00
relationship.setVisibility(sourceTopic.isVisible() && targetTopic.isVisible());
2011-10-09 22:59:16 +02:00
2011-07-27 19:53:32 +02:00
var workspace = this._workspace;
workspace.appendChild(relationship);
relationship.redraw();
return relationship;
2011-10-09 22:59:16 +02:00
},
2011-07-27 19:53:32 +02:00
createRelationship : function(model) {
this._mindmap.addRelationship(model);
return this._relationshipModelToRelationship(model);
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
removeRelationship : function(model) {
this._mindmap.removeRelationship(model);
var relationship = this._relationships[model.getId()];
var sourceTopic = relationship.getSourceTopic();
sourceTopic.removeRelationship(relationship);
var targetTopic = relationship.getTargetTopic();
targetTopic.removeRelationship(relationship);
this._workspace.removeChild(relationship);
delete this._relationships[model.getId()];
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-10-09 22:59:16 +02:00
_buildRelationship : function (model) {
2011-07-27 19:53:32 +02:00
var elem = this;
2011-10-09 22:59:16 +02:00
var fromNodeId = model.getFromNode();
var toNodeId = model.getToNode();
2011-07-27 19:53:32 +02:00
2011-10-09 22:59:16 +02:00
var sourceTopic = null;
var targetTopic = null;
var dmodel = this.getModel();
var topics = dmodel.getTopics();
2011-07-27 19:53:32 +02:00
for (var i = 0; i < topics.length; i++) {
var t = topics[i];
if (t.getModel().getId() == fromNodeId) {
2011-10-09 22:59:16 +02:00
sourceTopic = t;
2011-07-27 19:53:32 +02:00
}
if (t.getModel().getId() == toNodeId) {
2011-10-09 22:59:16 +02:00
targetTopic = t;
2011-07-27 19:53:32 +02:00
}
2011-10-09 22:59:16 +02:00
if (targetTopic != null && sourceTopic != null) {
2011-07-27 19:53:32 +02:00
break;
}
}
2011-07-27 19:53:32 +02:00
// Create node graph ...
2011-10-09 22:59:16 +02:00
var relationLine = new mindplot.RelationshipLine(sourceTopic, targetTopic, model.getLineType());
if ($defined(model.getSrcCtrlPoint())) {
var srcPoint = model.getSrcCtrlPoint().clone();
2011-07-27 19:53:32 +02:00
relationLine.setSrcControlPoint(srcPoint);
}
2011-10-09 22:59:16 +02:00
if ($defined(model.getDestCtrlPoint())) {
var destPoint = model.getDestCtrlPoint().clone();
2011-07-27 19:53:32 +02:00
relationLine.setDestControlPoint(destPoint);
}
2011-07-27 19:53:32 +02:00
relationLine.getLine().setDashed(3, 2);
2011-10-09 22:59:16 +02:00
relationLine.setShowEndArrow(model.getEndArrow());
relationLine.setShowStartArrow(model.getStartArrow());
relationLine.setModel(model);
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
//Add Listeners
2011-08-21 17:42:00 +02:00
relationLine.addEvent('onfocus', function(event) {
2011-10-09 22:59:16 +02:00
elem.onObjectFocusEvent(relationLine, event);
2011-07-27 19:53:32 +02:00
});
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
// Append it to the workspace ...
2011-10-09 22:59:16 +02:00
dmodel.addRelationship(model.getId(), relationLine);
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
return relationLine;
2011-08-20 15:50:48 +02:00
},
2009-06-07 20:59:43 +02:00
2011-07-27 19:53:32 +02:00
_removeNode : function(node) {
2011-09-08 15:03:42 +02:00
if (node.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
2011-07-27 19:53:32 +02:00
var parent = node._parent;
node.disconnect(this._workspace);
//remove children
while (node._getChildren().length > 0) {
this._removeNode(node._getChildren()[0]);
}
this._workspace.removeChild(node);
this.getModel().removeTopic(node);
2011-07-27 19:53:32 +02:00
// Delete this node from the model...
var model = node.getModel();
model.deleteNode();
if ($defined(parent)) {
this.goToNode(parent);
2011-07-27 19:53:32 +02:00
}
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
deleteCurrentNode : function() {
2011-08-25 05:17:13 +02:00
var validateFunc = function(object) {
2011-09-08 15:03:42 +02:00
return object.getType() == mindplot.RelationshipLine.type || object.getTopicType() != mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE
2009-06-07 20:59:43 +02:00
};
2011-07-27 19:53:32 +02:00
var validateError = 'Central topic can not be deleted.';
var model = this.getModel();
var topicsIds = model.filterTopicsIds(validateFunc, validateError);
var relIds = model.filterRelationIds(validateFunc, validateError);
if (topicsIds.length > 0 || relIds.length > 0) {
2011-09-08 14:16:50 +02:00
this._actionDispatcher.deleteTopics(topicsIds, relIds);
2009-06-07 20:59:43 +02:00
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-08-21 17:42:00 +02:00
changeFontFamily : function(font) {
var topicsIds = this.getModel().filterTopicsIds();
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeFontFamilyToTopic(topicsIds, font);
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-08-20 16:08:18 +02:00
changeFontStyle : function() {
var topicsIds = this.getModel().filterTopicsIds();
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeFontStyleToTopic(topicsIds);
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-08-21 17:42:00 +02:00
changeFontColor : function(color) {
$assert(color, "color can not be null");
var topicsIds = this.getModel().filterTopicsIds();
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeFontColorToTopic(topicsIds, color);
2009-06-07 20:59:43 +02:00
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-08-21 17:42:00 +02:00
changeBackgroundColor : function(color) {
2011-07-27 19:53:32 +02:00
var validateFunc = function(topic) {
2011-09-08 15:03:42 +02:00
return topic.getShapeType() != mindplot.model.INodeModel.SHAPE_TYPE_LINE
2009-06-07 20:59:43 +02:00
};
var validateError = 'Color can not be set to line topics.';
var topicsIds = this.getModel().filterTopicsIds(validateFunc, validateError);
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeBackgroundColorToTopic(topicsIds, color);
2011-07-27 19:53:32 +02:00
}
2011-08-20 15:50:48 +02:00
},
2009-06-07 20:59:43 +02:00
2011-08-21 17:42:00 +02:00
changeBorderColor : function(color) {
2011-07-27 19:53:32 +02:00
var validateFunc = function(topic) {
2011-09-08 15:03:42 +02:00
return topic.getShapeType() != mindplot.model.INodeModel.SHAPE_TYPE_LINE
2011-07-27 19:53:32 +02:00
};
var validateError = 'Color can not be set to line topics.';
var topicsIds = this.getModel().filterTopicsIds(validateFunc, validateError);
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeBorderColorToTopic(topicsIds, color);
2009-06-07 20:59:43 +02:00
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-08-21 17:42:00 +02:00
changeFontSize : function(size) {
var topicsIds = this.getModel().filterTopicsIds();
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeFontSizeToTopic(topicsIds, size);
2011-07-27 19:53:32 +02:00
}
},
2011-07-27 19:53:32 +02:00
2011-08-21 17:42:00 +02:00
changeTopicShape : function(shape) {
2011-07-27 19:53:32 +02:00
var validateFunc = function(topic) {
2011-09-08 15:03:42 +02:00
return !(topic.getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE && shape == mindplot.model.INodeModel.SHAPE_TYPE_LINE)
2009-06-07 20:59:43 +02:00
};
2011-07-27 19:53:32 +02:00
var validateError = 'Central Topic shape can not be changed to line figure.';
var topicsIds = this.getModel().filterTopicsIds(validateFunc, validateError);
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
2011-09-10 02:53:41 +02:00
this._actionDispatcher.changeShapeTypeToTopic(topicsIds, shape);
2011-07-27 19:53:32 +02:00
}
2011-08-20 15:50:48 +02:00
},
2011-07-27 19:53:32 +02:00
2011-08-20 16:08:18 +02:00
changeFontWeight : function() {
var topicsIds = this.getModel().filterTopicsIds();
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.changeFontWeightToTopic(topicsIds);
2011-07-27 19:53:32 +02:00
}
2011-08-20 15:50:48 +02:00
},
2009-06-07 20:59:43 +02:00
2011-08-21 17:42:00 +02:00
addIconType : function(iconType) {
var topicsIds = this.getModel().filterTopicsIds();
2011-07-27 19:53:32 +02:00
if (topicsIds.length > 0) {
this._actionDispatcher.addIconToTopic(topicsIds[0], iconType);
2011-07-27 19:53:32 +02:00
}
2011-08-20 15:50:48 +02:00
},
2009-06-07 20:59:43 +02:00
2011-08-21 17:42:00 +02:00
addLink : function() {
2011-10-07 06:30:55 +02:00
var model = this.getModel();
var topic = model.selectedTopic();
topic.showLinkEditor();
2011-07-27 19:53:32 +02:00
},
2011-08-21 17:42:00 +02:00
addNote : function() {
2011-08-26 03:08:39 +02:00
var model = this.getModel();
var topic = model.selectedTopic();
2011-10-07 06:30:55 +02:00
topic.showNoteEditor();
2011-07-27 19:53:32 +02:00
},
2009-06-07 20:59:43 +02:00
goToNode : function(node) {
2011-07-27 19:53:32 +02:00
node.setOnFocus(true);
this.onObjectFocusEvent(node);
2011-07-27 19:53:32 +02:00
},
getWorkSpace : function() {
return this._workspace;
}
}
2011-07-27 19:53:32 +02:00
);