summaryrefslogtreecommitdiff
path: root/otk/eventhandler.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-04 08:54:43 +0000
committerDana Jansens <danakj@orodu.net>2002-12-04 08:54:43 +0000
commitfbc516442d47048edf2b5201e0b956c85b782bac (patch)
tree412db86e2798ff0f4a16e1cef3efc0a11364abe6 /otk/eventhandler.hh
parenta21c0c55ca06fed3882f2417a8e0862f314dd434 (diff)
add suport for XMotionEvents
Diffstat (limited to 'otk/eventhandler.hh')
-rw-r--r--otk/eventhandler.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/otk/eventhandler.hh b/otk/eventhandler.hh
index a70343ed..bbc0449d 100644
--- a/otk/eventhandler.hh
+++ b/otk/eventhandler.hh
@@ -28,6 +28,9 @@ public:
//! Called whenever a button of the pointer is released.
virtual void buttonReleaseHandler(const XButtonEvent &) {}
+ //! Called whenever the pointer moved
+ virtual void motionHandler(const XMotionEvent &) {}
+
//! Called whenever the pointer enters a window.
virtual void enterHandler(const XCrossingEvent &) {}