Roll src/third_party/WebKit 2dc4bc6:34469ea (svn 182261:182277)
[chromium-blink-merge.git] / remoting / protocol / input_event_tracker.h
blobf357583d7f22c67e0bedc47574b8796efbd95cd8
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_PROTOCOL_INPUT_EVENT_TRACKER_H_
6 #define REMOTING_PROTOCOL_INPUT_EVENT_TRACKER_H_
8 #include <set>
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "remoting/protocol/input_stub.h"
13 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
15 namespace remoting {
16 namespace protocol {
18 // Filtering InputStub which tracks mouse and keyboard input events before
19 // passing them on to |input_stub|, and can dispatch release events to
20 // |input_stub| for all currently-pressed keys and buttons when necessary.
21 class InputEventTracker : public InputStub {
22 public:
23 explicit InputEventTracker(protocol::InputStub* input_stub);
24 virtual ~InputEventTracker();
26 // Returns true if the key with the specified USB code is currently pressed.
27 bool IsKeyPressed(uint32 usb_keycode) const;
29 // Returns the count of keys currently pressed.
30 int PressedKeyCount() const;
32 // Dispatch release events for all currently-pressed keys and mouse buttons
33 // to the InputStub.
34 void ReleaseAll();
36 // InputStub interface.
37 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE;
38 virtual void InjectTextEvent(const TextEvent& event) OVERRIDE;
39 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE;
41 private:
42 protocol::InputStub* input_stub_;
44 std::set<uint32> pressed_keys_;
46 webrtc::DesktopVector mouse_pos_;
47 uint32 mouse_button_state_;
49 DISALLOW_COPY_AND_ASSIGN(InputEventTracker);
52 } // namespace protocol
53 } // namespace remoting
55 #endif // REMOTING_PROTOCOL_INPUT_EVENT_TRACKER_H_