Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / google_input_tools / src / chrome / os / inputview / specnodename.js
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 goog.provide('i18n.input.chrome.inputview.SpecNodeName');
15
16
17 /**
18  * The node name in the specification.
19  *
20  * @enum {string}
21  */
22 i18n.input.chrome.inputview.SpecNodeName = {
23   ALIGN: 'align',
24   CHARACTERS: 'characters',
25   CHILDREN: 'children',
26   CONDITION: 'condition',
27   DIRECTION: 'direction',
28   GIVE_WEIGHT_TO: 'giveWeightTo',
29   HAS_ALTGR_KEY: 'hasAltGrKey',
30   HEIGHT: 'height',
31   HEIGHT_IN_WEIGHT: 'heightInWeight',
32   HEIGHT_PERCENT: 'heightPercent',
33   HINT_TEXT: 'hintText',
34   ICON_CSS_CLASS: 'iconCssClass',
35   ID: 'id',
36   IS_GREY: 'isGrey',
37   LAYOUT: 'layout',
38   LAYOUT_ID: 'layoutID',
39   HEIGHT_PERCENT_OF_WIDTH: 'heightPercentOfWidth',
40   MARGIN_LEFT_PERCENT: 'marginLeftPercent',
41   MARGIN_RIGHT_PERCENT: 'marginRightPercent',
42   MINIMUM_HEIGHT: 'minimumHeight',
43   MORE_KEYS: 'moreKeys',
44   NO_SHIFT: 'noShift',
45   NUMBER_ROW_WEIGHT: 'numberRowWeight',
46   KEY_CODE: 'keyCode',
47   KEY_LIST: 'keyList',
48   MAPPING: 'mapping',
49   NAME: 'name',
50   ON_CONTEXT: 'onContext',
51   PADDING: 'padding',
52   RECORD: 'record',
53   SHOW_MENU_KEY: 'showMenuKey',
54   SUPPORT_STICKY: 'supportSticky',
55   SPEC: 'spec',
56   TEXT: 'text',
57   TEXT_CSS_CLASS: 'textCssClass',
58   TITLE: 'title',
59   TYPE: 'type',
60   TO_STATE: 'toState',
61   TO_KEYSET: 'toKeyset',
62   TO_KEYSET_NAME: 'toKeysetName',
63   WIDTH: 'width',
64   WIDTH_IN_WEIGHT: 'widthInWeight',
65   WIDTH_PERCENT: 'widthPercent',
66   IS_EMOTICON: 'isEmoticon',
67   MORE_KEYS_SHIFT_OPERATION: 'moreKeysShiftOperation',
68   ON_SHIFT: 'onShift'
69 };
70