| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | /********************************************************************** | 
					
						
							|  |  |  | *  | 
					
						
							| 
									
										
										
										
											2017-01-02 01:23:33 +03:00
										 |  |  | * User Interface Features... | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * Features: | 
					
						
							|  |  |  | * 	- ui | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | * 		implements basic ui actions... | 
					
						
							| 
									
										
										
										
											2017-01-02 01:23:33 +03:00
										 |  |  | *	- config-local-storage | 
					
						
							|  |  |  | *		maintain configuration state in local storage | 
					
						
							|  |  |  | *	- ui-url-hash | 
					
						
							|  |  |  | *		handle .location.hash | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | *	- ui-cursor | 
					
						
							| 
									
										
										
										
											2017-08-26 23:58:52 +03:00
										 |  |  | 	- ui-unfocused-lock | 
					
						
							| 
									
										
										
										
											2017-01-02 01:23:33 +03:00
										 |  |  | *	- ui-control | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | *		touch/mouse control mechanics | 
					
						
							| 
									
										
										
										
											2017-01-02 01:23:33 +03:00
										 |  |  | * | 
					
						
							|  |  |  | * Dev Features: | 
					
						
							|  |  |  | *	- fail-safe-devtools | 
					
						
							|  |  |  | *		starts devtools if for some reason the main ui fails to start. | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * Experimental Features: | 
					
						
							|  |  |  | *	- ui-ribbons-placement | 
					
						
							|  |  |  | *		manage different low level ribbon placement mechanics | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | *		XXX EXPERIMENTAL... | 
					
						
							| 
									
										
										
										
											2017-01-02 01:23:33 +03:00
										 |  |  | *	- auto-single-image | 
					
						
							|  |  |  | *	- auto-ribbon | 
					
						
							|  |  |  | * | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | * | 
					
						
							|  |  |  | **********************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-08-21 02:19:24 +03:00
										 |  |  | ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define) | 
					
						
							|  |  |  | (function(require){ var module={} // make module AMD/node compatible...
 | 
					
						
							| 
									
										
										
										
											2016-08-20 22:49:36 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 10:37:21 +03:00
										 |  |  | var toggler = require('lib/toggler') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | var actions = require('lib/actions') | 
					
						
							|  |  |  | var features = require('lib/features') | 
					
						
							| 
									
										
										
										
											2017-01-12 02:09:59 +03:00
										 |  |  | var keyboard = require('lib/keyboard') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-01 16:12:10 +03:00
										 |  |  | var data = require('imagegrid/data') | 
					
						
							|  |  |  | var images = require('imagegrid/images') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | var core = require('features/core') | 
					
						
							|  |  |  | var base = require('features/base') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // Viewer (widget/interface)...
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-20 03:59:11 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | // This requires a 'ui-render' family feature to be present
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 	Expected render API is:
 | 
					
						
							| 
									
										
										
										
											2017-05-20 03:59:11 +03:00
										 |  |  | //		XXX do we actually need this or should we directly use .ribbons.scale()???
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | //		Get/set view scale...
 | 
					
						
							|  |  |  | //		.viewScale()
 | 
					
						
							|  |  |  | //		.viewScale('?')
 | 
					
						
							|  |  |  | //			-> scale
 | 
					
						
							|  |  |  | //		.viewScale(scale)
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		Get/set screen width (measured in image blocks)...
 | 
					
						
							|  |  |  | //		.fitImage('?')
 | 
					
						
							|  |  |  | //			-> screenwidth
 | 
					
						
							|  |  |  | //		.fitImage(count, overflow)
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		Get/set screen height (measured in image blocks)...
 | 
					
						
							|  |  |  | //		.fitRibbon('?')
 | 
					
						
							|  |  |  | //			-> screenheight
 | 
					
						
							|  |  |  | //		.fitRibbon(count, whole)
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:46:51 +03:00
										 |  |  | //		Center image horizontally...
 | 
					
						
							|  |  |  | //		.centerImage(target, align, offset, scale){
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		Center ribbon vertically...
 | 
					
						
							|  |  |  | //		.centerRibbon(target)
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		Get/set ribbon rotation...
 | 
					
						
							|  |  |  | //		.ribbonRotation()
 | 
					
						
							|  |  |  | //			-> angle
 | 
					
						
							|  |  |  | //		.ribbonRotation(angle)
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | // 	Expected render events:
 | 
					
						
							|  |  |  | //		Pre/post wrap the resize animation...
 | 
					
						
							|  |  |  | //		.resizing(unit, size, overflow)
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 	Optional render API:
 | 
					
						
							|  |  |  | //		Update ribbon...
 | 
					
						
							|  |  |  | //		.updateRibbon(target)
 | 
					
						
							|  |  |  | //			-> this
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-20 03:59:11 +03:00
										 |  |  | //	Base .ribbons API (see: ribbons.BaseRibbons):
 | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | //		.ribbons.getImage(..)
 | 
					
						
							|  |  |  | //			-> image
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		.ribbons.getImageByPosition(..)
 | 
					
						
							|  |  |  | //			-> image
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		.ribbons.getRibbon(..)
 | 
					
						
							|  |  |  | //			-> ribbon
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //		.ribbons.elemGID(..)
 | 
					
						
							|  |  |  | //			-> gid
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //	XXX do we need these???
 | 
					
						
							|  |  |  | //		.ribbons.focusImage(..)
 | 
					
						
							|  |  |  | //	XXX Avoid using methods that expose specific non-generic structure:
 | 
					
						
							| 
									
										
										
										
											2017-05-18 03:33:37 +03:00
										 |  |  | //		.ribbons.getRibbonSet(..) ???
 | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | //		.ribbons.getRibbonLocator(..)
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2016-03-30 15:24:01 +03:00
										 |  |  | // Workspaces:
 | 
					
						
							|  |  |  | // 	ui-chrome-hidden		- all features handling chrome elements 
 | 
					
						
							|  |  |  | // 								should hide all the chrome when this 
 | 
					
						
							|  |  |  | // 								workspace loads.
 | 
					
						
							|  |  |  | // 								NOTE: other workspace functionality 
 | 
					
						
							|  |  |  | // 									should be handled without change.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | // NOTE: this uses the base feature API but does not need it imported...
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | // XXX need a way to neutrally scale images and store that scale...
 | 
					
						
							|  |  |  | // 		- fit N images/ribbons is neutral but might mean different things 
 | 
					
						
							|  |  |  | // 			depending on image and viewer proportions
 | 
					
						
							|  |  |  | // 		- .scale is a bad way to go...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | var ViewerActions =  | 
					
						
							| 
									
										
										
										
											2016-03-27 20:07:48 +03:00
										 |  |  | module.ViewerActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		// The maximum screen width allowed when zooming...
 | 
					
						
							|  |  |  | 		'max-screen-images': 30, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 		// If true do not zoom past one image filling the screen...
 | 
					
						
							|  |  |  | 		'max-zoom-to-screen': true, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		// A step (multiplier) used by .zoomIn()/.zoomOut() actions.
 | 
					
						
							|  |  |  | 		// NOTE: this is rounded to the nearest whole screen width in images
 | 
					
						
							|  |  |  | 		// 		and current fit-overflow added.
 | 
					
						
							|  |  |  | 		'zoom-step': 1.2, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 		// Added to odd number of images to fit to indicate scroll ability...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		// ...this effectively sets the closest distance an image can be from
 | 
					
						
							|  |  |  | 		// the viewer edge...
 | 
					
						
							|  |  |  | 		'fit-overflow': 0.2, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 		// Time to wait after resize is done for transitionend event to call
 | 
					
						
							|  |  |  | 		// .resizingDone(..) action.
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// NOTE: this should be as short as possible but longer than the
 | 
					
						
							|  |  |  | 		// 		transition.
 | 
					
						
							|  |  |  | 		'resize-done-timeout': 300, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		// Theme to set on startup...
 | 
					
						
							|  |  |  | 		'theme': null, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Supported themes...
 | 
					
						
							|  |  |  | 		'themes': [ | 
					
						
							|  |  |  | 			'dark',  | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 			'gray',  | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			'light', | 
					
						
							|  |  |  | 		], | 
					
						
							| 
									
										
										
										
											2015-12-20 04:29:44 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-29 04:39:46 +03:00
										 |  |  | 		'ribbon-theme': 'black', | 
					
						
							|  |  |  | 		'ribbon-themes': [ | 
					
						
							|  |  |  | 			'black-ribbon', | 
					
						
							|  |  |  | 			'gray-ribbon', | 
					
						
							|  |  |  | 			'light-gray-ribbon', | 
					
						
							|  |  |  | 			'transparent-ribbon', | 
					
						
							|  |  |  | 		], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-19 19:34:38 +03:00
										 |  |  | 		'ribbon-image-separators': 'on', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 		'ribbon-rotation-step': 10, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-20 04:29:44 +03:00
										 |  |  | 		// XXX BUG: for some reason this get's shadowed by base.config...
 | 
					
						
							|  |  |  | 		'ribbon-focus-modes': [ | 
					
						
							|  |  |  | 			'visual',	// select image closest visually 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			'order',	// select image closest to current in order
 | 
					
						
							|  |  |  | 			'first',	// select first image
 | 
					
						
							|  |  |  | 			'last',		// select last image
 | 
					
						
							|  |  |  | 		], | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// control ribbon alignment...
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// NOTE: when this is null then 'ribbon-focus-mode' will be used...
 | 
					
						
							|  |  |  | 		// NOTE: this supports the same modes as 'ribbon-focus-mode'...
 | 
					
						
							|  |  |  | 		'ribbon-align-modes': { | 
					
						
							|  |  |  | 			none: null,		// use .config['ribbon-focus-mode']'s value
 | 
					
						
							|  |  |  | 			visual: 'alignByOrder', | 
					
						
							|  |  |  | 			order: 'alignByOrder', | 
					
						
							|  |  |  | 			first: 'alignByFirst', | 
					
						
							|  |  |  | 			//last,
 | 
					
						
							|  |  |  | 			manual: null, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		'ribbon-align-mode': null, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		'ribbon-align-delay': 50, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// Viewer dom... 
 | 
					
						
							|  |  |  | 	dom: null, | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 	// NOTE: this expects that ribbons will maintain .parent.images...
 | 
					
						
							|  |  |  | 	// NOTE: when getting rid of ribbons need to also remove the .parent
 | 
					
						
							|  |  |  | 	// 		reference...
 | 
					
						
							|  |  |  | 	get ribbons(){ | 
					
						
							|  |  |  | 		return this.__ribbons }, | 
					
						
							|  |  |  | 	set ribbons(ribbons){ | 
					
						
							|  |  |  | 		this.__ribbons = ribbons | 
					
						
							|  |  |  | 		ribbons.parent = this | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Current image data...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	get image(){ | 
					
						
							|  |  |  | 		return this.images && this.images[this.current] }, | 
					
						
							|  |  |  | 	set image(val){ | 
					
						
							|  |  |  | 		if(this.images){ | 
					
						
							|  |  |  | 			this.images[this.current] = val | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Scaling...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// NOTE: .screenwidth / .screenheight are measured in square image blocks...
 | 
					
						
							| 
									
										
										
										
											2017-05-20 03:59:11 +03:00
										 |  |  | 	// XXX do we actually need this or should we directly use .ribbons.scale()???
 | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 	get scale(){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		return this.viewScale() }, | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 	set scale(s){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		this.viewScale(s) }, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	get screenwidth(){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		return this.fitImage('?') }, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	set screenwidth(n){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		this.fitImage(n, false) }, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	get screenheight(){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		return this.fitRibbon('?') }, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	set screenheight(n){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		this.fitRibbon(n, false) }, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// Screen size in image "radii" on the narrow side of the screen...
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// E.g.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 						min(screenwidth, screenheight)	
 | 
					
						
							|  |  |  | 	// 		screenfit = --------------------------------------
 | 
					
						
							|  |  |  | 	// 						min(image.width, image.height)
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-01 06:13:50 +03:00
										 |  |  | 	get screenfit(){ | 
					
						
							| 
									
										
										
										
											2017-05-16 01:56:56 +03:00
										 |  |  | 		if(!this.dom){ | 
					
						
							| 
									
										
										
										
											2016-05-01 06:13:50 +03:00
										 |  |  | 			return null | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		var viewer = this.dom | 
					
						
							| 
									
										
										
										
											2016-05-01 06:13:50 +03:00
										 |  |  | 		var W = viewer.width() | 
					
						
							|  |  |  | 		var H = viewer.height() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return W < H ? | 
					
						
							|  |  |  | 			this.screenwidth | 
					
						
							|  |  |  | 			: this.screenheight | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set screenfit(n){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		var viewer = this.dom | 
					
						
							| 
									
										
										
										
											2016-05-01 06:13:50 +03:00
										 |  |  | 		var W = viewer.width() | 
					
						
							|  |  |  | 		var H = viewer.height() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(W < H){ | 
					
						
							|  |  |  | 			this.screenwidth = n | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			this.screenheight = n | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// General UI stuff...
 | 
					
						
							|  |  |  | 	// NOTE: this is applicable to all uses...
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleTheme: ['Interface/Theme/Viewer theme',  | 
					
						
							| 
									
										
										
										
											2015-12-31 10:37:21 +03:00
										 |  |  | 		toggler.CSSClassToggler( | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 			function(){ return this.dom },  | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			function(){ return this.config.themes }, | 
					
						
							|  |  |  | 			function(state){ this.config.theme = state }) ], | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 	lighterTheme: ['Interface/Theme/Lighter theme', | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			var themes = this.config.themes | 
					
						
							|  |  |  | 			var i = themes.indexOf(this.toggleTheme('?')) | 
					
						
							|  |  |  | 			this.toggleTheme(Math.min(i+1, themes.length-1)) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 	darkerTheme: ['Interface/Theme/Darker theme', | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			var themes = this.config.themes | 
					
						
							|  |  |  | 			var i = themes.indexOf(this.toggleTheme('?')) | 
					
						
							|  |  |  | 			this.toggleTheme(Math.max(0, i-1)) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleRibbonTheme: ['Interface/Theme/Ribbon theme',  | 
					
						
							| 
									
										
										
										
											2016-02-29 04:39:46 +03:00
										 |  |  | 		toggler.CSSClassToggler( | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 			function(){ return this.dom },  | 
					
						
							| 
									
										
										
										
											2016-02-29 04:39:46 +03:00
										 |  |  | 			function(){ return this.config['ribbon-themes'] }, | 
					
						
							|  |  |  | 			function(state){ this.config['ribbon-theme'] = state }) ], | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleRibbonImageSepators: ['Interface/Theme/Ribbon image separators',  | 
					
						
							| 
									
										
										
										
											2016-12-19 19:34:38 +03:00
										 |  |  | 		toggler.CSSClassToggler( | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 			function(){ return this.dom },  | 
					
						
							| 
									
										
										
										
											2016-12-19 19:34:38 +03:00
										 |  |  | 			'ribbon-image-separators', | 
					
						
							|  |  |  | 			function(state){ this.config['ribbon-image-separators'] = state }) ], | 
					
						
							| 
									
										
										
										
											2016-05-02 17:08:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// Navigation...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: these prioritize whole images, i.e. each image will at least
 | 
					
						
							|  |  |  | 	// 		once be fully shown.
 | 
					
						
							|  |  |  | 	prevScreen: ['Navigate/Screen width back', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 			// NOTE: the 0.2 is added to compensate for alignment/scaling
 | 
					
						
							|  |  |  | 			// 		errors -- 2.99 images wide counts as 3 while 2.5 as 2.
 | 
					
						
							|  |  |  | 			var w = Math.floor(this.screenwidth + 0.2) | 
					
						
							|  |  |  | 			w += (w % 2) - 1 | 
					
						
							|  |  |  | 			this.prevImage(w) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	nextScreen: ['Navigate/Screen width forward', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 			var w = Math.floor(this.screenwidth + 0.2) | 
					
						
							|  |  |  | 			w += (w % 2) - 1 | 
					
						
							|  |  |  | 			this.nextImage(w) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ribbon aligning and centering...
 | 
					
						
							|  |  |  | 	centerViewer: ['- Interface/Center the viewer', | 
					
						
							|  |  |  | 		function(target){ | 
					
						
							|  |  |  | 			this | 
					
						
							|  |  |  | 				.centerImage(target) | 
					
						
							|  |  |  | 				.centerRibbon(target) }], | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 	alignRibbons: ['Interface/Align ribbons', | 
					
						
							|  |  |  | 		function(target, scale, now){ | 
					
						
							|  |  |  | 			if(target == 'now'){ | 
					
						
							|  |  |  | 				now = true | 
					
						
							|  |  |  | 				target = null | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			var mode = this.config['ribbon-align-mode']  | 
					
						
							|  |  |  | 				|| this.config['ribbon-focus-mode'] | 
					
						
							|  |  |  | 			var modes = this.config['ribbon-align-modes'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(mode in modes && mode != 'manual'){ | 
					
						
							|  |  |  | 				this[modes[mode]](target, scale, now) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// manual...
 | 
					
						
							|  |  |  | 			// XXX is this correct???
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this | 
					
						
							|  |  |  | 					.centerRibbon(target) | 
					
						
							|  |  |  | 					.centerImage(target) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	toggleRibbonAlignMode : ['Interface/Ribbon align mode', | 
					
						
							|  |  |  | 		core.makeConfigToggler('ribbon-align-mode',  | 
					
						
							|  |  |  | 			function(){ return Object.keys(this.config['ribbon-align-modes']) })], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// align modes...
 | 
					
						
							|  |  |  | 	// XXX these should also affect up/down navigation...
 | 
					
						
							|  |  |  | 	// 		...navigate by proximity (closest to center) rather than by
 | 
					
						
							|  |  |  | 	// 		order...
 | 
					
						
							|  |  |  | 	// XXX skip off-screen ribbons (???)
 | 
					
						
							| 
									
										
										
										
											2016-04-29 17:59:17 +03:00
										 |  |  | 	// XXX should the timeout be configurable???
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	alignByOrder: ['Interface/Align ribbons by image order', | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 		function(target, scale, now){ | 
					
						
							|  |  |  | 			if(target == 'now'){ | 
					
						
							|  |  |  | 				now = true | 
					
						
							|  |  |  | 				target = null | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 20:08:08 +03:00
										 |  |  | 			if(data == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | 			var gid = data.getImage(target) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							|  |  |  | 			// NOTE: the ordering of calls here makes it simpler to load
 | 
					
						
							|  |  |  | 			// 		data into ribbons based on target gid... i.e. first
 | 
					
						
							|  |  |  | 			// 		we know the section we need then align it vertically...
 | 
					
						
							|  |  |  | 			this | 
					
						
							| 
									
										
										
										
											2016-11-22 20:09:14 +03:00
										 |  |  | 				.centerImage(gid) | 
					
						
							|  |  |  | 				.centerRibbon(gid) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 			var _align = function(){ | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 				this.__align_timeout = null | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				// align other ribbons...
 | 
					
						
							|  |  |  | 				var ribbon = data.getRibbon(gid) | 
					
						
							|  |  |  | 				for(var r in data.ribbons){ | 
					
						
							|  |  |  | 					// skip the current ribbon...
 | 
					
						
							|  |  |  | 					if(r == ribbon){ | 
					
						
							|  |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX skip off-screen ribbons... (???)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// center...
 | 
					
						
							|  |  |  | 					// XXX is there a 'last' special case here???
 | 
					
						
							|  |  |  | 					var t = data.getImage(gid, r) | 
					
						
							|  |  |  | 					if(t == null){ | 
					
						
							|  |  |  | 						var f = data.getImage('first', r) | 
					
						
							|  |  |  | 						// nothing found -- empty ribbon?
 | 
					
						
							|  |  |  | 						if(f == null){ | 
					
						
							|  |  |  | 							continue | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 						that.centerImage(f, 'before', null, scale) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 						that.centerImage(t, 'after', null, scale) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(now){ | 
					
						
							|  |  |  | 				_align() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				// if we are going fast we might skip an update... 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 				if(this.__align_timeout != null){ | 
					
						
							|  |  |  | 					clearTimeout(this.__align_timeout) | 
					
						
							|  |  |  | 					this.__align_timeout = null | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 				this.__align_timeout = setTimeout(_align, this.config['ribbon-align-delay']) | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-01-12 04:33:10 +03:00
										 |  |  | 	alignByFirst: ['Interface/Align ribbons except current to first image', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		function(target){ | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 			target = target == 'now' ? null : target | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 20:08:08 +03:00
										 |  |  | 			if(data == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | 			var gid = data.getImage(target) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							|  |  |  | 			this | 
					
						
							|  |  |  | 				.centerImage(gid) | 
					
						
							| 
									
										
										
										
											2016-11-22 20:09:14 +03:00
										 |  |  | 				.centerRibbon(gid) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			//setTimeout(function(){
 | 
					
						
							|  |  |  | 				// align other ribbons...
 | 
					
						
							|  |  |  | 				var ribbon = data.getRibbon(gid) | 
					
						
							|  |  |  | 				for(var r in data.ribbons){ | 
					
						
							|  |  |  | 					// skip the current ribbon...
 | 
					
						
							|  |  |  | 					if(r == ribbon){ | 
					
						
							|  |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX skip off-screen ribbons...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX see if we need to do some loading...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// center...
 | 
					
						
							|  |  |  | 					var f = data.getImage('first', r) | 
					
						
							|  |  |  | 					// nothing found -- empty ribbon?
 | 
					
						
							|  |  |  | 					if(f == null){ | 
					
						
							|  |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					that.centerImage(f, 'before') | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			//}, 0)
 | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// Viewer/window resize event...
 | 
					
						
							| 
									
										
										
										
											2016-12-02 23:52:56 +03:00
										 |  |  | 	resizingWindow: ['- Interface/', | 
					
						
							| 
									
										
										
										
											2017-02-17 06:57:32 +03:00
										 |  |  | 		core.doc`This is called by the window resize event handler...
 | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		NOTE: since the centering is passive (done in CSS) we do not need | 
					
						
							|  |  |  | 			to do anything here, but this is needed for legacy or  | 
					
						
							|  |  |  | 			compatibility code that needs to update stuff when resizing  | 
					
						
							|  |  |  | 			viewer... | 
					
						
							|  |  |  | 			To see the list of handlers call: | 
					
						
							|  |  |  | 				.getHandlerDocStr('resizingWindow') | 
					
						
							|  |  |  | 		`,
 | 
					
						
							| 
									
										
										
										
											2016-12-02 23:52:56 +03:00
										 |  |  | 		core.notUserCallable(function(){ | 
					
						
							|  |  |  | 			// This is the window resize event...
 | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							| 
									
										
										
										
											2016-12-02 23:52:56 +03:00
										 |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// Zoom/scale protocol...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Events...
 | 
					
						
							|  |  |  | 	// NOTE: the implementation needs to call .resizingDone(..) when all 
 | 
					
						
							|  |  |  | 	// 		animations are done...
 | 
					
						
							| 
									
										
										
										
											2017-02-17 06:57:32 +03:00
										 |  |  | 	resizing: ['- Zoom/Scale root protocol action (not for direct use)',  | 
					
						
							|  |  |  | 		core.doc`Zooming/scaling root action...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		This is called by zoom/scale protocol compliant actions and | 
					
						
							|  |  |  | 		intended for use as an trigger for handlers, and not as | 
					
						
							|  |  |  | 		a user-callable action. | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		Protocol: | 
					
						
							|  |  |  | 			- a compliant action must be wrapped in the .resizing action | 
					
						
							|  |  |  | 			- a compliant action must pass the sizing unit, value and  | 
					
						
							|  |  |  | 				overflow to the wrapping action. | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		Supported units: | 
					
						
							|  |  |  | 			- scale | 
					
						
							|  |  |  | 			- screenwidth | 
					
						
							|  |  |  | 			- screenheight | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		Example: | 
					
						
							|  |  |  | 			actionName: ['Action doc...', | 
					
						
							|  |  |  | 				function(value){ | 
					
						
							|  |  |  | 					this.resizing.chainCall(this, function(){ | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 						// action code...
 | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 					},  | 
					
						
							|  |  |  | 					// action unit...
 | 
					
						
							|  |  |  | 					'scale',  | 
					
						
							|  |  |  | 					// action value...
 | 
					
						
							|  |  |  | 					value) | 
					
						
							|  |  |  | 				}], | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		This will enable clients to attach to a single in/out point. | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		NOTE: to account for CSS transitions use .resizingDone() | 
					
						
							|  |  |  | 		NOTE: not intended for direct use... | 
					
						
							|  |  |  | 		`,
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 		core.notUserCallable(function(unit, size, overflow){ | 
					
						
							|  |  |  | 			// This is a resizing protocol root function.
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// This will never be used directly, but will wrap protocol user
 | 
					
						
							|  |  |  | 			// functions.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-02-17 06:57:32 +03:00
										 |  |  | 	resizingDone: ['- Zoom/scale post-transition protocol action (not for direct use)', | 
					
						
							|  |  |  | 		core.doc`Zooming/scaling post-transition action...
 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 		This is called after zoom/scale protocol compliant actions are | 
					
						
							|  |  |  | 		done and intended for use as an trigger for handlers, and | 
					
						
							|  |  |  | 		not as a user-callable action. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this will be called at least timeout after last resize action... | 
					
						
							|  |  |  | 		NOTE: if several resize actions are called less than timeout apart  | 
					
						
							|  |  |  | 			this will be called only once, after the last action. | 
					
						
							|  |  |  | 		NOTE: not intended for direct use... | 
					
						
							|  |  |  | 		`,
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 		core.notUserCallable(function(){ | 
					
						
							|  |  |  | 			// This is resizing protocol post resize action.
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// This will be called either when a resize CSS transition 
 | 
					
						
							|  |  |  | 			// is done or after a timeout, which ever happens first.
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// NOTE: if a transition is longer than the timeout this will
 | 
					
						
							|  |  |  | 			// 		be called before the transition is done.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 05:43:14 +03:00
										 |  |  | 	// Zooming is done by multiplying the current scale by .config['zoom-step']
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// and rounding to nearest discrete number of images to fit on screen.
 | 
					
						
							|  |  |  | 	zoomIn: ['Zoom/Zoom in', | 
					
						
							| 
									
										
										
										
											2016-12-30 03:54:10 +03:00
										 |  |  | 		{browseMode: function(){ | 
					
						
							|  |  |  | 			return Math.min(this.screenwidth, this.screenheight) <= 1 && 'disabled' }}, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		function(){  | 
					
						
							| 
									
										
										
										
											2016-04-24 03:21:41 +03:00
										 |  |  | 			var d = (this.config['zoom-step'] || 1.2) | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// limit scaling to screen dimensions...
 | 
					
						
							| 
									
										
										
										
											2016-04-24 03:21:41 +03:00
										 |  |  | 			if(this.config['max-zoom-to-screen']  | 
					
						
							|  |  |  | 					&& (Math.min(this.screenwidth, this.screenheight) / d) < 1){ | 
					
						
							|  |  |  | 				this.scale /= 1 / Math.min(this.screenwidth, this.screenheight) | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2016-04-24 03:21:41 +03:00
										 |  |  | 				this.scale *= d | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	zoomOut: ['Zoom/Zoom out', | 
					
						
							| 
									
										
										
										
											2016-12-30 03:54:10 +03:00
										 |  |  | 		{browseMode: function(){ | 
					
						
							|  |  |  | 			return this.screenwidth >= this.config['max-screen-images'] && 'disabled' }}, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		function(){  | 
					
						
							|  |  |  | 			var max = this.config['max-screen-images'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 			if(max && max < (this.screenwidth * (this.config['zoom-step'] || 1.2))){ | 
					
						
							| 
									
										
										
										
											2016-04-24 03:21:41 +03:00
										 |  |  | 				this.scale /= max / Math.min(this.screenwidth, this.screenheight) | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.scale /= (this.config['zoom-step'] || 1.2) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-04-28 18:01:00 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Scale presets...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	fitOrig: ['Zoom/Fit to original scale', | 
					
						
							|  |  |  | 		function(){ this.viewScale(1) }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	fitMax: ['Zoom/Fit the maximum number of images', | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		function(){ this.screenwidth = this.config['max-screen-images'] }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	fitScreen: ['Zoom/Fit image to screen', | 
					
						
							| 
									
										
										
										
											2016-05-01 06:13:50 +03:00
										 |  |  | 		function(){ this.screenfit = 1 }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// Ribbon rotation...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 	// Rotate ribbon CW/CCW...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	Rotate ribbon (default step)
 | 
					
						
							|  |  |  | 	// 	.rotateRibbonCW()
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	Rotate ribbon by step...
 | 
					
						
							|  |  |  | 	// 	.rotateRibbonCW(5)
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: default step is set by .config['ribbon-rotation-step']
 | 
					
						
							| 
									
										
										
										
											2016-12-31 07:10:28 +03:00
										 |  |  | 	rotateRibbonCW: ['Interface|Ribbon/Rotate ribbon clockwise',  | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 		function(a){  | 
					
						
							|  |  |  | 			this.ribbonRotation('+='+ (a || this.config['ribbon-rotation-step'] || 10)) }], | 
					
						
							| 
									
										
										
										
											2016-12-31 07:10:28 +03:00
										 |  |  | 	rotateRibbonCCW: ['Interface|Ribbon/Rotate ribbon coounter clockwise',  | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 		function(a){  | 
					
						
							|  |  |  | 			this.ribbonRotation('-='+ (a || this.config['ribbon-rotation-step'] || 10)) }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 	resetRibbonRotation: ['Interface|Ribbon/Reset ribbon rotation', | 
					
						
							|  |  |  | 		{browseMode: function(){ | 
					
						
							|  |  |  | 			return this.ribbonRotation() == 0 && 'disabled' }}, | 
					
						
							|  |  |  | 		function(){ this.ribbonRotation(0) }], | 
					
						
							| 
									
										
										
										
											2016-11-23 13:16:28 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	// XXX EXPERIMENTAL: not sure if this is the right way to go...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// XXX make this play nice with crops...
 | 
					
						
							| 
									
										
										
										
											2017-01-01 01:56:08 +03:00
										 |  |  | 	// 		...should this be a crop???
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleRibbonList: ['Interface|Ribbon/Ribbons as images view', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			if(this._full_data == null){ | 
					
						
							|  |  |  | 				// XXX do a better name here...
 | 
					
						
							|  |  |  | 				this._full_data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// generate the view...
 | 
					
						
							|  |  |  | 				this.data = this.data.cropRibbons() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				var data = this._full_data | 
					
						
							|  |  |  | 				delete this._full_data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// restore...
 | 
					
						
							|  |  |  | 				this.data = data.mergeRibbonCrop(this.data) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			this.reload() | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2017-05-16 01:28:09 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Renderer API...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: these are expected to be implemented by the renderer...
 | 
					
						
							|  |  |  | 	// NOTE: these are here for documentation purpose...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX should these check if they are a base feature and if so err???
 | 
					
						
							|  |  |  | 	viewScale: ['- Zoom/', | 
					
						
							|  |  |  | 		function(scale){ }], | 
					
						
							|  |  |  | 	fitImage: ['Zoom/Fit image', | 
					
						
							|  |  |  | 		function(count, overflow){ }], | 
					
						
							|  |  |  | 	fitRibbon: ['Zoom/Fit ribbon vertically', | 
					
						
							|  |  |  | 		function(count, whole){ }], | 
					
						
							| 
									
										
										
										
											2017-05-16 01:46:51 +03:00
										 |  |  | 	centerImage: ['- Interface/Center an image in ribbon horizontally', | 
					
						
							|  |  |  | 		function(target, align, offset, scale){ }], | 
					
						
							|  |  |  | 	centerRibbon: ['- Interface/Center a ribbon vertically', | 
					
						
							|  |  |  | 		function(target){ }], | 
					
						
							|  |  |  | 	ribbonRotation: ['- Interface|Ribbon/',  | 
					
						
							|  |  |  | 		function(angle){ }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var Viewer = | 
					
						
							|  |  |  | module.Viewer = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: 'Graphical User Interface', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'lifecycle', | 
					
						
							|  |  |  | 		'base', | 
					
						
							| 
									
										
										
										
											2016-03-29 07:34:49 +03:00
										 |  |  | 		'workspace', | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 		'introspection', | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		'ui-render', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	], | 
					
						
							| 
									
										
										
										
											2017-05-02 14:57:25 +03:00
										 |  |  | 	suggested: [ | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	actions: ViewerActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// check if we are running in a UI context...
 | 
					
						
							|  |  |  | 	// NOTE: this will prevent loading of any features dependant on the 
 | 
					
						
							|  |  |  | 	// 		UI in a non UI context...
 | 
					
						
							|  |  |  | 	isApplicable: function(){ return typeof(window) == typeof({}) }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['start', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-20 20:59:19 +03:00
										 |  |  | 				// load themes from config...
 | 
					
						
							| 
									
										
										
										
											2016-03-03 20:43:24 +03:00
										 |  |  | 				this.config.theme  | 
					
						
							|  |  |  | 					&& this.toggleTheme(this.config.theme) | 
					
						
							|  |  |  | 				this.config['ribbon-theme']  | 
					
						
							|  |  |  | 					&& this.toggleRibbonTheme(this.config['ribbon-theme']) | 
					
						
							| 
									
										
										
										
											2016-12-19 19:34:38 +03:00
										 |  |  | 				this.config['ribbon-image-separators']  | 
					
						
							|  |  |  | 					&& this.toggleRibbonImageSepators(this.config['ribbon-image-separators']) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-20 20:59:19 +03:00
										 |  |  | 				// center viewer on resize events...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				if(!this.__viewer_resize){ | 
					
						
							|  |  |  | 					this.__viewer_resize = function(){ | 
					
						
							|  |  |  | 						if(that.__centering_on_resize){ | 
					
						
							|  |  |  | 							return | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						// this will prevent centering calls from overlapping...
 | 
					
						
							|  |  |  | 						that.__centering_on_resize = true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-02 23:52:56 +03:00
										 |  |  | 						that.resizingWindow() | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						delete that.__centering_on_resize | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					$(window).resize(this.__viewer_resize) | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-03-30 15:24:01 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// setup basic workspaces...
 | 
					
						
							|  |  |  | 				if(this.workspaces['ui-chrome-hidden'] == null){ | 
					
						
							|  |  |  | 					this.workspaces['ui-chrome-hidden'] = {} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 		['stop',  | 
					
						
							|  |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 				if(this.__viewer_resize){ | 
					
						
							|  |  |  | 					$(window).off('resize', this.__viewer_resize)  | 
					
						
							|  |  |  | 					delete this.__viewer_resize | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-27 06:48:24 +03:00
										 |  |  | 		/*/ force browser to redraw images after resize... | 
					
						
							|  |  |  | 		// NOTE: this fixes a bug where images are not always updated 
 | 
					
						
							|  |  |  | 		// 		when off-screen...
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 		['resizingDone', | 
					
						
							|  |  |  | 			function(){ this.scale = this.scale }], | 
					
						
							| 
									
										
										
										
											2017-01-27 06:48:24 +03:00
										 |  |  | 		//*/
 | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		['focusImage.post',  | 
					
						
							|  |  |  | 			function(){ this.alignRibbons() }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-27 20:07:48 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Utilities and Services...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | var ConfigLocalStorageActions = actions.Actions({ | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'config-local-storage-key': 'config', | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		// NOTE: this is in seconds...
 | 
					
						
							|  |  |  | 		// NOTE: if this is null or 0 the timer will not start...
 | 
					
						
							|  |  |  | 		'config-auto-save-local-storage-interval': 3*60, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// XXX not sure what should be the default...
 | 
					
						
							|  |  |  | 		'config-local-storage-save-diff': true, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX should we store this in something like .default_config and
 | 
					
						
							|  |  |  | 	// 		clone it???
 | 
					
						
							| 
									
										
										
										
											2016-06-11 22:51:19 +03:00
										 |  |  | 	// 		...do not think so, as the __base_config should always be set
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// 		to the values set in code... (check this!)
 | 
					
						
							|  |  |  | 	__base_config: null, | 
					
						
							|  |  |  | 	__config_loaded: null, | 
					
						
							|  |  |  | 	__auto_save_config_timer: null, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Disable localStorage in child, preventing two viewers from messing
 | 
					
						
							|  |  |  | 	// things up in one store...
 | 
					
						
							|  |  |  | 	clone: [function(){ | 
					
						
							|  |  |  | 		return function(res){ | 
					
						
							|  |  |  | 			res.config['config-local-storage-key'] = null | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	storeConfig: ['File/Store configuration', | 
					
						
							|  |  |  | 		function(key){ | 
					
						
							|  |  |  | 			var key = key || this.config['config-local-storage-key'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(key != null){ | 
					
						
							|  |  |  | 				// build a diff...
 | 
					
						
							|  |  |  | 				if(this.config['config-local-storage-save-diff']){ | 
					
						
							|  |  |  | 					var base = this.__base_config || {} | 
					
						
							|  |  |  | 					var cur = this.config | 
					
						
							|  |  |  | 					var config = {} | 
					
						
							|  |  |  | 					Object.keys(cur) | 
					
						
							|  |  |  | 						.forEach(function(e){ | 
					
						
							|  |  |  | 							if(cur.hasOwnProperty(e)  | 
					
						
							|  |  |  | 									&& base[e] != cur[e]  | 
					
						
							|  |  |  | 									// NOTE: this may go wrong for objects
 | 
					
						
							|  |  |  | 									// 		if key order is different...
 | 
					
						
							|  |  |  | 									// 		...this is no big deal as false
 | 
					
						
							|  |  |  | 									// 		positives are not lost data...
 | 
					
						
							|  |  |  | 									|| JSON.stringify(base[e]) != JSON.stringify(cur[e])){ | 
					
						
							|  |  |  | 								config[e] = cur[e] | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// full save...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					var config = this.config | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// store...
 | 
					
						
							|  |  |  | 				localStorage[key] = JSON.stringify(config)  | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	loadStoredConfig: ['File/Load stored configuration', | 
					
						
							|  |  |  | 		function(key){ | 
					
						
							|  |  |  | 			key = key || this.config['config-local-storage-key'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(key && localStorage[key]){ | 
					
						
							|  |  |  | 				// get the original (default) config and keep it for 
 | 
					
						
							|  |  |  | 				// reference...
 | 
					
						
							|  |  |  | 				// NOTE: this is here so as to avoid creating 'endless'
 | 
					
						
							|  |  |  | 				// 		config inheritance chains...
 | 
					
						
							|  |  |  | 				base = this.__base_config = this.__base_config || this.config | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var loaded = JSON.parse(localStorage[key]) | 
					
						
							|  |  |  | 				loaded.__proto__ = base | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.config = loaded  | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	// XXX need to load the reset config, and not just set it...
 | 
					
						
							| 
									
										
										
										
											2016-06-07 06:22:44 +03:00
										 |  |  | 	resetConfig: ['File/Reset settings', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			this.config = this.__base_config || this.config | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	toggleAutoStoreConfig: ['File/Store configuration', | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 		toggler.Toggler(null,  | 
					
						
							|  |  |  | 			function(_, state){  | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				if(state == null){ | 
					
						
							|  |  |  | 					return this.__auto_save_config_timer || 'none' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					var that = this | 
					
						
							|  |  |  | 					var interval = this.config['config-auto-save-local-storage-interval'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// no timer interval set...
 | 
					
						
							|  |  |  | 					if(!interval){ | 
					
						
							|  |  |  | 						return false | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// this cleans up before 'on' and fully handles 'off' action...
 | 
					
						
							|  |  |  | 					if(this.__auto_save_config_timer != null){ | 
					
						
							|  |  |  | 						clearTimeout(this.__auto_save_config_timer) | 
					
						
							|  |  |  | 						delete this.__auto_save_config_timer | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if(state == 'running'  | 
					
						
							|  |  |  | 							&& interval  | 
					
						
							|  |  |  | 							&& this.__auto_save_config_timer == null){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						var runner = function(){ | 
					
						
							|  |  |  | 							clearTimeout(that.__auto_save_config_timer) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							//that.logger && that.logger.emit('config', 'saving to local storage...')
 | 
					
						
							|  |  |  | 							that.storeConfig() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							var interval = that.config['config-auto-save-local-storage-interval'] | 
					
						
							|  |  |  | 							if(!interval){ | 
					
						
							|  |  |  | 								delete that.__auto_save_config_timer | 
					
						
							|  |  |  | 								return | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							interval *= 1000 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							that.__auto_save_config_timer = setTimeout(runner, interval) | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						runner() | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			'running')], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ConfigLocalStorage =  | 
					
						
							|  |  |  | module.ConfigLocalStorage = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'config-local-storage', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2016-03-29 07:34:49 +03:00
										 |  |  | 	priority: 80, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-31 10:37:21 +03:00
										 |  |  | 	isApplicable: function(){  | 
					
						
							|  |  |  | 		return typeof(localStorage) != 'undefined'  | 
					
						
							|  |  |  | 			&& localStorage != null }, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	actions: ConfigLocalStorageActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// NOTE: considering that allot depends on this it must be 
 | 
					
						
							|  |  |  | 		// 		first to run...
 | 
					
						
							|  |  |  | 		['start.pre', | 
					
						
							|  |  |  | 			function(){  | 
					
						
							| 
									
										
										
										
											2016-11-05 19:30:04 +03:00
										 |  |  | 				this.logger && this.logger | 
					
						
							|  |  |  | 					.push('Startup') | 
					
						
							|  |  |  | 						.emit('loaded', 'config') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				this | 
					
						
							|  |  |  | 					.loadStoredConfig()  | 
					
						
							|  |  |  | 					.toggleAutoStoreConfig('on') | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['stop.pre', | 
					
						
							|  |  |  | 			function(){  | 
					
						
							| 
									
										
										
										
											2016-11-05 19:30:04 +03:00
										 |  |  | 				this.logger && this.logger | 
					
						
							|  |  |  | 					.push('Shutdown') | 
					
						
							|  |  |  | 						.emit('stored', 'config') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				this | 
					
						
							|  |  |  | 					.storeConfig()  | 
					
						
							|  |  |  | 					.toggleAutoStoreConfig('off') | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // XXX make this work for external links in a stable manner...
 | 
					
						
							|  |  |  | // 		...a bit unpredictable when working in combination with history
 | 
					
						
							|  |  |  | // 		feature -- need to stop them from competing...
 | 
					
						
							|  |  |  | // 		...appears to be a bug in location....
 | 
					
						
							|  |  |  | var URLHash =  | 
					
						
							|  |  |  | module.URLHash = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: 'Handle URL hash', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-url-hash', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//isApplicable: function(){ 
 | 
					
						
							|  |  |  | 	//	return typeof(location) != 'undefined' && location.hash != null },
 | 
					
						
							|  |  |  | 	isApplicable: function(){ return this.runtime == 'browser' }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// hanlde window.onhashchange event...
 | 
					
						
							|  |  |  | 		['start', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				var handler = this.__hashchange_handler = function(){ | 
					
						
							|  |  |  | 					var h = location.hash | 
					
						
							|  |  |  | 					h = h.replace(/^#/, '') | 
					
						
							|  |  |  | 					that.current = h | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				$(window).on('hashchange', handler) | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['stop', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.__hashchange_handler  | 
					
						
							|  |  |  | 					&& $(window).on('hashchange', this.__hashchange_handler) | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		// store/restore hash when we focus images...
 | 
					
						
							|  |  |  | 		['focusImage', | 
					
						
							|  |  |  | 			function(res, a){ | 
					
						
							|  |  |  | 				if(this.current && this.current != ''){ | 
					
						
							|  |  |  | 					location.hash = this.current | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['load.pre', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				var h = location.hash | 
					
						
							|  |  |  | 				h = h.replace(/^#/, '') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return function(){ | 
					
						
							|  |  |  | 					if(h != '' && this.data.getImageOrder(h) >= 0){ | 
					
						
							|  |  |  | 						this.current = h | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Mouse...
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | // NOTE: for legacy stuff see: features/ui-legacy.js
 | 
					
						
							| 
									
										
										
										
											2015-12-17 09:14:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // NOTE: removing the prop 'cursor-autohide' will stop hiding the cursor
 | 
					
						
							|  |  |  | // 		and show it on next timeout/mousemove.
 | 
					
						
							|  |  |  | // 		This will not stop watching the cursor, this setting the prop back
 | 
					
						
							|  |  |  | // 		on will re-enable autohide.
 | 
					
						
							|  |  |  | // NOTE: chrome 49 + devtools open appears to prevent the cursor from 
 | 
					
						
							|  |  |  | // 		being hidden...
 | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | var Cursor =  | 
					
						
							|  |  |  | module.Cursor = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 	tag: 'ui-cursor', | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui' | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2017-01-11 21:08:29 +03:00
										 |  |  | 		'cursor-autohide-ignore-keys': [ | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 			'shift', 'ctrl', 'alt', 'meta',  | 
					
						
							|  |  |  | 			'F5', | 
					
						
							| 
									
										
										
										
											2017-01-11 21:08:29 +03:00
										 |  |  | 		], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 		'cursor-autohide': 'on', | 
					
						
							| 
									
										
										
										
											2017-01-11 20:27:40 +03:00
										 |  |  | 		'cursor-autohide-on-timeout': 'off', | 
					
						
							|  |  |  | 		'cursor-autohide-on-keyboard': 'on', | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'cursor-show-threshold': 10, | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'cursor-autohide-timeout': 1000, | 
					
						
							|  |  |  | 		'cursor-keyboard-hide-timeout': 200, | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: actions.Actions({ | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 		toggleHiddenCursor: ['Interface/Cursor hidden', | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 			toggler.CSSClassToggler( | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 				function(){ return this.dom },  | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 				'cursor-hidden', | 
					
						
							|  |  |  | 				function(state){ | 
					
						
							|  |  |  | 					var that = this | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 					var viewer = this.dom | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 					if(state == 'on'){ | 
					
						
							|  |  |  | 						var x, y | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						// auto-show -- on mouse move greater than threshold...
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 						var handler  | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 							= this.__cursor_show_handler  | 
					
						
							|  |  |  | 							= (this.__cursor_show_handler  | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 								|| function(){ | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 									var threshold = that.config['cursor-show-threshold'] || 0 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 									x = x || event.clientX | 
					
						
							|  |  |  | 									y = y || event.clientY | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 									// show only if cursor moved outside of threshold...
 | 
					
						
							|  |  |  | 									if(threshold > 0){  | 
					
						
							|  |  |  | 										if(Math.max(Math.abs(x - event.clientX),  | 
					
						
							|  |  |  | 												Math.abs(y - event.clientY)) > threshold){ | 
					
						
							|  |  |  | 											x = y = null | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 											that.toggleHiddenCursor('off') | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 										} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									// show right away -- no threshold...
 | 
					
						
							|  |  |  | 									} else { | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 										that.toggleHiddenCursor('off') | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 									} | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 								}) | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						viewer | 
					
						
							|  |  |  | 							// hide the cursor...
 | 
					
						
							|  |  |  | 							.addClass('cursor-hidden') | 
					
						
							|  |  |  | 							// reset handler...
 | 
					
						
							|  |  |  | 							.off('mousemove', handler) | 
					
						
							|  |  |  | 							.mousemove(handler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// show...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						viewer | 
					
						
							|  |  |  | 							.removeClass('cursor-hidden') | 
					
						
							|  |  |  | 							.off('mousemove', this.__cursor_show_handler) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				})], | 
					
						
							| 
									
										
										
										
											2017-01-13 06:44:18 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Toggle global auto-hiding the cursor...
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// The cursor can hidden by the following user actions:
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// 	- keyboard activity
 | 
					
						
							|  |  |  | 		// 		toggled by: 
 | 
					
						
							|  |  |  | 		// 			.toggleAutoHideCursorKeyboard(..)
 | 
					
						
							|  |  |  | 		// 		hide delay is set by:
 | 
					
						
							|  |  |  | 		// 			.config['cursor-keyboard-hide-timeout']
 | 
					
						
							|  |  |  | 		// 		list of keys that will not hide the cursor is set via:
 | 
					
						
							|  |  |  | 		// 			.config['cursor-autohide-ignore-keys']
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// 	- mouse inactivity
 | 
					
						
							|  |  |  | 		// 		toggled by:
 | 
					
						
							|  |  |  | 		// 			.toggleAutoHideCursorTimeout(..)
 | 
					
						
							|  |  |  | 		// 		inactivity period (timeout) is set by:
 | 
					
						
							|  |  |  | 		// 			.config['cursor-autohide-timeout']
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// Moving the mouse will prevent it from being hidden by either
 | 
					
						
							|  |  |  | 		// action.
 | 
					
						
							|  |  |  | 		// The amount of movement required (threshold in pixels):
 | 
					
						
							|  |  |  | 		// 	.config['cursor-show-threshold']
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 		toggleAutoHideCursor: ['Interface/Cursor auto-hide', | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 			toggler.CSSClassToggler( | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 				function(){ return this.dom },  | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 				'cursor-autohide', | 
					
						
							|  |  |  | 				function(state){ | 
					
						
							|  |  |  | 					var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 					var viewer = this.dom | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 					// NOTE: this is handled by the keyboard feature...
 | 
					
						
							|  |  |  | 					var kb_target = this.__keyboard_event_source || $(window) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.config['cursor-autohide'] = state | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// setup...
 | 
					
						
							|  |  |  | 					if(state == 'on'){ | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 						var m_timer | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						var timeout =  | 
					
						
							| 
									
										
										
										
											2017-01-11 20:27:40 +03:00
										 |  |  | 							that.toggleAutoHideCursorTimeout('?') == 'on' ? | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 								(that.config['cursor-autohide-timeout'] || 1000) | 
					
						
							|  |  |  | 								: -1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// hide on timeout...
 | 
					
						
							|  |  |  | 						var mouse_handler  | 
					
						
							|  |  |  | 							= this.__cursor_autohide_mouse_handler  | 
					
						
							|  |  |  | 							= (this.__cursor_autohide_mouse_handler  | 
					
						
							|  |  |  | 								|| function(){ | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 									m_timer && clearTimeout(m_timer) | 
					
						
							|  |  |  | 									kb_timer && clearTimeout(kb_timer) | 
					
						
							|  |  |  | 									kb_timer = null | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 									// hide on timeout...
 | 
					
						
							|  |  |  | 									var timeout =  | 
					
						
							| 
									
										
										
										
											2017-01-11 20:27:40 +03:00
										 |  |  | 										that.toggleAutoHideCursorTimeout('?') == 'on' ? | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 											(that.config['cursor-autohide-timeout'] || 1000) | 
					
						
							|  |  |  | 											: -1 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 									if(timeout && timeout > 0){ | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 										m_timer = setTimeout(function(){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 											var viewer = that.dom | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 											// auto-hide is off -- restore...
 | 
					
						
							|  |  |  | 											if(!viewer.hasClass('cursor-autohide')){ | 
					
						
							|  |  |  | 												that.toggleHiddenCursor('off')  | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 												return | 
					
						
							|  |  |  | 											} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 											m_timer && that.toggleHiddenCursor('on')  | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 										}, timeout) | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						// hide on key...
 | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 						var kb_timer | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						var key_handler  | 
					
						
							|  |  |  | 							= this.__cursor_autohide_key_handler  | 
					
						
							|  |  |  | 							= (this.__cursor_autohide_key_handler  | 
					
						
							| 
									
										
										
										
											2017-01-11 21:08:29 +03:00
										 |  |  | 								|| function(evt){ | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 									// prevent creating more than one timer at a time...
 | 
					
						
							|  |  |  | 									if(kb_timer){ | 
					
						
							|  |  |  | 										return true | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 									} | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 									// avoid this from delaying the keyboard handler...
 | 
					
						
							|  |  |  | 									kb_timer = setTimeout(function(){ | 
					
						
							|  |  |  | 										kb_timer = null | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 										var viewer = that.dom | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 										// get key...
 | 
					
						
							|  |  |  | 										var key = keyboard.normalizeKey( | 
					
						
							|  |  |  | 												keyboard.event2key(evt)) | 
					
						
							|  |  |  | 											.join('+') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 										// auto-hide is off -- restore...
 | 
					
						
							|  |  |  | 										if(!viewer.hasClass('cursor-autohide')){ | 
					
						
							|  |  |  | 											that.toggleHiddenCursor('off')  | 
					
						
							|  |  |  | 											return | 
					
						
							|  |  |  | 										} | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 										// hide if mode is on and non-ignored key...
 | 
					
						
							|  |  |  | 										(that.config['cursor-autohide-ignore-keys']  | 
					
						
							|  |  |  | 												|| []).indexOf(key) < 0 | 
					
						
							|  |  |  | 											&& that.toggleAutoHideCursorKeyboard('?') == 'on' | 
					
						
							|  |  |  | 											&& that.toggleHiddenCursor('on') | 
					
						
							|  |  |  | 									}, that.config['cursor-keyboard-hide-timeout'] || 15) | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 									return true | 
					
						
							|  |  |  | 								}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 						// do the base setup...
 | 
					
						
							|  |  |  | 						!viewer.prop('cursor-autohide') | 
					
						
							|  |  |  | 							&& viewer | 
					
						
							|  |  |  | 								// prevent multiple handlers...
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 								.off('mousemove', this.__cursor_autohide_mouse_handler) | 
					
						
							|  |  |  | 								.on('mousemove', mouse_handler) | 
					
						
							|  |  |  | 							&& kb_target  | 
					
						
							|  |  |  | 								.on('keydown', key_handler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// hide the cursor right away only if timeout is set...
 | 
					
						
							|  |  |  | 						timeout  | 
					
						
							|  |  |  | 							&& timeout > 0  | 
					
						
							|  |  |  | 							&& this.toggleHiddenCursor('on') | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// teardown...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						this.__cursor_autohide_mouse_handler | 
					
						
							|  |  |  | 							&& viewer | 
					
						
							|  |  |  | 								.off('mousemove', this.__cursor_autohide_mouse_handler) | 
					
						
							|  |  |  | 						delete this.__cursor_autohide_mouse_handler | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						this.__cursor_autohide_key_handler | 
					
						
							|  |  |  | 							&& kb_target  | 
					
						
							|  |  |  | 								.off('keydown', this.__cursor_autohide_key_handler) | 
					
						
							|  |  |  | 						delete this.__cursor_autohide_key_handler | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						this.toggleHiddenCursor('off') | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				})], | 
					
						
							| 
									
										
										
										
											2017-01-13 06:35:11 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 		toggleAutoHideCursorTimeout: ['Interface/Hide cursor on timeout', | 
					
						
							|  |  |  | 			core.makeConfigToggler('cursor-autohide-on-timeout',  | 
					
						
							|  |  |  | 				['on', 'off'], | 
					
						
							|  |  |  | 				function(){ this.toggleAutoHideCursor('!') })], | 
					
						
							| 
									
										
										
										
											2017-01-11 20:27:40 +03:00
										 |  |  | 		toggleAutoHideCursorKeyboard: ['Interface/Hide cursor on keyboard', | 
					
						
							|  |  |  | 			core.makeConfigToggler('cursor-autohide-on-keyboard',  | 
					
						
							|  |  |  | 				['on', 'off'], | 
					
						
							|  |  |  | 				function(){ this.toggleAutoHideCursor('!') })], | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	}), | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['start', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.toggleAutoHideCursor(this.config['cursor-autohide'] || 'on') }], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-26 23:58:52 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Lock mouse when unfocused...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var LockUnfocusedActions = actions.Actions({ | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'lock-unfocused': 'on', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// The timeout to wait after window focus before setting .focused 
 | 
					
						
							|  |  |  | 		// to true.
 | 
					
						
							|  |  |  | 		'window-focus-timeout': 200, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Focus...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// This is true when window is focused and false when not + 200ms 
 | 
					
						
							|  |  |  | 	// after focusing.
 | 
					
						
							|  |  |  | 	// This enables the used to ignore events that lead to window focus.
 | 
					
						
							|  |  |  | 	get focused(){ | 
					
						
							|  |  |  | 		return that.dom.find('.lock-clicks').length > 0 }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	toggleUnfocusedLock: ['Interface/Lock unfocused viewer', | 
					
						
							|  |  |  | 		core.doc`Toggle unfocused viewer locking...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this defines the handlers on window.`,
 | 
					
						
							|  |  |  | 		core.makeConfigToggler('lock-unfocused', | 
					
						
							|  |  |  | 			['off', 'on'], | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				var handlers = this.__focus_lock_handlers = this.__focus_lock_handlers || {} | 
					
						
							|  |  |  | 				var unlock = handlers.unlock = handlers.unlock | 
					
						
							|  |  |  | 					|| function(){  | 
					
						
							|  |  |  | 						setTimeout(function(){  | 
					
						
							|  |  |  | 							that.dom.find('.lock-clicks').remove()  | 
					
						
							|  |  |  | 						}, that.config['window-focus-timeout'] || 0) } | 
					
						
							|  |  |  | 				var lock = handlers.lock = handlers.lock | 
					
						
							|  |  |  | 					|| function(){ | 
					
						
							|  |  |  | 						that.dom.find('.lock-clicks').length == 0 | 
					
						
							|  |  |  | 							&& that.dom | 
					
						
							|  |  |  | 								.append($('<div>') | 
					
						
							|  |  |  | 									.addClass('lock-clicks') | 
					
						
							|  |  |  | 									.on('click contextmenu',function(evt){ | 
					
						
							|  |  |  | 										evt.stopPropagation() | 
					
						
							|  |  |  | 										evt.preventDefault() | 
					
						
							|  |  |  | 									})) } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// we reset the handlers to avoid multiple triggers...
 | 
					
						
							|  |  |  | 				$(window) | 
					
						
							|  |  |  | 					.off('focus', unlock) | 
					
						
							|  |  |  | 					.off('blur', lock) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// setup...
 | 
					
						
							|  |  |  | 				if(state == 'on'){ | 
					
						
							|  |  |  | 					$(window) | 
					
						
							|  |  |  | 						.focus(unlock) | 
					
						
							|  |  |  | 						.blur(lock) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// setup initial state...
 | 
					
						
							|  |  |  | 					document.hasFocus() ? unlock() : lock() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// tare down...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					unlock() | 
					
						
							|  |  |  | 					delete this.__focus_lock_handlers | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			})], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var LockUnfocused =  | 
					
						
							|  |  |  | module.LockUnfocused = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-unfocused-lock', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui' | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: LockUnfocusedActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['start', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.toggleUnfocusedLock('!') }], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Touch/Control...
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //	.__control_in_progress
 | 
					
						
							|  |  |  | // 		Long interactions can set .__control_in_progress a number while 
 | 
					
						
							|  |  |  | // 		in progress and remove it when done.
 | 
					
						
							|  |  |  | // 		Each new interaction should increment this when starting and 
 | 
					
						
							|  |  |  | // 		decrement when done.
 | 
					
						
							|  |  |  | // 		This should be removed when 0
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | // 		This is to enable other events to handle the situation gracefully
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 		XXX how should multiple long interactions be handled??
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | // 		XXX revise...
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2017-05-20 03:59:11 +03:00
										 |  |  | // NOTE: modifies .ribbons -- event handlers, attrs, classes... (XXX)
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | // NOTE: for legacy stuff see: features/ui-legacy.js
 | 
					
						
							| 
									
										
										
										
											2017-04-05 18:48:24 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | // XXX add option to block click actions on focus...
 | 
					
						
							|  |  |  | // 		...this is already done in widget.overlay, but I think should be
 | 
					
						
							|  |  |  | // 		system-wide...
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | // XXX STUB: needs more thought.... 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | var ControlActions = actions.Actions({ | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'control-mode': 'indirect', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// This can be:
 | 
					
						
							|  |  |  | 		// 	'silent'	- silently focus central image after pan
 | 
					
						
							|  |  |  | 		// 	true		- focus central image after pan
 | 
					
						
							|  |  |  | 		// 	null		- do nothing.
 | 
					
						
							|  |  |  | 		'focus-central-image': 'silent', | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'ribbon-pan-threshold': 30, | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 		'control-in-progress-timeout': 100, | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'animation-frame-renderer': true, | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// if true and ribbon is panned off screen, the image will be 
 | 
					
						
							|  |  |  | 		// centered, else behave just like partially off screen...
 | 
					
						
							|  |  |  | 		'center-off-screen-paned-images': false, | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'mouse-wheel-scale': 0.5, | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 	// Image click events...
 | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 	imageOuterBlockClick: ['- Interface/Image outer block click event', | 
					
						
							|  |  |  | 		core.doc`Image outer block click event
 | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 		This is triggered on click on an image block but outside of the | 
					
						
							|  |  |  | 		actual image. | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 		imageBlockClick event is triggered and run between the .pre()/.post() | 
					
						
							|  |  |  | 		stages of this event. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		imageClick is not triggered. | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 		NOTE: this does not account for animation. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid, x, y){ | 
					
						
							|  |  |  | 			// This is image clicked event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 	imageBlockClick: ['- Interface/Image block click event', | 
					
						
							|  |  |  | 		core.doc`Image block click event
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 		This is triggered on any click on an image block. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		imageClick event if triggered is run between the .pre()/.post() | 
					
						
							|  |  |  | 		stages of this event. | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		The .pre(..) stage of the event is called before the clicked  | 
					
						
							|  |  |  | 		image is focused and the .post(..) stage is called after focusing | 
					
						
							|  |  |  | 		is done. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 		NOTE: this does not account for animation. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid, x, y){ | 
					
						
							|  |  |  | 			// This is image clicked event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 	imageClick: ['- Interface/Image click event', | 
					
						
							|  |  |  | 		core.doc`Image click event
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 		This is triggered only if the click/tap is made within the actual  | 
					
						
							|  |  |  | 		image. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 		The .pre(..) stage of the event is called before the clicked  | 
					
						
							|  |  |  | 		image is focused and the .post(..) stage is called after focusing | 
					
						
							|  |  |  | 		is done. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this does not account for animation. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 		core.notUserCallable(function(gid, x, y){ | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 			// This is image clicked event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 	// Image menu events...
 | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: these will not focus an image...
 | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 	imageOuterBlockMenu: ['- Interface/Image outer block menu event', | 
					
						
							|  |  |  | 		core.doc`Image outer block menu event
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 		This is triggered on menu on an image block but outside of the | 
					
						
							|  |  |  | 		actual image. | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 		imageBlockMenu event is triggered and run between the .pre()/.post() | 
					
						
							|  |  |  | 		stages of this event. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		imageMenu is not triggered. | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this does not account for animation. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid, x, y){ | 
					
						
							|  |  |  | 			// This is image clicked event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 	imageBlockMenu: ['- Interface/Image block menu event', | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 		core.doc`Image block menu event
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 		This is triggered on any click on an image block. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		imageMenu event if triggered is run between the .pre()/.post() | 
					
						
							|  |  |  | 		stages of this event. | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this does not account for animation. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid, x, y){ | 
					
						
							|  |  |  | 			// This is image clicked event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 	imageMenu: ['- Interface/Image menu event', | 
					
						
							|  |  |  | 		core.doc`Image menu event
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		This is triggered only if the click/tap is made within the actual  | 
					
						
							|  |  |  | 		image. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this does not account for animation. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid, x, y){ | 
					
						
							|  |  |  | 			// This is image clicked event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-05 18:46:58 +03:00
										 |  |  | 	// XXX do not do anything on viewer focus... (???)
 | 
					
						
							| 
									
										
										
										
											2017-05-16 02:06:09 +03:00
										 |  |  | 	// XXX depends on .ribbons...
 | 
					
						
							| 
									
										
										
										
											2017-07-29 21:39:47 +03:00
										 |  |  | 	// XXX uses: .focusImage(..)
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleImageClickHandling: ['Interface/Image click handling', | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 		toggler.Toggler(null, | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 			function(_, new_state){  | 
					
						
							|  |  |  | 				return new_state ? | 
					
						
							|  |  |  | 						// NOTE: we are not setting the state here, so
 | 
					
						
							|  |  |  | 						// 		nothing to do...
 | 
					
						
							|  |  |  | 						null | 
					
						
							|  |  |  | 					: (this.ribbons  | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 							&& this.dom  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 							//&& this.ribbons.getRibbon().data('hammer') ? 'handling-click' : 'none' },
 | 
					
						
							|  |  |  | 							&& this.ribbons.getRibbon().hasClass('clickable')) ?  | 
					
						
							| 
									
										
										
										
											2017-01-11 20:03:33 +03:00
										 |  |  | 						'handling-click'  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 					: 'none' }, | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 			'handling-click', | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var setup = this.__click_handler_setup = this.__click_handler_setup  | 
					
						
							|  |  |  | 					|| function(_, target){ | 
					
						
							|  |  |  | 						var r = that.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 						if(r.length > 0 && !r.hasClass('clickable')){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							r.data('hammer') == null  | 
					
						
							|  |  |  | 								&& r.hammer() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							r | 
					
						
							|  |  |  | 								.addClass('clickable') | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 								.on('contextmenu', menuHandler) | 
					
						
							|  |  |  | 								.on('tap', tapHandler) | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								.data('hammer') | 
					
						
							|  |  |  | 									.get('tap') | 
					
						
							|  |  |  | 										.set({ | 
					
						
							|  |  |  | 											//interval: 1,
 | 
					
						
							|  |  |  | 											time: 500, | 
					
						
							|  |  |  | 										}) | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				var isImageClicked = function(event, img){ | 
					
						
							|  |  |  | 					var img = img || $(event.target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// sanity check: only handle clicks on images...
 | 
					
						
							|  |  |  | 					if(!img.hasClass('image')){ | 
					
						
							|  |  |  | 						return false | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 					// get the offset within the image...
 | 
					
						
							|  |  |  | 					// NOTE: this does not account for border width, this
 | 
					
						
							|  |  |  | 					// 		clicks on the top/left border will result in 
 | 
					
						
							|  |  |  | 					// 		negative values...
 | 
					
						
							|  |  |  | 					var x = event.offsetX | 
					
						
							|  |  |  | 					var y = event.offsetY | 
					
						
							|  |  |  | 					var W = img[0].offsetWidth | 
					
						
							|  |  |  | 					var H = img[0].offsetHeight | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// get preview size...
 | 
					
						
							|  |  |  | 					// NOTE: this is not normalized to image block size...
 | 
					
						
							|  |  |  | 					// NOTE: we do not need to account for orientation 
 | 
					
						
							|  |  |  | 					// 		because the margins will take care of it for
 | 
					
						
							|  |  |  | 					// 		us...
 | 
					
						
							|  |  |  | 					// 		XXX not fully sure if the reason here is
 | 
					
						
							|  |  |  | 					// 			correct, but the thing works...
 | 
					
						
							|  |  |  | 					var w = img.attr('preview-width') | 
					
						
							|  |  |  | 					var h = img.attr('preview-height') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// normalize preview size to image block size...
 | 
					
						
							|  |  |  | 					var s = Math.min(W/w, H/h) | 
					
						
							|  |  |  | 					w *= s | 
					
						
							|  |  |  | 					h *= s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// preview offsets within the block...
 | 
					
						
							|  |  |  | 					// NOTE: this assumes the image is centered...
 | 
					
						
							|  |  |  | 					var dw = (W-w)/2 | 
					
						
							|  |  |  | 					var dh = (H-h)/2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// check if we clicked the image...
 | 
					
						
							|  |  |  | 					// NOTE: this assumes the image is centered...
 | 
					
						
							|  |  |  | 					return (x >= dw && x <= W-dw) | 
					
						
							|  |  |  | 						&& (y >= dh && y <= H-dh) | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 				var makeImageHandler = function(outerBlockEvt, blockEvt, imageEvt, focus){ | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 					return function(){ | 
					
						
							|  |  |  | 						var img = img || $(event.target) | 
					
						
							|  |  |  | 						var gid = that.ribbons.elemGID(img) | 
					
						
							| 
									
										
										
										
											2017-03-09 03:44:09 +03:00
										 |  |  | 						var x = event.offsetX | 
					
						
							|  |  |  | 						var y = event.offsetY | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						var clicked_image = isImageClicked(event, img) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						var inner = function(){ | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 							focus ? | 
					
						
							|  |  |  | 								that[blockEvt] | 
					
						
							|  |  |  | 									.chainCall(that,  | 
					
						
							|  |  |  | 										function(){  | 
					
						
							|  |  |  | 											clicked_image ? | 
					
						
							|  |  |  | 												// trigger this only if we clicked
 | 
					
						
							|  |  |  | 												// within the image...
 | 
					
						
							|  |  |  | 												that[imageEvt] | 
					
						
							|  |  |  | 													.chainCall(that,  | 
					
						
							|  |  |  | 														function(){ that.focusImage(gid) },  | 
					
						
							|  |  |  | 														gid, x, y) | 
					
						
							|  |  |  | 												: that.focusImage(gid) | 
					
						
							|  |  |  | 										}, | 
					
						
							|  |  |  | 										gid, x, y) | 
					
						
							|  |  |  | 								: that[blockEvt] | 
					
						
							|  |  |  | 									.chainCall(that,  | 
					
						
							|  |  |  | 										function(){  | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 											// trigger this only if we clicked
 | 
					
						
							|  |  |  | 											// within the image...
 | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 											clicked_image | 
					
						
							|  |  |  | 												&& that[imageEvt](gid, x, y) | 
					
						
							|  |  |  | 										}, | 
					
						
							|  |  |  | 										gid, x, y) | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						!clicked_image ? | 
					
						
							|  |  |  | 							that[outerBlockEvt].chainCall(that, inner, gid, x, y) | 
					
						
							|  |  |  | 							: inner() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 				// the main handlers...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				var tapHandler = setup.tapHandler = setup.tapHandler  | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 					|| makeImageHandler('imageOuterBlockClick', 'imageBlockClick', 'imageClick', true) | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				var menuHandler = setup.menuHandler = setup.menuHandler  | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 					|| makeImageHandler('imageOuterBlockMenu', 'imageBlockMenu', 'imageMenu', false) | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// on...
 | 
					
						
							|  |  |  | 				if(state == 'on'){ | 
					
						
							|  |  |  | 					this.off('updateRibbon', setup) | 
					
						
							|  |  |  | 					this.on('updateRibbon', setup) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							|  |  |  | 						setup.call(this, null, gid) | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// off...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this.off('updateRibbon', setup) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							|  |  |  | 						var r = that.ribbons.getRibbon(gid) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// XXX
 | 
					
						
							|  |  |  | 						//var h = r.data('hammer')
 | 
					
						
							|  |  |  | 						//h && h.destroy()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						r | 
					
						
							|  |  |  | 							.removeClass('clickable') | 
					
						
							|  |  |  | 							// XXX this does not remove the hammer trigger
 | 
					
						
							|  |  |  | 							// 		...just the jQuery handler is cleared
 | 
					
						
							|  |  |  | 							.off('tap') | 
					
						
							| 
									
										
										
										
											2017-08-24 01:14:36 +03:00
										 |  |  | 							.off('contextmenu', menuHandler) | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 							//.removeData('hammer')
 | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-02 01:23:33 +03:00
										 |  |  | 	// XXX revise name...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 02:06:09 +03:00
										 |  |  | 	// XXX depends on .ribbons...
 | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 	makeRibbonVisible: ['- Interface/Make ribbon visible if it is off screen', | 
					
						
							|  |  |  | 		function(target, center_off_screen){ | 
					
						
							|  |  |  | 			var r = this.ribbons.getRibbon(target) | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 			var rgid = this.ribbons.elemGID(r) | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var central = this.ribbons.getImageByPosition('center', r) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var rl = r.offset().left | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-07 03:05:31 +03:00
										 |  |  | 			if(!center_off_screen && central == null){ | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 				var gid = this.data.getImage(rl < 0 ? -1 : 0, rgid) | 
					
						
							|  |  |  | 				var central = this.ribbons.getImage(gid) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var cl = central && central.offset().left | 
					
						
							|  |  |  | 			var w = central && central.outerWidth(true) | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 			var W = this.dom.width() | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 			var vmin = Math.min( | 
					
						
							|  |  |  | 				document.body.offsetWidth,  | 
					
						
							|  |  |  | 				document.body.offsetHeight) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// check if central if off screen, if yes, 
 | 
					
						
							|  |  |  | 			// nudge it into user-accessible area...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// we are fully off screen -- focus first/last image...
 | 
					
						
							|  |  |  | 			if(central == null){ | 
					
						
							|  |  |  | 				var gid = this.data.getImage(rl < 0 ? -1 : 0, rgid) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.centerImage(gid) | 
					
						
							|  |  |  | 				central = this.ribbons.getImage(gid) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// partly out the left -- show last image...
 | 
					
						
							|  |  |  | 			} else if(cl < 0){ | 
					
						
							|  |  |  | 				var s = this.scale | 
					
						
							|  |  |  | 				r.transform({  | 
					
						
							|  |  |  | 					x: (parseFloat((r.transform('translate3d') || [0])[0])  | 
					
						
							|  |  |  | 						- ((cl / s) / vmin * 100)) + 'vmin' | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// partly out the right -- show first image...
 | 
					
						
							|  |  |  | 			} else if(cl + w > W){ | 
					
						
							|  |  |  | 				var s = this.scale | 
					
						
							|  |  |  | 				r.transform({ | 
					
						
							|  |  |  | 					x: (parseFloat((r.transform('translate3d') || [0])[0])  | 
					
						
							|  |  |  | 						+ (((W - (cl + w)) / s) / vmin * 100)) + 'vmin' | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// load stuff if needed...
 | 
					
						
							|  |  |  | 			this.updateRibbon(central) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 	// Ribbon pan "event"...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Protocol:
 | 
					
						
							|  |  |  | 	// 	- pre phase is called when pan is started.
 | 
					
						
							|  |  |  | 	//	- post phase is called when pan is finished.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// This is not intended to be called by user, instead it is 
 | 
					
						
							|  |  |  | 	// internally called by the pan handler.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: more than one ribbon can be panned at once.
 | 
					
						
							|  |  |  | 	ribbonPanning: ['- Interface/', | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid){ | 
					
						
							|  |  |  | 			// This is ribbon pan event...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 	// XXX still a bit lagging behind in chrome -- can we go faster??
 | 
					
						
							| 
									
										
										
										
											2016-05-20 16:54:51 +03:00
										 |  |  | 	// 		...appears similar to iScroll on chrome on desktop...
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 	// XXX this is really slow/buggy on IE... 
 | 
					
						
							|  |  |  | 	// 		...found the problem, need to disable transitions for this 
 | 
					
						
							|  |  |  | 	// 		to work semi smoothly...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 02:06:09 +03:00
										 |  |  | 	// XXX depends on .ribbons...
 | 
					
						
							| 
									
										
										
										
											2017-07-29 21:39:47 +03:00
										 |  |  | 	// XXX uses: .focusImage(..)
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleRibbonPanHandling: ['Interface/Ribbon pan handling', | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 		toggler.Toggler(null, | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 			function(_, new_state){  | 
					
						
							|  |  |  | 				return new_state ? | 
					
						
							|  |  |  | 						// NOTE: we are not setting the state here, so there's 
 | 
					
						
							|  |  |  | 						// 		nothing to do...
 | 
					
						
							|  |  |  | 						null | 
					
						
							|  |  |  | 					: (this.ribbons  | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 							&& this.dom  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 							&& this.ribbons.getRibbon().hasClass('draggable')) ?   | 
					
						
							|  |  |  | 						'handling-pan'  | 
					
						
							|  |  |  | 					: 'none' }, | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 			'handling-pan', | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// render framework...
 | 
					
						
							|  |  |  | 				// XXX make this global to handle other stuff...
 | 
					
						
							|  |  |  | 				// XXX does this offer any real advantages???
 | 
					
						
							|  |  |  | 				var render_data = {} | 
					
						
							|  |  |  | 				var render = function(){ | 
					
						
							|  |  |  | 					for(var rgid in render_data){ | 
					
						
							|  |  |  | 						var r = render_data[rgid] | 
					
						
							|  |  |  | 						delete render_data[rgid] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						r.ribbon.transform({ x: r.x }) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					renderer = requestAnimationFrame(render) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				var renderer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 				var stop_scroll = this.__scroll_prevnter = this.__scroll_prevnter  | 
					
						
							|  |  |  | 					|| function(evt){ evt.preventDefault() } | 
					
						
							|  |  |  | 				var setup = this.__pan_handler_setup = this.__pan_handler_setup  | 
					
						
							|  |  |  | 					|| function(_, target){ | 
					
						
							|  |  |  | 						// XXX
 | 
					
						
							|  |  |  | 						var that = this | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 						var r = this.ribbons.getRibbon(target) | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 						var rgid = this.ribbons.elemGID(r) | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 						var data = false | 
					
						
							|  |  |  | 						var post_handlers | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 						// setup dragging...
 | 
					
						
							|  |  |  | 						if(r.length > 0 && !r.hasClass('draggable')){ | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 							r.data('hammer') == null  | 
					
						
							|  |  |  | 								&& r.hammer() | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 							r | 
					
						
							|  |  |  | 								.addClass('draggable') | 
					
						
							|  |  |  | 								.data('hammer') | 
					
						
							|  |  |  | 									.get('pan') | 
					
						
							|  |  |  | 										.set({ | 
					
						
							|  |  |  | 											direction: Hammer.DIRECTION_HORIZONTAL, | 
					
						
							|  |  |  | 											threshold: this.config['ribbon-pan-threshold'], | 
					
						
							|  |  |  | 										}) | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 							r.on('touchmove mousemove', stop_scroll) | 
					
						
							|  |  |  | 							r.on('pan', function(evt){ | 
					
						
							|  |  |  | 								//evt.stopPropagation()
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								// XXX stop all previous animations...
 | 
					
						
							|  |  |  | 								//r.velocity("stop")
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								var d = that.ribbons.dom | 
					
						
							|  |  |  | 								var g = evt.gesture | 
					
						
							|  |  |  | 								var s = that.scale | 
					
						
							|  |  |  | 								var vmin = Math.min(document.body.offsetWidth, document.body.offsetHeight) | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								// we just started...
 | 
					
						
							|  |  |  | 								if(!data){ | 
					
						
							|  |  |  | 									that.__control_in_progress = (that.__control_in_progress || 0) + 1 | 
					
						
							|  |  |  | 									post_handlers = that.ribbonPanning.pre(that, [rgid]) | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 									// XXX prevent IE from fighting transitions...
 | 
					
						
							|  |  |  | 									that.ribbons.preventTransitions(r) | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 									// store initial position...
 | 
					
						
							|  |  |  | 									data = { | 
					
						
							|  |  |  | 										//left: d.getOffset(this).left,
 | 
					
						
							|  |  |  | 										left: parseFloat(($(this).transform('translate3d') || [0])[0])/100 * vmin, | 
					
						
							|  |  |  | 										pointers: g.pointers.length, | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 									// restart the renderer...
 | 
					
						
							|  |  |  | 									renderer = renderer && cancelAnimationFrame(renderer) | 
					
						
							|  |  |  | 									if(that.config['animation-frame-renderer']){ | 
					
						
							|  |  |  | 										renderer = requestAnimationFrame(render) | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								// animation frame render...
 | 
					
						
							|  |  |  | 								if(renderer){ | 
					
						
							|  |  |  | 									// queue a render...
 | 
					
						
							|  |  |  | 									render_data[rgid] = { | 
					
						
							|  |  |  | 										ribbon: r, | 
					
						
							|  |  |  | 										x: ((data.left + (g.deltaX / s)) / vmin * 100) + 'vmin', | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								// inline render...
 | 
					
						
							|  |  |  | 								} else { | 
					
						
							|  |  |  | 									// do the actual move...
 | 
					
						
							|  |  |  | 									r.transform({ | 
					
						
							|  |  |  | 										x: ((data.left + (g.deltaX / s)) / vmin * 100) + 'vmin', | 
					
						
							|  |  |  | 									}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									/* XXX this seems to offer no speed advantages  | 
					
						
							|  |  |  | 									 * 		vs. .setOffset(..) but does not play | 
					
						
							|  |  |  | 									 * 		well with .updateRibbon(..) | 
					
						
							|  |  |  | 									 * | 
					
						
							|  |  |  | 									r	 | 
					
						
							|  |  |  | 										.velocity('stop') | 
					
						
							|  |  |  | 										.velocity({  | 
					
						
							|  |  |  | 											translateX: data.left + (g.deltaX / s), | 
					
						
							|  |  |  | 											translateY: 0,  | 
					
						
							|  |  |  | 											translateZ: 0, | 
					
						
							|  |  |  | 										}, 0) | 
					
						
							|  |  |  | 									//*/
 | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								// update ribbon when "pulling" with two fingers...
 | 
					
						
							|  |  |  | 								//
 | 
					
						
							|  |  |  | 								// NOTE: this only happens when number of fingers
 | 
					
						
							|  |  |  | 								// 		changes, thus no lag should be noticeable...
 | 
					
						
							|  |  |  | 								if(g.pointers.length != data.pointers){ | 
					
						
							|  |  |  | 									data.pointers = g.pointers.length | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 									// load stuff if needed...
 | 
					
						
							|  |  |  | 									that.updateRibbon(that.ribbons.getImageByPosition('center', r)) | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 								// we are done...
 | 
					
						
							|  |  |  | 								if(g.isFinal){ | 
					
						
							|  |  |  | 									data = false | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									// XXX is this the correct way to do this???
 | 
					
						
							|  |  |  | 									requestAnimationFrame(function(){ | 
					
						
							|  |  |  | 										that.makeRibbonVisible(r,  | 
					
						
							|  |  |  | 											that.config['center-off-screen-paned-images']) | 
					
						
							|  |  |  | 										 | 
					
						
							|  |  |  | 										// XXX is this the right place for this???
 | 
					
						
							|  |  |  | 										that.ribbons.restoreTransitions(r) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 										// XXX add inertia....
 | 
					
						
							|  |  |  | 										// XXX
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 										// see if we need to change focus...
 | 
					
						
							|  |  |  | 										var current_ribbon = that.data.getRibbon() | 
					
						
							|  |  |  | 										if(current_ribbon == rgid){ | 
					
						
							|  |  |  | 											var central = that.ribbons.getImageByPosition('center', r) | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 											var gid = that.ribbons.elemGID(central) | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 											// silently focus central image...
 | 
					
						
							|  |  |  | 											if(that.config['focus-central-image'] == 'silent'){ | 
					
						
							|  |  |  | 												that.data.focusImage(gid) | 
					
						
							|  |  |  | 												that.ribbons.focusImage(that.current) | 
					
						
							|  |  |  | 												 | 
					
						
							|  |  |  | 											// focus central image in a normal manner...
 | 
					
						
							|  |  |  | 											} else if(that.config['focus-central-image']){ | 
					
						
							|  |  |  | 												that.data.focusImage(gid) | 
					
						
							|  |  |  | 												that.focusImage() | 
					
						
							|  |  |  | 											} | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 										} | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 										// this is not time-critical so do it outside the animation...
 | 
					
						
							|  |  |  | 										setTimeout(function(){ | 
					
						
							|  |  |  | 											that.ribbonPanning.post(that, post_handlers) | 
					
						
							|  |  |  | 										}, 0) | 
					
						
							|  |  |  | 									}) | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 									setTimeout(function(){ | 
					
						
							|  |  |  | 										that.__control_in_progress -= 1 | 
					
						
							|  |  |  | 										if(that.__control_in_progress <= 0){ | 
					
						
							|  |  |  | 											delete that.__control_in_progress | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 											//that.ribbonPanning.post(that, post_handlers)
 | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									}, that.config['control-in-progress-timeout'] || 100) | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 							}) | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// on...
 | 
					
						
							|  |  |  | 				if(state == 'on'){ | 
					
						
							| 
									
										
										
										
											2016-05-11 06:59:56 +03:00
										 |  |  | 					// NOTE: we are resetting this to avoid multiple setting
 | 
					
						
							|  |  |  | 					// 		handlers...
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 					this.off('updateRibbon', setup) | 
					
						
							|  |  |  | 					this.on('updateRibbon', setup) | 
					
						
							| 
									
										
										
										
											2016-05-11 05:00:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 						setup.call(that, null, gid) | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// off...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 					this.off('updateRibbon', setup) | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 						var r = that.ribbons.getRibbon(gid) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 						// XXX
 | 
					
						
							|  |  |  | 						//var h = r.data('hammer')
 | 
					
						
							|  |  |  | 						//h && h.destroy()
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						r | 
					
						
							|  |  |  | 							.removeClass('draggable') | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 							// XXX this does not remove the hammer trigger
 | 
					
						
							|  |  |  | 							// 		...just the jQuery handler is cleared
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 							.off('pan') | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 							.off('touchmove mousemove', stop_scroll) | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 							// XXX
 | 
					
						
							|  |  |  | 							//.removeData('hammer')
 | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// XXX can this be a spot for a race???
 | 
					
						
							|  |  |  | 						renderer = renderer && cancelAnimationFrame(renderer) | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					}) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			})], | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 16:48:58 +03:00
										 |  |  | 	// Ribbon/viewer wheel...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 	// XXX need:
 | 
					
						
							|  |  |  | 	// 		- prevent ribbon from scrolling off screen...
 | 
					
						
							|  |  |  | 	// 		- handle acceleration -- stop and update just before scrolling off the edge...
 | 
					
						
							|  |  |  | 	// 		- update...
 | 
					
						
							|  |  |  | 	// XXX might be a good idea to use the viewer instead of ribbons as source...
 | 
					
						
							|  |  |  | 	// 		...this will prevent losing control of the ribbon when it goes out
 | 
					
						
							|  |  |  | 	// 		from under the cursor...
 | 
					
						
							|  |  |  | 	// 		...detect via cursor within the vertical band of the ribbon...
 | 
					
						
							| 
									
										
										
										
											2017-04-25 16:48:58 +03:00
										 |  |  | 	// XXX BUG?: acceleration seems to be increasing with time...
 | 
					
						
							|  |  |  | 	// XXX add a "ribbonWheeling" ( ;) ) event a-la ribbonPanning...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 02:06:09 +03:00
										 |  |  | 	// XXX depends on .ribbons...
 | 
					
						
							| 
									
										
										
										
											2017-07-29 21:39:47 +03:00
										 |  |  | 	// XXX uses: .focusImage(..)
 | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 	toggleMouseWheelHandling: ['Interface/Mouse wheel handling', | 
					
						
							|  |  |  | 		toggler.Toggler(null, | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 			function(_, new_state){ | 
					
						
							|  |  |  | 				return new_state ? | 
					
						
							|  |  |  | 						// NOTE: we are not setting the state here, so there's 
 | 
					
						
							|  |  |  | 						// 		nothing to do...
 | 
					
						
							|  |  |  | 						null | 
					
						
							|  |  |  | 					: (this.ribbons  | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 						&& this.dom  | 
					
						
							|  |  |  | 						&& this.dom.hasClass('mouse-wheel-scroll')) ? | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 						'handling-mouse-wheel'  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 					: 'none' }, | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 			'handling-mouse-wheel', | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				/* | 
					
						
							|  |  |  | 				var focus_central = function(rgid){ | 
					
						
							|  |  |  | 					// see if we need to change focus...
 | 
					
						
							|  |  |  | 					var current_ribbon = that.data.getRibbon() | 
					
						
							|  |  |  | 					if(current_ribbon == rgid){ | 
					
						
							|  |  |  | 						var central = that.ribbons.getImageByPosition('center', r) | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 						var gid = that.ribbons.elemGID(central) | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 						// silently focus central image...
 | 
					
						
							|  |  |  | 						if(that.config['focus-central-image'] == 'silent'){ | 
					
						
							|  |  |  | 							that.data.focusImage(gid) | 
					
						
							|  |  |  | 							that.ribbons.focusImage(that.current) | 
					
						
							|  |  |  | 							 | 
					
						
							|  |  |  | 						// focus central image in a normal manner...
 | 
					
						
							|  |  |  | 						} else if(that.config['focus-central-image']){ | 
					
						
							|  |  |  | 							that.data.focusImage(gid) | 
					
						
							|  |  |  | 							that.focusImage() | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var setup = this.__wheel_handler_setup = this.__wheel_handler_setup  | 
					
						
							|  |  |  | 					|| function(_, target){ | 
					
						
							|  |  |  | 						var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						var r = this.ribbons.getRibbon(target) | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 						var rgid = this.ribbons.elemGID(r) | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// XXX vertical scroll...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 						this.dom | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 							.on('wheel', function(){ | 
					
						
							|  |  |  | 							}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// horizontal scroll...
 | 
					
						
							|  |  |  | 						r.on('wheel', function(){ | 
					
						
							|  |  |  | 							event.preventDefault() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							var s = that.config['mouse-wheel-scale'] || 1 | 
					
						
							|  |  |  | 							var vmin = Math.min(document.body.offsetWidth, document.body.offsetHeight) | 
					
						
							|  |  |  | 							var left = parseFloat(($(this).transform('translate3d') || [0])[0])/100 * vmin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// XXX inertia problem -- it's too easy to scroll a ribbon off the screen...
 | 
					
						
							|  |  |  | 							// 		try:
 | 
					
						
							|  |  |  | 							// 			- limit speed
 | 
					
						
							|  |  |  | 							// 			- limit distance 
 | 
					
						
							|  |  |  | 							// 				1-2 screens -> stop for timeout before continue
 | 
					
						
							|  |  |  | 							// 				...need to keep track of "scroll sessions"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// XXX prevent scroll off screen....
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// XXX prevent scroll off loaded edge...
 | 
					
						
							|  |  |  | 							 | 
					
						
							|  |  |  | 							// XXX focus_central(rgid) when scroll slows down...
 | 
					
						
							|  |  |  | 							// 		(small deltaX or longer time between triggerings)...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// XXX do we need to do requestAnimationFrame(..) render...
 | 
					
						
							|  |  |  | 							// 		...see toggleRibbonPanHandling(..) for an implementation...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// do the actual move...
 | 
					
						
							|  |  |  | 							r.transform({ | 
					
						
							|  |  |  | 								x: ((left - (event.deltaX * s)) / vmin * 100) + 'vmin', | 
					
						
							|  |  |  | 							}) | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// on...
 | 
					
						
							|  |  |  | 				if(state == 'on'){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 					this.dom.addClass('mouse-wheel-scroll') | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 					// NOTE: we are resetting this to avoid multiple setting
 | 
					
						
							|  |  |  | 					// 		handlers...
 | 
					
						
							|  |  |  | 					this.off('updateRibbon', setup) | 
					
						
							|  |  |  | 					this.on('updateRibbon', setup) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							|  |  |  | 						setup.call(that, null, gid) }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// off...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 					this.dom.removeClass('mouse-wheel-scroll') | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 					this.off('updateRibbon', setup) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							|  |  |  | 						that.ribbons.getRibbon(gid).off('wheel') }) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			})], | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	togglePinchHandling: ['Interface/Pinch zoom handling', | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 		function(){ | 
					
						
							| 
									
										
										
										
											2017-04-25 16:48:58 +03:00
										 |  |  | 			// XXX
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 23:32:08 +03:00
										 |  |  | 	// XXX make the enable handling check a bit more general...
 | 
					
						
							|  |  |  | 	// 		...allow ui features to control this...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 02:06:09 +03:00
										 |  |  | 	// XXX depends on .ribbons...
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleSwipeHandling: ['Interface/Swipe handling', | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 		toggler.Toggler(null, | 
					
						
							|  |  |  | 			function(_, state){  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 				return state ? | 
					
						
							|  |  |  | 						null | 
					
						
							|  |  |  | 					: (this.ribbons  | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 							&& this.dom  | 
					
						
							|  |  |  | 							&& this.dom.data('hammer')) ?  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 						'handling-swipes'  | 
					
						
							|  |  |  | 					: 'none' }, | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 			'handling-swipes', | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 				var viewer = this.dom | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 				// on...
 | 
					
						
							|  |  |  | 				if(state == 'on'){ | 
					
						
							|  |  |  | 					var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// prevent multiple handlers...
 | 
					
						
							|  |  |  | 					if(viewer.data('hammer') != null){ | 
					
						
							|  |  |  | 						return | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					viewer.hammer() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 					viewer.data('hammer') | 
					
						
							|  |  |  | 						.get('swipe') | 
					
						
							| 
									
										
										
										
											2017-01-30 23:32:08 +03:00
										 |  |  | 							.set({ | 
					
						
							|  |  |  | 								direction: Hammer.DIRECTION_ALL, | 
					
						
							|  |  |  | 								// do not handle swipes when a modal 
 | 
					
						
							|  |  |  | 								// dialog is open...
 | 
					
						
							|  |  |  | 								// XXX make this more general...
 | 
					
						
							|  |  |  | 								enable: function(){ return !that.modal }, | 
					
						
							|  |  |  | 							}) | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 					if(!viewer.hasClass('swipable')){ | 
					
						
							|  |  |  | 						viewer | 
					
						
							|  |  |  | 							.addClass('swipable') | 
					
						
							|  |  |  | 							.on('swipeleft', function(){  | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								that.__control_in_progress || that.nextImage() }) | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 							.on('swiperight', function(){  | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								that.__control_in_progress || that.prevImage() }) | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 							.on('swipeup', function(){  | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								that.__control_in_progress || that.shiftImageUp() }) | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 							.on('swipedown', function(){  | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								that.__control_in_progress || that.shiftImageDown() }) | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// off...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2016-05-10 17:02:38 +03:00
										 |  |  | 					var h = viewer.data('hammer') | 
					
						
							|  |  |  | 					h && h.destroy() | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					viewer | 
					
						
							|  |  |  | 						.removeClass('swipable') | 
					
						
							|  |  |  | 						.off('swipeleft') | 
					
						
							|  |  |  | 						.off('swiperight') | 
					
						
							|  |  |  | 						.off('swipeup') | 
					
						
							|  |  |  | 						.off('swipedown') | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 						.removeData('hammer') | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			})], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 	/*// XXX we are not using this.... | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	__control_mode_handlers__: { | 
					
						
							|  |  |  | 		indirect:  | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							|  |  |  | 				this.toggleSwipeHandling(state) | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 		direct: | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	toggleControlMode: ['- Interface/', | 
					
						
							|  |  |  | 		toggler.Toggler(null, | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 			function(_, state){ return state == null ? null : this.config['control-mode'] }, | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 			function(){ return Object.keys(this.__control_mode_handlers__ || []) | 
					
						
							|  |  |  | 				.concat(Object.keys(ControlActions.__control_mode_handlers__ || [])) | 
					
						
							|  |  |  | 				.concat(['none']) | 
					
						
							|  |  |  | 				.unique() }, | 
					
						
							|  |  |  | 			function(state){  | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var _getHandler = function(name){ | 
					
						
							|  |  |  | 					return (that.__control_mode_handlers__ || {})[name] | 
					
						
							|  |  |  | 						|| (ControlActions.__control_mode_handlers__ || {})[name] | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// clear previous state...
 | 
					
						
							|  |  |  | 				var prev_state =this.toggleControlMode('?') | 
					
						
							|  |  |  | 				prev_state != 'none' && _getHandler(prev_state).call(this, 'off') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// set next state...
 | 
					
						
							|  |  |  | 				if(state != 'none'){ | 
					
						
							|  |  |  | 					_getHandler(state).call(this, 'on') | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.config['control-mode'] = state | 
					
						
							|  |  |  | 			})], | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 	//*/
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var Control =  | 
					
						
							|  |  |  | module.Control = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-control', | 
					
						
							|  |  |  | 	//exclusive: ['ui-control'],
 | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui' | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 	actions: ControlActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['load', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 				this.toggleImageClickHandling('on') | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 				this.toggleSwipeHandling('on') | 
					
						
							|  |  |  | 				this.toggleRibbonPanHandling('on') | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['stop', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2016-12-26 03:13:55 +03:00
										 |  |  | 				this.toggleImageClickHandling('off') | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 				this.toggleSwipeHandling('off') | 
					
						
							|  |  |  | 				this.toggleRibbonPanHandling('off') | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 		['toggleSingleImage', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 				this.toggleRibbonPanHandling( | 
					
						
							|  |  |  | 					this.toggleSingleImage('?') == 'off' ? 'on' : 'off') | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 			 | 
					
						
							|  |  |  | 		// if panned image is off screen, center it...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		['viewScale', | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 			function(){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				Object.keys(this.data.ribbons).forEach(function(r){ | 
					
						
							| 
									
										
										
										
											2016-12-07 03:05:31 +03:00
										 |  |  | 					//that.makeRibbonVisible(r)
 | 
					
						
							| 
									
										
										
										
											2016-12-07 02:58:02 +03:00
										 |  |  | 				}) | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-05 02:25:44 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var FailsafeDevTools =  | 
					
						
							|  |  |  | module.FailsafeDevTools = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'fail-safe-devtools', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priority: 'low', | 
					
						
							| 
									
										
										
										
											2017-03-01 00:02:56 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2016-05-05 02:25:44 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['start', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2016-05-25 22:09:03 +03:00
										 |  |  | 				// NOTE: this is set in index.html
 | 
					
						
							|  |  |  | 				window.__devtools_failsafe  | 
					
						
							|  |  |  | 					&& clearTimeout(window.__devtools_failsafe) }], | 
					
						
							| 
									
										
										
										
											2016-05-05 02:25:44 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 03:59:11 +03:00
										 |  |  | // NOTE: this updates the current image block CSS...
 | 
					
						
							| 
									
										
										
										
											2017-03-26 18:56:17 +03:00
										 |  |  | var PreviewFilters | 
					
						
							|  |  |  | module.PreviewFilters = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-preview-filters', | 
					
						
							|  |  |  | 	depends: [  | 
					
						
							|  |  |  | 		'ui'  | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'preview-filters': { | 
					
						
							|  |  |  | 			'Black and white': 'image-bw', | 
					
						
							|  |  |  | 			'Show shadows': 'image-show-shadows', | 
					
						
							|  |  |  | 			'No filters': 'none', | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: actions.Actions({ | 
					
						
							|  |  |  | 		togglePreviewFilter: ['Image/Preview filter', | 
					
						
							|  |  |  | 			core.doc`Toggle image preview filter
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			This is different to normal togglers in that toggling an explicit | 
					
						
							|  |  |  | 			state repeatedly will toggle between that state and 'No filters' | 
					
						
							|  |  |  | 			effectively toggling the filter on and off... | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// toggle through all the filters...
 | 
					
						
							|  |  |  | 				.togglePreviewFilter() | 
					
						
							|  |  |  | 					-> state | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// toggle 'Show shadows' on/off...
 | 
					
						
							|  |  |  | 				.togglePreviewFilter('Show shadows') | 
					
						
							|  |  |  | 					-> state | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// togglue current filter off if applied... 
 | 
					
						
							|  |  |  | 				.togglePreviewFilter('!') | 
					
						
							|  |  |  | 					-> state | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			`,
 | 
					
						
							|  |  |  | 			toggler.Toggler(null, | 
					
						
							|  |  |  | 				function(_, state){  | 
					
						
							|  |  |  | 					var filters = this.config['preview-filters'] | 
					
						
							|  |  |  | 					var img = this.ribbons.getImage() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// get state...
 | 
					
						
							|  |  |  | 					if(state == null){ | 
					
						
							|  |  |  | 						for(var s in filters){ | 
					
						
							|  |  |  | 							if(img.hasClass(filters[s])){ | 
					
						
							|  |  |  | 								return s | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						return 'No filters' | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// clear filters...
 | 
					
						
							|  |  |  | 					var cls = filters[state] | 
					
						
							|  |  |  | 					var classes = Object.values(filters) | 
					
						
							|  |  |  | 						.filter(function(c){ return c != cls }) | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 					this.dom | 
					
						
							| 
									
										
										
										
											2017-03-26 18:56:17 +03:00
										 |  |  | 						.find('.'+ classes.join(', .')) | 
					
						
							|  |  |  | 							.removeClass(classes.join(' ')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// toggle filter...
 | 
					
						
							|  |  |  | 					if(state in filters){ | 
					
						
							|  |  |  | 						img.toggleClass(cls) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					return img.hasClass(cls) ? state : 'No filters' | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function(){  | 
					
						
							|  |  |  | 					return Object.keys(this.config['preview-filters']) })], | 
					
						
							|  |  |  | 	}), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage', | 
					
						
							|  |  |  | 			function(){ this.togglePreviewFilter('No filters') }], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-27 02:07:25 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | // XXX EXPERIMENTAL...
 | 
					
						
							| 
									
										
										
										
											2017-03-27 02:07:25 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // 		...not sure if this is the right way to go...
 | 
					
						
							|  |  |  | // XXX need to get the minimal size and not the width as results will 
 | 
					
						
							|  |  |  | // 		depend on viewer format...
 | 
					
						
							|  |  |  | var AutoSingleImage =  | 
					
						
							|  |  |  | module.AutoSingleImage = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	tag: 'auto-single-image', | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	// NOTE: this feature has no actions defined but needs the config...
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'auto-single-image-in': 2, | 
					
						
							|  |  |  | 		'auto-single-image-out': 7, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2015-12-29 01:02:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		['resizing.pre', | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 			function(count){ | 
					
						
							|  |  |  | 				count = count || 1 | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 				if(this.toggleSingleImage('?') == 'off'  | 
					
						
							|  |  |  | 						&& count < this.config['auto-single-image-in'] | 
					
						
							|  |  |  | 						&& count < this.screenwidth){ | 
					
						
							|  |  |  | 					this.toggleSingleImage() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else if(this.toggleSingleImage('?') == 'on'  | 
					
						
							|  |  |  | 						&& count >= this.config['auto-single-image-out'] | 
					
						
							|  |  |  | 						&& count > this.screenwidth){ | 
					
						
							|  |  |  | 					this.toggleSingleImage() | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | var AutoRibbon =  | 
					
						
							|  |  |  | module.AutoRibbon = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	tag: 'auto-ribbon', | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['nextRibbon prevRibbon', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.toggleSingleImage('?') == 'on'  | 
					
						
							|  |  |  | 					&& this.toggleSingleImage('off') }], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-02-10 05:25:14 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /********************************************************************** | 
					
						
							| 
									
										
										
										
											2016-08-20 22:49:36 +03:00
										 |  |  | * vim:set ts=4 sw=4 :                               */ return module }) |