]> icculus.org git repositories - dana/openbox.git/blob - util/epist/epist.cc
implement toggleMaximize(Vert|Horz|Full)
[dana/openbox.git] / util / epist / epist.cc
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // epist.cc for Epistophy - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 #ifdef    HAVE_CONFIG_H
24 #  include "../../config.h"
25 #endif // HAVE_CONFIG_H
26
27 extern "C" {
28 #ifdef    HAVE_UNISTD_H
29 #  include <sys/types.h>
30 #  include <unistd.h>
31 #endif // HAVE_UNISTD_H
32
33 #ifdef    HAVE_STDLIB_H
34 #  include <stdlib.h>
35 #endif // HAVE_STDLIB_H
36
37 #ifdef    HAVE_SIGNAL_H
38 #  include <signal.h>
39 #endif // HAVE_SIGNAL_H
40
41 #ifdef    HAVE_LIBGEN_H
42 #  include <libgen.h>
43 #endif // HAVE_LIBGEN_H
44 }
45
46 #include <iostream>
47 #include <string>
48
49 using std::cout;
50 using std::endl;
51 using std::string;
52
53 #include "epist.hh"
54 #include "screen.hh"
55 #include "window.hh"
56 #include "../../src/XAtom.hh"
57
58
59 epist::epist(char **argv, char *dpy_name, char *rc_file)
60   : BaseDisplay(argv[0], dpy_name) {
61
62   _argv = argv;
63
64   if (rc_file)
65     _rc_file = rc_file;
66   else
67     _rc_file = expandTilde("~/.openbox/epistrc");
68
69   _xatom = new XAtom(getXDisplay());
70
71   for (unsigned int i = 0; i < getNumberOfScreens(); ++i) {
72     screen *s = new screen(this, i);
73     if (s->managed())
74       _screens.push_back(s);
75   }
76   if (_screens.empty()) {
77     cout << "No compatible window manager found on any screens. Aborting.\n";
78     ::exit(1);
79   }
80
81   _actions.push_back(Action(Action::nextWorkspace,
82                             XKeysymToKeycode(getXDisplay(),
83                                              XStringToKeysym("Tab")),
84                             ControlMask));
85   _actions.push_back(Action(Action::prevWorkspace,
86                            XKeysymToKeycode(getXDisplay(),
87                                              XStringToKeysym("Tab")),
88                            ControlMask | ShiftMask));
89   _actions.push_back(Action(Action::toggleshade,
90                             XKeysymToKeycode(getXDisplay(),
91                                              XStringToKeysym("F5")),
92                             Mod1Mask));
93   _actions.push_back(Action(Action::close,
94                             XKeysymToKeycode(getXDisplay(),
95                                              XStringToKeysym("F4")),
96                             Mod1Mask));
97   _actions.push_back(Action(Action::nextWindow,
98                             XKeysymToKeycode(getXDisplay(),
99                                              XStringToKeysym("Tab")),
100                             Mod1Mask));
101   _actions.push_back(Action(Action::prevWindow,
102                            XKeysymToKeycode(getXDisplay(),
103                                              XStringToKeysym("Tab")),
104                            Mod1Mask | ShiftMask));
105   _actions.push_back(Action(Action::nextWindowOnAllWorkspaces,
106                             XKeysymToKeycode(getXDisplay(),
107                                              XStringToKeysym("Tab")),
108                             Mod1Mask | ControlMask));
109   _actions.push_back(Action(Action::prevWindowOnAllWorkspaces,
110                            XKeysymToKeycode(getXDisplay(),
111                                              XStringToKeysym("Tab")),
112                            Mod1Mask | ShiftMask | ControlMask));
113   _actions.push_back(Action(Action::raise,
114                            XKeysymToKeycode(getXDisplay(),
115                                              XStringToKeysym("Up")),
116                            Mod1Mask));
117   _actions.push_back(Action(Action::lower,
118                            XKeysymToKeycode(getXDisplay(),
119                                              XStringToKeysym("Down")),
120                            Mod1Mask));
121   _actions.push_back(Action(Action::moveWindowUp,
122                            XKeysymToKeycode(getXDisplay(),
123                                              XStringToKeysym("Up")),
124                            Mod1Mask | ControlMask, 1));
125   _actions.push_back(Action(Action::moveWindowDown,
126                            XKeysymToKeycode(getXDisplay(),
127                                              XStringToKeysym("Down")),
128                            Mod1Mask | ControlMask, 1));
129   _actions.push_back(Action(Action::moveWindowLeft,
130                            XKeysymToKeycode(getXDisplay(),
131                                              XStringToKeysym("Left")),
132                            Mod1Mask | ControlMask, 1));
133   _actions.push_back(Action(Action::moveWindowRight,
134                            XKeysymToKeycode(getXDisplay(),
135                                              XStringToKeysym("Right")),
136                            Mod1Mask | ControlMask, 1));
137   _actions.push_back(Action(Action::iconify,
138                            XKeysymToKeycode(getXDisplay(),
139                                              XStringToKeysym("I")),
140                            Mod1Mask | ControlMask));
141   _actions.push_back(Action(Action::toggleomnipresent,
142                            XKeysymToKeycode(getXDisplay(),
143                                              XStringToKeysym("O")),
144                            Mod1Mask | ControlMask));
145   _actions.push_back(Action(Action::toggleMaximizeHorizontal,
146                            XKeysymToKeycode(getXDisplay(),
147                                              XStringToKeysym("X")),
148                            ShiftMask | Mod1Mask));
149   _actions.push_back(Action(Action::toggleMaximizeVertical,
150                            XKeysymToKeycode(getXDisplay(),
151                                              XStringToKeysym("X")),
152                            ShiftMask | ControlMask));
153   _actions.push_back(Action(Action::toggleMaximizeFull,
154                            XKeysymToKeycode(getXDisplay(),
155                                              XStringToKeysym("X")),
156                            Mod1Mask | ControlMask));
157   _actions.push_back(Action(Action::changeWorkspace,
158                            XKeysymToKeycode(getXDisplay(),
159                                              XStringToKeysym("1")),
160                            Mod1Mask | ControlMask, 0));
161   _actions.push_back(Action(Action::changeWorkspace,
162                            XKeysymToKeycode(getXDisplay(),
163                                              XStringToKeysym("2")),
164                            Mod1Mask | ControlMask, 1));
165   _actions.push_back(Action(Action::changeWorkspace,
166                            XKeysymToKeycode(getXDisplay(),
167                                              XStringToKeysym("3")),
168                            Mod1Mask | ControlMask, 2));
169   _actions.push_back(Action(Action::changeWorkspace,
170                            XKeysymToKeycode(getXDisplay(),
171                                              XStringToKeysym("4")),
172                            Mod1Mask | ControlMask, 3));
173   _actions.push_back(Action(Action::sendToWorkspace,
174                            XKeysymToKeycode(getXDisplay(),
175                                              XStringToKeysym("1")),
176                            Mod1Mask | ControlMask | ShiftMask, 0));
177   _actions.push_back(Action(Action::sendToWorkspace,
178                            XKeysymToKeycode(getXDisplay(),
179                                              XStringToKeysym("2")),
180                            Mod1Mask | ControlMask | ShiftMask, 1));
181   _actions.push_back(Action(Action::sendToWorkspace,
182                            XKeysymToKeycode(getXDisplay(),
183                                              XStringToKeysym("3")),
184                            Mod1Mask | ControlMask | ShiftMask, 2));
185   _actions.push_back(Action(Action::sendToWorkspace,
186                            XKeysymToKeycode(getXDisplay(),
187                                              XStringToKeysym("4")),
188                            Mod1Mask | ControlMask | ShiftMask, 3));
189   _actions.push_back(Action(Action::execute,
190                            XKeysymToKeycode(getXDisplay(),
191                                              XStringToKeysym("space")),
192                            Mod1Mask, "rxvt"));
193   activateGrabs();
194 }
195
196
197 epist::~epist() {
198   delete _xatom;
199 }
200
201 void epist::activateGrabs() {
202
203   ScreenList::const_iterator scrit, scrend = _screens.end();
204   
205   for (scrit = _screens.begin(); scrit != scrend; ++scrit) {
206     ActionList::const_iterator ait, end = _actions.end();
207
208     for(ait = _actions.begin(); ait != end; ++ait) {
209       XGrabKey(getXDisplay(), ait->keycode(), ait->modifierMask(),
210                (*scrit)->rootWindow(), False, GrabModeAsync, GrabModeAsync);
211     }
212   }
213 }
214
215
216 bool epist::handleSignal(int sig) {
217   switch (sig) {
218   case SIGHUP:
219     cout << "epist: Restarting on request.\n";
220     execvp(_argv[0], _argv);
221     execvp(basename(_argv[0]), _argv);
222     return false;  // this should be unreachable
223
224   case SIGTERM:
225   case SIGINT:
226   case SIGPIPE:
227     shutdown();
228     return true;
229   }
230
231   return false;
232 }
233
234
235 void epist::process_event(XEvent *e) {
236   Window root;
237
238   if (e->xany.type == KeyPress)
239     root = e->xkey.root;
240   else
241     root = e->xany.window;
242   
243   ScreenList::const_iterator it, end = _screens.end();
244   for (it = _screens.begin(); it != end; ++it) {
245     if ((*it)->rootWindow() == root) {
246       (*it)->processEvent(*e);
247       return;
248     }
249   }
250
251   // wasnt a root window, try for client windows
252   XWindow *w = findWindow(e->xany.window);
253   if (w) w->processEvent(*e);
254 }
255   
256
257 void epist::addWindow(XWindow *window) {
258   _windows.insert(WindowLookupPair(window->window(), window));
259 }
260
261
262 void epist::removeWindow(XWindow *window) {
263   _windows.erase(window->window());
264 }
265
266
267 XWindow *epist::findWindow(Window window) const {
268   WindowLookup::const_iterator it = _windows.find(window);
269   if (it != _windows.end())
270     return it->second;
271
272   return 0;
273 }