1 // Copyright 2014 The ChromeOS IME Authors. All Rights Reserved.
2 // limitations under the License.
3 // See the License for the specific language governing permissions and
4 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
5 // distributed under the License is distributed on an "AS-IS" BASIS,
6 // Unless required by applicable law or agreed to in writing, software
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // You may obtain a copy of the License at
11 // you may not use this file except in compliance with the License.
12 // Licensed under the Apache License, Version 2.0 (the "License");
16 * @fileoverview Handwriting input canvas.
17 * @author har@google.com (Henry A. Rowley)
20 goog
.provide('i18n.input.hwt.Canvas');
22 goog
.require('goog.a11y.aria.Announcer');
23 goog
.require('goog.a11y.aria.LivePriority');
24 goog
.require('goog.dom.TagName');
25 goog
.require('goog.dom.classlist');
26 goog
.require('goog.events.Event');
27 goog
.require('goog.events.EventHandler');
28 goog
.require('goog.events.EventType');
29 goog
.require('goog.log');
30 goog
.require('goog.ui.Container');
31 goog
.require('i18n.input.hwt.EventType');
32 goog
.require('i18n.input.hwt.StrokeHandler');
33 goog
.require('i18n.input.hwt.css');
38 * The handwriting canvas UI element.
41 * @param {!Document=} opt_topDocument The top document for MOUSEUP event.
42 * @param {goog.dom.DomHelper=} opt_domHelper Optional DOM helper.
43 * @param {goog.events.EventTarget=} opt_eventTarget The event target.
44 * @param {number=} opt_inkWidth The ink width.
45 * @param {string=} opt_inkColor The ink color.
46 * @extends {goog.ui.Container}
48 i18n
.input
.hwt
.Canvas = function(opt_topDocument
, opt_domHelper
,
49 opt_eventTarget
, opt_inkWidth
, opt_inkColor
) {
50 goog
.base(this, undefined, undefined, opt_domHelper
);
51 this.setParentEventTarget(opt_eventTarget
|| null);
56 * @type {!i18n.input.hwt.StrokeHandler}
67 this.topDocument_
= opt_topDocument
|| document
;
70 * Canvas which is the area showing the ink. Note that since we're
71 * using a canvas here probably this code won't work in IE.
79 * Context for drawing into the writing canvas.
81 * @type {!CanvasRenderingContext2D}
87 * An array of strokes for passing to the recognizer.
102 * Starting time of the stroke in milliseconds.
112 * @type {!goog.events.EventHandler}
115 this.handler_
= new goog
.events
.EventHandler(this);
118 * The annoucer for screen reader.
120 * @type {!goog.a11y.aria.Announcer}
123 this.announcer_
= new goog
.a11y
.aria
.Announcer(this.getDomHelper());
126 * Width of the ink line.
131 this.inkWidth_
= opt_inkWidth
|| 6;
134 * Color of the ink before it has been recognized.
139 this.inkColor_
= opt_inkColor
|| '#4D90FE';
141 goog
.inherits(i18n
.input
.hwt
.Canvas
, goog
.ui
.Container
);
147 * @type {goog.log.Logger}
150 i18n
.input
.hwt
.Canvas
.prototype.logger_
=
151 goog
.log
.getLogger('i18n.input.hwt.Canvas');
155 * @desc Label for handwriting panel used to draw strokes.
157 i18n
.input
.hwt
.Canvas
.MSG_INPUTTOOLS_HWT_PANEL
= goog
.getMsg('panel');
161 * @desc The hint on the canvas to indicate users they can draw here.
163 i18n
.input
.hwt
.Canvas
.MSG_HANDWRITING_HINT
= goog
.getMsg('Draw a symbol here');
167 i18n
.input
.hwt
.Canvas
.prototype.createDom = function() {
168 goog
.base(this, 'createDom');
170 var dom
= this.getDomHelper();
171 this.writingCanvas_
= dom
.createDom(goog
.dom
.TagName
.CANVAS
,
172 i18n
.input
.hwt
.css
.CANVAS
);
173 this.writingCanvas_
.width
= 425;
174 this.writingCanvas_
.height
= 194;
175 dom
.appendChild(this.getElement(), this.writingCanvas_
);
176 this.writingContext_
= this.writingCanvas_
.getContext('2d');
181 i18n
.input
.hwt
.Canvas
.prototype.enterDocument = function() {
182 goog
.base(this, 'enterDocument');
184 this.setFocusable(false);
185 this.setFocusableChildrenAllowed(false);
186 // Sets up stroke handler.
187 this.strokeHandler_
= new i18n
.input
.hwt
.StrokeHandler(this.writingCanvas_
,
190 listen(this.strokeHandler_
,
191 i18n
.input
.hwt
.StrokeHandler
.EventType
.STROKE_START
,
192 this.onStrokeStart_
).
193 listen(this.strokeHandler_
,
194 i18n
.input
.hwt
.StrokeHandler
.EventType
.STROKE
,
196 listen(this.strokeHandler_
,
197 i18n
.input
.hwt
.StrokeHandler
.EventType
.STROKE_END
,
199 listen(this.writingCanvas_
, goog
.events
.EventType
.MOUSEOVER
,
201 listen(this.writingCanvas_
, goog
.events
.EventType
.MOUSEDOWN
,
202 goog
.events
.Event
.stopPropagation
);
207 * Shows the hint message for the canvas.
209 i18n
.input
.hwt
.Canvas
.prototype.showHint = function() {
210 this.writingContext_
.font
= '20px aria,sans-serif';
211 this.writingContext_
.fontWeight
= 'bold';
212 this.writingContext_
.fillStyle
= '#CCC';
213 this.writingContext_
.fillText(i18n
.input
.hwt
.Canvas
.MSG_HANDWRITING_HINT
,
219 * Draw a point with the given color.
221 * @param {string} color Color to draw the point.
222 * @param {!i18n.input.hwt.StrokeHandler.Point} point The point.
225 i18n
.input
.hwt
.Canvas
.prototype.drawPoint_ = function(color
, point
) {
226 this.writingContext_
.beginPath();
227 this.writingContext_
.strokeStyle
= color
;
228 this.writingContext_
.fillStyle
= color
;
229 this.writingContext_
.arc(point
.x
, point
.y
,
230 this.inkWidth_
/ 2, 0, Math
.PI
* 2, true);
231 this.writingContext_
.fill();
236 * Draw a poly-line given the list of array of points.
238 * @param {string} color Color to draw the line.
239 * @param {!Array.<!i18n.input.hwt.StrokeHandler.Point>} points The array of
241 * @param {number=} opt_start The start point to draw.
244 i18n
.input
.hwt
.Canvas
.prototype.drawLine_ = function(color
, points
, opt_start
) {
245 var start
= opt_start
|| 0;
246 if (start
== (points
.length
- 1)) {
247 // If there's only one point.
248 this.drawPoint_(color
, points
[0]);
250 this.writingContext_
.beginPath();
251 this.writingContext_
.strokeStyle
= color
;
252 this.writingContext_
.fillStyle
= 'none';
253 this.writingContext_
.lineWidth
= this.inkWidth_
;
254 this.writingContext_
.lineCap
= 'round';
255 this.writingContext_
.lineJoin
= 'round';
256 this.writingContext_
.moveTo(points
[start
].x
, points
[start
].y
);
257 for (var i
= start
+ 1; i
< points
.length
; i
++) {
258 this.writingContext_
.lineTo(points
[i
].x
, points
[i
].y
);
260 this.writingContext_
.stroke();
266 * Add a point to the current stroke.
268 * @param {!i18n.input.hwt.StrokeHandler.Point} point The point.
271 i18n
.input
.hwt
.Canvas
.prototype.addPoint_ = function(point
) {
272 point
.time
-= this.startTime_
;
273 this.stroke_
.push(point
);
274 var len
= this.stroke_
.length
;
275 var start
= Math
.max(len
- 2, 0);
276 this.drawLine_(this.inkColor_
, this.stroke_
, start
);
281 * Callback for the start of a stroke.
283 * @param {!i18n.input.hwt.StrokeHandler.StrokeEvent} e The stroke event.
286 i18n
.input
.hwt
.Canvas
.prototype.onStrokeStart_ = function(e
) {
289 if (this.strokeList
.length
== 0) {
290 this.startTime_
= point
.time
;
292 this.addPoint_(e
.point
);
295 goog
.dom
.classlist
.add(this.getElement(), i18n
.input
.hwt
.css
.IME_INIT_OPAQUE
);
300 * Callback for the stroke event.
302 * @param {!i18n.input.hwt.StrokeHandler.StrokeEvent} e The stroke event.
305 i18n
.input
.hwt
.Canvas
.prototype.onStroke_ = function(e
) {
306 this.addPoint_(e
.point
);
312 * Callback for the end of a stroke.
314 * @param {i18n.input.hwt.StrokeHandler.StrokeEvent} e The stroke event.
317 i18n
.input
.hwt
.Canvas
.prototype.onStrokeEnd_ = function(e
) {
318 this.strokeList
.push(this.stroke_
);
320 this.dispatchEvent(new goog
.events
.Event(
321 i18n
.input
.hwt
.EventType
.RECOGNITION_READY
));
326 * Clears the writing canvas.
328 i18n
.input
.hwt
.Canvas
.prototype.reset = function() {
329 goog
.log
.info(this.logger_
, 'clear ' + this.writingCanvas_
.width
+ 'x' +
330 this.writingCanvas_
.height
);
331 this.writingContext_
.clearRect(
332 0, 0, this.writingCanvas_
.width
, this.writingCanvas_
.height
);
333 this.strokeList
= [];
335 this.strokeHandler_
.reset();
340 i18n
.input
.hwt
.Canvas
.prototype.disposeInternal = function() {
341 goog
.dispose(this.handler_
);
342 goog
.base(this, 'disposeInternal');
347 * Gets the width of the canvas.
349 * @return {number} The width of the canvas.
351 i18n
.input
.hwt
.Canvas
.prototype.getWidth = function() {
352 return this.writingCanvas_
.width
;
357 * Gets the height of the canvas.
359 * @return {number} The height of the canvas.
361 i18n
.input
.hwt
.Canvas
.prototype.getHeight = function() {
362 return this.writingCanvas_
.height
;
367 * True if user is drawing.
369 * @return {boolean} True if is drawing.
371 i18n
.input
.hwt
.Canvas
.prototype.isDrawing = function() {
372 return this.strokeHandler_
.drawing
;
377 * True if the canvas is clean without strokes.
379 * @return {boolean} True if the canvas is clean.
381 i18n
.input
.hwt
.Canvas
.prototype.isClean = function() {
382 return !this.strokeHandler_
.drawing
&& this.strokeList
.length
== 0;
387 * Sets the size of the canvas.
389 * @param {number=} opt_height The height.
390 * @param {number=} opt_width The width.
392 i18n
.input
.hwt
.Canvas
.prototype.setSize = function(opt_height
, opt_width
) {
393 if (opt_height
&& this.writingCanvas_
.height
!= opt_height
||
394 opt_width
&& this.writingCanvas_
.width
!= opt_width
) {
398 this.writingCanvas_
.height
= opt_height
;
401 this.writingCanvas_
.width
= opt_width
;
407 * Gets the stroke handler.
409 * @return {!i18n.input.hwt.StrokeHandler} The stroke handler.
411 i18n
.input
.hwt
.Canvas
.prototype.getStrokeHandler = function() {
412 return this.strokeHandler_
;
417 * Exports message to screen reader.
419 * @param {!goog.events.BrowserEvent} e .
422 i18n
.input
.hwt
.Canvas
.prototype.onMouseOver_ = function(e
) {
423 this.announcer_
.say(i18n
.input
.hwt
.Canvas
.MSG_INPUTTOOLS_HWT_PANEL
,
424 goog
.a11y
.aria
.LivePriority
.ASSERTIVE
);