2013-01-24 02:58:13 +04:00
|
|
|
/**********************************************************************
|
2013-01-24 03:12:01 +04:00
|
|
|
* JavaScript Lib
|
|
|
|
|
* at this point this is just a place I put most of the generic stuff I
|
|
|
|
|
* use.
|
|
|
|
|
*
|
|
|
|
|
* P.S. the name "jli" just stands for Java script LIb, like how it
|
|
|
|
|
* looks...
|
2013-01-24 02:58:13 +04:00
|
|
|
**********************************************************************/
|
|
|
|
|
|
2013-01-26 22:48:59 +04:00
|
|
|
//var DEBUG = DEBUG != null ? DEBUG : true
|
2013-01-24 02:58:13 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
2013-02-09 07:17:40 +04:00
|
|
|
// this will create a function that will cycle through a class_list on elem
|
2013-01-24 02:58:13 +04:00
|
|
|
// calling the optional callbacks before and/or after.
|
2013-02-09 07:17:40 +04:00
|
|
|
// if class_list is given as a string, then this will create a toggler that
|
|
|
|
|
// will turn the given class on the element on and off.
|
2013-01-24 02:58:13 +04:00
|
|
|
//
|
|
|
|
|
// elem is a jquery compatible object; default use-case: a css selector.
|
|
|
|
|
//
|
2013-02-10 03:05:15 +04:00
|
|
|
// if class_list is a string, the resulting function understands the
|
2013-02-09 07:17:40 +04:00
|
|
|
// folowing arguments:
|
|
|
|
|
// - <index> : 0 for 'off' and 1 for 'on' (see below)
|
2013-02-09 16:26:17 +04:00
|
|
|
// - 'on' : switch mode on -- add class
|
|
|
|
|
// - 'off' : switch mode off -- remove class
|
2013-01-24 02:58:13 +04:00
|
|
|
// - '?' : return current state ('on'|'off')
|
|
|
|
|
// - no arguments : toggle the state
|
|
|
|
|
//
|
2013-02-10 03:05:15 +04:00
|
|
|
// otherwise, if class_list is a list of strings:
|
2013-02-09 07:17:40 +04:00
|
|
|
// - <index> : explicitly set the state to index in class_list
|
|
|
|
|
// - <class-name> : explicitly set a class from the list
|
|
|
|
|
// - '?' : return current state ('on'|'off')
|
|
|
|
|
// - no arguments : set next state in cycle
|
|
|
|
|
//
|
2013-02-09 16:26:17 +04:00
|
|
|
// NOTE: a special class name 'none' means no class is set, if it is present
|
|
|
|
|
// in the class_list then that state will be with all other state
|
|
|
|
|
// classes removed.
|
2013-02-09 07:17:40 +04:00
|
|
|
// NOTE: <class-name> must be an exact match to a string given in class_list
|
2013-01-24 02:58:13 +04:00
|
|
|
// NOTE: of only one callback is given then it will be called after the
|
2013-02-09 16:26:17 +04:00
|
|
|
// class change...
|
|
|
|
|
// a way around this is to pass an empty function as callback_b
|
2013-01-24 02:58:13 +04:00
|
|
|
//
|
2013-02-09 01:47:04 +04:00
|
|
|
function createCSSClassToggler(elem, class_list, callback_a, callback_b){
|
|
|
|
|
var bool_action = false
|
|
|
|
|
if(typeof(class_list) == typeof('')){
|
|
|
|
|
class_list = ['none', class_list]
|
|
|
|
|
bool_action = true
|
|
|
|
|
}
|
2013-01-24 02:58:13 +04:00
|
|
|
if(callback_b == null){
|
|
|
|
|
var callback_pre = null
|
|
|
|
|
var callback_post = callback_a
|
|
|
|
|
} else {
|
|
|
|
|
var callback_pre = callback_a
|
|
|
|
|
var callback_post = callback_b
|
|
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
|
|
|
|
|
// XXX make this generic...
|
2013-01-24 02:58:13 +04:00
|
|
|
var func = function(action){
|
2013-02-09 01:47:04 +04:00
|
|
|
elem = $(elem)
|
|
|
|
|
// option number...
|
|
|
|
|
if(typeof(action) == typeof(1)){
|
|
|
|
|
// range check...
|
|
|
|
|
if(action < 0 || action >= class_list.length){
|
|
|
|
|
return null
|
|
|
|
|
}
|
|
|
|
|
if(bool_action){
|
|
|
|
|
action = action == 0 ? 'off' : 'on'
|
|
|
|
|
} else {
|
|
|
|
|
action = class_list[action]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// we need to get the current state...
|
2013-01-24 02:58:13 +04:00
|
|
|
if(action == null || action == '?'){
|
|
|
|
|
// get current state...
|
2013-02-09 01:47:04 +04:00
|
|
|
var cur = 'none'
|
|
|
|
|
for(var i=0; i < class_list.length; i++){
|
|
|
|
|
if(elem.hasClass(class_list[i])){
|
|
|
|
|
cur = class_list[i]
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// just asking for info...
|
|
|
|
|
if(action == '?'){
|
|
|
|
|
return bool_action ? (cur == 'none' ? 'off' : 'on') : cur
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
|
|
|
|
|
// invalid action...
|
|
|
|
|
} else if((bool_action && ['on', 'off'].indexOf(action) == -1)
|
|
|
|
|
|| (!bool_action && class_list.indexOf(action) == -1)){
|
|
|
|
|
return null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var cls = bool_action ? class_list[1] : action
|
|
|
|
|
// get the right class...
|
|
|
|
|
if(action == null){
|
|
|
|
|
var i = class_list.indexOf(cur)+1
|
|
|
|
|
i = i == -1 ? 0 : i
|
|
|
|
|
i = i == class_list.length ? 0 : i
|
|
|
|
|
cls = class_list[i]
|
|
|
|
|
|
|
|
|
|
if(bool_action){
|
|
|
|
|
action = cls == 'none' ? 'off' : 'on'
|
|
|
|
|
} else {
|
|
|
|
|
action = cls
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
|
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
|
|
|
|
|
// pre callback...
|
|
|
|
|
if(callback_a != null){
|
|
|
|
|
callback_a(action)
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
// update the element...
|
|
|
|
|
elem.removeClass(class_list.join(' '))
|
|
|
|
|
if(cls != 'none' && action != 'off'){
|
|
|
|
|
elem.addClass(cls)
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
// post callback...
|
|
|
|
|
if(callback_b != null){
|
|
|
|
|
callback_b(action)
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
|
|
|
|
|
return action
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
2013-02-09 01:47:04 +04:00
|
|
|
|
|
|
|
|
func.class_list = class_list
|
|
|
|
|
if(bool_action){
|
|
|
|
|
func.doc = 'With no arguments this will toggle between "on" and '+
|
|
|
|
|
'"off".\n'+
|
|
|
|
|
'If either "on" or "off" are given then this will switch '+
|
|
|
|
|
'to that mode.\n'+
|
|
|
|
|
'If "?" is given, this will return either "on" or "off" '+
|
|
|
|
|
'depending on the current state.'
|
|
|
|
|
}else{
|
|
|
|
|
func.doc = 'With no arguments this will toggle between '+
|
|
|
|
|
class_list +' in cycle.\n' +
|
|
|
|
|
'if any of the state names or its number is given then that '+
|
|
|
|
|
'state is switched on.'+
|
|
|
|
|
'If "?" is given, this will return the current state.'
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-24 02:58:13 +04:00
|
|
|
return func
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-02-09 01:47:04 +04:00
|
|
|
|
2013-01-24 02:58:13 +04:00
|
|
|
// show a jQuary opject in viewer overlay...
|
|
|
|
|
// XXX need to set .scrollTop(0) when showing different UI...
|
|
|
|
|
// ...and not set it when the UI is the same
|
|
|
|
|
// XXX this must create it's own overlay...
|
|
|
|
|
function showInOverlay(obj){
|
|
|
|
|
obj.click(function(){ return false })
|
|
|
|
|
// XXX
|
|
|
|
|
$('.viewer').addClass('overlay-mode')
|
|
|
|
|
// clean things up...
|
|
|
|
|
$('.overlay .content').children().remove()
|
|
|
|
|
// put it in the overlay...
|
|
|
|
|
$('.overlay .content').append(obj)
|
|
|
|
|
// prepare the overlay...
|
|
|
|
|
$('.overlay')
|
|
|
|
|
.one('click', function(){
|
|
|
|
|
$('.overlay')
|
|
|
|
|
.fadeOut(function(){
|
|
|
|
|
$('.overlay .content')
|
|
|
|
|
.children()
|
|
|
|
|
.remove()
|
|
|
|
|
$('.overlay-mode').removeClass('overlay-mode')
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.fadeIn()
|
|
|
|
|
return obj
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function overlayMessage(text){
|
|
|
|
|
return showInOverlay($('<div class="overlay-message">' +text+ '</div>'))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function unanimated(obj, func, time){
|
|
|
|
|
return function(){
|
|
|
|
|
if(time == null){
|
|
|
|
|
time = 5
|
|
|
|
|
}
|
2013-02-13 17:27:04 +04:00
|
|
|
obj = $(obj)
|
2013-01-24 02:58:13 +04:00
|
|
|
obj.addClass('unanimated')
|
|
|
|
|
var res = func.apply(func, arguments)
|
|
|
|
|
setTimeout(function(){obj.removeClass('unanimated')}, time)
|
|
|
|
|
return res
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-26 21:55:38 +04:00
|
|
|
|
|
|
|
|
|
2013-02-19 19:34:03 +04:00
|
|
|
// NOTE: at this point this works only on the X axis...
|
|
|
|
|
function setElementTransform(elem, offset, scale){
|
|
|
|
|
if(offset == null){
|
|
|
|
|
var offset = getElementShift(elem).left
|
|
|
|
|
}
|
|
|
|
|
if(scale == null){
|
|
|
|
|
var scale = getElementScale(elem)
|
|
|
|
|
}
|
|
|
|
|
if(USE_TRANSFORM){
|
|
|
|
|
var transform = 'translate('+ offset +'px, 0px) scale('+ scale +') translateZ(0px)'
|
|
|
|
|
elem.css({
|
|
|
|
|
'-ms-transform' : transform,
|
|
|
|
|
'-webkit-transform' : transform,
|
|
|
|
|
'-moz-transform' : transform,
|
|
|
|
|
'-o-transform' : transform,
|
|
|
|
|
'transform' : transform,
|
|
|
|
|
|
|
|
|
|
// XXX can we avoid this here??
|
|
|
|
|
left: 0
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
var transform = 'translate(0px, 0px) scale('+ scale +') translateZ(0px)'
|
|
|
|
|
elem.css({
|
|
|
|
|
// NOTE: this will be wrong during a transition, that's why we
|
|
|
|
|
// can pass the pre-calculated offset as an argument...
|
|
|
|
|
left: offset,
|
|
|
|
|
|
|
|
|
|
// XXX can we avoid this here??
|
|
|
|
|
'-ms-transform' : transform,
|
|
|
|
|
'-webkit-transform' : transform,
|
|
|
|
|
'-moz-transform' : transform,
|
|
|
|
|
'-o-transform' : transform,
|
|
|
|
|
'transform' : transform,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
return elem
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-24 02:58:13 +04:00
|
|
|
// Return a scale value for the given element(s).
|
|
|
|
|
// NOTE: this will only return a single scale value...
|
|
|
|
|
function getElementScale(elem){
|
2013-02-14 18:25:00 +04:00
|
|
|
elem = $(elem)
|
2013-01-24 02:58:13 +04:00
|
|
|
//var transform = elem.css('transform')
|
|
|
|
|
var vendors = ['o', 'moz', 'ms', 'webkit']
|
|
|
|
|
var transform = elem.css('transform')
|
|
|
|
|
var res
|
|
|
|
|
|
|
|
|
|
// go through vendor prefixes... (hate this!)
|
|
|
|
|
if(!transform || transform == 'none'){
|
|
|
|
|
for(var i in vendors){
|
|
|
|
|
transform = elem.css('-' + vendors[i] + '-transform')
|
|
|
|
|
if(transform && transform != 'none'){
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// no transform is set...
|
|
|
|
|
if(!transform || transform == 'none'){
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
// get the scale value -- first argument of scale/matrix...
|
|
|
|
|
return parseFloat((/(scale|matrix)\(([^,]*),.*\)/).exec(transform)[2])
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-19 19:34:03 +04:00
|
|
|
// XXX account for other transitions...
|
2013-01-24 02:58:13 +04:00
|
|
|
function setElementScale(elem, scale){
|
2013-02-19 19:34:03 +04:00
|
|
|
return setElementTransform(elem, null, scale)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getElementShift(elem){
|
|
|
|
|
elem = $(elem)
|
|
|
|
|
// using transform...
|
|
|
|
|
if(USE_TRANSFORM){
|
|
|
|
|
var vendors = ['o', 'moz', 'ms', 'webkit']
|
|
|
|
|
var transform = elem.css('transform')
|
|
|
|
|
var res
|
|
|
|
|
|
|
|
|
|
// go through vendor prefixes... (hate this!)
|
|
|
|
|
if(!transform || transform == 'none'){
|
|
|
|
|
for(var i in vendors){
|
|
|
|
|
transform = elem.css('-' + vendors[i] + '-transform')
|
|
|
|
|
if(transform && transform != 'none'){
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// no transform is set...
|
|
|
|
|
if(!transform || transform == 'none'){
|
|
|
|
|
return {left: 0, top: 0}
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
left: parseFloat(/(translate\(|matrix\([^,]*,[^,]*,[^,]*,[^,]*,)([^,]*),/.exec(transform)[2]),
|
|
|
|
|
top: null
|
|
|
|
|
}
|
|
|
|
|
// using left...
|
|
|
|
|
} else {
|
|
|
|
|
return {
|
|
|
|
|
left: elem.position().left,
|
|
|
|
|
top: null
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-01-24 02:58:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-02-07 03:24:57 +04:00
|
|
|
function setTransitionDuration(elem, ms){
|
|
|
|
|
if(typeof(ms) == typeof(0)){
|
|
|
|
|
ms = ms + 'ms'
|
|
|
|
|
}
|
|
|
|
|
return elem.css({
|
|
|
|
|
'transition-duration': ms,
|
|
|
|
|
'-moz-transition-duration': ms,
|
|
|
|
|
'-o-transition-duration': ms,
|
|
|
|
|
'-ms-transition-duration': ms,
|
|
|
|
|
'-webkit-transition-duration': ms
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-01-27 22:41:06 +04:00
|
|
|
|
|
|
|
|
/************************************************* keyboard handler **/
|
|
|
|
|
|
|
|
|
|
// NOTE: don't understand why am I the one who has to write this...
|
|
|
|
|
var SPECIAL_KEYS = {
|
|
|
|
|
9: 'Tab',
|
|
|
|
|
13: 'Enter',
|
|
|
|
|
16: 'Shift',
|
|
|
|
|
17: 'Ctrl',
|
|
|
|
|
18: 'Alt',
|
|
|
|
|
20: 'Caps Lock',
|
|
|
|
|
27: 'Esc',
|
|
|
|
|
32: 'Space',
|
|
|
|
|
33: 'PgUp',
|
|
|
|
|
34: 'PgDown',
|
|
|
|
|
35: 'End',
|
|
|
|
|
36: 'Home',
|
|
|
|
|
37: 'Right',
|
|
|
|
|
38: 'Up',
|
|
|
|
|
39: 'Left',
|
|
|
|
|
40: 'Down',
|
|
|
|
|
45: 'Ins',
|
|
|
|
|
46: 'Del',
|
|
|
|
|
80: 'Backspace',
|
|
|
|
|
91: 'Win',
|
|
|
|
|
93: 'Menu',
|
|
|
|
|
|
|
|
|
|
112: 'F1',
|
|
|
|
|
113: 'F2',
|
|
|
|
|
114: 'F3',
|
|
|
|
|
115: 'F4',
|
|
|
|
|
116: 'F5',
|
|
|
|
|
117: 'F6',
|
|
|
|
|
118: 'F7',
|
|
|
|
|
119: 'F8',
|
|
|
|
|
120: 'F9',
|
|
|
|
|
121: 'F10',
|
|
|
|
|
122: 'F11',
|
|
|
|
|
123: 'F12',
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX some keys look really wrong...
|
|
|
|
|
function toKeyName(code){
|
|
|
|
|
// check for special keys...
|
|
|
|
|
var k = SPECIAL_KEYS[code]
|
|
|
|
|
if(k != null){
|
|
|
|
|
return k
|
|
|
|
|
}
|
|
|
|
|
// chars...
|
|
|
|
|
k = String.fromCharCode(code)
|
|
|
|
|
if(k != ''){
|
|
|
|
|
return k.toLowerCase()
|
|
|
|
|
}
|
|
|
|
|
return null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if set to false the event handlers will always return false...
|
2013-01-27 23:56:30 +04:00
|
|
|
var KEYBOARD_HANDLER_PROPAGATE = true
|
2013-01-27 22:41:06 +04:00
|
|
|
|
|
|
|
|
/* Basic key format:
|
2013-01-29 22:25:51 +04:00
|
|
|
*
|
2013-01-27 22:41:06 +04:00
|
|
|
* <key-code> : <callback>,
|
2013-01-29 22:25:51 +04:00
|
|
|
*
|
2013-01-27 22:41:06 +04:00
|
|
|
* <key-code> : {
|
|
|
|
|
* 'default': <callback>,
|
|
|
|
|
* // a modifier can be any single modifier, like shift or a
|
|
|
|
|
* // combination of modifers like 'ctrl+shift', given in order
|
|
|
|
|
* // of priority.
|
|
|
|
|
* // supported modifiers are (in order of priority):
|
|
|
|
|
* // - ctrl
|
|
|
|
|
* // - alt
|
|
|
|
|
* // - shift
|
|
|
|
|
* <modifer>: [...]
|
|
|
|
|
* },
|
2013-01-29 22:25:51 +04:00
|
|
|
*
|
2013-01-27 22:41:06 +04:00
|
|
|
* <key-code> : [
|
|
|
|
|
* // this can be any type of handler except for an alias...
|
|
|
|
|
* <handler>,
|
|
|
|
|
* <doc>
|
|
|
|
|
* ],
|
2013-01-29 22:25:51 +04:00
|
|
|
*
|
2013-01-27 22:41:06 +04:00
|
|
|
* // alias...
|
|
|
|
|
* <key-code-a> : <key-code-b>,
|
|
|
|
|
*
|
|
|
|
|
* XXX might need to add meta information to generate sensible help...
|
|
|
|
|
*/
|
|
|
|
|
function makeKeyboardHandler(keybindings, unhandled){
|
|
|
|
|
if(unhandled == null){
|
2013-01-31 02:46:02 +04:00
|
|
|
//unhandled = function(){return false}
|
|
|
|
|
unhandled = function(){return KEYBOARD_HANDLER_PROPAGATE}
|
2013-01-27 22:41:06 +04:00
|
|
|
}
|
|
|
|
|
return function(evt){
|
|
|
|
|
var did_handling = false
|
|
|
|
|
var res = null
|
|
|
|
|
for(var mode in keybindings){
|
|
|
|
|
if($(mode).length > 0){
|
|
|
|
|
var bindings = keybindings[mode]
|
|
|
|
|
|
|
|
|
|
var key = evt.keyCode
|
2013-01-31 02:46:02 +04:00
|
|
|
if(bindings.ignore == '*'
|
|
|
|
|
|| bindings.ignore != null && bindings.ignore.indexOf(key) != -1){
|
2013-01-27 22:41:06 +04:00
|
|
|
// return true
|
2013-01-29 21:41:26 +04:00
|
|
|
res = res == null ? true : res
|
2013-01-27 22:41:06 +04:00
|
|
|
did_handling = true
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
// XXX ugly...
|
|
|
|
|
var modifers = evt.ctrlKey ? 'ctrl' : ''
|
|
|
|
|
modifers += evt.altKey ? (modifers != '' ? '+alt' : 'alt') : ''
|
|
|
|
|
modifers += evt.shiftKey ? (modifers != '' ? '+shift' : 'shift') : ''
|
|
|
|
|
|
|
|
|
|
var handler = bindings[key]
|
|
|
|
|
|
|
|
|
|
// alias...
|
|
|
|
|
while (typeof(handler) == typeof(123)) {
|
|
|
|
|
handler = bindings[handler]
|
|
|
|
|
}
|
|
|
|
|
// no handler...
|
|
|
|
|
if(handler == null){
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
// Array, lisp style with docs...
|
|
|
|
|
// XXX for some odd reason in chrome typeof([]) == typeof({})!!!
|
|
|
|
|
if(typeof(handler) == typeof([]) && handler.constructor.name == 'Array'){
|
|
|
|
|
// we do not care about docs here, so just get the handler...
|
|
|
|
|
handler = handler[0]
|
|
|
|
|
}
|
|
|
|
|
// complex handler...
|
|
|
|
|
if(typeof(handler) == typeof({})){
|
|
|
|
|
var callback = handler[modifers]
|
|
|
|
|
if(callback == null){
|
|
|
|
|
callback = handler['default']
|
|
|
|
|
}
|
|
|
|
|
if(callback != null){
|
|
|
|
|
res = callback()
|
|
|
|
|
did_handling = true
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// simple callback...
|
|
|
|
|
res = handler()
|
|
|
|
|
did_handling = true
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!did_handling){
|
|
|
|
|
// key is unhandled by any modes...
|
|
|
|
|
return unhandled(key)
|
|
|
|
|
} else {
|
|
|
|
|
// XXX should we handle multiple hits???
|
|
|
|
|
return KEYBOARD_HANDLER_PROPAGATE&&res?true:false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-24 03:12:01 +04:00
|
|
|
/************************************************ jQuery extensions **/
|
2013-01-24 02:58:13 +04:00
|
|
|
|
2013-01-24 03:12:01 +04:00
|
|
|
jQuery.fn.reverseChildren = function(){
|
|
|
|
|
return $(this).each(function(_, e){
|
|
|
|
|
return $(e).append($(e).children().detach().get().reverse())
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jQuery.fn.sortChildren = function(func){
|
|
|
|
|
return $(this).each(function(_, e){
|
|
|
|
|
return $(e).append($(e).children().detach().get().sort(func))
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-24 02:58:13 +04:00
|
|
|
|
2013-01-24 03:12:01 +04:00
|
|
|
|
2013-02-14 19:06:18 +04:00
|
|
|
/********************************************************** logger ***/
|
|
|
|
|
|
|
|
|
|
function Logger(){
|
|
|
|
|
_log = null
|
|
|
|
|
return {
|
|
|
|
|
setup: function(){
|
|
|
|
|
if(_log == null){
|
|
|
|
|
_log = $('<div id="log"></div>')
|
|
|
|
|
.css({
|
|
|
|
|
position: 'fixed',
|
|
|
|
|
background: 'silver',
|
|
|
|
|
opacity: 0.5,
|
|
|
|
|
width: 200,
|
|
|
|
|
height: '80%',
|
|
|
|
|
top: 10,
|
|
|
|
|
left: 10,
|
|
|
|
|
'z-index': 90000,
|
|
|
|
|
overflow: 'hidden',
|
|
|
|
|
padding: 10,
|
|
|
|
|
})
|
|
|
|
|
.text('log')
|
|
|
|
|
.appendTo($('body'))
|
|
|
|
|
} else {
|
|
|
|
|
_log.appendTo($('body'))
|
|
|
|
|
}
|
|
|
|
|
return this
|
|
|
|
|
},
|
|
|
|
|
remove: function(){
|
|
|
|
|
_log.detach()
|
|
|
|
|
return this
|
|
|
|
|
},
|
|
|
|
|
log: function(text){
|
|
|
|
|
_log.html(_log.html() + '<br>' + text + '')
|
|
|
|
|
_log.scrollTop(_log.prop('scrollHeight'))
|
|
|
|
|
return this
|
|
|
|
|
},
|
|
|
|
|
clear: function(){
|
|
|
|
|
_log.html('')
|
|
|
|
|
return this
|
|
|
|
|
},
|
|
|
|
|
get: function(){
|
|
|
|
|
return _log
|
|
|
|
|
},
|
|
|
|
|
set: function(elem){
|
|
|
|
|
_log = elem
|
|
|
|
|
}
|
|
|
|
|
}.setup()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-01-24 03:12:01 +04:00
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
|
* vim:set ts=4 sw=4 : */
|