X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..refs/heads/master:/docs/output/Ext.fx.Manager.js diff --git a/docs/output/Ext.fx.Manager.js b/docs/output/Ext.fx.Manager.js index 86fa302c..d3735b0d 100644 --- a/docs/output/Ext.fx.Manager.js +++ b/docs/output/Ext.fx.Manager.js @@ -1,161 +1 @@ -Ext.data.JsonP.Ext_fx_Manager({ - "tagname": "class", - "name": "Ext.fx.Manager", - "doc": "
Animation Manager which keeps track of all current animations and manages them on a frame by frame basis.
\n", - "extends": null, - "mixins": [ - "Ext.fx.Queue" - ], - "alternateClassNames": [ - - ], - "xtype": null, - "author": null, - "docauthor": null, - "singleton": true, - "private": true, - "cfg": [ - { - "tagname": "cfg", - "name": "forceJS", - "member": "Ext.fx.Manager", - "type": "Boolean", - "doc": "Turn off to not use CSS3 transitions when they are available
\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/fx/Manager.js", - "linenr": 55, - "html_filename": "Manager3.html", - "href": "Manager3.html#Ext-fx-Manager-cfg-forceJS" - }, - { - "tagname": "cfg", - "name": "interval", - "member": "Ext.fx.Manager", - "type": "Number", - "doc": "Default interval in miliseconds to calculate each frame. Defaults to 16ms (~60fps)
\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/fx/Manager.js", - "linenr": 50, - "html_filename": "Manager3.html", - "href": "Manager3.html#Ext-fx-Manager-cfg-interval" - } - ], - "method": [ - { - "tagname": "method", - "name": "addAnim", - "member": "Ext.fx.Manager", - "doc": "Add an Anim to the manager. This is done automatically when an Anim instance is created.
\n", - "params": [ - { - "type": "Ext.fx.Anim", - "name": "anim", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/fx/Manager.js", - "linenr": 114, - "html_filename": "Manager3.html", - "href": "Manager3.html#Ext-fx-Manager-method-addAnim", - "shortDoc": "Add an Anim to the manager. This is done automatically when an Anim instance is created.
\n" - }, - { - "tagname": "method", - "name": "collectTargetData", - "member": "Ext.fx.Manager", - "doc": "Collect target attributes for the given Anim object at the given timestamp
\n", - "params": [ - { - "type": "Ext.fx.Anim", - "name": "anim", - "doc": "The Anim instance
\n", - "optional": false - }, - { - "type": "Number", - "name": "timestamp", - "doc": "Time after the anim's start time
\n", - "optional": false - }, - { - "type": "Object", - "name": "useCSS3", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/fx/Manager.js", - "linenr": 267, - "html_filename": "Manager3.html", - "href": "Manager3.html#Ext-fx-Manager-method-collectTargetData", - "shortDoc": "Collect target attributes for the given Anim object at the given timestamp
\n" - }, - { - "tagname": "method", - "name": "removeAnim", - "member": "Ext.fx.Manager", - "doc": "Remove an Anim from the manager. This is done automatically when an Anim ends.
\n", - "params": [ - { - "type": "Ext.fx.Anim", - "name": "anim", - "doc": "\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" - }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/fx/Manager.js", - "linenr": 152, - "html_filename": "Manager3.html", - "href": "Manager3.html#Ext-fx-Manager-method-removeAnim", - "shortDoc": "Remove an Anim from the manager. This is done automatically when an Anim ends.
\n" - } - ], - "property": [ - - ], - "event": [ - - ], - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/fx/Manager.js", - "linenr": 1, - "html_filename": "Manager3.html", - "href": "Manager3.html#Ext-fx-Manager", - "cssVar": [ - - ], - "cssMixin": [ - - ], - "component": false, - "superclasses": [ - - ], - "subclasses": [ - - ], - "mixedInto": [ - - ], - "allMixins": [ - "Ext.fx.Queue" - ] -}); \ No newline at end of file +Ext.data.JsonP.Ext_fx_Manager({"tagname":"class","html":"Hierarchy
Ext.BaseExt.fx.ManagerMixins
Requires
Files
NOTE This is a private utility class for internal use by the framework. Don't rely on its existence.
Animation Manager which keeps track of all current animations and manages them on a frame by frame basis.
\nGet the reference to the current class from which this object was instantiated. Unlike statics,\nthis.self
is scope-dependent and it's meant to be used for dynamic inheritance. See statics\nfor a detailed comparison
Ext.define('My.Cat', {\n statics: {\n speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n },\n\n constructor: function() {\n alert(this.self.speciesName); / dependent on 'this'\n\n return this;\n },\n\n clone: function() {\n return new this.self();\n }\n});\n\n\nExt.define('My.SnowLeopard', {\n extend: 'My.Cat',\n statics: {\n speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard'\n }\n});\n\nvar cat = new My.Cat(); // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard'\n
\nAdd an Anim to the manager. This is done automatically when an Anim instance is created.
\nCall the original method that was previously overridden with override
\n\nExt.define('My.Cat', {\n constructor: function() {\n alert(\"I'm a cat!\");\n\n return this;\n }\n});\n\nMy.Cat.override({\n constructor: function() {\n alert(\"I'm going to be a cat!\");\n\n var instance = this.callOverridden();\n\n alert(\"Meeeeoooowwww\");\n\n return instance;\n }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n // alerts \"I'm a cat!\"\n // alerts \"Meeeeoooowwww\"\n
\nThe arguments, either an array or the arguments
object
Returns the result after calling the overridden method
\nCall the parent's overridden method. For example:
\n\nExt.define('My.own.A', {\n constructor: function(test) {\n alert(test);\n }\n});\n\nExt.define('My.own.B', {\n extend: 'My.own.A',\n\n constructor: function(test) {\n alert(test);\n\n this.callParent([test + 1]);\n }\n});\n\nExt.define('My.own.C', {\n extend: 'My.own.B',\n\n constructor: function() {\n alert(\"Going to call parent's overriden constructor...\");\n\n this.callParent(arguments);\n }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n // alerts '2', then alerts '3'\n
\nThe arguments, either an array or the arguments
object\nfrom the current method, for example: this.callParent(arguments)
Returns the result from the superclass' method
\nCollect target attributes for the given Anim object at the given timestamp
\nThe Anim instance
\nTime after the anim's start time
\nInitialize configuration for this class. a typical example:
\n\nExt.define('My.awesome.Class', {\n // The default config\n config: {\n name: 'Awesome',\n isAwesome: true\n },\n\n constructor: function(config) {\n this.initConfig(config);\n\n return this;\n }\n});\n\nvar awesome = new My.awesome.Class({\n name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\nmixins The mixin prototypes as key - value pairs
\nRemove an Anim from the manager. This is done automatically when an Anim ends.
\nGet the reference to the class from which this object was instantiated. Note that unlike self,\nthis.statics()
is scope-independent and it always returns the class from which it was called, regardless of what\nthis
points to during run-time
Ext.define('My.Cat', {\n statics: {\n totalCreated: 0,\n speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n },\n\n constructor: function() {\n var statics = this.statics();\n\n alert(statics.speciesName); // always equals to 'Cat' no matter what 'this' refers to\n // equivalent to: My.Cat.speciesName\n\n alert(this.self.speciesName); // dependent on 'this'\n\n statics.totalCreated++;\n\n return this;\n },\n\n clone: function() {\n var cloned = new this.self; // dependent on 'this'\n\n cloned.groupName = this.statics().speciesName; // equivalent to: My.Cat.speciesName\n\n return cloned;\n }\n});\n\n\nExt.define('My.SnowLeopard', {\n extend: 'My.Cat',\n\n statics: {\n speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard'\n },\n\n constructor: function() {\n this.callParent();\n }\n});\n\nvar cat = new My.Cat(); // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard'\nalert(clone.groupName); // alerts 'Cat'\n\nalert(My.Cat.totalCreated); // alerts 3\n
\n