You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/07/22 08:27:42 UTC

[royale-asjs] branch develop updated: TextAlign bead

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

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8dd3a91  TextAlign bead
8dd3a91 is described below

commit 8dd3a910f5379b83957a189eb11f1ace66675a50
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Jul 22 10:27:38 2018 +0200

    TextAlign bead
---
 .../projects/Jewel/src/main/resources/defaults.css |  12 ++
 .../Jewel/src/main/resources/jewel-manifest.xml    |   1 +
 .../royale/jewel/beads/controls/TextAlign.as       | 122 +++++++++++++++++++++
 .../Jewel/src/main/sass/components/_text.sass      |  25 +++++
 .../projects/Jewel/src/main/sass/defaults.sass     |   1 +
 5 files changed, 161 insertions(+)

diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 15a8739..be04112 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -2735,6 +2735,18 @@ j|Slider {
     iTrackView: ClassReference("org.apache.royale.jewel.beads.views.SliderTrackView");
   }
 }
+.alignTextLeft {
+  text-align: left;
+}
+
+.alignTextRight {
+  text-align: right;
+}
+
+.alignTextCenter {
+  text-align: center;
+}
+
 .jewel.textinput {
   position: relative;
   display: inline-flex;
diff --git a/frameworks/projects/Jewel/src/main/resources/jewel-manifest.xml b/frameworks/projects/Jewel/src/main/resources/jewel-manifest.xml
index 71795fc..45aa680 100644
--- a/frameworks/projects/Jewel/src/main/resources/jewel-manifest.xml
+++ b/frameworks/projects/Jewel/src/main/resources/jewel-manifest.xml
@@ -70,6 +70,7 @@
     
     <component id="Disabled" class="org.apache.royale.jewel.beads.controls.Disabled"/>
     <component id="SizeControl" class="org.apache.royale.jewel.beads.controls.SizeControl"/>
+    <component id="TextAlign" class="org.apache.royale.jewel.beads.controls.TextAlign"/>
     <component id="ResponsiveVisibility" class="org.apache.royale.jewel.beads.layouts.ResponsiveVisibility"/>
     
     <component id="ResponsiveDrawer" class="org.apache.royale.jewel.beads.controls.drawer.ResponsiveDrawer"/>
diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/TextAlign.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/TextAlign.as
new file mode 100644
index 0000000..50de904
--- /dev/null
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/TextAlign.as
@@ -0,0 +1,122 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.jewel.beads.controls
+{	
+	import org.apache.royale.core.IBead;
+	import org.apache.royale.core.IStrand;
+	import org.apache.royale.core.UIBase;
+	
+	/**
+	 *  The TextAlign bead class is a specialty bead that make text align left, right or center.
+	 *  
+	 *  @langversion 3.0
+	 *  @playerversion Flash 10.2
+	 *  @playerversion AIR 2.6
+	 *  @productversion Royale 0.9.3
+	 */
+	public class TextAlign implements IBead
+	{
+		public static const LEFT:String = "left";
+        public static const RIGHT:String = "right";
+        public static const CENTER:String = "center";
+
+		/**
+		 *  constructor.
+		 *
+		 *  @langversion 3.0
+		 *  @playerversion Flash 10.2
+		 *  @playerversion AIR 2.6
+		 *  @productversion Royale 0.9.3
+		 */
+		public function TextAlign()
+		{
+		}
+
+		private var _align:String = LEFT;
+		private var oldValue:String;
+
+        /**
+		 *  Add or remove align text class selectors. Possible values are:
+		 *  left - alignTextLeft
+		 *  right - alignTextRight
+		 *  center - alignTextCenter
+		 *
+		 *  @langversion 3.0
+		 *  @playerversion Flash 10.2
+		 *  @playerversion AIR 2.6
+		 *  @productversion Royale 0.9.3
+		 */
+        public function get align():String
+        {
+            return _align;
+        }
+        public function set align(value:String):void
+        {
+			if(_align !== value)
+            {
+				oldValue = _align;
+				_align = value;
+                updateHost();
+			}
+        }
+
+		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 HTMLInputElement
+		 *  @royaleignorecoercion org.apache.royale.core.UIBase;
+		 */
+		public function set strand(value:IStrand):void
+		{
+			_strand = value;
+			updateHost();
+		}
+
+		private function updateHost():void
+		{
+			var host:UIBase = _strand as UIBase;
+
+			if (host)
+            {
+				COMPILE::JS
+				{
+					if(oldValue == LEFT)
+						host.element.classList.remove("alignTextLeft");
+					if(oldValue == RIGHT)
+						host.element.classList.remove("alignTextRight");
+					if(oldValue == CENTER)
+						host.element.classList.remove("alignTextCenter");
+					
+					if(_align == LEFT)
+						host.element.classList.add("alignTextLeft");
+					if(_align == RIGHT)
+						host.element.classList.add("alignTextRight");
+					if(_align == CENTER)
+						host.element.classList.add("alignTextCenter");
+				}
+            }
+		}
+	}
+}
diff --git a/frameworks/projects/Jewel/src/main/sass/components/_text.sass b/frameworks/projects/Jewel/src/main/sass/components/_text.sass
new file mode 100644
index 0000000..c30cd9a
--- /dev/null
+++ b/frameworks/projects/Jewel/src/main/sass/components/_text.sass
@@ -0,0 +1,25 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+.alignTextLeft
+    text-align: left
+.alignTextRight
+    text-align: right
+.alignTextCenter
+    text-align: center
\ No newline at end of file
diff --git a/frameworks/projects/Jewel/src/main/sass/defaults.sass b/frameworks/projects/Jewel/src/main/sass/defaults.sass
index 5736237..b5f08d2 100644
--- a/frameworks/projects/Jewel/src/main/sass/defaults.sass
+++ b/frameworks/projects/Jewel/src/main/sass/defaults.sass
@@ -40,6 +40,7 @@
 @import "components/radiobutton"
 @import "components/sectioncontent"
 @import "components/slider"
+@import "components/text"
 @import "components/textinput"
 @import "components/titlebar"
 @import "components/togglebutton"