| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_PROTOCOL_INPUT_FILTER_H_ | 5 #ifndef REMOTING_PROTOCOL_INPUT_FILTER_H_ |
| 6 #define REMOTING_PROTOCOL_INPUT_FILTER_H_ | 6 #define REMOTING_PROTOCOL_INPUT_FILTER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "remoting/protocol/input_stub.h" | 10 #include "remoting/protocol/input_stub.h" |
| 11 | 11 |
| 12 namespace remoting { | 12 namespace remoting { |
| 13 namespace protocol { | 13 namespace protocol { |
| 14 | 14 |
| 15 // Forwards input events to |input_stub|, iif |input_stub| is not NULL. | 15 // Forwards input events to |input_stub|, if configured. Input forwarding may |
| 16 // also be disabled independently of the |input_stub| being set. InputFilters |
| 17 // initially have input forwarding enabled. |
| 16 class InputFilter : public InputStub { | 18 class InputFilter : public InputStub { |
| 17 public: | 19 public: |
| 18 InputFilter(); | 20 InputFilter(); |
| 19 explicit InputFilter(InputStub* input_stub); | 21 explicit InputFilter(InputStub* input_stub); |
| 20 virtual ~InputFilter(); | 22 virtual ~InputFilter(); |
| 21 | 23 |
| 22 // Return the InputStub that events will be forwarded to. | |
| 23 InputStub* input_stub() { return input_stub_; } | |
| 24 | |
| 25 // Set the InputStub that events will be forwarded to. | 24 // Set the InputStub that events will be forwarded to. |
| 26 void set_input_stub(InputStub* input_stub) { | 25 void set_input_stub(InputStub* input_stub) { |
| 27 input_stub_ = input_stub; | 26 input_stub_ = input_stub; |
| 28 } | 27 } |
| 29 | 28 |
| 29 // Enable/disable routing of events to the InputStub. |
| 30 void set_enabled(bool enabled) { |
| 31 enabled_ = enabled; |
| 32 } |
| 33 bool enabled() const { |
| 34 return enabled_; |
| 35 } |
| 36 |
| 30 // InputStub interface. | 37 // InputStub interface. |
| 31 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; | 38 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; |
| 32 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; | 39 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; |
| 33 | 40 |
| 34 private: | 41 private: |
| 35 InputStub* input_stub_; | 42 InputStub* input_stub_; |
| 43 bool enabled_; |
| 36 | 44 |
| 37 DISALLOW_COPY_AND_ASSIGN(InputFilter); | 45 DISALLOW_COPY_AND_ASSIGN(InputFilter); |
| 38 }; | 46 }; |
| 39 | 47 |
| 40 } // namespace protocol | 48 } // namespace protocol |
| 41 } // namespace remoting | 49 } // namespace remoting |
| 42 | 50 |
| 43 #endif // REMOTING_PROTOCOL_INPUT_FILTER_H_ | 51 #endif // REMOTING_PROTOCOL_INPUT_FILTER_H_ |
| OLD | NEW |