blob: 90dbbb465329d6c9c12b55dea8257058d9924391 [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 org.apache.flex.html.staticControls.beads
{
import flash.display.Graphics;
import org.apache.flex.core.IBead;
import org.apache.flex.core.IStrand;
import org.apache.flex.core.UIBase;
import org.apache.flex.core.ValuesManager;
import org.apache.flex.events.Event;
import org.apache.flex.events.IEventDispatcher;
public class SolidBackgroundBead implements IBead, IBackgroundBead, IGraphicsDrawing
{
public function SolidBackgroundBead()
{
}
private var _strand:IStrand;
public function get strand():IStrand
{
return _strand;
}
public function set strand(value:IStrand):void
{
_strand = value;
IEventDispatcher(value).addEventListener("heightChanged", changeHandler);
IEventDispatcher(value).addEventListener("widthChanged", changeHandler);
var bgColor:Object = ValuesManager.valuesImpl.getValue(value, "background-color");
if( bgColor != null ) {
backgroundColor = uint(bgColor);
}
var bgAlpha:Object = ValuesManager.valuesImpl.getValue(value, "opacity");
if( bgAlpha != null ) {
opacity = Number(bgAlpha);
}
}
private var _backgroundColor:uint;
public function get backgroundColor():uint
{
return _backgroundColor;
}
public function set backgroundColor(value:uint):void
{
_backgroundColor = value;
if (_strand)
changeHandler(null);
}
private var _opacity:Number = 1.0;
public function get opacity():Number
{
return _opacity;
}
public function set opacity(value:Number):void
{
_opacity = value;
if( _strand )
changeHandler(null);
}
private function changeHandler(event:Event):void
{
var host:UIBase = UIBase(_strand);
var g:Graphics = host.graphics;
var w:Number = host.width;
var h:Number = host.height;
var gd:IGraphicsDrawing = strand.getBeadByType(IGraphicsDrawing) as IGraphicsDrawing;
if( this == gd ) g.clear();
g.beginFill(backgroundColor,opacity);
g.drawRect(0, 0, w, h);
g.endFill();
}
}
}