1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
// Copyright 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 UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_
#define UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_
#include <stddef.h>
#include <stdint.h>
#include "ui/base/ime/ime_engine_handler_interface.h"
#include "ui/base/ime/ui_base_ime_export.h"
#include "ui/events/event.h"
namespace chromeos {
class UI_BASE_IME_EXPORT MockIMEEngineHandler
: public ui::IMEEngineHandlerInterface {
public:
MockIMEEngineHandler();
~MockIMEEngineHandler() override;
void FocusIn(const InputContext& input_context) override;
void FocusOut() override;
void Enable(const std::string& component_id) override;
void Disable() override;
void PropertyActivate(const std::string& property_name) override;
void Reset() override;
bool IsInterestedInKeyEvent() const override;
void ProcessKeyEvent(const ui::KeyEvent& key_event,
KeyEventDoneCallback& callback) override;
void CandidateClicked(uint32_t index) override;
void SetSurroundingText(const std::string& text,
uint32_t cursor_pos,
uint32_t anchor_pos,
uint32_t offset_pos) override;
void SetCompositionBounds(const std::vector<gfx::Rect>& bounds) override;
int focus_in_call_count() const { return focus_in_call_count_; }
int focus_out_call_count() const { return focus_out_call_count_; }
int reset_call_count() const { return reset_call_count_; }
int set_surrounding_text_call_count() const {
return set_surrounding_text_call_count_;
}
int process_key_event_call_count() const {
return process_key_event_call_count_;
}
const InputContext& last_text_input_context() const {
return last_text_input_context_;
}
std::string last_activated_property() const {
return last_activated_property_;
}
std::string last_set_surrounding_text() const {
return last_set_surrounding_text_;
}
uint32_t last_set_surrounding_cursor_pos() const {
return last_set_surrounding_cursor_pos_;
}
uint32_t last_set_surrounding_anchor_pos() const {
return last_set_surrounding_anchor_pos_;
}
const ui::KeyEvent* last_processed_key_event() const {
return last_processed_key_event_.get();
}
const KeyEventDoneCallback& last_passed_callback() const {
return last_passed_callback_;
}
bool ClearComposition(int context_id, std::string* error) override;
bool CommitText(int context_id,
const char* text,
std::string* error) override;
bool IsActive() const override;
const std::string& GetActiveComponentId() const override;
bool DeleteSurroundingText(int context_id,
int offset,
size_t number_of_chars,
std::string* error) override;
bool SetCandidateWindowVisible(bool visible, std::string* error) override;
bool SetCursorPosition(int context_id,
int candidate_id,
std::string* error) override;
void HideInputView() override {}
private:
int focus_in_call_count_;
int focus_out_call_count_;
int set_surrounding_text_call_count_;
int process_key_event_call_count_;
int reset_call_count_;
InputContext last_text_input_context_;
std::string last_activated_property_;
std::string last_set_surrounding_text_;
uint32_t last_set_surrounding_cursor_pos_;
uint32_t last_set_surrounding_anchor_pos_;
scoped_ptr<ui::KeyEvent> last_processed_key_event_;
KeyEventDoneCallback last_passed_callback_;
std::string active_component_id_;
};
} // namespace chromeos
#endif // UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_
|