2009-06-07 20:59:43 +02:00
|
|
|
/*
|
2011-01-24 00:34:05 +01:00
|
|
|
* Copyright [2011] [wisemapping]
|
2009-06-07 20:59:43 +02:00
|
|
|
*
|
2011-01-24 01:03:12 +01:00
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
2011-01-24 00:34:05 +01:00
|
|
|
* "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
|
2009-06-07 20:59:43 +02:00
|
|
|
*
|
2011-01-24 00:34:05 +01:00
|
|
|
* http://www.wisemapping.org/license
|
2009-06-07 20:59:43 +02:00
|
|
|
*
|
2011-01-24 00:34:05 +01:00
|
|
|
* 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.
|
2009-06-07 20:59:43 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
mindplot.DesignerActionRunner = new Class({
|
|
|
|
execute:function(command)
|
|
|
|
{
|
|
|
|
core.assert(command, "command can not be null");
|
|
|
|
// Execute action ...
|
|
|
|
command.execute(this._context);
|
|
|
|
|
|
|
|
// Enqueue it ...
|
|
|
|
this._undoManager.enqueue(command);
|
|
|
|
|
|
|
|
// Fire event
|
|
|
|
var event = this._undoManager._buildEvent();
|
|
|
|
this._designer._fireEvent("change", event);
|
|
|
|
},
|
|
|
|
initialize: function(designer)
|
|
|
|
{
|
|
|
|
this._designer = designer;
|
|
|
|
this._undoManager = new mindplot.DesignerUndoManager();
|
|
|
|
this._context = new mindplot.CommandContext(this._designer);
|
|
|
|
},
|
|
|
|
undo: function()
|
|
|
|
{
|
|
|
|
this._undoManager.execUndo(this._context);
|
|
|
|
|
|
|
|
// Fire event
|
|
|
|
var event = this._undoManager._buildEvent();
|
|
|
|
this._designer._fireEvent("change", event);
|
|
|
|
},
|
|
|
|
redo: function()
|
|
|
|
{
|
|
|
|
this._undoManager.execRedo(this._context);
|
|
|
|
|
|
|
|
// Fire event
|
|
|
|
var event = this._undoManager._buildEvent();
|
|
|
|
this._designer._fireEvent("change", event);
|
|
|
|
|
|
|
|
},
|
|
|
|
markAsChangeBase: function()
|
|
|
|
{
|
|
|
|
return this._undoManager.markAsChangeBase();
|
|
|
|
},
|
|
|
|
hasBeenChanged: function()
|
|
|
|
{
|
|
|
|
return this._undoManager.hasBeenChanged();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
mindplot.CommandContext = new Class({
|
|
|
|
initialize: function(designer)
|
|
|
|
{
|
|
|
|
this._designer = designer;
|
|
|
|
},
|
|
|
|
findTopics:function(topicsIds)
|
|
|
|
{
|
|
|
|
var designerTopics = this._designer._topics;
|
|
|
|
if (!(topicsIds instanceof Array))
|
|
|
|
{
|
|
|
|
topicsIds = [topicsIds];
|
|
|
|
}
|
|
|
|
|
|
|
|
var result = designerTopics.filter(function(topic) {
|
|
|
|
var found = false;
|
|
|
|
if (topic != null)
|
|
|
|
{
|
|
|
|
var topicId = topic.getId();
|
|
|
|
found = topicsIds.contains(topicId);
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
deleteTopic:function(topic)
|
|
|
|
{
|
|
|
|
this._designer._removeNode(topic);
|
|
|
|
},
|
2011-02-09 15:29:09 +01:00
|
|
|
createTopic:function(model, isVisible)
|
2009-06-07 20:59:43 +02:00
|
|
|
{
|
|
|
|
core.assert(model, "model can not be null");
|
2011-02-09 15:29:09 +01:00
|
|
|
var topic = this._designer._nodeModelToNodeGraph(model, isVisible);
|
2009-06-07 20:59:43 +02:00
|
|
|
|
|
|
|
return topic;
|
|
|
|
},
|
|
|
|
createModel:function()
|
|
|
|
{
|
|
|
|
var mindmap = this._designer.getMindmap();
|
|
|
|
var model = mindmap.createNode(mindplot.NodeModel.MAIN_TOPIC_TYPE);
|
|
|
|
return model;
|
|
|
|
},
|
2011-02-09 15:29:09 +01:00
|
|
|
connect:function(childTopic, parentTopic, isVisible)
|
2009-06-07 20:59:43 +02:00
|
|
|
{
|
2011-02-09 15:29:09 +01:00
|
|
|
childTopic.connectTo(parentTopic, this._designer._workspace, isVisible);
|
2009-06-07 20:59:43 +02:00
|
|
|
} ,
|
|
|
|
disconnect:function(topic)
|
|
|
|
{
|
|
|
|
topic.disconnect(this._designer._workspace);
|
2010-12-13 15:07:20 +01:00
|
|
|
},
|
|
|
|
createRelationship:function(model){
|
|
|
|
core.assert(model, "model cannot be null");
|
|
|
|
var relationship = this._designer.createRelationship(model);
|
|
|
|
return relationship;
|
|
|
|
},
|
|
|
|
removeRelationship:function(model) {
|
|
|
|
this._designer.removeRelationship(model);
|
2010-12-22 23:34:24 +01:00
|
|
|
},
|
|
|
|
findRelationships:function(lineIds){
|
|
|
|
var result = [];
|
|
|
|
lineIds.forEach(function(lineId, index){
|
|
|
|
var line = this._designer._relationships[lineId];
|
|
|
|
if(core.Utils.isDefined(line)){
|
|
|
|
result.push(line);
|
|
|
|
}
|
|
|
|
}.bind(this));
|
|
|
|
return result;
|
2011-01-20 16:05:42 +01:00
|
|
|
},
|
|
|
|
getSelectedRelationshipLines:function(){
|
|
|
|
return this._designer.getSelectedRelationshipLines();
|
2009-06-07 20:59:43 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
mindplot.DesignerActionRunner.setInstance = function(actionRunner)
|
|
|
|
{
|
|
|
|
mindplot.DesignerActionRunner._instance = actionRunner;
|
|
|
|
};
|
|
|
|
|
|
|
|
mindplot.DesignerActionRunner.getInstance = function()
|
|
|
|
{
|
|
|
|
return mindplot.DesignerActionRunner._instance;
|
|
|
|
};
|