]> Dogcows Code - chaz/openbox/blobdiff - src/rootwindow.cc
handle map requests with the root window class
[chaz/openbox] / src / rootwindow.cc
index 4891b4fe01591b11730e9abceb9764574ba9dddf..3fccc44a12418f5a3b3b2ef630fc4f758eee2522 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "rootwindow.hh"
 #include "openbox.hh"
+#include "screen.hh"
 #include "otk/display.hh"
 
 namespace ob {
@@ -91,4 +92,20 @@ void OBRootWindow::setDesktopName(int i, const std::string &name)
 }
 
 
+void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e)
+{
+#ifdef    DEBUG
+  printf("MapRequest for 0x%lx\n", e.window);
+#endif // DEBUG
+
+  OBClient *client = Openbox::instance->findClient(e.window);
+
+  if (client) {
+    // XXX: uniconify and/or unshade the window
+  } else {
+    Openbox::instance->screen(_info->getScreenNumber())->
+      manageWindow(e.window);
+  }
+}
+
 }
This page took 0.019769 seconds and 4 git commands to generate.