dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
44 lines (41 loc) • 977 B
JavaScript
define(["dojo", "../util/oo"],
function(dojo, oo){
//dojox.drawing.plugins._Plugin =
return oo.declare(
function(options){
this._cons = [];
dojo.mixin(this, options);
if(this.button && this.onClick){
this.connect(this.button, "onClick", this, "onClick")
}
},
{
// summary:
// Base class for plugins.
// description:
// When creating a plugin, use this class as the
// base to ensure full functionality.
util:null,
keys:null,
mouse:null,
drawing:null,
stencils:null,
anchors:null,
canvas:null,
node:null,
button:null,//gfx button
type:"dojox.drawing.plugins._Plugin",
connect: function(){
this._cons.push(dojo.connect.apply(dojo, arguments));
},
disconnect: function(/*Handle|Array*/ handles){
// summary:
// Removes connections based on passed
// handles arguments
if(!handles){ return };
if(!dojo.isArray(handles)){ handles=[handles]; }
dojo.forEach(handles, dojo.disconnect, dojo);
}
}
);
});