Lines Matching refs:_Band

4 Timeline._Band=function(B,G,C){if(B.autoWidth&&typeof G.width=="string"){G.width=G.width.indexOf("%…  class in Timeline
66 Timeline._Band.SCROLL_MULTIPLES=5;
67 Timeline._Band.prototype.dispose=function(){this.closeBubble();
85 Timeline._Band.prototype.addOnScrollListener=function(A){this._onScrollListeners.push(A);
87 Timeline._Band.prototype.removeOnScrollListener=function(B){for(var A=0;
92 Timeline._Band.prototype.setSyncWithBand=function(B,A){if(this._syncWithBand){this._syncWithBand.re…
98 Timeline._Band.prototype.getLocale=function(){return this._locale;
100 Timeline._Band.prototype.getTimeZone=function(){return this._timeZone;
102 Timeline._Band.prototype.getLabeller=function(){return this._labeller;
104 Timeline._Band.prototype.getIndex=function(){return this._index;
106 Timeline._Band.prototype.getEther=function(){return this._ether;
108 Timeline._Band.prototype.getEtherPainter=function(){return this._etherPainter;
110 Timeline._Band.prototype.getEventSource=function(){return this._eventSource;
112 Timeline._Band.prototype.getEventPainter=function(){return this._eventPainter;
114 Timeline._Band.prototype.getTimeline=function(){return this._timeline;
116 Timeline._Band.prototype.updateEventTrackInfo=function(A,B){this._eventTrackIncrement=B;
119 Timeline._Band.prototype.checkAutoWidth=function(){if(!this._timeline.autoWidth){return ;
127 Timeline._Band.prototype.layout=function(){this.paint();
129 Timeline._Band.prototype.paint=function(){this._etherPainter.paint();
133 Timeline._Band.prototype.softLayout=function(){this.softPaint();
135 Timeline._Band.prototype.softPaint=function(){this._etherPainter.softPaint();
139 Timeline._Band.prototype.setBandShiftAndWidth=function(A,D){var C=this._keyboardInput.parentNode;
150 Timeline._Band.prototype.getViewWidth=function(){if(this._timeline.isHorizontal()){return this._div…
153 Timeline._Band.prototype.setViewLength=function(A){this._viewLength=A;
157 Timeline._Band.prototype.getViewLength=function(){return this._viewLength;
159 Timeline._Band.prototype.getTotalViewLength=function(){return Timeline._Band.SCROLL_MULTIPLES*this.…
161 Timeline._Band.prototype.getViewOffset=function(){return this._viewOffset;
163 Timeline._Band.prototype.getMinDate=function(){return this._ether.pixelOffsetToDate(this._viewOffse…
165 Timeline._Band.prototype.getMaxDate=function(){return this._ether.pixelOffsetToDate(this._viewOffse…
167 Timeline._Band.prototype.getMinVisibleDate=function(){return this._ether.pixelOffsetToDate(0);
169 Timeline._Band.prototype.getMinVisibleDateAfterDelta=function(A){return this._ether.pixelOffsetToDa…
171 Timeline._Band.prototype.getMaxVisibleDate=function(){return this._ether.pixelOffsetToDate(this._vi…
173 Timeline._Band.prototype.getMaxVisibleDateAfterDelta=function(A){return this._ether.pixelOffsetToDa…
175 Timeline._Band.prototype.getCenterVisibleDate=function(){return this._ether.pixelOffsetToDate(this.…
177 Timeline._Band.prototype.setMinVisibleDate=function(A){if(!this._changing){this._moveEther(Math.rou…
179 Timeline._Band.prototype.setMaxVisibleDate=function(A){if(!this._changing){this._moveEther(Math.rou…
181 Timeline._Band.prototype.setCenterVisibleDate=function(A){if(!this._changing){this._moveEther(Math.…
183 Timeline._Band.prototype.dateToPixelOffset=function(A){return this._ether.dateToPixelOffset(A)-this…
185 Timeline._Band.prototype.pixelOffsetToDate=function(A){return this._ether.pixelOffsetToDate(A+this.…
187 Timeline._Band.prototype.createLayerDiv=function(C,A){var D=this._timeline.getDocument().createElem…
198 Timeline._Band.prototype.removeLayerDiv=function(A){this._innerDiv.removeChild(A.parentNode);
200 Timeline._Band.prototype.scrollToCenter=function(A,C){var B=this._ether.dateToPixelOffset(A);
205 Timeline._Band.prototype.showBubbleForEvent=function(C){var A=this.getEventSource().getEvent(C);
210 Timeline._Band.prototype.zoom=function(C,A,F,E){if(!this._zoomSteps){return ;
218 Timeline._Band.prototype._onMouseDown=function(B,A,C){this.closeBubble();
223 Timeline._Band.prototype._onMouseMove=function(D,A,E){if(this._dragging){var C=A.clientX-this._drag…
230 Timeline._Band.prototype._onMouseUp=function(B,A,C){this._dragging=false;
233 Timeline._Band.prototype._onMouseOut=function(C,B,D){var A=SimileAjax.DOM.getEventRelativeCoordinat…
237 Timeline._Band.prototype._onMouseScroll=function(G,H,B){var A=new Date();
256 Timeline._Band.prototype._onDblClick=function(C,B,E){var A=SimileAjax.DOM.getEventRelativeCoordinat…
260 Timeline._Band.prototype._onKeyDown=function(B,A,C){if(!this._dragging){switch(A.keyCode){case 27:b…
273 Timeline._Band.prototype._onKeyUp=function(B,A,C){if(!this._dragging){this._scrollSpeed=this._origi…
288 Timeline._Band.prototype._autoScroll=function(D,C){var A=this;
293 Timeline._Band.prototype._moveEther=function(A){this.closeBubble();
299 }if(this._viewOffset>-this._viewLength*0.5||this._viewOffset<-this._viewLength*(Timeline._Band.SCRO…
303 Timeline._Band.prototype._onChanging=function(){this._changing=true;
308 Timeline._Band.prototype.busy=function(){return(this._changing);
310 Timeline._Band.prototype._fireOnScroll=function(){for(var A=0;
314 Timeline._Band.prototype._setSyncWithBandDate=function(){if(this._syncWithBand){var A=this._ether.p…
317 Timeline._Band.prototype._onHighlightBandScroll=function(){if(this._syncWithBand){var A=this._syncW…
322 Timeline._Band.prototype._onAddMany=function(){this._paintEvents();
324 Timeline._Band.prototype._onClear=function(){this._paintEvents();
326 Timeline._Band.prototype._positionHighlight=function(){if(this._syncWithBand){var A=this._syncWithB…
330 Timeline._Band.prototype._recenterDiv=function(){this._viewOffset=-this._viewLength*(Timeline._Band
332 this._div.style.width=(Timeline._Band.SCROLL_MULTIPLES*this._viewLength)+"px";
334 this._div.style.height=(Timeline._Band.SCROLL_MULTIPLES*this._viewLength)+"px";
337 Timeline._Band.prototype._paintEvents=function(){this._eventPainter.paint();
339 Timeline._Band.prototype._softPaintEvents=function(){this._eventPainter.softPaint();
341 Timeline._Band.prototype._paintDecorators=function(){for(var A=0;
345 Timeline._Band.prototype._softPaintDecorators=function(){for(var A=0;
349 Timeline._Band.prototype.closeBubble=function(){SimileAjax.WindowManager.cancelPopups();
2755 B++){var G=new Timeline._Band(this,this._bandInfos[B],B);