]> Dogcows Code - chaz/openbox/blob - src/Util.cc
Configureable button mappings!
[chaz/openbox] / src / Util.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // Util.cc for Blackbox - an X11 Window manager
3 // Copyright (c) 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
4 // Copyright (c) 1997 - 2000, 2002 Brad Hughes (bhughes@tcac.net)
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining a
7 // copy of this software and associated documentation files (the "Software"),
8 // to deal in the Software without restriction, including without limitation
9 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 // and/or sell copies of the Software, and to permit persons to whom the
11 // Software is furnished to do so, subject to the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23
24 #ifdef HAVE_CONFIG_H
25 # include "../config.h"
26 #endif // HAVE_CONFIG_H
27
28 extern "C" {
29 #ifdef HAVE_STRING_H
30 #include <string.h>
31 #endif
32 #ifdef HAVE_STDLIB_H
33 #include <stdlib.h>
34 #endif
35 #ifdef TIME_WITH_SYS_TIME
36 # include <sys/time.h>
37 # include <time.h>
38 #else // !TIME_WITH_SYS_TIME
39 # ifdef HAVE_SYS_TIME_H
40 # include <sys/time.h>
41 # else // !HAVE_SYS_TIME_H
42 # include <time.h>
43 # endif // HAVE_SYS_TIME_H
44 #endif // TIME_WITH_SYS_TIME
45 #ifdef HAVE_UNISTD_H
46 #include <unistd.h>
47 #endif // HAVE_UNISTD_H
48 #if defined(HAVE_PROCESS_H) && defined(__EMX__)
49 # include <process.h>
50 #endif // HAVE_PROCESS_H __EMX__
51 }
52
53 #include <X11/Xatom.h>
54
55 #include <assert.h>
56
57 #include <algorithm>
58
59 #include "Util.hh"
60
61 using std::string;
62
63
64 void Rect::setX(int __x) {
65 _x2 += __x - _x1;
66 _x1 = __x;
67 }
68
69
70 void Rect::setY(int __y)
71 {
72 _y2 += __y - _y1;
73 _y1 = __y;
74 }
75
76
77 void Rect::setPos(int __x, int __y) {
78 _x2 += __x - _x1;
79 _x1 = __x;
80 _y2 += __y - _y1;
81 _y1 = __y;
82 }
83
84
85 void Rect::setWidth(unsigned int __w) {
86 _x2 = __w + _x1 - 1;
87 }
88
89
90 void Rect::setHeight(unsigned int __h) {
91 _y2 = __h + _y1 - 1;
92 }
93
94
95 void Rect::setSize(unsigned int __w, unsigned int __h) {
96 _x2 = __w + _x1 - 1;
97 _y2 = __h + _y1 - 1;
98 }
99
100
101 void Rect::setRect(int __x, int __y, unsigned int __w, unsigned int __h) {
102 *this = Rect(__x, __y, __w, __h);
103 }
104
105
106 void Rect::setCoords(int __l, int __t, int __r, int __b) {
107 _x1 = __l;
108 _y1 = __t;
109 _x2 = __r;
110 _y2 = __b;
111 }
112
113
114 Rect Rect::operator|(const Rect &a) const {
115 Rect b;
116
117 b._x1 = std::min(_x1, a._x1);
118 b._y1 = std::min(_y1, a._y1);
119 b._x2 = std::max(_x2, a._x2);
120 b._y2 = std::max(_y2, a._y2);
121
122 return b;
123 }
124
125
126 Rect Rect::operator&(const Rect &a) const {
127 Rect b;
128
129 b._x1 = std::max(_x1, a._x1);
130 b._y1 = std::max(_y1, a._y1);
131 b._x2 = std::min(_x2, a._x2);
132 b._y2 = std::min(_y2, a._y2);
133
134 return b;
135 }
136
137
138 bool Rect::intersects(const Rect &a) const {
139 return std::max(_x1, a._x1) <= std::min(_x2, a._x2) &&
140 std::max(_y1, a._y1) <= std::min(_y2, a._y2);
141 }
142
143
144 bool Rect::contains(int __x, int __y) const {
145 return __x >= _x1 && __x <= _x2 &&
146 __y >= _y1 && __y <= _y2;
147 }
148
149
150 string expandTilde(const string& s) {
151 if (s[0] != '~') return s;
152
153 const char* const home = getenv("HOME");
154 if (home == NULL) return s;
155
156 return string(home + s.substr(s.find('/')));
157 }
158
159
160 void bexec(const string& command, const string& displaystring) {
161 #ifndef __EMX__
162 if (! fork()) {
163 setsid();
164 int ret = putenv(const_cast<char *>(displaystring.c_str()));
165 assert(ret != -1);
166 string cmd = "exec ";
167 cmd += command;
168 execl("/bin/sh", "/bin/sh", "-c", cmd.c_str(), NULL);
169 exit(0);
170 }
171 #else // __EMX__
172 spawnlp(P_NOWAIT, "cmd.exe", "cmd.exe", "/c", command, NULL);
173 #endif // !__EMX__
174 }
175
176
177 #ifndef HAVE_BASENAME
178 string basename (const string& path) {
179 string::size_type slash = path.rfind('/');
180 if (slash == string::npos)
181 return path;
182 return path.substr(slash+1);
183 }
184 #endif // HAVE_BASENAME
185
186
187 string textPropertyToString(Display *display, XTextProperty& text_prop) {
188 string ret;
189
190 if (text_prop.value && text_prop.nitems > 0) {
191 ret = (char *) text_prop.value;
192 if (text_prop.encoding != XA_STRING) {
193 text_prop.nitems = strlen((char *) text_prop.value);
194
195 char **list;
196 int num;
197 if (XmbTextPropertyToTextList(display, &text_prop,
198 &list, &num) == Success &&
199 num > 0 && *list) {
200 ret = *list;
201 XFreeStringList(list);
202 }
203 }
204 }
205
206 return ret;
207 }
208
209
210 timeval normalizeTimeval(const timeval &tm) {
211 timeval ret = tm;
212
213 while (ret.tv_usec < 0) {
214 if (ret.tv_sec > 0) {
215 --ret.tv_sec;
216 ret.tv_usec += 1000000;
217 } else {
218 ret.tv_usec = 0;
219 }
220 }
221
222 if (ret.tv_usec >= 1000000) {
223 ret.tv_sec += ret.tv_usec / 1000000;
224 ret.tv_usec %= 1000000;
225 }
226
227 if (ret.tv_sec < 0) ret.tv_sec = 0;
228
229 return ret;
230 }
231
232
233 string itostring(unsigned long i) {
234 if (i == 0)
235 return string("0");
236
237 string tmp;
238 for (; i > 0; i /= 10)
239 tmp.insert(tmp.begin(), "0123456789"[i%10]);
240 return tmp;
241 }
242
243
244 string itostring(long i) {
245 if (i < 0) {
246 std::string tmp = itostring( (unsigned long) -i);
247 tmp.insert(tmp.begin(), '-');
248 return tmp;
249 } else
250 return itostring( (unsigned long) i);
251 }
This page took 0.04482 seconds and 5 git commands to generate.