blob: f14036cdfb004c79cd664d0473df7467f7c8b105 [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 thumb and track skins are defined by the HSliderThumbSkin and HSliderTrackSkin classes, respectively. -->
<s:Skin
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
minHeight="11" minWidth="100"
alpha.disabled="0.5">
<fx:Metadata>
<![CDATA[
/**
* @copy spark.skins.default.ApplicationSkin#hostComponent
*/
[HostComponent("spark.components.HSlider")]
]]>
</fx:Metadata>
<s:states>
<s:State name="normal" />
<s:State name="disabled" />
</s:states>
<fx:Declarations>
<!--- Defines the appearance of the the Slider's DataTip. To customize the DataTip's appearance, create a custom HSliderSkin class. -->
<fx:Component id="dataTip">
<s:DataRenderer minHeight="24" minWidth="40" y="-34">
<s:Rect top="2" left="0" right="0" bottom="0" radiusX="6">
<s:fill>
<s:SolidColor color="0x000000" alpha=".25"/>
</s:fill>
</s:Rect>
<s:Rect top="0" left="0" right="0" bottom="2" radiusX="6">
<s:fill>
<s:SolidColor color="0xC9CEEE" alpha="1"/>
</s:fill>
</s:Rect>
<s:Label id="labelDisplay" text="{data}"
horizontalCenter="0" verticalCenter="1"
left="5" right="5" top="1" bottom="5"
textAlign="center" verticalAlign="middle"
fontWeight="normal" color="0x000000" fontSize="11">
</s:Label>
</s:DataRenderer>
</fx:Component>
</fx:Declarations>
<!--- Defines the skin class for the HSliderSkin's track. The default skin class is HSliderTrackSkin. -->
<!-- using a graphical skin, need to increase constraints top and bottom so track does not scale to the bounding height of the thumb -->
<s:Button id="track" left="0" right="0" top="4" bottom="4"
skinClass="arcade.skins.HSliderTrackSkin"/>
<!--- Defines the skin class for the HSliderSkin's thumb. The default skin class is HSliderThumbSkin. -->
<s:Button id="thumb" top="0" bottom="0" width="11" height="11"
skinClass="arcade.skins.HSliderThumbSkin"/>
</s:Skin>