]> Dogcows Code - chaz/openbox/blobdiff - util/bsetroot.cc
sync with the 2.0 branch
[chaz/openbox] / util / bsetroot.cc
index cb37cb6bb66f63e64b27e771e43b407f7cf8e464..460dc350ac9891803a31452cee22b7526309ac89 100644 (file)
@@ -1,28 +1,61 @@
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
+// bsetroot.cc for Blackbox - an X11 Window manager
+// Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh at debian.org>
+// Copyright (c) 1997 - 2000, 2002 Brad Hughes <bhughes at trolltech.com>
+//
+// Permission is hereby granted, free of charge, to any person obtaining a
+// copy of this software and associated documentation files (the "Software"),
+// to deal in the Software without restriction, including without limitation
+// the rights to use, copy, modify, merge, publish, distribute, sublicense,
+// and/or sell copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+// DEALINGS IN THE SOFTWARE.
+
 #ifdef    HAVE_CONFIG_H
 #  include "../config.h"
 #endif // HAVE_CONFIG_H
 
-#ifdef    STDC_HEADERS
-#  include <string.h>
+extern "C" {
+#ifdef HAVE_STDLIB_H
 #  include <stdlib.h>
-#endif // STDC_HEADERS
+#endif // HAVE_STDLIB_H
+
+#ifdef HAVE_STRING_H
+#  include <string.h>
+#endif // HAVE_STRING_H
 
 #ifdef    HAVE_STDIO_H
 #  include <stdio.h>
 #endif // HAVE_STDIO_H
 
-#include "../src/i18n.h"
-#include "../src/BaseDisplay.h"
-#include "../src/Image.h"
-#include "bsetroot.h"
+#ifdef    HAVE_CTYPE_H
+# include <ctype.h>
+#endif // HAVE_CTYPE_H
+}
+
+#include "../src/i18n.hh"
+#include "../src/GCCache.hh"
+#include "../src/Texture.hh"
+#include "../src/Util.hh"
+#include "bsetroot.hh"
 
 
+I18n i18n;
+
 bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
-  : BaseDisplay(argv[0], dpy_name)
-{
-  grad = fore = back = (char *) 0;
+  : BaseDisplay(argv[0], dpy_name) {
 
-  Bool mod = False, sol = False, grd = False;
+  bool mod = False, sol = False, grd = False;
   int mod_x = 0, mod_y = 0;
 
   for (int i = 1; i < argc; i++) {
@@ -66,26 +99,30 @@ bsetroot::bsetroot(int argc, char **argv, char *dpy_name)
     } else if (! strcmp("-display", argv[i])) {
       // -display passed through tests ealier... we just skip it now
       i++;
-    } else
+    } else {
       usage();
+    }
   }
 
   if ((mod + sol + grd) != True) {
     fprintf(stderr,
-           i18n->getMessage(bsetrootSet, bsetrootMustSpecify,
-                 "%s: error: must specify one of: -solid, -mod, -gradient\n"),
+           i18n(bsetrootSet, bsetrootMustSpecify,
+                "%s: error: must specify one of: -solid, -mod, -gradient\n"),
            getApplicationName());
-    
+
     usage(2);
   }
-  
-  img_ctrl = new BImageControl*[getNumberOfScreens()];
-  for (int i = 0; i < getNumberOfScreens(); i++)
-    img_ctrl[i] = new BImageControl(*this, *getScreenInfo(i), True);
 
-  if (sol && fore) solid();
-  else if (mod && mod_x && mod_y && fore && back) modula(mod_x, mod_y);
-  else if (grd && grad && fore && back) gradient();
+  img_ctrl = new BImageControl*[getNumberOfScreens()];
+  for (unsigned int s = 0; s < getNumberOfScreens(); ++s)
+    img_ctrl[s] = new BImageControl(this, getScreenInfo(s), True);
+
+  if (sol && ! fore.empty())
+    solid();
+  else if (mod && mod_x && mod_y && ! (fore.empty() || back.empty()))
+    modula(mod_x, mod_y);
+  else if (grd && ! (grad.empty() || fore.empty() || back.empty()))
+    gradient();
   else usage();
 }
 
@@ -95,47 +132,60 @@ bsetroot::~bsetroot(void) {
 
   XKillClient(getXDisplay(), AllTemporary);
 
-  for (int i = 0; i < getNumberOfScreens(); i++)
-    delete img_ctrl[i];
+  std::for_each(img_ctrl, img_ctrl + getNumberOfScreens(), PointerAssassin());
 
   delete [] img_ctrl;
 }
 
