]> Dogcows Code - chaz/openbox/blobdiff - util/epist/screen.cc
add iconifying
[chaz/openbox] / util / epist / screen.cc
index 7c4294a07607fc07d751d0e4df77ee30eedb485f..d8d8edcaa5de748451d4cfeee39417b41bce42b0 100644 (file)
@@ -175,10 +175,22 @@ void screen::handleKeypress(const XEvent &e) {
         XWindow *window = *_active;
 
         switch (it->type()) {
+        case Action::iconify:
+          window->iconify();
+          return;
+
         case Action::close:
           window->close();
           return;
 
+        case Action::raise:
+          window->raise();
+          return;
+
+        case Action::lower:
+          window->lower();
+          return;
+
         case Action::toggleshade:
           window->shade(! window->shaded());
           return;
This page took 0.019219 seconds and 4 git commands to generate.