Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / google_input_tools / src / chrome / os / inputview / layouts / compactspacerow.js
bloba517a69ef4952871247f814dd2cbb46f1c631483
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");
14 goog.provide('i18n.input.chrome.inputview.layouts.CompactSpaceRow');
16 goog.require('i18n.input.chrome.inputview.ConditionName');
17 goog.require('i18n.input.chrome.inputview.layouts.util');
20 goog.scope(function() {
21 var layouts = i18n.input.chrome.inputview.layouts;
22 var util = layouts.util;
25 /**
26  * Creates the compact keyboard spaceKey row.
27  * @param {boolean} isNordic True if the space key row is generated for compact
28  *     nordic layout.
29  * @return {!Object} The compact spaceKey row.
30  */
31 layouts.CompactSpaceRow.create = function(
32     isNordic) {
33   var digitSwitcher = util.createKey({
34     'widthInWeight': 1.078125
35   });
36   var globeOrSymbolKey = util.createKey({
37     'condition': i18n.input.chrome.inputview.ConditionName.SHOW_GLOBE_OR_SYMBOL,
38     'widthInWeight': 1
39   });
40   var menuKey = util.createKey({
41     'condition': i18n.input.chrome.inputview.ConditionName.SHOW_MENU,
42     'widthInWeight': 1
43   });
44   var slashKey = util.createKey({
45     'widthInWeight': 1
46   });
47   var space = util.createKey({
48     'widthInWeight': 4
49   });
50   var comma = util.createKey({
51     'widthInWeight': 1
52   });
53   var period = util.createKey({
54     'widthInWeight': 1
55   });
56   var hide = util.createKey({
57     'widthInWeight': 1.078125
58   });
60   menuKey['spec']['giveWeightTo'] = space['spec']['id'];
61   globeOrSymbolKey['spec']['giveWeightTo'] = space['spec']['id'];
63   var spaceKeyRow = util.createLinearLayout({
64     'id': 'spaceKeyrow',
65     'children': [digitSwitcher, globeOrSymbolKey, menuKey, slashKey, space,
66       comma, period, hide]
67   });
68   return spaceKeyRow;
71 });  // goog.scope