//>>built define("dojox/gfx/canvasWithEvents",["dojo/_base/lang","dojo/_base/declare","dojo/_base/connect","dojo/_base/Color","dojo/dom","dojo/dom-geometry","./_base","./canvas","./shape","./matrix"],function(_1,_2,_3,_4,_5,_6,g,_7,_8,m){ var _9=g.canvasWithEvents={}; _2("dojox.gfx.canvasWithEvents.Shape",_7.Shape,{_testInputs:function(_a,_b){ if(!this.canvasFill&&this.strokeStyle){ this._hitTestPixel(_a,_b); }else{ this._renderShape(_a); var _c=_b.length,t=this.getTransform(); for(var i=0;i<_b.length;++i){ var _d=_b[i]; if(_d.target){ continue; } var x=_d.x,y=_d.y; var p=t?m.multiplyPoint(m.invert(t),x,y):{x:x,y:y}; _d.target=this._hitTestGeometry(_a,p.x,p.y); } } },_hitTestPixel:function(_e,_f){ for(var i=0;i<_f.length;++i){ var _10=_f[i]; if(_10.target){ continue; } var x=_10.x,y=_10.y; _e.clearRect(0,0,1,1); _e.save(); _e.translate(-x,-y); this._render(_e,true); _10.target=_e.getImageData(0,0,1,1).data[0]?this:null; _e.restore(); } },_hitTestGeometry:function(ctx,x,y){ return ctx.isPointInPath(x,y)?this:null; },_renderFill:function(ctx,_11){ if(ctx.pickingMode){ if("canvasFill" in this&&_11){ ctx.fill(); } return; } this.inherited(arguments); },_renderStroke:function(ctx,_12){ if(this.strokeStyle&&ctx.pickingMode){ var c=this.strokeStyle.color; try{ this.strokeStyle.color=new _4(ctx.strokeStyle); this.inherited(arguments); } finally{ this.strokeStyle.color=c; } }else{ this.inherited(arguments); } },getEventSource:function(){ return this.surface.getEventSource(); },connect:function(_13,_14,_15){ this.surface._setupEvents(_13); return arguments.length>2?_3.connect(this,_13,_14,_15):_3.connect(this,_13,_14); },disconnect:function(_16){ _3.disconnect(_16); },oncontextmenu:function(){ },onclick:function(){ },ondblclick:function(){ },onmouseenter:function(){ },onmouseleave:function(){ },onmouseout:function(){ },onmousedown:function(){ },ontouchstart:function(){ },touchstart:function(){ },onmouseup:function(){ },ontouchend:function(){ },touchend:function(){ },onmouseover:function(){ },onmousemove:function(){ },ontouchmove:function(){ },touchmove:function(){ },onkeydown:function(){ },onkeyup:function(){ }}); _2("dojox.gfx.canvasWithEvents.Group",[_9.Shape,_7.Group],{_testInputs:function(ctx,pos){ var _17=this.children,t=this.getTransform(),i,j; if(_17.length==0){ return; } var _18=[]; for(i=0;i=0;--i){ _17[i]._testInputs(ctx,pos); var _1a=true; for(j=0;j=s.x&&x<=s.x+s.width&&y>=s.y&&y<=s.y+s.height?this:null; }}); _2("dojox.gfx.canvasWithEvents.Text",[_9.Shape,_7.Text],{_testInputs:function(ctx,pos){ return this._hitTestPixel(ctx,pos); }}); _2("dojox.gfx.canvasWithEvents.Rect",[_9.Shape,_7.Rect],{}); _2("dojox.gfx.canvasWithEvents.Circle",[_9.Shape,_7.Circle],{}); _2("dojox.gfx.canvasWithEvents.Ellipse",[_9.Shape,_7.Ellipse],{}); _2("dojox.gfx.canvasWithEvents.Line",[_9.Shape,_7.Line],{}); _2("dojox.gfx.canvasWithEvents.Polyline",[_9.Shape,_7.Polyline],{}); _2("dojox.gfx.canvasWithEvents.Path",[_9.Shape,_7.Path],{}); _2("dojox.gfx.canvasWithEvents.TextPath",[_9.Shape,_7.TextPath],{}); var _1b={onmouseenter:"onmousemove",onmouseleave:"onmousemove",onmouseout:"onmousemove",onmouseover:"onmousemove",touchstart:"ontouchstart",touchend:"ontouchend",touchmove:"ontouchmove"}; var _1c={ontouchstart:"touchstart",ontouchend:"touchend",ontouchmove:"touchmove"}; var _1d=navigator.userAgent.toLowerCase(),_1e=_1d.search("iphone")>-1||_1d.search("ipad")>-1||_1d.search("ipod")>-1; _2("dojox.gfx.canvasWithEvents.Surface",_7.Surface,{constructor:function(){ this._pick={curr:null,last:null}; this._pickOfMouseDown=null; this._pickOfMouseUp=null; },connect:function(_1f,_20,_21){ if(_1f.indexOf("touch")!==-1){ this._setupEvents(_1f); _1f="_on"+_1f+"Impl_"; return _3.connect(this,_1f,_20,_21); }else{ this._initMirrorCanvas(); return _3.connect(this.getEventSource(),_1f,null,_8.fixCallback(this,g.fixTarget,_20,_21)); } },_ontouchstartImpl_:function(){ },_ontouchendImpl_:function(){ },_ontouchmoveImpl_:function(){ },_initMirrorCanvas:function(){ if(!this.mirrorCanvas){ var p=this._parent,_22=p.ownerDocument.createElement("canvas"); _22.width=1; _22.height=1; _22.style.position="absolute"; _22.style.left="-99999px"; _22.style.top="-99999px"; p.appendChild(_22); this.mirrorCanvas=_22; } },_setupEvents:function(_23){ if(_23 in _1b){ _23=_1b[_23]; } if(this._eventsH&&this._eventsH[_23]){ return; } this._initMirrorCanvas(); if(!this._eventsH){ this._eventsH={}; } this._eventsH[_23]=_3.connect(this.getEventSource(),_23,_8.fixCallback(this,g.fixTarget,this,"_"+_23)); if(_23==="onclick"||_23==="ondblclick"){ if(!this._eventsH["onmousedown"]){ this._eventsH["onmousedown"]=_3.connect(this.getEventSource(),"onmousedown",_8.fixCallback(this,g.fixTarget,this,"_onmousedown")); } if(!this._eventsH["onmouseup"]){ this._eventsH["onmouseup"]=_3.connect(this.getEventSource(),"onmouseup",_8.fixCallback(this,g.fixTarget,this,"_onmouseup")); } } },destroy:function(){ _7.Surface.destroy.apply(this); for(var i in this._eventsH){ _3.disconnect(this._eventsH[i]); } this._eventsH=this.mirrorCanvas=null; },getEventSource:function(){ return this.rawNode; },_invokeHandler:function(_24,_25,_26){ var _27=_24[_25]; if(_27&&_27.after){ _27.apply(_24,[_26]); }else{ if(_25 in _1c){ _27=_24[_1c[_25]]; if(_27&&_27.after){ _27.apply(_24,[_26]); } } } if(!_27&&_25.indexOf("touch")!==-1){ _25="_"+_25+"Impl_"; _27=_24[_25]; if(_27){ _27.apply(_24,[_26]); } } if(!_28(_26)&&_24.parent){ this._invokeHandler(_24.parent,_25,_26); } },_oncontextmenu:function(e){ if(this._pick.curr){ this._invokeHandler(this._pick.curr,"oncontextmenu",e); } },_ondblclick:function(e){ if(this._pickOfMouseUp){ this._invokeHandler(this._pickOfMouseUp,"ondblclick",e); } },_onclick:function(e){ if(this._pickOfMouseUp&&this._pickOfMouseUp==this._pickOfMouseDown){ this._invokeHandler(this._pickOfMouseUp,"onclick",e); } },_onmousedown:function(e){ this._pickOfMouseDown=this._pick.curr; if(this._pick.curr){ this._invokeHandler(this._pick.curr,"onmousedown",e); } },_ontouchstart:function(e){ if(this._pick.curr){ this._fireTouchEvent(e); } },_onmouseup:function(e){ this._pickOfMouseUp=this._pick.curr; if(this._pick.curr){ this._invokeHandler(this._pick.curr,"onmouseup",e); } },_ontouchend:function(e){ if(this._pick.curr){ for(var i=0;i=0;i--){ _32[i]._testInputs(ctx,_2e); var _34=true; for(j=0;j<_2e.length;++j){ if(_2e[j].target==null){ _34=false; break; } } if(_34){ break; } } ctx.restore(); return (_30||_2f)?_2e:_2e[0].target; }}); _9.createSurface=function(_35,_36,_37){ if(!_36&&!_37){ var pos=_6.position(_35); _36=_36||pos.w; _37=_37||pos.h; } if(typeof _36=="number"){ _36=_36+"px"; } if(typeof _37=="number"){ _37=_37+"px"; } var s=new _9.Surface(),p=_5.byId(_35),c=p.ownerDocument.createElement("canvas"); c.width=g.normalizedLength(_36); c.height=g.normalizedLength(_37); p.appendChild(c); s.rawNode=c; s._parent=p; s.surface=s; return s; }; var _28=function(evt){ if(evt.cancelBubble!==undefined){ return evt.cancelBubble; } return false; }; _9.fixTarget=function(_38,_39){ if(_28(_38)){ return false; } if(!_38.gfxTarget){ _39._pick.last=_39._pick.curr; _39._pick.curr=_39._whatsUnderEvent(_38); if(!_1.isArray(_39._pick.curr)){ _38.gfxTarget=_39._pick.curr; } } return true; }; return _9; });