aboutsummaryrefslogtreecommitdiff
path: root/js/components/layout/tools-list.reel
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-19 01:03:59 -0700
committerArmen Kesablyan2012-06-19 01:03:59 -0700
commit2e13a73e4ee980a6f73f6ff48b2a195eb209a7db (patch)
treed352f5e769eae0e1b7b76ccbeafa9b174b1a9918 /js/components/layout/tools-list.reel
parent244e608645778746d1a3b5aa0d4c0868f7c5c272 (diff)
parentc59eb371559a3061ce53223e249ca97daace5968 (diff)
downloadninja-2e13a73e4ee980a6f73f6ff48b2a195eb209a7db.tar.gz
Merge branch 'refs/heads/master' into binding
Conflicts: js/components/layout/tools-list.reel/tools-list.html js/components/layout/tools-properties.reel/tools-properties.html js/document/document-html.js js/document/templates/app/main.js js/panels/Panel.reel/Panel.js node_modules/montage/ui/native-control.js Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/components/layout/tools-list.reel')
-rwxr-xr-xjs/components/layout/tools-list.reel/tools-list.html2
-rwxr-xr-xjs/components/layout/tools-list.reel/tools-list.js106
2 files changed, 90 insertions, 18 deletions
diff --git a/js/components/layout/tools-list.reel/tools-list.html b/js/components/layout/tools-list.reel/tools-list.html
index 89901426..5b175f49 100755
--- a/js/components/layout/tools-list.reel/tools-list.html
+++ b/js/components/layout/tools-list.reel/tools-list.html
@@ -1,4 +1,4 @@
1<!DOCTYPE HTML> 1<!DOCTYPE HTML>
2<!-- <copyright> 2<!-- <copyright>
3 This file contains proprietary software owned by Motorola Mobility, Inc.<br/> 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/> 4 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
diff --git a/js/components/layout/tools-list.reel/tools-list.js b/js/components/layout/tools-list.reel/tools-list.js
index c46c065e..e36001a3 100755
--- a/js/components/layout/tools-list.reel/tools-list.js
+++ b/js/components/layout/tools-list.reel/tools-list.js
@@ -9,23 +9,95 @@ var Component = require("montage/ui/component").Component;
9 9
10exports.ToolsList = Montage.create(Component, { 10exports.ToolsList = Montage.create(Component, {
11 11
12 SelectionTool: { value: null }, 12 toolsData: {
13 Rotate3DTool: { value: null }, 13 value: null,
14 Translate3DTool: { value: null }, 14 serializable: true
15 TagTool: { value: null }, 15 },
16 PenTool: { value: null }, 16
17 TextTool: { value: null }, 17 SelectionTool: {
18 ShapeTool: { value: null }, 18 value: null,
19 OvalTool: { value: null }, 19 serializable: true
20 RectTool: { value: null }, 20 },
21 LineTool: { value: null }, 21
22 BrushTool: { value: null }, 22 Rotate3DTool: {
23 FillTool: { value: null }, 23 value: null,
24 InkBottleTool: { value: null }, 24 serializable: true
25 EraserTool: { value: null }, 25 },
26 RotateStageTool3D: { value: null }, 26
27 PanTool: { value: null }, 27 Translate3DTool: {
28 ZoomTool: { value: null }, 28 value: null,
29 serializable: true
30 },
31
32 TagTool: {
33 value: null,
34 serializable: true
35 },
36
37 PenTool: {
38 value: null,
39 serializable: true
40 },
41
42 TextTool: {
43 value: null,
44 serializable: true
45 },
46
47 ShapeTool: {
48 value: null,
49 serializable: true
50 },
51
52 OvalTool: {
53 value: null,
54 serializable: true
55 },
56
57 RectTool: {
58 value: null,
59 serializable: true
60 },
61
62 LineTool: {
63 value: null,
64 serializable: true
65 },
66
67 BrushTool: {
68 value: null,
69 serializable: true
70 },
71
72 FillTool: {
73 value: null,
74 serializable: true
75 },
76
77 InkBottleTool: {
78 value: null,
79 serializable: true
80 },
81
82 EraserTool: {
83 value: null,
84 serializable: true
85 },
86
87 RotateStageTool3D: {
88 value: null,
89 serializable: true
90 },
91
92 PanTool: {
93 value: null,
94 serializable: true
95 },
96
97 ZoomTool: {
98 value: null,
99 serializable: true
100 },
29 101
30 _currentDocument: { 102 _currentDocument: {
31 enumerable: false, 103 enumerable: false,