]> Dogcows Code - chaz/openbox/blob - util/bsetroot.cc
imprted new tools from bb-cvs
[chaz/openbox] / util / bsetroot.cc
1 // -*- mode++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // Window.cc for Blackbox - an X11 Window manager
3 // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh at debian.org>
4 // Copyright (c) 1997 - 2000, 2002 Brad Hughes <bhughes at trolltech.com>
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_STDLIB_H
30 # include <stdlib.h>
31 #endif // HAVE_STDLIB_H
32
33 #ifdef HAVE_STRING_H
34 # include <string.h>
35 #endif // HAVE_STRING_H
36
37 #ifdef HAVE_STDIO_H
38 # include <stdio.h>
39 #endif // HAVE_STDIO_H
40 }
41
42 #include "../src/i18n.hh"
43 #include "../src/GCCache.hh"
44 #include "../src/Texture.hh"
45 #include "../src/Util.hh"
46 #include "bsetroot.hh"
47
48
49 I18n i18n;
50
51 bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
52 : BaseDisplay(argv[0], dpy_name)
53 {
54 grad = fore = back = (char *) 0;
55
56 bool mod = False, sol = False, grd = False;
57 int mod_x = 0, mod_y = 0;
58
59 for (int i = 1; i < argc; i++) {
60 if (! strcmp("-help", argv[i])) {
61 usage();
62 } else if ((! strcmp("-fg", argv[i])) ||
63 (! strcmp("-foreground", argv[i])) ||
64 (! strcmp("-from", argv[i]))) {
65 if ((++i) >= argc) usage(1);
66
67 fore = argv[i];
68 } else if ((! strcmp("-bg", argv[i])) ||
69 (! strcmp("-background", argv[i])) ||
70 (! strcmp("-to", argv[i]))) {
71 if ((++i) >= argc) usage(1);
72
73 back = argv[i];
74 } else if (! strcmp("-solid", argv[i])) {
75 if ((++i) >= argc) usage(1);
76
77 fore = argv[i];
78 sol = True;
79 } else if (! strcmp("-mod", argv[i])) {
80 if ((++i) >= argc) usage();
81
82 mod_x = atoi(argv[i]);
83
84 if ((++i) >= argc) usage();
85
86 mod_y = atoi(argv[i]);
87
88 if (mod_x < 1) mod_x = 1;
89 if (mod_y < 1) mod_y = 1;
90
91 mod = True;
92 } else if (! strcmp("-gradient", argv[i])) {
93 if ((++i) >= argc) usage();
94
95 grad = argv[i];
96 grd = True;
97 } else if (! strcmp("-display", argv[i])) {
98 // -display passed through tests ealier... we just skip it now
99 i++;
100 } else
101 usage();
102 }
103
104 if ((mod + sol + grd) != True) {
105 fprintf(stderr,
106 i18n(bsetrootSet, bsetrootMustSpecify,
107 "%s: error: must specify one of: -solid, -mod, -gradient\n"),
108 getApplicationName());
109
110 usage(2);
111 }
112
113 img_ctrl = new BImageControl*[getNumberOfScreens()];
114 for (unsigned int s = 0; s < getNumberOfScreens(); ++s)
115 img_ctrl[s] = new BImageControl(this, getScreenInfo(s), True);
116
117 if (sol && fore) solid();
118 else if (mod && mod_x && mod_y && fore && back) modula(mod_x, mod_y);
119 else if (grd && grad && fore && back) gradient();
120 else usage();
121 }
122
123
124 bsetroot::~bsetroot(void) {
125 XSetCloseDownMode(getXDisplay(), RetainPermanent);
126
127 XKillClient(getXDisplay(), AllTemporary);
128
129 std::for_each(img_ctrl, img_ctrl + getNumberOfScreens(), PointerAssassin());
130
131 delete [] img_ctrl;
132 }
133
134
135 // adapted from wmsetbg
136 void bsetroot::setPixmapProperty(int screen, Pixmap pixmap) {
137 static Atom rootpmap_id = None, esetroot_id = None;
138 Atom type;
139 int format;
140 unsigned long length, after;
141 unsigned char *data;
142 const ScreenInfo *screen_info = getScreenInfo(screen);
143
144 if (rootpmap_id == None) {
145 rootpmap_id = XInternAtom(getXDisplay(), "_XROOTPMAP_ID", False);
146 esetroot_id = XInternAtom(getXDisplay(), "ESETROOT_PMAP_ID", False);
147 }
148
149 XGrabServer(getXDisplay());
150
151 /* Clear out the old pixmap */
152 XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(),
153 rootpmap_id, 0L, 1L, False, XA_PIXMAP,
154 &type, &format, &length, &after, &data);
155 if (type == XA_PIXMAP && format == 32) {
156 XKillClient(getXDisplay(), *((Pixmap *) data));
157 XSync(getXDisplay(), False);
158 XFree(data);
159 }
160
161 if (pixmap) {
162 XChangeProperty(getXDisplay(), screen_info->getRootWindow(),
163 rootpmap_id, XA_PIXMAP, 32, PropModeReplace,
164 (unsigned char *) &pixmap, 1);
165 XChangeProperty(getXDisplay(), screen_info->getRootWindow(),
166 esetroot_id, XA_PIXMAP, 32, PropModeReplace,
167 (unsigned char *) &pixmap, 1);
168 } else {
169 XDeleteProperty(getXDisplay(), screen_info->getRootWindow(),
170 rootpmap_id);
171 XDeleteProperty(getXDisplay(), screen_info->getRootWindow(),
172 esetroot_id);
173 }
174
175 XUngrabServer(getXDisplay());
176 XFlush(getXDisplay());
177 }
178
179
180 // adapted from wmsetbg
181 Pixmap bsetroot::duplicatePixmap(int screen, Pixmap pixmap,
182 int width, int height) {
183 XSync(getXDisplay(), False);
184
185 Pixmap copyP = XCreatePixmap(getXDisplay(),
186 getScreenInfo(screen)->getRootWindow(),
187 width, height,
188 DefaultDepth(getXDisplay(), screen));
189 XCopyArea(getXDisplay(), pixmap, copyP, DefaultGC(getXDisplay(), screen),
190 0, 0, width, height, 0, 0);
191 XSync(getXDisplay(), False);
192
193 return copyP;
194 }
195
196
197 void bsetroot::solid(void) {
198 for (unsigned int screen = 0; screen < getNumberOfScreens(); screen++) {
199 BColor c(fore, this, screen);
200 const ScreenInfo *screen_info = getScreenInfo(screen);
201
202 XSetWindowBackground(getXDisplay(), screen_info->getRootWindow(),
203 c.pixel());
204 XClearWindow(getXDisplay(), screen_info->getRootWindow());
205
206 Pixmap pixmap = XCreatePixmap(getXDisplay(),
207 screen_info->getRootWindow(),
208 8, 8, DefaultDepth(getXDisplay(), screen));
209 BPen pen(c);
210 XFillRectangle(getXDisplay(), pixmap, pen.gc(), 0, 0, 8, 8);
211
212 setPixmapProperty(screen, duplicatePixmap(screen, pixmap, 8, 8));
213
214 XFreePixmap(getXDisplay(), pixmap);
215 }
216 }
217
218
219 void bsetroot::modula(int x, int y) {
220 char data[32];
221 long pattern;
222
223 unsigned int screen, i;
224
225 for (pattern = 0, screen = 0; screen < getNumberOfScreens(); screen++) {
226 for (i = 0; i < 16; i++) {
227 pattern <<= 1;
228 if ((i % x) == 0)
229 pattern |= 0x0001;
230 }
231
232 for (i = 0; i < 16; i++) {
233 if ((i % y) == 0) {
234 data[(i * 2)] = static_cast<char>(0xff);
235 data[(i * 2) + 1] = static_cast<char>(0xff);
236 } else {
237 data[(i * 2)] = pattern & 0xff;
238 data[(i * 2) + 1] = (pattern >> 8) & 0xff;
239 }
240 }
241
242 BColor f(fore, this, screen), b(back, this, screen);
243 GC gc;
244 Pixmap bitmap;
245 const ScreenInfo *screen_info = getScreenInfo(screen);
246
247 bitmap =
248 XCreateBitmapFromData(getXDisplay(),
249 screen_info->getRootWindow(), data,
250 16, 16);
251
252 XGCValues gcv;
253 gcv.foreground = f.pixel();
254 gcv.background = b.pixel();
255
256 gc = XCreateGC(getXDisplay(), screen_info->getRootWindow(),
257 GCForeground | GCBackground, &gcv);
258
259 Pixmap pixmap = XCreatePixmap(getXDisplay(),
260 screen_info->getRootWindow(),
261 16, 16, screen_info->getDepth());
262
263 XCopyPlane(getXDisplay(), bitmap, pixmap, gc,
264 0, 0, 16, 16, 0, 0, 1l);
265 XSetWindowBackgroundPixmap(getXDisplay(),
266 screen_info->getRootWindow(),
267 pixmap);
268 XClearWindow(getXDisplay(), screen_info->getRootWindow());
269
270 setPixmapProperty(screen,
271 duplicatePixmap(screen, pixmap, 16, 16));
272
273 XFreeGC(getXDisplay(), gc);
274 XFreePixmap(getXDisplay(), bitmap);
275
276 if (! (screen_info->getVisual()->c_class & 1))
277 XFreePixmap(getXDisplay(), pixmap);
278 }
279 }
280
281
282 void bsetroot::gradient(void) {
283 for (unsigned int screen = 0; screen < getNumberOfScreens(); screen++) {
284 BTexture texture(grad, this, screen, img_ctrl[screen]);
285 const ScreenInfo *screen_info = getScreenInfo(screen);
286
287 texture.setColor(BColor(fore, this, screen));
288 texture.setColorTo(BColor(back, this, screen));
289
290 Pixmap pixmap =
291 img_ctrl[screen]->renderImage(screen_info->getWidth(),
292 screen_info->getHeight(),
293 texture);
294
295 XSetWindowBackgroundPixmap(getXDisplay(),
296 screen_info->getRootWindow(),
297 pixmap);
298 XClearWindow(getXDisplay(), screen_info->getRootWindow());
299
300 setPixmapProperty(screen,
301 duplicatePixmap(screen, pixmap,
302 screen_info->getWidth(),
303 screen_info->getHeight()));
304
305 if (! (screen_info->getVisual()->c_class & 1)) {
306 img_ctrl[screen]->removeImage(pixmap);
307 }
308 }
309 }
310
311
312 void bsetroot::usage(int exit_code) {
313 fprintf(stderr,
314 i18n(bsetrootSet, bsetrootUsage,
315 "%s 2.0\n\n"
316 "Copyright (c) 1997-2000, 2002 Bradley T Hughes\n"
317 "Copyright (c) 2001-2002 Sean 'Shaleh' Perry\n\n"
318 " -display <string> display connection\n"
319 " -mod <x> <y> modula pattern\n"
320 " -foreground, -fg <color> modula foreground color\n"
321 " -background, -bg <color> modula background color\n\n"
322 " -gradient <texture> gradient texture\n"
323 " -from <color> gradient start color\n"
324 " -to <color> gradient end color\n\n"
325 " -solid <color> solid color\n\n"
326 " -help print this help text and exit\n"),
327 getApplicationName());
328
329 exit(exit_code);
330 }
331
332 int main(int argc, char **argv) {
333 char *display_name = (char *) 0;
334
335 i18n.openCatalog("blackbox.cat");
336
337 for (int i = 1; i < argc; i++) {
338 if (! strcmp(argv[i], "-display")) {
339 // check for -display option
340
341 if ((++i) >= argc) {
342 fprintf(stderr, i18n(mainSet, mainDISPLAYRequiresArg,
343 "error: '-display' requires an argument\n"));
344
345 ::exit(1);
346 }
347
348 display_name = argv[i];
349 }
350 }
351
352 bsetroot app(argc, argv, display_name);
353
354 return 0;
355 }
This page took 0.054251 seconds and 5 git commands to generate.