1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
</copyright> */
////////////////////////////////////////////////////////////////////////
//
var Montage = require("montage/core/core").Montage,
Component = require("montage/ui/component").Component;
////////////////////////////////////////////////////////////////////////
//Exporting as ColorBar
exports.ColorBar = Montage.create(Component, {
////////////////////////////////////////////////////////////////////
//No reel needed since it's just a bar component
hasTemplate: {
value: true
},
////////////////////////////////////////////////////////////////////
//Width of spectrum (not including b/w buttons)
_colorBarSpectrumWidth: {
enumerable: false,
value: null
},
////////////////////////////////////////////////////////////////////
//Width of spectrum steps (used to calculate size of B/W buttons)
_colorBarSpectrumWidthSteps: {
enumerable: false,
value: 10
},
////////////////////////////////////////////////////////////////////
//Default value
_value: {
enumerable: false,
value: {h: 0, s: 0, v: 0}
},
////////////////////////////////////////////////////////////////////
//HSV Value selected from bar
value: {
enumerable: true,
get: function() {
return this._value;
},
set: function(value) {
if (value) {
//Checking for limits (Max and Min HSV values)
if (value.h > Math.PI*2) {
value.h = Math.PI*2;
} else if (value.h < 0) {
value.h = 0;
}
//
if (value.s > 1) {
value.s = 1;
} else if (value.s < 0) {
value.s = 0;
}
//
if (value.v > 1) {
value.v = 1;
} else if (value.v < 0) {
value.v = 0;
}
//Setting value
this._value = value;
//
if (!this._isMouseDown) {
this._dispatchActionEvent('change', true);
}
}
}
},
////////////////////////////////////////////////////////////////////
//
prepareForDraw: {
enumerable: false,
value: function() {
//Nothing
}
},
////////////////////////////////////////////////////////////////////
//Setting up and drawing canvas to object
willDraw: {
enumerable: false,
value: function() {
//Setting the width and height of the canvas to match container
this.element.width = parseInt(window.getComputedStyle(this.element, null).width);
this.element.height = parseInt(window.getComputedStyle(this.element, null).height);
}
},
////////////////////////////////////////////////////////////////////
//
draw: {
value: function () {
//Local variables
var cb_canvas = this.element, cb_ctx, cb_grdnt, cb_slc, cb_gwidth, PI = Math.PI, i;
//calculating width of spectrum (remainder is used for B/W buttons)
cb_gwidth = Math.round(cb_canvas.width - cb_canvas.width/this._colorBarSpectrumWidthSteps);
//Context and Gradient
cb_ctx = cb_canvas.getContext('2d');
cb_grdnt = cb_ctx.createLinearGradient(0, cb_canvas.height, cb_gwidth, cb_canvas.height);
////////////////////////////////////////////////////////
//Looping through set intervals (Creating spectrum)
for (i=0; i<60; i++) {
//Calculating slice number
cb_slc = Math.round(255*i/60);
//Creating gradient slices (6 colors in color theory)
cb_grdnt.addColorStop(i/360, 'rgb(255, '+cb_slc+', 0)');
cb_grdnt.addColorStop((i+60)/360, 'rgb('+(255-cb_slc)+', 255, 0)');
cb_grdnt.addColorStop((i+120)/360, 'rgb(0, 255, '+cb_slc+')');
cb_grdnt.addColorStop((i+180)/360, 'rgb(0, '+(255-cb_slc)+', 255)');
cb_grdnt.addColorStop((i+240)/360, 'rgb('+cb_slc+', 0, 255)');
cb_grdnt.addColorStop((i+300)/360, 'rgb(255, 0,'+(255-cb_slc)+')');
}
//Adding Color Bar to the canvas (Gradients)
cb_ctx.fillStyle = cb_grdnt;
cb_ctx.fillRect(0, 0, cb_gwidth, cb_canvas.height);
////////////////////////////////////////////////////////
//White Gradient overlay to simulate L
cb_grdnt = cb_ctx.createLinearGradient(0, 0, 0, cb_canvas.height);
cb_grdnt.addColorStop(0.0, 'rgba(255, 255, 255, 1)');
cb_grdnt.addColorStop(0.5, 'rgba(255, 255, 255, 0)');
cb_ctx.fillStyle = cb_grdnt;
cb_ctx.fillRect(0, 0, cb_gwidth, cb_canvas.height);
//Black Gradient overlay to simulate S
cb_grdnt = cb_ctx.createLinearGradient(0,0,0,cb_canvas.height);
cb_grdnt.addColorStop(0.5, 'rgba(0, 0, 0, 0)');
cb_grdnt.addColorStop(1.0, 'rgba(0, 0, 0, 1)');
cb_ctx.fillStyle = cb_grdnt;
cb_ctx.fillRect(0, 0, cb_gwidth, cb_canvas.height);
//Black "button"
cb_ctx.fillStyle = "#000";
cb_ctx.fillRect(cb_gwidth, cb_canvas.height/2, cb_gwidth, cb_canvas.height/2);
//Black line divider
cb_ctx.fillStyle = "#000";
cb_ctx.fillRect(cb_gwidth-1, 0, cb_gwidth+1, cb_canvas.height);
//White "button"
cb_ctx.fillStyle = "#FFF";
cb_ctx.fillRect(cb_gwidth, 0, cb_gwidth, cb_canvas.height/2);
//Saving
cb_ctx.restore();
cb_ctx.save();
//Cleaning up
cb_canvas = cb_ctx = cb_grdnt = cb_slc = cb_gwidth = PI = i = null;
}
},
////////////////////////////////////////////////////////////////////
//Adding ColorBar to the element
didDraw: {
value: function() {
//Adding functionality via events
this.element.addEventListener("mousedown", this, false);
this.element.addEventListener("mouseover", this, false);
this.element.addEventListener("mousemove", this, false);
}
},
////////////////////////////////////////////////////////////////////
//Mouse Down (adds other events and updates HSV)
handleMousedown: {
value: function (e) {
if (!this._colorBarSpectrumWidth)
this._colorBarSpectrumWidth = (this.element.width - this.element.width/this._colorBarSpectrumWidthSteps)-1;
this._isMouseDown = true;
document.addEventListener("mouseup", this, false);
this._updateHsv(e);
}
},
////////////////////////////////////////////////////////////////////
//Used to check mouse mode and display cursor
_isMouseDown: {
enumerable: false,
value: false
},
////////////////////////////////////////////////////////////////////
//Mouse Move (updates HSV)
handleMousemove: {
value: function (e) {
//Changing cursors style for appropiate user feedback
if (e.offsetX > this._colorBarSpectrumWidth) {this.element.style.cursor = 'pointer';}
else {this.element.style.cursor = 'crosshair';}
//Checking for mouse down to scan for color
if (this._isMouseDown) {this._updateHsv(e);}
}
},
////////////////////////////////////////////////////////////////////
//Mouse Up (Removes events)
handleMouseup: {
value: function (e) {
this._isMouseDown = false;
document.removeEventListener("mouseup", this, false);
this._dispatchActionEvent('change', false);
}
},
////////////////////////////////////////////////////////////////////
//Updating HSV values
_updateHsv: {
value: function (e) {
if (e.offsetX > this._colorBarSpectrumWidth) {
//Faking button functionality - Simple B/W selection
if (e.offsetY >= this.element.offsetHeight/2) { this.value = {h: this.value.h, s: 1, v: 0};} // White
else { this.value = {h: this.value.h, s: 0, v: 1};} // Black
} else {
//Checking for S or V to be applied (no mixing on bar)
if (e.offsetY >= this.element.offsetHeight/2) { //Saturation
this.value = {h: e.offsetX/this._colorBarSpectrumWidth*Math.PI*2, v: 1-(e.offsetY-this.element.offsetHeight/2)/((this.element.offsetHeight/2-1)), s: 1};
} else { //Vibrance
this.value = {h: e.offsetX/this._colorBarSpectrumWidth*Math.PI*2, v: 1, s: (e.offsetY)/((this.element.offsetHeight/2))};
}
}
//
this._dispatchActionEvent('changing', false);
}
},
////////////////////////////////////////////////////////////////////
//Dispatching "Change" event
_dispatchActionEvent: {
value: function(type, userInitiated) {
var actionEvent = document.createEvent("CustomEvent");
actionEvent.initEvent(type, true, true);
actionEvent.type = type;
actionEvent.wasSetByCode = userInitiated;
actionEvent.hsv = this.value;
this.dispatchEvent(actionEvent);
}
}
////////////////////////////////////////////////////////////////////
});
|