| // Copyright 2020 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_SUGGESTER_H_ |
| #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_SUGGESTER_H_ |
| |
| #include <string> |
| |
| #include "chrome/browser/chromeos/input_method/input_method_engine.h" |
| #include "chrome/browser/chromeos/input_method/input_method_engine_base.h" |
| #include "chrome/browser/chromeos/input_method/suggestion_enums.h" |
| |
| namespace chromeos { |
| |
| // A generic agent to suggest when the user types, and adopt or dismiss the |
| // suggestion according to the user action. |
| class Suggester { |
| public: |
| virtual ~Suggester() = default; |
| |
| // Called when a text field gains focus, and suggester starts working. |
| virtual void OnFocus(int context_id) = 0; |
| |
| // Called when a text field loses focus, and suggester stops working. |
| virtual void OnBlur() = 0; |
| |
| // Called when suggestion is being shown. |
| // Returns SuggestionStatus as suggester handles the event. |
| virtual SuggestionStatus HandleKeyEvent(const ui::KeyEvent& event) = 0; |
| |
| // Check if suggestion should be displayed according to the surrounding text |
| // information. |
| virtual bool Suggest(const std::u16string& text) = 0; |
| |
| // Accepts the suggestion at a given index, index can be made default if |
| // unnecessary. Returns true if suggestion is accepted successfully. |
| virtual bool AcceptSuggestion(size_t index) = 0; |
| |
| virtual void DismissSuggestion() = 0; |
| |
| // Return the propose assistive action type. |
| virtual AssistiveType GetProposeActionType() = 0; |
| }; |
| |
| } // namespace chromeos |
| |
| #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_SUGGESTER_H_ |