X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fxeventhandler.cc;h=5d5273779200eb1c4aaa27bbba1c8e5f8fb5b1eb;hb=9e0ae7ecee94a0cc467d90926428fdc84f9a0339;hp=ad7d7e27f22356c85aa6d462429aa5383f8f32cc;hpb=f257e4b0792e07e11a56828d4769f618e35df105;p=chaz%2Fopenbox diff --git a/src/xeventhandler.cc b/src/xeventhandler.cc index ad7d7e27..5d527377 100644 --- a/src/xeventhandler.cc +++ b/src/xeventhandler.cc @@ -1,16 +1,17 @@ // -*- mode: C++; indent-tabs-mode: nil; -*- +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif + #include "xeventhandler.hh" #include "client.hh" -#include "frame.hh" #include "openbox.hh" +#include "screen.hh" +#include "frame.hh" #include "otk/display.hh" #include "otk/rect.hh" -// XXX: REMOVE THIS SOON!!#! -#include "blackbox.hh" -#include "screen.hh" - extern "C" { #include #include @@ -123,87 +124,6 @@ void OBXEventHandler::configureRequest(const XConfigureRequestEvent &e) } -// XXX: put this into the OBScreen or OBClient class! -void OBXEventHandler::manageWindow(int screen, Window window) -{ - OBClient *client = 0; - XWMHints *wmhint; - XSetWindowAttributes attrib_set; - - // XXX: manage the window, i.e. grab events n shit - - // is the window a docking app - if ((wmhint = XGetWMHints(otk::OBDisplay::display, window))) { - if ((wmhint->flags & StateHint) && - wmhint->initial_state == WithdrawnState) { - //slit->addClient(w); // XXX: make dock apps work! - XFree(wmhint); - return; - } - XFree(wmhint); - } - - // choose the events we want to receive on the CLIENT window - attrib_set.event_mask = OBClient::event_mask; - attrib_set.do_not_propagate_mask = ButtonPressMask | ButtonReleaseMask | - ButtonMotionMask; - XChangeWindowAttributes(otk::OBDisplay::display, window, - CWEventMask|CWDontPropagate, &attrib_set); - - // create the OBClient class, which gets all of the hints on the window - Openbox::instance->addClient(window, client = new OBClient(screen, window)); - - // we dont want a border on the client - XSetWindowBorderWidth(otk::OBDisplay::display, window, 0); - - // specify that if we exit, the window should not be destroyed and should be - // reparented back to root automatically - XChangeSaveSet(otk::OBDisplay::display, window, SetModeInsert); - - if (!client->positionRequested()) { - // XXX: position the window intelligenty - } - - // XXX: store a style somewheres cooler!! - otk::Style *style = ((Blackbox*)Openbox::instance)-> - searchScreen(RootWindow(otk::OBDisplay::display, screen))-> - getWindowStyle(); - client->frame = new OBFrame(client, style); - - // XXX: if on the current desktop.. - XMapWindow(otk::OBDisplay::display, client->frame->window()); - - // XXX: handle any requested states such as shaded/maximized -} - -// XXX: move this to the OBScreen or OBClient class! -void OBXEventHandler::unmanageWindow(OBClient *client) -{ - OBFrame *frame = client->frame; - - // XXX: pass around focus if this window was focused - - // remove the window from our save set - XChangeSaveSet(otk::OBDisplay::display, client->window(), SetModeDelete); - - // we dont want events no more - XSelectInput(otk::OBDisplay::display, client->window(), NoEventMask); - - XUnmapWindow(otk::OBDisplay::display, frame->window()); - - // we dont want a border on the client - XSetWindowBorderWidth(otk::OBDisplay::display, client->window(), - client->borderWidth()); - - // remove the client class from the search list - Openbox::instance->removeClient(client->window()); - - delete client->frame; - client->frame = 0; - - delete client; -} - void OBXEventHandler::mapRequest(const XMapRequestEvent &e) { #ifdef DEBUG @@ -252,7 +172,7 @@ void OBXEventHandler::mapRequest(const XMapRequestEvent &e) assert(screen < ScreenCount(otk::OBDisplay::display)); - manageWindow(screen, e.window); + Openbox::instance->screen(screen)->manageWindow(e.window); } /* @@ -311,8 +231,11 @@ void OBXEventHandler::unmapNotify(const XUnmapEvent &e) { OBClient *client = Openbox::instance->findClient(e.window); if (!client) return; - - unmanageWindow(client); + + if (client->ignore_unmaps == 0) + Openbox::instance->screen(client->screen())->unmanageWindow(client); + else + client->ignore_unmaps--; } @@ -323,7 +246,7 @@ void OBXEventHandler::destroyNotify(const XDestroyWindowEvent &e) OBClient *client = Openbox::instance->findClient(e.window); if (!client) return; - unmanageWindow(client); + Openbox::instance->screen(client->screen())->unmanageWindow(client); } @@ -506,11 +429,14 @@ void OBXEventHandler::focusOut(const XFocusChangeEvent &e) #ifdef SHAPE void OBXEventHandler::shapeEvent(const XShapeEvent &e) { - XShapeEvent *shape_event = (XShapeEvent *) e; - BlackboxWindow *win = searchWindow(e->xany.window); + printf("ShapeEvent\n"); + if (e.kind != ShapeBounding) return; - if (win && shape_event->kind == ShapeBounding) - win->shapeEvent(shape_event); + OBClient *client = Openbox::instance->findClient(e.window); + if (!client) return; + + client->update(e); + client->frame->update(); } #endif // SHAPE @@ -611,6 +537,7 @@ void OBXEventHandler::handle(const XEvent &e) // These types of XEvent's can be bound to actions by the user, and so end // up getting passed off to the OBBindingMapper class at some point + // IOW: THESE WILL HAVE GUILE HOOKS case ButtonPress: buttonPress(e.xbutton); break; @@ -679,7 +606,7 @@ void OBXEventHandler::handle(const XEvent &e) default: #ifdef SHAPE if (e.type == otk::OBDisplay::shapeEventBase()) - shapeEvent(e); + shapeEvent((*(XShapeEvent*)&e)); #endif // SHAPE break;