diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-02 23:03:41 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-02 23:03:41 +0000 |
| commit | a77f0fb344978bb4dafd2ad4639f3de3e090bf7b (patch) | |
| tree | 0ef049d0310e504bde3cd97b441198c5f92ceec2 /src/rootwindow.cc | |
| parent | 958df7716291a1af680bf9d5432aa99f0b7cf644 (diff) | |
handle map requests with the root window class
Diffstat (limited to 'src/rootwindow.cc')
| -rw-r--r-- | src/rootwindow.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/rootwindow.cc b/src/rootwindow.cc index 4891b4fe..3fccc44a 100644 --- a/src/rootwindow.cc +++ b/src/rootwindow.cc @@ -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); + } +} + } |
