2011-12-06 07:50:25 +04:00
|
|
|
(function( $ ){
|
2012-02-27 15:56:29 +04:00
|
|
|
|
|
|
|
// dictionary from hash to private properties
|
2012-03-20 10:44:31 +04:00
|
|
|
var THIS = {},
|
|
|
|
// We keep a list of viewers so we can 'wake-up' each viewer on
|
|
|
|
// a page after toggling between fullpage modes
|
|
|
|
VIEWERS = {};
|
2012-02-27 15:56:29 +04:00
|
|
|
|
2011-12-07 05:26:06 +04:00
|
|
|
/**
|
|
|
|
*
|
2012-02-01 00:59:09 +04:00
|
|
|
* The main point of entry into creating a zoomable image on the page.
|
2011-12-07 05:26:06 +04:00
|
|
|
*
|
2012-02-01 00:59:09 +04:00
|
|
|
* We have provided an idiomatic javascript constructor which takes
|
|
|
|
* a single object, but still support the legacy positional arguments.
|
2011-12-07 05:26:06 +04:00
|
|
|
*
|
2012-02-01 00:59:09 +04:00
|
|
|
* 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.
|
2011-12-07 05:26:06 +04:00
|
|
|
*
|
2012-02-01 00:59:09 +04:00
|
|
|
* @class
|
|
|
|
* @extends OpenSeadragon.EventHandler
|
2012-03-09 20:04:28 +04:00
|
|
|
* @extends OpenSeadragon.ControlDock
|
2012-02-01 00:59:09 +04:00
|
|
|
* @param {Object} options
|
|
|
|
* @param {String} options.element Id of Element to attach to,
|
|
|
|
* @param {String} options.xmlPath Xpath ( TODO: not sure! ),
|
|
|
|
* @param {String} options.prefixUrl Url used to prepend to paths, eg button
|
|
|
|
* images, etc.
|
|
|
|
* @param {Seadragon.Controls[]} options.controls Array of Seadragon.Controls,
|
|
|
|
* @param {Seadragon.Overlays[]} options.overlays Array of Seadragon.Overlays,
|
|
|
|
* @param {Seadragon.Controls[]} options.overlayControls An Array of ( TODO:
|
|
|
|
* not sure! )
|
2011-12-07 05:26:06 +04:00
|
|
|
*
|
|
|
|
**/
|
|
|
|
$.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
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
//backward compatibility for positional args while prefering more
|
|
|
|
//idiomatic javascript options object as the only argument
|
2012-02-28 03:29:00 +04:00
|
|
|
if( !$.isPlainObject( options ) ){
|
2011-12-07 05:26:06 +04:00
|
|
|
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,
|
2012-03-01 17:38:15 +04:00
|
|
|
overlayControls: args.length > 5 ? args[ 5 ] : undefined
|
2011-12-07 05:26:06 +04:00
|
|
|
};
|
|
|
|
}
|
2012-03-01 17:38:15 +04:00
|
|
|
|
|
|
|
//options.config and the general config argument are deprecated
|
|
|
|
//in favor of the more direct specification of optional settings
|
|
|
|
//being pass directly on the options object
|
|
|
|
if ( options.config ){
|
|
|
|
$.extend( true, options, options.config );
|
|
|
|
delete options.config;
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
//Public properties
|
2011-12-07 05:26:06 +04:00
|
|
|
//Allow the options object to override global defaults
|
|
|
|
$.extend( true, this, {
|
2012-03-01 17:38:15 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
//internal state and dom identifiers
|
|
|
|
id: options.id,
|
|
|
|
hash: options.id,
|
|
|
|
|
|
|
|
//dom nodes
|
|
|
|
element: null,
|
|
|
|
canvas: null,
|
|
|
|
container: null,
|
|
|
|
|
|
|
|
//TODO: not sure how to best describe these
|
|
|
|
overlays: [],
|
|
|
|
overlayControls:[],
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
//private state properties
|
2012-04-03 11:08:27 +04:00
|
|
|
previousBody: [],
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
//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.
|
2012-03-01 17:38:15 +04:00
|
|
|
customControls: [],
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
//These are originally not part options but declared as members
|
|
|
|
//in initialize. Its still considered idiomatic to put them here
|
|
|
|
source: null,
|
2013-02-08 18:21:28 +04:00
|
|
|
drawer: null,
|
|
|
|
drawers: [],
|
2012-03-01 17:38:15 +04:00
|
|
|
viewport: null,
|
2012-03-07 07:20:00 +04:00
|
|
|
navigator: null,
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
//A collection viewport is a seperate viewport used to provide
|
|
|
|
//simultanious rendering of sets of tiless
|
|
|
|
collectionViewport: null,
|
|
|
|
collectionDrawer: null,
|
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
//UI image resources
|
|
|
|
//TODO: rename navImages to uiImages
|
|
|
|
navImages: null,
|
|
|
|
|
|
|
|
//interface button controls
|
|
|
|
buttons: null,
|
|
|
|
|
|
|
|
//TODO: this is defunct so safely remove it
|
2012-03-01 17:38:15 +04:00
|
|
|
profiler: null
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
}, $.DEFAULT_SETTINGS, options );
|
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
//Private state properties
|
|
|
|
THIS[ this.hash ] = {
|
|
|
|
"fsBoundsDelta": new $.Point( 1, 1 ),
|
|
|
|
"prevContainerSize": null,
|
|
|
|
"lastOpenStartTime": 0,
|
|
|
|
"lastOpenEndTime": 0,
|
|
|
|
"animating": false,
|
|
|
|
"forceRedraw": false,
|
|
|
|
"mouseInside": false,
|
|
|
|
"group": null,
|
|
|
|
// whether we should be continuously zooming
|
|
|
|
"zooming": false,
|
|
|
|
// how much we should be continuously zooming by
|
|
|
|
"zoomFactor": null,
|
|
|
|
"lastZoomTime": null,
|
|
|
|
// did we decide this viewer has a sequence of tile sources
|
|
|
|
"sequenced": false,
|
2013-02-28 23:28:05 +04:00
|
|
|
"sequence": 0,
|
|
|
|
"onfullscreenchange": null
|
2012-04-03 11:08:27 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//Inherit some behaviors and properties
|
2012-03-09 20:04:28 +04:00
|
|
|
$.EventHandler.call( this );
|
|
|
|
$.ControlDock.call( this, options );
|
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
//Deal with tile sources
|
|
|
|
var initialTileSource,
|
|
|
|
customTileSource;
|
|
|
|
|
|
|
|
if ( this.xmlPath ){
|
|
|
|
//Deprecated option. Now it is preferred to use the tileSources option
|
|
|
|
this.tileSources = [ this.xmlPath ];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( this.tileSources ){
|
2012-06-05 15:52:00 +04:00
|
|
|
// tileSources is a complex option...
|
|
|
|
//
|
|
|
|
// It can be a string, object, or an array of any of strings and objects.
|
|
|
|
// At this point we only care about if it is an Array or not.
|
|
|
|
//
|
2012-04-03 11:08:27 +04:00
|
|
|
if( $.isArray( this.tileSources ) ){
|
2012-06-05 15:52:00 +04:00
|
|
|
|
|
|
|
//must be a sequence of tileSource since the first item
|
|
|
|
//is a legacy tile source
|
|
|
|
if( this.tileSources.length > 1 ){
|
2012-04-03 11:08:27 +04:00
|
|
|
THIS[ this.hash ].sequenced = true;
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
|
|
|
initialTileSource = this.tileSources[ 0 ];
|
2012-04-03 11:08:27 +04:00
|
|
|
} else {
|
|
|
|
initialTileSource = this.tileSources;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.openTileSource( initialTileSource );
|
|
|
|
}
|
|
|
|
|
2012-03-07 07:20:00 +04:00
|
|
|
this.element = this.element || document.getElementById( this.id );
|
2012-01-24 17:03:50 +04:00
|
|
|
this.canvas = $.makeNeutralElement( "div" );
|
2013-03-17 00:35:33 +04:00
|
|
|
this.textAreaToReceiveKeyboardCommands = $.makeNeutralElement( "textarea" );
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2013-02-14 01:50:23 +04:00
|
|
|
this.canvas.className = "openseadragon-canvas";
|
2013-03-17 00:35:33 +04:00
|
|
|
(function( style ){
|
|
|
|
style.width = "100%";
|
|
|
|
style.height = "100%";
|
|
|
|
style.overflow = "hidden";
|
|
|
|
style.position = "absolute";
|
|
|
|
style.top = "0px";
|
|
|
|
style.left = "0px";
|
2012-03-09 20:04:28 +04:00
|
|
|
}( this.canvas.style ));
|
|
|
|
|
2013-03-17 00:35:33 +04:00
|
|
|
this.textAreaToReceiveKeyboardCommands.className = "findmetoo";
|
|
|
|
(function( style ){
|
|
|
|
style.width = "100%";
|
|
|
|
style.height = "100%";
|
|
|
|
style.overflow = "hidden";
|
|
|
|
style.position = "absolute";
|
|
|
|
style.top = "0px";
|
|
|
|
style.left = "0px";
|
|
|
|
}( this.textAreaToReceiveKeyboardCommands.style ));
|
|
|
|
|
|
|
|
|
2013-02-14 01:50:23 +04:00
|
|
|
//the container is created through applying the ControlDock constructor above
|
|
|
|
this.container.className = "openseadragon-container";
|
2013-03-17 00:35:33 +04:00
|
|
|
(function( style ){
|
|
|
|
style.width = "100%";
|
|
|
|
style.height = "100%";
|
|
|
|
style.position = "relative";
|
|
|
|
style.overflow = "hidden";
|
|
|
|
style.left = "0px";
|
|
|
|
style.top = "0px";
|
|
|
|
style.textAlign = "left"; // needed to protect against
|
2012-03-09 20:04:28 +04:00
|
|
|
}( this.container.style ));
|
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
this.container.insertBefore( this.canvas, this.container.firstChild );
|
2013-03-17 00:35:33 +04:00
|
|
|
this.container.insertBefore( this.textAreaToReceiveKeyboardCommands, this.container.firstChild );
|
2012-03-09 20:04:28 +04:00
|
|
|
this.element.appendChild( this.container );
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
//Used for toggling between fullscreen and default container size
|
2012-02-27 15:56:29 +04:00
|
|
|
//TODO: these can be closure private and shared across Viewer
|
|
|
|
// instances.
|
2012-01-24 17:03:50 +04:00
|
|
|
this.bodyWidth = document.body.style.width;
|
|
|
|
this.bodyHeight = document.body.style.height;
|
|
|
|
this.bodyOverflow = document.body.style.overflow;
|
|
|
|
this.docOverflow = document.documentElement.style.overflow;
|
2012-02-27 15:56:29 +04:00
|
|
|
|
2013-03-17 00:35:33 +04:00
|
|
|
this.textAreaToReceiveKeyboardCommands.innerTracker = new $.MouseTracker({
|
|
|
|
_this : this,
|
|
|
|
element: this.textAreaToReceiveKeyboardCommands,
|
|
|
|
focusHandler: function(){
|
|
|
|
var point = $.getElementPosition( this.element );
|
|
|
|
window.scrollTo( 0, point.y );
|
|
|
|
},
|
|
|
|
|
|
|
|
keyHandler: function(tracker, keyCode, shiftKey){
|
|
|
|
switch( keyCode ){
|
|
|
|
case 61://=|+
|
|
|
|
_this.viewport.zoomBy(1.1);
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
case 45://-|_
|
|
|
|
_this.viewport.zoomBy(0.9);
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
case 48://0|)
|
|
|
|
_this.viewport.goHome();
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
case 119://w
|
|
|
|
case 87://W
|
|
|
|
case 38://up arrow
|
|
|
|
if (shiftKey)
|
|
|
|
_this.viewport.zoomBy(1.1);
|
|
|
|
else
|
|
|
|
_this.viewport.panBy(new $.Point(0, -0.05));
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
case 115://s
|
|
|
|
case 83://S
|
|
|
|
case 40://down arrow
|
|
|
|
if (shiftKey)
|
|
|
|
_this.viewport.zoomBy(0.9);
|
|
|
|
else
|
|
|
|
_this.viewport.panBy(new $.Point(0, 0.05));
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
case 97://a
|
|
|
|
case 37://left arrow
|
|
|
|
_this.viewport.panBy(new $.Point(-0.05, 0));
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
case 100://d
|
|
|
|
case 39://right arrow
|
|
|
|
_this.viewport.panBy(new $.Point(0.05, 0));
|
|
|
|
_this.viewport.applyConstraints();
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
//console.log( 'navigator keycode %s', keyCode );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).setTracking( true ); // default state
|
|
|
|
|
2012-02-03 04:12:45 +04:00
|
|
|
this.innerTracker = new $.MouseTracker({
|
|
|
|
element: this.canvas,
|
2012-03-01 17:38:15 +04:00
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
2012-02-03 04:12:45 +04:00
|
|
|
clickHandler: $.delegate( this, onCanvasClick ),
|
|
|
|
dragHandler: $.delegate( this, onCanvasDrag ),
|
|
|
|
releaseHandler: $.delegate( this, onCanvasRelease ),
|
|
|
|
scrollHandler: $.delegate( this, onCanvasScroll )
|
2012-03-07 07:20:00 +04:00
|
|
|
}).setTracking( this.mouseNavEnabled ? true : false ); // default state
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-02-03 04:12:45 +04:00
|
|
|
this.outerTracker = new $.MouseTracker({
|
|
|
|
element: this.container,
|
2012-03-01 17:38:15 +04:00
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
2012-02-03 04:12:45 +04:00
|
|
|
enterHandler: $.delegate( this, onContainerEnter ),
|
|
|
|
exitHandler: $.delegate( this, onContainerExit ),
|
|
|
|
releaseHandler: $.delegate( this, onContainerRelease )
|
2012-03-07 07:20:00 +04:00
|
|
|
}).setTracking( this.mouseNavEnabled ? true : false ); // always tracking
|
2012-04-11 01:02:24 +04:00
|
|
|
|
|
|
|
if( this.toolbar ){
|
|
|
|
this.toolbar = new $.ControlDock({ element: this.toolbar });
|
2011-12-07 05:26:06 +04:00
|
|
|
}
|
2012-04-11 01:02:24 +04:00
|
|
|
|
|
|
|
this.bindStandardControls();
|
|
|
|
this.bindSequenceControls();
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-03-16 19:36:28 +04:00
|
|
|
for ( i = 0; i < this.customControls.length; i++ ) {
|
|
|
|
this.addControl(
|
|
|
|
this.customControls[ i ].id,
|
2013-03-15 18:59:47 +04:00
|
|
|
{anchor: this.customControls[ i ].anchor}
|
2012-03-16 19:36:28 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-02-26 19:19:48 +04:00
|
|
|
$.requestAnimationFrame( function(){
|
2011-12-08 06:10:13 +04:00
|
|
|
beginControlsAutoHide( _this );
|
2013-02-26 19:19:48 +04:00
|
|
|
} ); // initial fade out
|
2011-12-07 05:26:06 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
};
|
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
$.extend( $.Viewer.prototype, $.EventHandler.prototype, $.ControlDock.prototype, {
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.isOpen
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {Boolean}
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
isOpen: function () {
|
|
|
|
return !!this.source;
|
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* If the string is xml is simply parsed and opened, otherwise the string
|
|
|
|
* is treated as an URL and an xml document is requested via ajax, parsed
|
|
|
|
* and then opened in the viewer.
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.openDzi
|
|
|
|
* @param {String} dzi and xml string or the url to a DZI xml document.
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-08-29 22:46:34 +04:00
|
|
|
*
|
|
|
|
* @deprecated - use 'open' instead.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
|
|
|
openDzi: function ( dzi ) {
|
2011-12-13 07:40:02 +04:00
|
|
|
var _this = this;
|
2012-02-01 00:59:09 +04:00
|
|
|
$.createFromDZI(
|
|
|
|
dzi,
|
2011-12-13 07:40:02 +04:00
|
|
|
function( source ){
|
|
|
|
_this.open( source );
|
2012-04-03 11:08:27 +04:00
|
|
|
},
|
|
|
|
this.tileHost
|
2011-12-08 06:10:13 +04:00
|
|
|
);
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
2012-06-05 15:52:00 +04:00
|
|
|
* tileSources is a complex option...
|
|
|
|
*
|
|
|
|
* It can be a string, object, function, or an array of any of these:
|
|
|
|
*
|
|
|
|
* - A String implies a url used to determine the tileSource implementation
|
|
|
|
* based on the file extension of url. JSONP is implied by *.js,
|
|
|
|
* otherwise the url is retrieved as text and the resulting text is
|
|
|
|
* introspected to determine if its json, xml, or text and parsed.
|
|
|
|
* - An Object implies an inline configuration which has a single
|
|
|
|
* property sufficient for being able to determine tileSource
|
|
|
|
* implementation. If the object has a property which is a function
|
|
|
|
* named 'getTileUrl', it is treated as a custom TileSource.
|
2012-02-01 00:59:09 +04:00
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.openTileSource
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2011-12-13 07:40:02 +04:00
|
|
|
openTileSource: function ( tileSource ) {
|
2012-04-03 11:08:27 +04:00
|
|
|
var _this = this,
|
2012-06-05 15:52:00 +04:00
|
|
|
customTileSource,
|
|
|
|
readySource,
|
|
|
|
$TileSource,
|
|
|
|
options;
|
2012-04-03 11:08:27 +04:00
|
|
|
|
|
|
|
setTimeout(function(){
|
|
|
|
if ( $.type( tileSource ) == 'string') {
|
2012-06-05 15:52:00 +04:00
|
|
|
//TODO: We cant assume a string implies a dzi since all
|
|
|
|
//complete TileSource implementations should have a getInfo
|
|
|
|
//which allows them to be configured via AJAX. Im not sure
|
|
|
|
//if its better to use file extension or url pattern, or to
|
|
|
|
//inspect the resulting info object.
|
|
|
|
tileSource = new $.TileSource( tileSource, function( readySource ){
|
|
|
|
_this.open( readySource );
|
|
|
|
});
|
|
|
|
|
|
|
|
} else if ( $.isPlainObject( tileSource ) ){
|
|
|
|
if( $.isFunction( tileSource.getTileUrl ) ){
|
|
|
|
//Custom tile source
|
2012-08-30 04:53:42 +04:00
|
|
|
customTileSource = new $.TileSource(tileSource);
|
2012-06-05 15:52:00 +04:00
|
|
|
customTileSource.getTileUrl = tileSource.getTileUrl;
|
|
|
|
_this.open( customTileSource );
|
|
|
|
} else {
|
|
|
|
//inline configuration
|
|
|
|
$TileSource = $.TileSource.determineType( _this, tileSource );
|
|
|
|
options = $TileSource.prototype.configure.apply( _this, [ tileSource ]);
|
|
|
|
readySource = new $TileSource( options );
|
|
|
|
_this.open( readySource );
|
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
} else {
|
|
|
|
//can assume it's already a tile source implementation
|
|
|
|
_this.open( tileSource );
|
|
|
|
}
|
|
|
|
}, 1);
|
|
|
|
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2011-12-23 05:47:21 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.open
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +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 ) {
|
2012-04-03 11:08:27 +04:00
|
|
|
this.close( );
|
2011-12-13 07:40:02 +04:00
|
|
|
}
|
2012-01-24 17:03:50 +04:00
|
|
|
|
|
|
|
// to ignore earlier opens
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].lastOpenStartTime = +new Date();
|
2011-12-13 07:40:02 +04:00
|
|
|
|
|
|
|
window.setTimeout( function () {
|
2012-02-27 15:56:29 +04:00
|
|
|
if ( THIS[ _this.hash ].lastOpenStartTime > THIS[ _this.hash ].lastOpenEndTime ) {
|
|
|
|
THIS[ _this.hash ].setMessage( $.getString( "Messages.Loading" ) );
|
2011-12-13 07:40:02 +04:00
|
|
|
}
|
|
|
|
}, 2000);
|
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].lastOpenEndTime = +new Date();
|
2011-12-13 07:40:02 +04:00
|
|
|
this.canvas.innerHTML = "";
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].prevContainerSize = $.getElementSize( this.container );
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2012-02-28 17:07:56 +04:00
|
|
|
|
2013-01-24 08:00:11 +04:00
|
|
|
if( this.collectionMode ){
|
|
|
|
this.source = new $.TileSourceCollection({
|
|
|
|
rows: this.collectionRows,
|
|
|
|
layout: this.collectionLayout,
|
|
|
|
tileSize: this.collectionTileSize,
|
|
|
|
tileSources: this.tileSources,
|
|
|
|
tileMargin: this.collectionTileMargin
|
|
|
|
});
|
|
|
|
this.viewport = this.viewport ? this.viewport : new $.Viewport({
|
|
|
|
collectionMode: true,
|
|
|
|
collectionTileSource: this.source,
|
|
|
|
containerSize: THIS[ this.hash ].prevContainerSize,
|
|
|
|
contentSize: this.source.dimensions,
|
|
|
|
springStiffness: this.springStiffness,
|
|
|
|
animationTime: this.animationTime,
|
2013-01-31 05:23:45 +04:00
|
|
|
showNavigator: false,
|
2013-01-24 08:00:11 +04:00
|
|
|
minZoomImageRatio: 1,
|
2013-02-14 04:44:23 +04:00
|
|
|
maxZoomPixelRatio: 1,
|
|
|
|
viewer: this //,
|
2013-02-06 06:26:40 +04:00
|
|
|
//TODO: figure out how to support these in a way that makes sense
|
|
|
|
//minZoomLevel: this.minZoomLevel,
|
|
|
|
//maxZoomLevel: this.maxZoomLevel
|
2013-01-24 08:00:11 +04:00
|
|
|
});
|
|
|
|
}else{
|
|
|
|
if( source ){
|
|
|
|
this.source = source;
|
|
|
|
}
|
|
|
|
this.viewport = this.viewport ? this.viewport : new $.Viewport({
|
|
|
|
containerSize: THIS[ this.hash ].prevContainerSize,
|
|
|
|
contentSize: this.source.dimensions,
|
|
|
|
springStiffness: this.springStiffness,
|
|
|
|
animationTime: this.animationTime,
|
|
|
|
minZoomImageRatio: this.minZoomImageRatio,
|
|
|
|
maxZoomPixelRatio: this.maxZoomPixelRatio,
|
|
|
|
visibilityRatio: this.visibilityRatio,
|
|
|
|
wrapHorizontal: this.wrapHorizontal,
|
2013-02-06 06:26:40 +04:00
|
|
|
wrapVertical: this.wrapVertical,
|
|
|
|
defaultZoomLevel: this.defaultZoomLevel,
|
|
|
|
minZoomLevel: this.minZoomLevel,
|
2013-02-14 04:44:23 +04:00
|
|
|
maxZoomLevel: this.maxZoomLevel,
|
|
|
|
viewer: this
|
2013-01-24 08:00:11 +04:00
|
|
|
});
|
|
|
|
}
|
2012-06-05 15:52:00 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
if( this.preserveVewport ){
|
|
|
|
this.viewport.resetContentSize( this.source.dimensions );
|
2013-02-06 06:26:40 +04:00
|
|
|
}
|
2012-02-28 03:29:00 +04:00
|
|
|
|
2013-02-11 07:53:51 +04:00
|
|
|
this.source.overlays = this.source.overlays || [];
|
|
|
|
|
2012-03-01 17:38:15 +04:00
|
|
|
this.drawer = new $.Drawer({
|
|
|
|
source: this.source,
|
|
|
|
viewport: this.viewport,
|
|
|
|
element: this.canvas,
|
2013-02-11 07:53:51 +04:00
|
|
|
overlays: [].concat( this.overlays ).concat( this.source.overlays ),
|
2012-03-01 17:38:15 +04:00
|
|
|
maxImageCacheCount: this.maxImageCacheCount,
|
|
|
|
imageLoaderLimit: this.imageLoaderLimit,
|
|
|
|
minZoomImageRatio: this.minZoomImageRatio,
|
|
|
|
wrapHorizontal: this.wrapHorizontal,
|
|
|
|
wrapVertical: this.wrapVertical,
|
|
|
|
immediateRender: this.immediateRender,
|
|
|
|
blendTime: this.blendTime,
|
|
|
|
alwaysBlend: this.alwaysBlend,
|
2013-01-31 05:23:45 +04:00
|
|
|
minPixelRatio: this.collectionMode ? 0 : this.minPixelRatio,
|
2013-01-31 01:51:37 +04:00
|
|
|
timeout: this.timeout,
|
2013-01-24 08:00:11 +04:00
|
|
|
debugMode: this.debugMode,
|
|
|
|
debugGridColor: this.debugGridColor
|
2012-03-01 17:38:15 +04:00
|
|
|
});
|
2012-01-25 23:14:02 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
//Instantiate a navigator if configured
|
2013-01-31 05:23:45 +04:00
|
|
|
if ( this.showNavigator && ! this.navigator && !this.collectionMode ){
|
2012-04-03 11:08:27 +04:00
|
|
|
this.navigator = new $.Navigator({
|
2013-03-15 18:59:47 +04:00
|
|
|
id: this.navigatorId,
|
2012-04-03 11:08:27 +04:00
|
|
|
position: this.navigatorPosition,
|
|
|
|
sizeRatio: this.navigatorSizeRatio,
|
|
|
|
height: this.navigatorHeight,
|
|
|
|
width: this.navigatorWidth,
|
|
|
|
tileSources: this.tileSources,
|
|
|
|
tileHost: this.tileHost,
|
|
|
|
prefixUrl: this.prefixUrl,
|
|
|
|
overlays: this.overlays,
|
|
|
|
viewer: this
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-08-29 22:46:34 +04:00
|
|
|
//Instantiate a referencestrip if configured
|
|
|
|
if ( this.showReferenceStrip && ! this.referenceStrip ){
|
|
|
|
this.referenceStrip = new $.ReferenceStrip({
|
|
|
|
id: this.referenceStripElement,
|
|
|
|
position: this.referenceStripPosition,
|
|
|
|
sizeRatio: this.referenceStripSizeRatio,
|
|
|
|
scroll: this.referenceStripScroll,
|
|
|
|
height: this.referenceStripHeight,
|
|
|
|
width: this.referenceStripWidth,
|
|
|
|
tileSources: this.tileSources,
|
|
|
|
tileHost: this.tileHost,
|
|
|
|
prefixUrl: this.prefixUrl,
|
|
|
|
overlays: this.overlays,
|
|
|
|
viewer: this
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-01-25 23:14:02 +04:00
|
|
|
//this.profiler = new $.Profiler();
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].animating = false;
|
|
|
|
THIS[ this.hash ].forceRedraw = true;
|
2011-12-23 05:47:21 +04:00
|
|
|
scheduleUpdate( this, updateMulti );
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2012-03-16 19:36:28 +04:00
|
|
|
//Assuming you had programatically created a bunch of overlays
|
|
|
|
//and added them via configuration
|
2012-01-24 17:03:50 +04:00
|
|
|
for ( i = 0; i < this.overlayControls.length; i++ ) {
|
|
|
|
|
|
|
|
overlay = this.overlayControls[ i ];
|
|
|
|
|
2013-02-13 07:40:08 +04:00
|
|
|
if ( overlay.point ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2012-03-16 19:36:28 +04:00
|
|
|
VIEWERS[ this.hash ] = this;
|
2012-04-03 11:08:27 +04:00
|
|
|
|
|
|
|
if( this.navigator ){
|
|
|
|
this.navigator.open( source );
|
|
|
|
}
|
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
this.raiseEvent( 'open', { source: source, viewer: this } );
|
|
|
|
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2011-12-13 07:40:02 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.close
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-04-03 11:08:27 +04:00
|
|
|
close: function ( ) {
|
2013-02-11 07:53:51 +04:00
|
|
|
|
|
|
|
if( this.drawer ){
|
|
|
|
this.drawer.clearOverlays();
|
|
|
|
}
|
2013-02-13 07:40:08 +04:00
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
this.source = null;
|
|
|
|
this.drawer = null;
|
2013-02-11 07:53:51 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
this.viewport = this.preserveViewport ? this.viewport : null;
|
2012-01-25 23:14:02 +04:00
|
|
|
//this.profiler = null;
|
2011-12-13 07:40:02 +04:00
|
|
|
this.canvas.innerHTML = "";
|
2012-03-16 19:36:28 +04:00
|
|
|
|
|
|
|
VIEWERS[ this.hash ] = null;
|
|
|
|
delete VIEWERS[ this.hash ];
|
2013-02-14 04:44:23 +04:00
|
|
|
|
|
|
|
this.raiseEvent( 'close', { viewer: this } );
|
2012-03-16 19:36:28 +04:00
|
|
|
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
2012-03-09 20:04:28 +04:00
|
|
|
* @name OpenSeadragon.Viewer.prototype.isMouseNavEnabled
|
|
|
|
* @return {Boolean}
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-03-09 20:04:28 +04:00
|
|
|
isMouseNavEnabled: function () {
|
|
|
|
return this.innerTracker.isTracking();
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
2012-03-09 20:04:28 +04:00
|
|
|
* @name OpenSeadragon.Viewer.prototype.setMouseNavEnabled
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-03-09 20:04:28 +04:00
|
|
|
setMouseNavEnabled: function( enabled ){
|
|
|
|
this.innerTracker.setTracking( enabled );
|
2013-02-14 04:44:23 +04:00
|
|
|
this.raiseEvent( 'mouse-enabled', { enabled: enabled, viewer: this } );
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
2012-08-29 22:46:34 +04:00
|
|
|
* @name OpenSeadragon.Viewer.prototype.areControlsEnabled
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {Boolean}
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-03-20 03:03:58 +04:00
|
|
|
areControlsEnabled: function () {
|
2012-08-29 22:46:34 +04:00
|
|
|
var enabled = this.controls.length,
|
|
|
|
i;
|
|
|
|
for( i = 0; i < this.controls.length; i++ ){
|
|
|
|
enabled = enabled && this.controls[ i ].isVisibile();
|
|
|
|
}
|
|
|
|
return enabled;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
2012-03-09 20:04:28 +04:00
|
|
|
* @name OpenSeadragon.Viewer.prototype.setDashboardEnabled
|
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-03-20 03:03:58 +04:00
|
|
|
setControlsEnabled: function( enabled ) {
|
|
|
|
if( enabled ){
|
|
|
|
abortControlsAutoHide( this );
|
|
|
|
} else {
|
|
|
|
beginControlsAutoHide( this );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
this.raiseEvent( 'controls-enabled', { enabled: enabled, viewer: this } );
|
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
2012-03-09 20:04:28 +04:00
|
|
|
* @name OpenSeadragon.Viewer.prototype.isFullPage
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {Boolean}
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-03-09 20:04:28 +04:00
|
|
|
isFullPage: function () {
|
2012-10-13 07:40:59 +04:00
|
|
|
return this.element.parentNode == document.body;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
2012-02-10 07:16:09 +04:00
|
|
|
* Toggle full page mode.
|
2012-02-01 00:59:09 +04:00
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.setFullPage
|
2012-02-10 07:16:09 +04:00
|
|
|
* @param {Boolean} fullPage
|
|
|
|
* If true, enter full page mode. If false, exit full page mode.
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +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,
|
2012-10-13 07:40:59 +04:00
|
|
|
containerStyle = this.element.style,
|
2012-01-24 17:03:50 +04:00
|
|
|
canvasStyle = this.canvas.style,
|
2013-02-27 07:34:44 +04:00
|
|
|
_this = this,
|
2011-12-08 06:10:13 +04:00
|
|
|
oldBounds,
|
2012-02-10 07:16:09 +04:00
|
|
|
newBounds,
|
2012-03-16 19:36:28 +04:00
|
|
|
viewer,
|
|
|
|
hash,
|
2012-02-10 07:16:09 +04:00
|
|
|
nodes,
|
|
|
|
i;
|
2012-01-24 17:03:50 +04:00
|
|
|
|
2012-02-10 07:16:09 +04:00
|
|
|
//dont bother modifying the DOM if we are already in full page mode.
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( fullPage == this.isFullPage() ) {
|
|
|
|
return;
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-02-27 07:34:44 +04:00
|
|
|
|
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
|
|
|
|
2013-01-31 01:51:37 +04:00
|
|
|
//canvasStyle.backgroundColor = "black";
|
|
|
|
//canvasStyle.color = "white";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
//containerStyle.position = "fixed";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-02-10 07:16:09 +04:00
|
|
|
//when entering full screen on the ipad it wasnt sufficient to leave
|
|
|
|
//the body intact as only only the top half of the screen would
|
|
|
|
//respond to touch events on the canvas, while the bottom half treated
|
|
|
|
//them as touch events on the document body. Thus we remove and store
|
|
|
|
//the bodies elements and replace them when we leave full screen.
|
|
|
|
this.previousBody = [];
|
2012-10-13 07:40:59 +04:00
|
|
|
THIS[ this.hash ].prevElementParent = this.element.parentNode;
|
|
|
|
THIS[ this.hash ].prevNextSibling = this.element.prevNextSibling;
|
|
|
|
THIS[ this.hash ].prevElementSize = $.getElementSize( this.element );
|
2012-03-09 20:04:28 +04:00
|
|
|
nodes = body.childNodes.length;
|
2012-02-10 07:16:09 +04:00
|
|
|
for ( i = 0; i < nodes; i ++ ){
|
2012-03-09 20:04:28 +04:00
|
|
|
this.previousBody.push( body.childNodes[ 0 ] );
|
|
|
|
body.removeChild( body.childNodes[ 0 ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
//If we've got a toolbar, we need to enable the user to use css to
|
|
|
|
//preserve it in fullpage mode
|
|
|
|
if( this.toolbar && this.toolbar.element ){
|
|
|
|
//save a reference to the parent so we can put it back
|
|
|
|
//in the long run we need a better strategy
|
|
|
|
this.toolbar.parentNode = this.toolbar.element.parentNode;
|
2012-03-16 19:36:28 +04:00
|
|
|
this.toolbar.nextSibling = this.toolbar.element.nextSibling;
|
2012-03-09 20:04:28 +04:00
|
|
|
body.appendChild( this.toolbar.element );
|
|
|
|
|
|
|
|
//Make sure the user has some ability to style the toolbar based
|
|
|
|
//on the mode
|
|
|
|
this.toolbar.element.setAttribute(
|
|
|
|
'class',
|
|
|
|
this.toolbar.element.className +" fullpage"
|
|
|
|
);
|
2012-03-16 19:36:28 +04:00
|
|
|
}
|
2013-02-28 23:28:05 +04:00
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
body.appendChild( this.element );
|
2013-02-28 23:28:05 +04:00
|
|
|
|
|
|
|
if( $.supportsFullScreen ){
|
|
|
|
THIS[ this.hash ].onfullscreenchange = function( event ) {
|
|
|
|
// The event object doesn't carry information about the
|
|
|
|
// fullscreen state of the browser, but it is possible to
|
|
|
|
// retrieve it through the fullscreen API
|
|
|
|
if( $.isFullScreen() ){
|
|
|
|
_this.setFullPage( true );
|
|
|
|
} else {
|
|
|
|
_this.setFullPage( false );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$.requestFullScreen( document.body );
|
|
|
|
|
2013-03-01 00:22:10 +04:00
|
|
|
// The target of the event is always the document,
|
|
|
|
// but it is possible to retrieve the fullscreen element through the API
|
2013-02-28 23:28:05 +04:00
|
|
|
// Note that the API is still vendor-prefixed in browsers implementing it
|
|
|
|
document.addEventListener(
|
|
|
|
$.fullScreenEventName,
|
|
|
|
THIS[ this.hash ].onfullscreenchange
|
|
|
|
);
|
|
|
|
this.element.style.height = '100%';
|
|
|
|
this.element.style.width = '100%';
|
|
|
|
}else{
|
|
|
|
this.element.style.height = $.getWindowSize().y + 'px';
|
|
|
|
this.element.style.width = $.getWindowSize().x + 'px';
|
|
|
|
}
|
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
if( this.toolbar && this.toolbar.element ){
|
|
|
|
this.element.style.height = (
|
2013-02-28 23:28:05 +04:00
|
|
|
$.getElementSize( this.element ).y - $.getElementSize( this.toolbar.element ).y
|
2012-10-13 07:40:59 +04:00
|
|
|
) + 'px';
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
// mouse will be inside container now
|
2013-02-27 02:31:47 +04:00
|
|
|
$.delegate( this, onContainerEnter )();
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-02-10 07:16:09 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
} else {
|
2013-02-27 02:31:47 +04:00
|
|
|
|
2013-02-28 23:28:05 +04:00
|
|
|
if( $.supportsFullScreen ){
|
|
|
|
document.removeEventListener(
|
|
|
|
$.fullScreenEventName,
|
|
|
|
THIS[ this.hash ].onfullscreenchange
|
|
|
|
);
|
|
|
|
$.cancelFullScreen( document );
|
|
|
|
}
|
2013-02-27 02:31:47 +04:00
|
|
|
|
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
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
//containerStyle.position = "relative";
|
|
|
|
//containerStyle.zIndex = "";
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
body.removeChild( this.element );
|
|
|
|
nodes = this.previousBody.length;
|
|
|
|
for ( i = 0; i < nodes; i++ ){
|
|
|
|
body.appendChild( this.previousBody.shift() );
|
|
|
|
}
|
|
|
|
THIS[ this.hash ].prevElementParent.insertBefore(
|
|
|
|
this.element,
|
|
|
|
THIS[ this.hash ].prevNextSibling
|
|
|
|
);
|
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
//If we've got a toolbar, we need to enable the user to use css to
|
|
|
|
//reset it to its original state
|
|
|
|
if( this.toolbar && this.toolbar.element ){
|
|
|
|
body.removeChild( this.toolbar.element );
|
|
|
|
|
|
|
|
//Make sure the user has some ability to style the toolbar based
|
|
|
|
//on the mode
|
|
|
|
this.toolbar.element.setAttribute(
|
|
|
|
'class',
|
|
|
|
this.toolbar.element.className.replace('fullpage','')
|
|
|
|
);
|
2012-10-13 07:40:59 +04:00
|
|
|
//this.toolbar.element.style.position = 'relative';
|
2012-03-10 06:44:14 +04:00
|
|
|
this.toolbar.parentNode.insertBefore(
|
|
|
|
this.toolbar.element,
|
2012-03-16 19:36:28 +04:00
|
|
|
this.toolbar.nextSibling
|
2012-03-10 06:44:14 +04:00
|
|
|
);
|
|
|
|
delete this.toolbar.parentNode;
|
2012-03-16 19:36:28 +04:00
|
|
|
delete this.toolbar.nextSibling;
|
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
//this.container.style.top = 'auto';
|
2012-03-09 20:04:28 +04:00
|
|
|
}
|
|
|
|
|
2012-10-13 07:40:59 +04:00
|
|
|
this.element.style.height = THIS[ this.hash ].prevElementSize.y + 'px';
|
|
|
|
this.element.style.width = THIS[ this.hash ].prevElementSize.x + 'px';
|
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
// mouse will likely be outside now
|
2013-02-27 02:31:47 +04:00
|
|
|
$.delegate( this, onContainerExit )();
|
2011-12-06 07:50:25 +04:00
|
|
|
|
|
|
|
|
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
this.raiseEvent( 'fullpage', { fullpage: fullPage, viewer: this } );
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
if ( this.viewport ) {
|
|
|
|
oldBounds = this.viewport.getBounds();
|
2012-02-27 15:56:29 +04:00
|
|
|
this.viewport.resize( THIS[ this.hash ].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 ) {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].fsBoundsDelta = new $.Point(
|
2011-12-08 06:10:13 +04:00
|
|
|
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(
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].fsBoundsDelta.x,
|
|
|
|
THIS[ this.hash ].fsBoundsDelta.y
|
2011-12-08 06:10:13 +04:00
|
|
|
),
|
|
|
|
null,
|
|
|
|
true
|
|
|
|
);
|
2012-03-16 19:36:28 +04:00
|
|
|
//Ensures that if multiple viewers are on a page, the viewers that
|
|
|
|
//were hidden during fullpage are 'reopened'
|
|
|
|
for( hash in VIEWERS ){
|
|
|
|
viewer = VIEWERS[ hash ];
|
|
|
|
if( viewer !== this && viewer != this.navigator ){
|
|
|
|
viewer.open( viewer.source );
|
2012-04-03 11:08:27 +04:00
|
|
|
if( viewer.navigator ){
|
|
|
|
viewer.navigator.open( viewer.source );
|
|
|
|
}
|
2012-03-16 19:36:28 +04:00
|
|
|
}
|
|
|
|
}
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].forceRedraw = true;
|
2011-12-23 05:36:17 +04:00
|
|
|
updateOnce( this );
|
2012-03-16 19:36:28 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
2012-03-09 20:04:28 +04:00
|
|
|
* @name OpenSeadragon.Viewer.prototype.isVisible
|
|
|
|
* @return {Boolean}
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2012-03-09 20:04:28 +04:00
|
|
|
isVisible: function () {
|
|
|
|
return this.container.style.visibility != "hidden";
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-03-09 20:04:28 +04:00
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.setVisible
|
2012-02-18 22:13:05 +04:00
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
2012-02-01 00:59:09 +04:00
|
|
|
*/
|
2011-12-08 06:10:13 +04:00
|
|
|
setVisible: function( visible ){
|
|
|
|
this.container.style.visibility = visible ? "" : "hidden";
|
2013-02-14 04:44:23 +04:00
|
|
|
this.raiseEvent( 'visible', { visible: visible, viewer: this } );
|
2012-02-18 22:13:05 +04:00
|
|
|
return this;
|
2012-04-11 01:02:24 +04:00
|
|
|
},
|
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.bindSequenceControls
|
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
|
|
|
*/
|
2012-04-11 01:02:24 +04:00
|
|
|
bindSequenceControls: function(){
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Image Sequence Controls
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
var onFocusHandler = $.delegate( this, onFocus ),
|
|
|
|
onBlurHandler = $.delegate( this, onBlur ),
|
|
|
|
onNextHandler = $.delegate( this, onNext ),
|
|
|
|
onPreviousHandler = $.delegate( this, onPrevious ),
|
|
|
|
navImages = this.navImages,
|
|
|
|
buttons = [],
|
|
|
|
useGroup = true ;
|
|
|
|
|
|
|
|
if( this.showSequenceControl && THIS[ this.hash ].sequenced ){
|
|
|
|
|
|
|
|
if( this.previousButton || this.nextButton ){
|
|
|
|
//if we are binding to custom buttons then layout and
|
|
|
|
//grouping is the responsibility of the page author
|
|
|
|
useGroup = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.previousButton = new $.Button({
|
|
|
|
element: this.previousButton ? $.getElement( this.previousButton ) : null,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
|
|
|
tooltip: $.getString( "Tooltips.PreviousPage" ),
|
|
|
|
srcRest: resolveUrl( this.prefixUrl, navImages.previous.REST ),
|
|
|
|
srcGroup: resolveUrl( this.prefixUrl, navImages.previous.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.prefixUrl, navImages.previous.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.prefixUrl, navImages.previous.DOWN ),
|
|
|
|
onRelease: onPreviousHandler,
|
|
|
|
onFocus: onFocusHandler,
|
|
|
|
onBlur: onBlurHandler
|
|
|
|
});
|
|
|
|
|
|
|
|
this.nextButton = new $.Button({
|
|
|
|
element: this.nextButton ? $.getElement( this.nextButton ) : null,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
|
|
|
tooltip: $.getString( "Tooltips.NextPage" ),
|
|
|
|
srcRest: resolveUrl( this.prefixUrl, navImages.next.REST ),
|
|
|
|
srcGroup: resolveUrl( this.prefixUrl, navImages.next.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.prefixUrl, navImages.next.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.prefixUrl, navImages.next.DOWN ),
|
|
|
|
onRelease: onNextHandler,
|
|
|
|
onFocus: onFocusHandler,
|
|
|
|
onBlur: onBlurHandler
|
|
|
|
});
|
|
|
|
|
|
|
|
this.previousButton.disable();
|
|
|
|
|
|
|
|
if( useGroup ){
|
|
|
|
this.paging = new $.ButtonGroup({
|
|
|
|
buttons: [
|
|
|
|
this.previousButton,
|
|
|
|
this.nextButton
|
|
|
|
],
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold
|
|
|
|
});
|
|
|
|
|
|
|
|
this.pagingControl = this.paging.element;
|
|
|
|
|
|
|
|
if( this.toolbar ){
|
|
|
|
this.toolbar.addControl(
|
2012-10-13 07:40:59 +04:00
|
|
|
this.pagingControl,
|
2013-03-15 18:59:47 +04:00
|
|
|
{anchor: $.ControlAnchor.BOTTOM_RIGHT}
|
2012-04-11 01:02:24 +04:00
|
|
|
);
|
|
|
|
}else{
|
|
|
|
this.addControl(
|
|
|
|
this.pagingControl,
|
2013-03-15 18:59:47 +04:00
|
|
|
{anchor: $.ControlAnchor.TOP_LEFT}
|
2012-04-11 01:02:24 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2012-04-11 01:02:24 +04:00
|
|
|
},
|
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.bindStandardControls
|
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
|
|
|
*/
|
2012-04-11 01:02:24 +04:00
|
|
|
bindStandardControls: function(){
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Navigation Controls
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
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 ),
|
|
|
|
onFocusHandler = $.delegate( this, onFocus ),
|
|
|
|
onBlurHandler = $.delegate( this, onBlur ),
|
|
|
|
navImages = this.navImages,
|
|
|
|
buttons = [],
|
|
|
|
useGroup = true ;
|
|
|
|
|
|
|
|
|
|
|
|
if( this.showNavigationControl ){
|
|
|
|
|
|
|
|
if( this.zoomInButton || this.zoomOutButton || this.homeButton || this.fullPageButton ){
|
|
|
|
//if we are binding to custom buttons then layout and
|
|
|
|
//grouping is the responsibility of the page author
|
|
|
|
useGroup = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
buttons.push( this.zoomInButton = new $.Button({
|
|
|
|
element: this.zoomInButton ? $.getElement( this.zoomInButton ) : null,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
|
|
|
tooltip: $.getString( "Tooltips.ZoomIn" ),
|
|
|
|
srcRest: resolveUrl( this.prefixUrl, navImages.zoomIn.REST ),
|
|
|
|
srcGroup: resolveUrl( this.prefixUrl, navImages.zoomIn.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.prefixUrl, navImages.zoomIn.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.prefixUrl, navImages.zoomIn.DOWN ),
|
|
|
|
onPress: beginZoomingInHandler,
|
|
|
|
onRelease: endZoomingHandler,
|
|
|
|
onClick: doSingleZoomInHandler,
|
|
|
|
onEnter: beginZoomingInHandler,
|
|
|
|
onExit: endZoomingHandler,
|
|
|
|
onFocus: onFocusHandler,
|
|
|
|
onBlur: onBlurHandler
|
|
|
|
}));
|
|
|
|
|
|
|
|
buttons.push( this.zoomOutButton = new $.Button({
|
|
|
|
element: this.zoomOutButton ? $.getElement( this.zoomOutButton ) : null,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
|
|
|
tooltip: $.getString( "Tooltips.ZoomOut" ),
|
|
|
|
srcRest: resolveUrl( this.prefixUrl, navImages.zoomOut.REST ),
|
|
|
|
srcGroup: resolveUrl( this.prefixUrl, navImages.zoomOut.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.prefixUrl, navImages.zoomOut.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.prefixUrl, navImages.zoomOut.DOWN ),
|
|
|
|
onPress: beginZoomingOutHandler,
|
|
|
|
onRelease: endZoomingHandler,
|
|
|
|
onClick: doSingleZoomOutHandler,
|
|
|
|
onEnter: beginZoomingOutHandler,
|
|
|
|
onExit: endZoomingHandler,
|
|
|
|
onFocus: onFocusHandler,
|
|
|
|
onBlur: onBlurHandler
|
|
|
|
}));
|
|
|
|
|
|
|
|
buttons.push( this.homeButton = new $.Button({
|
|
|
|
element: this.homeButton ? $.getElement( this.homeButton ) : null,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
|
|
|
tooltip: $.getString( "Tooltips.Home" ),
|
|
|
|
srcRest: resolveUrl( this.prefixUrl, navImages.home.REST ),
|
|
|
|
srcGroup: resolveUrl( this.prefixUrl, navImages.home.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.prefixUrl, navImages.home.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.prefixUrl, navImages.home.DOWN ),
|
|
|
|
onRelease: onHomeHandler,
|
|
|
|
onFocus: onFocusHandler,
|
|
|
|
onBlur: onBlurHandler
|
|
|
|
}));
|
|
|
|
|
|
|
|
buttons.push( this.fullPageButton = new $.Button({
|
|
|
|
element: this.fullPageButton ? $.getElement( this.fullPageButton ) : null,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold,
|
|
|
|
tooltip: $.getString( "Tooltips.FullPage" ),
|
|
|
|
srcRest: resolveUrl( this.prefixUrl, navImages.fullpage.REST ),
|
|
|
|
srcGroup: resolveUrl( this.prefixUrl, navImages.fullpage.GROUP ),
|
|
|
|
srcHover: resolveUrl( this.prefixUrl, navImages.fullpage.HOVER ),
|
|
|
|
srcDown: resolveUrl( this.prefixUrl, navImages.fullpage.DOWN ),
|
|
|
|
onRelease: onFullPageHandler,
|
|
|
|
onFocus: onFocusHandler,
|
|
|
|
onBlur: onBlurHandler
|
|
|
|
}));
|
|
|
|
|
|
|
|
if( useGroup ){
|
|
|
|
this.buttons = new $.ButtonGroup({
|
|
|
|
buttons: buttons,
|
|
|
|
clickTimeThreshold: this.clickTimeThreshold,
|
|
|
|
clickDistThreshold: this.clickDistThreshold
|
|
|
|
});
|
|
|
|
|
|
|
|
this.navControl = this.buttons.element;
|
|
|
|
this.addHandler( 'open', $.delegate( this, lightUp ) );
|
|
|
|
|
|
|
|
if( this.toolbar ){
|
|
|
|
this.toolbar.addControl(
|
|
|
|
this.navControl,
|
2013-03-15 18:59:47 +04:00
|
|
|
{anchor: $.ControlAnchor.TOP_LEFT}
|
2012-04-11 01:02:24 +04:00
|
|
|
);
|
|
|
|
}else{
|
|
|
|
this.addControl(
|
|
|
|
this.navControl,
|
2013-03-15 18:59:47 +04:00
|
|
|
{anchor: $.ControlAnchor.TOP_LEFT}
|
2012-04-11 01:02:24 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-05 15:52:00 +04:00
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2012-06-05 15:52:00 +04:00
|
|
|
},
|
|
|
|
|
2013-02-14 04:44:23 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @name OpenSeadragon.Viewer.prototype.goToPage
|
|
|
|
* @return {OpenSeadragon.Viewer} Chainable.
|
|
|
|
*/
|
2012-06-05 15:52:00 +04:00
|
|
|
goToPage: function( page ){
|
|
|
|
//page is a 1 based index so normalize now
|
|
|
|
//page = page;
|
2013-02-14 04:44:23 +04:00
|
|
|
this.raiseEvent( 'page', { page: page, viewer: this } );
|
|
|
|
|
2012-06-05 15:52:00 +04:00
|
|
|
if( this.tileSources.length > page ){
|
|
|
|
|
|
|
|
THIS[ this.hash ].sequence = page;
|
|
|
|
|
|
|
|
if( this.nextButton ){
|
|
|
|
if( ( this.tileSources.length - 1 ) === page ){
|
|
|
|
//Disable next button
|
|
|
|
this.nextButton.disable();
|
|
|
|
} else {
|
|
|
|
this.nextButton.enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( this.previousButton ){
|
|
|
|
if( page > 0 ){
|
|
|
|
//Enable previous button
|
|
|
|
this.previousButton.enable();
|
|
|
|
} else {
|
|
|
|
this.previousButton.disable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.openTileSource( this.tileSources[ page ] );
|
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
|
2012-06-05 15:52:00 +04:00
|
|
|
if( $.isFunction( this.onPageChange ) ){
|
|
|
|
this.onPageChange({
|
|
|
|
page: page,
|
|
|
|
viewer: this
|
|
|
|
});
|
2012-04-11 01:02:24 +04:00
|
|
|
}
|
2012-10-13 07:40:59 +04:00
|
|
|
if( this.referenceStrip ){
|
|
|
|
this.referenceStrip.setFocus( page );
|
|
|
|
}
|
2013-02-14 04:44:23 +04:00
|
|
|
return this;
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
|
2011-12-15 03:22:02 +04:00
|
|
|
});
|
2011-12-06 07:50:25 +04:00
|
|
|
|
2012-04-03 11:08:27 +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-02-27 15:56:29 +04:00
|
|
|
if ( THIS[ viewer.hash ].animating ) {
|
2013-02-26 19:19:48 +04:00
|
|
|
return $.requestAnimationFrame( function(){
|
2011-12-23 05:47:21 +04:00
|
|
|
updateFunc( viewer );
|
2013-02-26 19:19:48 +04:00
|
|
|
} );
|
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
|
|
|
|
2013-02-26 19:19:48 +04:00
|
|
|
return $.requestAnimationFrame( function(){
|
2011-12-23 05:47:21 +04:00
|
|
|
updateFunc( viewer );
|
2013-02-26 19:19:48 +04:00
|
|
|
} );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
//provides a sequence in the fade animation
|
|
|
|
function scheduleControlsFade( viewer ) {
|
2013-02-26 19:19:48 +04:00
|
|
|
$.requestAnimationFrame( function(){
|
2011-12-08 06:10:13 +04:00
|
|
|
updateControlsFade( viewer );
|
2013-02-26 19:19:48 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
//initiates an animation to hide the controls
|
|
|
|
function beginControlsAutoHide( viewer ) {
|
2012-03-01 17:38:15 +04:00
|
|
|
if ( !viewer.autoHideControls ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
viewer.controlsShouldFade = true;
|
|
|
|
viewer.controlsFadeBeginTime =
|
2012-01-24 17:03:50 +04:00
|
|
|
+new Date() +
|
2012-03-01 17:38:15 +04:00
|
|
|
viewer.controlsFadeDelay;
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
window.setTimeout( function(){
|
|
|
|
scheduleControlsFade( viewer );
|
2012-03-01 17:38:15 +04:00
|
|
|
}, viewer.controlsFadeDelay );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
|
|
|
|
//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;
|
2012-03-01 17:38:15 +04:00
|
|
|
opacity = 1.0 - deltaTime / viewer.controlsFadeLength;
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
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--) {
|
2013-03-15 18:59:47 +04:00
|
|
|
if (viewer.controls[ i ].autoFade) {
|
|
|
|
viewer.controls[ i ].setOpacity( opacity );
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( opacity > 0 ) {
|
|
|
|
// fade again
|
|
|
|
scheduleControlsFade( viewer );
|
|
|
|
}
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
//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 );
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-08 06:10:13 +04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Default view event handlers.
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2012-03-16 19:36:28 +04:00
|
|
|
function onFocus(){
|
|
|
|
abortControlsAutoHide( this );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-03-16 19:36:28 +04:00
|
|
|
|
|
|
|
function onBlur(){
|
|
|
|
beginControlsAutoHide( this );
|
|
|
|
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-03-16 19:36:28 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onCanvasClick( tracker, position, quick, shift, event ) {
|
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
|
2012-03-01 17:38:15 +04:00
|
|
|
zoomPerClick = this.zoomPerClick;
|
2011-12-08 06:10:13 +04:00
|
|
|
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();
|
|
|
|
}
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'click', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
quick: quick,
|
2013-03-07 02:34:12 +04:00
|
|
|
shift: shift,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onCanvasDrag( tracker, position, delta, shift, event ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2012-04-03 11:08:27 +04:00
|
|
|
if( !this.panHorizontal ){
|
|
|
|
delta.x = 0;
|
|
|
|
}
|
|
|
|
if( !this.panVertical ){
|
|
|
|
delta.y = 0;
|
|
|
|
}
|
2012-01-24 17:03:50 +04:00
|
|
|
this.viewport.panBy(
|
|
|
|
this.viewport.deltaPointsFromPixels(
|
|
|
|
delta.negate()
|
|
|
|
)
|
|
|
|
);
|
2013-02-13 07:40:08 +04:00
|
|
|
if( this.constrainDuringPan ){
|
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
}
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'drag', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
delta: delta,
|
2013-03-07 02:34:12 +04:00
|
|
|
shift: shift,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onCanvasRelease( tracker, position, insideElementPress, insideElementRelease, event ) {
|
2012-02-01 06:01:37 +04:00
|
|
|
if ( insideElementPress && this.viewport ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'release', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
insideElementPress: insideElementPress,
|
2013-03-07 02:34:12 +04:00
|
|
|
insideElementRelease: insideElementRelease,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onCanvasScroll( tracker, position, scroll, shift, event ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
var factor;
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2012-03-01 17:38:15 +04:00
|
|
|
factor = Math.pow( this.zoomPerScroll, scroll );
|
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();
|
|
|
|
}
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'scroll', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
scroll: scroll,
|
2013-03-07 02:34:12 +04:00
|
|
|
shift: shift,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2012-04-03 11:08:27 +04:00
|
|
|
//cancels event
|
|
|
|
return false;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onContainerExit( tracker, position, buttonDownElement, buttonDownAny, event ) {
|
2012-02-01 06:01:37 +04:00
|
|
|
if ( !buttonDownElement ) {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].mouseInside = false;
|
|
|
|
if ( !THIS[ this.hash ].animating ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
beginControlsAutoHide( this );
|
|
|
|
}
|
|
|
|
}
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'exit', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
buttonDownElement: buttonDownElement,
|
2013-03-07 02:34:12 +04:00
|
|
|
buttonDownAny: buttonDownAny,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onContainerRelease( tracker, position, insideElementPress, insideElementRelease, event ) {
|
2012-02-01 06:01:37 +04:00
|
|
|
if ( !insideElementRelease ) {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].mouseInside = false;
|
|
|
|
if ( !THIS[ this.hash ].animating ) {
|
2011-12-08 06:10:13 +04:00
|
|
|
beginControlsAutoHide( this );
|
|
|
|
}
|
|
|
|
}
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'release', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
insideElementPress: insideElementPress,
|
2013-03-07 02:34:12 +04:00
|
|
|
insideElementRelease: insideElementRelease,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
2013-03-07 02:34:12 +04:00
|
|
|
function onContainerEnter( tracker, position, buttonDownElement, buttonDownAny, event ) {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].mouseInside = true;
|
2011-12-08 06:10:13 +04:00
|
|
|
abortControlsAutoHide( this );
|
2013-03-07 02:34:12 +04:00
|
|
|
this.raiseEvent( 'enter', {
|
2013-02-14 04:44:23 +04:00
|
|
|
tracker: tracker,
|
|
|
|
position: position,
|
|
|
|
buttonDownElement: buttonDownElement,
|
2013-03-07 02:34:12 +04:00
|
|
|
buttonDownAny: buttonDownAny,
|
|
|
|
originalEvent: event
|
2013-02-14 04:44:23 +04:00
|
|
|
});
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-08 06:10:13 +04:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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 );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:47:21 +04:00
|
|
|
|
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 );
|
2012-02-27 15:56:29 +04:00
|
|
|
if ( !containerSize.equals( THIS[ viewer.hash ].prevContainerSize ) ) {
|
2012-01-24 17:03:50 +04:00
|
|
|
// maintain image position
|
|
|
|
viewer.viewport.resize( containerSize, true );
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ viewer.hash ].prevContainerSize = containerSize;
|
2011-12-23 05:36:17 +04:00
|
|
|
}
|
|
|
|
|
2012-01-24 17:03:50 +04:00
|
|
|
animated = viewer.viewport.update();
|
2012-09-05 18:52:57 +04:00
|
|
|
|
|
|
|
if( viewer.referenceStrip ){
|
|
|
|
animated = viewer.referenceStrip.update( viewer.viewport ) || animated;
|
|
|
|
}
|
2012-10-13 07:40:59 +04:00
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
if ( !THIS[ viewer.hash ].animating && animated ) {
|
2011-12-23 05:36:17 +04:00
|
|
|
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();
|
2012-03-07 07:20:00 +04:00
|
|
|
if( viewer.navigator ){
|
|
|
|
viewer.navigator.update( viewer.viewport );
|
|
|
|
}
|
2011-12-23 05:36:17 +04:00
|
|
|
viewer.raiseEvent( "animation" );
|
2012-02-27 15:56:29 +04:00
|
|
|
} else if ( THIS[ viewer.hash ].forceRedraw || viewer.drawer.needsUpdate() ) {
|
2011-12-23 05:36:17 +04:00
|
|
|
viewer.drawer.update();
|
2012-03-07 07:20:00 +04:00
|
|
|
if( viewer.navigator ){
|
|
|
|
viewer.navigator.update( viewer.viewport );
|
|
|
|
}
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ viewer.hash ].forceRedraw = false;
|
2011-12-28 03:20:45 +04:00
|
|
|
}
|
2011-12-23 05:36:17 +04:00
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
if ( THIS[ viewer.hash ].animating && !animated ) {
|
2011-12-23 05:36:17 +04:00
|
|
|
viewer.raiseEvent( "animationfinish" );
|
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
if ( !THIS[ viewer.hash ].mouseInside ) {
|
2011-12-23 05:36:17 +04:00
|
|
|
beginControlsAutoHide( viewer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ viewer.hash ].animating = animated;
|
2011-12-23 05:36:17 +04:00
|
|
|
|
2011-12-30 02:14:42 +04:00
|
|
|
//viewer.profiler.endUpdate();
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Navigation Controls
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
function resolveUrl( prefix, url ) {
|
|
|
|
return prefix ? prefix + url : url;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:08:06 +04:00
|
|
|
|
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
function beginZoomingIn() {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].lastZoomTime = +new Date();
|
2012-03-01 17:38:15 +04:00
|
|
|
THIS[ this.hash ].zoomFactor = this.zoomPerSecond;
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].zooming = true;
|
2011-12-23 05:08:06 +04:00
|
|
|
scheduleZoom( this );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
|
|
|
|
function beginZoomingOut() {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].lastZoomTime = +new Date();
|
2012-03-01 17:38:15 +04:00
|
|
|
THIS[ this.hash ].zoomFactor = 1.0 / this.zoomPerSecond;
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].zooming = true;
|
2011-12-23 05:08:06 +04:00
|
|
|
scheduleZoom( this );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
|
|
|
|
function endZooming() {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].zooming = false;
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
|
|
|
|
function scheduleZoom( viewer ) {
|
2013-02-26 19:19:48 +04:00
|
|
|
$.requestAnimationFrame( $.delegate( viewer, doZoom ) );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
|
|
|
|
function doZoom() {
|
2012-01-24 17:03:50 +04:00
|
|
|
var currentTime,
|
|
|
|
deltaTime,
|
|
|
|
adjustFactor;
|
|
|
|
|
2012-02-27 15:56:29 +04:00
|
|
|
if ( THIS[ this.hash ].zooming && this.viewport) {
|
2012-01-24 17:03:50 +04:00
|
|
|
currentTime = +new Date();
|
2012-02-27 15:56:29 +04:00
|
|
|
deltaTime = currentTime - THIS[ this.hash ].lastZoomTime;
|
|
|
|
adjustedFactor = Math.pow( THIS[ this.hash ].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();
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].lastZoomTime = currentTime;
|
2011-12-23 05:08:06 +04:00
|
|
|
scheduleZoom( this );
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:08:06 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
function doSingleZoomIn() {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].zooming = false;
|
2011-12-23 05:08:06 +04:00
|
|
|
this.viewport.zoomBy(
|
2012-03-01 17:38:15 +04:00
|
|
|
this.zoomPerClick / 1.0
|
2011-12-23 05:08:06 +04:00
|
|
|
);
|
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:08:06 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
function doSingleZoomOut() {
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2012-02-27 15:56:29 +04:00
|
|
|
THIS[ this.hash ].zooming = false;
|
2011-12-23 05:08:06 +04:00
|
|
|
this.viewport.zoomBy(
|
2012-03-01 17:38:15 +04:00
|
|
|
1.0 / this.zoomPerClick
|
2011-12-23 05:08:06 +04:00
|
|
|
);
|
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:08:06 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
function lightUp() {
|
2012-01-24 17:03:50 +04:00
|
|
|
this.buttons.emulateEnter();
|
|
|
|
this.buttons.emulateExit();
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:08:06 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
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();
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-23 05:08:06 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
2011-12-23 05:08:06 +04:00
|
|
|
function onFullPage() {
|
|
|
|
this.setFullPage( !this.isFullPage() );
|
2012-01-24 17:03:50 +04:00
|
|
|
// correct for no mouseout event on change
|
2012-04-11 01:02:24 +04:00
|
|
|
if( this.buttons ){
|
|
|
|
this.buttons.emulateExit();
|
|
|
|
}
|
2012-03-20 03:03:58 +04:00
|
|
|
this.fullPageButton.element.focus();
|
2012-01-24 17:03:50 +04:00
|
|
|
if ( this.viewport ) {
|
2011-12-23 05:08:06 +04:00
|
|
|
this.viewport.applyConstraints();
|
|
|
|
}
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2011-12-13 07:40:02 +04:00
|
|
|
|
2012-04-03 11:08:27 +04:00
|
|
|
|
|
|
|
function onPrevious(){
|
2012-06-05 15:52:00 +04:00
|
|
|
var previous = THIS[ this.hash ].sequence - 1;
|
|
|
|
this.goToPage( previous );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
|
|
|
|
|
|
|
|
function onNext(){
|
2012-06-05 15:52:00 +04:00
|
|
|
var next = THIS[ this.hash ].sequence + 1;
|
|
|
|
this.goToPage( next );
|
2013-01-29 21:32:58 +04:00
|
|
|
}
|
2012-04-03 11:08:27 +04:00
|
|
|
|
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
}( OpenSeadragon ));
|