123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- goog.provide('goog.fx.TransitionBase');
- goog.provide('goog.fx.TransitionBase.State');
- goog.require('goog.events.EventTarget');
- goog.require('goog.fx.Transition');
- goog.fx.TransitionBase = function() {
- goog.fx.TransitionBase.base(this, 'constructor');
-
- this.state_ = goog.fx.TransitionBase.State.STOPPED;
-
- this.startTime = null;
-
- this.endTime = null;
- };
- goog.inherits(goog.fx.TransitionBase, goog.events.EventTarget);
- goog.fx.TransitionBase.State = {
- STOPPED: 0,
- PAUSED: -1,
- PLAYING: 1
- };
- goog.fx.TransitionBase.prototype.play = goog.abstractMethod;
- goog.fx.TransitionBase.prototype.stop = goog.abstractMethod;
- goog.fx.TransitionBase.prototype.pause = goog.abstractMethod;
- goog.fx.TransitionBase.prototype.getStateInternal = function() {
- return this.state_;
- };
- goog.fx.TransitionBase.prototype.setStatePlaying = function() {
- this.state_ = goog.fx.TransitionBase.State.PLAYING;
- };
- goog.fx.TransitionBase.prototype.setStatePaused = function() {
- this.state_ = goog.fx.TransitionBase.State.PAUSED;
- };
- goog.fx.TransitionBase.prototype.setStateStopped = function() {
- this.state_ = goog.fx.TransitionBase.State.STOPPED;
- };
- goog.fx.TransitionBase.prototype.isPlaying = function() {
- return this.state_ == goog.fx.TransitionBase.State.PLAYING;
- };
- goog.fx.TransitionBase.prototype.isPaused = function() {
- return this.state_ == goog.fx.TransitionBase.State.PAUSED;
- };
- goog.fx.TransitionBase.prototype.isStopped = function() {
- return this.state_ == goog.fx.TransitionBase.State.STOPPED;
- };
- goog.fx.TransitionBase.prototype.onBegin = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.BEGIN);
- };
- goog.fx.TransitionBase.prototype.onEnd = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.END);
- };
- goog.fx.TransitionBase.prototype.onFinish = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.FINISH);
- };
- goog.fx.TransitionBase.prototype.onPause = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.PAUSE);
- };
- goog.fx.TransitionBase.prototype.onPlay = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.PLAY);
- };
- goog.fx.TransitionBase.prototype.onResume = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.RESUME);
- };
- goog.fx.TransitionBase.prototype.onStop = function() {
- this.dispatchAnimationEvent(goog.fx.Transition.EventType.STOP);
- };
- goog.fx.TransitionBase.prototype.dispatchAnimationEvent = function(type) {
- this.dispatchEvent(type);
- };
|