Packageqnx.fuse.ui.core
Classpublic class SkinnableComponent
InheritanceSkinnableComponent Inheritance UIComponent Inheritance flash.display.MovieClip
Subclasses ActivityIndicator, Button, CellRenderer, ProgressBar, TextInputBase

The SkinnableComponent class is the base class for components that can be skinned.



Public Properties
 PropertyDefined By
 InheritedexplicitHeight : Number
[read-only]
UIComponent
 InheritedexplicitWidth : Number
[read-only]
UIComponent
 InheritedincludeInLayout : Boolean
Specifies if the component should be included in it's parent containers layout.
UIComponent
 InheritedlayoutData : Object
Returns the layout data for the object.
UIComponent
 InheritedminHeight : Number
Sets the minimum preferred height of the control.
UIComponent
 InheritedminWidth : Number
Sets the minimum preferred width of the control.
UIComponent
  state : String
Gets or sets the state of the component.
SkinnableComponent
Protected Properties
 PropertyDefined By
 InheriteddisplayListIsInvalid : Boolean = false
UIComponent
 InheritedpropertiesAreInvalid : Boolean = false
UIComponent
 InheritedsizeChange : Boolean
UIComponent
 InheritedstateChanged : Boolean
UIComponent
Public Methods
 MethodDefined By
  
Constructs a SkinnableComponent instance.
SkinnableComponent
 Inherited
childChanged(resizedChild:DisplayObject = null):Boolean
Notifies the UIComponent that one or more of its children has changed in a manner that may affect this object's layout.
UIComponent
 Inherited
destroy():void
Call this method when you want to have your object collected by the garbage collector.
UIComponent
 Inherited
UIComponent
 Inherited
Calling this method results in a call to the components validateDisplayList() method before the display list is rendered.
UIComponent
 Inherited
Calling this method results in a call to the components validateProperties() method before the display list is rendered.
UIComponent
 Inherited
measure(availableWidth:Number, availableHeight:Number):LayoutMeasurement
UIComponent
 Inherited
setActualSize(w:Number, h:Number):void
Sets the width and height of the object without setting the explicitWidth and explicitHeight.
UIComponent
 Inherited
setLayoutBounds(bounds:Rectangle):void
Sets the receiver's size and location to the rectangular area specified by the arguments.
UIComponent
 Inherited
setPosition(x:Number, y:Number):void
Sets the x and y position of the component.
UIComponent
  
setSkin(newSkin:Object):void
Set the skin object on the component for it to render.
SkinnableComponent
 Inherited
Validates the display list of the component by calling the updateDisplayList().
UIComponent
 Inherited
Validates the component immediately by calling validateProperties(), validateSizes(), and validateDisplayList() if necessary.
UIComponent
 Inherited
Validates the properties of the component by calling the commitProperties() method.
UIComponent
Protected Methods
 MethodDefined By
 Inherited
Process properties of the component.
UIComponent
 Inherited
Process the state of the component.
UIComponent
 Inherited
doMeasure(availableWidth:Number, availableHeight:Number):LayoutMeasurement
UIComponent
 Inherited
flushCache():void
Invoked as part of parentLayoutChanged.
UIComponent
 Inherited
onAdded():void
Called when the instance is added to the stage.
UIComponent
 Inherited
onRemoved():void
Called when the instance is removed from the stage.
UIComponent
 Inherited
Invalidates the parent's size and display list if includeInLayout property is set to true.
UIComponent
 Inherited
updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
Sets the size and position of the children of the component.
UIComponent
  
updateSkin(unscaledWidth:Number, unscaledHeight:Number):void
Updates the skin.
SkinnableComponent
Property Detail
stateproperty
state:String

Gets or sets the state of the component.

Each component and skin may implement different states. When possible this property should be set to one of the values in the SkinStates class.

When a state change occurs the commitProperties() method is called. This is where you can adjust the state of any children in your own components to reflect the new state.


Implementation
    public function get state():String
    public function set state(value:String):void

See also

Constructor Detail
SkinnableComponent()Constructor
public function SkinnableComponent()

Constructs a SkinnableComponent instance.

Method Detail
setSkin()method
public function setSkin(newSkin:Object):void

Set the skin object on the component for it to render.

If a skin is found, it is removed and a new skin is created. The cellSkin parameter can be one of three different types: Class, String, or DisplayObject instance.

Skins must implement the ISkin interface.

Parameters

newSkin:Object

See also

updateSkin()method 
protected function updateSkin(unscaledWidth:Number, unscaledHeight:Number):void

Updates the skin.

This method is called from the updateDisplayList method with the same unscaledWidth and unscaledHeight values. Component developers should override this method if they wish to position or change the size of the skin based on the components size.

Parameters

unscaledWidth:Number
 
unscaledHeight:Number