]> Dogcows Code - chaz/openbox/blob - util/epist/epist.cc
no more segging when adding removing windows
[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 "actions.hh"
54 #include "epist.hh"
55 #include "screen.hh"
56 #include "window.hh"
57 #include "../../src/XAtom.hh"
58
59
60 epist::epist(char **argv, char *dpy_name, char *rc_file)
61 : BaseDisplay(argv[0], dpy_name) {
62
63 _argv = argv;
64
65 if (rc_file)
66 _rc_file = rc_file;
67 else
68 _rc_file = expandTilde("~/.openbox/epistrc");
69
70 _xatom = new XAtom(getXDisplay());
71
72 for (unsigned int i = 0; i < getNumberOfScreens(); ++i) {
73 screen *s = new screen(this, i);
74 if (s->managed())
75 _screens.push_back(s);
76 }
77 if (_screens.empty()) {
78 cout << "No compatible window manager found on any screens. Aborting.\n";
79 ::exit(1);
80 }
81
82 addAction(Action::nextWorkspace, ControlMask, "Tab");
83 addAction(Action::prevWorkspace, ControlMask | ShiftMask, "Tab");
84 addAction(Action::nextWindow, Mod1Mask, "Tab");
85 addAction(Action::prevWindow, Mod1Mask | ShiftMask, "Tab");
86 addAction(Action::toggleshade, Mod1Mask, "F5");
87 addAction(Action::close, Mod1Mask, "F4");
88 addAction(Action::nextWindowOnAllWorkspaces, Mod1Mask | ControlMask, "Tab");
89 addAction(Action::prevWindowOnAllWorkspaces,
90 Mod1Mask | ShiftMask | ControlMask, "Tab");
91 addAction(Action::raise, Mod1Mask, "Up");
92 addAction(Action::lower, Mod1Mask, "Down");
93 addAction(Action::moveWindowUp, Mod1Mask | ControlMask, "Up", 1);
94 addAction(Action::moveWindowDown, Mod1Mask | ControlMask, "Down", 1);
95 addAction(Action::moveWindowLeft, Mod1Mask | ControlMask, "Left", 1);
96 addAction(Action::moveWindowRight, Mod1Mask | ControlMask, "Right", 1);
97 addAction(Action::resizeWindowHeight, ShiftMask | Mod1Mask | ControlMask,
98 "Up", -1);
99 addAction(Action::resizeWindowHeight, ShiftMask | Mod1Mask | ControlMask,
100 "Down", 1);
101 addAction(Action::resizeWindowWidth, ShiftMask | Mod1Mask | ControlMask,
102 "Left", -1);
103 addAction(Action::resizeWindowWidth, ShiftMask | Mod1Mask | ControlMask,
104 "Right", 1);
105 addAction(Action::iconify, Mod1Mask | ControlMask, "I");
106 addAction(Action::toggleomnipresent, Mod1Mask | ControlMask, "O");
107 addAction(Action::toggleMaximizeHorizontal, ShiftMask | Mod1Mask, "X");
108 addAction(Action::toggleMaximizeVertical, ShiftMask | ControlMask, "X");
109 addAction(Action::toggleMaximizeFull, Mod1Mask | ControlMask, "X");
110 addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "1", 0);
111 addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "2", 1);
112 addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "3", 2);
113 addAction(Action::changeWorkspace, Mod1Mask | ControlMask, "4", 3);
114 addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
115 "1", 0);
116 addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
117 "2", 1);
118 addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
119 "3", 2);
120 addAction(Action::sendToWorkspace, Mod1Mask | ControlMask | ShiftMask,
121 "4", 3);
122 addAction(Action::execute, Mod1Mask | ControlMask, "Escape",
123 "sleep 1 && xset dpms force off");
124 addAction(Action::execute, Mod1Mask, "space",
125 "rxvt");
126
127 activateGrabs();
128 }
129
130
131 epist::~epist() {
132 delete _xatom;
133 }
134
135 void epist::activateGrabs() {
136
137 ScreenList::const_iterator scrit, scrend = _screens.end();
138
139 for (scrit = _screens.begin(); scrit != scrend; ++scrit) {
140 ActionList::const_iterator ait, end = _actions.end();
141
142 for(ait = _actions.begin(); ait != end; ++ait) {
143 (*scrit)->grabKey(ait->keycode(), ait->modifierMask());
144 }
145 }
146 }
147
148
149 bool epist::handleSignal(int sig) {
150 switch (sig) {
151 case SIGHUP:
152 cout << "epist: Restarting on request.\n";
153 execvp(_argv[0], _argv);
154 execvp(basename(_argv[0]), _argv);
155 return false; // this should be unreachable
156
157 case SIGTERM:
158 case SIGINT:
159 case SIGPIPE:
160 shutdown();
161 return true;
162 }
163
164 return false;
165 }
166
167
168 void epist::process_event(XEvent *e) {
169 ScreenList::const_iterator it, end = _screens.end();
170 for (it = _screens.begin(); it != end; ++it) {
171 if ((*it)->rootWindow() == e->xany.window) {
172 (*it)->processEvent(*e);
173 return;
174 }
175 }
176
177 // wasnt a root window, try for client windows
178 XWindow *w = findWindow(e->xany.window);
179 if (w) w->processEvent(*e);
180 }
181
182
183 void epist::addWindow(XWindow *window) {
184 _windows.insert(WindowLookupPair(window->window(), window));
185 }
186
187
188 void epist::removeWindow(XWindow *window) {
189 _windows.erase(window->window());
190 }
191
192
193 XWindow *epist::findWindow(Window window) const {
194 WindowLookup::const_iterator it = _windows.find(window);
195 if (it != _windows.end())
196 return it->second;
197
198 return 0;
199 }
200
201 void epist::addAction(Action::ActionType act, unsigned int modifiers,
202 string key, int number) {
203 _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(),
204 XStringToKeysym(key.c_str())),
205 modifiers, number));
206 }
207
208
209 void epist::addAction(Action::ActionType act, unsigned int modifiers,
210 string key, std::string str) {
211 _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(),
212 XStringToKeysym(key.c_str())),
213 modifiers, str));
214 }
This page took 0.04246 seconds and 4 git commands to generate.