1 /* wdefaults.c - window specific defaults
3 * Window Maker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
32 #include <X11/Xutil.h>
33 #include <X11/keysym.h>
38 #include "WindowMaker.h"
42 #include "workspace.h"
49 extern WPreferences wPreferences
;
51 extern proplist_t wAttributeDomainName
;
53 extern WDDomain
*WDWindowAttributes
;
60 static int getBool(proplist_t
, proplist_t
);
62 static char* getString(proplist_t
, proplist_t
);
65 static proplist_t ANoTitlebar
= NULL
;
66 static proplist_t ANoResizebar
;
67 static proplist_t ANoMiniaturizeButton
;
68 static proplist_t ANoCloseButton
;
69 static proplist_t ANoBorder
;
70 static proplist_t ANoHideOthers
;
71 static proplist_t ANoMouseBindings
;
72 static proplist_t ANoKeyBindings
;
73 static proplist_t ANoAppIcon
; /* app */
74 static proplist_t AKeepOnTop
;
75 static proplist_t AKeepOnBottom
;
76 static proplist_t AOmnipresent
;
77 static proplist_t ASkipWindowList
;
78 static proplist_t AKeepInsideScreen
;
79 static proplist_t AUnfocusable
;
80 static proplist_t AAlwaysUserIcon
;
81 static proplist_t AStartMiniaturized
;
82 static proplist_t AStartMaximized
;
83 static proplist_t AStartHidden
; /* app */
84 static proplist_t ADontSaveSession
; /* app */
85 static proplist_t AEmulateAppIcon
;
86 static proplist_t AFullMaximize
;
87 #ifdef XKB_BUTTON_HINT
88 static proplist_t ANoLanguageButton
;
91 static proplist_t AStartWorkspace
;
93 static proplist_t AIcon
;
96 static proplist_t AnyWindow
;
101 init_wdefaults(WScreen
*scr
)
103 AIcon
= PLMakeString("Icon");
105 ANoTitlebar
= PLMakeString("NoTitlebar");
106 ANoResizebar
= PLMakeString("NoResizebar");
107 ANoMiniaturizeButton
= PLMakeString("NoMiniaturizeButton");
108 ANoCloseButton
= PLMakeString("NoCloseButton");
109 ANoBorder
= PLMakeString("NoBorder");
110 ANoHideOthers
= PLMakeString("NoHideOthers");
111 ANoMouseBindings
= PLMakeString("NoMouseBindings");
112 ANoKeyBindings
= PLMakeString("NoKeyBindings");
113 ANoAppIcon
= PLMakeString("NoAppIcon");
114 AKeepOnTop
= PLMakeString("KeepOnTop");
115 AKeepOnBottom
= PLMakeString("KeepOnBottom");
116 AOmnipresent
= PLMakeString("Omnipresent");
117 ASkipWindowList
= PLMakeString("SkipWindowList");
118 AKeepInsideScreen
= PLMakeString("KeepInsideScreen");
119 AUnfocusable
= PLMakeString("Unfocusable");
120 AAlwaysUserIcon
= PLMakeString("AlwaysUserIcon");
121 AStartMiniaturized
= PLMakeString("StartMiniaturized");
122 AStartHidden
= PLMakeString("StartHidden");
123 AStartMaximized
= PLMakeString("StartMaximized");
124 ADontSaveSession
= PLMakeString("DontSaveSession");
125 AEmulateAppIcon
= PLMakeString("EmulateAppIcon");
126 AFullMaximize
= PLMakeString("FullMaximize");
127 #ifdef XKB_BUTTON_HINT
128 ANoLanguageButton
= PLMakeString("NoLanguageButton");
131 AStartWorkspace
= PLMakeString("StartWorkspace");
133 AnyWindow
= PLMakeString("*");
134 No
= PLMakeString("No");
136 if (!scr->wattribs) {
137 scr->wattribs = PLGetDomain(wAttributeDomainName);
144 get_value(proplist_t dict_win
, proplist_t dict_class
, proplist_t dict_name
,
145 proplist_t dict_any
, proplist_t option
, proplist_t default_value
,
146 Bool useGlobalDefault
)
152 value
= PLGetDictionaryEntry(dict_win
, option
);
158 value
= PLGetDictionaryEntry(dict_name
, option
);
164 value
= PLGetDictionaryEntry(dict_class
, option
);
169 if (!useGlobalDefault
)
173 value
= PLGetDictionaryEntry(dict_any
, option
);
178 return default_value
;
183 *----------------------------------------------------------------------
184 * wDefaultFillAttributes--
185 * Retrieves attributes for the specified instance/class and
186 * fills attr with it. Values that are actually defined are also
187 * set in mask. If useGlobalDefault is True, the default for
188 * all windows ("*") will be used for when no values are found
189 * for that instance/class.
191 *----------------------------------------------------------------------
194 wDefaultFillAttributes(WScreen
*scr
, char *instance
, char *class,
195 WWindowAttributes
*attr
,
196 WWindowAttributes
*mask
,
197 Bool useGlobalDefault
)
200 proplist_t key1
, key2
, key3
;
201 proplist_t dw
, dc
, dn
, da
;
204 if (class && instance
) {
206 buffer
= wmalloc(strlen(class)+strlen(instance
)+4);
207 key1
= PLMakeString(strcat(strcat(strcpy(buffer
,instance
),"."),class));
213 key2
= PLMakeString(instance
);
218 key3
= PLMakeString(class);
226 PLSetStringCmpHook(NULL
);
228 if (WDWindowAttributes
->dictionary
) {
229 dw
= key1
? PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key1
) : NULL
;
230 dn
= key2
? PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key2
) : NULL
;
231 dc
= key3
? PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key3
) : NULL
;
232 if (useGlobalDefault
)
233 da
= PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, AnyWindow
);
249 #define APPLY_VAL(value, flag, attrib) \
250 if (value) {attr->flag = getBool(attrib, value); \
251 if (mask) mask->flag = 1;}
254 value
= get_value(dw
, dc
, dn
, da
, ANoTitlebar
, No
, useGlobalDefault
);
255 APPLY_VAL(value
, no_titlebar
, ANoTitlebar
);
257 value
= get_value(dw
, dc
, dn
, da
, ANoResizebar
, No
, useGlobalDefault
);
258 APPLY_VAL(value
, no_resizebar
, ANoResizebar
);
260 value
= get_value(dw
, dc
, dn
, da
, ANoMiniaturizeButton
, No
, useGlobalDefault
);
261 APPLY_VAL(value
, no_miniaturize_button
, ANoMiniaturizeButton
);
263 value
= get_value(dw
, dc
, dn
, da
, ANoCloseButton
, No
, useGlobalDefault
);
264 APPLY_VAL(value
, no_close_button
, ANoCloseButton
);
266 value
= get_value(dw
, dc
, dn
, da
, ANoBorder
, No
, useGlobalDefault
);
267 APPLY_VAL(value
, no_border
, ANoBorder
);
269 value
= get_value(dw
, dc
, dn
, da
, ANoHideOthers
, No
, useGlobalDefault
);
270 APPLY_VAL(value
, no_hide_others
, ANoHideOthers
);
272 value
= get_value(dw
, dc
, dn
, da
, ANoMouseBindings
, No
, useGlobalDefault
);
273 APPLY_VAL(value
, no_bind_mouse
, ANoMouseBindings
);
275 value
= get_value(dw
, dc
, dn
, da
, ANoKeyBindings
, No
, useGlobalDefault
);
276 APPLY_VAL(value
, no_bind_keys
, ANoKeyBindings
);
278 value
= get_value(dw
, dc
, dn
, da
, ANoAppIcon
, No
, useGlobalDefault
);
279 APPLY_VAL(value
, no_appicon
, ANoAppIcon
);
281 value
= get_value(dw
, dc
, dn
, da
, AKeepOnTop
, No
, useGlobalDefault
);
282 APPLY_VAL(value
, floating
, AKeepOnTop
);
284 value
= get_value(dw
, dc
, dn
, da
, AKeepOnBottom
, No
, useGlobalDefault
);
285 APPLY_VAL(value
, sunken
, AKeepOnBottom
);
287 value
= get_value(dw
, dc
, dn
, da
, AOmnipresent
, No
, useGlobalDefault
);
288 APPLY_VAL(value
, omnipresent
, AOmnipresent
);
290 value
= get_value(dw
, dc
, dn
, da
, ASkipWindowList
, No
, useGlobalDefault
);
291 APPLY_VAL(value
, skip_window_list
, ASkipWindowList
);
293 value
= get_value(dw
, dc
, dn
, da
, AKeepInsideScreen
, No
, useGlobalDefault
);
294 APPLY_VAL(value
, dont_move_off
, AKeepInsideScreen
);
296 value
= get_value(dw
, dc
, dn
, da
, AUnfocusable
, No
, useGlobalDefault
);
297 APPLY_VAL(value
, no_focusable
, AUnfocusable
);
299 value
= get_value(dw
, dc
, dn
, da
, AAlwaysUserIcon
, No
, useGlobalDefault
);
300 APPLY_VAL(value
, always_user_icon
, AAlwaysUserIcon
);
302 value
= get_value(dw
, dc
, dn
, da
, AStartMiniaturized
, No
, useGlobalDefault
);
303 APPLY_VAL(value
, start_miniaturized
, AStartMiniaturized
);
305 value
= get_value(dw
, dc
, dn
, da
, AStartHidden
, No
, useGlobalDefault
);
306 APPLY_VAL(value
, start_hidden
, AStartHidden
);
308 value
= get_value(dw
, dc
, dn
, da
, AStartMaximized
, No
, useGlobalDefault
);
309 APPLY_VAL(value
, start_maximized
, AStartMaximized
);
311 value
= get_value(dw
, dc
, dn
, da
, ADontSaveSession
, No
, useGlobalDefault
);
312 APPLY_VAL(value
, dont_save_session
, ADontSaveSession
);
314 value
= get_value(dw
, dc
, dn
, da
, AEmulateAppIcon
, No
, useGlobalDefault
);
315 APPLY_VAL(value
, emulate_appicon
, AEmulateAppIcon
);
317 value
= get_value(dw
, dc
, dn
, da
, AFullMaximize
, No
, useGlobalDefault
);
318 APPLY_VAL(value
, full_maximize
, AFullMaximize
);
320 #ifdef XKB_BUTTON_HINT
321 value
= get_value(dw
, dc
, dn
, da
, ANoLanguageButton
, No
, useGlobalDefault
);
322 APPLY_VAL(value
, no_language_button
, ANoLanguageButton
);
326 PLSetStringCmpHook(StringCompareHook
);
332 get_generic_value(WScreen
*scr
, char *instance
, char *class, proplist_t option
,
335 proplist_t value
, key
, dict
;
339 PLSetStringCmpHook(NULL
);
341 if (class && instance
) {
343 buffer
= wmalloc(strlen(class)+strlen(instance
)+4);
344 key
= PLMakeString(strcat(strcat(strcpy(buffer
,instance
),"."),class));
346 dict
= PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key
);
351 value
= PLGetDictionaryEntry(dict
, option
);
355 if (!value
&& instance
) {
356 key
= PLMakeString(instance
);
358 dict
= PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key
);
361 value
= PLGetDictionaryEntry(dict
, option
);
365 if (!value
&& class) {
366 key
= PLMakeString(class);
368 dict
= PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, key
);
372 value
= PLGetDictionaryEntry(dict
, option
);
376 if (!value
&& !noDefault
) {
377 dict
= PLGetDictionaryEntry(WDWindowAttributes
->dictionary
, AnyWindow
);
380 value
= PLGetDictionaryEntry(dict
, option
);
384 PLSetStringCmpHook(StringCompareHook
);
391 wDefaultGetIconFile(WScreen
*scr
, char *instance
, char *class,
401 if (!WDWindowAttributes
->dictionary
)
404 value
= get_generic_value(scr
, instance
, class, AIcon
, noDefault
);
409 tmp
= getString(AIcon
, value
);
416 wDefaultGetImage(WScreen
*scr
, char *winstance
, char *wclass
)
422 file_name
= wDefaultGetIconFile(scr
, winstance
, wclass
, False
);
426 path
= FindImage(wPreferences
.icon_path
, file_name
);
429 wwarning(_("could not find icon file \"%s\""), file_name
);
433 image
= RLoadImage(scr
->rcontext
, path
, 0);
435 wwarning(_("error loading image file \"%s\""), path
, RMessageForError(RErrorCode
));
439 image
= wIconValidateIconSize(scr
, image
);
446 wDefaultGetStartWorkspace(WScreen
*scr
, char *instance
, char *class)
456 if (!WDWindowAttributes
->dictionary
)
459 value
= get_generic_value(scr
, instance
, class, AStartWorkspace
,
465 tmp
= getString(AStartWorkspace
, value
);
467 if (!tmp
|| strlen(tmp
)==0)
470 if (sscanf(tmp
, "%i", &w
)!=1) {
472 for (i
=0; i
< scr
->workspace_count
; i
++) {
473 if (strcmp(scr
->workspaces
[i
]->name
, tmp
)==0) {
487 wDefaultChangeIcon(WScreen
*scr
, char *instance
, char* class, char *file
)
489 WDDomain
*db
= WDWindowAttributes
;
490 proplist_t icon_value
=NULL
, value
, attr
, key
, def_win
, def_icon
=NULL
;
491 proplist_t dict
= db
->dictionary
;
495 dict
= PLMakeDictionaryFromEntries(NULL
, NULL
, NULL
);
497 db
->dictionary
= dict
;
498 value
= PLMakeString(db
->path
);
499 PLSetFilename(dict
, value
);
506 PLSetStringCmpHook(NULL
);
508 if (instance
&& class) {
510 buffer
= wmalloc(strlen(instance
) + strlen(class) + 2);
511 strcat(strcat(strcpy(buffer
, instance
), "."), class);
512 key
= PLMakeString(buffer
);
514 } else if (instance
) {
515 key
= PLMakeString(instance
);
517 key
= PLMakeString(class);
519 key
= PLRetain(AnyWindow
);
523 value
= PLMakeString(file
);
524 icon_value
= PLMakeDictionaryFromEntries(AIcon
, value
, NULL
);
527 if ((def_win
= PLGetDictionaryEntry(dict
, AnyWindow
)) != NULL
) {
528 def_icon
= PLGetDictionaryEntry(def_win
, AIcon
);
531 if (def_icon
&& !strcmp(PLGetString(def_icon
), file
))
535 if ((attr
= PLGetDictionaryEntry(dict
, key
)) != NULL
) {
536 if (PLIsDictionary(attr
)) {
537 if (icon_value
!=NULL
&& !same
)
538 PLMergeDictionaries(attr
, icon_value
);
540 PLRemoveDictionaryEntry(attr
, AIcon
);
542 } else if (icon_value
!=NULL
&& !same
) {
543 PLInsertDictionaryEntry(dict
, key
, icon_value
);
545 if (!wPreferences
.flags
.noupdates
)
550 PLRelease(icon_value
);
552 PLSetStringCmpHook(StringCompareHook
);
557 /* --------------------------- Local ----------------------- */
560 getBool(proplist_t key
, proplist_t value
)
564 if (!PLIsString(value
)) {
565 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
566 PLGetString(key
), "Boolean");
569 val
= PLGetString(value
);
571 if ((val
[1]=='\0' && (val
[0]=='y' || val
[0]=='Y' || val
[0]=='T'
572 || val
[0]=='t' || val
[0]=='1'))
573 || (strcasecmp(val
, "YES")==0 || strcasecmp(val
, "TRUE")==0)) {
576 } else if ((val
[1]=='\0'
577 && (val
[0]=='n' || val
[0]=='N' || val
[0]=='F'
578 || val
[0]=='f' || val
[0]=='0'))
579 || (strcasecmp(val
, "NO")==0 || strcasecmp(val
, "FALSE")==0)) {
583 wwarning(_("can't convert \"%s\" to boolean"), val
);
584 /* We return False if we can't convert to BOOLEAN.
585 * This is because all options defaults to False.
586 * -1 is not checked and thus is interpreted as True,
587 * which is not good.*/
595 * WARNING: Do not free value returned by this!!
598 getString(proplist_t key
, proplist_t value
)
600 if (!PLIsString(value
)) {
601 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
602 PLGetString(key
), "String");
606 return PLGetString(value
);