1 // Copyright (c) 2011 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.
5 #ifndef UI_VIEWS_IME_MOCK_INPUT_METHOD_H_
6 #define UI_VIEWS_IME_MOCK_INPUT_METHOD_H_
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "ui/base/ime/composition_text.h"
13 #include "ui/views/ime/input_method_base.h"
14 #include "ui/views/view.h"
18 // A mock InputMethod implementation for testing purpose.
19 class VIEWS_EXPORT MockInputMethod
: public InputMethodBase
{
22 explicit MockInputMethod(internal::InputMethodDelegate
* delegate
);
23 ~MockInputMethod() override
;
25 // Overridden from InputMethod:
26 void Init(Widget
* widget
) override
;
27 void OnFocus() override
;
28 void OnBlur() override
;
29 bool OnUntranslatedIMEMessage(const base::NativeEvent
& event
,
30 NativeEventResult
* result
) override
;
31 void DispatchKeyEvent(const ui::KeyEvent
& key
) override
;
32 void OnTextInputTypeChanged(View
* view
) override
;
33 void OnCaretBoundsChanged(View
* view
) override
;
34 void CancelComposition(View
* view
) override
;
35 void OnInputLocaleChanged() override
;
36 std::string
GetInputLocale() override
;
37 bool IsActive() override
;
38 bool IsCandidatePopupOpen() const override
;
39 void ShowImeIfNeeded() override
;
40 bool IsMock() const override
;
42 bool focus_changed() const { return focus_changed_
; }
43 bool untranslated_ime_message_called() const {
44 return untranslated_ime_message_called_
;
46 bool text_input_type_changed() const { return text_input_type_changed_
; }
47 bool caret_bounds_changed() const { return caret_bounds_changed_
; }
48 bool cancel_composition_called() const { return cancel_composition_called_
; }
49 bool input_locale_changed() const { return input_locale_changed_
; }
51 // Clears all internal states and result.
54 void SetCompositionTextForNextKey(const ui::CompositionText
& composition
);
55 void SetResultTextForNextKey(const base::string16
& result
);
57 void SetInputLocale(const std::string
& locale
);
58 void SetActive(bool active
);
61 // Overridden from InputMethodBase.
62 void OnWillChangeFocus(View
* focused_before
, View
* focused
) override
;
64 // Clears boolean states defined below.
67 // Clears only composition information and result text.
70 // Composition information for the next key event. It'll be cleared
71 // automatically after dispatching the next key event.
72 ui::CompositionText composition_
;
73 bool composition_changed_
;
75 // Result text for the next key event. It'll be cleared automatically after
76 // dispatching the next key event.
77 base::string16 result_text_
;
79 // Record call state of corresponding methods. They will be set to false
80 // automatically before dispatching a key event.
82 bool untranslated_ime_message_called_
;
83 bool text_input_type_changed_
;
84 bool caret_bounds_changed_
;
85 bool cancel_composition_called_
;
86 bool input_locale_changed_
;
88 // To mock corresponding input method prooperties.
92 DISALLOW_COPY_AND_ASSIGN(MockInputMethod
);
97 #endif // UI_VIEWS_IME_MOCK_INPUT_METHOD_H_