Using nicer gradient for background.json script and use border 55/65355/3
authorAgnelo Vaz <agnelo.vaz@samsung.com>
Thu, 7 Apr 2016 19:34:02 +0000 (20:34 +0100)
committerAgnelo Vaz <agnelo.vaz@samsung.com>
Fri, 8 Apr 2016 15:17:20 +0000 (16:17 +0100)
5 renderers now shown in background.json script
TextLabel
Border
Color
Gradient
Image

Examples updated to use Border renderer new property names

Change-Id: I967e9f4e1ea12a1402b247a49d14ec2681272af7

resources/scripts/background.json
resources/scripts/gradient.json [deleted file]

index 3787dbb..04777c9 100644 (file)
  */
 {
   "stage": [
-    // A TextLabel with a red background
+    // A TextLabel with a color background
     {
       "type": "TextLabel",
       "drawMode": "OVERLAY_2D",
       "text": "Hello World",
-      "parentOrigin": "TOP_CENTER",
-      "anchorPoint": "TOP_CENTER",
+      "parentOrigin": "TOP_LEFT",
+      "anchorPoint": "TOP_LEFT",
       "pointSize": 20,
       "horizontalAlignment": "CENTER",
       "verticalAlignment": "CENTER",
       "widthResizePolicy":"FILL_TO_PARENT",
       "heightResizePolicy":"SIZE_RELATIVE_TO_PARENT",
-      "sizeModeFactor": [1,0.25,1],
+      "sizeModeFactor": [ 1.0, 0.33, 1 ],
       "background":{
         "rendererType": "color",
-        "blendColor": [1, 0, 0, 1]
+        "blendColor": [ 0.8, 0, 0.2, 1 ]
        }
     },
 
-    // A control with a yellow background
+    // A control with a border
     {
       "type": "Control",
       "relayoutEnabled": false,
-      "parentOrigin": "CENTER",
-      "anchorPoint": "BOTTOM_CENTER",
-      "widthResizePolicy":"FILL_TO_PARENT",
+      "parentOrigin": "CENTER_LEFT",
+      "anchorPoint": "CENTER_LEFT",
+      "widthResizePolicy":"SIZE_RELATIVE_TO_PARENT",
       "heightResizePolicy":"SIZE_RELATIVE_TO_PARENT",
-      "sizeModeFactor": [1,0.25,1],
-      "background":{
-        "rendererType": "color",
-        "blendColor": [1, 1, 0, 1]
+      "sizeModeFactor": [ 0.5, 0.33, 1],
+      "background": {
+        "rendererType" : "border",
+        "borderColor" : [ 0.5, 0.5, 0.5, 1 ],
+        "borderSize" : 15.0
       }
     },
 
     {
       "type": "Control",
       "relayoutEnabled": false,
-      "parentOrigin": "CENTER",
-      "anchorPoint": "TOP_CENTER",
-      "widthResizePolicy":"FILL_TO_PARENT",
+      "parentOrigin": "CENTER_RIGHT",
+      "anchorPoint": "CENTER_RIGHT",
+      "widthResizePolicy":"SIZE_RELATIVE_TO_PARENT",
       "heightResizePolicy":"SIZE_RELATIVE_TO_PARENT",
-      "sizeModeFactor": [1,0.25,1],
+      "sizeModeFactor": [ 0.5, 0.33, 1 ],
       "background": {
         "rendererType": "image",
-        "imageUrl": "{DEMO_IMAGE_DIR}button-background.png"
+        "imageUrl": "{DEMO_IMAGE_DIR}gallery-large-9.jpg"
+      }
+    },
+
+    // A control with a yellow background
+    {
+      "type": "Control",
+      "relayoutEnabled": false,
+      "parentOrigin": "BOTTOM_LEFT",
+      "anchorPoint": "BOTTOM_LEFT",
+      "widthResizePolicy":"SIZE_RELATIVE_TO_PARENT",
+      "heightResizePolicy":"SIZE_RELATIVE_TO_PARENT",
+      "sizeModeFactor": [ 0.5, 0.33, 1 ],
+      "background":{
+        "rendererType": "color",
+        "blendColor": [ 1, 1, 0, 1 ]
       }
     },
 
     {
       "type": "Control",
       "relayoutEnabled": false,
-      "parentOrigin": "BOTTOM_CENTER",
-      "anchorPoint": "BOTTOM_CENTER",
-      "widthResizePolicy":"FILL_TO_PARENT",
+      "parentOrigin": "BOTTOM_RIGHT",
+      "anchorPoint": "BOTTOM_RIGHT",
+      "widthResizePolicy":"SIZE_RELATIVE_TO_PARENT",
       "heightResizePolicy":"SIZE_RELATIVE_TO_PARENT",
-      "sizeModeFactor": [1,0.25,1],
+      "sizeModeFactor": [ 0.5, 0.33, 1.0 ],
       "background": {
-        "rendererType": "gradient",
-        "center": [ 0.5, 0.5 ],
-        "radius": 1.414,
-        "stopOffset": [ 0.0, 0.3, 0.6, 0.8, 1.0 ],
-        "stopColor": [
-            [ 0.5,  0.78, 0.76, 1.0  ],
-            [ 0.77, 0.78, 0.28, 0.48 ],
-            [ 0.84, 0.15, 0.55, 0.75 ],
-            [ 0.5,  0.78, 0.76, 0.59 ],
-            [ 1.0,  1.0,  0.0,  1.0  ]
-        ]
-      }
+        "rendererType" : "gradient",
+        "startPosition" : [ -0.5, -0.5 ],
+        "endPosition": [ 0.5, 0.5 ],
+        "stopColor" : [
+          [ 1.0, 0.0, 0.0, 1.0 ],
+          [ 1.0, 0.25, 0.0, 1.0 ],
+          [ 1.0, 0.5, 0.0, 1.0 ],
+          [ 1.0, 0.75, 0.0, 1.0 ],
+          [ 1.0, 1.0, 0.0, 1.0 ]
+        ],
+        "stopOffset" : [ 0, 0.25, 0.5, 0.75, 1.0 ]
+       }
     }
   ]
 }
diff --git a/resources/scripts/gradient.json b/resources/scripts/gradient.json
deleted file mode 100644 (file)
index 17e314c..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (c) 2016 Samsung Electronics Co., Ltd.
- *
- * Licensed 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.
- *
- */
-{
-  // a tree of actors
-  "stage": [{
-    "type": "Control",
-    "widthResizePolicy":"FILL_TO_PARENT",
-    "heightResizePolicy":"FILL_TO_PARENT",
-    "parentOrigin": "CENTER",
-    "anchorPoint": "CENTER",
-    "background": {
-      "rendererType" : "gradient",
-      "startPosition" : [-0.5, -0.5],
-      "endPosition": [0.5,0.5],
-      "stopColor" : [
-        [1,0,0,1],
-        [1,0.25,0,1],
-        [1,0.5,0,1],
-        [1,0.75,0,1],
-        [1,1,0,1]
-      ],
-      "stopOffset" : [ 0, 0.25, 0.5, 0.75, 1.0 ]
-    }
-  }]
-}