document events
This commit is contained in:
parent
10281e3c8f
commit
d2e05200da
56 changed files with 277 additions and 32 deletions
|
@ -3,6 +3,11 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Progressbar <f> Progress Bar
|
Ox.Progressbar <f> Progress Bar
|
||||||
([options[, self]]) -> <o:Ox.Element> Progress Bar
|
([options[, self]]) -> <o:Ox.Element> Progress Bar
|
||||||
|
cancel <!> cancelled
|
||||||
|
complete <!> completed
|
||||||
|
pause <!> paused
|
||||||
|
restart <!> restart
|
||||||
|
resume <!> resumed
|
||||||
options <o|{}> Options object
|
options <o|{}> Options object
|
||||||
cancelled <b|false> If true, progress bar is cancelled
|
cancelled <b|false> If true, progress bar is cancelled
|
||||||
paused <b|false> If true, progress bar is paused
|
paused <b|false> If true, progress bar is paused
|
||||||
|
@ -15,10 +20,6 @@ Ox.Progressbar <f> Progress Bar
|
||||||
showTooltips <b|false> If true, buttons have tooltips
|
showTooltips <b|false> If true, buttons have tooltips
|
||||||
width <n|256> Width in px
|
width <n|256> Width in px
|
||||||
self <o|{}> Shared private variable
|
self <o|{}> Shared private variable
|
||||||
cancel <!> cancelled
|
|
||||||
complete <!> completed
|
|
||||||
pause <!> paused
|
|
||||||
resume <!> resumed
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Progressbar = function(options, self) {
|
Ox.Progressbar = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Calendar <f> Basic calendar object
|
Ox.Calendar <f> Basic calendar object
|
||||||
([options[, self]]) -> <o:Ox.Element> Calendar object
|
([options[, self]]) -> <o:Ox.Element> Calendar object
|
||||||
|
select <!> select
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
date <d|new Date()> UTC Date on which the calendar is centered
|
date <d|new Date()> UTC Date on which the calendar is centered
|
||||||
events <[o]|[]> Event objects to be displayed
|
events <[o]|[]> Event objects to be displayed
|
||||||
|
|
|
@ -5,6 +5,7 @@ Ox.CalendarEditor <f> Calendar Editor
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Calendar Editor
|
([options[, self]]) -> <o:Ox.SplitPanel> Calendar Editor
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
|
loadlist <!> loadlist
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.CalendarEditor = function(options, self) {
|
Ox.CalendarEditor = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.DocPage <f> DocPage
|
Ox.DocPage <f> DocPage
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> DocPage object
|
([options[, self]]) -> <o:Ox.SplitPanel> DocPage object
|
||||||
|
example <!> example
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
item <o> doc item
|
item <o> doc item
|
||||||
replace <[[]]|[]> See Ox.SyntaxHighlighter
|
replace <[[]]|[]> See Ox.SyntaxHighlighter
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.DocPanel <f> Documentation Panel
|
Ox.DocPanel <f> Documentation Panel
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Documentation Panel
|
([options[, self]]) -> <o:Ox.SplitPanel> Documentation Panel
|
||||||
|
load <!> Fires once all docs are loaded
|
||||||
|
items [o] Array of doc items
|
||||||
|
tests <!> Fires once all tests finished
|
||||||
|
results [o] Array of results
|
||||||
|
select <!> select
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
collapsible <b|false> If true, the list can be collabsed
|
collapsible <b|false> If true, the list can be collabsed
|
||||||
element <e> Default content
|
element <e> Default content
|
||||||
|
@ -21,8 +26,6 @@ Ox.DocPanel <f> Documentation Panel
|
||||||
showTooltips <b|false> If true, show test result tooltips in list
|
showTooltips <b|false> If true, show test result tooltips in list
|
||||||
size <s|256> Default list size
|
size <s|256> Default list size
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
load <!> Fires once all docs are loaded
|
|
||||||
items [o] Array of doc items
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.DocPanel = function(options, self) {
|
Ox.DocPanel = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ExamplePanel <f> Example Panel
|
Ox.ExamplePanel <f> Example Panel
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Example Panel
|
([options[, self]]) -> <o:Ox.SplitPanel> Example Panel
|
||||||
|
load <!> load
|
||||||
|
select <!> select
|
||||||
|
id <s> selected example
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,12 +3,12 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.App <f> Basic application instance that communicates with a JSON API
|
Ox.App <f> Basic application instance that communicates with a JSON API
|
||||||
([options]) -> <o> App object
|
([options]) -> <o> App object
|
||||||
|
load <!> app loaded
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
timeout <n> request timeout
|
timeout <n> request timeout
|
||||||
type <s> HTTP Request type, i.e. 'GET' or 'POST'
|
type <s> HTTP Request type, i.e. 'GET' or 'POST'
|
||||||
url <s> JSON API url
|
url <s> JSON API url
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
load <!> app loaded
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.App = function(options) {
|
Ox.App = function(options) {
|
||||||
|
@ -24,6 +24,7 @@ Ox.App = function(options) {
|
||||||
},
|
},
|
||||||
that = Ox.Element({}, Ox.extend({}, self));
|
that = Ox.Element({}, Ox.extend({}, self));
|
||||||
|
|
||||||
|
//@ api <o> api endpoint
|
||||||
that.api = Ox.API({
|
that.api = Ox.API({
|
||||||
type: self.options.type,
|
type: self.options.type,
|
||||||
timeout: self.options.timeout,
|
timeout: self.options.timeout,
|
||||||
|
@ -37,6 +38,7 @@ Ox.App = function(options) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//@ localStorage <f> Ox.localStorage instance
|
||||||
that.localStorage = Ox.localStorage(self.options.name);
|
that.localStorage = Ox.localStorage(self.options.name);
|
||||||
|
|
||||||
function getUserData() {
|
function getUserData() {
|
||||||
|
|
|
@ -3,6 +3,18 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ArrayEditable <f> Array Editable
|
Ox.ArrayEditable <f> Array Editable
|
||||||
([options[, self]]) -> <o:Ox.Element> Array Editable
|
([options[, self]]) -> <o:Ox.Element> Array Editable
|
||||||
|
add <!> add
|
||||||
|
blur <!> blur
|
||||||
|
change <!> change
|
||||||
|
delete <!> delete
|
||||||
|
edit <!> edit
|
||||||
|
insert <!> insert
|
||||||
|
open <!> open
|
||||||
|
selectafter <!> selectafter
|
||||||
|
selectbefore <!> selectbefore
|
||||||
|
selectnone <!> selectnone
|
||||||
|
select <!> select
|
||||||
|
submit <!> submit
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -10,6 +10,7 @@ Ox.ArrayInput <f> Array input
|
||||||
value <[]> value
|
value <[]> value
|
||||||
width <n|256> width
|
width <n|256> width
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
|
change <!> change
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.ArrayInput = function(options, self) {
|
Ox.ArrayInput = function(options, self) {
|
||||||
|
|
|
@ -122,10 +122,16 @@ Ox.ButtonGroup = function(options, self) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*@
|
||||||
|
disableButton <f> disableButton
|
||||||
|
@*/
|
||||||
that.disableButton = function(id) {
|
that.disableButton = function(id) {
|
||||||
getButtonById(id).options({disabled: true});
|
getButtonById(id).options({disabled: true});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*@
|
||||||
|
enableButton <f> enableButton
|
||||||
|
@*/
|
||||||
that.enableButton = function(id) {
|
that.enableButton = function(id) {
|
||||||
getButtonById(id).options({disabled: false});
|
getButtonById(id).options({disabled: false});
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Checkbox <f> Checkbox Element
|
Ox.Checkbox <f> Checkbox Element
|
||||||
([options[, self]]) -> <o:Ox.Element> Checkbox Element
|
([options[, self]]) -> <o:Ox.Element> Checkbox Element
|
||||||
|
change <!> triggered when value changes
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
disabled <b> if true, checkbox is disabled
|
disabled <b> if true, checkbox is disabled
|
||||||
group <b> if true, checkbox is part of a group
|
group <b> if true, checkbox is part of a group
|
||||||
|
@ -12,7 +13,6 @@ Ox.Checkbox <f> Checkbox Element
|
||||||
value <b> if true, checkbox is checked
|
value <b> if true, checkbox is checked
|
||||||
width <n> width in px
|
width <n> width in px
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
change <!> triggered when value changes
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Checkbox = function(options, self) {
|
Ox.Checkbox = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.CheckboxGroup <f> CheckboxGroup Object
|
Ox.CheckboxGroup <f> CheckboxGroup Object
|
||||||
([options[, self]]) -> <o:Ox.Element> CheckboxGroup Object
|
([options[, self]]) -> <o:Ox.Element> CheckboxGroup Object
|
||||||
|
change <!> triggered when checked property changes
|
||||||
|
passes {id, title, value}
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
checkboxes <a|[]> array of checkboxes
|
checkboxes <a|[]> array of checkboxes
|
||||||
max <n|1> max selected
|
max <n|1> max selected
|
||||||
|
@ -10,8 +12,6 @@ Ox.CheckboxGroup <f> CheckboxGroup Object
|
||||||
type <s|"group"> type ("group" or "list")
|
type <s|"group"> type ("group" or "list")
|
||||||
width <n> width in px
|
width <n> width in px
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
change <!> triggered when checked property changes
|
|
||||||
passes {id, title, value}
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.CheckboxGroup = function(options, self) {
|
Ox.CheckboxGroup = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ColorInput <f> ColorInput Element
|
Ox.ColorInput <f> ColorInput Element
|
||||||
([options[, self]]) -> <o:Ox.InputGroup> ColorInput Element
|
([options[, self]]) -> <o:Ox.InputGroup> ColorInput Element
|
||||||
|
change <!> change
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
mode <s|'rgb'> Mode ('rgb' or 'hsl')
|
mode <s|'rgb'> Mode ('rgb' or 'hsl')
|
||||||
value <[n]|[0, 0, 0]> Value
|
value <[n]|[0, 0, 0]> Value
|
||||||
|
|
|
@ -3,11 +3,11 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ColorPicker <f> ColorPicker Element
|
Ox.ColorPicker <f> ColorPicker Element
|
||||||
([options[, self]]) -> <o:Ox.Picker> ColorPicker Element
|
([options[, self]]) -> <o:Ox.Picker> ColorPicker Element
|
||||||
|
change <!> triggered on change of value
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
mode <s|'rgb'> Mode ('rgb' or 'hsl')
|
mode <s|'rgb'> Mode ('rgb' or 'hsl')
|
||||||
value <[n]|[0, 0, 0]> Value
|
value <[n]|[0, 0, 0]> Value
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
change <!> triggered on change of value
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.ColorPicker = function(options, self) {
|
Ox.ColorPicker = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.DateInput <f> DateInput Element
|
Ox.DateInput <f> DateInput Element
|
||||||
([options[, self]]) -> <o:Ox.InputGroup> DateInput Element
|
([options[, self]]) -> <o:Ox.InputGroup> DateInput Element
|
||||||
|
change <!> triggered on change of value
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
format <s|short> format can be short, medium, long
|
format <s|short> format can be short, medium, long
|
||||||
value <d> date value, defaults to current date
|
value <d> date value, defaults to current date
|
||||||
|
@ -13,7 +14,6 @@ Ox.DateInput <f> DateInput Element
|
||||||
weekday <n> width of weekday input element
|
weekday <n> width of weekday input element
|
||||||
year <n> width of year input element
|
year <n> width of year input element
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
change <!> triggered on change of value
|
|
||||||
@*/
|
@*/
|
||||||
Ox.DateInput = function(options, self) {
|
Ox.DateInput = function(options, self) {
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.DateTimeInput <f> DateTimeInput Element
|
Ox.DateTimeInput <f> DateTimeInput Element
|
||||||
([options[, self]]) -> <o:Ox.InputGroup> DateTimeInput Element
|
([options[, self]]) -> <o:Ox.InputGroup> DateTimeInput Element
|
||||||
|
change <!> triggered on change of value
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
ampm <b|false> false is 24h true is am/pm
|
ampm <b|false> false is 24h true is am/pm
|
||||||
format <s|short> options are short, medium, long
|
format <s|short> options are short, medium, long
|
||||||
|
@ -10,7 +11,6 @@ Ox.DateTimeInput <f> DateTimeInput Element
|
||||||
value <d> defautls to now
|
value <d> defautls to now
|
||||||
weekday <b|false> weekday
|
weekday <b|false> weekday
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
change <!> triggered on change of value
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.DateTimeInput = function(options, self) {
|
Ox.DateTimeInput = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Editable <f> Editable element
|
Ox.Editable <f> Editable element
|
||||||
([options[, self]]) -> <o:Ox.Element> Input Element
|
([options[, self]]) -> <o:Ox.Element> Input Element
|
||||||
|
blur <!> blur
|
||||||
|
cancel <!> cancel
|
||||||
|
edit <!> edit
|
||||||
|
open <!> open
|
||||||
|
submit <!> submit
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
editing <b|false> If true, loads in editing state
|
editing <b|false> If true, loads in editing state
|
||||||
format <f|null> Format function
|
format <f|null> Format function
|
||||||
|
@ -257,6 +262,9 @@ Ox.Editable = function(options, self) {
|
||||||
that.triggerEvent('submit', {value: self.options.value});
|
that.triggerEvent('submit', {value: self.options.value});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*@
|
||||||
|
css <f> css
|
||||||
|
@*/
|
||||||
that.css = function(css) {
|
that.css = function(css) {
|
||||||
self.css = css;
|
self.css = css;
|
||||||
that.$element.css(css);
|
that.$element.css(css);
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.FileButton <f> File Button
|
Ox.FileButton <f> File Button
|
||||||
([options[, self]]) -> <o:Ox.Element> File Button
|
([options[, self]]) -> <o:Ox.Element> File Button
|
||||||
|
click <!> click
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.FileInput <f> File Input
|
Ox.FileInput <f> File Input
|
||||||
([options[, self]]) -> <o:Ox.Element> File Input
|
([options[, self]]) -> <o:Ox.Element> File Input
|
||||||
|
change <!> change
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Filter <f> Filter Object
|
Ox.Filter <f> Filter Object
|
||||||
([options[, self]]) -> <o:Ox.Element> Filter Object
|
([options[, self]]) -> <o:Ox.Element> Filter Object
|
||||||
|
change <!> change
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
findKeys <[]|[]> keys
|
findKeys <[]|[]> keys
|
||||||
list <o> list object
|
list <o> list object
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Form <f> Form Object
|
Ox.Form <f> Form Object
|
||||||
([options[, self]]) -> <o:Ox.Element> Form Object
|
([options[, self]]) -> <o:Ox.Element> Form Object
|
||||||
|
change <!> change
|
||||||
|
validate <!> validate
|
||||||
|
submit <!> submit
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
error <s> error
|
error <s> error
|
||||||
id <s> id
|
id <s> id
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.FormElementGroup <f> FormElementGroup Element
|
Ox.FormElementGroup <f> FormElementGroup Element
|
||||||
([options[, self]]) -> <o:Ox.Element> FormElementGroup Element
|
([options[, self]]) -> <o:Ox.Element> FormElementGroup Element
|
||||||
|
autovalidate <!> autovalidate
|
||||||
|
change <!> change
|
||||||
|
validate <!> validate
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
id <s> element id
|
id <s> element id
|
||||||
elements <[o:Ox.Element]|[]> elements in group
|
elements <[o:Ox.Element]|[]> elements in group
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.FormPanel <f> Form Panel
|
Ox.FormPanel <f> Form Panel
|
||||||
([options[, self]]) -> <o:Ox.Element> Form Panel
|
([options[, self]]) -> <o:Ox.Element> Form Panel
|
||||||
|
change <!> change
|
||||||
|
validate <!> validate
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,16 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Input <f> Input Element
|
Ox.Input <f> Input Element
|
||||||
([options[, self]]) -> <o:Ox.Element> Input Element
|
([options[, self]]) -> <o:Ox.Element> Input Element
|
||||||
|
autocomplete <!> autocomplete
|
||||||
|
autovalidate <!> autovalidate
|
||||||
|
blur <!> blur
|
||||||
|
cancel <!> cancel
|
||||||
|
change <!> input changed event
|
||||||
|
clear <!> clear
|
||||||
|
focus <!> focus
|
||||||
|
insert <!> insert
|
||||||
|
submit <!> input submit event
|
||||||
|
validate <!> validate
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
arrows <b> if true, and type is 'float' or 'int', display arrows
|
arrows <b> if true, and type is 'float' or 'int', display arrows
|
||||||
arrowStep <n> step when clicking arrows
|
arrowStep <n> step when clicking arrows
|
||||||
|
@ -56,8 +66,6 @@ Ox.Input <f> Input Element
|
||||||
validate <f> remote validation
|
validate <f> remote validation
|
||||||
width <n> px
|
width <n> px
|
||||||
|
|
||||||
change <!> input changed event
|
|
||||||
submit <!> input submit event
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Input = function(options, self) {
|
Ox.Input = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.InputGroup <f> InputGroup Object
|
Ox.InputGroup <f> InputGroup Object
|
||||||
([options[, self]]) -> <o:Ox.Element> InputGroup Object
|
([options[, self]]) -> <o:Ox.Element> InputGroup Object
|
||||||
|
change <!> change
|
||||||
|
validate <!> validate
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
id <s|''> id
|
id <s|''> id
|
||||||
inputs <a|[]> inputs
|
inputs <a|[]> inputs
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ObjectArrayInput <f> Object Array Input
|
Ox.ObjectArrayInput <f> Object Array Input
|
||||||
([options[, self]]) -> <o:Ox.Element> Object Array Input
|
([options[, self]]) -> <o:Ox.Element> Object Array Input
|
||||||
|
change <!> change
|
||||||
options <o> Options
|
options <o> Options
|
||||||
buttonTitles
|
buttonTitles
|
||||||
inputs
|
inputs
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ObjectInput <f> Object Input
|
Ox.ObjectInput <f> Object Input
|
||||||
([options[, self]]) -> <o:Ox.Element> Object Input
|
([options[, self]]) -> <o:Ox.Element> Object Input
|
||||||
|
change <!> change
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,14 +3,14 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Picker <f> Picker Object
|
Ox.Picker <f> Picker Object
|
||||||
([options[, self]]) -> <o:Ox.Element> Picker Object
|
([options[, self]]) -> <o:Ox.Element> Picker Object
|
||||||
|
show <!> picker is shown
|
||||||
|
hide <!> picker is hidden
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
element <o|null> picker element
|
element <o|null> picker element
|
||||||
elementHeight <n|128> height
|
elementHeight <n|128> height
|
||||||
elemementWidth <n|256> width
|
elemementWidth <n|256> width
|
||||||
id <s> picker id
|
id <s> picker id
|
||||||
overlap <s|none> select button overlap value
|
overlap <s|none> select button overlap value
|
||||||
show <!> picker is shown
|
|
||||||
hide <!> picker is hidden
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Picker = function(options, self) {
|
Ox.Picker = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Range <f> Range Object
|
Ox.Range <f> Range Object
|
||||||
([options[, self]]) -> <o:Ox.Element> Range Object
|
([options[, self]]) -> <o:Ox.Element> Range Object
|
||||||
|
change <!> triggered on change of the range
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
arrows <b> if true, show arrows
|
arrows <b> if true, show arrows
|
||||||
arrowStep <n> step when clicking arrows
|
arrowStep <n> step when clicking arrows
|
||||||
|
@ -22,7 +23,6 @@ Ox.Range <f> Range Object
|
||||||
value <n> initial value
|
value <n> initial value
|
||||||
values <[s]> values to display on thumb
|
values <[s]> values to display on thumb
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
change <!> triggered on change of the range
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Range = function(options, self) {
|
Ox.Range = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Select <f> Select Object
|
Ox.Select <f> Select Object
|
||||||
([options[, self]) -> <o:Ox.Element> Select Object
|
([options[, self]) -> <o:Ox.Element> Select Object
|
||||||
|
click <!> Click event
|
||||||
|
change <!> Change event
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
disabled <b|false> If true, select is disabled
|
disabled <b|false> If true, select is disabled
|
||||||
id <s> Element id
|
id <s> Element id
|
||||||
|
@ -24,8 +26,6 @@ Ox.Select <f> Select Object
|
||||||
value <a|s> Selected id, or array of selected ids
|
value <a|s> Selected id, or array of selected ids
|
||||||
width <s|n|'auto'> Width in px, or 'auto'
|
width <s|n|'auto'> Width in px, or 'auto'
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
click <!> Click event
|
|
||||||
change <!> Change event
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Select = function(options, self) {
|
Ox.Select = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Spreadsheet <f> Spreadsheet
|
Ox.Spreadsheet <f> Spreadsheet
|
||||||
([options[, self]]) -> <o:Ox.Element> Spreadsheet
|
([options[, self]]) -> <o:Ox.Element> Spreadsheet
|
||||||
|
change <!> change
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -23,6 +23,7 @@ Ox.List <f> List constructor
|
||||||
unique <s|''> name of the key that acts as unique id
|
unique <s|''> name of the key that acts as unique id
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
([options[, self]]) -> <o:Ox.Container> List object
|
([options[, self]]) -> <o:Ox.Container> List object
|
||||||
|
init <!> init
|
||||||
add <!> item added
|
add <!> item added
|
||||||
delete <!> item removed
|
delete <!> item removed
|
||||||
draganddrop <!> Fires during drag
|
draganddrop <!> Fires during drag
|
||||||
|
@ -38,6 +39,9 @@ Ox.List <f> List constructor
|
||||||
openpreview <!> preview of selected item opened
|
openpreview <!> preview of selected item opened
|
||||||
closepreview <!> preview closed
|
closepreview <!> preview closed
|
||||||
select <!> select item
|
select <!> select item
|
||||||
|
selectafter <!> selectafter
|
||||||
|
selectbefore <!> selectbefore
|
||||||
|
toggle <!> toggle
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
// fixme: rename the add event to new, or the delete event to remove
|
// fixme: rename the add event to new, or the delete event to remove
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.ListItem <f> ListItem Object
|
Ox.ListItem <f> ListItem Object
|
||||||
([options[, self]]) -> <o:Ox.Element> ListItem Object
|
([options[, self]]) -> <o:Ox.Element> ListItem Object
|
||||||
|
cancel <!> triggered if cancel button is pressed
|
||||||
|
save <!> triggered if save button is pressed
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
construct <f> construct function
|
construct <f> construct function
|
||||||
data <o|{}> item data
|
data <o|{}> item data
|
||||||
|
@ -10,8 +12,6 @@ Ox.ListItem <f> ListItem Object
|
||||||
position <n|0> item position
|
position <n|0> item position
|
||||||
unique <s|''> unique key
|
unique <s|''> unique key
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
cancel <!> triggered if cancel button is pressed
|
|
||||||
save <!> triggered if save button is pressed
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.ListItem = function(options, self) {
|
Ox.ListItem = function(options, self) {
|
||||||
|
|
|
@ -36,6 +36,8 @@ Ox.TextList <f> TextList Object
|
||||||
sort <[o]|[s]|[]> ['+foo', ...] or [{key: 'foo', operator: '+'}, ...]
|
sort <[o]|[s]|[]> ['+foo', ...] or [{key: 'foo', operator: '+'}, ...]
|
||||||
sortable <b|false> If true, elements can be re-ordered
|
sortable <b|false> If true, elements can be re-ordered
|
||||||
sums <[s]|[]> Sums to be included in totals
|
sums <[s]|[]> Sums to be included in totals
|
||||||
|
columnresize <!> columnresize
|
||||||
|
columnchange <!> columnchange
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
|
|
|
@ -73,8 +73,12 @@ Ox.Map <f> Basic map object
|
||||||
lat <n> Latitude
|
lat <n> Latitude
|
||||||
lng <n> Longitude
|
lng <n> Longitude
|
||||||
types <[s]> Types (like "country" or "political")
|
types <[s]> Types (like "country" or "political")
|
||||||
|
load <!> load
|
||||||
|
select <!> select
|
||||||
selectplace <!> Fires when a place has been selected or deselected
|
selectplace <!> Fires when a place has been selected or deselected
|
||||||
place <o> Place object
|
place <o> Place object
|
||||||
|
togglecontrols <!> togglecontrols
|
||||||
|
togglelabels <!> togglelabels
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Map = function(options, self) {
|
Ox.Map = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.MapEditor <f> Map Editor
|
Ox.MapEditor <f> Map Editor
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Map Editor
|
([options[, self]]) -> <o:Ox.SplitPanel> Map Editor
|
||||||
|
addplace <!> addplace
|
||||||
|
removeplace <!> removeplace
|
||||||
|
geocode <!> geocode
|
||||||
|
loadlist <!> loadlist
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
height <n|256> Height in px
|
height <n|256> Height in px
|
||||||
labels <b|false> If true, show labels
|
labels <b|false> If true, show labels
|
||||||
|
|
|
@ -3,6 +3,16 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Menu <f> Menu Object
|
Ox.Menu <f> Menu Object
|
||||||
([options[, self]]) -> <o:Ox.Element> Menu Object
|
([options[, self]]) -> <o:Ox.Element> Menu Object
|
||||||
|
change_groupId <!> {id, value} checked item of a group has changed
|
||||||
|
click_itemId <!> item not belonging to a group was clicked
|
||||||
|
click_menuId <!> {id, value} item not belonging to a group was clicked
|
||||||
|
deselect_menuId <!> {id, value} item was deselected not needed, not implemented
|
||||||
|
hide_menuId <!> menu was hidden
|
||||||
|
select_menuId <!> {id, value} item was selected
|
||||||
|
click <!> click
|
||||||
|
change <!> change
|
||||||
|
select <!> select
|
||||||
|
deselect <!> deselect
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
element <o> the element the menu is attached to
|
element <o> the element the menu is attached to
|
||||||
id <s> the menu id
|
id <s> the menu id
|
||||||
|
@ -16,12 +26,6 @@ Ox.Menu <f> Menu Object
|
||||||
side <s> open to 'bottom' or 'right'
|
side <s> open to 'bottom' or 'right'
|
||||||
size <s> 'large', 'medium' or 'small'
|
size <s> 'large', 'medium' or 'small'
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
change_groupId <!> {id, value} checked item of a group has changed
|
|
||||||
click_itemId <!> item not belonging to a group was clicked
|
|
||||||
click_menuId <!> {id, value} item not belonging to a group was clicked
|
|
||||||
deselect_menuId <!> {id, value} item was deselected not needed, not implemented
|
|
||||||
hide_menuId <!> menu was hidden
|
|
||||||
select_menuId <!> {id, value} item was selected
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.Menu = function(options, self) {
|
Ox.Menu = function(options, self) {
|
||||||
|
|
|
@ -15,6 +15,10 @@ Ox.MenuButton <f> Menu Button
|
||||||
e <object> Mouse event
|
e <object> Mouse event
|
||||||
type <s|'text'> Type ('text' or 'image')
|
type <s|'text'> Type ('text' or 'image')
|
||||||
width <s|n|'auto'> Width in px, or 'auto'
|
width <s|n|'auto'> Width in px, or 'auto'
|
||||||
|
click <!> click
|
||||||
|
change <!> change
|
||||||
|
hide <!> hide
|
||||||
|
show <!> show
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.MenuButton = function(options, self) {
|
Ox.MenuButton = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.CollapsePanel <f> CollapsePanel Object
|
Ox.CollapsePanel <f> CollapsePanel Object
|
||||||
([options[, self]]) -> <o:Ox.Element> CollapsePanel Object
|
([options[, self]]) -> <o:Ox.Element> CollapsePanel Object
|
||||||
|
toggle <!> toggle
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
collapsed <b|false> collapsed state
|
collapsed <b|false> collapsed state
|
||||||
extras <a|[]> panel extras
|
extras <a|[]> panel extras
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.SplitPanel <f> SpliPanel Object
|
Ox.SplitPanel <f> SpliPanel Object
|
||||||
([options[, self]]) -> <o:Ox.Element> SpliPanel Object
|
([options[, self]]) -> <o:Ox.Element> SpliPanel Object
|
||||||
|
resize <!> resize
|
||||||
|
Fires on resize, on both elements being resized
|
||||||
|
toggle <!> toggle
|
||||||
|
Fires on collapse or expand, on the element being toggled
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
elements <[o]|[]> Array of two or three element objects
|
elements <[o]|[]> Array of two or three element objects
|
||||||
collapsible <b|false> If true, can be collapsed (if outer element)
|
collapsible <b|false> If true, can be collapsed (if outer element)
|
||||||
|
@ -16,10 +20,6 @@ Ox.SplitPanel <f> SpliPanel Object
|
||||||
tooltip <b|s|false> If true, show tooltip, if string, append it
|
tooltip <b|s|false> If true, show tooltip, if string, append it
|
||||||
orientation <s|"horizontal"> orientation ("horizontal" or "vertical")
|
orientation <s|"horizontal"> orientation ("horizontal" or "vertical")
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
resize <!> resize
|
|
||||||
Fires on resize, on both elements being resized
|
|
||||||
toggle <!> toggle
|
|
||||||
Fires on collapse or expand, on the element being toggled
|
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.SplitPanel = function(options, self) {
|
Ox.SplitPanel = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.TabPanel <f> Tabbed panel
|
Ox.TabPanel <f> Tabbed panel
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Panel
|
([options[, self]]) -> <o:Ox.SplitPanel> Panel
|
||||||
|
change <!> change
|
||||||
options <o> Options
|
options <o> Options
|
||||||
content <o|f> Content per tab
|
content <o|f> Content per tab
|
||||||
Either `({id1: $element1, id2: $element2}}` or `function(id) {
|
Either `({id1: $element1, id2: $element2}}` or `function(id) {
|
||||||
|
|
|
@ -3,6 +3,22 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.AnnotationFolder <f> AnnotationFolder Object
|
Ox.AnnotationFolder <f> AnnotationFolder Object
|
||||||
([options[, self]]) -> <o:Ox.CollapsePanel> AnnotationFolder Object
|
([options[, self]]) -> <o:Ox.CollapsePanel> AnnotationFolder Object
|
||||||
|
add <!> add
|
||||||
|
blur <!> blur
|
||||||
|
change <!> change
|
||||||
|
edit <!> edit
|
||||||
|
info <!> info
|
||||||
|
insert <!> insert
|
||||||
|
key_* <!> key_*
|
||||||
|
open <!> open
|
||||||
|
remove <!> remove
|
||||||
|
selectafter <!> selectafter
|
||||||
|
selectbefore <!> selectbefore
|
||||||
|
selectnone <!> selectnone
|
||||||
|
select <!> select
|
||||||
|
submit <!> submit
|
||||||
|
togglelayer <!> togglelayer
|
||||||
|
togglewidget <!> togglewidget
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
editable <b|false> If true, annotations can be added
|
editable <b|false> If true, annotations can be added
|
||||||
id <s> id
|
id <s> id
|
||||||
|
|
|
@ -3,6 +3,22 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.AnnotationPanel <f> Video Annotation Panel
|
Ox.AnnotationPanel <f> Video Annotation Panel
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> AnnotationPanel Object
|
([options[, self]]) -> <o:Ox.SplitPanel> AnnotationPanel Object
|
||||||
|
add <!> add
|
||||||
|
annotationsID <!> annotationsID
|
||||||
|
blur <!> blur
|
||||||
|
change <!> change
|
||||||
|
define <!> define
|
||||||
|
edit <!> edit
|
||||||
|
findannotations <!> findannotations
|
||||||
|
find <!> find
|
||||||
|
focus <!> focus
|
||||||
|
info <!> info
|
||||||
|
open <!> open
|
||||||
|
remove <!> remove
|
||||||
|
resize <!> resize
|
||||||
|
submit <!> submit
|
||||||
|
togglelayer <!> togglelayer
|
||||||
|
toggle* <!> toggle*
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
calendarSize <n|256> calendar size
|
calendarSize <n|256> calendar size
|
||||||
clickLink <f|null> click link callback
|
clickLink <f|null> click link callback
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.BlockVideoTimeline <f> Block Video Timeline
|
Ox.BlockVideoTimeline <f> Block Video Timeline
|
||||||
([options[, self]]) -> <o:Ox.Element> Block Video Timeline
|
([options[, self]]) -> <o:Ox.Element> Block Video Timeline
|
||||||
|
edit <!> edit
|
||||||
|
select <!> select
|
||||||
|
position <!> position
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -5,6 +5,7 @@ Ox.LargeVideoTimeline <f> LargeTimeline Object
|
||||||
([options[, self]]) -> <o:Ox.Element> LargeTimeline Object
|
([options[, self]]) -> <o:Ox.Element> LargeTimeline Object
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
|
position <!> position
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.LargeVideoTimeline = function(options, self) {
|
Ox.LargeVideoTimeline = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.SmallVideoTimeline <f> Small video timeline
|
Ox.SmallVideoTimeline <f> Small video timeline
|
||||||
([options[, self]]) -> <o:Ox.Element> Small video timeline
|
([options[, self]]) -> <o:Ox.Element> Small video timeline
|
||||||
|
position <!> position
|
||||||
@*/
|
@*/
|
||||||
Ox.SmallVideoTimeline = function(options, self) {
|
Ox.SmallVideoTimeline = function(options, self) {
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,40 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoEditor <f> VideoEditor Object
|
Ox.VideoEditor <f> VideoEditor Object
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> VideoEditor Object
|
([options[, self]]) -> <o:Ox.SplitPanel> VideoEditor Object
|
||||||
|
addannotation <!> addannotation
|
||||||
|
annotationsfont <!> annotationsfont
|
||||||
|
annotationsrange <!> annotationsrange
|
||||||
|
annotationssize <!> annotationssize
|
||||||
|
annotationssort <!> annotationssort
|
||||||
|
censored <!> censored
|
||||||
|
define <!> define
|
||||||
|
downloadselection <!> downloadselection
|
||||||
|
downloadvideo <!> downloadvideo
|
||||||
|
editannotation <!> editannotation
|
||||||
|
editannotation <!> editannotation
|
||||||
|
embedselection <!> embedselection
|
||||||
|
findannotations <!> findannotations
|
||||||
|
find <!> find
|
||||||
|
importannotations <!> importannotations
|
||||||
|
info <!> info
|
||||||
|
key_* <!> key_*
|
||||||
|
muted <!> muted
|
||||||
|
paused <!> paused
|
||||||
|
points <!> points
|
||||||
|
position <!> position
|
||||||
|
posterframe <!> posterframe
|
||||||
|
removeannotation <!> removeannotation
|
||||||
|
resizecalendar <!> resizecalendar
|
||||||
|
resizemap <!> resizemap
|
||||||
|
resolution <!> resolution
|
||||||
|
select <!> select
|
||||||
|
subtitles <!> subtitles
|
||||||
|
timeline <!> timeline
|
||||||
|
toggleannotations <!> toggleannotations
|
||||||
|
togglecalendar <!> togglecalendar
|
||||||
|
togglelayer <!> togglelayer
|
||||||
|
togglemap <!> togglemap
|
||||||
|
volume <!> volume
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
annotationsCalendarSize <n|256>
|
annotationsCalendarSize <n|256>
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoEditorPlayer <f> VideoEditorPlayer Object
|
Ox.VideoEditorPlayer <f> VideoEditorPlayer Object
|
||||||
([options[, self]]) -> <o:Ox.Element> VideoEditorPlayer Object
|
([options[, self]]) -> <o:Ox.Element> VideoEditorPlayer Object
|
||||||
|
change <!> change
|
||||||
|
playing <!> playing
|
||||||
|
set <!> set
|
||||||
|
togglesize <!> togglesize
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,12 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoElement <f> VideoElement Object
|
Ox.VideoElement <f> VideoElement Object
|
||||||
([options[, self]]) -> <o:Ox.Element> VideoElement Object
|
([options[, self]]) -> <o:Ox.Element> VideoElement Object
|
||||||
|
loadedmetadata <!> loadedmetadata
|
||||||
|
pointschange <!> pointschange
|
||||||
|
seeked <!> seeked
|
||||||
|
seeking <!> seeking
|
||||||
|
sizechange <!> sizechange
|
||||||
|
ended <!> ended
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,8 +3,31 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoPanel <f> VideoPanel Object
|
Ox.VideoPanel <f> VideoPanel Object
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> VideoPanel Object
|
([options[, self]]) -> <o:Ox.SplitPanel> VideoPanel Object
|
||||||
|
find <!> find
|
||||||
|
info <!> info
|
||||||
|
key_* <!> key_*
|
||||||
|
muted <!> muted
|
||||||
|
paused <!> paused
|
||||||
|
position <!> position
|
||||||
|
resizecalendar <!> resizecalendar
|
||||||
|
resolution <!> resolution
|
||||||
|
scale <!> scale
|
||||||
|
select <!> select
|
||||||
|
subtitles <!> subtitles
|
||||||
|
toggleannotations <!> toggleannotations
|
||||||
|
togglecalendar <!> togglecalendar
|
||||||
|
togglelayer <!> togglelayer
|
||||||
|
togglemap <!> togglemap
|
||||||
|
toggletimeline <!> toggletimeline
|
||||||
|
volume <!> volume
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
self <o> shared private variable
|
self <o> shared private variable
|
||||||
|
annotationsfont <!> annotationsfont
|
||||||
|
annotationsrange <!> annotationsrange
|
||||||
|
annotationssize <!> annotationssize
|
||||||
|
annotationssort <!> annotationssort
|
||||||
|
censored <!> censored
|
||||||
|
downloadvideo <!> downloadvideo
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.VideoPanel = function(options, self) {
|
Ox.VideoPanel = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,27 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoPlayer <f> Generic Video Player
|
Ox.VideoPlayer <f> Generic Video Player
|
||||||
([options[, self]]) -> <o:Ox.Element> Video Player
|
([options[, self]]) -> <o:Ox.Element> Video Player
|
||||||
|
censored <!> censored
|
||||||
|
close <!> close
|
||||||
|
download <!> download
|
||||||
|
ended <!> ended
|
||||||
|
find <!> find
|
||||||
|
fullscreen <!> fullscreen
|
||||||
|
gotopoint <!> gotopoint
|
||||||
|
loadedmetadata <!> loadedmetadata
|
||||||
|
muted <!> muted
|
||||||
|
open <!> open
|
||||||
|
paused <!> paused
|
||||||
|
playing <!> playing
|
||||||
|
position <!> position
|
||||||
|
resolution <!> resolution
|
||||||
|
scale <!> scale
|
||||||
|
select <!> select
|
||||||
|
setpoint <!> setpoint
|
||||||
|
size <!> size
|
||||||
|
subtitles <!> subtitles
|
||||||
|
volume <!> volume
|
||||||
|
zap <!> zap
|
||||||
options <o> Options
|
options <o> Options
|
||||||
annotations <[]> Array of annotations
|
annotations <[]> Array of annotations
|
||||||
id <s> Optional id
|
id <s> Optional id
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoPreview <f> Video Preview
|
Ox.VideoPreview <f> Video Preview
|
||||||
([options[, self]]) -> <o:Ox.Element> Video Preview
|
([options[, self]]) -> <o:Ox.Element> Video Preview
|
||||||
|
click <!> click
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,25 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoTimelinePanel <f> Video timeline panel
|
Ox.VideoTimelinePanel <f> Video timeline panel
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Video timeline panel
|
([options[, self]]) -> <o:Ox.SplitPanel> Video timeline panel
|
||||||
|
annoationssize <!> annoationssize
|
||||||
|
annotationsfont <!> annotationsfont
|
||||||
|
annotationsrange <!> annotationsrange
|
||||||
|
annotationssort <!> annotationssort
|
||||||
|
censored <!> censored
|
||||||
|
follow <!> follow
|
||||||
|
info <!> info
|
||||||
|
muted <!> muted
|
||||||
|
paused <!> paused
|
||||||
|
position <!> position
|
||||||
|
resizecalendar <!> resizecalendar
|
||||||
|
resizemap <!> resizemap
|
||||||
|
select <!> select
|
||||||
|
timeline <!> timeline
|
||||||
|
toggleannotations <!> toggleannotations
|
||||||
|
togglecalendar <!> togglecalendar
|
||||||
|
togglelayer <!> togglelayer
|
||||||
|
togglemap <!> togglemap
|
||||||
|
volume <!> volume
|
||||||
@*/
|
@*/
|
||||||
|
|
||||||
Ox.VideoTimelinePanel = function(options, self) {
|
Ox.VideoTimelinePanel = function(options, self) {
|
||||||
|
|
|
@ -3,6 +3,13 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.VideoTimelinePlayer <f> Video Timeline Player
|
Ox.VideoTimelinePlayer <f> Video Timeline Player
|
||||||
([options[, self]]) -> <o:Ox.SplitPanel> Video Timeline Player
|
([options[, self]]) -> <o:Ox.SplitPanel> Video Timeline Player
|
||||||
|
censored <!> censored
|
||||||
|
follow <!> follow
|
||||||
|
muted <!> muted
|
||||||
|
playing <!> playing
|
||||||
|
position <!> position
|
||||||
|
timeline <!> timeline
|
||||||
|
volume <!> volume
|
||||||
options <o> Options
|
options <o> Options
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Dialog <f> Dialog object
|
Ox.Dialog <f> Dialog object
|
||||||
([options[, self]]) -> <o:Ox.Element> Dialog object
|
([options[, self]]) -> <o:Ox.Element> Dialog object
|
||||||
|
close <!> close
|
||||||
|
open <!> open
|
||||||
|
resizeend <!> resizeend
|
||||||
|
resize <!> resize
|
||||||
options <o> Options object
|
options <o> Options object
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
@*/
|
@*/
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
/*@
|
/*@
|
||||||
Ox.Layer <f> Background layer for dialogs and menus
|
Ox.Layer <f> Background layer for dialogs and menus
|
||||||
([options[, self]]) -> <o:Ox.Element> Layer
|
([options[, self]]) -> <o:Ox.Element> Layer
|
||||||
|
click <!> click
|
||||||
options <o> Options
|
options <o> Options
|
||||||
type <s|'dialog'> Layer type ('dialog' or 'menu')
|
type <s|'dialog'> Layer type ('dialog' or 'menu')
|
||||||
self <o> Shared private variable
|
self <o> Shared private variable
|
||||||
|
|
Loading…
Reference in a new issue