| <?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 wireframe skin class for the Spark Panel component. |
| Skin classes in the wireframe package are useful for using as a simple base for a custom skin. |
| |
| @see spark.components.Panel |
| |
| @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" |
| alpha.disabled="0.5" alpha.disabledWithControlBar="0.5" minWidth="131" minHeight="127"> |
| |
| <fx:Metadata> |
| /** |
| * @copy spark.skins.spark.ApplicationSkin#hostComponent |
| */ |
| [HostComponent("spark.components.Panel")] |
| </fx:Metadata> |
| |
| <s:states> |
| <s:State name="normal" /> |
| <s:State name="disabled" /> |
| <s:State name="normalWithControlBar" /> |
| <s:State name="disabledWithControlBar" /> |
| </s:states> |
| |
| <!-- drop shadow --> |
| <s:Rect left="0" top="0" right="0" bottom="0"> |
| <!-- TODO (klin): Should this be changed to a RectangularDropShadow --> |
| <s:filters> |
| <s:DropShadowFilter blurX="15" blurY="15" alpha="0.18" distance="11" angle="90" knockout="true" /> |
| </s:filters> |
| <s:fill> |
| <s:SolidColor color="0" /> |
| </s:fill> |
| </s:Rect> |
| |
| <!-- layer 1: border --> |
| <s:Rect left="0" right="0" top="0" bottom="0"> |
| <s:stroke> |
| <s:SolidColorStroke color="#707070" weight="1" /> |
| </s:stroke> |
| </s:Rect> |
| |
| <!-- layer 2: background fill --> |
| <s:Rect left="1" top="1" right="1" bottom="1"> |
| <s:fill> |
| <s:SolidColor color="#FFFFFF" /> |
| </s:fill> |
| </s:Rect> |
| |
| <!-- layer 3: contents --> |
| <s:Group left="1" right="1" top="1" bottom="1" > |
| <s:layout> |
| <s:VerticalLayout gap="0" horizontalAlign="justify" /> |
| </s:layout> |
| |
| <!--- @private --> |
| <s:Group id="topGroup" > |
| <!-- layer 0: title bar fill --> |
| <s:Rect left="0" right="0" top="0" bottom="1"> |
| <s:fill> |
| <s:SolidColor color="#EEEEEE" /> |
| </s:fill> |
| </s:Rect> |
| |
| <!-- layer 1: title bar highlight --> |
| <s:Rect left="0" right="0" top="0" bottom="0"> |
| <s:stroke> |
| <s:LinearGradientStroke rotation="90" weight="1"> |
| <s:GradientEntry color="#EEEEEE" /> |
| <s:GradientEntry color="#EEEEEE" /> |
| </s:LinearGradientStroke> |
| </s:stroke> |
| </s:Rect> |
| |
| <!-- layer 2: title bar divider --> |
| <s:Rect left="0" right="0" bottom="0" height="1"> |
| <s:fill> |
| <s:SolidColor color="#DDDDDD" /> |
| </s:fill> |
| </s:Rect> |
| |
| <!-- layer 3: text --> |
| <!--- @copy spark.components.Panel#titleDisplay --> |
| <s:Label id="titleDisplay" maxDisplayedLines="1" |
| left="9" right="3" top="1" minHeight="30" |
| verticalAlign="middle" fontWeight="bold"> |
| </s:Label> |
| |
| </s:Group> |
| |
| <!--- @copy spark.components.SkinnableContainer#contentGroup --> |
| <s:Group id="contentGroup" width="100%" height="100%" minWidth="0" minHeight="0"> |
| </s:Group> |
| |
| <!--- @private --> |
| <s:Group id="bottomGroup" minWidth="0" minHeight="0" |
| includeIn="normalWithControlBar, disabledWithControlBar" > |
| <!-- layer 0: control bar background --> |
| <s:Rect left="0" right="0" bottom="0" top="1" > |
| <s:fill> |
| <s:SolidColor color="#EEEEEE" /> |
| </s:fill> |
| </s:Rect> |
| |
| <!-- layer 1: control bar divider line --> |
| <s:Rect left="0" right="0" top="0" height="1" > |
| <s:fill> |
| <s:SolidColor color="#DDDDDD" /> |
| </s:fill> |
| </s:Rect> |
| |
| <!-- layer 2: control bar --> |
| <!--- @copy spark.components.Panel#controlBarGroup --> |
| <s:Group id="controlBarGroup" left="0" right="0" top="1" bottom="1" minWidth="0" minHeight="0"> |
| <s:layout> |
| <s:HorizontalLayout paddingLeft="10" paddingRight="10" paddingTop="7" paddingBottom="7" gap="10" /> |
| </s:layout> |
| </s:Group> |
| </s:Group> |
| </s:Group> |
| </s:Skin> |