diff options
author | Armen Kesablyan | 2012-05-07 11:09:45 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-05-07 11:09:45 -0700 |
commit | 5d7e470351fd150d5e70a97332fa2f2553797499 (patch) | |
tree | c61f2fa7da8604b48248fd4f34afe9dea3384fe5 /js/components | |
parent | e3fa4c7db57b63c5ac604c9420062de5d0fe413a (diff) | |
download | ninja-5d7e470351fd150d5e70a97332fa2f2553797499.tar.gz |
Initial Setup of the binding Tool
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/components')
5 files changed, 79 insertions, 1 deletions
diff --git a/js/components/layout/tools-list.reel/tools-list.html b/js/components/layout/tools-list.reel/tools-list.html index acee20b2..f9361dd6 100755 --- a/js/components/layout/tools-list.reel/tools-list.html +++ b/js/components/layout/tools-list.reel/tools-list.html | |||
@@ -112,6 +112,9 @@ | |||
112 | "ZoomTool1": { | 112 | "ZoomTool1": { |
113 | "prototype": "js/tools/ZoomTool" | 113 | "prototype": "js/tools/ZoomTool" |
114 | }, | 114 | }, |
115 | "BindingTool1": { | ||
116 | "prototype": "js/tools/BindingTool" | ||
117 | }, | ||
115 | 118 | ||
116 | "disable": { | 119 | "disable": { |
117 | "prototype": "montage/ui/condition.reel", | 120 | "prototype": "montage/ui/condition.reel", |
@@ -151,6 +154,7 @@ | |||
151 | "RotateStageTool3D": {"@": "RotateStageTool3D1"}, | 154 | "RotateStageTool3D": {"@": "RotateStageTool3D1"}, |
152 | "PanTool": {"@": "PanTool1"}, | 155 | "PanTool": {"@": "PanTool1"}, |
153 | "ZoomTool": {"@": "ZoomTool1"}, | 156 | "ZoomTool": {"@": "ZoomTool1"}, |
157 | "bindingTool": {"@": "BindingTool1"}, | ||
154 | "components": [ | 158 | "components": [ |
155 | {"@": "repetition1"} | 159 | {"@": "repetition1"} |
156 | ] | 160 | ] |
diff --git a/js/components/layout/tools-properties.reel/tools-properties.html b/js/components/layout/tools-properties.reel/tools-properties.html index 8dd0f713..90da0fbe 100755 --- a/js/components/layout/tools-properties.reel/tools-properties.html +++ b/js/components/layout/tools-properties.reel/tools-properties.html | |||
@@ -120,6 +120,12 @@ | |||
120 | "element": {"#": "zoomProperties"} | 120 | "element": {"#": "zoomProperties"} |
121 | } | 121 | } |
122 | }, | 122 | }, |
123 | "bindingProperties1": { | ||
124 | "prototype": "js/components/tools-properties/binding-properties.reel", | ||
125 | "properties": { | ||
126 | "element": {"#": "bindingProperties"} | ||
127 | } | ||
128 | }, | ||
123 | 129 | ||
124 | "disable": { | 130 | "disable": { |
125 | "prototype": "montage/ui/condition.reel", | 131 | "prototype": "montage/ui/condition.reel", |
@@ -155,7 +161,8 @@ | |||
155 | "eraserProperties": {"@": "eraserProperties1"}, | 161 | "eraserProperties": {"@": "eraserProperties1"}, |
156 | "rotateStageProperties": {"@": "rotateStageProperties1"}, | 162 | "rotateStageProperties": {"@": "rotateStageProperties1"}, |
157 | "panProperties": {"@": "panProperties1"}, | 163 | "panProperties": {"@": "panProperties1"}, |
158 | "zoomProperties": {"@": "zoomProperties1"} | 164 | "zoomProperties": {"@": "zoomProperties1"}, |
165 | "bindingProperties": {"@": "bindingProperties1"} | ||
159 | }, | 166 | }, |
160 | "bindings": { | 167 | "bindings": { |
161 | "currentSelectedTool": { | 168 | "currentSelectedTool": { |
@@ -188,6 +195,7 @@ | |||
188 | <div id="rotateStageProperties"></div> | 195 | <div id="rotateStageProperties"></div> |
189 | <div id="panProperties"></div> | 196 | <div id="panProperties"></div> |
190 | <div id="zoomProperties"></div> | 197 | <div id="zoomProperties"></div> |
198 | <div id="bindingProperties"></div> | ||
191 | <div id="disabledCondition" class="panelDisabled"></div> | 199 | <div id="disabledCondition" class="panelDisabled"></div> |
192 | </div> | 200 | </div> |
193 | </body> | 201 | </body> |
diff --git a/js/components/tools-properties/binding-properties.reel/binding-properties.css b/js/components/tools-properties/binding-properties.reel/binding-properties.css new file mode 100755 index 00000000..7f1b0f7f --- /dev/null +++ b/js/components/tools-properties/binding-properties.reel/binding-properties.css | |||
@@ -0,0 +1,6 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
diff --git a/js/components/tools-properties/binding-properties.reel/binding-properties.html b/js/components/tools-properties/binding-properties.reel/binding-properties.html new file mode 100755 index 00000000..5a55d0a4 --- /dev/null +++ b/js/components/tools-properties/binding-properties.reel/binding-properties.html | |||
@@ -0,0 +1,35 @@ | |||
1 | <!DOCTYPE HTML> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="binding-properties.css"> | ||
11 | |||
12 | <script type="text/montage-serialization"> | ||
13 | { | ||
14 | |||
15 | "owner": { | ||
16 | "prototype": "js/components/tools-properties/binding-properties.reel", | ||
17 | "properties": { | ||
18 | "element": {"#": "bindingProperties"} | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | </script> | ||
23 | |||
24 | </head> | ||
25 | |||
26 | <body> | ||
27 | <div id="bindingProperties" class="subToolHolderPanel"> | ||
28 | <label>View All Bindings</label> | ||
29 | <input type="checkbox" /> | ||
30 | </div> | ||
31 | </body> | ||
32 | |||
33 | </html> | ||
34 | |||
35 | \ No newline at end of file | ||
diff --git a/js/components/tools-properties/binding-properties.reel/binding-properties.js b/js/components/tools-properties/binding-properties.reel/binding-properties.js new file mode 100755 index 00000000..8d30d855 --- /dev/null +++ b/js/components/tools-properties/binding-properties.reel/binding-properties.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | var Montage = require("montage/core/core").Montage; | ||
8 | var Component = require("montage/ui/component").Component; | ||
9 | var ToolProperties = require("js/components/tools-properties/tool-properties").ToolProperties; | ||
10 | |||
11 | exports.BindingProperties = Montage.create(ToolProperties, { | ||
12 | |||
13 | _subPrepare: { | ||
14 | value: function() { | ||
15 | |||
16 | } | ||
17 | }, | ||
18 | |||
19 | handleClick: { | ||
20 | value: function(event) { | ||
21 | |||
22 | } | ||
23 | } | ||
24 | |||
25 | }); \ No newline at end of file | ||