| <?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. |
| |
| --> |
| <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" |
| xmlns:s="library://ns.adobe.com/flex/spark" |
| xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" |
| xmlns:styleTest="assets.styleTest.*" |
| xmlns:comp="assets.comp.*"> |
| |
| <fx:Declarations> |
| |
| <!--test create style CSS declaration using styleManager API, and apply it to Application selector.--> |
| <styleTest:ADVStyleTestClass id="createApplicationStyleTest" |
| teststyle_1_string_noinh="testString" |
| teststyle_6_format_time_noinh="2000"/> |
| |
| </fx:Declarations> |
| |
| <fx:Style> |
| @namespace s "library://ns.adobe.com/flex/spark"; |
| @namespace mx "library://ns.adobe.com/flex/mx"; |
| @namespace styleTest "assets.styleTest.*"; |
| |
| s|Application { |
| teststyle_3_uint_inh:9999; |
| } |
| |
| </fx:Style> |
| |
| <fx:Script> |
| <![CDATA[ |
| import assets.styleTest.ADVStyleTestConstants; |
| |
| import mx.effects.Effect; |
| import mx.effects.EffectInstance; |
| import mx.events.FlexEvent; |
| import mx.styles.IStyleManager2; |
| |
| private var myStyleManager:IStyleManager2 ; |
| |
| public function testCreateStyle():void { |
| //test create style CSS declaration using styleManager API, and apply it to Application selector. |
| //notice that Application selector can just set style which is inherited. |
| myStyleManager = StyleManager.getStyleManager(this.moduleFactory); |
| var myDynStyle:CSSStyleDeclaration = new CSSStyleDeclaration(); |
| myDynStyle.setStyle('teststyle_1_string_noinh','testString'); |
| myDynStyle.setStyle('teststyle_3_uint_inh',8888); |
| myDynStyle.setStyle('teststyle_4_date_inh', ADVStyleTestConstants.testDate); |
| myDynStyle.setStyle('teststyle_6_format_time_noinh', 2015); |
| |
| styleManager.setStyleDeclaration("spark.components.Application", myDynStyle, true); |
| |
| this.dispatchEvent(new Event('myMainAppStyleChanged')); |
| } |
| |
| ]]> |
| </fx:Script> |
| |
| <s:Label id="label" text="test in main" /> |
| <s:Label id="styleLabel" text="{createApplicationStyleTest.getMyStyleLabel()}" /> |
| |
| <comp:FlexBorderContainerComponent id="advStyleTest_FlexBorderContainerComponent" /> |
| <comp:FlexDataGroupComponent id="advStyleTest_FlexDataGroupComponent" /> |
| <comp:FlexGroupComponent id="advStyleTest_FlexGroupComponent" /> |
| <comp:FlexMxAccordionComponent id="advStyleTest_FlexMxAccordionComponent" /> |
| <comp:FlexMxApplicationControlBarComponent id="advStyleTest_FlexMxApplicationControlBarComponent" /> |
| <comp:FlexMxBoxComponent id="advStyleTest_FlexMxBoxComponent" /> |
| <comp:FlexMxCanvasComponent id="advStyleTest_FlexMxCanvasComponent" /> |
| <comp:FlexMxControlBarComponent id="advStyleTest_FlexMxControlBarComponent" /> |
| <comp:FlexMxDividedBoxComponent id="advStyleTest_FlexMxDividedBoxComponent" /> |
| <comp:FlexMxFormComponent id="advStyleTest_FlexMxFormComponent" /> |
| <comp:FlexMxGridComponent id="advStyleTest_FlexMxGridComponent" /> |
| <comp:FlexMxPanelComponent id="advStyleTest_FlexMxPanelComponent" /> |
| <comp:FlexMxTabNavigatorComponent id="advStyleTest_FlexMxTabNavigatorComponent" /> |
| <comp:FlexMxTileComponent id="advStyleTest_FlexMxTileComponent" /> |
| <comp:FlexNavigatorContentMxVSComponent id="advStyleTest_FlexNavigatorContentMxVSComponent" /> |
| <comp:FlexPanelComponent id="advStyleTest_FlexPanelComponent" /> |
| <comp:FlexSkinnableDataContainerComponent id="advStyleTest_FlexSkinnableDataContainerComponent" /> |
| |
| </s:Application> |