blob: 69dc0c18981ff8d979280e4bf1475b297aa855cc [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
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.
-->
<!--- The default skin class for a Spark RadioButton component.
@langversion 3.0
@playerversion Flash 10
@playerversion AIR 1.5
@productversion Flex 4
-->
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:fb="http://ns.adobe.com/flashbuilder/2009" alpha.disabledStates="0.5">
<fx:Metadata>
<![CDATA[
/**
* @copy spark.skins.spark.ApplicationSkin#hostComponent
*/
[HostComponent("spark.components.RadioButton")]
]]>
</fx:Metadata>
<fx:Script>
<![CDATA[
/**
* @inheritDoc
*/
override public function get focusSkinExclusions():Array {return ["labelDisplay"]};
]]>
</fx:Script>
<s:states>
<s:State name="up" />
<s:State name="over" stateGroups="overStates" />
<s:State name="down" stateGroups="downStates" />
<s:State name="disabled" stateGroups="disabledStates" />
<s:State name="upAndSelected" stateGroups="selectedStates" />
<s:State name="overAndSelected" stateGroups="overStates, selectedStates" />
<s:State name="downAndSelected" stateGroups="downStates, selectedStates" />
<s:State name="disabledAndSelected" stateGroups="disabledStates, selectedStates" />
</s:states>
<s:Group verticalCenter="0" minHeight="14" minWidth="14">
<!-- Layer 1: border -->
<s:Ellipse id="border" left="0" right="0" top="0" bottom="0">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0x426089"
color.over="0x5C85B8"
color.down="0x263852"
alpha="1.0" />
<s:GradientEntry color="0x304663"
color.over="0x43658F"
color.down="0x2E4260"
alpha="1.0" />
</s:LinearGradient>
</s:fill>
</s:Ellipse>
<!-- Layer 2: innerBorder -->
<s:Ellipse id="innerBorder" left="1" right="1" top="1" bottom="1">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0x557FB5"
color.over="0x77B1D2"
color.down="0x344E6D"
alpha="1.0" />
<s:GradientEntry color="0x42628A"
color.over="0x5C89B9"
color.down="0x3E5A80"
alpha="1.0" />
</s:LinearGradient>
</s:fill>
</s:Ellipse>
<!-- Layer 3: insetBorder -->
<s:Ellipse id="insetBorder" left="2" right="2" top="2" bottom="2">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0x426089"
color.over="0x426089"
color.down="0x263852"
alpha="1.0" />
<s:GradientEntry color="0x304663"
color.over="0x304663"
color.down="0x2E4260"
alpha="1.0" />
</s:LinearGradient>
</s:fill>
</s:Ellipse>
<!-- Layer 4: fill -->
<s:Ellipse id="fill" left="3" right="3" top="3" bottom="3">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0x446690"
color.over="0x446690"
color.down="0x2B405C"
alpha="1.0"/>
<s:GradientEntry color="0x496C9A"
color.over="0x496C9A"
color.down="0x2F4563"
alpha="1.0"
ratio=".1"/>
<s:GradientEntry color="0x3D5A80"
color.over="0x3D5A80"
color.down="0x354D6F"
alpha="1.0"
ratio=".9"/>
<s:GradientEntry color="0x385275"
color.over="0x385275"
color.down="0x314867"
alpha="1.0"
ratio=".1"/>
</s:LinearGradient>
</s:fill>
</s:Ellipse>
<!-- dot dropShadow -->
<s:Ellipse id="dotDropShadow" verticalCenter="1" horizontalCenter="0" width="4" height="4"
includeIn="selectedStates" itemCreationPolicy="immediate">
<s:fill>
<s:SolidColor color="0x000000" alpha="0.5"/>
</s:fill>
</s:Ellipse>
<!-- dot -->
<s:Ellipse id="dot" verticalCenter="0" horizontalCenter="0" width="4" height="4"
includeIn="selectedStates" itemCreationPolicy="immediate">
<s:fill>
<s:LinearGradient rotation="90">
<s:GradientEntry color="0xFFFFFF" alpha="1.0" />
<s:GradientEntry color="0xCCCCCC" alpha="1.0" />
</s:LinearGradient>
</s:fill>
</s:Ellipse>
</s:Group>
<!-- Label -->
<!--- Defines the text next to the dot in a RadioButton component.-->
<s:Label id="labelDisplay"
textAlign="start"
verticalAlign="middle"
lineBreak="toFit"
maxDisplayedLines="1"
left="18" right="0" top="0" bottom="0" verticalCenter="2" />
</s:Skin>