2002-11-27 21:41:13 +00:00
|
|
|
// EventManager.cc
|
|
|
|
// 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"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
// $Id: EventManager.cc,v 1.2 2002/12/01 13:42:14 rathnor Exp $
|
2002-11-27 21:41:13 +00:00
|
|
|
|
|
|
|
#include "EventManager.hh"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace FbTk {
|
|
|
|
|
|
|
|
EventManager *EventManager::instance() {
|
2002-12-01 13:42:15 +00:00
|
|
|
static EventManager ev;
|
|
|
|
return &ev;
|
2002-11-27 21:41:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EventManager::~EventManager() {
|
2002-12-01 13:42:15 +00:00
|
|
|
if (m_eventhandlers.size() != 0)
|
|
|
|
cerr<<"FbTk::EventManager: Warning: unregistered eventhandlers!"<<endl;
|
2002-11-27 21:41:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EventManager::handleEvent(XEvent &ev) {
|
2002-12-01 13:42:15 +00:00
|
|
|
// find eventhandler for event window
|
|
|
|
if (m_eventhandlers.find(ev.xany.window) == m_eventhandlers.end()) {
|
|
|
|
cerr<<"Can't find window="<<ev.xany.window<<endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EventHandler *evhand = m_eventhandlers[ev.xany.window];
|
|
|
|
if (evhand == 0) {
|
|
|
|
cerr<<"FbTk::EventManager: Warning: evhand == 0!"<<endl;
|
|
|
|
return;
|
|
|
|
}
|
2002-11-27 21:41:13 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
switch (ev.xany.type) {
|
|
|
|
case KeyPress:
|
|
|
|
evhand->keyPressEvent(ev.xkey);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case KeyRelease:
|
|
|
|
evhand->keyReleaseEvent(ev.xkey);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case ButtonPress:
|
|
|
|
evhand->buttonPressEvent(ev.xbutton);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case ButtonRelease:
|
|
|
|
evhand->buttonReleaseEvent(ev.xbutton);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case MotionNotify:
|
|
|
|
evhand->motionNotifyEvent(ev.xmotion);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case Expose:
|
|
|
|
evhand->exposeEvent(ev.xexpose);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case EnterNotify:
|
|
|
|
evhand->enterNotifyEvent(ev.xcrossing);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
case LeaveNotify:
|
|
|
|
evhand->leaveNotifyEvent(ev.xcrossing);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
default:
|
|
|
|
evhand->handleEvent(ev);
|
2002-11-27 21:41:13 +00:00
|
|
|
break;
|
2002-12-01 13:42:15 +00:00
|
|
|
};
|
2002-11-27 21:41:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EventManager::registerEventHandler(EventHandler &ev, Window win) {
|
2002-12-01 13:42:15 +00:00
|
|
|
m_eventhandlers[win] = &ev;
|
2002-11-27 21:41:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EventManager::unregisterEventHandler(Window win) {
|
2002-12-01 13:42:15 +00:00
|
|
|
m_eventhandlers.erase(win);
|
2002-11-27 21:41:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|