// Copyright 2014 The ChromeOS IME Authors. All Rights Reserved.
// limitations under the License.
// See the License for the specific language governing permissions and
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// distributed under the License is distributed on an "AS-IS" BASIS,
// Unless required by applicable law or agreed to in writing, software
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// You may obtain a copy of the License at
// you may not use this file except in compliance with the License.
// Licensed under the Apache License, Version 2.0 (the "License");
//
/**
* @fileoverview Handwriting event type.
* @author [email protected] (Yingbing Wu)
*/
goog.provide('i18n.input.hwt.CandidateSelectEvent');
goog.provide('i18n.input.hwt.CommitEvent');
goog.provide('i18n.input.hwt.EventType');
goog.require('goog.events');
goog.require('goog.events.Event');
/**
* Handwriting event type to expose to external.
*
* @enum {string}
*/
i18n.input.hwt.EventType = {
BACKSPACE: goog.events.getUniqueId('b'),
CANDIDATE_SELECT: goog.events.getUniqueId('cs'),
COMMIT: goog.events.getUniqueId('c'),
COMMIT_START: goog.events.getUniqueId('hcs'),
COMMIT_END: goog.events.getUniqueId('hce'),
RECOGNITION_READY: goog.events.getUniqueId('rr'),
ENTER: goog.events.getUniqueId('e'),
HANDWRITING_CLOSED: goog.events.getUniqueId('hc'),
MOUSEUP: goog.events.getUniqueId('m'),
SPACE: goog.events.getUniqueId('s')
};
/**
* Candidate select event.
*
* @param {string} candidate The candidate.
* @constructor
* @extends {goog.events.Event}
*/
i18n.input.hwt.CandidateSelectEvent = function(candidate) {
i18n.input.hwt.CandidateSelectEvent.base(
this, 'constructor', i18n.input.hwt.EventType.CANDIDATE_SELECT);
/**
* The candidate.
*
* @type {string}
*/
this.candidate = candidate;
};
goog.inherits(i18n.input.hwt.CandidateSelectEvent, goog.events.Event);
/**
* Commit event.
*
* @param {string} text The text to commit.
* @param {number=} opt_back The number of characters to be deleted.
* @constructor
* @extends {goog.events.Event}
*/
i18n.input.hwt.CommitEvent = function(text, opt_back) {
i18n.input.hwt.CommitEvent.base(this, 'constructor',
i18n.input.hwt.EventType.COMMIT);
/**
* The text.
*
* @type {string}
*/
this.text = text;
/**
* The number of characters to be deleted.
*
* @type {number}
*/
this.back = opt_back || 0;
};
goog.inherits(i18n.input.hwt.CommitEvent, goog.events.Event);