Skip to content

msalsbery/OpenSeadragonViewerInputHook

Repository files navigation

OpenSeadragonViewerInputHook

Gitter

OpenSeadragonViewerInputHook is a plugin for OpenSeadragon 1.0.0+ which provides hooks into the user input event pipeline for providing additional behavior and/or overriding the default behavior.

View the Documentation

See the OpenSeadragon Imaging Demo/Test Site Live

Usage

Download openseadragon-viewerinputhook.min.js (or the un-minified openseadragon-viewerinputhook.js)

To use the plugin, add openseadragon-viewerinputhook.min.js after openseadragon.min.js to your site.

A ViewerInputHook object can be created and attached (if desired) to an OpenSeadragon.Viewer two ways:

  1. Call the addViewerInputHook method on the viewer
  2. Create a new ViewerInputHook object, passing a viewer reference in the options parameter (optional)

Both methods return a new ViewerInputHook object (although there's currently no public properties or methods available), and both methods take an options parameter where the event handlers to be hooked may be specified (see the 'Details' section below).

    // Example 1 - Use the Viewer.addViewerInputHook() method to create a ViewerInputHook

    // create an OpenSeadragon viewer
    var viewer = OpenSeadragon({...});
    // add a ViewerInputHook to the viewer
    var viewerInputHook = viewer.addViewerInputHook({ hooks: [...] });


    // Example 2 - Attach a new ViewerInputHook to an existing OpenSeadragon.Viewer

    var viewerInputHook = new OpenSeadragonImaging.ViewerInputHook({ viewer: existingviewer, hooks: [...] });

Details

Event handler callbacks are specified in the hooks property (array) of the options object passed when creating a ViewerInputHook object (see example code below). Any number of hooks can be specified.

Each hook specification in the array should have three properties - tracker, handler, and hookHandler.

The tracker property of each hook definition can be a reference to any OpenSeadragon.MouseTracker instance, or one of the pre-defined OpenSeadragon viewer trackers - currently 'viewer' or 'viewer_outer'.

The handler property of each hook definition specifies which MouseTracker handler to hook. Valid values are:

  1. 'enterHandler'
  2. 'exitHandler'
  3. 'pressHandler'
  4. 'nonPrimaryPressHandler' (OpenSeadragon v1.2.1+)
  5. 'releaseHandler'
  6. 'nonPrimaryReleaseHandler' (OpenSeadragon v1.2.1+)
  7. 'moveHandler'
  8. 'stopHandler'
  9. 'scrollHandler'
  10. 'clickHandler'
  11. 'dblClickHandler'
  12. 'dragHandler'
  13. 'dragEndHandler'
  14. 'pinchHandler'
  15. 'keyDownHandler'
  16. 'keyUpHandler'
  17. 'keyHandler'
  18. 'focusHandler'
  19. 'blurHandler'

The hookHandler property of each hook definition should be the user-defined event handler callback. All event handler callbacks have the following signature:

handlerFunc(event)

The ViewerInputHook class inserts your event hook handler methods in front of any existing event handler methods so the attached handler will be called first. Additional ViewerInputHook objects can be added on the same viewer/MouseTracker to create a chain of hook methods, where the last added handler(s) will be called first.

Your hook event handler methods can control the event handling behavior in one or more of the following ways:

  1. Set event.stopHandlers = true to prevent any more handlers in the event handler chain from being called
  2. Set event.stopBubbling = true to prevent the original DOM event from bubbling up the DOM tree (all handlers returning false will also disable bubbling)
  3. Set event.preventDefaultAction = true to prevent the viewer's default action in response to the event (currently applies to clickHandler, dragHandler, and scrollHandler on the viewer (tracker = 'viewer'))
    // Example

    var viewer = OpenSeadragon({...});

    viewer.addViewerInputHook({hooks: [
        {tracker: 'viewer', handler: 'scrollHandler', hookHandler: onViewerScroll},
        {tracker: 'viewer', handler: 'clickHandler', hookHandler: onViewerClick}
    ]});

    function onViewerScroll(event) {
        // Disable mousewheel zoom on the viewer and let the original mousewheel events bubble
        if (!event.isTouchEvent) {
            event.preventDefaultAction = true;
            return true;
        }
    }

    function onViewerClick(event) {
        // Disable click zoom on the viewer using event.preventDefaultAction
        event.preventDefaultAction = true;
        event.stopBubbling = true;
    }

Demo/Test Site

The OpenSeadragon Imaging demo/test site uses OpenSeadragonViewerInputHook to monitor cursor position and provide custom click and mousewheel event actions.

The sample code is in scripts/viewmodel.js.

Notes

TODO...

  1. jsdoc documentation
  2. Provide hooks on reference strip events
  3. Provide hooks on navigator events

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published