+
 // adapted from wmsetbg
 void bsetroot::setPixmapProperty(int screen, Pixmap pixmap) {
-  static Atom rootpmap_id = None;
+  static Atom rootpmap_id = None, esetroot_id = None;
   Atom type;
   int format;
   unsigned long length, after;
   unsigned char *data;
-  int mode;
-  
-  if (rootpmap_id == None)
+  const ScreenInfo *screen_info = getScreenInfo(screen);
+
+  if (rootpmap_id == None) {
     rootpmap_id = XInternAtom(getXDisplay(), "_XROOTPMAP_ID", False);
+    esetroot_id = XInternAtom(getXDisplay(), "ESETROOT_PMAP_ID", False);
+  }
 
   XGrabServer(getXDisplay());
-  
+
   /* Clear out the old pixmap */
-  XGetWindowProperty(getXDisplay(), getScreenInfo(screen)->getRootWindow(),
+  XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(),
                     rootpmap_id, 0L, 1L, False, AnyPropertyType,
                     &type, &format, &length, &after, &data);
-  
+
   if ((type == XA_PIXMAP) && (format == 32) && (length == 1)) {
-    XKillClient(getXDisplay(), *((Pixmap *)data));
-    XSync(getXDisplay(), False);
-    mode = PropModeReplace;
-  } else {
-    mode = PropModeAppend;
+    unsigned char* data_esetroot = 0;
+    XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(),
+                       esetroot_id, 0L, 1L, False, AnyPropertyType,
+                       &type, &format, &length, &after, &data_esetroot);
+    if (data && data_esetroot && *((Pixmap *) data)) {
+      XKillClient(getXDisplay(), *((Pixmap *) data));
+      XSync(getXDisplay(), False);
+      XFree(data_esetroot);
+    }
+    XFree(data);
   }
