diff options
| author | Sebastien Braun | 2010-10-23 17:49:12 +0200 |
|---|---|---|
| committer | Sebastien Braun | 2010-10-24 23:43:08 +0200 |
| commit | 7e3b963e3a0cbbf9391243e72ceb015e9015d630 (patch) | |
| tree | d980c26b837ef106e286ea3ed3562ee37ffbd0bf /src/input/x11FakeMouseHandler.h | |
| parent | Fix forgotten change of j to mods in X11FakeKeyboardHandler. (diff) | |
| download | pvs-7e3b963e3a0cbbf9391243e72ceb015e9015d630.tar.gz pvs-7e3b963e3a0cbbf9391243e72ceb015e9015d630.tar.xz pvs-7e3b963e3a0cbbf9391243e72ceb015e9015d630.zip | |
Documentation fixes and code cleanup
Diffstat (limited to 'src/input/x11FakeMouseHandler.h')
| -rw-r--r-- | src/input/x11FakeMouseHandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/input/x11FakeMouseHandler.h b/src/input/x11FakeMouseHandler.h index 9d41c31..2700829 100644 --- a/src/input/x11FakeMouseHandler.h +++ b/src/input/x11FakeMouseHandler.h @@ -19,6 +19,9 @@ #include "inputEventHandler.h" +/** + * Send mouse button events via the XTest extension. + */ class X11FakeMouseButtonHandler : public InputEventHandler< input_policy::Match<InputEvent::ET_BUTTON>, input_policy::Require<input_policy::X11GUI>, @@ -28,6 +31,9 @@ public: void doHandle(InputEvent const&, InputEventContext const* = 0); }; +/** + * Send mouse pointer events via the XTest extension. + */ class X11FakeMouseMovementHandler : public InputEventHandler< input_policy::Match<InputEvent::ET_POINTER>, input_policy::Require<input_policy::X11GUI>, |
