blob: ddff40c93932692c1b269f01e47a8c55fb1f35c1 (
plain)
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
|
// 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 "ui/base/ime/chromeos/ibus_bridge.h"
#include "ui/base/ui_export.h"
namespace chromeos {
class UI_EXPORT MockIMEEngineHandler : public IBusEngineHandlerInterface {
public:
MockIMEEngineHandler();
virtual ~MockIMEEngineHandler();
virtual void FocusIn(ui::TextInputType text_input_type) OVERRIDE;
virtual void FocusOut() OVERRIDE;
virtual void Enable() OVERRIDE;
virtual void Disable() OVERRIDE;
virtual void PropertyActivate(const std::string& property_name) OVERRIDE;
virtual void Reset() OVERRIDE;
virtual void ProcessKeyEvent(uint32 keysym, uint32 keycode, uint32 state,
const KeyEventDoneCallback& callback) OVERRIDE;
virtual void CandidateClicked(uint32 index, ibus::IBusMouseButton button,
uint32 state) OVERRIDE;
virtual void SetSurroundingText(const std::string& text, uint32 cursor_pos,
uint32 anchor_pos) 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_;
}
ui::TextInputType last_text_input_type() const {
return last_text_input_type_;
}
std::string last_activated_property() const {
return last_activated_property_;
}
std::string last_set_surrounding_text() const {
return last_set_surrounding_text_;
}
uint32 last_set_surrounding_cursor_pos() const {
return last_set_surrounding_cursor_pos_;
}
uint32 last_set_surrounding_anchor_pos() const {
return last_set_surrounding_anchor_pos_;
}
uint32 last_processed_keysym() const {
return last_processed_keysym_;
}
uint32 last_processed_keycode() const {
return last_processed_keycode_;
}
uint32 last_processed_state() const {
return last_processed_state_;
}
const KeyEventDoneCallback& last_passed_callback() const {
return last_passed_callback_;
}
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_;
ui::TextInputType last_text_input_type_;
std::string last_activated_property_;
std::string last_set_surrounding_text_;
uint32 last_set_surrounding_cursor_pos_;
uint32 last_set_surrounding_anchor_pos_;
uint32 last_processed_keysym_;
uint32 last_processed_keycode_;
uint32 last_processed_state_;
KeyEventDoneCallback last_passed_callback_;
};
} // namespace chromeos
#endif // UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_
|