]> Dogcows Code - chaz/openbox/blobdiff - render/theme.c
make themes inside a directory
[chaz/openbox] / render / theme.c
index b9172b69719f456a5fd1107ff72663bd8d72fc0a..e8f0e88474bc3751595a558c1f5be4dc0dd04d8e 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)
@@ -732,8 +730,6 @@ void RrThemeFree(RrTheme *theme)
         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);
@@ -802,17 +798,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);
@@ -898,25 +896,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;
         }
@@ -928,7 +923,6 @@ static gboolean read_mask(const RrInstance *inst,
     }
       
     g_free(s);
-    g_free(data_dir);
 
     return ret;
 }
This page took 0.022366 seconds and 4 git commands to generate.