This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch feature/revert-refactor
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/revert-refactor by 
this push:
     new 9f7667d  Added VerticalAlignChildren bead
9f7667d is described below

commit 9f7667d25d6e02cd76fb86f927cb443a1a0f29f4
Author: Harbs <[email protected]>
AuthorDate: Tue May 29 15:05:50 2018 +0300

    Added VerticalAlignChildren bead
---
 .../Basic/src/main/resources/basic-manifest.xml    |   2 +-
 .../royale/html/beads/VerticalAlignChildren.as     | 109 +++++++++++++++++++++
 2 files changed, 110 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/Basic/src/main/resources/basic-manifest.xml 
b/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
index 700f8b1..aada42c 100644
--- a/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
+++ b/frameworks/projects/Basic/src/main/resources/basic-manifest.xml
@@ -96,7 +96,7 @@
     <component id="DataGridColumnForceChangePropagator" 
class="org.apache.royale.html.beads.DataGridColumnForceChangePropagator" />
     <component id="SingleSelectionContainerBead" 
class="org.apache.royale.html.beads.SingleSelectionContainerBead" />
     <!--<component id="MultilineTextFieldView" 
class="org.apache.royale.html.beads.MultilineTextFieldView"/>-->
-
+    <component id="VerticalAlignChildren" 
class="org.apache.royale.html.beads.VerticalAlignChildren"/>
     <component id="ApplicationParameters" 
class="org.apache.royale.html.beads.ApplicationParametersBead"/>
     <component id="ApplicationParametersCaseInsensitive" 
class="org.apache.royale.html.beads.ApplicationParametersCaseInsensitiveBead"/>
     <component id="IEEventAdapter" 
class="org.apache.royale.html.beads.IEEventAdapterBead"/>
diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/VerticalAlignChildren.as
 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/VerticalAlignChildren.as
new file mode 100644
index 0000000..c3cb5d7
--- /dev/null
+++ 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/VerticalAlignChildren.as
@@ -0,0 +1,109 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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 "Licens"); 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.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.html.beads
+{
+    import org.apache.royale.events.IEventDispatcher;
+    import org.apache.royale.events.ValueEvent;
+    import org.apache.royale.core.IStrand;
+    import org.apache.royale.core.IUIBase;
+    import org.apache.royale.core.IBead;
+    import org.apache.royale.core.IParent;
+
+       /**
+        *  @langversion 3.0
+        *  @playerversion Flash 10.2
+        *  @playerversion AIR 2.6
+        *  @productversion Royale 0.9.3
+        * 
+        * VerticalAlignChildren is a bead for groups and containers which 
specifiy the alignment property of the children.
+        * Alignment can be any of the valid css properties for vertical-align
+        * see https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align
+        */
+    public class VerticalAlignChildren implements IBead
+    {
+        public function VerticalAlignChildren()
+        {
+            
+        }
+               private var _strand:IStrand;
+
+               /**
+                *  @copy org.apache.royale.core.IBead#strand
+                *  
+                *  @langversion 3.0
+                *  @playerversion Flash 10.2
+                *  @playerversion AIR 2.6
+                *  @productversion Royale 0.9.3
+                *  @royaleignorecoercion 
org.apache.royale.events.IEventDispatcher
+                */
+               public function set strand(value:IStrand):void
+               {       
+                       _strand = value;
+            (_strand as 
IEventDispatcher).addEventListener("childrenAdded",setAlignment);
+               }
+               private var _alignment:String;
+
+               /**
+                *  The alignment of the children
+                * Alignment can be any of the valid css properties for 
vertical-align
+                * see 
https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align
+                *  
+                *  @langversion 3.0
+                *  @playerversion Flash 10.2
+                *  @playerversion AIR 2.6
+                *  @productversion Royale 0.9.3
+                *  @royaleignorecoercion 
org.apache.royale.events.IEventDispatcher
+                */
+               public function get alignment():String
+               {
+                       return _alignment;
+               }
+
+               public function set alignment(value:String):void
+               {
+                       _alignment = value;
+               }
+
+               /**
+                * @royaleignorecoercion org.apache.royale.core.IUIBase
+                * @royaleignorecoercion org.apache.royale.core.IParent
+                */
+               private function setAlignment(ev:ValueEvent):void{
+                       if(_alignment)
+                       {
+                               if(ev && ev.value){
+                                       COMPILE::JS
+                                       {
+                                               (ev.value as 
IUIBase).element.style.verticalAlign = _alignment;
+                                       }
+                               } else {
+                                       COMPILE::JS
+                                       {
+                                               var host:IParent = _strand as 
IParent;
+                                               var len:int = host.numElements;
+                                               for(var i:int = 0; i<len;i++)
+                                               {
+                                                       
host.getElementAt(i).element.style.verticalAlign = _alignment;
+                                               }
+                                       }
+                               }
+                       }
+               }
+    }
+}
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to