]> Dogcows Code - chaz/openbox/blob - util/epist/epist.cc
implement moveWindowUp/Down/Left/Right
[chaz/openbox] / 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::changeWorkspace,
146 XKeysymToKeycode(getXDisplay(),
147 XStringToKeysym("1")),
148 Mod1Mask | ControlMask, 0));
149 _actions.push_back(Action(Action::changeWorkspace,
150 XKeysymToKeycode(getXDisplay(),
151 XStringToKeysym("2")),
152 Mod1Mask | ControlMask, 1));
153 _actions.push_back(Action(Action::changeWorkspace,
154 XKeysymToKeycode(getXDisplay(),
155 XStringToKeysym("3")),
156 Mod1Mask | ControlMask, 2));
157 _actions.push_back(Action(Action::changeWorkspace,
158 XKeysymToKeycode(getXDisplay(),
159 XStringToKeysym("4")),
160 Mod1Mask | ControlMask, 3));
161 _actions.push_back(Action(Action::sendToWorkspace,
162 XKeysymToKeycode(getXDisplay(),
163 XStringToKeysym("1")),
164 Mod1Mask | ControlMask | ShiftMask, 0));
165 _actions.push_back(Action(Action::sendToWorkspace,
166 XKeysymToKeycode(getXDisplay(),
167 XStringToKeysym("2")),
168 Mod1Mask | ControlMask | ShiftMask, 1));
169 _actions.push_back(Action(Action::sendToWorkspace,
170 XKeysymToKeycode(getXDisplay(),
171 XStringToKeysym("3")),
172 Mod1Mask | ControlMask | ShiftMask, 2));
173 _actions.push_back(Action(Action::sendToWorkspace,
174 XKeysymToKeycode(getXDisplay(),
175 XStringToKeysym("4")),
176 Mod1Mask | ControlMask | ShiftMask, 3));
177 _actions.push_back(Action(Action::execute,
178 XKeysymToKeycode(getXDisplay(),
179 XStringToKeysym("space")),
180 Mod1Mask, "rxvt"));
181 activateGrabs();
182 }
183
184
185 epist::~epist() {
186 delete _xatom;
187 }
188
189 void epist::activateGrabs() {
190
191 ScreenList::const_iterator scrit, scrend = _screens.end();
192
193 for (scrit = _screens.begin(); scrit != scrend; ++scrit) {
194 ActionList::const_iterator ait, end = _actions.end();
195
196 for(ait = _actions.begin(); ait != end; ++ait) {
197 XGrabKey(getXDisplay(), ait->keycode(), ait->modifierMask(),
198 (*scrit)->rootWindow(), False, GrabModeAsync, GrabModeAsync);
199 }
200 }
201 }
202
203
204 bool epist::handleSignal(int sig) {
205 switch (sig) {
206 case SIGHUP:
207 cout << "epist: Restarting on request.\n";
208 execvp(_argv[0], _argv);
209 execvp(basename(_argv[0]), _argv);
210 return false; // this should be unreachable
211
212 case SIGTERM:
213 case SIGINT:
214 case SIGPIPE:
215 shutdown();
216 return true;
217 }
218
219 return false;
220 }
221
222
223 void epist::process_event(XEvent *e) {
224 Window root;
225
226 if (e->xany.type == KeyPress)
227 root = e->xkey.root;
228 else
229 root = e->xany.window;
230
231 ScreenList::const_iterator it, end = _screens.end();
232 for (it = _screens.begin(); it != end; ++it) {
233 if ((*it)->rootWindow() == root) {
234 (*it)->processEvent(*e);
235 return;
236 }
237 }
238
239 // wasnt a root window, try for client windows
240 XWindow *w = findWindow(e->xany.window);
241 if (w) w->processEvent(*e);
242 }
243
244
245 void epist::addWindow(XWindow *window) {
246 _windows.insert(WindowLookupPair(window->window(), window));
247 }
248
249
250 void epist::removeWindow(XWindow *window) {
251 _windows.erase(window->window());
252 }
253
254
255 XWindow *epist::findWindow(Window window) const {
256 WindowLookup::const_iterator it = _windows.find(window);
257 if (it != _windows.end())
258 return it->second;
259
260 return 0;
261 }
This page took 0.050445 seconds and 5 git commands to generate.