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
|
// 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/ime_bridge.h"
#include "ui/base/ui_base_export.h"
#include "ui/events/event.h"
namespace chromeos {
class UI_BASE_EXPORT MockIMEEngineHandler : public IMEEngineHandlerInterface {
public:
MockIMEEngineHandler();
virtual ~MockIMEEngineHandler();
virtual void FocusIn(const InputContext& input_context) override;
virtual void FocusOut() override;
virtual void Enable(const std::string& component_id) override;
virtual void Disable() override;
virtual void PropertyActivate(const std::string& property_name) override;
virtual void Reset() override;
virtual void ProcessKeyEvent(const ui::KeyEvent& key_event,
const KeyEventDoneCallback& callback) override;
virtual void CandidateClicked(uint32 index) override;
virtual void SetSurroundingText(const std::string& text, uint32 cursor_pos,
uint32 anchor_pos) override;
virtual void SetCompositionBounds(const 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 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_;
}
const ui::KeyEvent* last_processed_key_event() const {
return last_processed_key_event_.get();
}
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_;
InputContext last_text_input_context_;
std::string last_activated_property_;
std::string last_set_surrounding_text_;
uint32 last_set_surrounding_cursor_pos_;
uint32 last_set_surrounding_anchor_pos_;
scoped_ptr<ui::KeyEvent> last_processed_key_event_;
KeyEventDoneCallback last_passed_callback_;
};
} // namespace chromeos
#endif // UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_
|