OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "ash/wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.
h" |
| 6 |
| 7 #include <set> |
| 8 |
| 9 #include "ash/shell.h" |
| 10 #include "ui/aura/client/cursor_client.h" |
| 11 #include "ui/events/keycodes/keyboard_codes.h" |
| 12 #include "ui/ozone/public/input_controller.h" |
| 13 #include "ui/ozone/public/ozone_platform.h" |
| 14 |
| 15 namespace ash { |
| 16 |
| 17 ScopedDisableInternalMouseAndKeyboardOzone:: |
| 18 ScopedDisableInternalMouseAndKeyboardOzone() { |
| 19 ui::InputController* input_controller = |
| 20 ui::OzonePlatform::GetInstance()->GetInputController(); |
| 21 if (input_controller->HasTouchpad()) { |
| 22 input_controller->DisableInternalTouchpad(); |
| 23 aura::client::GetCursorClient(Shell::GetInstance()->GetPrimaryRootWindow()) |
| 24 ->HideCursor(); |
| 25 } |
| 26 |
| 27 // Allow the acccessible keys present on the side of some devices to continue |
| 28 // working. |
| 29 scoped_ptr<std::set<ui::KeyboardCode> > excepted_keys( |
| 30 new std::set<ui::KeyboardCode>); |
| 31 excepted_keys->insert(ui::VKEY_VOLUME_DOWN); |
| 32 excepted_keys->insert(ui::VKEY_VOLUME_UP); |
| 33 excepted_keys->insert(ui::VKEY_POWER); |
| 34 input_controller->DisableInternalKeyboardExceptKeys(excepted_keys.Pass()); |
| 35 } |
| 36 |
| 37 ScopedDisableInternalMouseAndKeyboardOzone:: |
| 38 ~ScopedDisableInternalMouseAndKeyboardOzone() { |
| 39 ui::InputController* input_controller = |
| 40 ui::OzonePlatform::GetInstance()->GetInputController(); |
| 41 input_controller->EnableInternalTouchpad(); |
| 42 input_controller->EnableInternalKeyboard(); |
| 43 } |
| 44 |
| 45 } // namespace ash |
OLD | NEW |