blob: 7d4097bcc7a70ec74b5b1a05b0146fc37d0cdd2d [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.effects.effectClasses
{
import flash.events.Event;
import flash.filters.BlurFilter;
import mx.core.mx_internal;
/**
* The BlurInstance class implements the instance class
* for the Blur effect.
* Flex creates an instance of this class when it plays a Blur effect;
* you do not create one yourself.
*
* <p>Every effect class that is a subclass of the TweenEffect class
* supports the following events:</p>
*
* <ul>
* <li><code>tweenEnd</code>: Dispatched when the tween effect ends. </li>
*
* <li><code>tweenUpdate</code>: Dispatched every time a TweenEffect
* class calculates a new value.</li>
* </ul>
*
* <p>The event object passed to the event listener for these events is of type TweenEvent.
* The TweenEvent class defines the property <code>value</code>, which contains
* the tween value calculated by the effect.
* For the Blur effect,
* the <code>TweenEvent.value</code> property contains a 2-item Array, where: </p>
* <ul>
* <li>value[0]:Number A value between the values of the <code>Blur.blurXTo</code>
* and <code>Blur.blurXFrom</code> property, applied to the
* target's <code>BlurFilter.blurX</code> property.</li>
*
* <li>value[1]:Number A value between the values of the <code>Blur.blurYTo</code>
* and <code>Blur.blurYFrom</code> property, applied to the
* target's <code>BlurFilter.blurY</code> property.</li>
* </ul>
*
* @see mx.effects.Blur
* @see mx.events.TweenEvent
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class BlurInstance extends TweenEffectInstance
{
include "../../core/Version.as";
//--------------------------------------------------------------------------
//
// Constructor
//
//--------------------------------------------------------------------------
/**
* Constructor.
*
* @param target The Object to animate with this effect.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public function BlurInstance(target:Object)
{
super(target);
}
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
//----------------------------------
// blurXFrom
//----------------------------------
/**
* The starting amount of horizontal blur.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var blurXFrom:Number;
//----------------------------------
// blurXTo
//----------------------------------
/**
* The ending amount of horizontal blur.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var blurXTo:Number;
//----------------------------------
// blurYFrom
//----------------------------------
/**
* The starting amount of vertical blur.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var blurYFrom:Number;
//----------------------------------
// blurYTo
//----------------------------------
/**
* The ending amount of vertical blur.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public var blurYTo:Number;
//--------------------------------------------------------------------------
//
// Overridden methods
//
//--------------------------------------------------------------------------
/**
* @private
*/
override public function initEffect(event:Event):void
{
super.initEffect(event);
}
/**
* @private
*/
override public function play():void
{
// Dispatch an effectStart event from the target.
super.play();
tween = createTween(this, [ blurXFrom, blurYFrom ],
[ blurXTo, blurYTo ], duration);
// target.filters = ???
}
/**
* @private
*/
override public function onTweenUpdate(value:Object):void
{
setBlurFilter(value[0], value[1]);
}
/**
* @private
*/
override public function onTweenEnd(value:Object):void
{
setBlurFilter(value[0], value[1]);
super.onTweenEnd(value);
}
//--------------------------------------------------------------------------
//
// Methods
//
//--------------------------------------------------------------------------
/**
* @private
*/
private function setBlurFilter(blurX:Number, blurY:Number):void
{
var filters:Array = target.filters;
// Remove any existing Blur filters
var n:int = filters.length;
for (var i:int = 0; i < n; i++)
{
if (filters[i] is BlurFilter)
filters.splice(i, 1);
}
if (blurX || blurY)
filters.push(new BlurFilter(blurX, blurY));
target.filters = filters;
}
}
}