Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Unified Diff: third_party/google_input_tools/src/chrome/os/inputview/layouts/compactspacerow.js

Issue 674153004: Add third_party/google-input-tools: Take 2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@google_input_tools
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/google_input_tools/src/chrome/os/inputview/layouts/compactspacerow.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/layouts/compactspacerow.js b/third_party/google_input_tools/src/chrome/os/inputview/layouts/compactspacerow.js
new file mode 100644
index 0000000000000000000000000000000000000000..4499728b0645fce3689210511aaa85ee92cca810
--- /dev/null
+++ b/third_party/google_input_tools/src/chrome/os/inputview/layouts/compactspacerow.js
@@ -0,0 +1,72 @@
+// 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");
+//
+goog.provide('i18n.input.chrome.inputview.layouts.CompactSpaceRow');
+
+goog.require('i18n.input.chrome.inputview.ConditionName');
+goog.require('i18n.input.chrome.inputview.layouts.util');
+
+
+/**
+ * Creates the compact keyboard spaceKey row.
+ * @param {boolean} isNordic True if the space key row is generated for compact
+ * nordic layout.
+ * @return {!Object} The compact spaceKey row.
+ */
+i18n.input.chrome.inputview.layouts.CompactSpaceRow.create = function(
+ isNordic) {
+ var digitSwitcher = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 1.1
+ });
+ var globeOrSymbolKey = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'condition': i18n.input.chrome.inputview.ConditionName.SHOW_GLOBE_OR_SYMBOL,
+ 'widthInWeight': 1
+ });
+ var menuKey = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'condition': i18n.input.chrome.inputview.ConditionName.SHOW_MENU,
+ 'widthInWeight': 1
+ });
+ var slashKey = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 1
+ });
+ var space;
+ if (isNordic) {
+ space = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 5
+ });
+ } else {
+ space = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 4
+ });
+ }
+ var comma = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 1
+ });
+ var period = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 1
+ });
+ var hide = i18n.input.chrome.inputview.layouts.util.createKey({
+ 'widthInWeight': 1.1
+ });
+
+ menuKey['spec']['giveWeightTo'] = space['spec']['id'];
+ globeOrSymbolKey['spec']['giveWeightTo'] = space['spec']['id'];
+
+ var spaceKeyRow = i18n.input.chrome.inputview.layouts.util.
+ createLinearLayout({
+ 'id': 'spaceKeyrow',
+ 'children': [digitSwitcher, globeOrSymbolKey, menuKey, slashKey, space,
+ comma, period, hide]
+ });
+ return spaceKeyRow;
+};

Powered by Google App Engine
This is Rietveld 408576698