Rename this.homeBounds to this._contentBounds.

This commit is contained in:
Antoine Vandecreme 2016-02-11 20:14:49 -05:00
parent 18b101ccf5
commit 4634d90715
2 changed files with 62 additions and 55 deletions

View File

@ -330,7 +330,7 @@ $.Viewer = function( options ) {
this.world.addHandler('metrics-change', function(event) { this.world.addHandler('metrics-change', function(event) {
if (_this.viewport) { if (_this.viewport) {
_this.viewport.setHomeBounds(_this.world.getHomeBounds(), _this.world.getContentFactor()); _this.viewport._setContentBounds(_this.world.getHomeBounds(), _this.world.getContentFactor());
} }
}); });
@ -359,7 +359,7 @@ $.Viewer = function( options ) {
margins: this.viewportMargins margins: this.viewportMargins
}); });
this.viewport.setHomeBounds(this.world.getHomeBounds(), this.world.getContentFactor()); this.viewport._setContentBounds(this.world.getHomeBounds(), this.world.getContentFactor());
// Create the image loader // Create the image loader
this.imageLoader = new $.ImageLoader({ this.imageLoader = new $.ImageLoader({

View File

@ -137,7 +137,7 @@ $.Viewport = function( options ) {
if (this.contentSize) { if (this.contentSize) {
this.resetContentSize( this.contentSize ); this.resetContentSize( this.contentSize );
} else { } else {
this.setHomeBounds(new $.Rect(0, 0, 1, 1), 1); this._setContentBounds(new $.Rect(0, 0, 1, 1), 1);
} }
this.goHome( true ); this.goHome( true );
@ -159,83 +159,89 @@ $.Viewport.prototype = {
$.console.assert(contentSize.x > 0, "[Viewport.resetContentSize] contentSize.x must be greater than 0"); $.console.assert(contentSize.x > 0, "[Viewport.resetContentSize] contentSize.x must be greater than 0");
$.console.assert(contentSize.y > 0, "[Viewport.resetContentSize] contentSize.y must be greater than 0"); $.console.assert(contentSize.y > 0, "[Viewport.resetContentSize] contentSize.y must be greater than 0");
this.setHomeBounds(new $.Rect(0, 0, 1, contentSize.y / contentSize.x), contentSize.x); this._setContentBounds(new $.Rect(0, 0, 1, contentSize.y / contentSize.x), contentSize.x);
return this; return this;
}, },
/** /**
* Updates the viewport's home bounds and constraints. * Updates the viewport's content bounds and constraints.
* This function is deprecated and shouldn't be called.
* @function * @function
* @param {OpenSeadragon.Rect} bounds - the new bounds in viewport coordinates * @param {OpenSeadragon.Rect} bounds - the new bounds in viewport coordinates
* @param {Number} contentFactor - how many content units per viewport unit * @param {Number} contentFactor - how many content units per viewport unit
* @fires OpenSeadragon.Viewer.event:reset-size * @fires OpenSeadragon.Viewer.event:reset-size
*/ */
setHomeBounds: function(bounds, contentFactor) { setHomeBounds: function(bounds, contentFactor) {
$.console.assert(bounds, "[Viewport.setHomeBounds] bounds is required"); $.console.error("[Viewport.setHomeBounds] this function is deprecated; The content bounds should not be set manually.");
$.console.assert(bounds instanceof $.Rect, "[Viewport.setHomeBounds] bounds must be an OpenSeadragon.Rect"); this._setContentBounds(bounds, contentFactor);
$.console.assert(bounds.width > 0, "[Viewport.setHomeBounds] bounds.width must be greater than 0"); },
$.console.assert(bounds.height > 0, "[Viewport.setHomeBounds] bounds.height must be greater than 0");
this.homeBounds = bounds.clone().rotate(this.degrees).getBoundingBox(); _setContentBounds: function(bounds, contentFactor) {
this.contentSize = this.homeBounds.getSize().times(contentFactor); $.console.assert(bounds, "[Viewport._setContentBounds] bounds is required");
$.console.assert(bounds instanceof $.Rect, "[Viewport._setContentBounds] bounds must be an OpenSeadragon.Rect");
$.console.assert(bounds.width > 0, "[Viewport._setContentBounds] bounds.width must be greater than 0");
$.console.assert(bounds.height > 0, "[Viewport._setContentBounds] bounds.height must be greater than 0");
this._contentBounds = bounds.rotate(this.degrees).getBoundingBox();
this.contentSize = this._contentBounds.getSize().times(contentFactor);
this.contentAspectX = this.contentSize.x / this.contentSize.y; this.contentAspectX = this.contentSize.x / this.contentSize.y;
this.contentAspectY = this.contentSize.y / this.contentSize.x; this.contentAspectY = this.contentSize.y / this.contentSize.x;
if (this.viewer) { if (this.viewer) {
/** /**
* Raised when the viewer's content size or home bounds are reset * Raised when the viewer's content size or home bounds are reset
* (see {@link OpenSeadragon.Viewport#resetContentSize}, * (see {@link OpenSeadragon.Viewport#resetContentSize}).
* {@link OpenSeadragon.Viewport#setHomeBounds}).
* *
* @event reset-size * @event reset-size
* @memberof OpenSeadragon.Viewer * @memberof OpenSeadragon.Viewer
* @type {object} * @type {object}
* @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised this event. * @property {OpenSeadragon.Viewer} eventSource - A reference to the Viewer which raised this event.
* @property {OpenSeadragon.Point} contentSize * @property {OpenSeadragon.Point} contentSize
* @property {OpenSeadragon.Rect} homeBounds * @property {OpenSeadragon.Rect} contentBounds - Content bounds.
* @property {OpenSeadragon.Rect} homeBounds - Content bounds.
* Deprecated use contentBounds instead.
* @property {Number} contentFactor * @property {Number} contentFactor
* @property {?Object} userData - Arbitrary subscriber-defined object. * @property {?Object} userData - Arbitrary subscriber-defined object.
*/ */
this.viewer.raiseEvent('reset-size', { this.viewer.raiseEvent('reset-size', {
contentSize: this.contentSize.clone(), contentSize: this.contentSize.clone(),
contentFactor: contentFactor, contentFactor: contentFactor,
homeBounds: this.homeBounds.clone() homeBounds: this._contentBounds.clone(),
contentBounds: this._contentBounds.clone()
}); });
} }
}, },
/** /**
* Returns the home zoom in "viewport zoom" value.
* @function * @function
* @returns {Number} The home zoom in "viewport zoom".
*/ */
getHomeZoom: function() { getHomeZoom: function() {
if (this.defaultZoomLevel) { if (this.defaultZoomLevel) {
return this.defaultZoomLevel; return this.defaultZoomLevel;
} else { }
var aspectFactor =
this.contentAspectX / this.getAspectRatio();
var aspectFactor = this.contentAspectX / this.getAspectRatio();
var output; var output;
if (this.homeFillsViewer) { // fill the viewer and clip the image if (this.homeFillsViewer) { // fill the viewer and clip the image
output = ( aspectFactor >= 1) ? output = aspectFactor >= 1 ? aspectFactor : 1;
aspectFactor :
1;
} else { } else {
output = ( aspectFactor >= 1 ) ? output = aspectFactor >= 1 ? 1 : aspectFactor;
1 :
aspectFactor;
} }
return output / this.homeBounds.width; return output / this._contentBounds.width;
}
}, },
/** /**
* Returns the home bounds in viewport coordinates.
* @function * @function
* @returns {OpenSeadragon.Rect} The home bounds in vewport coordinates.
*/ */
getHomeBounds: function() { getHomeBounds: function() {
var center = this.homeBounds.getCenter( ), var center = this._contentBounds.getCenter();
width = 1.0 / this.getHomeZoom( ), var width = 1.0 / this.getHomeZoom();
height = width / this.getAspectRatio(); var height = width / this.getAspectRatio();
return new $.Rect( return new $.Rect(
center.x - (width / 2.0), center.x - (width / 2.0),
@ -288,7 +294,7 @@ $.Viewport.prototype = {
var zoom = this.maxZoomLevel; var zoom = this.maxZoomLevel;
if (!zoom) { if (!zoom) {
zoom = this.contentSize.x * this.maxZoomPixelRatio / this._containerInnerSize.x; zoom = this.contentSize.x * this.maxZoomPixelRatio / this._containerInnerSize.x;
zoom /= this.homeBounds.width; zoom /= this._contentBounds.width;
} }
return Math.max( zoom, this.getHomeZoom() ); return Math.max( zoom, this.getHomeZoom() );
@ -341,6 +347,7 @@ $.Viewport.prototype = {
}, },
/** /**
* Returns the bounds of the visible area in viewport coordinates.
* @function * @function
* @param {Boolean} current - Pass true for the current location; defaults to false (target location). * @param {Boolean} current - Pass true for the current location; defaults to false (target location).
* @returns {OpenSeadragon.Rect} The location you are zoomed/panned to, in viewport coordinates. * @returns {OpenSeadragon.Rect} The location you are zoomed/panned to, in viewport coordinates.
@ -457,11 +464,11 @@ $.Viewport.prototype = {
//do nothing //do nothing
} else { } else {
var thresholdLeft = newBounds.x + (newBounds.width - horizontalThreshold); var thresholdLeft = newBounds.x + (newBounds.width - horizontalThreshold);
if (this.homeBounds.x > thresholdLeft) { if (this._contentBounds.x > thresholdLeft) {
dx = this.homeBounds.x - thresholdLeft; dx = this._contentBounds.x - thresholdLeft;
} }
var homeRight = this.homeBounds.x + this.homeBounds.width; var homeRight = this._contentBounds.x + this._contentBounds.width;
var thresholdRight = newBounds.x + horizontalThreshold; var thresholdRight = newBounds.x + horizontalThreshold;
if (homeRight < thresholdRight) { if (homeRight < thresholdRight) {
var newDx = homeRight - thresholdRight; var newDx = homeRight - thresholdRight;
@ -477,11 +484,11 @@ $.Viewport.prototype = {
//do nothing //do nothing
} else { } else {
var thresholdTop = newBounds.y + (newBounds.height - verticalThreshold); var thresholdTop = newBounds.y + (newBounds.height - verticalThreshold);
if (this.homeBounds.y > thresholdTop) { if (this._contentBounds.y > thresholdTop) {
dy = this.homeBounds.y - thresholdTop; dy = this._contentBounds.y - thresholdTop;
} }
var homeBottom = this.homeBounds.y + this.homeBounds.height; var homeBottom = this._contentBounds.y + this._contentBounds.height;
var thresholdBottom = newBounds.y + verticalThreshold; var thresholdBottom = newBounds.y + verticalThreshold;
if (homeBottom < thresholdBottom) { if (homeBottom < thresholdBottom) {
var newDy = homeBottom - thresholdBottom; var newDy = homeBottom - thresholdBottom;
@ -674,8 +681,8 @@ $.Viewport.prototype = {
* @return {OpenSeadragon.Viewport} Chainable. * @return {OpenSeadragon.Viewport} Chainable.
*/ */
fitVertically: function( immediately ) { fitVertically: function( immediately ) {
var box = new $.Rect(this.homeBounds.x + (this.homeBounds.width / 2), this.homeBounds.y, var box = new $.Rect(this._contentBounds.x + (this._contentBounds.width / 2), this._contentBounds.y,
0, this.homeBounds.height); 0, this._contentBounds.height);
return this.fitBounds( box, immediately ); return this.fitBounds( box, immediately );
}, },
@ -686,8 +693,8 @@ $.Viewport.prototype = {
* @return {OpenSeadragon.Viewport} Chainable. * @return {OpenSeadragon.Viewport} Chainable.
*/ */
fitHorizontally: function( immediately ) { fitHorizontally: function( immediately ) {
var box = new $.Rect(this.homeBounds.x, this.homeBounds.y + (this.homeBounds.height / 2), var box = new $.Rect(this._contentBounds.x, this._contentBounds.y + (this._contentBounds.height / 2),
this.homeBounds.width, 0); this._contentBounds.width, 0);
return this.fitBounds( box, immediately ); return this.fitBounds( box, immediately );
}, },
@ -1066,7 +1073,7 @@ $.Viewport.prototype = {
// private // private
_viewportToImageDelta: function( viewerX, viewerY ) { _viewportToImageDelta: function( viewerX, viewerY ) {
var scale = this.homeBounds.width; var scale = this._contentBounds.width;
return new $.Point(viewerX * (this.contentSize.x / scale), return new $.Point(viewerX * (this.contentSize.x / scale),
viewerY * ((this.contentSize.y * this.contentAspectX) / scale)); viewerY * ((this.contentSize.y * this.contentAspectX) / scale));
}, },
@ -1092,12 +1099,12 @@ $.Viewport.prototype = {
$.console.error('[Viewport.viewportToImageCoordinates] is not accurate with multi-image; use TiledImage.viewportToImageCoordinates instead.'); $.console.error('[Viewport.viewportToImageCoordinates] is not accurate with multi-image; use TiledImage.viewportToImageCoordinates instead.');
} }
return this._viewportToImageDelta(viewerX - this.homeBounds.x, viewerY - this.homeBounds.y); return this._viewportToImageDelta(viewerX - this._contentBounds.x, viewerY - this._contentBounds.y);
}, },
// private // private
_imageToViewportDelta: function( imageX, imageY ) { _imageToViewportDelta: function( imageX, imageY ) {
var scale = this.homeBounds.width; var scale = this._contentBounds.width;
return new $.Point((imageX / this.contentSize.x) * scale, return new $.Point((imageX / this.contentSize.x) * scale,
(imageY / this.contentSize.y / this.contentAspectX) * scale); (imageY / this.contentSize.y / this.contentAspectX) * scale);
}, },
@ -1124,8 +1131,8 @@ $.Viewport.prototype = {
} }
var point = this._imageToViewportDelta(imageX, imageY); var point = this._imageToViewportDelta(imageX, imageY);
point.x += this.homeBounds.x; point.x += this._contentBounds.x;
point.y += this.homeBounds.y; point.y += this._contentBounds.y;
return point; return point;
}, },
@ -1303,7 +1310,7 @@ $.Viewport.prototype = {
var imageWidth = this.contentSize.x; var imageWidth = this.contentSize.x;
var containerWidth = this._containerInnerSize.x; var containerWidth = this._containerInnerSize.x;
var scale = this.homeBounds.width; var scale = this._contentBounds.width;
var viewportToImageZoomRatio = (containerWidth / imageWidth) * scale; var viewportToImageZoomRatio = (containerWidth / imageWidth) * scale;
return viewportZoom * viewportToImageZoomRatio; return viewportZoom * viewportToImageZoomRatio;
}, },
@ -1327,7 +1334,7 @@ $.Viewport.prototype = {
var imageWidth = this.contentSize.x; var imageWidth = this.contentSize.x;
var containerWidth = this._containerInnerSize.x; var containerWidth = this._containerInnerSize.x;
var scale = this.homeBounds.width; var scale = this._contentBounds.width;
var viewportToImageZoomRatio = (imageWidth / containerWidth) / scale; var viewportToImageZoomRatio = (imageWidth / containerWidth) / scale;
return imageZoom * viewportToImageZoomRatio; return imageZoom * viewportToImageZoomRatio;
} }