1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-11 03:05:52 +01:00

Update for 0.51.0

This commit is contained in:
dan
1999-01-25 19:06:50 +00:00
parent 3aeb1eb052
commit 416e3a82be
238 changed files with 24235 additions and 11473 deletions

View File

@@ -63,6 +63,12 @@ static char *options[] = {
"IconBack",
"IconTitleColor",
"IconTitleBack",
#ifdef TITLE_TEXT_SHADOW
"Shadow",
"FShadowColor",
"PShadowColor",
"UShadowColor",
#endif
NULL
};
@@ -94,6 +100,21 @@ print_help()
}
char*
globalDefaultsPathForDomain(char *domain)
{
char path[1024];
char *tmp;
sprintf(path, "%s/%s/%s", PKGDATADIR, DEFAULTS_DIR, domain);
tmp = malloc(strlen(path)+2);
strcpy(tmp, path);
return tmp;
}
char*
defaultsPathForDomain(char *domain)
{
@@ -401,6 +422,12 @@ findCopyFile(char *dir, char *file)
char *fullPath;
fullPath = wfindfileinarray(PixmapPath, file);
if (!fullPath) {
char buffer[4000];
sprintf(buffer, "coould not find file %s", file);
abortar(buffer);
}
copyFile(dir, fullPath);
free(fullPath);
}
@@ -444,6 +471,7 @@ makeThemePack(proplist_t style, char *themeName)
if (t && (strcasecmp(t, "tpixmap")==0
|| strcasecmp(t, "spixmap")==0
|| strcasecmp(t, "cpixmap")==0
|| strcasecmp(t, "mpixmap")==0
|| strcasecmp(t, "tdgradient")==0
|| strcasecmp(t, "tvgradient")==0
|| strcasecmp(t, "thgradient")==0)) {
@@ -515,6 +543,16 @@ main(int argc, char **argv)
ProgName, path);
exit(1);
}
free(path);
/* get global value */
path = globalDefaultsPathForDomain("WindowMaker");
val = PLGetProplistWithPath(path);
if (val) {
PLMergeDictionaries(val, prop);
PLRelease(prop);
prop = val;
}
style = PLMakeDictionaryFromEntries(NULL, NULL, NULL);
@@ -528,7 +566,8 @@ main(int argc, char **argv)
}
val = PLGetDictionaryEntry(prop, PLMakeString("PixmapPath"));
PixmapPath = PLGetString(val);
if (val)
PixmapPath = PLGetString(val);
if (theme_too) {
for (i=0; theme_options[i]!=NULL; i++) {
@@ -542,7 +581,6 @@ main(int argc, char **argv)
if (make_pack) {
char *path;
char *themeDir;
makeThemePack(style, style_file);