Chromium Code Reviews| Index: chrome/browser/chromeos/input_method/mode_indicator_controller.h |
| diff --git a/chrome/browser/chromeos/input_method/mode_indicator_controller.h b/chrome/browser/chromeos/input_method/mode_indicator_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..43c2be952155bf82e017da8971d3c0f41e669f11 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/input_method/mode_indicator_controller.h |
| @@ -0,0 +1,47 @@ |
| +// Copyright (c) 2013 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 CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MODE_INDICATOR_CONTROLLER_H_ |
| +#define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MODE_INDICATOR_CONTROLLER_H_ |
| + |
| +#include "base/memory/scoped_ptr.h" |
| +#include "chromeos/ime/input_method_manager.h" |
| + |
| +namespace gfx { |
| +class Rect; |
| +} // namespace gfx |
| + |
| +namespace chromeos { |
| +namespace input_method { |
| + |
| +class ModeIndicatorWidget; |
| + |
| +// ModeIndicatorController is the controller of ModeIndicatiorWidget on the |
| +// MVC model. |
| +class ModeIndicatorController |
| + : public InputMethodManager::Observer { |
| + public: |
| + // This class takes the ownership of the widget. |
|
Seigo Nonaka
2013/10/02 03:27:51
/widght/|mi_widget|/
Hiro Komatsu
2013/10/02 07:00:55
Done.
|
| + ModeIndicatorController(ModeIndicatorWidget *mi_widget); |
| + virtual ~ModeIndicatorController(); |
| + |
| + // Set cursor location, which is the base point to display this indicator. |
| + // Bacisally this indicator is displayed underneath the cursor. |
| + void SetCursorLocation(const gfx::Rect& cursor_location); |
| + |
| + private: |
| + // InputMethodManager::Observer implementation. |
| + virtual void InputMethodChanged(InputMethodManager* manager, |
| + bool show_message) OVERRIDE; |
| + virtual void InputMethodPropertyChanged(InputMethodManager* manager) OVERRIDE; |
| + |
| + scoped_ptr<ModeIndicatorWidget> mi_widget_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ModeIndicatorController); |
| +}; |
| + |
| +} // namespace input_method |
| +} // namespace chromeos |
| + |
| +#endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_MODE_INDICATOR_CONTROLLER_H_ |