Update mojo sdk to rev 1dc8a9a5db73d3718d99917fadf31f5fb2ebad4f
[chromium-blink-merge.git] / third_party / google_input_tools / src / chrome / os / inputview / layouts / rowsof101.js
blob9bce0bea92172118b2a0c1f9c2c193da0e6adb7a
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.RowsOf101');
16 goog.require('i18n.input.chrome.inputview.layouts.util');
19 /**
20  * Creates the top four rows for 101 keyboard.
21  *
22  * @return {!Array.<!Object>} The rows.
23  */
24 i18n.input.chrome.inputview.layouts.RowsOf101.create = function() {
25   var baseKeySpec = {
26     'widthInWeight': 1,
27     'heightInWeight': 1
28   };
30   // Row1
31   var backquoteKey = i18n.input.chrome.inputview.layouts.util.createKey({
32     'widthInWeight': 0.94
33   });
34   var keySequenceOf12 = i18n.input.chrome.inputview.layouts.util.
35       createKeySequence(baseKeySpec, 12);
36   var backspaceKey = i18n.input.chrome.inputview.layouts.util.createKey({
37     'widthInWeight': 1.42
38   });
39   var row1 = i18n.input.chrome.inputview.layouts.util.createLinearLayout({
40     'id': 'row1',
41     'children': [backquoteKey, keySequenceOf12, backspaceKey]
42   });
44   // Row2
45   var tabKey = i18n.input.chrome.inputview.layouts.util.createKey({
46     'widthInWeight': 1.38
47   });
48   keySequenceOf12 = i18n.input.chrome.inputview.layouts.util.
49       createKeySequence(baseKeySpec, 12);
50   var backSlashKey = i18n.input.chrome.inputview.layouts.util.createKey({
51     'widthInWeight': 0.98
52   });
53   var row2 = i18n.input.chrome.inputview.layouts.util.createLinearLayout({
54     'id': 'row2',
55     'children': [tabKey, keySequenceOf12, backSlashKey]
56   });
58   // Row3
59   var capslockKey = i18n.input.chrome.inputview.layouts.util.createKey({
60     'widthInWeight': 1.68
61   });
62   var keySequenceOf11 = i18n.input.chrome.inputview.layouts.util.
63       createKeySequence(baseKeySpec, 11);
64   var enterKey = i18n.input.chrome.inputview.layouts.util.createKey({
65     'widthInWeight': 1.68
66   });
67   var row3 = i18n.input.chrome.inputview.layouts.util.createLinearLayout({
68     'id': 'row3',
69     'children': [capslockKey, keySequenceOf11, enterKey]
70   });
72   // Row4
73   var shiftLeftKey = i18n.input.chrome.inputview.layouts.util.createKey({
74     'widthInWeight': 2.12
75   });
76   var keySequenceOf9 = i18n.input.chrome.inputview.layouts.util.
77       createKeySequence(baseKeySpec, 9);
78   var slashKey = i18n.input.chrome.inputview.layouts.util.createKey({
79     'widthInWeight': 1.08
80   });
81   var shiftRightKey = i18n.input.chrome.inputview.layouts.util.createKey({
82     'widthInWeight': 2.16
83   });
84   var row4 = i18n.input.chrome.inputview.layouts.util.createLinearLayout({
85     'id': 'row4',
86     'children': [shiftLeftKey, keySequenceOf9, slashKey, shiftRightKey]
87   });
89   return [row1, row2, row3, row4];