]> Dogcows Code - chaz/openbox/blobdiff - render/theme.c
renamed the _t bitmaps, and added disabled and hover bitmaps
[chaz/openbox] / render / theme.c
index 68d9888f8df71c4f6d3cfbd5a1a8d119c005e66a..fa7816c0baa80883c5399c7483e61e46669e4a40 100644 (file)
@@ -6,6 +6,9 @@
 
 #include <X11/Xlib.h>
 #include <X11/Xresource.h>
+#include <ctype.h>
+#include <stdlib.h>
+#include <string.h>
 
 static XrmDatabase loaddb(RrTheme *theme, char *name);
 static gboolean read_int(XrmDatabase db, char *rname, int *value);
@@ -133,11 +136,6 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
             mjust = RR_JUSTIFY_CENTER;
     }
 
-    /* load the title layout */
-    if (!read_string(db, "window.title.layout", &font_str))
-        font_str = "NLIMC";
-    theme->title_layout = g_strdup(font_str);
-
     /* load direct dimensions */
     if (!read_int(db, "menuOverlap", &theme->menu_overlap) ||
        theme->menu_overlap < 0 || theme->menu_overlap > 20)
@@ -184,12 +182,18 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
                     "window.button.pressed.focus.picColor",
                     &theme->titlebut_focused_pressed_color))
        theme->titlebut_focused_pressed_color =
-            theme->titlebut_focused_unpressed_color;
+            RrColorNew(inst,
+                       theme->titlebut_focused_unpressed_color->r,
+                       theme->titlebut_focused_unpressed_color->g,
+                       theme->titlebut_focused_unpressed_color->b);
     if (!read_color(db, inst,
                     "window.button.pressed.unfocus.picColor",
                     &theme->titlebut_unfocused_pressed_color))
        theme->titlebut_unfocused_pressed_color =
-            theme->titlebut_unfocused_unpressed_color;
+            RrColorNew(inst,
+                       theme->titlebut_unfocused_unpressed_color->r,
+                       theme->titlebut_unfocused_unpressed_color->g,
+                       theme->titlebut_unfocused_unpressed_color->b);
     if (!read_color(db, inst,
                     "window.button.disabled.focus.picColor",
                     &theme->titlebut_disabled_focused_color))
@@ -198,17 +202,23 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
     if (!read_color(db, inst,
                     "window.button.disabled.unfocus.picColor",
                     &theme->titlebut_disabled_unfocused_color))
-       theme->titlebut_hover_unfocused_color = RrColorNew(inst, 0, 0, 0);
+       theme->titlebut_disabled_unfocused_color = RrColorNew(inst, 0, 0, 0);
     if (!read_color(db, inst,
                     "window.button.hover.focus.picColor",
                     &theme->titlebut_hover_focused_color))
        theme->titlebut_hover_focused_color =
-            theme->titlebut_focused_unpressed_color;
+            RrColorNew(inst,
+                       theme->titlebut_focused_unpressed_color->r,
+                       theme->titlebut_focused_unpressed_color->g,
+                       theme->titlebut_focused_unpressed_color->b);
     if (!read_color(db, inst,
                     "window.button.hover.unfocus.picColor",
                     &theme->titlebut_hover_unfocused_color))
        theme->titlebut_hover_unfocused_color =
-            theme->titlebut_unfocused_unpressed_color;
+            RrColorNew(inst,
+                       theme->titlebut_unfocused_unpressed_color->r,
+                       theme->titlebut_unfocused_unpressed_color->g,
+                       theme->titlebut_unfocused_unpressed_color->b);
     if (!read_color(db, inst,
                     "menu.title.textColor", &theme->menu_title_color))
         theme->menu_title_color = RrColorNew(inst, 0, 0, 0);
@@ -222,11 +232,18 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
                     "menu.hilite.textColor", &theme->menu_hilite_color))
         theme->menu_hilite_color = RrColorNew(inst, 0, 0, 0);
 
