OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/keyboard/keyboard_ui.h" | 5 #include "ui/keyboard/keyboard_ui.h" |
6 | 6 |
| 7 #include "base/command_line.h" |
7 #include "ui/aura/window.h" | 8 #include "ui/aura/window.h" |
8 #include "ui/base/ime/input_method.h" | 9 #include "ui/base/ime/input_method.h" |
9 #include "ui/base/ime/text_input_client.h" | 10 #include "ui/base/ime/text_input_client.h" |
| 11 #include "ui/base/ui_base_switches.h" |
10 #include "ui/keyboard/keyboard_controller.h" | 12 #include "ui/keyboard/keyboard_controller.h" |
11 | 13 |
12 namespace keyboard { | 14 namespace keyboard { |
13 | 15 |
14 KeyboardUI::KeyboardUI() : keyboard_controller_(nullptr) {} | 16 KeyboardUI::KeyboardUI() : keyboard_controller_(nullptr) {} |
15 KeyboardUI::~KeyboardUI() {} | 17 KeyboardUI::~KeyboardUI() {} |
16 | 18 |
17 void KeyboardUI::ShowKeyboardContainer(aura::Window* container) { | 19 void KeyboardUI::ShowKeyboardContainer(aura::Window* container) { |
18 if (HasKeyboardWindow()) { | 20 if (HasKeyboardWindow()) { |
19 GetKeyboardWindow()->Show(); | 21 GetKeyboardWindow()->Show(); |
20 container->Show(); | 22 container->Show(); |
21 } | 23 } |
22 } | 24 } |
23 | 25 |
24 void KeyboardUI::HideKeyboardContainer(aura::Window* container) { | 26 void KeyboardUI::HideKeyboardContainer(aura::Window* container) { |
25 if (HasKeyboardWindow()) { | 27 if (HasKeyboardWindow()) { |
26 container->Hide(); | 28 container->Hide(); |
27 GetKeyboardWindow()->Hide(); | 29 GetKeyboardWindow()->Hide(); |
28 } | 30 } |
29 } | 31 } |
30 | 32 |
31 void KeyboardUI::EnsureCaretInWorkArea() { | 33 void KeyboardUI::EnsureCaretInWorkArea() { |
32 if (GetInputMethod()->GetTextInputClient()) { | 34 if (!GetInputMethod()) |
33 aura::Window* keyboard_window = GetKeyboardWindow(); | 35 return; |
| 36 |
| 37 const aura::Window* keyboard_window = GetKeyboardWindow(); |
| 38 const gfx::Rect keyboard_bounds_in_screen = |
| 39 keyboard_window->IsVisible() ? keyboard_window->GetBoundsInScreen() |
| 40 : gfx::Rect(); |
| 41 |
| 42 // Use new virtual keyboard behavior only if the flag enabled and in |
| 43 // non-sticky mode. |
| 44 const bool new_vk_behavior = |
| 45 (base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 46 ::switches::kUseNewVirtualKeyboardBehavior) && |
| 47 !keyboard::KeyboardController::GetInstance()->keyboard_locked()); |
| 48 |
| 49 if (new_vk_behavior) { |
| 50 GetInputMethod()->SetOnScreenKeyboardBounds(keyboard_bounds_in_screen); |
| 51 } else if (GetInputMethod()->GetTextInputClient()) { |
34 GetInputMethod()->GetTextInputClient()->EnsureCaretNotInRect( | 52 GetInputMethod()->GetTextInputClient()->EnsureCaretNotInRect( |
35 keyboard_window->GetBoundsInScreen()); | 53 keyboard_bounds_in_screen); |
36 } | 54 } |
37 } | 55 } |
38 | 56 |
39 void KeyboardUI::SetController(KeyboardController* controller) { | 57 void KeyboardUI::SetController(KeyboardController* controller) { |
40 keyboard_controller_ = controller; | 58 keyboard_controller_ = controller; |
41 } | 59 } |
42 | 60 |
43 } // namespace keyboard | 61 } // namespace keyboard |
OLD | NEW |