+
   if (pixmap) {
-    XChangeProperty(getXDisplay(), getScreenInfo(screen)->getRootWindow(),
-                   rootpmap_id, XA_PIXMAP, 32, mode,
+    XChangeProperty(getXDisplay(), screen_info->getRootWindow(),
+                   rootpmap_id, XA_PIXMAP, 32, PropModeReplace,
+                   (unsigned char *) &pixmap, 1);
+    XChangeProperty(getXDisplay(), screen_info->getRootWindow(),
+                   esetroot_id, XA_PIXMAP, 32, PropModeReplace,
                    (unsigned char *) &pixmap, 1);
   } else {
-    XDeleteProperty(getXDisplay(), getScreenInfo(screen)->getRootWindow(),
+    XDeleteProperty(getXDisplay(), screen_info->getRootWindow(),
                    rootpmap_id);
+    XDeleteProperty(getXDisplay(), screen_info->getRootWindow(),
+                   esetroot_id);
   }
-  
+
   XUngrabServer(getXDisplay());
   XFlush(getXDisplay());
 }
@@ -159,23 +209,19 @@ Pixmap bsetroot::duplicatePixmap(int screen, Pixmap pixmap,
 
 
 void bsetroot::solid(void) {
-  for (int screen = 0; screen < getNumberOfScreens(); screen++) {
-    BColor c;
-
-    img_ctrl[screen]->parseColor(&c, fore);
-    if (! c.isAllocated()) c.setPixel(BlackPixel(getXDisplay(), screen));
+  for (unsigned int screen = 0; screen < getNumberOfScreens(); screen++) {
+    BColor c(fore, this, screen);
+    const ScreenInfo *screen_info = getScreenInfo(screen);
 
-    XSetWindowBackground(getXDisplay(), getScreenInfo(screen)->getRootWindow(),
-                         c.getPixel());
-    XClearWindow(getXDisplay(), getScreenInfo(screen)->getRootWindow());
+    XSetWindowBackground(getXDisplay(), screen_info->getRootWindow(),
+                         c.pixel());
+    XClearWindow(getXDisplay(), screen_info->getRootWindow());
 
     Pixmap pixmap = XCreatePixmap(getXDisplay(),
-                                 getScreenInfo(screen)->getRootWindow(),
+                                 screen_info->getRootWindow(),
                                  8, 8, DefaultDepth(getXDisplay(), screen));
-    XSetForeground(getXDisplay(), DefaultGC(getXDisplay(), screen),
-                  c.getPixel());
-    XFillRectangle(getXDisplay(), pixmap, DefaultGC(getXDisplay(), screen),
-                  0, 0, 8, 8);
+    BPen pen(c);
+    XFillRectangle(getXDisplay(), pixmap, pen.gc(), 0, 0, 8, 8);
 
     setPixmapProperty(screen, duplicatePixmap(screen, pixmap, 8, 8));
 
@@ -188,7 +234,7 @@ void bsetroot::modula(int x, int y) {
   char data[32];
   long pattern;
 
-  int screen, i;
+  unsigned int screen, i;
 
   for (pattern = 0, screen = 0; screen < getNumberOfScreens(); screen++) {
     for (i = 0; i < 16; i++) {
@@ -199,46 +245,41 @@ void bsetroot::modula(int x, int y) {
 
     for (i = 0; i < 16; i++) {
       if ((i %  y) == 0) {
-        data[(i * 2)] = (char) 0xff;
-        data[(i * 2) + 1] = (char) 0xff;
+        data[(i * 2)] = static_cast<char>(0xff);
+        data[(i * 2) + 1] = static_cast<char>(0xff);
       } else {
         data[(i * 2)] = pattern & 0xff;
         data[(i * 2) + 1] = (pattern >> 8) & 0xff;
       }
     }
 
-    BColor f, b;
+    BColor f(fore, this, screen), b(back, this, screen);
     GC gc;
     Pixmap bitmap;
-    XGCValues gcv;
+    const ScreenInfo *screen_info = getScreenInfo(screen);
 
     bitmap =
       XCreateBitmapFromData(getXDisplay(),
-                            getScreenInfo(screen)->getRootWindow(), data,
+                            screen_info->getRootWindow(), data,
                             16, 16);
 
-    img_ctrl[screen]->parseColor(&f, fore);
-    img_ctrl[screen]->parseColor(&b, back);
-
-    if (! f.isAllocated()) f.setPixel(WhitePixel(getXDisplay(), screen));
-    if (! b.isAllocated()) b.setPixel(BlackPixel(getXDisplay(), screen));
-
-    gcv.foreground = f.getPixel();
-    gcv.background = b.getPixel();
+    XGCValues gcv;
+    gcv.foreground = f.pixel();
+    gcv.background = b.pixel();
 
-    gc = XCreateGC(getXDisplay(), getScreenInfo(screen)->getRootWindow(),
+    gc = XCreateGC(getXDisplay(), screen_info->getRootWindow(),
                    GCForeground | GCBackground, &gcv);
 
     Pixmap pixmap = XCreatePixmap(getXDisplay(),
-                                 getScreenInfo(screen)->getRootWindow(),
-                                 16, 16, getScreenInfo(screen)->getDepth());
+                                 screen_info->getRootWindow(),
+                                 16, 16, screen_info->getDepth());
 
     XCopyPlane(getXDisplay(), bitmap, pixmap, gc,
                0, 0, 16, 16, 0, 0, 1l);
     XSetWindowBackgroundPixmap(getXDisplay(),
-                               getScreenInfo(screen)->getRootWindow(),
+                               screen_info->getRootWindow(),
                                pixmap);
-    XClearWindow(getXDisplay(), getScreenInfo(screen)->getRootWindow());
+    XClearWindow(getXDisplay(), screen_info->getRootWindow());
 
     setPixmapProperty(screen,
                      duplicatePixmap(screen, pixmap, 16, 16));
@@ -246,40 +287,59 @@ void bsetroot::modula(int x, int y) {
     XFreeGC(getXDisplay(), gc);
     XFreePixmap(getXDisplay(), bitmap);
 
-    if (! (getScreenInfo(screen)->getVisual()->c_class & 1))
+    if (! (screen_info->getVisual()->c_class & 1))
       XFreePixmap(getXDisplay(), pixmap);
   }
 }
 
 
 void bsetroot::gradient(void) {
-  for (int screen = 0; screen < getNumberOfScreens(); screen++) {
-    BTexture texture;
-    img_ctrl[screen]->parseTexture(&texture, grad);
-    img_ctrl[screen]->parseColor(texture.getColor(), fore);
-    img_ctrl[screen]->parseColor(texture.getColorTo(), back);
+  /*
+    we have to be sure that neither raised nor sunken is specified otherwise
+    odd looking borders appear.  So we convert to lowercase then look for
+    'raised' or 'sunken' in the description and erase them.  To be paranoid
+    the search is done in a loop.
+  */
+  std::string descr;
+  descr.reserve(grad.size());
+
+  std::string::const_iterator it = grad.begin(), end = grad.end();
+  for (; it != end; ++it)
+    descr += tolower(*it);
+
+  std::string::size_type pos;
+  while ((pos = descr.find("raised")) != std::string::npos)
+    descr.erase(pos, 6); // 6 is strlen raised
 
-    if (! texture.getColor()->isAllocated())
-      texture.getColor()->setPixel(WhitePixel(getXDisplay(), screen));
-    if (! texture.getColorTo()->isAllocated())
-      texture.getColorTo()->setPixel(BlackPixel(getXDisplay(), screen));
+  while ((pos = descr.find("sunken")) != std::string::npos)
+    descr.erase(pos, 6);
+
+  // now add on 'flat' to prevent the bevels from being added
+  descr += "flat";
+
+  for (unsigned int screen = 0; screen < getNumberOfScreens(); screen++) {
+    BTexture texture(descr, this, screen, img_ctrl[screen]);
+    const ScreenInfo *screen_info = getScreenInfo(screen);
+
+    texture.setColor(BColor(fore, this, screen));
+    texture.setColorTo(BColor(back, this, screen));
 
     Pixmap pixmap =
-      img_ctrl[screen]->renderImage(getScreenInfo(screen)->size().w(),
-                                    getScreenInfo(screen)->size().h(),
-                                    &texture);
+      img_ctrl[screen]->renderImage(screen_info->getWidth(),
+                                    screen_info->getHeight(),
+                                    texture);
 
     XSetWindowBackgroundPixmap(getXDisplay(),
-                               getScreenInfo(screen)->getRootWindow(),
+                               screen_info->getRootWindow(),
                                pixmap);
-    XClearWindow(getXDisplay(), getScreenInfo(screen)->getRootWindow());
+    XClearWindow(getXDisplay(), screen_info->getRootWindow());
 
     setPixmapProperty(screen,
                      duplicatePixmap(screen, pixmap,
-                                     getScreenInfo(screen)->size().w(), 
-                                     getScreenInfo(screen)->size().h()));
-      
-    if (! (getScreenInfo(screen)->getVisual()->c_class & 1)) {
+                                     screen_info->getWidth(),
+                                     screen_info->getHeight()));
+
+    if (! (screen_info->getVisual()->c_class & 1)) {
       img_ctrl[screen]->removeImage(pixmap);
     }
   }
@@ -287,47 +347,46 @@ void bsetroot::gradient(void) {
 
 
 void bsetroot::usage(int exit_code) {
-  fprintf(stderr,
-          i18n->
-         getMessage(bsetrootSet, bsetrootUsage,
-                    "%s 2.0 : (c) 1997-1999 Brad Hughes\n\n"
-                    "  -display <string>        display connection\n"
-                    "  -mod <x> <y>             modula pattern\n"
-                    "  -foreground, -fg <color> modula foreground color\n"
-                    "  -background, -bg <color> modula background color\n\n"
-                    "  -gradient <texture>      gradient texture\n"
-                    "  -from <color>            gradient start color\n"
-                    "  -to <color>              gradient end color\n\n"
-                    "  -solid <color>           solid color\n\n"
-                    "  -help                    print this help text and exit\n"),
-         getApplicationName());
-  
-  exit(exit_code);
-}
+    fprintf(stderr,
+           i18n(bsetrootSet, bsetrootUsage,
+                "%s 2.0\n\n"
+                "Copyright (c) 1997-2000, 2002 Bradley T Hughes\n"
+                "Copyright (c) 2001-2002 Sean 'Shaleh' Perry\n\n"
+                "  -display <string>        use display connection\n"
+                "  -mod <x> <y>             modula pattern\n"
+                "  -foreground, -fg <color> modula foreground color\n"
+                "  -background, -bg <color> modula background color\n\n"
+                "  -gradient <texture>      gradient texture\n"
+                "  -from <color>            gradient start color\n"
+                "  -to <color>              gradient end color\n\n"
+                "  -solid <color>           solid color\n\n"
+                "  -help                    print this help text and exit\n"),
+           getApplicationName());
 
+    exit(exit_code);
+}
 
 int main(int argc, char **argv) {
   char *display_name = (char *) 0;
-  
-  NLSInit("openbox.cat");
-  
+
+  i18n.openCatalog("openbox.cat");
+
   for (int i = 1; i < argc; i++) {
     if (! strcmp(argv[i], "-display")) {
       // check for -display option
-      
+
       if ((++i) >= argc) {
-        fprintf(stderr,
-               i18n->getMessage(mainSet, mainDISPLAYRequiresArg,
-                                "error: '-display' requires an argument\n"));
-       
+        fprintf(stderr, i18n(mainSet, mainDISPLAYRequiresArg,
+                            "error: '-display' requires an argument\n"));
+
         ::exit(1);
       }
-      
+
       display_name = argv[i];
     }
   }
-  
+
   bsetroot app(argc, argv, display_name);
-  
+
   return 0;
 }
This page took 0.037155 seconds and 4 git commands to generate.