Basic topic propeties integrated with brix.

This commit is contained in:
Paulo Veiga
2011-09-06 01:03:27 -03:00
parent 85defa2ab9
commit e2da27ebc8
26 changed files with 346 additions and 271 deletions

View File

@@ -43,7 +43,7 @@ mindplot.ActionDispatcher = new Class({
throw "method must be implemented.";
},
deleteTopics: function(topicsIds) {
deleteTopics: function(topicsIds, relIds) {
throw "method must be implemented.";
},
@@ -79,6 +79,10 @@ mindplot.ActionDispatcher = new Class({
throw "method must be implemented.";
},
changeFontSizeToTopic : function(topicsIds, size) {
throw "method must be implemented.";
},
changeBackgroundColorToTopic: function(topicsIds, color) {
throw "method must be implemented.";
},
@@ -95,15 +99,15 @@ mindplot.ActionDispatcher = new Class({
throw "method must be implemented.";
},
changeTextOnTopic : function(topicsIds, text) {
changeTextToTopic : function(topicsIds, text) {
throw "method must be implemented.";
},
shrinkBranch : function(topicsIds, collapse)
{
shrinkBranch : function(topicsIds, collapse) {
throw "method must be implemented.";
}
});
mindplot.ActionDispatcher.setInstance = function(dispatcher) {