X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fxeventhandler.cc;h=c7ca3aeb81f98a39ebdf47ea63eaaee179fa0378;hb=a0cc4a7f234aaa3d7d4f1cd8de29b08aef6e13a1;hp=c31aaf9793a96093167b079c2888cbe96269cc99;hpb=d363f720a6b0d1c361bc2022d0e5fcd5a75fd04d;p=chaz%2Fopenbox diff --git a/src/xeventhandler.cc b/src/xeventhandler.cc index c31aaf97..c7ca3aeb 100644 --- a/src/xeventhandler.cc +++ b/src/xeventhandler.cc @@ -6,6 +6,11 @@ #include "otk/display.hh" #include "otk/rect.hh" +extern "C" { +#include +#include +} + namespace ob { @@ -113,6 +118,71 @@ void OBXEventHandler::configureRequest(const XConfigureRequestEvent &e) } +// XXX: put this into the OBScreen class! +static void manageWindow(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 = PropertyChangeMask | FocusChangeMask | + StructureNotifyMask; + 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(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: grab server, reparent client to the frame, ungrab server + + // XXX: if shaped, shape the frame.. + + // XXX: if on the current desktop.. + /// XMapSubwindows(otk::OBDisplay::display, FRAMEWINDOW); + XMapWindow(otk::OBDisplay::display, window); + + // handle any requested states such as shaded/maximized +} + +static void unmanageWindow(OBClient *client) +{ + Window window = client->window(); + + // we dont want a border on the client + XSetWindowBorderWidth(otk::OBDisplay::display, window,client->borderWidth()); + + // remove the window from our save set + XChangeSaveSet(otk::OBDisplay::display, window, SetModeDelete); + +} + void OBXEventHandler::mapRequest(const XMapRequestEvent &e) { #ifdef DEBUG @@ -124,8 +194,7 @@ void OBXEventHandler::mapRequest(const XMapRequestEvent &e) if (client) { // XXX: uniconify and/or unshade the window } else { - // XXX: manage the window, i.e. grab events n shit - Openbox::instance->addClient(e.window, new OBClient(e.window)); + manageWindow(e.window); } /*