111 lines
3.2 KiB
JavaScript
Raw Normal View History

2011-07-26 15:07:53 -03:00
/*
2015-04-12 00:15:12 -03:00
* Copyright [2015] [wisemapping]
2011-07-26 15:07:53 -03:00
*
* 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.
*/
//noinspection JSUnusedLocalSymbols
mindplot.ActionDispatcher = new Class({
2014-03-16 22:00:04 -03:00
Implements:[mindplot.Events],
2011-08-04 22:12:53 -03:00
initialize: function(commandContext) {
$assert(commandContext, "commandContext can not be null");
2011-07-26 15:07:53 -03:00
},
2011-07-30 18:55:32 -03:00
2012-07-07 01:33:34 -03:00
addRelationship: function(model, mindmap) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
2011-07-30 18:55:32 -03:00
},
2012-07-08 18:41:35 -03:00
addTopics: function(models, parentTopicId) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
2011-07-30 18:55:32 -03:00
},
deleteEntities: function(topicsIds, relIds) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
2011-07-30 18:55:32 -03:00
},
dragTopic: function(topicId, position, order, parentTopic) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
2011-07-30 18:55:32 -03:00
},
2012-01-18 01:26:39 -03:00
moveTopic: function(topicId, position) {
throw "method must be implemented.";
},
moveControlPoint: function(ctrlPoint, point) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
2011-07-30 18:55:32 -03:00
},
changeFontFamilyToTopic: function(topicIds, fontFamily) {
throw "method must be implemented.";
},
changeFontStyleToTopic: function(topicsIds) {
throw "method must be implemented.";
},
changeFontColorToTopic: function(topicsIds, color) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
2011-07-30 18:55:32 -03:00
},
changeFontSizeToTopic : function(topicsIds, size) {
throw "method must be implemented.";
},
changeBackgroundColorToTopic: function(topicsIds, color) {
2011-07-26 15:07:53 -03:00
throw "method must be implemented.";
},
changeBorderColorToTopic: function(topicsIds, color) {
throw "method must be implemented.";
},
2011-09-09 21:53:41 -03:00
changeShapeTypeToTopic : function(topicsIds, shapeType) {
throw "method must be implemented.";
},
changeFontWeightToTopic : function(topicsIds) {
throw "method must be implemented.";
2011-08-04 22:12:53 -03:00
},
2011-08-05 01:34:51 -03:00
changeTextToTopic : function(topicsIds, text) {
2011-08-04 22:12:53 -03:00
throw "method must be implemented.";
2011-08-05 01:34:51 -03:00
},
shrinkBranch : function(topicsIds, collapse) {
2011-08-05 01:34:51 -03:00
throw "method must be implemented.";
},
addFeatureToTopic : function(topicId, type, attributes) {
throw "method must be implemented.";
},
changeFeatureToTopic : function(topicId, featureId, attributes) {
throw "method must be implemented.";
},
removeFeatureFromTopic : function(topicId, featureId) {
throw "method must be implemented.";
}
2011-07-26 15:07:53 -03:00
});
mindplot.ActionDispatcher.setInstance = function(dispatcher) {
mindplot.ActionDispatcher._instance = dispatcher;
};
mindplot.ActionDispatcher.getInstance = function() {
return mindplot.ActionDispatcher._instance;
};