diff options
author | Valerio Virgillito | 2012-02-16 22:45:55 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-02-16 22:45:55 -0800 |
commit | e67d1f472dab28b4ff6afc9d9cc06b34756e26b5 (patch) | |
tree | f17a01b3ad3ca11fc35e90133fae47fae668378c /node_modules/ninja-components/photo-editor.reel/photo-editor.js | |
parent | 9f0c4efe2ed9a00f2c5d85c9d88a8040fedb5d8f (diff) | |
parent | 90e2b3455a123af8751d63381609b3a5ae304051 (diff) | |
download | ninja-e67d1f472dab28b4ff6afc9d9cc06b34756e26b5.tar.gz |
Merge pull request #51 from mencio/components
Fixing the components not instantianting in the user document
Diffstat (limited to 'node_modules/ninja-components/photo-editor.reel/photo-editor.js')
-rwxr-xr-x | node_modules/ninja-components/photo-editor.reel/photo-editor.js | 415 |
1 files changed, 0 insertions, 415 deletions
diff --git a/node_modules/ninja-components/photo-editor.reel/photo-editor.js b/node_modules/ninja-components/photo-editor.reel/photo-editor.js deleted file mode 100755 index afead518..00000000 --- a/node_modules/ninja-components/photo-editor.reel/photo-editor.js +++ /dev/null | |||
@@ -1,415 +0,0 @@ | |||
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 | var Montage = require("montage").Montage; | ||
7 | var Component = require("ui/component").Component; | ||
8 | var dom = require("ui/dom"); | ||
9 | var Point = require("core/geometry/point").Point; | ||
10 | var Effect = require("effect/effect").Effect; | ||
11 | |||
12 | var DesaturateEffect = require("effect/desaturate-effect").DesaturateEffect; | ||
13 | var InvertEffect = require("effect/invert-effect").InvertEffect; | ||
14 | var SepiaEffect = require("effect/sepia-effect").SepiaEffect; | ||
15 | var MultiplyEffect = require("effect/multiply-effect").MultiplyEffect; | ||
16 | |||
17 | exports.PhotoEditor = Montage.create(Component, { | ||
18 | |||
19 | __image: { | ||
20 | enumerable: false, | ||
21 | value: null | ||
22 | }, | ||
23 | |||
24 | _image: { | ||
25 | enumerable: false, | ||
26 | get: function() { | ||
27 | return this.__image; | ||
28 | }, | ||
29 | set: function(value) { | ||
30 | |||
31 | if (this.__image === value) { | ||
32 | return; | ||
33 | } | ||
34 | |||
35 | if (this.__image) { | ||
36 | this.__image.element.removeEventListener("load", this, false); | ||
37 | } | ||
38 | |||
39 | this.__image = value; | ||
40 | this.__image.element.identifier = "editorImage"; | ||
41 | |||
42 | if (this.__image) { | ||
43 | this.__image.element.addEventListener("load", this, false); | ||
44 | } | ||
45 | |||
46 | } | ||
47 | }, | ||
48 | |||
49 | _canvas: { | ||
50 | enumerable: false, | ||
51 | value: null | ||
52 | }, | ||
53 | |||
54 | _pointerIdentifier: { | ||
55 | enumerable: false, | ||
56 | value: null | ||
57 | }, | ||
58 | |||
59 | prepareForActivationEvents: { | ||
60 | value: function() { | ||
61 | if (window.Touch) { | ||
62 | this._canvas.addEventListener("touchstart", this, false); | ||
63 | } else { | ||
64 | this._canvas.addEventListener("mousedown", this, false); | ||
65 | } | ||
66 | } | ||
67 | }, | ||
68 | |||
69 | handleMousedown: { | ||
70 | value: function(event) { | ||
71 | event.preventDefault(); | ||
72 | this._pointerIdentifier = "mouse"; | ||
73 | this._canvas.addEventListener("mousemove", this, false); | ||
74 | document.addEventListener("mouseup", this, false); | ||
75 | |||
76 | this._pickColor(event.clientX, event.clientY); | ||
77 | |||
78 | this.needsDraw = true; | ||
79 | } | ||
80 | }, | ||
81 | |||
82 | handleTouchstart: { | ||
83 | value: function(event) { | ||
84 | |||
85 | if (this._pointerIdentifier) { | ||
86 | return; | ||
87 | } | ||
88 | |||
89 | event.preventDefault(); | ||
90 | |||
91 | var pickTouch = event.changedTouches[0]; | ||
92 | this._pointerIdentifier = pickTouch.identifier; | ||
93 | this._canvas.addEventListener("touchmove", this, false); | ||
94 | document.addEventListener("touchend", this, false); | ||
95 | document.addEventListener("touchcancel", this, false); | ||
96 | |||
97 | this._pickColor(pickTouch.clientX, pickTouch.clientY); | ||
98 | } | ||
99 | }, | ||
100 | |||
101 | handleMouseup: { | ||
102 | value: function() { | ||
103 | this._pointerIdentifier = null; | ||
104 | this._canvas.removeEventListener("mousemove", this, false); | ||
105 | document.removeEventListener("mouseup", this, false); | ||
106 | |||
107 | var colorPickEvent = document.createEvent("CustomEvent"); | ||
108 | colorPickEvent.initCustomEvent("colorpickend", true, true, null); | ||
109 | document.application.dispatchEvent(colorPickEvent); | ||
110 | |||
111 | this.needsDraw = true; | ||
112 | } | ||
113 | }, | ||
114 | |||
115 | handleMousemove: { | ||
116 | enumerable: false, | ||
117 | value: function(event) { | ||
118 | |||
119 | if (!this._pointerIdentifier) { | ||
120 | return; | ||
121 | } | ||
122 | |||
123 | this._pickColor(event.clientX, event.clientY); | ||
124 | } | ||
125 | }, | ||
126 | |||
127 | handleTouchmove: { | ||
128 | enumerable: false, | ||
129 | value: function(event) { | ||
130 | |||
131 | var i = 0, | ||
132 | iTouch, | ||
133 | foundTouch = null | ||
134 | |||
135 | for(; (iTouch = event.changedTouches[i]); i++) { | ||
136 | if (iTouch.identifier === this._pointerIdentifier) { | ||
137 | foundTouch = iTouch; | ||
138 | break; | ||
139 | } | ||
140 | } | ||
141 | |||
142 | if (!foundTouch) { | ||
143 | return; | ||
144 | } | ||
145 | |||
146 | this._pickColor(foundTouch.clientX, foundTouch.clientY); | ||
147 | } | ||
148 | }, | ||
149 | |||
150 | handleTouchend: { | ||
151 | value: function() { | ||
152 | var i = 0, | ||
153 | iTouch, | ||
154 | foundTouch = null | ||
155 | |||
156 | for(; (iTouch = event.changedTouches[i]); i++) { | ||
157 | if (iTouch.identifier === this._pointerIdentifier) { | ||
158 | foundTouch = iTouch; | ||
159 | break; | ||
160 | } | ||
161 | } | ||
162 | |||
163 | if (!foundTouch) { | ||
164 | return; | ||
165 | } | ||
166 | |||
167 | this._pointerIdentifier = null; | ||
168 | var colorPickEvent = document.createEvent("CustomEvent"); | ||
169 | colorPickEvent.initCustomEvent("colorpickend", true, true, null); | ||
170 | document.application.dispatchEvent(colorPickEvent); | ||
171 | } | ||
172 | }, | ||
173 | |||
174 | _pickColor: { | ||
175 | value: function(x, y) { | ||
176 | var gridExtent = 20, | ||
177 | halfGridExtent = 10, | ||
178 | canvas = this._canvas, | ||
179 | context = canvas.getContext('2d'), | ||
180 | canvasPoint = dom.convertPointFromPageToNode(canvas, Point.create().init(x, y)), | ||
181 | pickedPixel = context.getImageData(canvasPoint.x, canvasPoint.y, 1, 1), | ||
182 | focusGrid = context.getImageData(canvasPoint.x - halfGridExtent, canvasPoint.y - halfGridExtent, gridExtent, gridExtent), | ||
183 | colorPickEvent; | ||
184 | |||
185 | colorPickEvent = document.createEvent("CustomEvent"); | ||
186 | colorPickEvent.initCustomEvent("colorpick", true, true, null); | ||
187 | colorPickEvent.color = pickedPixel.data; | ||
188 | colorPickEvent.focusGrid = focusGrid; | ||
189 | colorPickEvent.clientX = x; | ||
190 | colorPickEvent.clientY = y; | ||
191 | colorPickEvent.canvasX = canvasPoint.x; | ||
192 | colorPickEvent.canvasY = canvasPoint.y; | ||
193 | |||
194 | document.application.dispatchEvent(colorPickEvent); | ||
195 | } | ||
196 | }, | ||
197 | |||
198 | _src: { | ||
199 | enumerable: false, | ||
200 | value: null | ||
201 | }, | ||
202 | |||
203 | src: { | ||
204 | enumerable: false, | ||
205 | get: function() { | ||
206 |