blob: ce56543b2836042b0644e0232c6f0452e0b8e406 [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 the Spark Button component.
@see spark.components.Button
@langversion 3.0
@playerversion Flash 10
@playerversion AIR 1.5
@productversion Flex 4
-->
<s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:fb="http://ns.adobe.com/flashbuilder/2009"
minWidth="21" minHeight="21" height="{ButtonSizeEnum.Normal}"
alpha.disabled="0.5">
<fx:Metadata>[HostComponent("spark.components.Button")]</fx:Metadata>
<fx:Script fb:purpose="styling">
<![CDATA[
import flatspark.enums.BrandColorEnum;
import flatspark.enums.ButtonColorEnum;
import flatspark.enums.ButtonSizeEnum;
import flatspark.enums.TextInputSizeEnum;
import flatspark.utils.ColorUtils;
/* Define the skin elements that should not be colorized.
For button, the graphics are colorized but the label is not. */
static private const exclusions:Array = ["iconDisplay", "labelDisplay"];
/**
* @private
*/
override public function get colorizeExclusions():Array {return exclusions;}
/**
* @private
*/
override protected function initializationComplete():void
{
useChromeColor = true;
hostComponent.useHandCursor=true;
hostComponent.buttonMode=true;
super.initializationComplete();
}
/**
* @private
*/
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number) : void
{
var cr:Number = getStyle("cornerRadius");
if (cornerRadius != cr)
{
cornerRadius = cr;
fill_up.radiusX = cornerRadius;
fill_over.radiusX = cornerRadius;
fill_down.radiusX = cornerRadius;
fill_disabled.radiusX = cornerRadius;
}
/*var larguraIcone:int = 0;
if (iconFont.text != null && iconFont.text != "")
{
larguraIcone = 60;
}*/
super.updateDisplayList(unscaledWidth, unscaledHeight);
}
private var cornerRadius:Number = 2;
private static function getFontSize(height:int):int
{
var altura:int = 15;
switch (height)
{
case ButtonSizeEnum.Large:
altura = 17;
break;
case ButtonSizeEnum.Normal:
altura = 14;
break;
case ButtonSizeEnum.Small:
altura = 13;
break;
case ButtonSizeEnum.ExtraSmall:
altura = 12;
break;
}
return altura;
}
private static function getIconSize(height:int):int
{
var altura:int = 17;
switch (height)
{
case ButtonSizeEnum.Large:
altura = 19;
break;
case ButtonSizeEnum.Normal:
altura = 17;
break;
case ButtonSizeEnum.Small:
altura = 15;
break;
case ButtonSizeEnum.ExtraSmall:
altura = 12;
break;
}
return altura;
}
]]>
</fx:Script>
<!-- states -->
<s:states>
<s:State name="up" id="stateUp"/>
<s:State name="over" id="stateOver"/>
<s:State name="down" id="stateDown"/>
<s:State name="disabled" id="stateDisabled"/>
</s:states>
<!-- layer 2: fill -->
<!--- @private -->
<s:Rect id="fill_up" left="1" right="1" top="1" bottom="1" radiusX="6" includeIn="up">
<s:fill>
<s:SolidColor color="{ColorUtils.ButtonColor(BrandColorEnum.Default,stateUp)}"/>
</s:fill>
</s:Rect>
<s:Rect id="fill_over" left="1" right="1" top="1" bottom="1" radiusX="6" includeIn="over">
<s:fill>
<s:SolidColor color="{ColorUtils.ButtonColor(BrandColorEnum.Default,stateOver)}"/>
</s:fill>
</s:Rect>
<s:Rect id="fill_down" left="1" right="1" top="1" bottom="1" radiusX="6" includeIn="down">
<s:fill>
<s:SolidColor color="{ColorUtils.ButtonColor(BrandColorEnum.Default,stateDown)}"/>
</s:fill>
</s:Rect>
<s:Rect id="fill_disabled" left="1" right="1" top="1" bottom="1" radiusX="6" includeIn="disabled">
<s:fill>
<s:SolidColor color="{ColorUtils.ButtonColor(BrandColorEnum.Default,stateDisabled)}"/>
</s:fill>
</s:Rect>
<!-- layer 8: text -->
<!--- @copy spark.components.supportClasses.ButtonBase#labelDisplay -->
<s:Label id="labelDisplay" color="0xFFFFFF" color.disabled="0xE3E3E3" right="10" left="10"
textAlign="center" fontSize="{getFontSize(hostComponent.height)}" fontFamily="Lato"
maxDisplayedLines="1"
horizontalCenter="0" verticalCenter="1" verticalAlign="middle">
</s:Label>
</s:SparkSkin>