]> Dogcows Code - chaz/openbox/blobdiff - util/epist/epist.cc
much nicer hardcoded bindings! :)
[chaz/openbox] / util / epist / epist.cc
index 474d8fe8cdbcd9030e5f45d2d13fd137a1da1f76..29116da3239caea4d521b63a0d077dc1d768ca72 100644 (file)
@@ -1,5 +1,5 @@
 // -*- mode: C++; indent-tabs-mode: nil; -*-
-// epist.cc for Epistory - a key handler for NETWM/EWMH window managers.
+// epist.cc for Epistophy - a key handler for NETWM/EWMH window managers.
 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
 //
 // Permission is hereby granted, free of charge, to any person obtaining a
@@ -38,9 +38,9 @@ extern "C" {
 #  include <signal.h>
 #endif // HAVE_SIGNAL_H
 
-/*#ifdef    HAVE_LIBGEN_H
+#ifdef    HAVE_LIBGEN_H
 #  include <libgen.h>
-#endif // HAVE_LIBGEN_H*/
+#endif // HAVE_LIBGEN_H
 }
 
 #include <iostream>
@@ -51,7 +51,6 @@ using std::endl;
 using std::string;
 
 #include "epist.hh"
-#include "process.hh"
 #include "screen.hh"
 #include "window.hh"
 #include "../../src/XAtom.hh"
@@ -59,7 +58,7 @@ using std::string;
 
 epist::epist(char **argv, char *dpy_name, char *rc_file)
   : BaseDisplay(argv[0], dpy_name) {
-
+    
   _argv = argv;
 
   if (rc_file)
@@ -69,13 +68,62 @@ epist::epist(char **argv, char *dpy_name, char *rc_file)
 
   _xatom = new XAtom(getXDisplay());
 
-  screen *s = new screen(this, DefaultScreen(getXDisplay()));
-  if (s->managed())
-    _screens.push_back(s);
+  for (unsigned int i = 0; i < getNumberOfScreens(); ++i) {
+    screen *s = new screen(this, i);
+    if (s->managed())
+      _screens.push_back(s);
+  }
   if (_screens.empty()) {
     cout << "No compatible window manager found on any screens. Aborting.\n";
     ::exit(1);
   }
+
+  addAction(Action::nextWorkspace, ControlMask, "Tab");
+  addAction(Action::prevWorkspace, ControlMask | ShiftMask, "Tab");
+  addAction(Action::nextWindow, Mod1Mask, "Tab");
+  addAction(Action::prevWindow, Mod1Mask | ShiftMask, "Tab");
+  addAction(Action::toggleshade, Mod1Mask, "F5");
+  addAction(Action::close, Mod1Mask, "F4");
+  addAction(Action::nextWindowOnAllWorkspaces, Mod1Mask | ControlMask, "Tab");
+  addAction(Action::prevWindowOnAllWorkspaces,
+            Mod1Mask | ShiftMask | ControlMask, "Tab");
+  addAction(Action::raise, Mod1Mask, "Up");
+  addAction(Action::lower, Mod1Mask, "Down");
+  addAction(Action::moveWindowUp, Mod1Mask | ControlMask, "Up", 1);
+  addAction(Action::moveWindowDown, Mod1Mask | ControlMask, "Down", 1);
+  addAction(Action::moveWindowLeft, Mod1Mask | ControlMask, "Left", 1);
+  addAction(Action::moveWindowRight, Mod1Mask | ControlMask, "Right", 1);
+  addAction(Action::resizeWindowHeight, ShiftMask | Mod1Mask | ControlMask,
+            "Up", -1);
+  addAction(Action::resizeWindowHeight, ShiftMask | Mod1Mask | ControlMask,
+            "Down", 1);
+  addAction(Action::resizeWindowWidth, ShiftMask | Mod1Mask | ControlMask,
+            "Left", -1);
+  addAction(Action::resizeWindowWidth, ShiftMask | Mod1Mask | ControlMask,
+            "Right", 1);
+  addAction(Action::iconify, Mod1Mask | ControlMask, "I");
+  addAction(Action::toggleomnipresent, Mod1Mask | ControlMask, "O");
+  addAction(Action::toggleMaximizeHorizontal, ShiftMask | Mod1Mask, "X");
+  addAction(Action::toggleMaximizeVertical, ShiftMask | ControlMask, "X");
+  addAction(Action::toggleMaximizeFull, Mod1Mask | ControlMask, "X");
+  addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "1", 0);
+  addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "2", 1);
+  addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "3", 2);
+  addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "4", 3);
+  addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
+            "1", 0);
+  addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
+            "2", 1);
+  addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
+            "3", 2);
+  addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
+            "4", 3);
+  addAction(Action::execute, Mod1Mask | ControlMask, "Escape",
+            "sleep 1 && xset dpms force off");
+  addAction(Action::execute, Mod1Mask, "space",
+            "rxvt");
+
+  activateGrabs();
 }
 
 
@@ -83,6 +131,19 @@ epist::~epist() {
   delete _xatom;
 }
 
+void epist::activateGrabs() {
+
+  ScreenList::const_iterator scrit, scrend = _screens.end();
+  
+  for (scrit = _screens.begin(); scrit != scrend; ++scrit) {
+    ActionList::const_iterator ait, end = _actions.end();
+
+    for(ait = _actions.begin(); ait != end; ++ait) {
+      (*scrit)->grabKey(ait->keycode(), ait->modifierMask());
+    }
+  }
+}
+
 
 bool epist::handleSignal(int sig) {
   switch (sig) {
@@ -104,16 +165,9 @@ bool epist::handleSignal(int sig) {
 
 
 void epist::process_event(XEvent *e) {
-  Window root;
-
-  if (e->xany.type == KeyPress)
-    root = e->xkey.root;
-  else
-    root = e->xany.window;
-  
   ScreenList::const_iterator it, end = _screens.end();
   for (it = _screens.begin(); it != end; ++it) {
-    if ((*it)->rootWindow() == root) {
+    if ((*it)->rootWindow() == e->xany.window) {
       (*it)->processEvent(*e);
       return;
     }
@@ -142,3 +196,18 @@ XWindow *epist::findWindow(Window window) const {
 
   return 0;
 }
+
+void epist::addAction(Action::ActionType act, unsigned int modifiers,
+                      string key, int number) {
+  _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(),
+                                                  XStringToKeysym(key.c_str())),
+                            modifiers, number));
+}
+
+
+void epist::addAction(Action::ActionType act, unsigned int modifiers,
+                      string key, std::string str) {
+  _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(),
+                                                  XStringToKeysym(key.c_str())),
+                            modifiers, str));
+}
This page took 0.022949 seconds and 4 git commands to generate.