| // Copyright 2018 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef UI_BASE_IME_INPUT_METHOD_KEYBOARD_CONTROLLER_OBSERVER_H_ |
| #define UI_BASE_IME_INPUT_METHOD_KEYBOARD_CONTROLLER_OBSERVER_H_ |
| |
| #include "ui/base/ime/ui_base_ime_export.h" |
| |
| namespace gfx { |
| class Rect; |
| } // namespace gfx |
| |
| namespace ui { |
| |
| // This observer class provides a method to observe on screen |
| // keyboard changes. |
| class UI_BASE_IME_EXPORT InputMethodKeyboardControllerObserver { |
| public: |
| // The |keyboard_rect| parameter contains the bounds of the keyboard in dips. |
| virtual void OnKeyboardVisible(const gfx::Rect& keyboard_rect) = 0; |
| virtual void OnKeyboardHidden() = 0; |
| |
| protected: |
| virtual ~InputMethodKeyboardControllerObserver() = default; |
| }; |
| |
| } // namespace ui |
| |
| #endif // UI_BASE_IME_INPUT_METHOD_KEYBOARD_CONTROLLER_OBSERVER_H_ |