| 
									
										
										
										
											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') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-01 16:12:10 +03:00
										 |  |  | var data = require('imagegrid/data') | 
					
						
							|  |  |  | var images = require('imagegrid/images') | 
					
						
							|  |  |  | var ribbons = require('imagegrid/ribbons') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | var core = require('features/core') | 
					
						
							|  |  |  | var base = require('features/base') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var reloadAfter = | 
					
						
							|  |  |  | module.reloadAfter = | 
					
						
							| 
									
										
										
										
											2016-04-05 17:31:11 +03:00
										 |  |  | function(force, callback){ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	return function(){ | 
					
						
							|  |  |  | 		return function(){ | 
					
						
							|  |  |  | 			// NOTE: this may seem like cheating, but .reload() should
 | 
					
						
							|  |  |  | 			// 		be very efficient, reusing all of the items loaded...
 | 
					
						
							|  |  |  | 			this.reload(force) | 
					
						
							| 
									
										
										
										
											2016-04-05 17:31:11 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			callback && callback.apply(this, arguments) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX make this compatible with multiple images...
 | 
					
						
							|  |  |  | // XXX for muptiple targets this will just do a .reload()...
 | 
					
						
							|  |  |  | var updateImagePosition = | 
					
						
							|  |  |  | module.updateImagePosition = | 
					
						
							|  |  |  | function updateImagePosition(actions, target){ | 
					
						
							| 
									
										
										
										
											2016-11-22 19:12:36 +03:00
										 |  |  | 	var s = actions.ribbons.getRibbonLocator() | 
					
						
							| 
									
										
										
										
											2016-07-03 18:53:02 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if(s.length == 0){ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	target = target || actions.current | 
					
						
							|  |  |  | 	target = target instanceof jQuery  | 
					
						
							|  |  |  | 		? actions.ribbons.getElemGID(target)  | 
					
						
							|  |  |  | 		: target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var source_ribbon = actions.ribbons.getElemGID(actions.ribbons.getRibbon(target)) | 
					
						
							|  |  |  | 	var source_order = actions.data.getImageOrder(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return function(){ | 
					
						
							| 
									
										
										
										
											2016-07-03 18:53:02 +03:00
										 |  |  | 		actions.ribbons.preventTransitions(s) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// XXX hack...
 | 
					
						
							|  |  |  | 		if(target.constructor === Array){ | 
					
						
							|  |  |  | 			actions.reload() | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var target_ribbon = actions.data.getRibbon(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// nothing changed...
 | 
					
						
							|  |  |  | 		if(source_ribbon == target_ribbon  | 
					
						
							|  |  |  | 				&& actions.data.getImageOrder(target) == source_order){ | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// place image at position...
 | 
					
						
							|  |  |  | 		var to = actions.data.getImage(target, 'next') | 
					
						
							|  |  |  | 		if(to != null){ | 
					
						
							|  |  |  | 			actions.ribbons.placeImage(target, to, 'before') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			// place image after position...
 | 
					
						
							|  |  |  | 			to = actions.data.getImage(target, 'prev') | 
					
						
							|  |  |  | 			if(to != null){ | 
					
						
							|  |  |  | 				actions.ribbons.placeImage(target, to, 'after') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// new ribbon...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				to = actions.data.getRibbon(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(actions.ribbons.getRibbon(to).length == 0){ | 
					
						
							| 
									
										
										
										
											2016-11-22 19:12:36 +03:00
										 |  |  | 					actions.ribbons | 
					
						
							|  |  |  | 						.placeRibbon(to, actions.data.getRibbonOrder(target)) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				actions.ribbons.placeImage(target, to) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(actions.data.getImages(source_ribbon).length == 0){ | 
					
						
							|  |  |  | 			actions.ribbons.getRibbon(source_ribbon).remove() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		actions.focusImage() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-03 18:53:02 +03:00
										 |  |  | 		// XXX not sure why this does not work without a setTimeout(..)
 | 
					
						
							|  |  |  | 		//actions.ribbons.restoreTransitions(s, true)
 | 
					
						
							|  |  |  | 		setTimeout(function(){  | 
					
						
							|  |  |  | 			actions.ribbons.restoreTransitions(s, true) }, 0) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // Viewer (widget/interface)...
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | // NOTE: this uses the base feature API but does not need it imported...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // XXX split this into read and write actions...
 | 
					
						
							| 
									
										
										
										
											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-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', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Ribbons...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 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 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Current image data...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX experimental...
 | 
					
						
							|  |  |  | 	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...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Normal scale...
 | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 	get scale(){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		return this.ribbons != null ? this.ribbons.scale() : null }, | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 	set scale(s){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		this.setScale(s) }, | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	// Screen width in image blocks...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: this will change depending on image block sizing...
 | 
					
						
							|  |  |  | 	// NOTE: this not usable for image blocks of different sizes...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	get screenwidth(){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		return this.ribbons != null ? this.ribbons.getScreenWidthImages() : null }, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Screen height in image blocks...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	get screenheight(){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		return this.ribbons != null ? this.ribbons.getScreenHeightRibbons() : null }, | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Screen size in image radii on the narrow side of the screen...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// E.g.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 						min(screenwidth, screenheight)	
 | 
					
						
							|  |  |  | 	// 		screenfit = --------------------------------------
 | 
					
						
							|  |  |  | 	// 						min(image.width, image.height)
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-01 06:13:50 +03:00
										 |  |  | 	get screenfit(){ | 
					
						
							|  |  |  | 		if(!this.ribbons || !this.ribbons.viewer){ | 
					
						
							|  |  |  | 			return null | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		var viewer = this.ribbons.viewer | 
					
						
							|  |  |  | 		var W = viewer.width() | 
					
						
							|  |  |  | 		var H = viewer.height() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return W < H ? | 
					
						
							|  |  |  | 			this.screenwidth | 
					
						
							|  |  |  | 			: this.screenheight | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set screenfit(n){ | 
					
						
							|  |  |  | 		var viewer = this.ribbons.viewer | 
					
						
							|  |  |  | 		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
										 |  |  | 
 | 
					
						
							|  |  |  | 	load: [ | 
					
						
							|  |  |  | 		function(data){ | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							|  |  |  | 				// recycle the viewer if one is not given specifically...
 | 
					
						
							|  |  |  | 				var viewer = data.viewer | 
					
						
							|  |  |  | 				viewer = viewer == null && this.ribbons != null  | 
					
						
							|  |  |  | 					? this.ribbons.viewer  | 
					
						
							|  |  |  | 					: viewer | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-29 01:02:57 +03:00
										 |  |  | 				if(this.ribbons == null){ | 
					
						
							|  |  |  | 					this.ribbons = ribbons.Ribbons(viewer, this.images) | 
					
						
							|  |  |  | 					// XXX is this correct???
 | 
					
						
							|  |  |  | 					this.ribbons.__image_updaters = [this.updateImage.bind(this)] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 					this.ribbons.clear() | 
					
						
							| 
									
										
										
										
											2015-12-29 01:02:57 +03:00
										 |  |  | 					this.ribbons.images = this.images | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.reload() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	// NOTE: this will pass the .ribbons.updateData(..) a custom ribbon 
 | 
					
						
							|  |  |  | 	// 		updater if one is defined here as .updateRibbon(target) action
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX HACK: two sins:
 | 
					
						
							|  |  |  | 	// 		- actions.updateRibbon(..) and ribbons.updateRibbon(..)
 | 
					
						
							|  |  |  | 	// 		  are NOT signature compatible...
 | 
					
						
							|  |  |  | 	// 		- we depend on the internals of a custom add-on feature
 | 
					
						
							|  |  |  | 	reload: ['Interface/Reload viewer', | 
					
						
							|  |  |  | 		function(force){ | 
					
						
							|  |  |  | 			this.ribbons.preventTransitions() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// NOTE: this essentially sets the update threshold to 0...
 | 
					
						
							|  |  |  | 			// XXX this should be a custom arg...
 | 
					
						
							|  |  |  | 			force = force ? 0 : null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							|  |  |  | 				// see if we've got a custom ribbon updater...
 | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				var settings = this.updateRibbon != null  | 
					
						
							|  |  |  | 					// XXX this should be: { updateRibbon: this.updateRibbon.bind(this) }
 | 
					
						
							|  |  |  | 					? { updateRibbon: function(_, ribbon){  | 
					
						
							|  |  |  | 							return that.updateRibbon(ribbon, null, null, force)  | 
					
						
							|  |  |  | 						} } | 
					
						
							|  |  |  | 					: null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.ribbons.updateData(this.data, settings) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this | 
					
						
							|  |  |  | 					// XXX should this be here???
 | 
					
						
							|  |  |  | 					.refresh() | 
					
						
							|  |  |  | 					.focusImage() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-25 14:34:32 +03:00
										 |  |  | 				// XXX HACK to make browser redraw images...
 | 
					
						
							|  |  |  | 				this.scale = this.scale | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				this.ribbons.restoreTransitions() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	// NOTE: this will trigger .updateImage hooks...
 | 
					
						
							|  |  |  | 	refresh: ['Interface/Refresh images without reloading', | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 		function(gids, scale){ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			gids = gids || '*' | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 			var size = scale != null ?  | 
					
						
							|  |  |  | 				this.ribbons.getVisibleImageSize('min', scale) | 
					
						
							|  |  |  | 				: null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			this.ribbons.updateImage(gids, null, size) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	clear: [ | 
					
						
							| 
									
										
										
										
											2016-04-02 15:58:55 +03:00
										 |  |  | 		function(){ this.ribbons && this.ribbons.clear() }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	clone: [function(full){ | 
					
						
							|  |  |  | 		return function(res){ | 
					
						
							|  |  |  | 			if(this.ribbons){ | 
					
						
							|  |  |  | 				// NOTE: this is a bit wasteful as .ribbons will clone 
 | 
					
						
							|  |  |  | 				// 		their ref to .images that we will throw away...
 | 
					
						
							|  |  |  | 				res.ribbons = this.ribbons.clone() | 
					
						
							|  |  |  | 				res.ribbons.images = res.images | 
					
						
							|  |  |  | 			}  | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 07:09:06 +03:00
										 |  |  | 	replaceGid: [ | 
					
						
							|  |  |  | 		function(from, to){ | 
					
						
							|  |  |  | 			return function(res){ | 
					
						
							|  |  |  | 				res && this.ribbons.replaceGid(from, to) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// This is called by .ribbons, the goal is to use it to hook into 
 | 
					
						
							|  |  |  | 	// image updating from features and extensions...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: not intended for calling manually, use .refresh(..) instead...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX experimental...
 | 
					
						
							|  |  |  | 	// 		...need this to get triggered by .ribbons
 | 
					
						
							|  |  |  | 	// 		at this point manually triggering this will not do anything...
 | 
					
						
							|  |  |  | 	// XXX problem: need to either redesign this or distinguish from 
 | 
					
						
							|  |  |  | 	// 		other actions as I keep calling it expecting results...
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 	// XXX hide from user action list... (???)
 | 
					
						
							|  |  |  | 	updateImage: ['- Interface/Update image (do not use directly)', | 
					
						
							|  |  |  | 		'This is called by .refresh(..) and intended for use as an ' | 
					
						
							|  |  |  | 			+'trigger for handlers, and not as a user-callable acation.', | 
					
						
							|  |  |  | 		core.notUserCallable(function(gid, image){ | 
					
						
							|  |  |  | 			// This is the image update protocol root function
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Not for direct use.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// General UI stuff...
 | 
					
						
							|  |  |  | 	// NOTE: this is applicable to all uses...
 | 
					
						
							| 
									
										
										
										
											2016-04-14 19:35:59 +03:00
										 |  |  | 	toggleTheme: ['Interface/Theme/Toggle viewer theme',  | 
					
						
							| 
									
										
										
										
											2015-12-31 10:37:21 +03:00
										 |  |  | 		toggler.CSSClassToggler( | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			function(){ return this.ribbons.viewer },  | 
					
						
							|  |  |  | 			function(){ return this.config.themes }, | 
					
						
							|  |  |  | 			function(state){ this.config.theme = state }) ], | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 	lighterTheme: ['Interface/Theme/Lighter', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 			var themes = this.config.themes | 
					
						
							|  |  |  | 			var i = themes.indexOf(this.toggleTheme('?')) | 
					
						
							|  |  |  | 			this.toggleTheme(Math.min(i+1, themes.length-1)) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	darkerTheme: ['Interface/Theme/Darker', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 			var themes = this.config.themes | 
					
						
							|  |  |  | 			var i = themes.indexOf(this.toggleTheme('?')) | 
					
						
							|  |  |  | 			this.toggleTheme(Math.max(0, i-1)) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-04-14 19:35:59 +03:00
										 |  |  | 	toggleRibbonTheme: ['Interface/Theme/Toggle ribbon theme',  | 
					
						
							| 
									
										
										
										
											2016-02-29 04:39:46 +03:00
										 |  |  | 		toggler.CSSClassToggler( | 
					
						
							|  |  |  | 			function(){ return this.ribbons.viewer },  | 
					
						
							|  |  |  | 			function(){ return this.config['ribbon-themes'] }, | 
					
						
							|  |  |  | 			function(state){ this.config['ribbon-theme'] = state }) ], | 
					
						
							| 
									
										
										
										
											2016-05-02 17:08:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-02 17:08:40 +03:00
										 |  |  | 	/* | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	setEmptyMsg: ['- Interface/Set message to be displayed when nothing is loaded.', | 
					
						
							|  |  |  | 		function(msg, help){ this.ribbons  | 
					
						
							|  |  |  | 			&& this.ribbons.setEmptyMsg(msg, help) }], | 
					
						
							| 
									
										
										
										
											2016-05-02 17:08:40 +03:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											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 ribbons = this.ribbons | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 20:08:08 +03:00
										 |  |  | 			if(data == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			// XXX handle raw dom elements...
 | 
					
						
							|  |  |  | 			var gid = target instanceof jQuery  | 
					
						
							|  |  |  | 				? ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: data.getImage(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// 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(){ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				this._align_timeout = null | 
					
						
							|  |  |  | 				// 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... 
 | 
					
						
							|  |  |  | 				if(this._align_timeout != null){ | 
					
						
							|  |  |  | 					clearTimeout(this._align_timeout) | 
					
						
							|  |  |  | 					this._align_timeout = null | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				this._align_timeout = setTimeout(_align, 50) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											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 ribbons = this.ribbons | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-28 20:08:08 +03:00
										 |  |  | 			if(data == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			// XXX handle raw dom elements...
 | 
					
						
							|  |  |  | 			var gid = target instanceof jQuery  | 
					
						
							|  |  |  | 				? ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: data.getImage(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// 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)
 | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// NOTE: this will align only a single image...
 | 
					
						
							|  |  |  | 	// XXX do we need these low level primitives here???
 | 
					
						
							|  |  |  | 	centerImage: ['- Interface/Center an image in ribbon horizontally', | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 		function(target, align, offset, scale){ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 			target = target instanceof jQuery  | 
					
						
							|  |  |  | 				? this.ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 			this.ribbons.centerImage(target, align, offset, scale) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	centerRibbon: ['- Interface/Center a ribbon vertically', | 
					
						
							|  |  |  | 		function(target){ | 
					
						
							|  |  |  | 			target = target instanceof jQuery  | 
					
						
							|  |  |  | 				? this.ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							|  |  |  | 			this.ribbons.centerRibbon(target) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-12-02 23:52:56 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	centerViewer: ['- Interface/Center the viewer', | 
					
						
							|  |  |  | 		function(target){ | 
					
						
							|  |  |  | 			this | 
					
						
							|  |  |  | 				.centerImage(target) | 
					
						
							|  |  |  | 				.centerRibbon(target) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-02 23:52:56 +03:00
										 |  |  | 	// 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')
 | 
					
						
							|  |  |  | 	resizingWindow: ['- Interface/', | 
					
						
							|  |  |  | 		core.notUserCallable(function(){ | 
					
						
							|  |  |  | 			// This is the window resize event...
 | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	focusImage: [ | 
					
						
							|  |  |  | 		function(target, list){ | 
					
						
							|  |  |  | 			var ribbons = this.ribbons | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// NOTE: we do not need to do anything in the alternative 
 | 
					
						
							|  |  |  | 			// 		case as it's done in data/Client, so we'll just 
 | 
					
						
							|  |  |  | 			// 		peek there later...
 | 
					
						
							|  |  |  | 			if(data == null){ | 
					
						
							|  |  |  | 				target = ribbons.focusImage(target) | 
					
						
							|  |  |  | 				var gid = ribbons.getElemGID(target) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							|  |  |  | 				if(data != null){ | 
					
						
							|  |  |  | 					// use the data for all the heavy lifting...
 | 
					
						
							|  |  |  | 					// NOTE: this will prevent sync errors...
 | 
					
						
							|  |  |  | 					var gid = data.getImage() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					target = ribbons.focusImage(gid) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-12-20 20:59:19 +03:00
										 |  |  | 	focusRibbon: [ | 
					
						
							|  |  |  | 		function(target, mode){ | 
					
						
							|  |  |  | 			mode = mode || this.config['ribbon-focus-mode'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var c = this.data.getRibbonOrder() | 
					
						
							|  |  |  | 			var i = this.data.getRibbonOrder(target) | 
					
						
							|  |  |  | 			// NOTE: we are not changing the direction here based on 
 | 
					
						
							|  |  |  | 			// 		this.direction as swap will confuse the user...
 | 
					
						
							|  |  |  | 			var direction = c < i ? 'before' : 'after' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(mode == 'visual'){ | 
					
						
							|  |  |  | 				var ribbons = this.ribbons | 
					
						
							|  |  |  | 				var r = this.data.getRibbon(target) | 
					
						
							|  |  |  | 				var t = ribbons.getImageByPosition('current', r) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(t.length > 1){ | 
					
						
							|  |  |  | 					t = t.eq(direction == 'before' ? 0 : 1) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				t = ribbons.getElemGID(t) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.focusImage(t, r) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	setBaseRibbon: [ | 
					
						
							|  |  |  | 		function(target){ | 
					
						
							|  |  |  | 			var r = this.data.getRibbon(target) | 
					
						
							|  |  |  | 			r =  r == null ? this.ribbons.getRibbon(target) : r | 
					
						
							|  |  |  | 			this.ribbons.setBaseRibbon(r) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// 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.ribbons.getScreenWidthImages() + 0.2) | 
					
						
							|  |  |  | 			w += (w % 2) - 1 | 
					
						
							|  |  |  | 			this.prevImage(w) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	nextScreen: ['Navigate/Screen width forward', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 			var w = Math.floor(this.ribbons.getScreenWidthImages() + 0.2) | 
					
						
							|  |  |  | 			w += (w % 2) - 1 | 
					
						
							|  |  |  | 			this.nextImage(w) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Zooming/scaling root action...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Protocol:
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:54:44 +03:00
										 |  |  | 	// 	- 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.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 	// Supported units:
 | 
					
						
							|  |  |  | 	// 	- scale
 | 
					
						
							|  |  |  | 	// 	- screenwidth
 | 
					
						
							|  |  |  | 	// 	- screenheight
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:54:44 +03:00
										 |  |  | 	// Example:
 | 
					
						
							|  |  |  | 	//	actionName: ['...',
 | 
					
						
							|  |  |  | 	//		function(value){
 | 
					
						
							|  |  |  | 	//			this.resizing.chainCall(this, function(){
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//				// action code...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//			}, 
 | 
					
						
							|  |  |  | 	//			// action unit...
 | 
					
						
							|  |  |  | 	//			'scale', 
 | 
					
						
							|  |  |  | 	//			// action value...
 | 
					
						
							|  |  |  | 	//			scale)
 | 
					
						
							|  |  |  | 	//		}],
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// This will enable clients to attach to a single in/out point.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 	// NOTE: to account for CSS transitions use .resizingDone()
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// NOTE: not intended for direct use...
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX hide from user action list... (???)
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 	// XXX need to check if a transition is running and delay timeout...
 | 
					
						
							| 
									
										
										
										
											2016-06-23 01:00:24 +03:00
										 |  |  | 	resizing: ['- Zoom/scale root protocol action (not for direct use)',  | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 		'This is called by zoom/scale protocol compliant actions and ' | 
					
						
							|  |  |  | 			+'intended for use as an trigger for handlers, and not as ' | 
					
						
							|  |  |  | 			+'a user-callable acation.', | 
					
						
							|  |  |  | 		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.
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// As an example see: .setScale(..)
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			// stop currently running transition...
 | 
					
						
							|  |  |  | 			this.ribbons.scale(this.ribbons.scale()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// transitionend handler...
 | 
					
						
							|  |  |  | 			if(!this.__resize_handler){ | 
					
						
							|  |  |  | 				this.__resize_handler = function(){ | 
					
						
							|  |  |  | 					that.__post_resize | 
					
						
							|  |  |  | 						&& that.resizingDone()  | 
					
						
							|  |  |  | 					delete that.__post_resize | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			this.ribbons.getRibbonSet() | 
					
						
							|  |  |  | 				.off('transitionend', this.__resize_handler) | 
					
						
							|  |  |  | 				.on('transitionend', this.__resize_handler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// timeout handler...
 | 
					
						
							|  |  |  | 			this.__post_resize && clearTimeout(this.__post_resize) | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							|  |  |  | 				this.__post_resize = setTimeout( | 
					
						
							|  |  |  | 					this.__resize_handler,  | 
					
						
							|  |  |  | 					this.config['resize-done-timeout'] || 300) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-05-01 22:41:03 +03:00
										 |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 	// Zooming/scaling post-transition action...
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 	// 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...
 | 
					
						
							|  |  |  | 	resizingDone: ['- Zoom/scale post-transition protocol action ' | 
					
						
							|  |  |  | 			+'(not for direct use)', | 
					
						
							|  |  |  | 		'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 acation.', | 
					
						
							|  |  |  | 		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.
 | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Zoom/scale protocol actions...
 | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 	setScale: ['- Zoom/', | 
					
						
							|  |  |  | 		function(scale){ | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 			this.resizing.chainCall(this, function(){ | 
					
						
							|  |  |  | 				this.ribbons && scale && this.ribbons.scale(scale) | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 				// NOTE: we pass explicit scale here to compensate for animation...
 | 
					
						
							|  |  |  | 				this.refresh('*', scale) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:54:44 +03:00
										 |  |  | 			}, 'scale', scale) | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	fitOrig: ['Zoom/Fit to original scale', | 
					
						
							|  |  |  | 		function(){  | 
					
						
							|  |  |  | 			this.resizing.chainCall(this, function(){ | 
					
						
							|  |  |  | 				this.ribbons.scale(1)  | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 				// NOTE: we pass explicit scale here to compensate for animation...
 | 
					
						
							|  |  |  | 				this.refresh('*', 1) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:54:44 +03:00
										 |  |  | 			}, 'scale', 1) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	// NOTE: if this gets a count argument it will fit count images, 
 | 
					
						
							|  |  |  | 	// 		default is one.
 | 
					
						
							|  |  |  | 	// NOTE: this will add .config['fit-overflow'] to odd counts if no 
 | 
					
						
							|  |  |  | 	// 		overflow if passed.
 | 
					
						
							|  |  |  | 	// 		...this is done to add ability to control scroll indication.
 | 
					
						
							|  |  |  | 	fitImage: ['Zoom/Fit image', | 
					
						
							|  |  |  | 		function(count, overflow){ | 
					
						
							|  |  |  | 			this.resizing.chainCall(this, function(){ | 
					
						
							|  |  |  | 				if(count != null){ | 
					
						
							|  |  |  | 					overflow = overflow == false ? 0 : overflow | 
					
						
							|  |  |  | 					var o = overflow != null ? overflow  | 
					
						
							|  |  |  | 						: count % 2 != 1 ? 0 | 
					
						
							|  |  |  | 						: (this.config['fit-overflow'] || 0) | 
					
						
							|  |  |  | 					count += o | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				this.ribbons.fitImage(count) | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 				// NOTE: we pass explicit scale here to compensate for animation...
 | 
					
						
							|  |  |  | 				this.refresh('*', this.ribbons.getScreenWidthImages(1) / count) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:54:44 +03:00
										 |  |  | 			}, 'screenwidth', count, overflow) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 	// NOTE: this does not account for ribbon spacing...
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	fitRibbon: ['Zoom/Fit ribbon vertically', | 
					
						
							|  |  |  | 		function(count, whole){ | 
					
						
							|  |  |  | 			this.resizing.chainCall(this, function(){ | 
					
						
							|  |  |  | 				this.ribbons.fitRibbon(count, whole) | 
					
						
							| 
									
										
										
										
											2016-06-16 04:49:17 +03:00
										 |  |  | 				// NOTE: we pass explicit scale here to compensate for animation...
 | 
					
						
							|  |  |  | 				this.refresh('*', this.ribbons.getScreenHeightRibbons(1, whole) / count) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:54:44 +03:00
										 |  |  | 			}, 'screenheight', count, whole) | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-23 19:41:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 21:27:12 +03:00
										 |  |  | 	// Zooming...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											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', | 
					
						
							|  |  |  | 		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', | 
					
						
							|  |  |  | 		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...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	fitMax: ['Zoom/Fit the maximum number of images', | 
					
						
							|  |  |  | 		function(){ this.fitImage(this.config['max-screen-images']) }], | 
					
						
							|  |  |  | 	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
										 |  |  | 
 | 
					
						
							|  |  |  | 	// NOTE: these work by getting the target position from .data...
 | 
					
						
							|  |  |  | 	shiftImageTo: [  | 
					
						
							|  |  |  | 		function(target){ return updateImagePosition(this, target) }], | 
					
						
							|  |  |  | 	shiftImageUp: [  | 
					
						
							|  |  |  | 		function(target){ return updateImagePosition(this, target) }], | 
					
						
							|  |  |  | 	shiftImageDown: [ | 
					
						
							|  |  |  | 		function(target){ return updateImagePosition(this, target) }], | 
					
						
							|  |  |  | 	shiftImageLeft: [ | 
					
						
							|  |  |  | 		function(target){ this.ribbons.placeImage(target, -1) }], | 
					
						
							|  |  |  | 	shiftImageRight: [ | 
					
						
							|  |  |  | 		function(target){ this.ribbons.placeImage(target, 1) }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 15:24:01 +03:00
										 |  |  | 	/* | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// XXX how should these animate???
 | 
					
						
							|  |  |  | 	travelImageUp: [ | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	travelImageDown: [ | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2016-03-30 15:24:01 +03:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	shiftRibbonUp: [ | 
					
						
							|  |  |  | 		function(target){ | 
					
						
							|  |  |  | 			target = this.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 			var i = this.ribbons.getRibbonOrder(target) | 
					
						
							|  |  |  | 			if(i > 0){ | 
					
						
							|  |  |  | 				this.ribbons.placeRibbon(target, i-1) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	shiftRibbonDown: [ | 
					
						
							|  |  |  | 		function(target){ | 
					
						
							|  |  |  | 			target = this.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 			var i = this.ribbons.getRibbonOrder(target) | 
					
						
							|  |  |  | 			if(i < this.data.ribbon_order.length-1){ | 
					
						
							|  |  |  | 				this.ribbons.placeRibbon(target, i+1) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	reverseImages: [ reloadAfter() ], | 
					
						
							|  |  |  | 	reverseRibbons: [ reloadAfter() ], | 
					
						
							| 
									
										
										
										
											2016-04-20 16:17:12 +03:00
										 |  |  | 	sortImages: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// basic image editing...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX should we have .rotate(..) and .flip(..) generic actions???
 | 
					
						
							|  |  |  | 	rotateCW: [  | 
					
						
							|  |  |  | 		function(target){ this.ribbons.rotateCW(target) }], | 
					
						
							|  |  |  | 	rotateCCW: [  | 
					
						
							|  |  |  | 		function(target){ this.ribbons.rotateCCW(target) }], | 
					
						
							|  |  |  | 	flipVertical: [  | 
					
						
							|  |  |  | 		function(target){ this.ribbons.flipVertical(target, 'view') }], | 
					
						
							|  |  |  | 	flipHorizontal: [ | 
					
						
							|  |  |  | 		function(target){ this.ribbons.flipHorizontal(target, 'view') }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-01 07:04:38 +03:00
										 |  |  | 	// XXX this needs an interactive mode -- mark A, mark B, align between
 | 
					
						
							| 
									
										
										
										
											2016-07-01 03:44:13 +03:00
										 |  |  | 	alignToRibbon: [ reloadAfter(true) ], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 13:16:28 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// ribbon rotation...
 | 
					
						
							| 
									
										
										
										
											2016-11-26 14:29:11 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-11-23 13:16:28 +03:00
										 |  |  | 	ribbonRotation: ['- Interface/',  | 
					
						
							|  |  |  | 		function(a){  | 
					
						
							| 
									
										
										
										
											2016-11-23 13:33:14 +03:00
										 |  |  | 			if(arguments.length > 0){ | 
					
						
							| 
									
										
										
										
											2016-11-23 13:16:28 +03:00
										 |  |  | 				this.ribbons.rotate(a) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				return this.ribbons.rotate() || 0 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											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-11-23 13:16:28 +03:00
										 |  |  | 	rotateRibbonCW: ['Interface/Rotate ribbon clockwise',  | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 		function(a){  | 
					
						
							|  |  |  | 			this.ribbonRotation('+='+ (a || this.config['ribbon-rotation-step'] || 10)) }], | 
					
						
							| 
									
										
										
										
											2016-11-23 13:16:28 +03:00
										 |  |  | 	rotateRibbonCCW: ['Interface/Rotate ribbon coounter clockwise',  | 
					
						
							| 
									
										
										
										
											2016-11-23 16:14:38 +03:00
										 |  |  | 		function(a){  | 
					
						
							|  |  |  | 			this.ribbonRotation('-='+ (a || this.config['ribbon-rotation-step'] || 10)) }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-23 13:33:14 +03:00
										 |  |  | 		resetRibbonRotation: ['Interface/Reset ribbon rotation', | 
					
						
							|  |  |  | 			function(){ this.ribbonRotation(0) }], | 
					
						
							| 
									
										
										
										
											2016-11-23 13:16:28 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	// tags...
 | 
					
						
							|  |  |  | 	tag: [  | 
					
						
							|  |  |  | 		function(tags, gids){  | 
					
						
							|  |  |  | 			gids = gids != null && gids.constructor !== Array ? [gids] : gids | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							|  |  |  | 				//this.ribbons.updateImage(gids) 
 | 
					
						
							|  |  |  | 				this.refresh(gids) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	untag: [ | 
					
						
							|  |  |  | 		function(tags, gids){  | 
					
						
							|  |  |  | 			gids = gids != null && gids.constructor !== Array ? [gids] : gids | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							|  |  |  | 				//this.ribbons.updateImage(gids) 
 | 
					
						
							|  |  |  | 				this.refresh(gids) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// group stuff...
 | 
					
						
							|  |  |  | 	group: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	ungroup: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	groupTo: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	groupMarked: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	expandGroup: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	collapseGroup: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX BUG? reloadAfter() here does not remove some images...
 | 
					
						
							|  |  |  | 	crop: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	// XXX BUG? reloadAfter() produces an align error...
 | 
					
						
							|  |  |  | 	uncrop: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	// XXX might be a good idea to do this in a new viewer in an overlay...
 | 
					
						
							|  |  |  | 	cropGroup: [ reloadAfter() ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX experimental: not sure if this is the right way to go...
 | 
					
						
							|  |  |  | 	// XXX make this play nice with crops...
 | 
					
						
							|  |  |  | 	toggleRibbonList: ['Interface/Toggle ribbons as images view', | 
					
						
							|  |  |  | 		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() | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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', | 
					
						
							| 
									
										
										
										
											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']) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2016-06-18 20:07:19 +03:00
										 |  |  | 		// force browser to redraw images after resize...
 | 
					
						
							|  |  |  | 		['resizingDone', | 
					
						
							|  |  |  | 			function(){ this.scale = this.scale }], | 
					
						
							| 
									
										
										
										
											2016-04-05 18:54:09 +03:00
										 |  |  | 		// manage the .crop-mode css class...
 | 
					
						
							| 
									
										
										
										
											2016-04-05 17:31:11 +03:00
										 |  |  | 		['crop uncrop', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2016-04-05 18:54:09 +03:00
										 |  |  | 				this.ribbons.viewer[this.cropped ?  | 
					
						
							|  |  |  | 						'addClass'  | 
					
						
							|  |  |  | 					: 'removeClass']('crop-mode') | 
					
						
							| 
									
										
										
										
											2016-04-05 17:31:11 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-27 20:07:48 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:55 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // User interfaces for different base features...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-05 01:32:47 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:55 +03:00
										 |  |  | // XXX tag dialogs...
 | 
					
						
							|  |  |  | // XXX
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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', | 
					
						
							| 
									
										
										
										
											2015-12-31 10:37:21 +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 | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Ribbons...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | // XXX manual align needs more work...
 | 
					
						
							|  |  |  | var AutoAlignRibbons =  | 
					
						
							|  |  |  | module.AutoAlignRibbons = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-ribbon-auto-align', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		// 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',		// use .config['ribbon-focus-mode']'s value
 | 
					
						
							|  |  |  | 			'visual', | 
					
						
							|  |  |  | 			'order', | 
					
						
							|  |  |  | 			'first', | 
					
						
							|  |  |  | 			//'last',
 | 
					
						
							|  |  |  | 			'manual', | 
					
						
							|  |  |  | 		], | 
					
						
							|  |  |  | 		'ribbon-align-mode': null, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: actions.Actions({ | 
					
						
							| 
									
										
										
										
											2016-04-28 18:45:16 +03:00
										 |  |  | 		alignRibbons: ['Interface/Align ribbons', | 
					
						
							| 
									
										
										
										
											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 mode = this.config['ribbon-align-mode']  | 
					
						
							|  |  |  | 					|| this.config['ribbon-focus-mode'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(mode == 'visual' || mode == 'order'){ | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 					this.alignByOrder(target, scale, now)  | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				} else if(mode == 'first'){ | 
					
						
							| 
									
										
										
										
											2016-04-29 03:49:18 +03:00
										 |  |  | 					this.alignByFirst(target, scale, now) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// manual...
 | 
					
						
							|  |  |  | 				// XXX is this correct???
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this | 
					
						
							| 
									
										
										
										
											2016-11-22 20:09:14 +03:00
										 |  |  | 						.centerRibbon(target) | 
					
						
							|  |  |  | 						.centerImage(target) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2016-04-28 18:45:16 +03:00
										 |  |  | 		toggleRibbonAlignMode : ['Interface/Toggle ribbon align mode', | 
					
						
							|  |  |  | 			core.makeConfigToggler('ribbon-align-mode',  | 
					
						
							|  |  |  | 				function(){ return this.config['ribbon-align-modes'] })], | 
					
						
							|  |  |  | 	}), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post',  | 
					
						
							|  |  |  | 			function(){ this.alignRibbons() }], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX should .alignByOrder(..) be a feature-specific action or global 
 | 
					
						
							|  |  |  | // 		as it is now???
 | 
					
						
							|  |  |  | var AlignRibbonsToImageOrder =  | 
					
						
							|  |  |  | module.AlignRibbonsToImageOrder = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-ribbon-align-to-order', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		//'ribbon-focus-mode': 'order',
 | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post', function(){ this.alignByOrder() }] | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var AlignRibbonsToFirstImage =  | 
					
						
							|  |  |  | module.AlignRibbonsToFirstImage = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-ribbon-align-to-first', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'first', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post', function(){ this.alignByFirst() }], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX needs more work...
 | 
					
						
							|  |  |  | // XXX need to save position in some way, ad on each load the same 
 | 
					
						
							|  |  |  | // 		initial state will get loaded...
 | 
					
						
							|  |  |  | // 		...also would need an initial state...
 | 
					
						
							|  |  |  | var ManualAlignRibbons =  | 
					
						
							|  |  |  | module.ManualAlignRibbons = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-ribbon-manual-align', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post', function(){  | 
					
						
							|  |  |  | 			this | 
					
						
							|  |  |  | 				.centerRibbon() | 
					
						
							|  |  |  | 				.centerImage() | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // Adds user management of different back-ends for low level ribbon 
 | 
					
						
							|  |  |  | // alignment and placement...
 | 
					
						
							|  |  |  | var RibbonsPlacement =  | 
					
						
							|  |  |  | module.RibbonsPlacement = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	tag: 'ui-ribbons-placement', | 
					
						
							|  |  |  | 	depends: [ 'ui' ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		// NOTE: the adapter names bust be registered in the ribbons module
 | 
					
						
							|  |  |  | 		// 		...not sure if this is good, but it's how it works now...
 | 
					
						
							|  |  |  | 		'ui-ribbons-placement-modes': { | 
					
						
							|  |  |  | 			'legacy': 'legacyDOMAdapter', | 
					
						
							|  |  |  | 			'new': 'DOMAdapter', | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		'ui-ribbons-placement-mode': 'new', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: actions.Actions({ | 
					
						
							|  |  |  | 		toggleRibbonsPlacementMode: ['- Interface/', | 
					
						
							|  |  |  | 			toggler.Toggler(null, function(_, state){  | 
					
						
							|  |  |  | 					if(state == null){ | 
					
						
							|  |  |  | 						return this.config['ui-ribbons-placement-mode'] | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.config['ui-ribbons-placement-mode'] = state | 
					
						
							|  |  |  | 					var modes = this.config['ui-ribbons-placement-modes'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.ribbons.dom = ribbons[modes[state]] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// NOTE: this will lose any state/configuration that
 | 
					
						
							|  |  |  | 					// 		was stored in ribbon dom...
 | 
					
						
							|  |  |  | 					this.ribbons.clear('full') | 
					
						
							|  |  |  | 					this.reload(true) | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				function(){  | 
					
						
							|  |  |  | 					return Object.keys(this.config['ui-ribbons-placement-modes']) } )], | 
					
						
							|  |  |  | 	}), | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 		['setup',  | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.toggleRibbonsPlacementMode(this.config['ui-ribbons-placement-mode']) | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Animation...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX at this point this does not support target lists...
 | 
					
						
							|  |  |  | // XXX shift up/down to new ribbon is not too correct...
 | 
					
						
							|  |  |  | var ShiftAnimation = | 
					
						
							|  |  |  | module.ShiftAnimation = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-animation', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		//['shiftImageUp.pre shiftImageDown.pre '
 | 
					
						
							|  |  |  | 		//		+'travelImageUp.pre travelImageDown.pre', 
 | 
					
						
							|  |  |  | 		['shiftImageUp.pre shiftImageDown.pre', | 
					
						
							|  |  |  | 			function(target){ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				// XXX do not do target lists...
 | 
					
						
							|  |  |  | 				if(target != null && target.constructor === Array  | 
					
						
							|  |  |  | 						// do not animate in single image mode...
 | 
					
						
							|  |  |  | 						&& this.toggleSingleImage('?') == 'on'){ | 
					
						
							|  |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				var s = this.ribbons.makeShadow(target, true) | 
					
						
							|  |  |  | 				return function(){ s() } | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		// NOTE: this will keep the shadow in place -- the shadow will not
 | 
					
						
							|  |  |  | 		// 		go to the mountain, the mountain will come to the shadow ;)
 | 
					
						
							|  |  |  | 		['shiftImageLeft.pre shiftImageRight.pre',  | 
					
						
							|  |  |  | 			function(target){ | 
					
						
							|  |  |  | 				// XXX do not do target lists...
 | 
					
						
							|  |  |  | 				if(target != null && target.constructor === Array | 
					
						
							|  |  |  | 						// do not animate in single image mode...
 | 
					
						
							|  |  |  | 						&& this.toggleSingleImage('?') == 'on'){ | 
					
						
							|  |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				var s = this.ribbons.makeShadow(target) | 
					
						
							|  |  |  | 				return function(){ s() } | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-20 20:59:19 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Mouse...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX add setup/taredown...
 | 
					
						
							|  |  |  | var Clickable =  | 
					
						
							|  |  |  | module.Clickable = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	tag: 'ui-clickable', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		'click-threshold': { | 
					
						
							|  |  |  | 			t: 100, | 
					
						
							|  |  |  | 			d: 5, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 		// setup click targets...
 | 
					
						
							|  |  |  | 		// XXX click only if we did not drag...
 | 
					
						
							|  |  |  | 		['updateImage',  | 
					
						
							|  |  |  | 			function(res, gid){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				var img = this.ribbons.getImage(gid) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 				// set the clicker only once...
 | 
					
						
							|  |  |  | 				if(!img.prop('clickable')){ | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 					var x, y, t, last, threshold | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 					img | 
					
						
							|  |  |  | 						.prop('clickable', true) | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 						.on('mousedown touchstart', function(evt){  | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 							threshold = that.config['click-threshold'] | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 							x = evt.clientX | 
					
						
							|  |  |  | 							y = evt.clientY | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 							t = Date.now() | 
					
						
							|  |  |  | 						}) | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 						.on('mouseup touchend', function(evt){  | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 							if(that.__control_in_progress){ | 
					
						
							|  |  |  | 								return | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							// prevent another handler within a timeout...
 | 
					
						
							|  |  |  | 							// XXX not too sure about this...
 | 
					
						
							|  |  |  | 							if(t - last < threshold.t){ | 
					
						
							|  |  |  | 								return | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 							// constrain distance between down and up events...
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 							if(x != null  | 
					
						
							|  |  |  | 								&& Math.max( | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 									Math.abs(x - evt.clientX),  | 
					
						
							|  |  |  | 									Math.abs(y - evt.clientY)) < threshold.d){ | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 								// this will prevent double clicks...
 | 
					
						
							|  |  |  | 								x = null | 
					
						
							|  |  |  | 								y = null | 
					
						
							|  |  |  | 								that.focusImage(that.ribbons.getElemGID($(this))) | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								last = Date.now() | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						}) | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 09:14:59 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | // Auto-hide cursor...
 | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							|  |  |  | // 		XXX needs testing...
 | 
					
						
							|  |  |  | // NOTE: chrome 49 + devtools open appears to prevent the cursor from 
 | 
					
						
							|  |  |  | // 		being hidden...
 | 
					
						
							|  |  |  | var AutoHideCursor =  | 
					
						
							|  |  |  | module.AutoHideCursor = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 	tag: 'ui-autohide-cursor', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui' | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 		'cursor-autohide-timeout': 1000, | 
					
						
							|  |  |  | 		'cursor-autohide-threshold': 10, | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: actions.Actions({ | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 		toggleAutoHideCursor: ['Interface/Toggle cursor auto hiding', | 
					
						
							|  |  |  | 			toggler.CSSClassToggler( | 
					
						
							|  |  |  | 				function(){ return this.ribbons.viewer },  | 
					
						
							|  |  |  | 				'cursor-hidden', | 
					
						
							|  |  |  | 				function(state){ | 
					
						
							|  |  |  | 					var that = this | 
					
						
							|  |  |  | 					var viewer = this.ribbons.viewer | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 					// setup...
 | 
					
						
							|  |  |  | 					if(state == 'on'){ | 
					
						
							|  |  |  | 						var x, y | 
					
						
							|  |  |  | 						var timer | 
					
						
							|  |  |  | 						var timeout = this.config['cursor-autohide-timeout'] || 1000 | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 						var handler  | 
					
						
							|  |  |  | 							= this.__cursor_autohide_handler  | 
					
						
							|  |  |  | 							= (this.__cursor_autohide_handler  | 
					
						
							|  |  |  | 								|| function(){ | 
					
						
							|  |  |  | 									timer && clearTimeout(timer) | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 									var threshold = that.config['cursor-autohide-threshold'] || 0 | 
					
						
							|  |  |  | 									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 | 
					
						
							|  |  |  | 											that.ribbons.viewer | 
					
						
							|  |  |  | 												.removeClass('cursor-hidden') | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									// show right away -- no threshold...
 | 
					
						
							|  |  |  | 									} else { | 
					
						
							|  |  |  | 										that.ribbons.viewer | 
					
						
							|  |  |  | 											.removeClass('cursor-hidden') | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									var timeout = that.config['cursor-autohide-timeout'] || 1000 | 
					
						
							|  |  |  | 									if(timeout && timeout > 0){ | 
					
						
							|  |  |  | 										timer = setTimeout(function(){ | 
					
						
							|  |  |  | 											var viewer = that.ribbons.viewer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 											if(!viewer.prop('cursor-autohide')){ | 
					
						
							|  |  |  | 												viewer.removeClass('cursor-hidden') | 
					
						
							|  |  |  | 												return | 
					
						
							|  |  |  | 											} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 											timer && viewer.addClass('cursor-hidden') | 
					
						
							|  |  |  | 										}, timeout) | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// do the base setup...
 | 
					
						
							|  |  |  | 						!viewer.prop('cursor-autohide') | 
					
						
							|  |  |  | 							&& viewer | 
					
						
							|  |  |  | 								.prop('cursor-autohide', true) | 
					
						
							|  |  |  | 								.addClass('cursor-hidden') | 
					
						
							|  |  |  | 								// prevent multiple handlers...
 | 
					
						
							|  |  |  | 								.off('mousemove', this.__cursor_autohide_handler) | 
					
						
							|  |  |  | 								.mousemove(handler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// teardown...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						viewer | 
					
						
							|  |  |  | 							.off('mousemove', this.__cursor_autohide_handler) | 
					
						
							|  |  |  | 							.prop('cursor-autohide', false) | 
					
						
							|  |  |  | 							.removeClass('cursor-hidden') | 
					
						
							|  |  |  | 						delete this.__cursor_autohide_handler | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				})], | 
					
						
							|  |  |  | 	}), | 
					
						
							| 
									
										
										
										
											2015-12-26 01:12:39 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | // 		This is to enable other events to handle the situation gracefully
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 		XXX how should multiple long interactions be handled??
 | 
					
						
							| 
									
										
										
										
											2016-04-02 19:44:14 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | // XXX add zoom...
 | 
					
						
							|  |  |  | // XXX add vertical pan to ribbon-set...
 | 
					
						
							|  |  |  | var DirectControlHammer =  | 
					
						
							|  |  |  | module.DirectControlHammer = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-direct-control-hammer', | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	exclusive: ['ui-control'], | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							|  |  |  | 		// this is only used to trigger reoad...
 | 
					
						
							|  |  |  | 		//'ui-partial-ribbons',
 | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		// 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-08 22:39:32 +03:00
										 |  |  | 	// XXX add setup/taredown...
 | 
					
						
							|  |  |  | 	// XXX add inertia...
 | 
					
						
							|  |  |  | 	// XXX hide current image indicator on drag...
 | 
					
						
							|  |  |  | 	// XXX add swipe up/down control...
 | 
					
						
							|  |  |  | 	// XXX add mode switching....
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	// XXX BUG: after panning and silent focus, marking works correctly 
 | 
					
						
							|  |  |  | 	// 		but image is not updated -- mark not drawn...
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// setup ribbon dragging...
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 		// XXX it is possible to drag over the loaded ribbon section with
 | 
					
						
							|  |  |  | 		// 		two fingers, need to force update somehow...
 | 
					
						
							|  |  |  | 		// 		...and need to try and make the update in a single frame...
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 		// 		Ways to go:
 | 
					
						
							|  |  |  | 		// 			- update on touchdown
 | 
					
						
							|  |  |  | 		// 			- update on liftoff
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 		// XXX drag in single image mode ONLY if image is larger than screen...
 | 
					
						
							|  |  |  | 		['updateRibbon',  | 
					
						
							|  |  |  | 			function(_, target){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				var r = this.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// setup dragging...
 | 
					
						
							|  |  |  | 				if(r.length > 0 && !r.hasClass('draggable')){ | 
					
						
							|  |  |  | 					r | 
					
						
							|  |  |  | 						.addClass('draggable') | 
					
						
							|  |  |  | 						.hammer() | 
					
						
							|  |  |  | 						.on('pan', function(evt){ | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 							//evt.stopPropagation()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 							// XXX stop all previous animations...
 | 
					
						
							|  |  |  | 							//r.velocity("stop")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							var d = that.ribbons.dom | 
					
						
							|  |  |  | 							var s = that.scale | 
					
						
							|  |  |  | 							var g = evt.gesture | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 							var data = r.data('drag-data') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 							// we just started...
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 							if(!data){ | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								that.__control_in_progress = (that.__control_in_progress || 0) + 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 								// hide and remove current image indicator...
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 								// NOTE: it will be reconstructed on 
 | 
					
						
							|  |  |  | 								// 		next .focusImage(..)
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 								var m = that.ribbons.viewer | 
					
						
							|  |  |  | 									.find('.current-marker') | 
					
						
							|  |  |  | 										.velocity({opacity: 0}, { | 
					
						
							|  |  |  | 											duration: 100, | 
					
						
							|  |  |  | 											complete: function(){ | 
					
						
							|  |  |  | 												m.remove() | 
					
						
							|  |  |  | 											}, | 
					
						
							|  |  |  | 										}) | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 								// store initial position...
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 								var data = { | 
					
						
							|  |  |  | 									left: d.getOffset(this).left | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 								r.data('drag-data', data) | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 							// do the actual move...
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 							d.setOffset(this, data.left + (g.deltaX / s)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 							// when done...
 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 							if(g.isFinal){ | 
					
						
							|  |  |  | 								r.removeData('drag-data') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 								// XXX this seems to have trouble with off-screen images...
 | 
					
						
							|  |  |  | 								var central = that.ribbons.getImageByPosition('center', r) | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 								// load stuff if needed...
 | 
					
						
							|  |  |  | 								that.updateRibbon(central) | 
					
						
							|  |  |  | 								 | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 								// XXX add inertia....
 | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | 								//console.log('!!!!', g.velocityX)
 | 
					
						
							|  |  |  | 								//r.velocity({
 | 
					
						
							|  |  |  | 								//	translateX: (data.left + g.deltaX + (g.velocityX * 10)) +'px'
 | 
					
						
							|  |  |  | 								//}, 'easeInSine')
 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 								// silently focus central image...
 | 
					
						
							|  |  |  | 								if(that.config['focus-central-image'] == 'silent'){ | 
					
						
							|  |  |  | 									that.data.current = that.ribbons.getElemGID(central) | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 									 | 
					
						
							| 
									
										
										
										
											2016-05-08 23:11:44 +03:00
										 |  |  | 								// focus central image in a normal manner...
 | 
					
						
							|  |  |  | 								} else if(that.config['focus-central-image']){ | 
					
						
							|  |  |  | 									that.focusImage(that.ribbons.getElemGID(central)) | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 								setTimeout(function(){ | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 									that.__control_in_progress -= 1 | 
					
						
							|  |  |  | 									if(that.__control_in_progress <= 0){ | 
					
						
							|  |  |  | 										delete that.__control_in_progress | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 								}, 50) | 
					
						
							| 
									
										
										
										
											2016-05-08 22:39:32 +03:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2015-12-18 07:55:14 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-30 07:50:02 +03:00
										 |  |  | // XXX try direct control with hammer.js
 | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | // XXX load state from config...
 | 
					
						
							|  |  |  | // XXX sometimes this makes the indicator hang for longer than needed...
 | 
					
						
							| 
									
										
										
										
											2015-12-30 07:50:02 +03:00
										 |  |  | // XXX BUG: this conflicts a bit whith ui-clickable...
 | 
					
						
							|  |  |  | // 		...use this with hammer.js taps instead...
 | 
					
						
							|  |  |  | // XXX might be a good idea to make a universal and extensible control 
 | 
					
						
							|  |  |  | // 		mode toggler...
 | 
					
						
							|  |  |  | // 		...obvious chice would seem to be a meta toggler:
 | 
					
						
							|  |  |  | // 			config['control-mode'] = {
 | 
					
						
							|  |  |  | // 				<mode-name>: <mode-toggler>
 | 
					
						
							|  |  |  | // 			}
 | 
					
						
							|  |  |  | // 			and the action will toggle the given mode on and the previous
 | 
					
						
							|  |  |  | // 			off...
 | 
					
						
							|  |  |  | // 			XXX this seems a bit too complicated...
 | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | var IndirectControl =  | 
					
						
							|  |  |  | module.IndirectControl = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-indirect-control', | 
					
						
							|  |  |  | 	// XXX is this correct???
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	exclusive: ['ui-control'], | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: actions.Actions({ | 
					
						
							|  |  |  | 		toggleSwipeHandling:['Interface/Toggle indirect control swipe handling', | 
					
						
							| 
									
										
										
										
											2015-12-31 10:37:21 +03:00
										 |  |  | 			toggler.Toggler(null, | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | 				function(_, state){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if(state == null){ | 
					
						
							| 
									
										
										
										
											2016-01-01 02:22:17 +03:00
										 |  |  | 						return (this.ribbons  | 
					
						
							|  |  |  | 								&& this.ribbons.viewer  | 
					
						
							|  |  |  | 								&& this.ribbons.viewer.data('hammer'))  | 
					
						
							|  |  |  | 							|| 'none' | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// on...
 | 
					
						
							|  |  |  | 					} else if(state == 'handling-swipes'){ | 
					
						
							|  |  |  | 						var that = this | 
					
						
							|  |  |  | 						var viewer = this.ribbons.viewer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// prevent multiple handlers...
 | 
					
						
							| 
									
										
										
										
											2016-01-01 02:22:17 +03:00
										 |  |  | 						if(viewer.data('hammer') != null){ | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | 							return | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						viewer.hammer() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-01 02:22:17 +03:00
										 |  |  | 						var h = viewer.data('hammer') | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | 						h.get('swipe').set({direction: Hammer.DIRECTION_ALL}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						viewer | 
					
						
							|  |  |  | 							.on('swipeleft', function(){ that.nextImage() }) | 
					
						
							|  |  |  | 							.on('swiperight', function(){ that.prevImage() }) | 
					
						
							|  |  |  | 							.on('swipeup', function(){ that.shiftImageUp() }) | 
					
						
							|  |  |  | 							.on('swipedown', function(){ that.shiftImageDown() }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// off...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						this.ribbons.viewer | 
					
						
							|  |  |  | 							.off('swipeleft') | 
					
						
							|  |  |  | 							.off('swiperight') | 
					
						
							|  |  |  | 							.off('swipeup') | 
					
						
							|  |  |  | 							.off('swipedown') | 
					
						
							|  |  |  | 							.removeData('hammer') | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				'handling-swipes')], | 
					
						
							|  |  |  | 	}), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['load',  | 
					
						
							|  |  |  | 			function(){ a.toggleSwipeHandling('on') }], | 
					
						
							|  |  |  | 		['stop',  | 
					
						
							|  |  |  | 			function(){ a.toggleSwipeHandling('off') }], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +03:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2015-12-30 07:20:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 09:14:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | // Experiment: use native scroll for ribbons and view...
 | 
					
						
							|  |  |  | // 	Factors:
 | 
					
						
							|  |  |  | // 		+ the browser will do all the heavy lifting and do it faster 
 | 
					
						
							|  |  |  | // 			than we can ever hope to do it in JS (assumption)
 | 
					
						
							|  |  |  | // 		- will require us to add an extra container per ribbon 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 	Experiment result:
 | 
					
						
							|  |  |  | // 		- more uniform and fast across browsers 
 | 
					
						
							|  |  |  | // 			(except FF -- can't disable scrollbars, need to cheat)
 | 
					
						
							|  |  |  | // 		- less controllable (inertia, gestures, ...)
 | 
					
						
							|  |  |  | // 		- is affected by scaling in a bad way -- paralax...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 	Conclusion:
 | 
					
						
							|  |  |  | // 		- this again brings us to using code to control the scroll
 | 
					
						
							|  |  |  | // 		  which in turn defeats the original purpose of avoiding
 | 
					
						
							|  |  |  | // 		  extra complexity...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 	See: 
 | 
					
						
							|  |  |  | // 		experiments/native-scroll-ribbon.html
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											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-05-09 03:32:46 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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...
 | 
					
						
							|  |  |  | 	// XXX BUG: after fast panning a non centered image is selected...
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	toggleRibbonPanHandling: ['Interface/Toggle ribbon pan handling', | 
					
						
							|  |  |  | 		toggler.Toggler(null, | 
					
						
							|  |  |  | 			function(){  | 
					
						
							|  |  |  | 				return this.ribbons  | 
					
						
							|  |  |  | 					&& this.ribbons.viewer  | 
					
						
							|  |  |  | 					&& this.ribbons.getRibbon().data('hammer') ? 'handling-pan' : 'none' }, | 
					
						
							|  |  |  | 			'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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var stop_scroll = this.__scroll_prevnter =  | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 					this.__scroll_prevnter || function(evt){ evt.preventDefault() } | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 				var handler = this.__pan_handler = this.__pan_handler || function(_, target){ | 
					
						
							|  |  |  | 					// XXX
 | 
					
						
							|  |  |  | 					var that = this | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					var r = this.ribbons.getRibbon(target) | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 					var rgid = this.ribbons.getElemGID(r) | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 					var data = false | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 					var post_handlers | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// setup dragging...
 | 
					
						
							|  |  |  | 					if(r.length > 0 && !r.hasClass('draggable')){ | 
					
						
							|  |  |  | 						r | 
					
						
							|  |  |  | 							.addClass('draggable') | 
					
						
							|  |  |  | 							.hammer() | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						r.data('hammer') | 
					
						
							|  |  |  | 							.get('pan') | 
					
						
							|  |  |  | 								.set({ | 
					
						
							|  |  |  | 									direction: Hammer.DIRECTION_HORIZONTAL, | 
					
						
							|  |  |  | 									threshold: this.config['ribbon-pan-threshold'], | 
					
						
							|  |  |  | 								}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 						r.on('touchmove mousemove', stop_scroll) | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 						r.on('pan', function(evt){ | 
					
						
							|  |  |  | 							//evt.stopPropagation()
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							// XXX stop all previous animations...
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 							//r.velocity("stop")
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							var d = that.ribbons.dom | 
					
						
							|  |  |  | 							var g = evt.gesture | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 							var s = that.scale | 
					
						
							| 
									
										
										
										
											2016-12-07 02:03:10 +03:00
										 |  |  | 							var vmin = Math.min(document.body.offsetWidth, document.body.offsetHeight) | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 							// we just started...
 | 
					
						
							|  |  |  | 							if(!data){ | 
					
						
							|  |  |  | 								that.__control_in_progress = (that.__control_in_progress || 0) + 1 | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 								post_handlers = that.ribbonPanning.pre(that, [rgid]) | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 								// XXX prevent IE from fighting transitions...
 | 
					
						
							|  |  |  | 								that.ribbons.preventTransitions(r) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 								// store initial position...
 | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 								data = { | 
					
						
							|  |  |  | 									//left: d.getOffset(this).left,
 | 
					
						
							| 
									
										
										
										
											2016-12-07 02:03:10 +03:00
										 |  |  | 									left: parseFloat(($(this).transform('translate3d') || [0])[0])/100 * vmin, | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 									pointers: g.pointers.length, | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 								} | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 								// restart the renderer...
 | 
					
						
							|  |  |  | 								renderer = renderer && cancelAnimationFrame(renderer) | 
					
						
							|  |  |  | 								if(that.config['animation-frame-renderer']){ | 
					
						
							|  |  |  | 									renderer = requestAnimationFrame(render) | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							} | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 							// animation frame render...
 | 
					
						
							|  |  |  | 							if(renderer){ | 
					
						
							|  |  |  | 								// queue a render...
 | 
					
						
							|  |  |  | 								render_data[rgid] = { | 
					
						
							|  |  |  | 									ribbon: r, | 
					
						
							| 
									
										
										
										
											2016-12-07 02:03:10 +03:00
										 |  |  | 									x: ((data.left + (g.deltaX / s)) / vmin * 100) + 'vmin', | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// inline render...
 | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								// do the actual move...
 | 
					
						
							| 
									
										
										
										
											2016-12-07 02:03:10 +03:00
										 |  |  | 								r.transform({ | 
					
						
							|  |  |  | 									x: ((data.left + (g.deltaX / s)) / vmin * 100) + 'vmin', | 
					
						
							|  |  |  | 								}) | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 								/* 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-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							// update ribbon when "pulling" with two fingers...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 02:45:54 +03:00
										 |  |  | 							//
 | 
					
						
							|  |  |  | 							// NOTE: this only happens when number of fingers
 | 
					
						
							|  |  |  | 							// 		changes, thus no lag should be noticeable...
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							if(g.pointers.length != data.pointers){ | 
					
						
							|  |  |  | 								data.pointers = g.pointers.length | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 								// load stuff if needed...
 | 
					
						
							|  |  |  | 								that.updateRibbon(that.ribbons.getImageByPosition('center', r)) | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 							// we are done...
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							if(g.isFinal){ | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 								data = false | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 								// XXX is this the correct way to do this???
 | 
					
						
							|  |  |  | 								requestAnimationFrame(function(){ | 
					
						
							|  |  |  | 									var central = that.ribbons.getImageByPosition('center', r) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									var rl = r.offset().left | 
					
						
							|  |  |  | 									var cl = central && central.offset().left | 
					
						
							| 
									
										
										
										
											2016-12-07 02:10:24 +03:00
										 |  |  | 									var w = central && central.outerWidth(true) | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 									var W = that.ribbons.viewer.width() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									// 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 = that.data.getImage(rl < 0 ? -1 : 0, rgid) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 										that.centerImage(gid) | 
					
						
							|  |  |  | 										central = that.ribbons.getImage(gid) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 									// partly out the left -- show last image...
 | 
					
						
							|  |  |  | 									} else if(cl < 0){ | 
					
						
							|  |  |  | 										r.transform({  | 
					
						
							| 
									
										
										
										
											2016-12-07 02:03:10 +03:00
										 |  |  | 											x: (parseFloat((r.transform('translate3d') || [0])[0])  | 
					
						
							|  |  |  | 												- ((cl / s) / vmin * 100)) + 'vmin' | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 										}) | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 									// partly out the right -- show first image...
 | 
					
						
							| 
									
										
										
										
											2016-12-07 02:10:24 +03:00
										 |  |  | 									} else if(cl + w > W){ | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 										r.transform({ | 
					
						
							| 
									
										
										
										
											2016-12-07 02:03:10 +03:00
										 |  |  | 											x: (parseFloat((r.transform('translate3d') || [0])[0])  | 
					
						
							| 
									
										
										
										
											2016-12-07 02:10:24 +03:00
										 |  |  | 												+ (((W - (cl + w)) / s) / vmin * 100)) + 'vmin' | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 										}) | 
					
						
							| 
									
										
										
										
											2016-05-16 04:49:52 +03:00
										 |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 									// load stuff if needed...
 | 
					
						
							|  |  |  | 									that.updateRibbon(central) | 
					
						
							|  |  |  | 									 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 									// XXX is this the right place for this???
 | 
					
						
							|  |  |  | 									that.ribbons.restoreTransitions(r) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 									// XXX add inertia....
 | 
					
						
							| 
									
										
										
										
											2016-05-21 02:07:47 +03:00
										 |  |  | 									// XXX
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 									// see if we need to change focus...
 | 
					
						
							|  |  |  | 									var current_ribbon = that.data.getRibbon() | 
					
						
							|  |  |  | 									if(current_ribbon == rgid){ | 
					
						
							|  |  |  | 										var gid = that.ribbons.getElemGID(central) | 
					
						
							|  |  |  | 										// silently focus central image...
 | 
					
						
							|  |  |  | 										if(that.config['focus-central-image'] == 'silent'){ | 
					
						
							|  |  |  | 											that.data.focusImage(gid) | 
					
						
							| 
									
										
										
										
											2016-05-28 21:36:17 +03:00
										 |  |  | 											that.ribbons.focusImage(that.current) | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +03:00
										 |  |  | 											 | 
					
						
							|  |  |  | 										// focus central image in a normal manner...
 | 
					
						
							|  |  |  | 										} else if(that.config['focus-central-image']){ | 
					
						
							|  |  |  | 											that.data.focusImage(gid) | 
					
						
							|  |  |  | 											that.focusImage() | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 05:48:25 +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-05-11 03:22:39 +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
										 |  |  | 
 | 
					
						
							|  |  |  | 										//that.ribbonPanning.post(that, post_handlers)
 | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 									} | 
					
						
							| 
									
										
										
										
											2016-05-16 00:56:15 +03:00
										 |  |  | 								}, that.config['control-in-progress-timeout'] || 100) | 
					
						
							| 
									
										
										
										
											2016-05-11 03:22:39 +03:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						}) | 
					
						
							| 
									
										
										
										
											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-05-11 05:00:40 +03:00
										 |  |  | 					this.off('updateRibbon', handler) | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					this.on('updateRibbon', handler) | 
					
						
							| 
									
										
										
										
											2016-05-11 05:00:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 					this.data.ribbon_order.forEach(function(gid){ | 
					
						
							|  |  |  | 						handler.call(that, null, gid) | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// off...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this.off('updateRibbon', handler) | 
					
						
							| 
									
										
										
										
											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-05-10 17:02:38 +03:00
										 |  |  | 						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-05-09 03:32:46 +03:00
										 |  |  | 							.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
										 |  |  | 
 | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	togglePinchHandling: ['Interface/Toggle pinch zoom handling', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 03:32:46 +03:00
										 |  |  | 	toggleSwipeHandling: ['Interface/Toggle swipe handling', | 
					
						
							|  |  |  | 		toggler.Toggler(null, | 
					
						
							|  |  |  | 			function(_, state){  | 
					
						
							|  |  |  | 				return this.ribbons  | 
					
						
							|  |  |  | 					&& this.ribbons.viewer  | 
					
						
							|  |  |  | 					&& this.ribbons.viewer.data('hammer') ? 'handling-swipes' : 'none' }, | 
					
						
							|  |  |  | 			'handling-swipes', | 
					
						
							|  |  |  | 			function(state){ | 
					
						
							| 
									
										
										
										
											2016-05-09 17:25:26 +03:00
										 |  |  | 				var viewer = this.ribbons.viewer | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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') | 
					
						
							|  |  |  | 							.set({direction: Hammer.DIRECTION_ALL}) | 
					
						
							| 
									
										
										
										
											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') | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			})], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-09 04:45:04 +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, | 
					
						
							|  |  |  | 			function(){ return this.config['control-mode'] }, | 
					
						
							|  |  |  | 			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 | 
					
						
							|  |  |  | 			})], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var Control =  | 
					
						
							|  |  |  | module.Control = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-control', | 
					
						
							|  |  |  | 	//exclusive: ['ui-control'],
 | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui' | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 	actions: ControlActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['load', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.toggleSwipeHandling('on') | 
					
						
							|  |  |  | 				this.toggleRibbonPanHandling('on') | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['stop', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.toggleSwipeHandling('off') | 
					
						
							|  |  |  | 				this.toggleRibbonPanHandling('off') | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['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
										 |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // XXX experimental...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // 		...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 }) |