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

Unified Diff: remoting/client/key_event_mapper.h

Issue 10025001: Add APIs to the client plugin to re-map and trap key events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 8 years, 8 months 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
« no previous file with comments | « no previous file | remoting/client/key_event_mapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/key_event_mapper.h
diff --git a/remoting/client/key_event_mapper.h b/remoting/client/key_event_mapper.h
new file mode 100644
index 0000000000000000000000000000000000000000..c48e089e04aad9887fc12d567633846d3658e485
--- /dev/null
+++ b/remoting/client/key_event_mapper.h
@@ -0,0 +1,54 @@
+// 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.
+
+#ifndef REMOTING_CLIENT_KEY_EVENT_MAPPER_H_
+#define REMOTING_CLIENT_KEY_EVENT_MAPPER_H_
+
+#include <map>
+#include <set>
+
+#include "base/basictypes.h"
+#include "base/callback.h"
+#include "base/compiler_specific.h"
+#include "remoting/protocol/input_filter.h"
+
+namespace remoting {
+
+// Filtering InputStub which can be used to re-map the USB keycodes of events
+// before they are passed on to the next InputStub in the chain, or to trap
+// events with specific USB keycodes for special handling.
+class KeyEventMapper : public protocol::InputFilter {
+ public:
+ KeyEventMapper();
+ explicit KeyEventMapper(InputStub* input_stub);
+ virtual ~KeyEventMapper();
+
+ // Callback type for use with SetTrapCallback(), below.
+ typedef base::Callback<void(uint32, bool)> KeyTrapCallback;
+
+ // Sets the callback to which trapped keys will be delivered.
+ void SetTrapCallback(KeyTrapCallback callback);
+
+ // Causes events matching |usb_keycode| to be delivered to the trap callback.
+ // Trapped events are not dispatched to the next InputStub in the chain.
+ void TrapKey(uint32 usb_keycode, bool trap_key);
+
+ // Causes events matching |in_usb_keycode| to be mapped to |out_usb_keycode|.
+ // Keys are remapped at most once. Traps are processed before remapping.
+ void RemapKey(uint32 in_usb_keycode, uint32 out_usb_keycode);
+
+ // InputFilter overrides.
+ virtual void InjectKeyEvent(const protocol::KeyEvent& event) OVERRIDE;
+
+ private:
+ std::map<uint32,uint32> mapped_keys;
+ std::set<uint32> trapped_keys;
+ KeyTrapCallback trap_callback;
+
+ DISALLOW_COPY_AND_ASSIGN(KeyEventMapper);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_CLIENT_KEY_EVENT_MAPPER_H_
« no previous file with comments | « no previous file | remoting/client/key_event_mapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698