Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: ui/aura_shell/input_method_event_filter.h

Issue 8576005: IME (input method editor) support for Aura, part 3 of 3: Use ui::InputMethod in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moved IME code to aura_shell, not ready for review though Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/aura_shell/input_method_event_filter.h
diff --git a/ui/aura_shell/input_method_event_filter.h b/ui/aura_shell/input_method_event_filter.h
new file mode 100644
index 0000000000000000000000000000000000000000..436a0ea25daeeb62cfe876d5aa9f0dd150f1ac93
--- /dev/null
+++ b/ui/aura_shell/input_method_event_filter.h
@@ -0,0 +1,57 @@
+// Copyright (c) 2011 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_AURA_INPUT_METHOD_EVENT_FILTER_
+#define UI_AURA_INPUT_METHOD_EVENT_FILTER_
+#pragma once
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/memory/scoped_ptr.h"
+#include "ui/aura/event_filter.h"
+#include "ui/aura_shell/aura_shell_export.h"
+#include "ui/base/ime/input_method_delegate.h"
+
+namespace ui {
+class InputMethod;
+}
+
+namespace aura_shell {
+namespace internal {
+
+// ...
+class AURA_SHELL_EXPORT InputMethodEventFilter
+ : public aura::EventFilter,
+ public ui::internal::InputMethodDelegate {
+ public:
+ InputMethodEventFilter();
+ virtual ~InputMethodEventFilter();
+
+ // Overridden from aura::EventFilter:
+ virtual bool PreHandleKeyEvent(aura::Window* target,
+ aura::KeyEvent* event) OVERRIDE;
+ virtual bool PreHandleMouseEvent(aura::Window* target,
+ aura::MouseEvent* event) OVERRIDE {
+ return false;
+ }
+ virtual ui::TouchStatus PreHandleTouchEvent(
+ aura::Window* target,
+ aura::TouchEvent* event) OVERRIDE {
+ return ui::TOUCH_STATUS_UNKNOWN;
+ }
+
+ private:
+ // ui::internal::InputMethodDelegate Override.
+ virtual void DispatchKeyEventPostIME(const base::NativeEvent& event) OVERRIDE;
+ virtual void DispatchFabricatedKeyEventPostIME(ui::EventType type,
+ ui::KeyboardCode key_code,
+ int flags) OVERRIDE;
+
+ DISALLOW_COPY_AND_ASSIGN(InputMethodEventFilter);
+};
+
+} // namespace internal
+} // namespace aura_shell
+
+#endif // UI_AURA_SHELL_INPUT_METHOD_EVENT_FILTER_

Powered by Google App Engine
This is Rietveld 408576698