mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
208 lines
7.3 KiB
JavaScript
208 lines
7.3 KiB
JavaScript
/*
|
|
* OpenSeadragon - EventSource
|
|
*
|
|
* Copyright (C) 2009 CodePlex Foundation
|
|
* Copyright (C) 2010-2024 OpenSeadragon contributors
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
*
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* - Neither the name of CodePlex Foundation nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
(function($){
|
|
|
|
/**
|
|
* Event handler method signature used by all OpenSeadragon events.
|
|
*
|
|
* @callback EventHandler
|
|
* @memberof OpenSeadragon
|
|
* @param {Object} event - See individual events for event-specific properties.
|
|
*/
|
|
|
|
|
|
/**
|
|
* @class EventSource
|
|
* @classdesc For use by classes which want to support custom, non-browser events.
|
|
*
|
|
* @memberof OpenSeadragon
|
|
*/
|
|
$.EventSource = function() {
|
|
this.events = {};
|
|
};
|
|
|
|
/** @lends OpenSeadragon.EventSource.prototype */
|
|
$.EventSource.prototype = {
|
|
|
|
/**
|
|
* Add an event handler to be triggered only once (or a given number of times)
|
|
* for a given event. It is not removable with removeHandler().
|
|
* @function
|
|
* @param {String} eventName - Name of event to register.
|
|
* @param {OpenSeadragon.EventHandler} handler - Function to call when event
|
|
* is triggered.
|
|
* @param {Object} [userData=null] - Arbitrary object to be passed unchanged
|
|
* to the handler.
|
|
* @param {Number} [times=1] - The number of times to handle the event
|
|
* before removing it.
|
|
* @param {Number} [priority=0] - Handler priority. By default, all priorities are 0. Higher number = priority.
|
|
*/
|
|
addOnceHandler: function(eventName, handler, userData, times, priority) {
|
|
var self = this;
|
|
times = times || 1;
|
|
var count = 0;
|
|
var onceHandler = function(event) {
|
|
count++;
|
|
if (count === times) {
|
|
self.removeHandler(eventName, onceHandler);
|
|
}
|
|
return handler(event);
|
|
};
|
|
this.addHandler(eventName, onceHandler, userData, priority);
|
|
},
|
|
|
|
/**
|
|
* Add an event handler for a given event.
|
|
* @function
|
|
* @param {String} eventName - Name of event to register.
|
|
* @param {OpenSeadragon.EventHandler} handler - Function to call when event is triggered.
|
|
* @param {Object} [userData=null] - Arbitrary object to be passed unchanged to the handler.
|
|
* @param {Number} [priority=0] - Handler priority. By default, all priorities are 0. Higher number = priority.
|
|
*/
|
|
addHandler: function ( eventName, handler, userData, priority ) {
|
|
var events = this.events[ eventName ];
|
|
if ( !events ) {
|
|
this.events[ eventName ] = events = [];
|
|
}
|
|
if ( handler && $.isFunction( handler ) ) {
|
|
var index = events.length,
|
|
event = { handler: handler, userData: userData || null, priority: priority || 0 };
|
|
events[ index ] = event;
|
|
while ( index > 0 && events[ index - 1 ].priority < events[ index ].priority ) {
|
|
events[ index ] = events[ index - 1 ];
|
|
events[ index - 1 ] = event;
|
|
index--;
|
|
}
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Remove a specific event handler for a given event.
|
|
* @function
|
|
* @param {String} eventName - Name of event for which the handler is to be removed.
|
|
* @param {OpenSeadragon.EventHandler} handler - Function to be removed.
|
|
*/
|
|
removeHandler: function ( eventName, handler ) {
|
|
var events = this.events[ eventName ],
|
|
handlers = [],
|
|
i;
|
|
if ( !events ) {
|
|
return;
|
|
}
|
|
if ( $.isArray( events ) ) {
|
|
for ( i = 0; i < events.length; i++ ) {
|
|
if ( events[i].handler !== handler ) {
|
|
handlers.push( events[ i ] );
|
|
}
|
|
}
|
|
this.events[ eventName ] = handlers;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Get the amount of handlers registered for a given event.
|
|
* @param {String} eventName - Name of event to inspect.
|
|
* @returns {number} amount of events
|
|
*/
|
|
numberOfHandlers: function (eventName) {
|
|
var events = this.events[ eventName ];
|
|
if ( !events ) {
|
|
return 0;
|
|
}
|
|
return events.length;
|
|
},
|
|
|
|
/**
|
|
* Remove all event handlers for a given event type. If no type is given all
|
|
* event handlers for every event type are removed.
|
|
* @function
|
|
* @param {String} eventName - Name of event for which all handlers are to be removed.
|
|
*/
|
|
removeAllHandlers: function( eventName ) {
|
|
if ( eventName ){
|
|
this.events[ eventName ] = [];
|
|
} else{
|
|
for ( var eventType in this.events ) {
|
|
this.events[ eventType ] = [];
|
|
}
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Get a function which iterates the list of all handlers registered for a given event, calling the handler for each.
|
|
* @function
|
|
* @param {String} eventName - Name of event to get handlers for.
|
|
*/
|
|
getHandler: function ( eventName) {
|
|
var events = this.events[ eventName ];
|
|
if ( !events || !events.length ) {
|
|
return null;
|
|
}
|
|
events = events.length === 1 ?
|
|
[ events[ 0 ] ] :
|
|
Array.apply( null, events );
|
|
return function ( source, args ) {
|
|
var i,
|
|
length = events.length;
|
|
for ( i = 0; i < length; i++ ) {
|
|
if ( events[ i ] ) {
|
|
args.eventSource = source;
|
|
args.userData = events[ i ].userData;
|
|
events[ i ].handler( args );
|
|
}
|
|
}
|
|
};
|
|
},
|
|
|
|
/**
|
|
* Trigger an event, optionally passing additional information.
|
|
* @function
|
|
* @param {String} eventName - Name of event to register.
|
|
* @param {Object} eventArgs - Event-specific data.
|
|
*/
|
|
raiseEvent: function( eventName, eventArgs ) {
|
|
//uncomment if you want to get a log of all events
|
|
//$.console.log( eventName );
|
|
|
|
var handler = this.getHandler( eventName );
|
|
if ( handler ) {
|
|
return handler( this, eventArgs || {} );
|
|
}
|
|
return undefined;
|
|
}
|
|
};
|
|
|
|
}( OpenSeadragon ));
|