]>
Dogcows Code - chaz/openbox/blob - 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>
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:
13 // The above copyright notice and this permission notice shall be included in
14 // all copies or substantial portions of the Software.
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.
25 # include "../config.h"
26 #endif // HAVE_CONFIG_H
31 #endif // HAVE_STDLIB_H
35 #endif // HAVE_STRING_H
39 #endif // HAVE_STDIO_H
42 #include "../src/i18n.hh"
43 #include "../src/GCCache.hh"
44 #include "../src/Texture.hh"
45 #include "../src/Util.hh"
46 #include "bsetroot.hh"
51 bsetroot::bsetroot(int argc
, char **argv
, char *dpy_name
)
52 : BaseDisplay(argv
[0], dpy_name
)
54 grad
= fore
= back
= (char *) 0;
56 bool mod
= False
, sol
= False
, grd
= False
;
57 int mod_x
= 0, mod_y
= 0;
59 for (int i
= 1; i
< argc
; i
++) {
60 if (! strcmp("-help", argv
[i
])) {
62 } else if ((! strcmp("-fg", argv
[i
])) ||
63 (! strcmp("-foreground", argv
[i
])) ||
64 (! strcmp("-from", argv
[i
]))) {
65 if ((++i
) >= argc
) usage(1);
68 } else if ((! strcmp("-bg", argv
[i
])) ||
69 (! strcmp("-background", argv
[i
])) ||
70 (! strcmp("-to", argv
[i
]))) {
71 if ((++i
) >= argc
) usage(1);
74 } else if (! strcmp("-solid", argv
[i
])) {
75 if ((++i
) >= argc
) usage(1);
79 } else if (! strcmp("-mod", argv
[i
])) {
80 if ((++i
) >= argc
) usage();
82 mod_x
= atoi(argv
[i
]);
84 if ((++i
) >= argc
) usage();
86 mod_y
= atoi(argv
[i
]);
88 if (mod_x
< 1) mod_x
= 1;
89 if (mod_y
< 1) mod_y
= 1;
92 } else if (! strcmp("-gradient", argv
[i
])) {
93 if ((++i
) >= argc
) usage();
97 } else if (! strcmp("-display", argv
[i
])) {
98 // -display passed through tests ealier... we just skip it now
104 if ((mod
+ sol
+ grd
) != True
) {
106 i18n(bsetrootSet
, bsetrootMustSpecify
,
107 "%s: error: must specify one of: -solid, -mod, -gradient\n"),
108 getApplicationName());
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
);
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();
124 bsetroot::~bsetroot(void) {
125 XSetCloseDownMode(getXDisplay(), RetainPermanent
);
127 XKillClient(getXDisplay(), AllTemporary
);
129 std::for_each(img_ctrl
, img_ctrl
+ getNumberOfScreens(), PointerAssassin());
135 // adapted from wmsetbg
136 void bsetroot::setPixmapProperty(int screen
, Pixmap pixmap
) {
137 static Atom rootpmap_id
= None
, esetroot_id
= None
;
140 unsigned long length
, after
;
142 const ScreenInfo
*screen_info
= getScreenInfo(screen
);
144 if (rootpmap_id
== None
) {
145 rootpmap_id
= XInternAtom(getXDisplay(), "_XROOTPMAP_ID", False
);
146 esetroot_id
= XInternAtom(getXDisplay(), "ESETROOT_PMAP_ID", False
);
149 XGrabServer(getXDisplay());
151 /* Clear out the old pixmap */
152 XGetWindowProperty(getXDisplay(), screen_info
->getRootWindow(),
153 rootpmap_id
, 0L, 1L, False
, AnyPropertyType
,
154 &type
, &format
, &length
, &after
, &data
);
156 if ((type
== XA_PIXMAP
) && (format
== 32) && (length
== 1)) {
157 unsigned char* data_esetroot
= 0;
158 XGetWindowProperty(getXDisplay(), screen_info
->getRootWindow(),
159 esetroot_id
, 0L, 1L, False
, AnyPropertyType
,
160 &type
, &format
, &length
, &after
, &data_esetroot
);
161 if (data
&& data_esetroot
&& *((Pixmap
*) data
)) {
162 XKillClient(getXDisplay(), *((Pixmap
*) data
));
163 XSync(getXDisplay(), False
);
164 XFree(data_esetroot
);
170 XChangeProperty(getXDisplay(), screen_info
->getRootWindow(),
171 rootpmap_id
, XA_PIXMAP
, 32, PropModeReplace
,
172 (unsigned char *) &pixmap
, 1);
173 XChangeProperty(getXDisplay(), screen_info
->getRootWindow(),
174 esetroot_id
, XA_PIXMAP
, 32, PropModeReplace
,
175 (unsigned char *) &pixmap
, 1);
177 XDeleteProperty(getXDisplay(), screen_info
->getRootWindow(),
179 XDeleteProperty(getXDisplay(), screen_info
->getRootWindow(),
183 XUngrabServer(getXDisplay());
184 XFlush(getXDisplay());
188 // adapted from wmsetbg
189 Pixmap
bsetroot::duplicatePixmap(int screen
, Pixmap pixmap
,
190 int width
, int height
) {
191 XSync(getXDisplay(), False
);
193 Pixmap copyP
= XCreatePixmap(getXDisplay(),
194 getScreenInfo(screen
)->getRootWindow(),
196 DefaultDepth(getXDisplay(), screen
));
197 XCopyArea(getXDisplay(), pixmap
, copyP
, DefaultGC(getXDisplay(), screen
),
198 0, 0, width
, height
, 0, 0);
199 XSync(getXDisplay(), False
);
205 void bsetroot::solid(void) {
206 for (unsigned int screen
= 0; screen
< getNumberOfScreens(); screen
++) {
207 BColor
c(fore
, this, screen
);
208 const ScreenInfo
*screen_info
= getScreenInfo(screen
);
210 XSetWindowBackground(getXDisplay(), screen_info
->getRootWindow(),
212 XClearWindow(getXDisplay(), screen_info
->getRootWindow());
214 Pixmap pixmap
= XCreatePixmap(getXDisplay(),
215 screen_info
->getRootWindow(),
216 8, 8, DefaultDepth(getXDisplay(), screen
));
218 XFillRectangle(getXDisplay(), pixmap
, pen
.gc(), 0, 0, 8, 8);
220 setPixmapProperty(screen
, duplicatePixmap(screen
, pixmap
, 8, 8));
222 XFreePixmap(getXDisplay(), pixmap
);
227 void bsetroot::modula(int x
, int y
) {
231 unsigned int screen
, i
;
233 for (pattern
= 0, screen
= 0; screen
< getNumberOfScreens(); screen
++) {
234 for (i
= 0; i
< 16; i
++) {
240 for (i
= 0; i
< 16; i
++) {
242 data
[(i
* 2)] = static_cast<char>(0xff);
243 data
[(i
* 2) + 1] = static_cast<char>(0xff);
245 data
[(i
* 2)] = pattern
& 0xff;
246 data
[(i
* 2) + 1] = (pattern
>> 8) & 0xff;
250 BColor
f(fore
, this, screen
), b(back
, this, screen
);
253 const ScreenInfo
*screen_info
= getScreenInfo(screen
);
256 XCreateBitmapFromData(getXDisplay(),
257 screen_info
->getRootWindow(), data
,
261 gcv
.foreground
= f
.pixel();
262 gcv
.background
= b
.pixel();
264 gc
= XCreateGC(getXDisplay(), screen_info
->getRootWindow(),
265 GCForeground
| GCBackground
, &gcv
);
267 Pixmap pixmap
= XCreatePixmap(getXDisplay(),
268 screen_info
->getRootWindow(),
269 16, 16, screen_info
->getDepth());
271 XCopyPlane(getXDisplay(), bitmap
, pixmap
, gc
,
272 0, 0, 16, 16, 0, 0, 1l);
273 XSetWindowBackgroundPixmap(getXDisplay(),
274 screen_info
->getRootWindow(),
276 XClearWindow(getXDisplay(), screen_info
->getRootWindow());
278 setPixmapProperty(screen
,
279 duplicatePixmap(screen
, pixmap
, 16, 16));
281 XFreeGC(getXDisplay(), gc
);
282 XFreePixmap(getXDisplay(), bitmap
);
284 if (! (screen_info
->getVisual()->c_class
& 1))
285 XFreePixmap(getXDisplay(), pixmap
);
290 void bsetroot::gradient(void) {
291 for (unsigned int screen
= 0; screen
< getNumberOfScreens(); screen
++) {
292 BTexture
texture(grad
, this, screen
, img_ctrl
[screen
]);
293 const ScreenInfo
*screen_info
= getScreenInfo(screen
);
295 texture
.setColor(BColor(fore
, this, screen
));
296 texture
.setColorTo(BColor(back
, this, screen
));
299 img_ctrl
[screen
]->renderImage(screen_info
->getWidth(),
300 screen_info
->getHeight(),
303 XSetWindowBackgroundPixmap(getXDisplay(),
304 screen_info
->getRootWindow(),
306 XClearWindow(getXDisplay(), screen_info
->getRootWindow());
308 setPixmapProperty(screen
,
309 duplicatePixmap(screen
, pixmap
,
310 screen_info
->getWidth(),
311 screen_info
->getHeight()));
313 if (! (screen_info
->getVisual()->c_class
& 1)) {
314 img_ctrl
[screen
]->removeImage(pixmap
);
320 void bsetroot::usage(int exit_code
) {
322 i18n(bsetrootSet
, bsetrootUsage
,
324 "Copyright (c) 1997-2000, 2002 Bradley T Hughes\n"
325 "Copyright (c) 2001-2002 Sean 'Shaleh' Perry\n\n"
326 " -display <string> display connection\n"
327 " -mod <x> <y> modula pattern\n"
328 " -foreground, -fg <color> modula foreground color\n"
329 " -background, -bg <color> modula background color\n\n"
330 " -gradient <texture> gradient texture\n"
331 " -from <color> gradient start color\n"
332 " -to <color> gradient end color\n\n"
333 " -solid <color> solid color\n\n"
334 " -help print this help text and exit\n"),
335 getApplicationName());
340 int main(int argc
, char **argv
) {
341 char *display_name
= (char *) 0;
343 i18n
.openCatalog("blackbox.cat");
345 for (int i
= 1; i
< argc
; i
++) {
346 if (! strcmp(argv
[i
], "-display")) {
347 // check for -display option
350 fprintf(stderr
, i18n(mainSet
, mainDISPLAYRequiresArg
,
351 "error: '-display' requires an argument\n"));
356 display_name
= argv
[i
];
360 bsetroot
app(argc
, argv
, display_name
);
This page took 0.048152 seconds and 4 git commands to generate.