]> Dogcows Code - chaz/openbox/blob - util/bsetroot.cc
sync with bb cvs
[chaz/openbox] / util / bsetroot.cc
1 // -*- mode++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // bsetroot.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
105 if ((mod + sol + grd) != True) {
106 fprintf(stderr,
107 i18n(bsetrootSet, bsetrootMustSpecify,
108 "%s: error: must specify one of: -solid, -mod, -gradient\n"),
109 getApplicationName());
110
111 usage(2);
112 }
113
114 img_ctrl = new BImageControl*[getNumberOfScreens()];
115 for (unsigned int s = 0; s < getNumberOfScreens(); ++s)
116 img_ctrl[s] = new BImageControl(this, getScreenInfo(s), True);
117
118 if (sol && fore) solid();
119 else if (mod && mod_x && mod_y && fore && back) modula(mod_x, mod_y);
120 else if (grd && grad && fore && back) gradient();
121 else usage();
122 }
123
124
125 bsetroot::~bsetroot(void) {
126 XSetCloseDownMode(getXDisplay(), RetainPermanent);
127
128 XKillClient(getXDisplay(), AllTemporary);
129
130 std::for_each(img_ctrl, img_ctrl + getNumberOfScreens(), PointerAssassin());
131
132 delete [] img_ctrl;
133 }
134
135
136 // adapted from wmsetbg
137 void bsetroot::setPixmapProperty(int screen, Pixmap pixmap) {
138 static Atom rootpmap_id = None, esetroot_id = None;
139 Atom type;
140 int format;
141 unsigned long length, after;
142 unsigned char *data;
143 const ScreenInfo *screen_info = getScreenInfo(screen);
144
145 if (rootpmap_id == None) {
146 rootpmap_id = XInternAtom(getXDisplay(), "_XROOTPMAP_ID", False);
147 esetroot_id = XInternAtom(getXDisplay(), "ESETROOT_PMAP_ID", False);
148 }
149
150 XGrabServer(getXDisplay());
151
152 /* Clear out the old pixmap */
153 XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(),
154 rootpmap_id, 0L, 1L, False, AnyPropertyType,
155 &type, &format, &length, &after, &data);
156
157 if ((type == XA_PIXMAP) && (format == 32) && (length == 1)) {
158 unsigned char* data_esetroot = 0;
159 XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(),
160 esetroot_id, 0L, 1L, False, AnyPropertyType,
161 &type, &format, &length, &after, &data_esetroot);
162 if (data && data_esetroot && *((Pixmap *) data)) {
163 XKillClient(getXDisplay(), *((Pixmap *) data));
164 XSync(getXDisplay(), False);
165 XFree(data_esetroot);
166 }
167 XFree(data);
168 }
169
170 if (pixmap) {
171 XChangeProperty(getXDisplay(), screen_info->getRootWindow(),
172 rootpmap_id, XA_PIXMAP, 32, PropModeReplace,
173 (unsigned char *) &pixmap, 1);
174 XChangeProperty(getXDisplay(), screen_info->getRootWindow(),
175 esetroot_id, XA_PIXMAP, 32, PropModeReplace,
176 (unsigned char *) &pixmap, 1);
177 } else {
178 XDeleteProperty(getXDisplay(), screen_info->getRootWindow(),
179 rootpmap_id);
180 XDeleteProperty(getXDisplay(), screen_info->getRootWindow(),
181 esetroot_id);
182 }
183
184 XUngrabServer(getXDisplay());
185 XFlush(getXDisplay());
186 }
187
188
189 // adapted from wmsetbg
190 Pixmap bsetroot::duplicatePixmap(int screen, Pixmap pixmap,
191 int width, int height) {
192 XSync(getXDisplay(), False);
193
194 Pixmap copyP = XCreatePixmap(getXDisplay(),
195 getScreenInfo(screen)->getRootWindow(),
196 width, height,
197 DefaultDepth(getXDisplay(), screen));
198 XCopyArea(getXDisplay(), pixmap, copyP, DefaultGC(getXDisplay(), screen),
199 0, 0, width, height, 0, 0);
200 XSync(getXDisplay(), False);
201
202 return copyP;
203 }
204
205
206 void bsetroot::solid(void) {
207 for (unsigned int screen = 0; screen < getNumberOfScreens(); screen++) {
208 BColor c(fore, this, screen);
209 const ScreenInfo *screen_info = getScreenInfo(screen);
210
211 XSetWindowBackground(getXDisplay(), screen_info->getRootWindow(),
212 c.pixel());
213 XClearWindow(getXDisplay(), screen_info->getRootWindow());
214
215 Pixmap pixmap = XCreatePixmap(getXDisplay(),
216 screen_info->getRootWindow(),
217 8, 8, DefaultDepth(getXDisplay(), screen));
218 BPen pen(c);
219 XFillRectangle(getXDisplay(), pixmap, pen.gc(), 0, 0, 8, 8);
220
221 setPixmapProperty(screen, duplicatePixmap(screen, pixmap, 8, 8));
222
223 XFreePixmap(getXDisplay(), pixmap);
224 }
225 }
226
227
228 void bsetroot::modula(int x, int y) {
229 char data[32];
230 long pattern;
231
232 unsigned int screen, i;
233
234 for (pattern = 0, screen = 0; screen < getNumberOfScreens(); screen++) {
235 for (i = 0; i < 16; i++) {
236 pattern <<= 1;
237 if ((i % x) == 0)
238 pattern |= 0x0001;
239 }
240
241 for (i = 0; i < 16; i++) {
242 if ((i % y) == 0) {
243 data[(i * 2)] = static_cast<char>(0xff);
244 data[(i * 2) + 1] = static_cast<char>(0xff);
245 } else {
246 data[(i * 2)] = pattern & 0xff;
247 data[(i * 2) + 1] = (pattern >> 8) & 0xff;
248 }
249 }
250
251 BColor f(fore, this, screen), b(back, this, screen);
252 GC gc;
253 Pixmap bitmap;
254 const ScreenInfo *screen_info = getScreenInfo(screen);
255
256 bitmap =
257 XCreateBitmapFromData(getXDisplay(),
258 screen_info->getRootWindow(), data,
259 16, 16);
260
261 XGCValues gcv;
262 gcv.foreground = f.pixel();
263 gcv.background = b.pixel();
264
265 gc = XCreateGC(getXDisplay(), screen_info->getRootWindow(),
266 GCForeground | GCBackground, &gcv);
267
268 Pixmap pixmap = XCreatePixmap(getXDisplay(),
269 screen_info->getRootWindow(),
270 16, 16, screen_info->getDepth());
271
272 XCopyPlane(getXDisplay(), bitmap, pixmap, gc,
273 0, 0, 16, 16, 0, 0, 1l);
274 XSetWindowBackgroundPixmap(getXDisplay(),
275 screen_info->getRootWindow(),
276 pixmap);
277 XClearWindow(getXDisplay(), screen_info->getRootWindow());
278
279 setPixmapProperty(screen,
280 duplicatePixmap(screen, pixmap, 16, 16));
281
282 XFreeGC(getXDisplay(), gc);
283 XFreePixmap(getXDisplay(), bitmap);
284
285 if (! (screen_info->getVisual()->c_class & 1))
286 XFreePixmap(getXDisplay(), pixmap);
287 }
288 }
289
290
291 void bsetroot::gradient(void) {
292 for (unsigned int screen = 0; screen < getNumberOfScreens(); screen++) {
293 BTexture texture(grad, this, screen, img_ctrl[screen]);
294 const ScreenInfo *screen_info = getScreenInfo(screen);
295
296 texture.setColor(BColor(fore, this, screen));
297 texture.setColorTo(BColor(back, this, screen));
298
299 Pixmap pixmap =
300 img_ctrl[screen]->renderImage(screen_info->getWidth(),
301 screen_info->getHeight(),
302 texture);
303
304 XSetWindowBackgroundPixmap(getXDisplay(),
305 screen_info->getRootWindow(),
306 pixmap);
307 XClearWindow(getXDisplay(), screen_info->getRootWindow());
308
309 setPixmapProperty(screen,
310 duplicatePixmap(screen, pixmap,
311 screen_info->getWidth(),
312 screen_info->getHeight()));
313
314 if (! (screen_info->getVisual()->c_class & 1)) {
315 img_ctrl[screen]->removeImage(pixmap);
316 }
317 }
318 }
319
320
321 void bsetroot::usage(int exit_code) {
322 fprintf(stderr,
323 i18n(bsetrootSet, bsetrootUsage,
324 "%s 2.0\n\n"
325 "Copyright (c) 1997-2000, 2002 Bradley T Hughes\n"
326 "Copyright (c) 2001-2002 Sean 'Shaleh' Perry\n\n"
327 " -display <string> display connection\n"
328 " -mod <x> <y> modula pattern\n"
329 " -foreground, -fg <color> modula foreground color\n"
330 " -background, -bg <color> modula background color\n\n"
331 " -gradient <texture> gradient texture\n"
332 " -from <color> gradient start color\n"
333 " -to <color> gradient end color\n\n"
334 " -solid <color> solid color\n\n"
335 " -help print this help text and exit\n"),
336 getApplicationName());
337
338 exit(exit_code);
339 }
340
341 int main(int argc, char **argv) {
342 char *display_name = (char *) 0;
343
344 i18n.openCatalog("openbox.cat");
345
346 for (int i = 1; i < argc; i++) {
347 if (! strcmp(argv[i], "-display")) {
348 // check for -display option
349
350 if ((++i) >= argc) {
351 fprintf(stderr, i18n(mainSet, mainDISPLAYRequiresArg,
352 "error: '-display' requires an argument\n"));
353
354 ::exit(1);
355 }
356
357 display_name = argv[i];
358 }
359 }
360
361 bsetroot app(argc, argv, display_name);
362
363 return 0;
364 }
This page took 0.052897 seconds and 5 git commands to generate.