Start migration to Mootools 1.3.1

This commit is contained in:
Paulo Veiga
2011-07-26 15:07:53 -03:00
parent 8eb84ce7b3
commit 41c1f47227
55 changed files with 13636 additions and 10601 deletions

View File

@@ -1,66 +1,62 @@
/*
* 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.
*/
* 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.
*/
mindplot.ActionIcon = function(topic, url) {
mindplot.Icon.call(this, url);
this._node = topic;
};
mindplot.ActionIcon = new Class({
Extends:mindplot.Icon,
initialize: function(topic, url) {
mindplot.Icon.call(this, url);
this._node = topic;
},
getNode:function() {
return this._node;
},
objects.extend(mindplot.ActionIcon, mindplot.Icon);
setPosition:function(x, y) {
var size = this.getSize();
this.getImage().setPosition(x - size.width / 2, y - size.height / 2);
},
mindplot.ActionIcon.prototype.initialize = function() {
addEventListener:function(event, fn) {
this.getImage().addEventListener(event, fn);
},
};
addToGroup:function(group) {
group.appendChild(this.getImage());
},
mindplot.ActionIcon.prototype.getNode = function(){
return this._node;
};
setVisibility:function(visible) {
this.getImage().setVisibility(visible);
},
mindplot.ActionIcon.prototype.setPosition = function(x,y){
var size = this.getSize();
this.getImage().setPosition(x-size.width/2, y-size.height/2);
};
isVisible:function() {
return this.getImage().isVisible();
},
mindplot.ActionIcon.prototype.addEventListener = function(event, fn){
this.getImage().addEventListener(event, fn);
};
setCursor:function(cursor) {
return this.getImage().setCursor(cursor);
},
mindplot.ActionIcon.prototype.addToGroup = function(group){
group.appendChild(this.getImage());
};
moveToBack:function(cursor) {
return this.getImage().moveToBack(cursor);
},
mindplot.ActionIcon.prototype.setVisibility = function(visible){
this.getImage().setVisibility(visible);
};
mindplot.ActionIcon.prototype.isVisible = function(){
return this.getImage().isVisible();
};
mindplot.ActionIcon.prototype.setCursor = function(cursor){
return this.getImage().setCursor(cursor);
};
mindplot.ActionIcon.prototype.moveToBack = function(cursor){
return this.getImage().moveToBack(cursor);
};
mindplot.ActionIcon.prototype.moveToFront = function(cursor){
return this.getImage().moveToFront(cursor);
};
moveToFront:function(cursor) {
return this.getImage().moveToFront(cursor);
}
});