| Index: base/win/text_services_message_filter.cc
|
| diff --git a/base/win/text_services_message_filter.cc b/base/win/text_services_message_filter.cc
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..7e6d91498dd5b3537d5da3ad02b9a2b693557a1b
|
| --- /dev/null
|
| +++ b/base/win/text_services_message_filter.cc
|
| @@ -0,0 +1,84 @@
|
| +// Copyright (c) 2012 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.
|
| +
|
| +#include "base/win/text_services_message_filter.h"
|
| +
|
| +namespace base {
|
| +namespace win {
|
| +
|
| +TextServicesMessageFilter::TextServicesMessageFilter()
|
| + : client_id_(TF_CLIENTID_NULL),
|
| + is_initialized_(false) {
|
| +}
|
| +
|
| +TextServicesMessageFilter::~TextServicesMessageFilter() {
|
| + if (is_initialized_)
|
| + thread_mgr_->Deactivate();
|
| +}
|
| +
|
| +bool TextServicesMessageFilter::Init() {
|
| + if (FAILED(thread_mgr_.CreateInstance(CLSID_TF_ThreadMgr)))
|
| + return false;
|
| +
|
| + if (FAILED(message_pump_.QueryFrom(thread_mgr_)))
|
| + return false;
|
| +
|
| + if (FAILED(keystroke_mgr_.QueryFrom(thread_mgr_)))
|
| + return false;
|
| +
|
| + if (FAILED(thread_mgr_->Activate(&client_id_)))
|
| + return false;
|
| +
|
| + is_initialized_ = true;
|
| + return is_initialized_;
|
| +}
|
| +
|
| +// Wraps for ITfMessagePump::PeekMessage with win32 PeekMessage signature.
|
| +// Obtains messages from application message queue.
|
| +BOOL TextServicesMessageFilter::DoPeekMessage(MSG* message,
|
| + HWND window_handle,
|
| + UINT msg_filter_min,
|
| + UINT msg_filter_max,
|
| + UINT remove_msg) {
|
| + BOOL result = FALSE;
|
| + if (FAILED(message_pump_->PeekMessage(message, window_handle,
|
| + msg_filter_min, msg_filter_max,
|
| + remove_msg, &result))) {
|
| + result = FALSE;
|
| + }
|
| +
|
| + return result;
|
| +}
|
| +
|
| +// Sends message to Text Service Manager.
|
| +// The message will be used to input composition text.
|
| +// Returns true if |message| was consumed by text service manager.
|
| +bool TextServicesMessageFilter::ProcessMessage(const MSG& message) {
|
| + if (message.message == WM_KEYDOWN) {
|
| + BOOL eaten = FALSE;
|
| + HRESULT hr = keystroke_mgr_->TestKeyDown(message.wParam, message.lParam,
|
| + &eaten);
|
| + if (FAILED(hr) && !eaten)
|
| + return false;
|
| + eaten = FALSE;
|
| + hr = keystroke_mgr_->KeyDown(message.wParam, message.lParam, &eaten);
|
| + return (SUCCEEDED(hr) && !!eaten);
|
| + }
|
| +
|
| + if (message.message == WM_KEYUP) {
|
| + BOOL eaten = FALSE;
|
| + HRESULT hr = keystroke_mgr_->TestKeyUp(message.wParam, message.lParam,
|
| + &eaten);
|
| + if (FAILED(hr) && !eaten)
|
| + return false;
|
| + eaten = FALSE;
|
| + hr = keystroke_mgr_->KeyUp(message.wParam, message.lParam, &eaten);
|
| + return (SUCCEEDED(hr) && !!eaten);
|
| + }
|
| +
|
| + return false;
|
| +}
|
| +
|
| +} // namespace win
|
| +} // namespace base
|
|
|