2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
(function( $ ){
|
2011-12-07 05:26:06 +04:00
|
|
|
/**
|
2012-01-25 23:14:02 +04:00
|
|
|
* @class
|
2011-12-07 05:26:06 +04:00
|
|
|
*
|
|
|
|
* The main point of entry into creating a zoomable image on the page.
|
|
|
|
*
|
|
|
|
* We have provided an idiomatic javascript constructor which takes
|
|
|
|
* a single object, but still support the legacy positional arguments.
|
|
|
|
*
|
|
|
|
* The options below are given in order that they appeared in the constructor
|
|
|
|
* as arguments and we translate a positional call into an idiomatic call.
|
|
|
|
*
|
|
|
|
* options:{
|
|
|
|
* element: String id of Element to attach to,
|
|
|
|
* xmlPath: String xpath ( TODO: not sure! ),
|
|
|
|
* prefixUrl: String url used to prepend to paths, eg button images,
|
|
|
|
* controls: Array of Seadragon.Controls,
|
|
|
|
* overlays: Array of Seadragon.Overlays,
|
|
|
|
* overlayControls: An Array of ( TODO: not sure! )
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
$.Viewer = function( options ) {
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
var args = arguments,
|
2011-12-08 06:10:13 +04:00
|
|
|
_this = this,
|
|
|
|
i;
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2011-12-15 03:22:02 +04:00
|
|
|
$.EventHandler.call( this );
|
|
|
|
|
2011-12-07 05:26:06 +04:00
|
|
|
if( typeof( options ) != 'object' ){
|
|
|
|
options = {
|
|
|
|
id: args[ 0 ],
|
|
|
|
xmlPath: args.length > 1 ? args[ 1 ] : undefined,
|
|
|
|
prefixUrl: args.length > 2 ? args[ 2 ] : undefined,
|
|
|
|
controls: args.length > 3 ? args[ 3 ] : undefined,
|
|
|
|
overlays: args.length > 4 ? args[ 4 ] : undefined,
|
|
|
|
overlayControls: args.length > 5 ? args[ 5 ] : undefined,
|
|
|
|
config: {}
|
|
|
|
};
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-07 05:26:06 +04:00
|
|
|
//Allow the options object to override global defaults
|
|
|
|
$.extend( true, this, {
|
|
|
|
id: options.id,
|
2011-12-08 06:10:13 +04:00
|
|
|
xmlPath: null,
|
|
|
|
prefixUrl: '',
|
|
|
|
controls: [],
|
|
|
|
overlays: [],
|
|
|
|
overlayControls: [],
|
2011-12-07 05:26:06 +04:00
|
|
|
config: {
|
|
|
|
debugMode: true,
|
|
|
|
animationTime: 1.5,
|
|
|
|
blendTime: 0.5,
|
|
|
|
alwaysBlend: false,
|
|
|
|
autoHideControls: true,
|
|
|
|
immediateRender: false,
|
|
|
|
wrapHorizontal: false,
|
|
|
|
wrapVertical: false,
|
|
|
|
minZoomImageRatio: 0.8,
|
|
|
|
maxZoomPixelRatio: 2,
|
|
|
|
visibilityRatio: 0.5,
|
|
|
|
springStiffness: 5.0,
|
2011-12-28 03:01:20 +04:00
|
|
|
imageLoaderLimit: 0,
|
2011-12-07 05:26:06 +04:00
|
|
|
clickTimeThreshold: 200,
|
|
|
|
clickDistThreshold: 5,
|
|
|
|
zoomPerClick: 2.0,
|
|
|
|
zoomPerScroll: 1.2,
|
|
|
|
zoomPerSecond: 2.0,
|
|
|
|
showNavigationControl: true,
|
|
|
|
maxImageCacheCount: 100,
|
|
|
|
minPixelRatio: 0.5,
|
|
|
|
mouseNavEnabled: true,
|
|
|
|
navImages: {
|
|
|
|
zoomIn: {
|
|
|
|
REST: '/images/zoomin_rest.png',
|
|
|
|
GROUP: '/images/zoomin_grouphover.png',
|
|
|
|
HOVER: '/images/zoomin_hover.png',
|
|
|
|
DOWN: '/images/zoomin_pressed.png'
|
|
|
|
},
|
|
|
|
zoomOut: {
|
|
|
|
REST: '/images/zoomout_rest.png',
|
|
|
|
GROUP: '/images/zoomout_grouphover.png',
|
|
|
|
HOVER: '/images/zoomout_hover.png',
|
|
|
|
DOWN: '/images/zoomout_pressed.png'
|
|
|
|
},
|
|
|
|
home: {
|
|
|
|
REST: '/images/home_rest.png',
|
|
|
|
GROUP: '/images/home_grouphover.png',
|
|
|
|
HOVER: '/images/home_hover.png',
|
|
|
|
DOWN: '/images/home_pressed.png'
|
|
|
|
},
|
|
|
|
fullpage: {
|
|
|
|
REST: '/images/fullpage_rest.png',
|
|
|
|
GROUP: '/images/fullpage_grouphover.png',
|
|
|
|
HOVER: '/images/fullpage_hover.png',
|
|
|
|
DOWN: '/images/fullpage_pressed.png'
|
|
|
|
}
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
//These were referenced but never defined
|
|
|
|
controlsFadeDelay: 2000,
|
|
|
|
controlsFadeLength: 1500,
|
|
|
|
|
|
|
|
//These are originally not part options but declared as members
|
|
|
|
//in initialize. Its still considered idiomatic to put them here
|
|
|
|
source: null,
|
|
|
|
drawer: null,
|
|
|
|
viewport: null,
|
|
|
|
profiler: null,
|
|
|
|
|
|
|
|
//This was originally initialized in the constructor and so could never
|
|
|
|
//have anything in it. now it can because we allow it to be specified
|
|
|
|
//in the options and is only empty by default if not specified. Also
|
|
|
|
//this array was returned from get_controls which I find confusing
|
|
|
|
//since this object has a controls property which is treated in other
|
|
|
|
//functions like clearControls. I'm removing the accessors.
|
|
|
|
customControls: []
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
}, options );
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
this.element = document.getElementById( options.id );
|
2012-01-24 17:03:50 +04:00
|
|
|
this.container = $.makeNeutralElement( "div" );
|
|
|
|
this.canvas = $.makeNeutralElement( "div" );
|
|
|
|
|
|
|
|
//Used for toggling between fullscreen and default container size
|
|
|
|
this.bodyWidth = document.body.style.width;
|
|
|
|
this.bodyHeight = document.body.style.height;
|
|
|
|
this.bodyOverflow = document.body.style.overflow;
|
|
|
|
this.docOverflow = document.documentElement.style.overflow;
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
this._fsBoundsDelta = new $.Point( 1, 1 );
|
2011-12-08 06:10:13 +04:00
|
|
|
this._prevContainerSize = null;
|
|
|
|
this._lastOpenStartTime = 0;
|
|
|
|
this._lastOpenEndTime = 0;
|
|
|
|
this._animating = false;
|
|
|
|
this._forceRedraw = false;
|
|
|
|
this._mouseInside = false;
|
|
|
|
|
2011-12-13 02:40:49 +04:00
|
|
|
this.innerTracker = new $.MouseTracker(
|
2011-12-08 06:10:13 +04:00
|
|
|
this.canvas,
|
|
|
|
this.config.clickTimeThreshold,
|
|
|
|
this.config.clickDistThreshold
|
|
|
|
);
|
2012-01-24 17:03:50 +04:00
|
|
|
this.innerTracker.clickHandler = $.delegate( this, onCanvasClick );
|
|
|
|
this.innerTracker.dragHandler = $.delegate( this, onCanvasDrag );
|
|
|
|
this.innerTracker.releaseHandler = $.delegate( this, onCanvasRelease );
|
|
|
|
this.innerTracker.scrollHandler = $.delegate( this, onCanvasScroll );
|
2011-12-13 02:40:49 +04:00
|
|
|
this.innerTracker.setTracking( true ); // default state
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2011-12-13 02:40:49 +04:00
|
|
|
this.outerTracker = new $.MouseTracker(
|
2011-12-08 06:10:13 +04:00
|
|
|
this.container,
|
|
|
|
this.config.clickTimeThreshold,
|
|
|
|
this.config.clickDistThreshold
|
|
|
|
);
|
2012-01-24 17:03:50 +04:00
|
|
|
this.outerTracker.enterHandler = $.delegate( this, onContainerEnter );
|
|
|
|
this.outerTracker.exitHandler = $.delegate( this, onContainerExit );
|
|
|
|
this.outerTracker.releaseHandler = $.delegate( this, onContainerRelease );
|
2011-12-13 02:40:49 +04:00
|
|
|
this.outerTracker.setTracking( true ); // always tracking
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
(function( canvas ){
|
|
|
|
canvas.width = "100%";
|
|
|
|
canvas.height = "100%";
|
|
|
|
canvas.overflow = "hidden";
|
|
|
|
canvas.position = "absolute";
|
|
|
|
canvas.top = "0px";
|
|
|
|
canvas.left = "0px";
|
|
|
|
}( this.canvas.style ));
|
|
|
|
|
|
|
|
|
|
|
|
(function( container ){
|
|
|
|
container.width = "100%";
|
|
|
|
container.height = "100%";
|
|
|
|
container.position = "relative";
|
|
|
|
container.left = "0px";
|
|
|
|
container.top = "0px";
|
|
|
|
container.textAlign = "left"; // needed to protect against
|
|
|
|
}( this.container.style ));
|
|
|
|
|
|
|
|
var layouts = [ 'topleft', 'topright', 'bottomright', 'bottomleft'],
|
|
|
|
layout;
|
|
|
|
|
|
|
|
for( i = 0; i < layouts.length; i++ ){
|
|
|
|
layout = layouts[ i ]
|
2012-01-24 17:03:50 +04:00
|
|
|
this.controls[ layout ] = $.makeNeutralElement( "div" );
|
2011-12-08 06:10:13 +04:00
|
|
|
this.controls[ layout ].style.position = 'absolute';
|
|
|
|
if ( layout.match( 'left' ) ){
|
|
|
|
this.controls[ layout ].style.left = '0px';
|
|
|
|
}
|
|
|
|
if ( layout.match( 'right' ) ){
|
|
|
|
this.controls[ layout ].style.right = '0px';
|
|
|
|
}
|
|
|
|
if ( layout.match( 'top' ) ){
|
|
|
|
this.controls[ layout ].style.top = '0px';
|
|
|
|
}
|
|
|
|
if ( layout.match( 'bottom' ) ){
|
|
|
|
this.controls[ layout ].style.bottom = '0px';
|
|
|
|
}
|
|
|
|
}
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Navigation Controls
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2012-01-24 07:48:45 +04:00
|
|
|
this._group = null;
|
|
|
|
// whether we should be continuously zooming
|
|
|
|
this._zooming = false;
|
|
|
|
// how much we should be continuously zooming by
|
|
|
|
this._zoomFactor = null;
|
|
|
|
this._lastZoomTime = null;
|
2011-12-23 05:08:06 +04:00
|
|
|
|
|
|
|
this.elmt = null;
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
var beginZoomingInHandler = $.delegate( this, beginZoomingIn ),
|
|
|
|
endZoomingHandler = $.delegate( this, endZooming ),
|
|
|
|
doSingleZoomInHandler = $.delegate( this, doSingleZoomIn ),
|
|
|
|
beginZoomingOutHandler = $.delegate( this, beginZoomingOut ),
|
|
|
|
doSingleZoomOutHandler = $.delegate( this, doSingleZoomOut ),
|
|
|
|
onHomeHandler = $.delegate( this, onHome ),
|
|
|
|
onFullPageHandler = $.delegate( this, onFullPage ),
|
|
|
|
navImages = this.config.navImages,
|
|
|
|
zoomIn = new $.Button({
|
|
|
|
config: this.config,
|
|
|
|
tooltip: $.getString( "Tooltips.ZoomIn" ),
|
|
|
|
srcRest: resolveUrl( this.urlPrefix, navImages.zoomIn.REST ),
|
|
|
|
srcGroup: resolveUrl( this.urlPrefix, navImages.zoomIn.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.urlPrefix, navImages.zoomIn.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.urlPrefix, navImages.zoomIn.DOWN ),
|
|
|
|
onPress: beginZoomingInHandler,
|
|
|
|
onRelease: endZoomingHandler,
|
|
|
|
onClick: doSingleZoomInHandler,
|
|
|
|
onEnter: beginZoomingInHandler,
|
|
|
|
onExit: endZoomingHandler
|
|
|
|
}),
|
|
|
|
zoomOut = new $.Button({
|
|
|
|
config: this.config,
|
|
|
|
tooltip: $.getString( "Tooltips.ZoomOut" ),
|
|
|
|
srcRest: resolveUrl( this.urlPrefix, navImages.zoomOut.REST ),
|
|
|
|
srcGroup: resolveUrl( this.urlPrefix, navImages.zoomOut.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.urlPrefix, navImages.zoomOut.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.urlPrefix, navImages.zoomOut.DOWN ),
|
|
|
|
onPress: beginZoomingOutHandler,
|
|
|
|
onRelease: endZoomingHandler,
|
|
|
|
onClick: doSingleZoomOutHandler,
|
|
|
|
onEnter: beginZoomingOutHandler,
|
|
|
|
onExit: endZoomingHandler
|
|
|
|
}),
|
|
|
|
goHome = new $.Button({
|
|
|
|
config: this.config,
|
|
|
|
tooltip: $.getString( "Tooltips.Home" ),
|
|
|
|
srcRest: resolveUrl( this.urlPrefix, navImages.home.REST ),
|
|
|
|
srcGroup: resolveUrl( this.urlPrefix, navImages.home.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.urlPrefix, navImages.home.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.urlPrefix, navImages.home.DOWN ),
|
|
|
|
onRelease: onHomeHandler
|
|
|
|
}),
|
|
|
|
fullPage = new $.Button({
|
|
|
|
config: this.config,
|
|
|
|
tooltip: $.getString( "Tooltips.FullPage" ),
|
|
|
|
srcRest: resolveUrl( this.urlPrefix, navImages.fullpage.REST ),
|
|
|
|
srcGroup: resolveUrl( this.urlPrefix, navImages.fullpage.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.urlPrefix, navImages.fullpage.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.urlPrefix, navImages.fullpage.DOWN ),
|
|
|
|
onRelease: onFullPageHandler
|
|
|
|
});
|
|
|
|
|
|
|
|
this.buttons = new $.ButtonGroup({
|
2011-12-23 05:08:06 +04:00
|
|
|
config: this.config,
|
|
|
|
buttons: [ zoomIn, zoomOut, goHome, fullPage ]
|
|
|
|
});
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
this.navControl = this.buttons.element;
|
2011-12-23 05:08:06 +04:00
|
|
|
this.navControl[ $.SIGNAL ] = true; // hack to get our controls to fade
|
|
|
|
this.addHandler( 'open', $.delegate( this, lightUp ) );
|
|
|
|
|
2011-12-13 02:40:49 +04:00
|
|
|
if ( this.config.showNavigationControl ) {
|
2011-12-13 16:24:34 +04:00
|
|
|
this.navControl.style.marginRight = "4px";
|
|
|
|
this.navControl.style.marginBottom = "4px";
|
|
|
|
this.addControl(this.navControl, $.ControlAnchor.BOTTOM_RIGHT);
|
2011-12-07 05:26:06 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
for ( i = 0; i < this.customControls.length; i++ ) {
|
|
|
|
this.addControl(
|
|
|
|
this.customControls[ i ].id,
|
|
|
|
this.customControls[ i ].anchor
|
|
|
|
);
|
2011-12-07 05:26:06 +04:00
|
|
|
}
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
this.container.appendChild( this.canvas );
|
|
|
|
this.container.appendChild( this.controls.topleft );
|
|
|
|
this.container.appendChild( this.controls.topright );
|
|
|
|
this.container.appendChild( this.controls.bottomright );
|
|
|
|
this.container.appendChild( this.controls.bottomleft );
|
|
|
|
this.element.appendChild( this.container );
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
window.setTimeout( function(){
|
|
|
|
beginControlsAutoHide( _this );
|
|
|
|
}, 1 ); // initial fade out
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.xmlPath ){
|
2011-12-07 05:26:06 +04:00
|
|
|
this.openDzi( this.xmlPath );
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
$.extend( $.Viewer.prototype, $.EventHandler.prototype, {
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
addControl: function ( elmt, anchor ) {
|
2012-01-18 03:30:41 +04:00
|
|
|
var elmt = $.getElement( elmt ),
|
2011-12-08 06:10:13 +04:00
|
|
|
div = null;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
if ( getControlIndex( this, elmt ) >= 0 ) {
|
2011-12-06 07:50:25 +04:00
|
|
|
return; // they're trying to add a duplicate control
|
|
|
|
}
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
switch ( anchor ) {
|
2011-12-06 07:50:25 +04:00
|
|
|
case $.ControlAnchor.TOP_RIGHT:
|
2011-12-08 06:10:13 +04:00
|
|
|
div = this.controls.topright;
|
2011-12-06 07:50:25 +04:00
|
|
|
elmt.style.position = "relative";
|
|
|
|
break;
|
|
|
|
case $.ControlAnchor.BOTTOM_RIGHT:
|
2011-12-08 06:10:13 +04:00
|
|
|
div = this.controls.bottomright;
|
2011-12-06 07:50:25 +04:00
|
|
|
elmt.style.position = "relative";
|
|
|
|
break;
|
|
|
|
case $.ControlAnchor.BOTTOM_LEFT:
|
2011-12-08 06:10:13 +04:00
|
|
|
div = this.controls.bottomleft;
|
2011-12-06 07:50:25 +04:00
|
|
|
elmt.style.position = "relative";
|
|
|
|
break;
|
|
|
|
case $.ControlAnchor.TOP_LEFT:
|
2011-12-08 06:10:13 +04:00
|
|
|
div = this.controls.topleft;
|
2011-12-06 07:50:25 +04:00
|
|
|
elmt.style.position = "relative";
|
|
|
|
break;
|
|
|
|
case $.ControlAnchor.NONE:
|
|
|
|
default:
|
2011-12-08 06:10:13 +04:00
|
|
|
div = this.container;
|
2011-12-06 07:50:25 +04:00
|
|
|
elmt.style.position = "absolute";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
this.controls.push(
|
|
|
|
new $.Control( elmt, anchor, div )
|
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
elmt.style.display = "inline-block";
|
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
isOpen: function () {
|
|
|
|
return !!this.source;
|
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
openDzi: function ( xmlUrl, xmlString ) {
|
2011-12-13 07:40:02 +04:00
|
|
|
var _this = this;
|
2011-12-08 06:10:13 +04:00
|
|
|
$.DziTileSourceHelper.createFromXml(
|
|
|
|
xmlUrl,
|
|
|
|
xmlString,
|
2011-12-13 07:40:02 +04:00
|
|
|
function( source ){
|
|
|
|
_this.open( source );
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
openTileSource: function ( tileSource ) {
|
|
|
|
var _this = this;
|
|
|
|
window.setTimeout( function () {
|
|
|
|
_this.open( tileSource );
|
2011-12-23 05:47:21 +04:00
|
|
|
}, 1 );
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
open: function( source ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
var _this = this,
|
|
|
|
overlay,
|
|
|
|
i;
|
2011-12-13 07:40:02 +04:00
|
|
|
|
|
|
|
if ( this.source ) {
|
|
|
|
this.close();
|
|
|
|
}
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
// to ignore earlier opens
|
|
|
|
this._lastOpenStartTime = +new Date();
|
2011-12-13 07:40:02 +04:00
|
|
|
|
|
|
|
window.setTimeout( function () {
|
|
|
|
if ( _this._lastOpenStartTime > _this._lastOpenEndTime ) {
|
2012-01-24 07:48:45 +04:00
|
|
|
_this._setMessage( $.getString( "Messages.Loading" ) );
|
2011-12-13 07:40:02 +04:00
|
|
|
}
|
|
|
|
}, 2000);
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
this._lastOpenEndTime = +new Date();
|
2011-12-13 07:40:02 +04:00
|
|
|
|
|
|
|
if ( this._lastOpenStartTime < viewer._lastOpenStartTime ) {
|
2012-01-25 23:14:02 +04:00
|
|
|
$.console.log( "Ignoring out-of-date open." );
|
2011-12-17 03:29:16 +04:00
|
|
|
this.raiseEvent( "ignore" );
|
2011-12-06 07:50:25 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
this.canvas.innerHTML = "";
|
2012-01-18 03:30:41 +04:00
|
|
|
this._prevContainerSize = $.getElementSize( this.container );
|
2011-12-13 07:40:02 +04:00
|
|
|
|
|
|
|
if( source ){
|
|
|
|
this.source = source;
|
|
|
|
}
|
|
|
|
this.viewport = new $.Viewport(
|
|
|
|
this._prevContainerSize,
|
|
|
|
this.source.dimensions,
|
|
|
|
this.config
|
|
|
|
);
|
|
|
|
this.drawer = new $.Drawer(
|
|
|
|
this.source,
|
|
|
|
this.viewport,
|
|
|
|
this.canvas
|
|
|
|
);
|
2012-01-25 23:14:02 +04:00
|
|
|
|
|
|
|
//this.profiler = new $.Profiler();
|
2011-12-13 07:40:02 +04:00
|
|
|
|
|
|
|
this._animating = false;
|
|
|
|
this._forceRedraw = true;
|
2011-12-23 05:47:21 +04:00
|
|
|
scheduleUpdate( this, updateMulti );
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
for ( i = 0; i < this.overlayControls.length; i++ ) {
|
|
|
|
|
|
|
|
overlay = this.overlayControls[ i ];
|
|
|
|
|
|
|
|
if ( overlay.point != null ) {
|
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
this.drawer.addOverlay(
|
|
|
|
overlay.id,
|
|
|
|
new $.Point(
|
|
|
|
overlay.point.X,
|
|
|
|
overlay.point.Y
|
|
|
|
),
|
|
|
|
$.OverlayPlacement.TOP_LEFT
|
|
|
|
);
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
} else {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
this.drawer.addOverlay(
|
|
|
|
overlay.id,
|
|
|
|
new $.Rect(
|
|
|
|
overlay.rect.Point.X,
|
|
|
|
overlay.rect.Point.Y,
|
|
|
|
overlay.rect.Width,
|
|
|
|
overlay.rect.Height
|
|
|
|
),
|
|
|
|
overlay.placement
|
|
|
|
);
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-13 07:40:02 +04:00
|
|
|
}
|
|
|
|
}
|
2011-12-17 03:29:16 +04:00
|
|
|
this.raiseEvent( "open" );
|
2011-12-13 07:40:02 +04:00
|
|
|
},
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
close: function () {
|
|
|
|
this.source = null;
|
|
|
|
this.viewport = null;
|
|
|
|
this.drawer = null;
|
2012-01-25 23:14:02 +04:00
|
|
|
//this.profiler = null;
|
2011-12-13 07:40:02 +04:00
|
|
|
this.canvas.innerHTML = "";
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
removeControl: function ( elmt ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2012-01-18 03:30:41 +04:00
|
|
|
var elmt = $.getElement( elmt ),
|
2011-12-08 06:10:13 +04:00
|
|
|
i = getControlIndex( this, elmt );
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
if ( i >= 0 ) {
|
2011-12-07 05:26:06 +04:00
|
|
|
this.controls[ i ].destroy();
|
|
|
|
this.controls.splice( i, 1 );
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
},
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
clearControls: function () {
|
2011-12-07 05:26:06 +04:00
|
|
|
while ( this.controls.length > 0 ) {
|
|
|
|
this.controls.pop().destroy();
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
},
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
isDashboardEnabled: function () {
|
2011-12-08 06:10:13 +04:00
|
|
|
var i;
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
for ( i = this.controls.length - 1; i >= 0; i-- ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.controls[ i ].isVisible() ) {
|
2011-12-06 07:50:25 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
isFullPage: function () {
|
2011-12-08 06:10:13 +04:00
|
|
|
return this.container.parentNode == document.body;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
isMouseNavEnabled: function () {
|
2011-12-13 02:40:49 +04:00
|
|
|
return this.innerTracker.isTracking();
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
isVisible: function () {
|
2011-12-08 06:10:13 +04:00
|
|
|
return this.container.style.visibility != "hidden";
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
setDashboardEnabled: function( enabled ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
var i;
|
|
|
|
for ( i = this.controls.length - 1; i >= 0; i-- ) {
|
2011-12-07 05:26:06 +04:00
|
|
|
this.controls[ i ].setVisible( enabled );
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
setFullPage: function( fullPage ) {
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
var body = document.body,
|
|
|
|
bodyStyle = body.style,
|
|
|
|
docStyle = document.documentElement.style,
|
|
|
|
containerStyle = this.container.style,
|
|
|
|
canvasStyle = this.canvas.style,
|
2011-12-08 06:10:13 +04:00
|
|
|
oldBounds,
|
|
|
|
newBounds;
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
if ( fullPage == this.isFullPage() ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
if ( fullPage ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
this.bodyOverflow = bodyStyle.overflow;
|
|
|
|
this.docOverflow = docStyle.overflow;
|
2011-12-08 06:10:13 +04:00
|
|
|
bodyStyle.overflow = "hidden";
|
|
|
|
docStyle.overflow = "hidden";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
this.bodyWidth = bodyStyle.width;
|
|
|
|
this.bodyHeight = bodyStyle.height;
|
2011-12-08 06:10:13 +04:00
|
|
|
bodyStyle.width = "100%";
|
|
|
|
bodyStyle.height = "100%";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
canvasStyle.backgroundColor = "black";
|
2011-12-08 06:10:13 +04:00
|
|
|
canvasStyle.color = "white";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
containerStyle.position = "fixed";
|
2011-12-08 06:10:13 +04:00
|
|
|
containerStyle.zIndex = "99999999";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
body.appendChild( this.container );
|
2012-01-18 03:30:41 +04:00
|
|
|
this._prevContainerSize = $.getWindowSize();
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
// mouse will be inside container now
|
2011-12-13 02:22:01 +04:00
|
|
|
$.delegate( this, onContainerEnter )();
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
} else {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
bodyStyle.overflow = this.bodyOverflow;
|
|
|
|
docStyle.overflow = this.docOverflow;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
bodyStyle.width = this.bodyWidth;
|
|
|
|
bodyStyle.height = this.bodyHeight;
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
canvasStyle.backgroundColor = "";
|
2011-12-08 06:10:13 +04:00
|
|
|
canvasStyle.color = "";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
containerStyle.position = "relative";
|
2011-12-08 06:10:13 +04:00
|
|
|
containerStyle.zIndex = "";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
this.element.appendChild( this.container );
|
2012-01-18 03:30:41 +04:00
|
|
|
this._prevContainerSize = $.getElementSize( this.element );
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
// mouse will likely be outside now
|
2011-12-13 02:22:01 +04:00
|
|
|
$.delegate( this, onContainerExit )();
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
if ( this.viewport ) {
|
|
|
|
oldBounds = this.viewport.getBounds();
|
2012-01-24 17:03:50 +04:00
|
|
|
this.viewport.resize( this._prevContainerSize );
|
2011-12-08 06:10:13 +04:00
|
|
|
newBounds = this.viewport.getBounds();
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
if ( fullPage ) {
|
|
|
|
this._fsBoundsDelta = new $.Point(
|
|
|
|
newBounds.width / oldBounds.width,
|
|
|
|
newBounds.height / oldBounds.height
|
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
} else {
|
|
|
|
this.viewport.update();
|
2011-12-08 06:10:13 +04:00
|
|
|
this.viewport.zoomBy(
|
|
|
|
Math.max(
|
|
|
|
this._fsBoundsDelta.x,
|
|
|
|
this._fsBoundsDelta.y
|
|
|
|
),
|
|
|
|
null,
|
|
|
|
true
|
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this._forceRedraw = true;
|
2011-12-17 03:29:16 +04:00
|
|
|
this.raiseEvent( "resize", this );
|
2011-12-23 05:36:17 +04:00
|
|
|
updateOnce( this );
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
setMouseNavEnabled: function( enabled ){
|
2011-12-13 02:40:49 +04:00
|
|
|
this.innerTracker.setTracking( enabled );
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
setVisible: function( visible ){
|
|
|
|
this.container.style.visibility = visible ? "" : "hidden";
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
|
2011-12-15 03:22:02 +04:00
|
|
|
});
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Schedulers provide the general engine for animation
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
function scheduleUpdate( viewer, updateFunc, prevUpdateTime ){
|
|
|
|
var currentTime,
|
|
|
|
targetTime,
|
|
|
|
deltaTime;
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this._animating ) {
|
2011-12-23 05:47:21 +04:00
|
|
|
return window.setTimeout( function(){
|
|
|
|
updateFunc( viewer );
|
|
|
|
}, 1 );
|
2011-12-08 06:10:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
currentTime = +new Date();
|
|
|
|
prevUpdateTime = prevUpdateTime ? prevUpdateTime : currentTime;
|
2012-01-24 17:03:50 +04:00
|
|
|
// 60 frames per second is ideal
|
|
|
|
targetTime = prevUpdateTime + 1000 / 60;
|
|
|
|
deltaTime = Math.max( 1, targetTime - currentTime );
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2011-12-23 05:47:21 +04:00
|
|
|
return window.setTimeout( function(){
|
|
|
|
updateFunc( viewer );
|
|
|
|
}, deltaTime );
|
2011-12-08 06:10:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//provides a sequence in the fade animation
|
|
|
|
function scheduleControlsFade( viewer ) {
|
|
|
|
window.setTimeout( function(){
|
|
|
|
updateControlsFade( viewer );
|
|
|
|
}, 20);
|
|
|
|
};
|
|
|
|
|
|
|
|
//initiates an animation to hide the controls
|
|
|
|
function beginControlsAutoHide( viewer ) {
|
|
|
|
if ( !viewer.config.autoHideControls ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
viewer.controlsShouldFade = true;
|
|
|
|
viewer.controlsFadeBeginTime =
|
2012-01-24 17:03:50 +04:00
|
|
|
+new Date() +
|
2011-12-08 06:10:13 +04:00
|
|
|
viewer.controlsFadeDelay;
|
|
|
|
|
|
|
|
window.setTimeout( function(){
|
|
|
|
scheduleControlsFade( viewer );
|
|
|
|
}, viewer.controlsFadeDelay );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//determines if fade animation is done or continues the animation
|
|
|
|
function updateControlsFade( viewer ) {
|
|
|
|
var currentTime,
|
|
|
|
deltaTime,
|
|
|
|
opacity,
|
|
|
|
i;
|
|
|
|
if ( viewer.controlsShouldFade ) {
|
|
|
|
currentTime = new Date().getTime();
|
|
|
|
deltaTime = currentTime - viewer.controlsFadeBeginTime;
|
|
|
|
opacity = 1.0 - deltaTime / viewer.controlsFadeLength;
|
|
|
|
|
|
|
|
opacity = Math.min( 1.0, opacity );
|
|
|
|
opacity = Math.max( 0.0, opacity );
|
|
|
|
|
2011-12-13 02:22:01 +04:00
|
|
|
for ( i = viewer.controls.length - 1; i >= 0; i--) {
|
|
|
|
viewer.controls[ i ].setOpacity( opacity );
|
2011-12-08 06:10:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( opacity > 0 ) {
|
|
|
|
// fade again
|
|
|
|
scheduleControlsFade( viewer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
//stop the fade animation on the controls and show them
|
|
|
|
function abortControlsAutoHide( viewer ) {
|
|
|
|
var i;
|
|
|
|
viewer.controlsShouldFade = false;
|
|
|
|
for ( i = viewer.controls.length - 1; i >= 0; i-- ) {
|
|
|
|
viewer.controls[ i ].setOpacity( 1.0 );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Default view event handlers.
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2012-01-24 17:03:50 +04:00
|
|
|
function onCanvasClick( tracker, position, quick, shift ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
var zoomPreClick,
|
|
|
|
factor;
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport && quick ) { // ignore clicks where mouse moved
|
2011-12-08 06:10:13 +04:00
|
|
|
zoomPerClick = this.config.zoomPerClick;
|
|
|
|
factor = shift ? 1.0 / zoomPerClick : zoomPerClick;
|
2012-01-24 17:03:50 +04:00
|
|
|
this.viewport.zoomBy(
|
|
|
|
factor,
|
|
|
|
this.viewport.pointFromPixel( position, true )
|
|
|
|
);
|
2011-12-08 06:10:13 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
function onCanvasDrag( tracker, position, delta, shift ) {
|
|
|
|
if ( this.viewport ) {
|
|
|
|
this.viewport.panBy(
|
|
|
|
this.viewport.deltaPointsFromPixels(
|
|
|
|
delta.negate()
|
|
|
|
)
|
|
|
|
);
|
2011-12-08 06:10:13 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
function onCanvasRelease( tracker, position, insideElmtPress, insideElmtRelease ) {
|
|
|
|
if ( insideElmtPress && this.viewport ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
function onCanvasScroll( tracker, position, scroll, shift ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
var factor;
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
|
|
|
factor = Math.pow( this.config.zoomPerScroll, scroll );
|
|
|
|
this.viewport.zoomBy(
|
|
|
|
factor,
|
|
|
|
this.viewport.pointFromPixel( position, true )
|
|
|
|
);
|
2011-12-08 06:10:13 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
function onContainerExit( tracker, position, buttonDownElmt, buttonDownAny ) {
|
|
|
|
if ( !buttonDownElmt ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
this._mouseInside = false;
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( !this._animating ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
beginControlsAutoHide( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
function onContainerRelease( tracker, position, insideElmtPress, insideElmtRelease ) {
|
|
|
|
if ( !insideElmtRelease ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
this._mouseInside = false;
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( !this._animating ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
beginControlsAutoHide( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
function onContainerEnter( tracker, position, buttonDownElmt, buttonDownAny ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
this._mouseInside = true;
|
|
|
|
abortControlsAutoHide( this );
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-12-13 07:40:02 +04:00
|
|
|
// Utility methods
|
2011-12-08 06:10:13 +04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
function getControlIndex( viewer, elmt ) {
|
|
|
|
for ( i = viewer.controls.length - 1; i >= 0; i-- ) {
|
|
|
|
if ( viewer.controls[ i ].elmt == elmt ) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Page update routines ( aka Views - for future reference )
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-12-23 05:47:21 +04:00
|
|
|
|
|
|
|
function updateMulti( viewer ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
var beginTime;
|
|
|
|
|
|
|
|
if ( !viewer.source ) {
|
2011-12-23 05:47:21 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
beginTime = +new Date();
|
2011-12-23 05:47:21 +04:00
|
|
|
updateOnce( viewer );
|
|
|
|
scheduleUpdate( viewer, arguments.callee, beginTime );
|
|
|
|
};
|
|
|
|
|
2011-12-23 05:36:17 +04:00
|
|
|
function updateOnce( viewer ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
var containerSize,
|
|
|
|
animated;
|
|
|
|
|
2011-12-23 05:36:17 +04:00
|
|
|
if ( !viewer.source ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-30 02:14:42 +04:00
|
|
|
//viewer.profiler.beginUpdate();
|
2011-12-23 05:36:17 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
containerSize = $.getElementSize( viewer.container );
|
2011-12-23 05:36:17 +04:00
|
|
|
if ( !containerSize.equals( viewer._prevContainerSize ) ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
// maintain image position
|
|
|
|
viewer.viewport.resize( containerSize, true );
|
2011-12-23 05:36:17 +04:00
|
|
|
viewer._prevContainerSize = containerSize;
|
|
|
|
viewer.raiseEvent( "resize" );
|
|
|
|
}
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
animated = viewer.viewport.update();
|
2011-12-23 05:36:17 +04:00
|
|
|
if ( !viewer._animating && animated ) {
|
|
|
|
viewer.raiseEvent( "animationstart" );
|
|
|
|
abortControlsAutoHide( viewer );
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2011-12-23 05:36:17 +04:00
|
|
|
if ( animated ) {
|
|
|
|
viewer.drawer.update();
|
|
|
|
viewer.raiseEvent( "animation" );
|
|
|
|
} else if ( viewer._forceRedraw || viewer.drawer.needsUpdate() ) {
|
|
|
|
viewer.drawer.update();
|
|
|
|
viewer._forceRedraw = false;
|
2011-12-28 03:20:45 +04:00
|
|
|
}
|
2011-12-23 05:36:17 +04:00
|
|
|
|
|
|
|
if ( viewer._animating && !animated ) {
|
|
|
|
viewer.raiseEvent( "animationfinish" );
|
|
|
|
|
|
|
|
if ( !viewer._mouseInside ) {
|
|
|
|
beginControlsAutoHide( viewer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
viewer._animating = animated;
|
|
|
|
|
2011-12-30 02:14:42 +04:00
|
|
|
//viewer.profiler.endUpdate();
|
2011-12-23 05:36:17 +04:00
|
|
|
};
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Navigation Controls
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
function resolveUrl( prefix, url ) {
|
|
|
|
return prefix ? prefix + url : url;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function beginZoomingIn() {
|
|
|
|
this._lastZoomTime = +new Date();
|
|
|
|
this._zoomFactor = this.config.zoomPerSecond;
|
|
|
|
this._zooming = true;
|
|
|
|
scheduleZoom( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
function beginZoomingOut() {
|
|
|
|
this._lastZoomTime = +new Date();
|
|
|
|
this._zoomFactor = 1.0 / this.config.zoomPerSecond;
|
|
|
|
this._zooming = true;
|
|
|
|
scheduleZoom( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
function endZooming() {
|
|
|
|
this._zooming = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function scheduleZoom( viewer ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
window.setTimeout( $.delegate( viewer, doZoom ), 10 );
|
2011-12-23 05:08:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function doZoom() {
|
2012-01-24 17:03:50 +04:00
|
|
|
var currentTime,
|
|
|
|
deltaTime,
|
|
|
|
adjustFactor;
|
|
|
|
|
|
|
|
if ( this._zooming && this.viewport) {
|
|
|
|
currentTime = +new Date();
|
|
|
|
deltaTime = currentTime - this._lastZoomTime;
|
|
|
|
adjustedFactor = Math.pow( this._zoomFactor, deltaTime / 1000 );
|
2011-12-23 05:08:06 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
this.viewport.zoomBy( adjustedFactor );
|
2011-12-23 05:08:06 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
this._lastZoomTime = currentTime;
|
|
|
|
scheduleZoom( this );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function doSingleZoomIn() {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2011-12-23 05:08:06 +04:00
|
|
|
this._zooming = false;
|
|
|
|
this.viewport.zoomBy(
|
|
|
|
this.config.zoomPerClick / 1.0
|
|
|
|
);
|
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function doSingleZoomOut() {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2011-12-23 05:08:06 +04:00
|
|
|
this._zooming = false;
|
|
|
|
this.viewport.zoomBy(
|
|
|
|
1.0 / this.config.zoomPerClick
|
|
|
|
);
|
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function lightUp() {
|
2012-01-24 17:03:50 +04:00
|
|
|
this.buttons.emulateEnter();
|
|
|
|
this.buttons.emulateExit();
|
2011-12-23 05:08:06 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
function onHome() {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2011-12-23 05:08:06 +04:00
|
|
|
this.viewport.goHome();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function onFullPage() {
|
|
|
|
this.setFullPage( !this.isFullPage() );
|
2012-01-24 17:03:50 +04:00
|
|
|
// correct for no mouseout event on change
|
|
|
|
this.buttons.emulateExit();
|
|
|
|
if ( this.viewport ) {
|
2011-12-23 05:08:06 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
|
|
|
};
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
}( OpenSeadragon ));
|