X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Feventhandler.hh;h=f2457568d81ada4fd9e46cde254948e2fd5f320c;hb=0ebf6a17547f75c1fa961acbf3fdd59c0e494d22;hp=96bdff94432f2721f5eadef258848d2c7f5fda34;hpb=345d957e1ea577480f807b892b73c3f52fe913d2;p=chaz%2Fopenbox diff --git a/otk/eventhandler.hh b/otk/eventhandler.hh index 96bdff94..f2457568 100644 --- a/otk/eventhandler.hh +++ b/otk/eventhandler.hh @@ -1,3 +1,4 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- #ifndef __eventhandler__hh #define __eventhandler__hh @@ -16,7 +17,7 @@ extern "C" { namespace otk { -class OtkEventHandler { +class EventHandler { public: //! Dispatches events to one of the other handlers based on their type. virtual void handle(const XEvent &e); @@ -134,14 +135,14 @@ public: virtual void xkbHandler(const XkbEvent &) {} #endif // XKB - virtual ~OtkEventHandler(); + virtual ~EventHandler(); protected: - /*! Constructor for the OtkEventHandler class. - This is protected so that OtkEventHandlers can't be instantiated on their + /*! Constructor for the EventHandler class. + This is protected so that EventHandlers can't be instantiated on their own. */ - OtkEventHandler(); + EventHandler(); private: };