You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2018/04/12 21:07:44 UTC

[GitHub] aharui closed pull request #166: Update mx.graphics.Stroke

aharui closed pull request #166: Update mx.graphics.Stroke
URL: https://github.com/apache/royale-asjs/pull/166
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
index 37d06cf78..aeba000ca 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
@@ -37,6 +37,7 @@ internal class MXRoyaleClasses
 	import mx.containers.ControlBar; ControlBar;
 	import mx.controls.ToolTip; ToolTip;
 	import mx.controls.beads.ToolTipBead; ToolTipBead;
+	import mx.graphics.Stroke; Stroke;
 	import mx.graphics.SolidColor; SolidColor;
 	import mx.graphics.SolidColorStroke; SolidColorStroke;
 	import mx.graphics.IStroke; IStroke;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/Stroke.as b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/Stroke.as
new file mode 100644
index 000000000..903528292
--- /dev/null
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/Stroke.as
@@ -0,0 +1,144 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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 mx.graphics
+{
+import org.apache.royale.graphics.SolidColorStroke;
+/* [Deprecated(replacement="SolidColorStroke", since="4.0")] 
+ *//**
+ *  The Stroke class defines the properties for a line. 
+ *  
+ *  You can define a Stroke object in MXML, but you must attach that Stroke to
+ *  another object for it to appear in your application. The following example
+ *  defines two Stroke objects and then uses them in the horizontalAxisRenderer
+ *  of a LineChart control:
+ *  
+ *  <pre>
+ *  ...
+ *  &lt;mx:Stroke id="ticks" color="0xFF0000" weight="1"/&gt;
+ *  &lt;mx:Stroke id="mticks" color="0x0000FF" weight="1"/&gt;
+ *  
+ *  &lt;mx:LineChart id="mychart" dataProvider="{ndxa}"&gt;
+ *      &lt;mx:horizontalAxisRenderer&gt;
+ *          &lt;mx:AxisRenderer placement="bottom" canDropLabels="true"&gt;
+ *              &lt;mx:tickStroke&gt;{ticks}&lt;/mx:tickStroke&gt;
+ *              &lt;mx:minorTickStroke&gt;{mticks}&lt;/mx:minorTickStroke&gt;
+ *          &lt;/mx:AxisRenderer&gt;
+ *      &lt;/mx:horizontalAxisRenderer&gt;
+ *  &lt;/LineChart&gt;
+ *  ...
+ *  </pre>
+ *  
+ *  @mxml
+ *
+ *  <p>The <code>&lt;mx:Stroke&gt;</code> tag inherits all the tag attributes
+ *  of its superclass, and adds the following tag attributes:</p>
+ *
+ *  <pre>
+ *  &lt;mx:Stroke
+ *    <b>Properties</b>
+ *    alpha="1.0"
+ *    caps="null|none|round|square"
+ *    color="0x000000"
+ *    joints="null|bevel|miter|round"
+ *    miterLimit="1"
+ *    pixelHinting="false|true"
+ *    scaleMode="normal|none|horizontal|vertical"
+ *    weight="1 (<i>in most cases</i>)"
+ *  /&gt;
+ *  </pre>
+ *
+ *  @see flash.display.Graphics
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Royale 0.9.3
+ */
+public class Stroke extends  org.apache.royale.graphics.SolidColorStroke 
+{
+/*     include "../core/Version.as";
+ */
+    //--------------------------------------------------------------------------
+    //
+    //  Constructor
+    //
+    //--------------------------------------------------------------------------
+
+    /**
+     *  Constructor. 
+     *
+     *  @param color Specifies the line color.
+     *  The default value is 0x000000 (black).
+     *
+     *  @param weight Specifies the line weight, in pixels.
+     *  The default value is 0.
+     *
+     *  @param alpha Specifies the alpha value in the range 0.0 to 1.0.
+     *  The default value is 1.0 (opaque).
+     *
+     *  @param pixelHinting Specifies whether to hint strokes to full pixels.
+     *  This value affects both the position of anchors of a curve
+     *  and the line stroke size itself.
+     *  The default value is false.
+     *
+     *  @param scaleMode A value from the LineScaleMode class
+     *  that specifies which scale mode to use.
+     *  Valid values are <code>LineScaleMode.HORIZONTAL</code>,
+     *  <code>LineScaleMode.NONE</code>, <code>LineScaleMode.NORMAL</code>,
+     *  and <code>LineScaleMode.VERTICAL</code>.
+     *  This parameter is optional,
+     *  with a default value of <code>LineScaleMode.NORMAL</code>. 
+     *
+     *  @param caps Specifies the type of caps at the end of lines.
+     *  Valid values are <code>"round"</code>, <code>"square"</code>,
+     *  and <code>"none"</code>.
+     *  The default value is <code>null</code>.
+     *
+     *  @param joints Specifies the type of joint appearance used at angles.
+     *  Valid values are <code>"round"</code>, <code>"miter"</code>,
+     *  and <code>"bevel"</code>.
+     *  The default value is <code>null</code>.
+     *
+     *  @param miterLimit Indicates the limit at which a miter is cut off.
+     *  Valid values range from 1 to 255.
+     *  The default value is 1.
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 9
+     *  @playerversion AIR 1.1
+     *  @productversion Royale 0.9.3
+     */
+    public function Stroke(color:uint = 0x000000,
+                           weight:Number = 0,
+                           alpha:Number = 1.0,
+                           pixelHinting:Boolean = false,
+                          scaleMode:String = "normal",
+                           caps:String = null,
+                           joints:String = null,
+                           miterLimit:Number = 1)
+    {
+        super(color, weight, alpha);
+		/* ,pixelHinting,
+              scaleMode, caps, joints, miterLimit); */
+    }
+
+}
+
+}


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services