2011-11-05 16:46:53 +00:00
|
|
|
'use strict';
|
|
|
|
|
2011-10-07 01:04:47 +00:00
|
|
|
/*@
|
|
|
|
Ox.canvas <function> Generic canvas object
|
2012-01-04 07:42:48 +00:00
|
|
|
# Description --------------------------------------------------------------
|
2011-10-07 01:04:47 +00:00
|
|
|
Returns an object with the properties: <code>canvas</code>,
|
|
|
|
<code>context</code>, <code>data</code> and <code>imageData</code>.
|
|
|
|
# Usage --------------------------------------------------------------------
|
|
|
|
Ox.canvas(width, height) -> <object> canvas
|
|
|
|
Ox.canvas(image) -> <object> canvas
|
|
|
|
# Arguments ----------------------------------------------------------------
|
|
|
|
width <n> Width in px
|
|
|
|
height <n> Height in px
|
|
|
|
image <e> Image object
|
|
|
|
@*/
|
|
|
|
|
|
|
|
Ox.canvas = function() {
|
|
|
|
var c = {}, isImage = arguments.length == 1,
|
|
|
|
image = isImage ? arguments[0] : {
|
|
|
|
width: arguments[0], height: arguments[1]
|
|
|
|
};
|
|
|
|
c.context = (c.canvas = Ox.element('<canvas>').attr({
|
|
|
|
width: image.width, height: image.height
|
|
|
|
})[0]).getContext('2d');
|
|
|
|
isImage && c.context.drawImage(image, 0, 0);
|
|
|
|
c.data = (c.imageData = c.context.getImageData(
|
|
|
|
0, 0, image.width, image.height
|
|
|
|
)).data;
|
|
|
|
return c;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*@
|
|
|
|
Ox.documentReady <function> Calls a callback function once the DOM is ready
|
|
|
|
(callback) -> <boolean> If true, the document was ready
|
|
|
|
callback <function> Callback function
|
|
|
|
@*/
|
|
|
|
Ox.documentReady = (function() {
|
|
|
|
var callbacks = [];
|
|
|
|
document.onreadystatechange = function() {
|
|
|
|
if (document.readyState == 'complete') {
|
|
|
|
callbacks.forEach(function(callback) {
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return function(callback) {
|
|
|
|
if (document.readyState == 'complete') {
|
|
|
|
callback();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
callbacks.push(callback);
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-16 23:03:43 +00:00
|
|
|
};
|
2011-10-07 01:04:47 +00:00
|
|
|
}());
|
|
|
|
|
|
|
|
/*@
|
|
|
|
Ox.element <f> Generic HTML element, mimics jQuery
|
|
|
|
(str) -> <o> Element object
|
|
|
|
str <s> Tagname ('<tagname>') or selector ('tagname', '.classname', '#id')
|
|
|
|
> Ox.element("<div>").addClass("red").hasClass("red")
|
|
|
|
true
|
|
|
|
> Ox.element("<div>").addClass("red").removeClass("red").hasClass("red")
|
|
|
|
false
|
|
|
|
> Ox.element("<div>").addClass("red").addClass("red")[0].className
|
|
|
|
"red"
|
|
|
|
> Ox.element("<div>").attr({id: "red"}).attr("id")
|
|
|
|
"red"
|
|
|
|
> Ox.element("<div>").css("color", "red").css("color")
|
|
|
|
"red"
|
|
|
|
> Ox.element("<div>").html("red").html()
|
|
|
|
"red"
|
|
|
|
@*/
|
2012-04-05 15:30:00 +00:00
|
|
|
Ox.$ = Ox.element = function(val) {
|
|
|
|
// fixme: remove click and mousedown,
|
2012-03-30 01:41:47 +00:00
|
|
|
// add native css selector
|
2012-04-05 15:30:00 +00:00
|
|
|
// take all matches of getElementsBy...
|
2012-04-12 19:21:03 +00:00
|
|
|
var element = Ox.isObject(val) ? val // window or document
|
2012-04-05 15:30:00 +00:00
|
|
|
: val[0] == '<' ? document.createElement(Ox.sub(val, 1, -1))
|
|
|
|
: val[0] == '#' ? document.getElementById(Ox.sub(val, 1))
|
|
|
|
: val[0] == '.' ? document.getElementsByClassName(Ox.sub(val, 1))[0]
|
|
|
|
: document.getElementsByTagName(val)[0];
|
|
|
|
return element ? {
|
2011-10-07 01:04:47 +00:00
|
|
|
//@ 0 <e> The DOM element itself
|
2012-04-05 15:30:00 +00:00
|
|
|
0: element,
|
2011-10-07 01:04:47 +00:00
|
|
|
/*@
|
|
|
|
addClass <f> Adds a class name
|
|
|
|
(className) -> <o> This element
|
|
|
|
className <s> Class name
|
|
|
|
@*/
|
|
|
|
addClass: function(str) {
|
2011-11-03 15:20:14 +00:00
|
|
|
/* fixme:
|
|
|
|
this[0].className = Ox.unique(
|
|
|
|
this[0].className.split(' ').push(className)
|
|
|
|
).join(' ');
|
|
|
|
*/
|
|
|
|
this[0].className = this[0].className
|
|
|
|
? Ox.unique(
|
|
|
|
(this[0].className + ' ' + str).split(' ')
|
|
|
|
).join(' ')
|
|
|
|
: str;
|
2011-10-07 01:04:47 +00:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
/*@
|
|
|
|
append <f> Appends another element to this element
|
|
|
|
(element) -> <o> This element
|
|
|
|
element <o> Another element
|
|
|
|
@*/
|
|
|
|
append: function(element) {
|
|
|
|
this[0].appendChild(element[0]);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
/*@
|
|
|
|
appendTo <f> appends this element object to another element object
|
|
|
|
(element) -> <o> This element
|
|
|
|
element <o> Another element
|
|
|
|
@*/
|
|
|
|
appendTo: function(element) {
|
|
|
|
element[0].appendChild(this[0]);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
/*@
|
|
|
|
attr <f> Gets or sets an attribute
|
|
|
|
(key) -> <s> Value
|
|
|
|
(key, value) -> <o> This element
|
|
|
|
({key, value}) -> <o> This element
|
|
|
|
key <str> Attribute name
|
|
|
|
value <str> Attribute value
|
|
|
|
@*/
|
|
|
|
attr: function() {
|
|
|
|
var ret, that = this;
|
|
|
|
if (arguments.length == 1 && Ox.isString(arguments[0])) {
|
|
|
|
ret = this[0].getAttribute(arguments[0]);
|
|
|
|
} else {
|
|
|
|
Ox.forEach(Ox.makeObject(arguments), function(v, k) {
|
|
|
|
that[0].setAttribute(k, v);
|
|
|
|
});
|
|
|
|
ret = this;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
},
|
2012-04-05 15:30:00 +00:00
|
|
|
bind: function(events) {
|
|
|
|
var that = this;
|
|
|
|
Ox.forEach(Ox.makeObject(arguments), function(callback, event) {
|
|
|
|
that[0]['on' + event] = callback;
|
|
|
|
});
|
|
|
|
return this;
|
|
|
|
},
|
2012-04-06 23:45:51 +00:00
|
|
|
bindOnce: function(events) {
|
|
|
|
var that = this;
|
|
|
|
Ox.forEach(Ox.makeObject(arguments), function(callback, event) {
|
|
|
|
that[0]['on' + event] = function() {
|
|
|
|
that.unbind(event);
|
|
|
|
callback();
|
|
|
|
};
|
|
|
|
});
|
|
|
|
return this;
|
|
|
|
},
|
2011-10-07 01:04:47 +00:00
|
|
|
/*@
|
|
|
|
click <f> Binds a function to the click event
|
|
|
|
(callback) -> <o> This element
|
|
|
|
callback <f> Callback function
|
|
|
|
event <o> The DOM event
|
|
|
|
@*/
|
|
|
|
click: function(callback) {
|
|
|
|
this[0].onclick = callback;
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
/*@
|
|
|
|
css <f> Gets or sets a CSS attribute
|
|
|
|
(key) -> <s> Value
|
|
|
|
(key, value) -> <o> This element
|
|
|
|
({key, value}) -> <o> This element
|
|
|
|
key <str> Attribute name
|
|
|
|
value <str> Attribute value
|
|
|
|
@*/
|
|
|
|
css: function() {
|
|
|
|
var ret, that = this;
|
|
|
|
if (arguments.length == 1 && Ox.isString(arguments[0])) {
|
|
|
|
ret = this[0].style[arguments[0]];
|
|
|
|
} else {
|
|
|
|
Ox.forEach(Ox.makeObject(arguments), function(v, k) {
|
|
|
|
that[0].style[k] = v;
|
|
|
|
});
|
|
|
|
ret = this;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
},
|
2012-04-05 15:30:00 +00:00
|
|
|
empty: function() {
|
2012-04-12 19:21:03 +00:00
|
|
|
return this.html('');
|
2012-04-05 15:30:00 +00:00
|
|
|
},
|
2011-10-07 01:04:47 +00:00
|
|
|
/*@
|
|
|
|
hasClass <f> Returns true if the element has a given class
|
|
|
|
(className) -> <b> True if the element has the class
|
|
|
|
className <s> Class name
|
|
|
|
@*/
|
|
|
|
hasClass: function(str) {
|
|
|
|
return this[0].className.split(' ').indexOf(str) > -1;
|
|
|
|
},
|
2012-04-12 19:21:03 +00:00
|
|
|
height: function() {
|
|
|
|
return this[0].offsetHeight;
|
|
|
|
},
|
|
|
|
hide: function() {
|
|
|
|
return this.css({display: 'none'});
|
|
|
|
},
|
2011-10-07 01:04:47 +00:00
|
|
|
/*@
|
|
|
|
html <f> Gets or sets the inner HTML
|
|
|
|
() -> <s> The inner HTML
|
|
|
|
(html) -> <o> This element
|
|
|
|
html <s> The inner HTML
|
|
|
|
@*/
|
|
|
|
html: function(str) {
|
|
|
|
var ret;
|
|
|
|
if (Ox.isUndefined(str)) {
|
|
|
|
ret = this[0].innerHTML;
|
|
|
|
} else {
|
|
|
|
this[0].innerHTML = str;
|
|
|
|
ret = this;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
},
|
|
|
|
/*@
|
|
|
|
mousedown <f> Binds a function to the mousedown event
|
|
|
|
(callback) -> <o> This element
|
|
|
|
callback <f> Callback function
|
|
|
|
event <o> The DOM event
|
|
|
|
@*/
|
|
|
|
mousedown: function(callback) {
|
|
|
|
this[0].onmousedown = callback;
|
|
|
|
return this;
|
|
|
|
},
|
2012-04-06 23:45:51 +00:00
|
|
|
remove: function() {
|
|
|
|
this[0].parentNode.removeChild(this[0]);
|
|
|
|
return this;
|
|
|
|
},
|
2011-10-07 01:04:47 +00:00
|
|
|
/*@
|
|
|
|
removeAttr <f> Removes an attribute
|
|
|
|
(key) -> <o> This element
|
|
|
|
key <s> The attribute
|
|
|
|
@*/
|
|
|
|
removeAttr: function(key) {
|
|
|
|
this[0].removeAttribute(key);
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
/*@
|
|
|
|
removeClass <f> Removes a class name
|
|
|
|
(className) -> <o> This element
|
|
|
|
className <s> Class name
|
|
|
|
@*/
|
|
|
|
removeClass: function(str) {
|
|
|
|
this[0].className = Ox.filter(
|
|
|
|
this[0].className.split(' '), function(className) {
|
|
|
|
return className != str;
|
|
|
|
}
|
|
|
|
).join(' ');
|
|
|
|
return this;
|
2012-04-05 15:30:00 +00:00
|
|
|
},
|
2012-04-12 19:21:03 +00:00
|
|
|
show: function() {
|
|
|
|
return this.css({display: 'block'});
|
|
|
|
},
|
2012-04-05 15:30:00 +00:00
|
|
|
unbind: function(event) {
|
2012-04-06 23:45:51 +00:00
|
|
|
this[0]['on' + event] = null;
|
2012-04-05 15:30:00 +00:00
|
|
|
return this;
|
2012-04-12 19:21:03 +00:00
|
|
|
},
|
|
|
|
width: function() {
|
|
|
|
return this[0].offsetWidth;
|
2011-10-07 01:04:47 +00:00
|
|
|
}
|
2012-04-05 15:30:00 +00:00
|
|
|
} : null;
|
2011-10-07 01:04:47 +00:00
|
|
|
};
|