-    if (read_mask(inst, "max.xbm", theme, &theme->max_unset_mask)){
-        if (!read_mask(inst, "max_t.xbm", theme, &theme->max_set_mask)) {
+    if (read_mask(inst, "max.xbm", theme, &theme->max_unset_mask)) {
+        if (!read_mask(inst, "max_toggled.xbm", theme, &theme->max_set_mask)) {
             theme->max_set_mask = RrPixmapMaskCopy(theme->max_unset_mask);
         }
-    } else {
+        if (!read_mask(inst, "max_disabled.xbm", theme,
+                       &theme->max_disabled_mask)) {
+            theme->max_disabled_mask = RrPixmapMaskCopy(theme->max_unset_mask);
+        } 
+        if (!read_mask(inst, "max_hover.xbm", theme, &theme->max_hover_mask)) {
+            theme->max_hover_mask = RrPixmapMaskCopy(theme->max_unset_mask);
+        }
+   } else {
         {
             char data[] = { 0x7f, 0x7f, 0x7f, 0x41, 0x41, 0x41, 0x7f };
             theme->max_unset_mask = RrPixmapMaskNew(inst, 7, 7, data);
@@ -235,15 +252,33 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
             char data[] = { 0x7c, 0x44, 0x47, 0x47, 0x7f, 0x1f, 0x1f };
             theme->max_set_mask = RrPixmapMaskNew(inst, 7, 7, data);
         }
+        theme->max_disabled_mask = RrPixmapMaskCopy(theme->max_unset_mask);
+        theme->max_hover_mask = RrPixmapMaskCopy(theme->max_unset_mask);
     }
 
-    if (!read_mask(inst, "iconify.xbm", theme, &theme->iconify_mask)) {
-        char data[] = { 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x7f };
-        theme->iconify_mask = RrPixmapMaskNew(inst, 7, 7, data);
+    if (read_mask(inst, "iconify.xbm", theme, &theme->iconify_mask)) {
+        if (!read_mask(inst, "iconify_disabled.xbm", theme,
+                       &theme->iconify_disabled_mask)) {
+            theme->iconify_disabled_mask =
+                RrPixmapMaskCopy(theme->iconify_mask);
+        } 
+        if (!read_mask(inst, "iconify_hover.xbm", theme,
+                       &theme->iconify_hover_mask)) {
+            theme->iconify_hover_mask =
+                RrPixmapMaskCopy(theme->iconify_mask);
+        }
+    } else {
+        {
+            char data[] = { 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x7f };
+            theme->iconify_mask = RrPixmapMaskNew(inst, 7, 7, data);
+        }
+        theme->iconify_disabled_mask = RrPixmapMaskCopy(theme->iconify_mask);
+        theme->iconify_hover_mask = RrPixmapMaskCopy(theme->iconify_mask);
     }
 
     if (read_mask(inst, "stick.xbm", theme, &theme->desk_unset_mask)) {
-        if (!read_mask(inst, "stick_t.xbm", theme, &theme->desk_set_mask)) {
+        if (!read_mask(inst, "stick_toggled.xbm", theme,
+                       &theme->desk_set_mask)) {
             theme->desk_set_mask =
                 RrPixmapMaskCopy(theme->desk_unset_mask);
         }
@@ -259,10 +294,21 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
     }
 
     if (read_mask(inst, "shade.xbm", theme, &theme->shade_unset_mask)) {
-        if (!read_mask(inst, "shade_t.xbm", theme, &theme->shade_set_mask)) {
+        if (!read_mask(inst, "shade_toggled.xbm", theme,
+                       &theme->shade_set_mask)) {
             theme->shade_set_mask =
                 RrPixmapMaskCopy(theme->shade_unset_mask);
         }
+        if (!read_mask(inst, "shade_disabled.xbm", theme,
+                       &theme->shade_disabled_mask)) {
+            theme->shade_disabled_mask =
+                RrPixmapMaskCopy(theme->shade_unset_mask);
+        } 
+        if (!read_mask(inst, "shade_hover.xbm", theme, 
+                       &theme->shade_hover_mask)) {
+            theme->shade_hover_mask =
+                RrPixmapMaskCopy(theme->shade_unset_mask);
+        }
     } else {
         {
             char data[] = { 0x7f, 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x00 };
@@ -272,11 +318,26 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
             char data[] = { 0x7f, 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x7f };
             theme->shade_set_mask = RrPixmapMaskNew(inst, 7, 7, data);
         }
+        theme->shade_disabled_mask = RrPixmapMaskCopy(theme->shade_unset_mask);
+        theme->shade_hover_mask = RrPixmapMaskCopy(theme->shade_unset_mask);
     }
 
-    if (!read_mask(inst, "close.xbm", theme, &theme->close_mask)) {
-        char data[] = { 0x63, 0x77, 0x3e, 0x1c, 0x3e, 0x77, 0x63 };
-        theme->close_mask = RrPixmapMaskNew(inst, 7, 7, data);
+    if (read_mask(inst, "close.xbm", theme, &theme->close_mask)) {
+        if (!read_mask(inst, "close_disabled.xbm", theme,
+                       &theme->close_disabled_mask)) {
+            theme->close_disabled_mask = RrPixmapMaskCopy(theme->close_mask);
+        } 
+        if (!read_mask(inst, "close_hover.xbm", theme,
+                       &theme->close_hover_mask)) {
+            theme->close_hover_mask = RrPixmapMaskCopy(theme->close_mask);
+        }
+    } else {
+        {
+            char data[] = { 0x63, 0x77, 0x3e, 0x1c, 0x3e, 0x77, 0x63 };
+            theme->close_mask = RrPixmapMaskNew(inst, 7, 7, data);
+        }
+        theme->close_disabled_mask = RrPixmapMaskCopy(theme->close_mask);
+        theme->close_hover_mask = RrPixmapMaskCopy(theme->close_mask);
     }        
 
     /* read the decoration textures */
@@ -458,7 +519,7 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
     theme->a_hover_focused_iconify =
         RrAppearanceCopy(theme->a_hover_focused_max);
     theme->a_hover_unfocused_iconify =
-        RrAppearanceCopy(theme->a_hover_focused_max);
+        RrAppearanceCopy(theme->a_hover_unfocused_max);
     theme->a_unfocused_unpressed_iconify =
         RrAppearanceCopy(theme->a_unfocused_unpressed_max);
     theme->a_unfocused_pressed_iconify =
@@ -567,9 +628,11 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
         theme->a_unfocused_pressed_iconify->texture[0].type = RR_TEXTURE_MASK;
     theme->a_disabled_focused_max->texture[0].data.mask.mask = 
         theme->a_disabled_unfocused_max->texture[0].data.mask.mask = 
-        theme->a_hover_focused_max->texture[0].data.mask.mask = 
+        theme->max_disabled_mask;
+    theme->a_hover_focused_max->texture[0].data.mask.mask = 
         theme->a_hover_unfocused_max->texture[0].data.mask.mask = 
-        theme->a_focused_unpressed_max->texture[0].data.mask.mask = 
+        theme->max_hover_mask;
+    theme->a_focused_unpressed_max->texture[0].data.mask.mask = 
         theme->a_unfocused_unpressed_max->texture[0].data.mask.mask = 
         theme->a_focused_pressed_max->texture[0].data.mask.mask = 
         theme->a_unfocused_pressed_max->texture[0].data.mask.mask =
@@ -579,18 +642,22 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
         theme->max_set_mask;
     theme->a_disabled_focused_close->texture[0].data.mask.mask = 
         theme->a_disabled_unfocused_close->texture[0].data.mask.mask = 
-        theme->a_hover_focused_close->texture[0].data.mask.mask = 
+        theme->close_disabled_mask;
+    theme->a_hover_focused_close->texture[0].data.mask.mask = 
         theme->a_hover_unfocused_close->texture[0].data.mask.mask = 
-        theme->a_focused_pressed_close->texture[0].data.mask.mask = 
+        theme->close_hover_mask;
+    theme->a_focused_pressed_close->texture[0].data.mask.mask = 
         theme->a_unfocused_pressed_close->texture[0].data.mask.mask =
         theme->a_focused_unpressed_close->texture[0].data.mask.mask = 
         theme->a_unfocused_unpressed_close->texture[0].data.mask.mask =
         theme->close_mask;
     theme->a_disabled_focused_desk->texture[0].data.mask.mask = 
         theme->a_disabled_unfocused_desk->texture[0].data.mask.mask = 
-        theme->a_hover_focused_desk->texture[0].data.mask.mask = 
+        theme->desk_disabled_mask;
+    theme->a_hover_focused_desk->texture[0].data.mask.mask = 
         theme->a_hover_unfocused_desk->texture[0].data.mask.mask = 
-        theme->a_focused_unpressed_desk->texture[0].data.mask.mask = 
+        theme->desk_hover_mask;
+    theme->a_focused_unpressed_desk->texture[0].data.mask.mask = 
         theme->a_unfocused_unpressed_desk->texture[0].data.mask.mask = 
         theme->a_focused_pressed_desk->texture[0].data.mask.mask = 
         theme->a_unfocused_pressed_desk->texture[0].data.mask.mask =
@@ -600,9 +667,11 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
         theme->desk_set_mask;
     theme->a_disabled_focused_shade->texture[0].data.mask.mask = 
         theme->a_disabled_unfocused_shade->texture[0].data.mask.mask = 
-        theme->a_hover_focused_shade->texture[0].data.mask.mask = 
+        theme->shade_disabled_mask;
+    theme->a_hover_focused_shade->texture[0].data.mask.mask = 
         theme->a_hover_unfocused_shade->texture[0].data.mask.mask = 
-        theme->a_focused_unpressed_shade->texture[0].data.mask.mask = 
+        theme->shade_hover_mask;
+    theme->a_focused_unpressed_shade->texture[0].data.mask.mask = 
         theme->a_unfocused_unpressed_shade->texture[0].data.mask.mask = 
         theme->a_focused_pressed_shade->texture[0].data.mask.mask = 
         theme->a_unfocused_pressed_shade->texture[0].data.mask.mask =
@@ -612,9 +681,11 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name)
         theme->shade_set_mask;
     theme->a_disabled_focused_iconify->texture[0].data.mask.mask = 
         theme->a_disabled_unfocused_iconify->texture[0].data.mask.mask = 
-        theme->a_hover_focused_iconify->texture[0].data.mask.mask = 
+        theme->iconify_disabled_mask;
+    theme->a_hover_focused_iconify->texture[0].data.mask.mask = 
         theme->a_hover_unfocused_iconify->texture[0].data.mask.mask = 
-        theme->a_focused_unpressed_iconify->texture[0].data.mask.mask = 
+        theme->iconify_hover_mask;
+    theme->a_focused_unpressed_iconify->texture[0].data.mask.mask = 
         theme->a_unfocused_unpressed_iconify->texture[0].data.mask.mask = 
         theme->a_focused_pressed_iconify->texture[0].data.mask.mask = 
         theme->a_unfocused_pressed_iconify->texture[0].data.mask.mask =
@@ -694,6 +765,10 @@ void RrThemeFree(RrTheme *theme)
         RrColorFree(theme->cb_focused_color);
         RrColorFree(theme->title_unfocused_color);
         RrColorFree(theme->title_focused_color);
+        RrColorFree(theme->titlebut_disabled_focused_color);
+        RrColorFree(theme->titlebut_disabled_unfocused_color);
+        RrColorFree(theme->titlebut_hover_focused_color);
+        RrColorFree(theme->titlebut_hover_unfocused_color);
         RrColorFree(theme->titlebut_unfocused_pressed_color);
         RrColorFree(theme->titlebut_focused_pressed_color);
         RrColorFree(theme->titlebut_unfocused_unpressed_color);
@@ -705,19 +780,27 @@ void RrThemeFree(RrTheme *theme)
 
         RrPixmapMaskFree(theme->max_set_mask);
         RrPixmapMaskFree(theme->max_unset_mask);
+        RrPixmapMaskFree(theme->max_disabled_mask);
+        RrPixmapMaskFree(theme->max_hover_mask);
         RrPixmapMaskFree(theme->desk_set_mask);
         RrPixmapMaskFree(theme->desk_unset_mask);
+        RrPixmapMaskFree(theme->desk_disabled_mask);
+        RrPixmapMaskFree(theme->desk_hover_mask);
         RrPixmapMaskFree(theme->shade_set_mask);
         RrPixmapMaskFree(theme->shade_unset_mask);
+        RrPixmapMaskFree(theme->shade_disabled_mask);
+        RrPixmapMaskFree(theme->shade_hover_mask);
         RrPixmapMaskFree(theme->iconify_mask);
+        RrPixmapMaskFree(theme->iconify_disabled_mask);
+        RrPixmapMaskFree(theme->iconify_hover_mask);
         RrPixmapMaskFree(theme->close_mask);
+        RrPixmapMaskFree(theme->close_disabled_mask);
+        RrPixmapMaskFree(theme->close_hover_mask);
 
         RrFontClose(theme->winfont);
         RrFontClose(theme->mtitlefont);
         RrFontClose(theme->mfont);
 
-        g_free(theme->title_layout);
-
         RrAppearanceFree(theme->a_disabled_focused_max);
         RrAppearanceFree(theme->a_disabled_unfocused_max);
         RrAppearanceFree(theme->a_hover_focused_max);
@@ -786,17 +869,19 @@ static XrmDatabase loaddb(RrTheme *theme, char *name)
 {
     XrmDatabase db;
 
-    if ((db = XrmGetFileDatabase(name)))
-        theme->path = g_path_get_dirname(name);
+    char *s = g_build_filename(name, "themerc", NULL);
+    if ((db = XrmGetFileDatabase(s)))
+        theme->path = g_path_get_dirname(s);
+    g_free(s);
     if (db == NULL) {
        char *s = g_build_filename(g_get_home_dir(), ".openbox", "themes",
-                                  name, NULL);
+                                  name, "themerc", NULL);
        if ((db = XrmGetFileDatabase(s)))
             theme->path = g_path_get_dirname(s);
        g_free(s);
     }
     if (db == NULL) {
-       char *s = g_build_filename(THEMEDIR, name, NULL);
+       char *s = g_build_filename(THEMEDIR, name, "themerc", NULL);
        if ((db = XrmGetFileDatabase(s)))
             theme->path = g_path_get_dirname(s);
         g_free(s);
@@ -882,25 +967,22 @@ static gboolean read_mask(const RrInstance *inst,
 {
     gboolean ret = FALSE;
     char *s;
-    char *data_dir;
     int hx, hy; /* ignored */
     unsigned int w, h;
     unsigned char *b;
 
-    data_dir = g_strdup_printf("%s_data", theme->name);
-
     s = g_build_filename(g_get_home_dir(), ".openbox", "themes",
-                         data_dir, maskname, NULL);
+                         theme->name, maskname, NULL);
     if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess)
         ret = TRUE;
     else {
         g_free(s);
-        s = g_build_filename(THEMEDIR, data_dir, maskname, NULL);
+        s = g_build_filename(THEMEDIR, theme->name, maskname, NULL);
         if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess) 
             ret = TRUE;
         else {
             g_free(s);
-            s = g_build_filename(theme->path, data_dir, maskname, NULL);
+            s = g_build_filename(theme->path, maskname, NULL);
             if (XReadBitmapFileData(s, &w, &h, &b, &hx, &hy) == BitmapSuccess) 
                 ret = TRUE;
         }
@@ -912,7 +994,6 @@ static gboolean read_mask(const RrInstance *inst,
     }
       
     g_free(s);
-    g_free(data_dir);
 
     return ret;
 }
This page took 0.037072 seconds and 4 git commands to generate.