fluxbox/src/FbTk/EventManager.cc

136 lines
3.7 KiB
C++
Raw Normal View History

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,
2003-02-23 14:30:18 +00:00
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2002-11-27 21:41:13 +00:00
// 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.
2003-08-23 15:44:06 +00:00
// $Id: EventManager.cc,v 1.7 2003/08/23 15:44:06 fluxgen Exp $
2002-11-27 21:41:13 +00:00
#include "EventManager.hh"
2002-12-03 17:06:49 +00:00
#include "FbWindow.hh"
2003-08-23 15:44:06 +00:00
#include "App.hh"
2002-11-27 21:41:13 +00:00
#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) {
2003-08-23 15:44:06 +00:00
dispatch(ev.xany.window, ev);
}
void EventManager::add(EventHandler &ev, const FbWindow &win) {
registerEventHandler(ev, win.window());
}
void EventManager::addParent(EventHandler &ev, const FbWindow &win) {
if (win.window() != 0)
m_parent[win.window()] = &ev;
}
void EventManager::remove(const FbWindow &win) {
unregisterEventHandler(win.window());
}
void EventManager::registerEventHandler(EventHandler &ev, Window win) {
if (win != None)
m_eventhandlers[win] = &ev;
}
void EventManager::unregisterEventHandler(Window win) {
if (win != None) {
m_eventhandlers.erase(win);
m_parent.erase(win);
2002-12-01 13:42:15 +00:00
}
2003-08-23 15:44:06 +00:00
}
void EventManager::dispatch(Window win, XEvent &ev, bool parent) {
EventHandler *evhand = 0;
if (parent)
evhand = m_parent[win];
else
evhand = m_eventhandlers[win];
if (evhand == 0)
2002-12-01 13:42:15 +00:00
return;
2003-08-23 15:44:06 +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
2003-08-23 15:44:06 +00:00
// find out which window is the parent and
// dispatch event
Window root, parent_win, *children = 0;
unsigned int num_children;
if (XQueryTree(FbTk::App::instance()->display(), win,
&root, &parent_win, &children, &num_children) != 0 &&
parent_win != 0 &&
parent_win != root) {
2002-12-03 17:06:49 +00:00
2003-08-23 15:44:06 +00:00
if (children != 0)
XFree(children);
2002-12-03 17:06:49 +00:00
2003-08-23 15:44:06 +00:00
if (m_parent[parent_win] == 0)
return;
// dispatch event to parent
dispatch(parent_win, ev, true);
}
2002-11-27 21:41:13 +00:00
}
2003-08-23 15:44:06 +00:00
}; // end namespace FbTk