From e3785fc3c3039fd9e56866c467e3f7f287514770 Mon Sep 17 00:00:00 2001 From: fluxgen Date: Wed, 27 Nov 2002 21:41:38 +0000 Subject: removed templated and fixed XEvent functions --- src/FbTk/EventHandler.hh | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/src/FbTk/EventHandler.hh b/src/FbTk/EventHandler.hh index 1fc73c4..10d9757 100644 --- a/src/FbTk/EventHandler.hh +++ b/src/FbTk/EventHandler.hh @@ -1,5 +1,5 @@ -// fluxbox.cc for Fluxbox Window Manager -// Copyright (c) 2002 Henrik Kinnunen (fluxgen@linuxmail.org) +// EventHandler.cc for Fluxbox Window Manager +// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org) // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), @@ -19,23 +19,34 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: EventHandler.hh,v 1.1 2002/11/26 16:01:27 fluxgen Exp $ +// $Id: EventHandler.hh,v 1.2 2002/11/27 21:41:38 fluxgen Exp $ #ifndef FBTK_EVENTHANDLER_HH #define FBTK_EVENTHANDLER_HH +#include + namespace FbTk { /** - template eventhandler - Both return value and argument is generic. + interface for X events */ -template class EventHandler { public: virtual ~EventHandler() { } - virtual Event_ret_T handleEvent(Event_T * const) = 0; + /** + Events that don't have an specific event function + */ + virtual void handleEvent(XEvent &ev) { } + virtual void buttonPressEvent(XButtonEvent &ev) { } + virtual void buttonReleaseEvent(XButtonEvent &ev) { } + virtual void exposeEvent(XExposeEvent &ev) { } + virtual void motionNotifyEvent(XMotionEvent &ev) { } + virtual void keyPressEvent(XKeyEvent &ev) { } + virtual void keyReleaseEvent(XKeyEvent &ev) { } + virtual void leaveNotifyEvent(XCrossingEvent &ev) { } + virtual void enterNotifyEvent(XCrossingEvent &ev) { } }; }; -- cgit v0.11.2