OLD | NEW |
(Empty) | |
| 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 |
| 7 // |
| 8 // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 // |
| 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"); |
| 13 // |
| 14 |
| 15 /** |
| 16 * @fileoverview Defines the class i18n.input.hwt.Css. |
| 17 * @author fengyuan@google.com (Feng Yuan) |
| 18 */ |
| 19 goog.provide('i18n.input.hwt.css'); |
| 20 |
| 21 |
| 22 /** |
| 23 * CSS used for handwriting input pad. |
| 24 * |
| 25 * @enum {string} |
| 26 */ |
| 27 i18n.input.hwt.css = { |
| 28 RTL: goog.getCssName('ita-hwt-rtl'), |
| 29 LTR: goog.getCssName('ita-hwt-ltr'), |
| 30 IME: goog.getCssName('ita-hwt-ime'), |
| 31 IME_HOVER: goog.getCssName('ita-hwt-ime-hover'), |
| 32 IME_OPAQUE: goog.getCssName('ita-hwt-ime-opaque'), |
| 33 IME_ST: goog.getCssName('ita-hwt-ime-st'), |
| 34 IME_INIT_OPAQUE: goog.getCssName('ita-hwt-ime-init-opaque'), |
| 35 CLOSE: goog.getCssName('ita-hwt-close'), |
| 36 GRIP: goog.getCssName('ita-hwt-grip'), |
| 37 GRIP_HOVER: goog.getCssName('ita-hwt-grip-hover'), |
| 38 CANVAS: goog.getCssName('ita-hwt-canvas'), |
| 39 CANDIDATES: goog.getCssName('ita-hwt-candidates'), |
| 40 CANDIDATE: goog.getCssName('ita-hwt-candidate'), |
| 41 CANDIDATE_HOVER: goog.getCssName('ita-hwt-candidate-hover'), |
| 42 SELECTED: goog.getCssName('ita-hwt-selected'), |
| 43 DISABLED: goog.getCssName('ita-hwt-disabled'), |
| 44 BUTTONS: goog.getCssName('ita-hwt-buttons'), |
| 45 DIVIDER: goog.getCssName('ita-hwt-divider'), |
| 46 BUTTON: goog.getCssName('ita-hwt-button'), |
| 47 BACKSPACE: goog.getCssName('ita-hwt-backspace'), |
| 48 BACKSPACE_IMG: goog.getCssName('ita-hwt-backspace-img'), |
| 49 SPACE: goog.getCssName('ita-hwt-space'), |
| 50 ENTER: goog.getCssName('ita-hwt-enter'), |
| 51 ENTER_IMG: goog.getCssName('ita-hwt-enter-img'), |
| 52 ENTER_IMG_DARK: goog.getCssName('ita-hwt-enter-img-dark'), |
| 53 ENTER_IMG_WHITE: goog.getCssName('ita-hwt-enter-img-white'), |
| 54 LANGUAGE: goog.getCssName('ita-hwt-language'), |
| 55 CLEAR_TIME: goog.getCssName('ita-hwt-clear-time'), |
| 56 INSERT_TIME: goog.getCssName('ita-hwt-insert-time'), |
| 57 REMOTE_SPRITE: goog.getCssName('ita-kd-img'), |
| 58 MAXIMIZED: goog.getCssName('ita-hwt-ime-full'), |
| 59 JFK_BUTTON: goog.getCssName('ita-hwt-jfk'), |
| 60 JFK_STANDARD: goog.getCssName('ita-hwt-jfk-standard'), |
| 61 JFK_ACTION: goog.getCssName('ita-hwt-jfk-action'), |
| 62 JFK_HOVER: goog.getCssName('ita-hwt-jfk-hover'), |
| 63 BUTTER_BAR: goog.getCssName('ita-hwt-butterbar'), |
| 64 SHOWN: goog.getCssName('shown') |
| 65 }; |
OLD | NEW |