WindowMaker: Clean curly brackets
[wmaker-crm.git] / src / defaults.c
blob6983275182d914f2b931357e2adcecfdb97db7fd
1 /* defaults.c - manage configuration through defaults db
3 * Window Maker window manager
5 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * Copyright (c) 1998-2003 Dan Pascu
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "wconfig.h"
25 #include <stdio.h>
26 #include <stdint.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <string.h>
30 #include <strings.h>
31 #include <ctype.h>
32 #include <time.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <fcntl.h>
36 #include <limits.h>
37 #include <signal.h>
39 #ifndef PATH_MAX
40 #define PATH_MAX DEFAULT_PATH_MAX
41 #endif
43 #include <X11/Xlib.h>
44 #include <X11/Xutil.h>
45 #include <X11/keysym.h>
47 #include <wraster.h>
49 #include "WindowMaker.h"
50 #include "framewin.h"
51 #include "window.h"
52 #include "texture.h"
53 #include "screen.h"
54 #include "resources.h"
55 #include "defaults.h"
56 #include "keybind.h"
57 #include "xmodifier.h"
58 #include "icon.h"
59 #include "funcs.h"
60 #include "actions.h"
61 #include "dock.h"
62 #include "workspace.h"
63 #include "properties.h"
64 #include "rootmenu.h"
66 #define MAX_SHORTCUT_LENGTH 32
68 #ifndef GLOBAL_DEFAULTS_SUBDIR
69 #define GLOBAL_DEFAULTS_SUBDIR "WindowMaker"
70 #endif
72 /***** Global *****/
73 extern WDDomain *WDWindowMaker;
74 extern WDDomain *WDWindowAttributes;
75 extern WDDomain *WDRootMenu;
76 extern int wScreenCount;
77 extern WPreferences wPreferences;
78 extern WShortKey wKeyBindings[WKBD_LAST];
80 typedef struct {
81 char *key;
82 char *default_value;
83 void *extra_data;
84 void *addr;
85 int (*convert) ();
86 int (*update) ();
87 WMPropList *plkey;
88 WMPropList *plvalue; /* default value */
89 } WDefaultEntry;
91 /* used to map strings to integers */
92 typedef struct {
93 char *string;
94 short value;
95 char is_alias;
96 } WOptionEnumeration;
98 /* type converters */
99 static int getBool();
100 static int getInt();
101 static int getCoord();
102 static int getPathList();
103 static int getEnum();
104 static int getTexture();
105 static int getWSBackground();
106 static int getWSSpecificBackground();
107 static int getFont();
108 static int getColor();
109 static int getKeybind();
110 static int getModMask();
111 static int getPropList();
113 /* value setting functions */
114 static int setJustify();
115 static int setClearance();
116 static int setIfDockPresent();
117 static int setStickyIcons();
118 static int setWidgetColor();
119 static int setIconTile();
120 static int setWinTitleFont();
121 static int setMenuTitleFont();
122 static int setMenuTextFont();
123 static int setIconTitleFont();
124 static int setIconTitleColor();
125 static int setIconTitleBack();
126 static int setLargeDisplayFont();
127 static int setWTitleColor();
128 static int setFTitleBack();
129 static int setPTitleBack();
130 static int setUTitleBack();
131 static int setResizebarBack();
132 static int setWorkspaceBack();
133 static int setWorkspaceSpecificBack();
134 static int setMenuTitleColor();
135 static int setMenuTextColor();
136 static int setMenuDisabledColor();
137 static int setMenuTitleBack();
138 static int setMenuTextBack();
139 static int setHightlight();
140 static int setHightlightText();
141 static int setKeyGrab();
142 static int setDoubleClick();
143 static int setIconPosition();
145 static int setClipTitleFont();
146 static int setClipTitleColor();
148 static int setMenuStyle();
149 static int setSwPOptions();
150 static int updateUsableArea();
152 static int setModifierKeyLabels();
154 extern Cursor wCursor[WCUR_LAST];
155 static int getCursor();
156 static int setCursor();
159 * Tables to convert strings to enumeration values.
160 * Values stored are char
163 /* WARNING: sum of length of all value strings must not exceed
164 * this value */
165 #define TOTAL_VALUES_LENGTH 80
167 #define REFRESH_WINDOW_TEXTURES (1<<0)
168 #define REFRESH_MENU_TEXTURE (1<<1)
169 #define REFRESH_MENU_FONT (1<<2)
170 #define REFRESH_MENU_COLOR (1<<3)
171 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
172 #define REFRESH_MENU_TITLE_FONT (1<<5)
173 #define REFRESH_MENU_TITLE_COLOR (1<<6)
174 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
175 #define REFRESH_WINDOW_FONT (1<<8)
176 #define REFRESH_ICON_TILE (1<<9)
177 #define REFRESH_ICON_FONT (1<<10)
178 #define REFRESH_WORKSPACE_BACK (1<<11)
180 #define REFRESH_BUTTON_IMAGES (1<<12)
182 #define REFRESH_ICON_TITLE_COLOR (1<<13)
183 #define REFRESH_ICON_TITLE_BACK (1<<14)
185 static WOptionEnumeration seFocusModes[] = {
186 {"Manual", WKF_CLICK, 0}, {"ClickToFocus", WKF_CLICK, 1},
187 {"Sloppy", WKF_SLOPPY, 0}, {"SemiAuto", WKF_SLOPPY, 1}, {"Auto", WKF_SLOPPY, 1},
188 {NULL, 0, 0}
191 static WOptionEnumeration seTitlebarModes[] = {
192 {"new", TS_NEW, 0}, {"old", TS_OLD, 0},
193 {"next", TS_NEXT, 0}, {NULL, 0, 0}
196 static WOptionEnumeration seColormapModes[] = {
197 {"Manual", WCM_CLICK, 0}, {"ClickToFocus", WCM_CLICK, 1},
198 {"Auto", WCM_POINTER, 0}, {"FocusFollowMouse", WCM_POINTER, 1},
199 {NULL, 0, 0}
202 static WOptionEnumeration sePlacements[] = {
203 {"Auto", WPM_AUTO, 0},
204 {"Smart", WPM_SMART, 0},
205 {"Cascade", WPM_CASCADE, 0},
206 {"Random", WPM_RANDOM, 0},
207 {"Manual", WPM_MANUAL, 0},
208 {NULL, 0, 0}
211 static WOptionEnumeration seGeomDisplays[] = {
212 {"None", WDIS_NONE, 0},
213 {"Center", WDIS_CENTER, 0},
214 {"Corner", WDIS_TOPLEFT, 0},
215 {"Floating", WDIS_FRAME_CENTER, 0},
216 {"Line", WDIS_NEW, 0},
217 {NULL, 0, 0}
220 static WOptionEnumeration seSpeeds[] = {
221 {"UltraFast", SPEED_ULTRAFAST, 0},
222 {"Fast", SPEED_FAST, 0},
223 {"Medium", SPEED_MEDIUM, 0},
224 {"Slow", SPEED_SLOW, 0},
225 {"UltraSlow", SPEED_ULTRASLOW, 0},
226 {NULL, 0, 0}
229 static WOptionEnumeration seMouseButtonActions[] = {
230 {"None", WA_NONE, 0},
231 {"SelectWindows", WA_SELECT_WINDOWS, 0},
232 {"OpenApplicationsMenu", WA_OPEN_APPMENU, 0},
233 {"OpenWindowListMenu", WA_OPEN_WINLISTMENU, 0},
234 {NULL, 0, 0}
237 static WOptionEnumeration seMouseWheelActions[] = {
238 {"None", WA_NONE, 0},
239 {"SwitchWorkspaces", WA_SWITCH_WORKSPACES, 0},
240 {NULL, 0, 0}
243 static WOptionEnumeration seIconificationStyles[] = {
244 {"Zoom", WIS_ZOOM, 0},
245 {"Twist", WIS_TWIST, 0},
246 {"Flip", WIS_FLIP, 0},
247 {"None", WIS_NONE, 0},
248 {"random", WIS_RANDOM, 0},
249 {NULL, 0, 0}
252 static WOptionEnumeration seJustifications[] = {
253 {"Left", WTJ_LEFT, 0},
254 {"Center", WTJ_CENTER, 0},
255 {"Right", WTJ_RIGHT, 0},
256 {NULL, 0, 0}
259 static WOptionEnumeration seIconPositions[] = {
260 {"blv", IY_BOTTOM | IY_LEFT | IY_VERT, 0},
261 {"blh", IY_BOTTOM | IY_LEFT | IY_HORIZ, 0},
262 {"brv", IY_BOTTOM | IY_RIGHT | IY_VERT, 0},
263 {"brh", IY_BOTTOM | IY_RIGHT | IY_HORIZ, 0},
264 {"tlv", IY_TOP | IY_LEFT | IY_VERT, 0},
265 {"tlh", IY_TOP | IY_LEFT | IY_HORIZ, 0},
266 {"trv", IY_TOP | IY_RIGHT | IY_VERT, 0},
267 {"trh", IY_TOP | IY_RIGHT | IY_HORIZ, 0},
268 {NULL, 0, 0}
271 static WOptionEnumeration seMenuStyles[] = {
272 {"normal", MS_NORMAL, 0},
273 {"singletexture", MS_SINGLE_TEXTURE, 0},
274 {"flat", MS_FLAT, 0},
275 {NULL, 0, 0}
278 static WOptionEnumeration seDisplayPositions[] = {
279 {"none", WD_NONE, 0},
280 {"center", WD_CENTER, 0},
281 {"top", WD_TOP, 0},
282 {"bottom", WD_BOTTOM, 0},
283 {"topleft", WD_TOPLEFT, 0},
284 {"topright", WD_TOPRIGHT, 0},
285 {"bottomleft", WD_BOTTOMLEFT, 0},
286 {"bottomright", WD_BOTTOMRIGHT, 0},
287 {NULL, 0, 0}
290 static WOptionEnumeration seWorkspaceBorder[] = {
291 {"None", WB_NONE, 0},
292 {"LeftRight", WB_LEFTRIGHT, 0},
293 {"TopBottom", WB_TOPBOTTOM, 0},
294 {"AllDirections", WB_ALLDIRS, 0},
295 {NULL, 0, 0}
299 * ALL entries in the tables bellow, NEED to have a default value
300 * defined, and this value needs to be correct.
303 /* these options will only affect the window manager on startup
305 * static defaults can't access the screen data, because it is
306 * created after these defaults are read
308 WDefaultEntry staticOptionList[] = {
310 {"ColormapSize", "4", NULL,
311 &wPreferences.cmap_size, getInt, NULL, NULL, NULL},
312 {"DisableDithering", "NO", NULL,
313 &wPreferences.no_dithering, getBool, NULL, NULL, NULL},
314 {"IconSize", "64", NULL,
315 &wPreferences.icon_size, getInt, NULL, NULL, NULL},
316 {"ModifierKey", "Mod1", NULL,
317 &wPreferences.modifier_mask, getModMask, NULL, NULL, NULL},
318 {"DisableWSMouseActions", "NO", NULL,
319 &wPreferences.disable_root_mouse, getBool, NULL, NULL, NULL},
320 {"FocusMode", "manual", seFocusModes, /* have a problem when switching from */
321 &wPreferences.focus_mode, getEnum, NULL, NULL, NULL}, /* manual to sloppy without restart */
322 {"NewStyle", "new", seTitlebarModes,
323 &wPreferences.new_style, getEnum, NULL, NULL, NULL},
324 {"DisableDock", "NO", (void *)WM_DOCK,
325 NULL, getBool, setIfDockPresent, NULL, NULL},
326 {"DisableClip", "NO", (void *)WM_CLIP,
327 NULL, getBool, setIfDockPresent, NULL, NULL},
328 {"DisableMiniwindows", "NO", NULL,
329 &wPreferences.disable_miniwindows, getBool, NULL, NULL, NULL}
332 #define NUM2STRING_(x) #x
333 #define NUM2STRING(x) NUM2STRING_(x)
335 WDefaultEntry optionList[] = {
337 /* dynamic options */
339 {"IconPosition", "blh", seIconPositions,
340 &wPreferences.icon_yard, getEnum, setIconPosition, NULL, NULL},
341 {"IconificationStyle", "Zoom", seIconificationStyles,
342 &wPreferences.iconification_style, getEnum, NULL, NULL, NULL},
343 {"MouseLeftButtonAction", "SelectWindows", seMouseButtonActions,
344 &wPreferences.mouse_button1, getEnum, NULL, NULL, NULL},
345 {"MouseMiddleButtonAction", "OpenWindowListMenu", seMouseButtonActions,
346 &wPreferences.mouse_button2, getEnum, NULL, NULL, NULL},
347 {"MouseRightButtonAction", "OpenApplicationsMenu", seMouseButtonActions,
348 &wPreferences.mouse_button3, getEnum, NULL, NULL, NULL},
349 {"MouseWheelAction", "None", seMouseWheelActions,
350 &wPreferences.mouse_wheel, getEnum, NULL, NULL, NULL},
351 {"PixmapPath", DEF_PIXMAP_PATHS, NULL,
352 &wPreferences.pixmap_path, getPathList, NULL, NULL, NULL},
353 {"IconPath", DEF_ICON_PATHS, NULL,
354 &wPreferences.icon_path, getPathList, NULL, NULL, NULL},
355 {"ColormapMode", "auto", seColormapModes,
356 &wPreferences.colormap_mode, getEnum, NULL, NULL, NULL},
357 {"AutoFocus", "NO", NULL,
358 &wPreferences.auto_focus, getBool, NULL, NULL, NULL},
359 {"RaiseDelay", "0", NULL,
360 &wPreferences.raise_delay, getInt, NULL, NULL, NULL},
361 {"CirculateRaise", "NO", NULL,
362 &wPreferences.circ_raise, getBool, NULL, NULL, NULL},
363 {"Superfluous", "NO", NULL,
364 &wPreferences.superfluous, getBool, NULL, NULL, NULL},
365 {"AdvanceToNewWorkspace", "NO", NULL,
366 &wPreferences.ws_advance, getBool, NULL, NULL, NULL},
367 {"CycleWorkspaces", "NO", NULL,
368 &wPreferences.ws_cycle, getBool, NULL, NULL, NULL},
369 {"WorkspaceNameDisplayPosition", "center", seDisplayPositions,
370 &wPreferences.workspace_name_display_position, getEnum, NULL, NULL, NULL},
371 {"WorkspaceBorder", "None", seWorkspaceBorder,
372 &wPreferences.workspace_border_position, getEnum, updateUsableArea, NULL, NULL},
373 {"WorkspaceBorderSize", "0", NULL,
374 &wPreferences.workspace_border_size, getInt, updateUsableArea, NULL, NULL},
375 {"StickyIcons", "NO", NULL,
376 &wPreferences.sticky_icons, getBool, setStickyIcons, NULL, NULL},
377 {"SaveSessionOnExit", "NO", NULL,
378 &wPreferences.save_session_on_exit, getBool, NULL, NULL, NULL},
379 {"WrapMenus", "NO", NULL,
380 &wPreferences.wrap_menus, getBool, NULL, NULL, NULL},
381 {"ScrollableMenus", "NO", NULL,
382 &wPreferences.scrollable_menus, getBool, NULL, NULL, NULL},
383 {"MenuScrollSpeed", "medium", seSpeeds,
384 &wPreferences.menu_scroll_speed, getEnum, NULL, NULL, NULL},
385 {"IconSlideSpeed", "medium", seSpeeds,
386 &wPreferences.icon_slide_speed, getEnum, NULL, NULL, NULL},
387 {"ShadeSpeed", "medium", seSpeeds,
388 &wPreferences.shade_speed, getEnum, NULL, NULL, NULL},
389 {"BounceAppIconsWhenUrgent", "YES", NULL,
390 &wPreferences.bounce_appicons_when_urgent, getBool, NULL, NULL, NULL},
391 {"RaiseAppIconsWhenBouncing", "NO", NULL,
392 &wPreferences.raise_appicons_when_bouncing, getBool, NULL, NULL, NULL},
393 {"DoNotMakeAppIconsBounce", "NO", NULL,
394 &wPreferences.do_not_make_appicons_bounce, getBool, NULL, NULL, NULL},
395 {"DoubleClickTime", "250", (void *)&wPreferences.dblclick_time,
396 &wPreferences.dblclick_time, getInt, setDoubleClick, NULL, NULL},
397 {"AlignSubmenus", "NO", NULL,
398 &wPreferences.align_menus, getBool, NULL, NULL, NULL},
399 {"ViKeyMenus", "NO", NULL,
400 &wPreferences.vi_key_menus, getBool, NULL, NULL, NULL},
401 {"OpenTransientOnOwnerWorkspace", "NO", NULL,
402 &wPreferences.open_transients_with_parent, getBool, NULL, NULL, NULL},
403 {"WindowPlacement", "auto", sePlacements,
404 &wPreferences.window_placement, getEnum, NULL, NULL, NULL},
405 {"IgnoreFocusClick", "NO", NULL,
406 &wPreferences.ignore_focus_click, getBool, NULL, NULL, NULL},
407 {"UseSaveUnders", "NO", NULL,
408 &wPreferences.use_saveunders, getBool, NULL, NULL, NULL},
409 {"OpaqueMove", "NO", NULL,
410 &wPreferences.opaque_move, getBool, NULL, NULL, NULL},
411 {"OpaqueResize", "NO", NULL,
412 &wPreferences.opaque_resize, getBool, NULL, NULL, NULL},
413 {"OpaqueMoveResizeKeyboard", "NO", NULL,
414 &wPreferences.opaque_move_resize_keyboard, getBool, NULL, NULL, NULL},
415 {"DisableAnimations", "NO", NULL,
416 &wPreferences.no_animations, getBool, NULL, NULL, NULL},
417 {"DontLinkWorkspaces", "NO", NULL,
418 &wPreferences.no_autowrap, getBool, NULL, NULL, NULL},
419 {"AutoArrangeIcons", "NO", NULL,
420 &wPreferences.auto_arrange_icons, getBool, NULL, NULL, NULL},
421 {"NoWindowOverDock", "NO", NULL,
422 &wPreferences.no_window_over_dock, getBool, updateUsableArea, NULL, NULL},
423 {"NoWindowOverIcons", "NO", NULL,
424 &wPreferences.no_window_over_icons, getBool, updateUsableArea, NULL, NULL},
425 {"WindowPlaceOrigin", "(0, 0)", NULL,
426 &wPreferences.window_place_origin, getCoord, NULL, NULL, NULL},
427 {"ResizeDisplay", "corner", seGeomDisplays,
428 &wPreferences.size_display, getEnum, NULL, NULL, NULL},
429 {"MoveDisplay", "corner", seGeomDisplays,
430 &wPreferences.move_display, getEnum, NULL, NULL, NULL},
431 {"DontConfirmKill", "NO", NULL,
432 &wPreferences.dont_confirm_kill, getBool, NULL, NULL, NULL},
433 {"WindowTitleBalloons", "NO", NULL,
434 &wPreferences.window_balloon, getBool, NULL, NULL, NULL},
435 {"MiniwindowTitleBalloons", "NO", NULL,
436 &wPreferences.miniwin_balloon, getBool, NULL, NULL, NULL},
437 {"AppIconBalloons", "NO", NULL,
438 &wPreferences.appicon_balloon, getBool, NULL, NULL, NULL},
439 {"HelpBalloons", "NO", NULL,
440 &wPreferences.help_balloon, getBool, NULL, NULL, NULL},
441 {"EdgeResistance", "30", NULL,
442 &wPreferences.edge_resistance, getInt, NULL, NULL, NULL},
443 {"ResizeIncrement", "32", NULL,
444 &wPreferences.resize_increment, getInt, NULL, NULL, NULL},
445 {"Attraction", "NO", NULL,
446 &wPreferences.attract, getBool, NULL, NULL, NULL},
447 {"DisableBlinking", "NO", NULL,
448 &wPreferences.dont_blink, getBool, NULL, NULL, NULL},
449 {"SingleClickLaunch", "NO", NULL,
450 &wPreferences.single_click, getBool, NULL, NULL, NULL},
452 /* style options */
454 {"MenuStyle", "normal", seMenuStyles,
455 &wPreferences.menu_style, getEnum, setMenuStyle, NULL, NULL},
456 {"WidgetColor", "(solid, gray)", NULL,
457 NULL, getTexture, setWidgetColor, NULL, NULL},
458 {"WorkspaceSpecificBack", "()", NULL,
459 NULL, getWSSpecificBackground, setWorkspaceSpecificBack, NULL, NULL},
460 /* WorkspaceBack must come after WorkspaceSpecificBack or
461 * WorkspaceBack wont know WorkspaceSpecificBack was also
462 * specified and 2 copies of wmsetbg will be launched */
463 {"WorkspaceBack", "(solid, black)", NULL,
464 NULL, getWSBackground, setWorkspaceBack, NULL, NULL},
465 {"SmoothWorkspaceBack", "NO", NULL,
466 NULL, getBool, NULL, NULL, NULL},
467 {"IconBack", "(solid, gray)", NULL,
468 NULL, getTexture, setIconTile, NULL, NULL},
469 {"TitleJustify", "center", seJustifications,
470 &wPreferences.title_justification, getEnum, setJustify, NULL, NULL},
471 {"WindowTitleFont", DEF_TITLE_FONT, NULL,
472 NULL, getFont, setWinTitleFont, NULL, NULL},
473 {"WindowTitleExtendSpace", DEF_WINDOW_TITLE_EXTEND_SPACE, NULL,
474 &wPreferences.window_title_clearance, getInt, setClearance, NULL, NULL},
475 {"WindowTitleMinHeight", "0", NULL,
476 &wPreferences.window_title_min_height, getInt, setClearance, NULL, NULL},
477 {"WindowTitleMaxHeight", NUM2STRING(INT_MAX), NULL,
478 &wPreferences.window_title_max_height, getInt, setClearance, NULL, NULL},
479 {"MenuTitleExtendSpace", DEF_MENU_TITLE_EXTEND_SPACE, NULL,
480 &wPreferences.menu_title_clearance, getInt, setClearance, NULL, NULL},
481 {"MenuTitleMinHeight", "0", NULL,
482 &wPreferences.menu_title_min_height, getInt, setClearance, NULL, NULL},
483 {"MenuTitleMaxHeight", NUM2STRING(INT_MAX), NULL,
484 &wPreferences.menu_title_max_height, getInt, setClearance, NULL, NULL},
485 {"MenuTextExtendSpace", DEF_MENU_TEXT_EXTEND_SPACE, NULL,
486 &wPreferences.menu_text_clearance, getInt, setClearance, NULL, NULL},
487 {"MenuTitleFont", DEF_MENU_TITLE_FONT, NULL,
488 NULL, getFont, setMenuTitleFont, NULL, NULL},
489 {"MenuTextFont", DEF_MENU_ENTRY_FONT, NULL,
490 NULL, getFont, setMenuTextFont, NULL, NULL},
491 {"IconTitleFont", DEF_ICON_TITLE_FONT, NULL,
492 NULL, getFont, setIconTitleFont, NULL, NULL},
493 {"ClipTitleFont", DEF_CLIP_TITLE_FONT, NULL,
494 NULL, getFont, setClipTitleFont, NULL, NULL},
495 {"ShowClipTitle", "YES", NULL,
496 &wPreferences.show_clip_title, getBool, NULL, NULL, NULL},
497 {"LargeDisplayFont", DEF_WORKSPACE_NAME_FONT, NULL,
498 NULL, getFont, setLargeDisplayFont, NULL, NULL},
499 {"HighlightColor", "white", NULL,
500 NULL, getColor, setHightlight, NULL, NULL},
501 {"HighlightTextColor", "black", NULL,
502 NULL, getColor, setHightlightText, NULL, NULL},
503 {"ClipTitleColor", "black", (void *)CLIP_NORMAL,
504 NULL, getColor, setClipTitleColor, NULL, NULL},
505 {"CClipTitleColor", "\"#454045\"", (void *)CLIP_COLLAPSED,
506 NULL, getColor, setClipTitleColor, NULL, NULL},
507 {"FTitleColor", "white", (void *)WS_FOCUSED,
508 NULL, getColor, setWTitleColor, NULL, NULL},
509 {"PTitleColor", "white", (void *)WS_PFOCUSED,
510 NULL, getColor, setWTitleColor, NULL, NULL},
511 {"UTitleColor", "black", (void *)WS_UNFOCUSED,
512 NULL, getColor, setWTitleColor, NULL, NULL},
513 {"FTitleBack", "(solid, black)", NULL,
514 NULL, getTexture, setFTitleBack, NULL, NULL},
515 {"PTitleBack", "(solid, \"#616161\")", NULL,
516 NULL, getTexture, setPTitleBack, NULL, NULL},
517 {"UTitleBack", "(solid, gray)", NULL,
518 NULL, getTexture, setUTitleBack, NULL, NULL},
519 {"ResizebarBack", "(solid, gray)", NULL,
520 NULL, getTexture, setResizebarBack, NULL, NULL},
521 {"MenuTitleColor", "white", NULL,
522 NULL, getColor, setMenuTitleColor, NULL, NULL},
523 {"MenuTextColor", "black", NULL,
524 NULL, getColor, setMenuTextColor, NULL, NULL},
525 {"MenuDisabledColor", "\"#616161\"", NULL,
526 NULL, getColor, setMenuDisabledColor, NULL, NULL},
527 {"MenuTitleBack", "(solid, black)", NULL,
528 NULL, getTexture, setMenuTitleBack, NULL, NULL},
529 {"MenuTextBack", "(solid, gray)", NULL,
530 NULL, getTexture, setMenuTextBack, NULL, NULL},
531 {"IconTitleColor", "white", NULL,
532 NULL, getColor, setIconTitleColor, NULL, NULL},
533 {"IconTitleBack", "black", NULL,
534 NULL, getColor, setIconTitleBack, NULL, NULL},
535 {"SwitchPanelImages", "(swtile.png, swback.png, 30, 40)", &wPreferences,
536 NULL, getPropList, setSwPOptions, NULL, NULL},
537 {"ModifierKeyLabels", "(\"Shift+\", \"Ctrl+\", \"Mod1+\", \"Mod2+\", \"Mod3+\", \"Mod4+\", \"Mod5+\")", &wPreferences,
538 NULL, getPropList, setModifierKeyLabels, NULL, NULL},
540 /* keybindings */
542 {"RootMenuKey", "None", (void *)WKBD_ROOTMENU,
543 NULL, getKeybind, setKeyGrab, NULL, NULL},
544 {"WindowListKey", "None", (void *)WKBD_WINDOWLIST,
545 NULL, getKeybind, setKeyGrab, NULL, NULL},
546 {"WindowMenuKey", "None", (void *)WKBD_WINDOWMENU,
547 NULL, getKeybind, setKeyGrab, NULL, NULL},
548 {"DockRaiseLowerKey", "None", (void*)WKBD_DOCKRAISELOWER,
549 NULL, getKeybind, setKeyGrab, NULL, NULL},
550 {"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER,
551 NULL, getKeybind, setKeyGrab, NULL, NULL},
552 {"MiniaturizeKey", "None", (void *)WKBD_MINIATURIZE,
553 NULL, getKeybind, setKeyGrab, NULL, NULL},
554 {"MinimizeAllKey", "None", (void *)WKBD_MINIMIZEALL,
555 NULL, getKeybind, setKeyGrab, NULL, NULL },
556 {"HideKey", "None", (void *)WKBD_HIDE,
557 NULL, getKeybind, setKeyGrab, NULL, NULL},
558 {"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS,
559 NULL, getKeybind, setKeyGrab, NULL, NULL},
560 {"MoveResizeKey", "None", (void *)WKBD_MOVERESIZE,
561 NULL, getKeybind, setKeyGrab, NULL, NULL},
562 {"CloseKey", "None", (void *)WKBD_CLOSE,
563 NULL, getKeybind, setKeyGrab, NULL, NULL},
564 {"MaximizeKey", "None", (void *)WKBD_MAXIMIZE,
565 NULL, getKeybind, setKeyGrab, NULL, NULL},
566 {"VMaximizeKey", "None", (void *)WKBD_VMAXIMIZE,
567 NULL, getKeybind, setKeyGrab, NULL, NULL},
568 {"HMaximizeKey", "None", (void *)WKBD_HMAXIMIZE,
569 NULL, getKeybind, setKeyGrab, NULL, NULL},
570 {"LHMaximizeKey", "None", (void*)WKBD_LHMAXIMIZE,
571 NULL, getKeybind, setKeyGrab, NULL, NULL},
572 {"RHMaximizeKey", "None", (void*)WKBD_RHMAXIMIZE,
573 NULL, getKeybind, setKeyGrab, NULL, NULL},
574 {"MaximusKey", "None", (void*)WKBD_MAXIMUS,
575 NULL, getKeybind, setKeyGrab, NULL, NULL},
576 {"RaiseKey", "\"Meta+Up\"", (void *)WKBD_RAISE,
577 NULL, getKeybind, setKeyGrab, NULL, NULL},
578 {"LowerKey", "\"Meta+Down\"", (void *)WKBD_LOWER,
579 NULL, getKeybind, setKeyGrab, NULL, NULL},
580 {"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER,
581 NULL, getKeybind, setKeyGrab, NULL, NULL},
582 {"ShadeKey", "None", (void *)WKBD_SHADE,
583 NULL, getKeybind, setKeyGrab, NULL, NULL},
584 {"SelectKey", "None", (void *)WKBD_SELECT,
585 NULL, getKeybind, setKeyGrab, NULL, NULL},
586 {"FocusNextKey", "None", (void *)WKBD_FOCUSNEXT,
587 NULL, getKeybind, setKeyGrab, NULL, NULL},
588 {"FocusPrevKey", "None", (void *)WKBD_FOCUSPREV,
589 NULL, getKeybind, setKeyGrab, NULL, NULL},
590 {"GroupNextKey", "None", (void *)WKBD_GROUPNEXT,
591 NULL, getKeybind, setKeyGrab, NULL, NULL},
592 {"GroupPrevKey", "None", (void *)WKBD_GROUPPREV,
593 NULL, getKeybind, setKeyGrab, NULL, NULL},
594 {"NextWorkspaceKey", "None", (void *)WKBD_NEXTWORKSPACE,
595 NULL, getKeybind, setKeyGrab, NULL, NULL},
596 {"PrevWorkspaceKey", "None", (void *)WKBD_PREVWORKSPACE,
597 NULL, getKeybind, setKeyGrab, NULL, NULL},
598 {"NextWorkspaceLayerKey", "None", (void *)WKBD_NEXTWSLAYER,
599 NULL, getKeybind, setKeyGrab, NULL, NULL},
600 {"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER,
601 NULL, getKeybind, setKeyGrab, NULL, NULL},
602 {"Workspace1Key", "None", (void *)WKBD_WORKSPACE1,
603 NULL, getKeybind, setKeyGrab, NULL, NULL},
604 {"Workspace2Key", "None", (void *)WKBD_WORKSPACE2,
605 NULL, getKeybind, setKeyGrab, NULL, NULL},
606 {"Workspace3Key", "None", (void *)WKBD_WORKSPACE3,
607 NULL, getKeybind, setKeyGrab, NULL, NULL},
608 {"Workspace4Key", "None", (void *)WKBD_WORKSPACE4,
609 NULL, getKeybind, setKeyGrab, NULL, NULL},
610 {"Workspace5Key", "None", (void *)WKBD_WORKSPACE5,
611 NULL, getKeybind, setKeyGrab, NULL, NULL},
612 {"Workspace6Key", "None", (void *)WKBD_WORKSPACE6,
613 NULL, getKeybind, setKeyGrab, NULL, NULL},
614 {"Workspace7Key", "None", (void *)WKBD_WORKSPACE7,
615 NULL, getKeybind, setKeyGrab, NULL, NULL},
616 {"Workspace8Key", "None", (void *)WKBD_WORKSPACE8,
617 NULL, getKeybind, setKeyGrab, NULL, NULL},
618 {"Workspace9Key", "None", (void *)WKBD_WORKSPACE9,
619 NULL, getKeybind, setKeyGrab, NULL, NULL},
620 {"Workspace10Key", "None", (void *)WKBD_WORKSPACE10,
621 NULL, getKeybind, setKeyGrab, NULL, NULL},
622 {"WindowShortcut1Key", "None", (void *)WKBD_WINDOW1,
623 NULL, getKeybind, setKeyGrab, NULL, NULL},
624 {"WindowShortcut2Key", "None", (void *)WKBD_WINDOW2,
625 NULL, getKeybind, setKeyGrab, NULL, NULL},
626 {"WindowShortcut3Key", "None", (void *)WKBD_WINDOW3,
627 NULL, getKeybind, setKeyGrab, NULL, NULL},
628 {"WindowShortcut4Key", "None", (void *)WKBD_WINDOW4,
629 NULL, getKeybind, setKeyGrab, NULL, NULL},
630 {"WindowShortcut5Key", "None", (void *)WKBD_WINDOW5,
631 NULL, getKeybind, setKeyGrab, NULL, NULL},
632 {"WindowShortcut6Key", "None", (void *)WKBD_WINDOW6,
633 NULL, getKeybind, setKeyGrab, NULL, NULL},
634 {"WindowShortcut7Key", "None", (void *)WKBD_WINDOW7,
635 NULL, getKeybind, setKeyGrab, NULL, NULL},
636 {"WindowShortcut8Key", "None", (void *)WKBD_WINDOW8,
637 NULL, getKeybind, setKeyGrab, NULL, NULL},
638 {"WindowShortcut9Key", "None", (void *)WKBD_WINDOW9,
639 NULL, getKeybind, setKeyGrab, NULL, NULL},
640 {"WindowShortcut10Key", "None", (void *)WKBD_WINDOW10,
641 NULL, getKeybind, setKeyGrab, NULL, NULL},
642 {"WindowRelaunchKey", "None", (void *)WKBD_RELAUNCH,
643 NULL, getKeybind, setKeyGrab, NULL, NULL},
644 {"ScreenSwitchKey", "None", (void *)WKBD_SWITCH_SCREEN,
645 NULL, getKeybind, setKeyGrab, NULL, NULL},
647 #ifdef KEEP_XKB_LOCK_STATUS
648 {"ToggleKbdModeKey", "None", (void *)WKBD_TOGGLE,
649 NULL, getKeybind, setKeyGrab, NULL, NULL},
650 {"KbdModeLock", "NO", NULL,
651 &wPreferences.modelock, getBool, NULL, NULL, NULL},
652 #endif /* KEEP_XKB_LOCK_STATUS */
654 {"NormalCursor", "(builtin, left_ptr)", (void *)WCUR_ROOT,
655 NULL, getCursor, setCursor, NULL, NULL},
656 {"ArrowCursor", "(builtin, top_left_arrow)", (void *)WCUR_ARROW,
657 NULL, getCursor, setCursor, NULL, NULL},
658 {"MoveCursor", "(builtin, fleur)", (void *)WCUR_MOVE,
659 NULL, getCursor, setCursor, NULL, NULL},
660 {"ResizeCursor", "(builtin, sizing)", (void *)WCUR_RESIZE,
661 NULL, getCursor, setCursor, NULL, NULL},
662 {"TopLeftResizeCursor", "(builtin, top_left_corner)", (void *)WCUR_TOPLEFTRESIZE,
663 NULL, getCursor, setCursor, NULL, NULL},
664 {"TopRightResizeCursor", "(builtin, top_right_corner)", (void *)WCUR_TOPRIGHTRESIZE,
665 NULL, getCursor, setCursor, NULL, NULL},
666 {"BottomLeftResizeCursor", "(builtin, bottom_left_corner)", (void *)WCUR_BOTTOMLEFTRESIZE,
667 NULL, getCursor, setCursor, NULL, NULL},
668 {"BottomRightResizeCursor", "(builtin, bottom_right_corner)", (void *)WCUR_BOTTOMRIGHTRESIZE,
669 NULL, getCursor, setCursor, NULL, NULL},
670 {"VerticalResizeCursor", "(builtin, sb_v_double_arrow)", (void *)WCUR_VERTICALRESIZE,
671 NULL, getCursor, setCursor, NULL, NULL},
672 {"HorizontalResizeCursor", "(builtin, sb_h_double_arrow)", (void *)WCUR_HORIZONRESIZE,
673 NULL, getCursor, setCursor, NULL, NULL},
674 {"WaitCursor", "(builtin, watch)", (void *)WCUR_WAIT,
675 NULL, getCursor, setCursor, NULL, NULL},
676 {"QuestionCursor", "(builtin, question_arrow)", (void *)WCUR_QUESTION,
677 NULL, getCursor, setCursor, NULL, NULL},
678 {"TextCursor", "(builtin, xterm)", (void *)WCUR_TEXT,
679 NULL, getCursor, setCursor, NULL, NULL},
680 {"SelectCursor", "(builtin, cross)", (void *)WCUR_SELECT,
681 NULL, getCursor, setCursor, NULL, NULL},
682 {"DialogHistoryLines", "500", NULL,
683 &wPreferences.history_lines, getInt, NULL, NULL, NULL},
684 {"CycleActiveHeadOnly", "NO", NULL,
685 &wPreferences.cycle_active_head_only, getBool, NULL, NULL, NULL}
688 static void initDefaults()
690 unsigned int i;
691 WDefaultEntry *entry;
693 WMPLSetCaseSensitive(False);
695 for (i = 0; i < sizeof(optionList) / sizeof(WDefaultEntry); i++) {
696 entry = &optionList[i];
698 entry->plkey = WMCreatePLString(entry->key);
699 if (entry->default_value)
700 entry->plvalue = WMCreatePropListFromDescription(entry->default_value);
701 else
702 entry->plvalue = NULL;
705 for (i = 0; i < sizeof(staticOptionList) / sizeof(WDefaultEntry); i++) {
706 entry = &staticOptionList[i];
708 entry->plkey = WMCreatePLString(entry->key);
709 if (entry->default_value)
710 entry->plvalue = WMCreatePropListFromDescription(entry->default_value);
711 else
712 entry->plvalue = NULL;
716 static WMPropList *readGlobalDomain(char *domainName, Bool requireDictionary)
718 WMPropList *globalDict = NULL;
719 char path[PATH_MAX];
720 struct stat stbuf;
722 snprintf(path, sizeof(path), "%s/%s/%s", SYSCONFDIR, GLOBAL_DEFAULTS_SUBDIR, domainName);
723 if (stat(path, &stbuf) >= 0) {
724 globalDict = WMReadPropListFromFile(path);
725 if (globalDict && requireDictionary && !WMIsPLDictionary(globalDict)) {
726 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"), domainName, path);
727 WMReleasePropList(globalDict);
728 globalDict = NULL;
729 } else if (!globalDict) {
730 wwarning(_("could not load domain %s from global defaults database"), domainName);
734 return globalDict;
737 #if defined(GLOBAL_PREAMBLE_MENU_FILE) || defined(GLOBAL_EPILOGUE_MENU_FILE)
738 static void prependMenu(WMPropList * destarr, WMPropList * array)
740 WMPropList *item;
741 int i;
743 for (i = 0; i < WMGetPropListItemCount(array); i++) {
744 item = WMGetFromPLArray(array, i);
745 if (item)
746 WMInsertInPLArray(destarr, i + 1, item);
750 static void appendMenu(WMPropList * destarr, WMPropList * array)
752 WMPropList *item;
753 int i;
755 for (i = 0; i < WMGetPropListItemCount(array); i++) {
756 item = WMGetFromPLArray(array, i);
757 if (item)
758 WMAddToPLArray(destarr, item);
761 #endif
763 void wDefaultsMergeGlobalMenus(WDDomain * menuDomain)
765 WMPropList *menu = menuDomain->dictionary;
766 WMPropList *submenu;
768 if (!menu || !WMIsPLArray(menu))
769 return;
771 #ifdef GLOBAL_PREAMBLE_MENU_FILE
772 submenu = WMReadPropListFromFile(SYSCONFDIR "/" GLOBAL_DEFAULTS_SUBDIR "/" GLOBAL_PREAMBLE_MENU_FILE);
774 if (submenu && !WMIsPLArray(submenu)) {
775 wwarning(_("invalid global menu file %s"), GLOBAL_PREAMBLE_MENU_FILE);
776 WMReleasePropList(submenu);
777 submenu = NULL;
779 if (submenu) {
780 prependMenu(menu, submenu);
781 WMReleasePropList(submenu);
783 #endif
785 #ifdef GLOBAL_EPILOGUE_MENU_FILE
786 submenu = WMReadPropListFromFile(SYSCONFDIR "/" GLOBAL_DEFAULTS_SUBDIR "/" GLOBAL_EPILOGUE_MENU_FILE);
788 if (submenu && !WMIsPLArray(submenu)) {
789 wwarning(_("invalid global menu file %s"), GLOBAL_EPILOGUE_MENU_FILE);
790 WMReleasePropList(submenu);
791 submenu = NULL;
793 if (submenu) {
794 appendMenu(menu, submenu);
795 WMReleasePropList(submenu);
797 #endif
799 menuDomain->dictionary = menu;
802 WDDomain *wDefaultsInitDomain(char *domain, Bool requireDictionary)
804 WDDomain *db;
805 struct stat stbuf;
806 static int inited = 0;
807 char path[PATH_MAX];
808 char *the_path;
809 WMPropList *shared_dict = NULL;
811 if (!inited) {
812 inited = 1;
813 initDefaults();
816 db = wmalloc(sizeof(WDDomain));
817 memset(db, 0, sizeof(WDDomain));
818 db->domain_name = domain;
819 db->path = wdefaultspathfordomain(domain);
820 the_path = db->path;
822 if (the_path && stat(the_path, &stbuf) >= 0) {
823 db->dictionary = WMReadPropListFromFile(the_path);
824 if (db->dictionary) {
825 if (requireDictionary && !WMIsPLDictionary(db->dictionary)) {
826 WMReleasePropList(db->dictionary);
827 db->dictionary = NULL;
828 wwarning(_("Domain %s (%s) of defaults database is corrupted!"), domain, the_path);
830 db->timestamp = stbuf.st_mtime;
831 } else {
832 wwarning(_("could not load domain %s from user defaults database"), domain);
836 /* global system dictionary */
837 snprintf(path, sizeof(path), "%s/%s/%s", SYSCONFDIR, GLOBAL_DEFAULTS_SUBDIR, domain);
838 if (stat(path, &stbuf) >= 0) {
839 shared_dict = WMReadPropListFromFile(path);
840 if (shared_dict) {
841 if (requireDictionary && !WMIsPLDictionary(shared_dict)) {
842 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
843 domain, path);
844 WMReleasePropList(shared_dict);
845 shared_dict = NULL;
846 } else {
847 if (db->dictionary && WMIsPLDictionary(shared_dict) &&
848 WMIsPLDictionary(db->dictionary)) {
849 WMMergePLDictionaries(shared_dict, db->dictionary, True);
850 WMReleasePropList(db->dictionary);
851 db->dictionary = shared_dict;
852 if (stbuf.st_mtime > db->timestamp)
853 db->timestamp = stbuf.st_mtime;
854 } else if (!db->dictionary) {
855 db->dictionary = shared_dict;
856 if (stbuf.st_mtime > db->timestamp)
857 db->timestamp = stbuf.st_mtime;
860 } else {
861 wwarning(_("could not load domain %s from global defaults database (%s)"), domain, path);
865 return db;
868 void wReadStaticDefaults(WMPropList * dict)
870 WMPropList *plvalue;
871 WDefaultEntry *entry;
872 unsigned int i;
873 void *tdata;
875 for (i = 0; i < sizeof(staticOptionList) / sizeof(WDefaultEntry); i++) {
876 entry = &staticOptionList[i];
878 if (dict)
879 plvalue = WMGetFromPLDictionary(dict, entry->plkey);
880 else
881 plvalue = NULL;
883 if (!plvalue) {
884 /* no default in the DB. Use builtin default */
885 plvalue = entry->plvalue;
888 if (plvalue) {
889 /* convert data */
890 (*entry->convert) (NULL, entry, plvalue, entry->addr, &tdata);
891 if (entry->update) {
892 (*entry->update) (NULL, entry, tdata, entry->extra_data);
898 void wDefaultsCheckDomains(void* arg)
900 WScreen *scr;
901 struct stat stbuf;
902 WMPropList *shared_dict = NULL;
903 WMPropList *dict;
904 int i;
906 if (stat(WDWindowMaker->path, &stbuf) >= 0 && WDWindowMaker->timestamp < stbuf.st_mtime) {
907 WDWindowMaker->timestamp = stbuf.st_mtime;
909 /* Global dictionary */
910 shared_dict = readGlobalDomain("WindowMaker", True);
912 /* User dictionary */
913 dict = WMReadPropListFromFile(WDWindowMaker->path);
915 if (dict) {
916 if (!WMIsPLDictionary(dict)) {
917 WMReleasePropList(dict);
918 dict = NULL;
919 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
920 "WindowMaker", WDWindowMaker->path);
921 } else {
922 if (shared_dict) {
923 WMMergePLDictionaries(shared_dict, dict, True);
924 WMReleasePropList(dict);
925 dict = shared_dict;
926 shared_dict = NULL;
929 for (i = 0; i < wScreenCount; i++) {
930 scr = wScreenWithNumber(i);
931 if (scr)
932 wReadDefaults(scr, dict);
935 if (WDWindowMaker->dictionary)
936 WMReleasePropList(WDWindowMaker->dictionary);
938 WDWindowMaker->dictionary = dict;
940 } else {
941 wwarning(_("could not load domain %s from user defaults database"), "WindowMaker");
944 if (shared_dict)
945 WMReleasePropList(shared_dict);
949 if (stat(WDWindowAttributes->path, &stbuf) >= 0 && WDWindowAttributes->timestamp < stbuf.st_mtime) {
950 /* global dictionary */
951 shared_dict = readGlobalDomain("WMWindowAttributes", True);
952 /* user dictionary */
953 dict = WMReadPropListFromFile(WDWindowAttributes->path);
954 if (dict) {
955 if (!WMIsPLDictionary(dict)) {
956 WMReleasePropList(dict);
957 dict = NULL;
958 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
959 "WMWindowAttributes", WDWindowAttributes->path);
960 } else {
961 if (shared_dict) {
962 WMMergePLDictionaries(shared_dict, dict, True);
963 WMReleasePropList(dict);
964 dict = shared_dict;
965 shared_dict = NULL;
967 if (WDWindowAttributes->dictionary) {
968 WMReleasePropList(WDWindowAttributes->dictionary);
970 WDWindowAttributes->dictionary = dict;
971 for (i = 0; i < wScreenCount; i++) {
972 scr = wScreenWithNumber(i);
973 if (scr) {
974 RImage *image;
976 wDefaultUpdateIcons(scr);
978 /* Update the panel image if changed */
979 /* Don't worry. If the image is the same these
980 * functions will have no performance impact. */
981 image = wDefaultGetImage(scr, "Logo", "WMPanel", wPreferences.icon_size);
983 if (!image) {
984 wwarning(_("could not load logo image for panels: %s"),
985 RMessageForError(RErrorCode));
986 } else {
987 WMSetApplicationIconImage(scr->wmscreen, image);
988 RReleaseImage(image);
993 } else {
994 wwarning(_("could not load domain %s from user defaults database"), "WMWindowAttributes");
996 WDWindowAttributes->timestamp = stbuf.st_mtime;
997 if (shared_dict) {
998 WMReleasePropList(shared_dict);
1002 if (stat(WDRootMenu->path, &stbuf) >= 0 && WDRootMenu->timestamp < stbuf.st_mtime) {
1003 dict = WMReadPropListFromFile(WDRootMenu->path);
1004 if (dict) {
1005 if (!WMIsPLArray(dict) && !WMIsPLString(dict)) {
1006 WMReleasePropList(dict);
1007 dict = NULL;
1008 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1009 "WMRootMenu", WDRootMenu->path);
1010 } else {
1011 if (WDRootMenu->dictionary) {
1012 WMReleasePropList(WDRootMenu->dictionary);
1014 WDRootMenu->dictionary = dict;
1015 wDefaultsMergeGlobalMenus(WDRootMenu);
1016 scr = wScreenWithNumber(0);
1017 configureMenu(scr, dict, True);
1018 rebind_key_grabs(scr);
1020 } else {
1021 wwarning(_("could not load domain %s from user defaults database"), "WMRootMenu");
1023 WDRootMenu->timestamp = stbuf.st_mtime;
1025 #ifndef HAVE_INOTIFY
1026 if (!arg)
1027 WMAddTimerHandler(DEFAULTS_CHECK_INTERVAL, wDefaultsCheckDomains, arg);
1028 #endif
1031 void wReadDefaults(WScreen * scr, WMPropList * new_dict)
1033 WMPropList *plvalue, *old_value;
1034 WDefaultEntry *entry;
1035 unsigned int i;
1036 int update_workspace_back = 0; /* kluge :/ */
1037 unsigned int needs_refresh;
1038 void *tdata;
1039 WMPropList *old_dict = (WDWindowMaker->dictionary != new_dict ? WDWindowMaker->dictionary : NULL);
1041 needs_refresh = 0;
1043 for (i = 0; i < sizeof(optionList) / sizeof(WDefaultEntry); i++) {
1044 entry = &optionList[i];
1046 if (new_dict)
1047 plvalue = WMGetFromPLDictionary(new_dict, entry->plkey);
1048 else
1049 plvalue = NULL;
1051 if (!old_dict)
1052 old_value = NULL;
1053 else
1054 old_value = WMGetFromPLDictionary(old_dict, entry->plkey);
1056 if (!plvalue && !old_value) {
1057 /* no default in the DB. Use builtin default */
1058 plvalue = entry->plvalue;
1059 if (plvalue && new_dict)
1060 WMPutInPLDictionary(new_dict, entry->plkey, plvalue);
1062 } else if (!plvalue) {
1063 /* value was deleted from DB. Keep current value */
1064 continue;
1065 } else if (!old_value) {
1066 /* set value for the 1st time */
1067 } else if (!WMIsPropListEqualTo(plvalue, old_value)) {
1068 /* value has changed */
1069 } else {
1070 if (strcmp(entry->key, "WorkspaceBack") == 0
1071 && update_workspace_back && scr->flags.backimage_helper_launched) {
1072 } else {
1073 /* value was not changed since last time */
1074 continue;
1078 if (plvalue) {
1079 /* convert data */
1080 if ((*entry->convert) (scr, entry, plvalue, entry->addr, &tdata)) {
1082 * If the WorkspaceSpecificBack data has been changed
1083 * so that the helper will be launched now, we must be
1084 * sure to send the default background texture config
1085 * to the helper.
1087 if (strcmp(entry->key, "WorkspaceSpecificBack") == 0 &&
1088 !scr->flags.backimage_helper_launched)
1089 update_workspace_back = 1;
1091 if (entry->update)
1092 needs_refresh |= (*entry->update) (scr, entry, tdata, entry->extra_data);
1098 if (needs_refresh != 0 && !scr->flags.startup) {
1099 int foo;
1101 foo = 0;
1102 if (needs_refresh & REFRESH_MENU_TITLE_TEXTURE)
1103 foo |= WTextureSettings;
1104 if (needs_refresh & REFRESH_MENU_TITLE_FONT)
1105 foo |= WFontSettings;
1106 if (needs_refresh & REFRESH_MENU_TITLE_COLOR)
1107 foo |= WColorSettings;
1108 if (foo)
1109 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged, NULL,
1110 (void *)(uintptr_t) foo);
1112 foo = 0;
1113 if (needs_refresh & REFRESH_MENU_TEXTURE)
1114 foo |= WTextureSettings;
1115 if (needs_refresh & REFRESH_MENU_FONT)
1116 foo |= WFontSettings;
1117 if (needs_refresh & REFRESH_MENU_COLOR)
1118 foo |= WColorSettings;
1119 if (foo)
1120 WMPostNotificationName(WNMenuAppearanceSettingsChanged, NULL, (void *)(uintptr_t) foo);
1122 foo = 0;
1123 if (needs_refresh & REFRESH_WINDOW_FONT)
1124 foo |= WFontSettings;
1125 if (needs_refresh & REFRESH_WINDOW_TEXTURES)
1126 foo |= WTextureSettings;
1127 if (needs_refresh & REFRESH_WINDOW_TITLE_COLOR)
1128 foo |= WColorSettings;
1129 if (foo)
1130 WMPostNotificationName(WNWindowAppearanceSettingsChanged, NULL, (void *)(uintptr_t) foo);
1132 if (!(needs_refresh & REFRESH_ICON_TILE)) {
1133 foo = 0;
1134 if (needs_refresh & REFRESH_ICON_FONT)
1135 foo |= WFontSettings;
1136 if (needs_refresh & REFRESH_ICON_TITLE_COLOR)
1137 foo |= WTextureSettings;
1138 if (needs_refresh & REFRESH_ICON_TITLE_BACK)
1139 foo |= WTextureSettings;
1140 if (foo)
1141 WMPostNotificationName(WNIconAppearanceSettingsChanged, NULL,
1142 (void *)(uintptr_t) foo);
1144 if (needs_refresh & REFRESH_ICON_TILE)
1145 WMPostNotificationName(WNIconTileSettingsChanged, NULL, NULL);
1149 void wDefaultUpdateIcons(WScreen * scr)
1151 WAppIcon *aicon = scr->app_icon_list;
1152 WWindow *wwin = scr->focused_window;
1153 char *file;
1155 while (aicon) {
1156 file = wDefaultGetIconFile(scr, aicon->wm_instance, aicon->wm_class, False);
1157 if ((file && aicon->icon->file && strcmp(file, aicon->icon->file) != 0)
1158 || (file && !aicon->icon->file)) {
1159 wIconChangeImageFile(aicon->icon, file);
1160 wAppIconPaint(aicon);
1162 aicon = aicon->next;
1165 if (!wPreferences.flags.noclip)
1166 wClipIconPaint(scr->clip_icon);
1168 while (wwin) {
1169 if (wwin->icon && wwin->flags.miniaturized) {
1170 file = wDefaultGetIconFile(scr, wwin->wm_instance, wwin->wm_class, False);
1171 if ((file && wwin->icon->file && strcmp(file, wwin->icon->file) != 0)
1172 || (file && !wwin->icon->file)) {
1173 wIconChangeImageFile(wwin->icon, file);
1176 wwin = wwin->prev;
1180 /* --------------------------- Local ----------------------- */
1182 #define GET_STRING_OR_DEFAULT(x, var) if (!WMIsPLString(value)) { \
1183 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1184 entry->key, x); \
1185 wwarning(_("using default \"%s\" instead"), entry->default_value); \
1186 var = entry->default_value;\
1187 } else var = WMGetFromPLString(value)\
1190 static int string2index(WMPropList * key, WMPropList * val, char *def, WOptionEnumeration * values)
1192 char *str;
1193 WOptionEnumeration *v;
1194 char buffer[TOTAL_VALUES_LENGTH];
1196 if (WMIsPLString(val) && (str = WMGetFromPLString(val))) {
1197 for (v = values; v->string != NULL; v++) {
1198 if (strcasecmp(v->string, str) == 0)
1199 return v->value;
1203 buffer[0] = 0;
1204 for (v = values; v->string != NULL; v++) {
1205 if (!v->is_alias) {
1206 if (buffer[0] != 0)
1207 strcat(buffer, ", ");
1208 snprintf(buffer+strlen(buffer),
1209 sizeof(buffer)-strlen(buffer)-1, "\"%s\"", v->string);
1212 wwarning(_("wrong option value for key \"%s\"; got \"%s\", should be one of %s."),
1213 WMGetFromPLString(key),
1214 WMIsPLString(val) ? WMGetFromPLString(val) : "(unknown)",
1215 buffer);
1217 if (def) {
1218 return string2index(key, val, NULL, values);
1221 return -1;
1225 * value - is the value in the defaults DB
1226 * addr - is the address to store the data
1227 * ret - is the address to store a pointer to a temporary buffer. ret
1228 * must not be freed and is used by the set functions
1230 static int getBool(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1232 static char data;
1233 char *val;
1234 int second_pass = 0;
1236 GET_STRING_OR_DEFAULT("Boolean", val);
1238 again:
1239 if ((val[1] == '\0' && (val[0] == 'y' || val[0] == 'Y'))
1240 || strcasecmp(val, "YES") == 0) {
1242 data = 1;
1243 } else if ((val[1] == '\0' && (val[0] == 'n' || val[0] == 'N'))
1244 || strcasecmp(val, "NO") == 0) {
1245 data = 0;
1246 } else {
1247 int i;
1248 if (sscanf(val, "%i", &i) == 1) {
1249 if (i != 0)
1250 data = 1;
1251 else
1252 data = 0;
1253 } else {
1254 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""), val, entry->key);
1255 if (second_pass == 0) {
1256 val = WMGetFromPLString(entry->plvalue);
1257 second_pass = 1;
1258 wwarning(_("using default \"%s\" instead"), val);
1259 goto again;
1261 return False;
1265 if (ret)
1266 *ret = &data;
1267 if (addr)
1268 *(char *)addr = data;
1270 return True;
1273 static int getInt(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1275 static int data;
1276 char *val;
1278 GET_STRING_OR_DEFAULT("Integer", val);
1280 if (sscanf(val, "%i", &data) != 1) {
1281 wwarning(_("can't convert \"%s\" to integer for key \"%s\""), val, entry->key);
1282 val = WMGetFromPLString(entry->plvalue);
1283 wwarning(_("using default \"%s\" instead"), val);
1284 if (sscanf(val, "%i", &data) != 1) {
1285 return False;
1289 if (ret)
1290 *ret = &data;
1291 if (addr)
1292 *(int *)addr = data;
1294 return True;
1297 static int getCoord(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1299 static WCoord data;
1300 char *val_x, *val_y;
1301 int nelem, changed = 0;
1302 WMPropList *elem_x, *elem_y;
1304 again:
1305 if (!WMIsPLArray(value)) {
1306 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "Coordinate");
1307 if (changed == 0) {
1308 value = entry->plvalue;
1309 changed = 1;
1310 wwarning(_("using default \"%s\" instead"), entry->default_value);
1311 goto again;
1313 return False;
1316 nelem = WMGetPropListItemCount(value);
1317 if (nelem != 2) {
1318 wwarning(_("Incorrect number of elements in array for key \"%s\"."), entry->key);
1319 if (changed == 0) {
1320 value = entry->plvalue;
1321 changed = 1;
1322 wwarning(_("using default \"%s\" instead"), entry->default_value);
1323 goto again;
1325 return False;
1328 elem_x = WMGetFromPLArray(value, 0);
1329 elem_y = WMGetFromPLArray(value, 1);
1331 if (!elem_x || !elem_y || !WMIsPLString(elem_x) || !WMIsPLString(elem_y)) {
1332 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."), entry->key);
1333 if (changed == 0) {
1334 value = entry->plvalue;
1335 changed = 1;
1336 wwarning(_("using default \"%s\" instead"), entry->default_value);
1337 goto again;
1339 return False;
1342 val_x = WMGetFromPLString(elem_x);
1343 val_y = WMGetFromPLString(elem_y);
1345 if (sscanf(val_x, "%i", &data.x) != 1 || sscanf(val_y, "%i", &data.y) != 1) {
1346 wwarning(_("can't convert array to integers for \"%s\"."), entry->key);
1347 if (changed == 0) {
1348 value = entry->plvalue;
1349 changed = 1;
1350 wwarning(_("using default \"%s\" instead"), entry->default_value);
1351 goto again;
1353 return False;
1356 if (data.x < 0)
1357 data.x = 0;
1358 else if (data.x > scr->scr_width / 3)
1359 data.x = scr->scr_width / 3;
1360 if (data.y < 0)
1361 data.y = 0;
1362 else if (data.y > scr->scr_height / 3)
1363 data.y = scr->scr_height / 3;
1365 if (ret)
1366 *ret = &data;
1367 if (addr)
1368 *(WCoord *) addr = data;
1370 return True;
1373 static int getPropList(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1375 WMRetainPropList(value);
1377 *ret = value;
1379 return True;
1382 static int getPathList(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1384 static char *data;
1385 int i, count, len;
1386 char *ptr;
1387 WMPropList *d;
1388 int changed = 0;
1390 again:
1391 if (!WMIsPLArray(value)) {
1392 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "an array of paths");
1393 if (changed == 0) {
1394 value = entry->plvalue;
1395 changed = 1;
1396 wwarning(_("using default \"%s\" instead"), entry->default_value);
1397 goto again;
1399 return False;
1402 i = 0;
1403 count = WMGetPropListItemCount(value);
1404 if (count < 1) {
1405 if (changed == 0) {
1406 value = entry->plvalue;
1407 changed = 1;
1408 wwarning(_("using default \"%s\" instead"), entry->default_value);
1409 goto again;
1411 return False;
1414 len = 0;
1415 for (i = 0; i < count; i++) {
1416 d = WMGetFromPLArray(value, i);
1417 if (!d || !WMIsPLString(d)) {
1418 count = i;
1419 break;
1421 len += strlen(WMGetFromPLString(d)) + 1;
1424 ptr = data = wmalloc(len + 1);
1426 for (i = 0; i < count; i++) {
1427 d = WMGetFromPLArray(value, i);
1428 if (!d || !WMIsPLString(d)) {
1429 break;
1431 strcpy(ptr, WMGetFromPLString(d));
1432 ptr += strlen(WMGetFromPLString(d));
1433 *ptr = ':';
1434 ptr++;
1436 ptr--;
1437 *(ptr--) = 0;
1439 if (*(char **)addr != NULL) {
1440 wfree(*(char **)addr);
1442 *(char **)addr = data;
1444 return True;
1447 static int getEnum(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1449 static signed char data;
1451 data = string2index(entry->plkey, value, entry->default_value, (WOptionEnumeration *) entry->extra_data);
1452 if (data < 0)
1453 return False;
1455 if (ret)
1456 *ret = &data;
1457 if (addr)
1458 *(signed char *)addr = data;
1460 return True;
1464 * (solid <color>)
1465 * (hgradient <color> <color>)
1466 * (vgradient <color> <color>)
1467 * (dgradient <color> <color>)
1468 * (mhgradient <color> <color> ...)
1469 * (mvgradient <color> <color> ...)
1470 * (mdgradient <color> <color> ...)
1471 * (igradient <color1> <color1> <thickness1> <color2> <color2> <thickness2>)
1472 * (tpixmap <file> <color>)
1473 * (spixmap <file> <color>)
1474 * (cpixmap <file> <color>)
1475 * (thgradient <file> <opaqueness> <color> <color>)
1476 * (tvgradient <file> <opaqueness> <color> <color>)
1477 * (tdgradient <file> <opaqueness> <color> <color>)
1478 * (function <lib> <function> ...)
1481 static WTexture *parse_texture(WScreen * scr, WMPropList * pl)
1483 WMPropList *elem;
1484 char *val;
1485 int nelem;
1486 WTexture *texture = NULL;
1488 nelem = WMGetPropListItemCount(pl);
1489 if (nelem < 1)
1490 return NULL;
1492 elem = WMGetFromPLArray(pl, 0);
1493 if (!elem || !WMIsPLString(elem))
1494 return NULL;
1495 val = WMGetFromPLString(elem);
1497 if (strcasecmp(val, "solid") == 0) {
1498 XColor color;
1500 if (nelem != 2)
1501 return NULL;
1503 /* get color */
1505 elem = WMGetFromPLArray(pl, 1);
1506 if (!elem || !WMIsPLString(elem))
1507 return NULL;
1508 val = WMGetFromPLString(elem);
1510 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1511 wwarning(_("\"%s\" is not a valid color name"), val);
1512 return NULL;
1515 texture = (WTexture *) wTextureMakeSolid(scr, &color);
1516 } else if (strcasecmp(val, "dgradient") == 0
1517 || strcasecmp(val, "vgradient") == 0 || strcasecmp(val, "hgradient") == 0) {
1518 RColor color1, color2;
1519 XColor xcolor;
1520 int type;
1522 if (nelem != 3) {
1523 wwarning(_("bad number of arguments in gradient specification"));
1524 return NULL;
1527 if (val[0] == 'd' || val[0] == 'D')
1528 type = WTEX_DGRADIENT;
1529 else if (val[0] == 'h' || val[0] == 'H')
1530 type = WTEX_HGRADIENT;
1531 else
1532 type = WTEX_VGRADIENT;
1534 /* get from color */
1535 elem = WMGetFromPLArray(pl, 1);
1536 if (!elem || !WMIsPLString(elem))
1537 return NULL;
1538 val = WMGetFromPLString(elem);
1540 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1541 wwarning(_("\"%s\" is not a valid color name"), val);
1542 return NULL;
1544 color1.alpha = 255;
1545 color1.red = xcolor.red >> 8;
1546 color1.green = xcolor.green >> 8;
1547 color1.blue = xcolor.blue >> 8;
1549 /* get to color */
1550 elem = WMGetFromPLArray(pl, 2);
1551 if (!elem || !WMIsPLString(elem)) {
1552 return NULL;
1554 val = WMGetFromPLString(elem);
1556 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1557 wwarning(_("\"%s\" is not a valid color name"), val);
1558 return NULL;
1560 color2.alpha = 255;
1561 color2.red = xcolor.red >> 8;
1562 color2.green = xcolor.green >> 8;
1563 color2.blue = xcolor.blue >> 8;
1565 texture = (WTexture *) wTextureMakeGradient(scr, type, &color1, &color2);
1567 } else if (strcasecmp(val, "igradient") == 0) {
1568 RColor colors1[2], colors2[2];
1569 int th1, th2;
1570 XColor xcolor;
1571 int i;
1573 if (nelem != 7) {
1574 wwarning(_("bad number of arguments in gradient specification"));
1575 return NULL;
1578 /* get from color */
1579 for (i = 0; i < 2; i++) {
1580 elem = WMGetFromPLArray(pl, 1 + i);
1581 if (!elem || !WMIsPLString(elem))
1582 return NULL;
1583 val = WMGetFromPLString(elem);
1585 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1586 wwarning(_("\"%s\" is not a valid color name"), val);
1587 return NULL;
1589 colors1[i].alpha = 255;
1590 colors1[i].red = xcolor.red >> 8;
1591 colors1[i].green = xcolor.green >> 8;
1592 colors1[i].blue = xcolor.blue >> 8;
1594 elem = WMGetFromPLArray(pl, 3);
1595 if (!elem || !WMIsPLString(elem))
1596 return NULL;
1597 val = WMGetFromPLString(elem);
1598 th1 = atoi(val);
1600 /* get from color */
1601 for (i = 0; i < 2; i++) {
1602 elem = WMGetFromPLArray(pl, 4 + i);
1603 if (!elem || !WMIsPLString(elem))
1604 return NULL;
1605 val = WMGetFromPLString(elem);
1607 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1608 wwarning(_("\"%s\" is not a valid color name"), val);
1609 return NULL;
1611 colors2[i].alpha = 255;
1612 colors2[i].red = xcolor.red >> 8;
1613 colors2[i].green = xcolor.green >> 8;
1614 colors2[i].blue = xcolor.blue >> 8;
1616 elem = WMGetFromPLArray(pl, 6);
1617 if (!elem || !WMIsPLString(elem))
1618 return NULL;
1619 val = WMGetFromPLString(elem);
1620 th2 = atoi(val);
1622 texture = (WTexture *) wTextureMakeIGradient(scr, th1, colors1, th2, colors2);
1624 } else if (strcasecmp(val, "mhgradient") == 0
1625 || strcasecmp(val, "mvgradient") == 0 || strcasecmp(val, "mdgradient") == 0) {
1626 XColor color;
1627 RColor **colors;
1628 int i, count;
1629 int type;
1631 if (nelem < 3) {
1632 wwarning(_("too few arguments in multicolor gradient specification"));
1633 return NULL;
1636 if (val[1] == 'h' || val[1] == 'H')
1637 type = WTEX_MHGRADIENT;
1638 else if (val[1] == 'v' || val[1] == 'V')
1639 type = WTEX_MVGRADIENT;
1640 else
1641 type = WTEX_MDGRADIENT;
1643 count = nelem - 1;
1645 colors = wmalloc(sizeof(RColor *) * (count + 1));
1647 for (i = 0; i < count; i++) {
1648 elem = WMGetFromPLArray(pl, i + 1);
1649 if (!elem || !WMIsPLString(elem)) {
1650 for (--i; i >= 0; --i) {
1651 wfree(colors[i]);
1653 wfree(colors);
1654 return NULL;
1656 val = WMGetFromPLString(elem);
1658 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1659 wwarning(_("\"%s\" is not a valid color name"), val);
1660 for (--i; i >= 0; --i) {
1661 wfree(colors[i]);
1663 wfree(colors);
1664 return NULL;
1665 } else {
1666 colors[i] = wmalloc(sizeof(RColor));
1667 colors[i]->red = color.red >> 8;
1668 colors[i]->green = color.green >> 8;
1669 colors[i]->blue = color.blue >> 8;
1672 colors[i] = NULL;
1674 texture = (WTexture *) wTextureMakeMGradient(scr, type, colors);
1675 } else if (strcasecmp(val, "spixmap") == 0 ||
1676 strcasecmp(val, "cpixmap") == 0 || strcasecmp(val, "tpixmap") == 0) {
1677 XColor color;
1678 int type;
1680 if (nelem != 3)
1681 return NULL;
1683 if (val[0] == 's' || val[0] == 'S')
1684 type = WTP_SCALE;
1685 else if (val[0] == 'c' || val[0] == 'C')
1686 type = WTP_CENTER;
1687 else
1688 type = WTP_TILE;
1690 /* get color */
1691 elem = WMGetFromPLArray(pl, 2);
1692 if (!elem || !WMIsPLString(elem)) {
1693 return NULL;
1695 val = WMGetFromPLString(elem);
1697 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1698 wwarning(_("\"%s\" is not a valid color name"), val);
1699 return NULL;
1702 /* file name */
1703 elem = WMGetFromPLArray(pl, 1);
1704 if (!elem || !WMIsPLString(elem))
1705 return NULL;
1706 val = WMGetFromPLString(elem);
1708 texture = (WTexture *) wTextureMakePixmap(scr, type, val, &color);
1709 } else if (strcasecmp(val, "thgradient") == 0
1710 || strcasecmp(val, "tvgradient") == 0 || strcasecmp(val, "tdgradient") == 0) {
1711 RColor color1, color2;
1712 XColor xcolor;
1713 int opacity;
1714 int style;
1716 if (val[1] == 'h' || val[1] == 'H')
1717 style = WTEX_THGRADIENT;
1718 else if (val[1] == 'v' || val[1] == 'V')
1719 style = WTEX_TVGRADIENT;
1720 else
1721 style = WTEX_TDGRADIENT;
1723 if (nelem != 5) {
1724 wwarning(_("bad number of arguments in textured gradient specification"));
1725 return NULL;
1728 /* get from color */
1729 elem = WMGetFromPLArray(pl, 3);
1730 if (!elem || !WMIsPLString(elem))
1731 return NULL;
1732 val = WMGetFromPLString(elem);
1734 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1735 wwarning(_("\"%s\" is not a valid color name"), val);
1736 return NULL;
1738 color1.alpha = 255;
1739 color1.red = xcolor.red >> 8;
1740 color1.green = xcolor.green >> 8;
1741 color1.blue = xcolor.blue >> 8;
1743 /* get to color */
1744 elem = WMGetFromPLArray(pl, 4);
1745 if (!elem || !WMIsPLString(elem)) {
1746 return NULL;
1748 val = WMGetFromPLString(elem);
1750 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1751 wwarning(_("\"%s\" is not a valid color name"), val);
1752 return NULL;
1754 color2.alpha = 255;
1755 color2.red = xcolor.red >> 8;
1756 color2.green = xcolor.green >> 8;
1757 color2.blue = xcolor.blue >> 8;
1759 /* get opacity */
1760 elem = WMGetFromPLArray(pl, 2);
1761 if (!elem || !WMIsPLString(elem))
1762 opacity = 128;
1763 else
1764 val = WMGetFromPLString(elem);
1766 if (!val || (opacity = atoi(val)) < 0 || opacity > 255) {
1767 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val);
1768 opacity = 128;
1771 /* get file name */
1772 elem = WMGetFromPLArray(pl, 1);
1773 if (!elem || !WMIsPLString(elem))
1774 return NULL;
1775 val = WMGetFromPLString(elem);
1777 texture = (WTexture *) wTextureMakeTGradient(scr, style, &color1, &color2, val, opacity);
1778 } else if (strcasecmp(val, "function") == 0) {
1779 /* Leave this in to handle the unlikely case of
1780 * someone actually having function textures configured */
1781 wwarning("function texture support has been removed");
1782 return NULL;
1783 } else {
1784 wwarning(_("invalid texture type %s"), val);
1785 return NULL;
1787 return texture;
1790 static int getTexture(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1792 static WTexture *texture;
1793 int changed = 0;
1795 again:
1796 if (!WMIsPLArray(value)) {
1797 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "Texture");
1798 if (changed == 0) {
1799 value = entry->plvalue;
1800 changed = 1;
1801 wwarning(_("using default \"%s\" instead"), entry->default_value);
1802 goto again;
1804 return False;
1807 if (strcmp(entry->key, "WidgetColor") == 0 && !changed) {
1808 WMPropList *pl;
1810 pl = WMGetFromPLArray(value, 0);
1811 if (!pl || !WMIsPLString(pl) || !WMGetFromPLString(pl)
1812 || strcasecmp(WMGetFromPLString(pl), "solid") != 0) {
1813 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1814 entry->key, "Solid Texture");
1816 value = entry->plvalue;
1817 changed = 1;
1818 wwarning(_("using default \"%s\" instead"), entry->default_value);
1819 goto again;
1823 texture = parse_texture(scr, value);
1825 if (!texture) {
1826 wwarning(_("Error in texture specification for key \"%s\""), entry->key);
1827 if (changed == 0) {
1828 value = entry->plvalue;
1829 changed = 1;
1830 wwarning(_("using default \"%s\" instead"), entry->default_value);
1831 goto again;
1833 return False;
1836 if (ret)
1837 *ret = &texture;
1839 if (addr)
1840 *(WTexture **) addr = texture;
1842 return True;
1845 static int getWSBackground(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1847 WMPropList *elem;
1848 int changed = 0;
1849 char *val;
1850 int nelem;
1852 again:
1853 if (!WMIsPLArray(value)) {
1854 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1855 "WorkspaceBack", "Texture or None");
1856 if (changed == 0) {
1857 value = entry->plvalue;
1858 changed = 1;
1859 wwarning(_("using default \"%s\" instead"), entry->default_value);
1860 goto again;
1862 return False;
1865 /* only do basic error checking and verify for None texture */
1867 nelem = WMGetPropListItemCount(value);
1868 if (nelem > 0) {
1869 elem = WMGetFromPLArray(value, 0);
1870 if (!elem || !WMIsPLString(elem)) {
1871 wwarning(_("Wrong type for workspace background. Should be a texture type."));
1872 if (changed == 0) {
1873 value = entry->plvalue;
1874 changed = 1;
1875 wwarning(_("using default \"%s\" instead"), entry->default_value);
1876 goto again;
1878 return False;
1880 val = WMGetFromPLString(elem);
1882 if (strcasecmp(val, "None") == 0)
1883 return True;
1885 *ret = WMRetainPropList(value);
1887 return True;
1890 static int
1891 getWSSpecificBackground(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1893 WMPropList *elem;
1894 int nelem;
1895 int changed = 0;
1897 again:
1898 if (!WMIsPLArray(value)) {
1899 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1900 "WorkspaceSpecificBack", "an array of textures");
1901 if (changed == 0) {
1902 value = entry->plvalue;
1903 changed = 1;
1904 wwarning(_("using default \"%s\" instead"), entry->default_value);
1905 goto again;
1907 return False;
1910 /* only do basic error checking and verify for None texture */
1912 nelem = WMGetPropListItemCount(value);
1913 if (nelem > 0) {
1914 while (nelem--) {
1915 elem = WMGetFromPLArray(value, nelem);
1916 if (!elem || !WMIsPLArray(elem)) {
1917 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
1918 nelem);
1923 *ret = WMRetainPropList(value);
1925 #ifdef notworking
1927 * Kluge to force wmsetbg helper to set the default background.
1928 * If the WorkspaceSpecificBack is changed once wmaker has started,
1929 * the WorkspaceBack won't be sent to the helper, unless the user
1930 * changes it's value too. So, we must force this by removing the
1931 * value from the defaults DB.
1933 if (!scr->flags.backimage_helper_launched && !scr->flags.startup) {
1934 WMPropList *key = WMCreatePLString("WorkspaceBack");
1936 WMRemoveFromPLDictionary(WDWindowMaker->dictionary, key);
1938 WMReleasePropList(key);
1940 #endif
1941 return True;
1944 static int getFont(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1946 static WMFont *font;
1947 char *val;
1949 GET_STRING_OR_DEFAULT("Font", val);
1951 font = WMCreateFont(scr->wmscreen, val);
1952 if (!font)
1953 font = WMCreateFont(scr->wmscreen, "fixed");
1955 if (!font) {
1956 wfatal(_("could not load any usable font!!!"));
1957 exit(1);
1960 if (ret)
1961 *ret = font;
1963 /* can't assign font value outside update function */
1964 wassertrv(addr == NULL, True);
1966 return True;
1969 static int getColor(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1971 static XColor color;
1972 char *val;
1973 int second_pass = 0;
1975 GET_STRING_OR_DEFAULT("Color", val);
1977 again:
1978 if (!wGetColor(scr, val, &color)) {
1979 wwarning(_("could not get color for key \"%s\""), entry->key);
1980 if (second_pass == 0) {
1981 val = WMGetFromPLString(entry->plvalue);
1982 second_pass = 1;
1983 wwarning(_("using default \"%s\" instead"), val);
1984 goto again;
1986 return False;
1989 if (ret)
1990 *ret = &color;
1992 assert(addr == NULL);
1994 if (addr)
1995 *(unsigned long*)addr = pixel;
1998 return True;
2001 static int getKeybind(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2003 static WShortKey shortcut;
2004 KeySym ksym;
2005 char *val;
2006 char *k;
2007 char buf[MAX_SHORTCUT_LENGTH], *b;
2009 GET_STRING_OR_DEFAULT("Key spec", val);
2011 if (!val || strcasecmp(val, "NONE") == 0) {
2012 shortcut.keycode = 0;
2013 shortcut.modifier = 0;
2014 if (ret)
2015 *ret = &shortcut;
2016 return True;
2019 wstrlcpy(buf, val, MAX_SHORTCUT_LENGTH);
2021 b = (char *)buf;
2023 /* get modifiers */
2024 shortcut.modifier = 0;
2025 while ((k = strchr(b, '+')) != NULL) {
2026 int mod;
2028 *k = 0;
2029 mod = wXModifierFromKey(b);
2030 if (mod < 0) {
2031 wwarning(_("%s: invalid key modifier \"%s\""), entry->key, b);
2032 return False;
2034 shortcut.modifier |= mod;
2036 b = k + 1;
2039 /* get key */
2040 ksym = XStringToKeysym(b);
2042 if (ksym == NoSymbol) {
2043 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry->key, val);
2044 return False;
2047 shortcut.keycode = XKeysymToKeycode(dpy, ksym);
2048 if (shortcut.keycode == 0) {
2049 wwarning(_("%s:invalid key in shortcut \"%s\""), entry->key, val);
2050 return False;
2053 if (ret)
2054 *ret = &shortcut;
2056 return True;
2059 static int getModMask(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2061 static int mask;
2062 char *str;
2064 GET_STRING_OR_DEFAULT("Modifier Key", str);
2066 if (!str)
2067 return False;
2069 mask = wXModifierFromKey(str);
2070 if (mask < 0) {
2071 wwarning(_("%s: modifier key %s is not valid"), entry->key, str);
2072 mask = 0;
2073 return False;
2076 if (addr)
2077 *(int *)addr = mask;
2079 if (ret)
2080 *ret = &mask;
2082 return True;
2085 # include <X11/cursorfont.h>
2086 typedef struct {
2087 char *name;
2088 int id;
2089 } WCursorLookup;
2091 #define CURSOR_ID_NONE (XC_num_glyphs)
2093 static WCursorLookup cursor_table[] = {
2094 {"X_cursor", XC_X_cursor},
2095 {"arrow", XC_arrow},
2096 {"based_arrow_down", XC_based_arrow_down},
2097 {"based_arrow_up", XC_based_arrow_up},
2098 {"boat", XC_boat},
2099 {"bogosity", XC_bogosity},
2100 {"bottom_left_corner", XC_bottom_left_corner},
2101 {"bottom_right_corner", XC_bottom_right_corner},
2102 {"bottom_side", XC_bottom_side},
2103 {"bottom_tee", XC_bottom_tee},
2104 {"box_spiral", XC_box_spiral},
2105 {"center_ptr", XC_center_ptr},
2106 {"circle", XC_circle},
2107 {"clock", XC_clock},
2108 {"coffee_mug", XC_coffee_mug},
2109 {"cross", XC_cross},
2110 {"cross_reverse", XC_cross_reverse},
2111 {"crosshair", XC_crosshair},
2112 {"diamond_cross", XC_diamond_cross},
2113 {"dot", XC_dot},
2114 {"dotbox", XC_dotbox},
2115 {"double_arrow", XC_double_arrow},
2116 {"draft_large", XC_draft_large},
2117 {"draft_small", XC_draft_small},
2118 {"draped_box", XC_draped_box},
2119 {"exchange", XC_exchange},
2120 {"fleur", XC_fleur},
2121 {"gobbler", XC_gobbler},
2122 {"gumby", XC_gumby},
2123 {"hand1", XC_hand1},
2124 {"hand2", XC_hand2},
2125 {"heart", XC_heart},
2126 {"icon", XC_icon},
2127 {"iron_cross", XC_iron_cross},
2128 {"left_ptr", XC_left_ptr},
2129 {"left_side", XC_left_side},
2130 {"left_tee", XC_left_tee},
2131 {"leftbutton", XC_leftbutton},
2132 {"ll_angle", XC_ll_angle},
2133 {"lr_angle", XC_lr_angle},
2134 {"man", XC_man},
2135 {"middlebutton", XC_middlebutton},
2136 {"mouse", XC_mouse},
2137 {"pencil", XC_pencil},
2138 {"pirate", XC_pirate},
2139 {"plus", XC_plus},
2140 {"question_arrow", XC_question_arrow},
2141 {"right_ptr", XC_right_ptr},
2142 {"right_side", XC_right_side},
2143 {"right_tee", XC_right_tee},
2144 {"rightbutton", XC_rightbutton},
2145 {"rtl_logo", XC_rtl_logo},
2146 {"sailboat", XC_sailboat},
2147 {"sb_down_arrow", XC_sb_down_arrow},
2148 {"sb_h_double_arrow", XC_sb_h_double_arrow},
2149 {"sb_left_arrow", XC_sb_left_arrow},
2150 {"sb_right_arrow", XC_sb_right_arrow},
2151 {"sb_up_arrow", XC_sb_up_arrow},
2152 {"sb_v_double_arrow", XC_sb_v_double_arrow},
2153 {"shuttle", XC_shuttle},
2154 {"sizing", XC_sizing},
2155 {"spider", XC_spider},
2156 {"spraycan", XC_spraycan},
2157 {"star", XC_star},
2158 {"target", XC_target},
2159 {"tcross", XC_tcross},
2160 {"top_left_arrow", XC_top_left_arrow},
2161 {"top_left_corner", XC_top_left_corner},
2162 {"top_right_corner", XC_top_right_corner},
2163 {"top_side", XC_top_side},
2164 {"top_tee", XC_top_tee},
2165 {"trek", XC_trek},
2166 {"ul_angle", XC_ul_angle},
2167 {"umbrella", XC_umbrella},
2168 {"ur_angle", XC_ur_angle},
2169 {"watch", XC_watch},
2170 {"xterm", XC_xterm},
2171 {NULL, CURSOR_ID_NONE}
2174 static void check_bitmap_status(int status, char *filename, Pixmap bitmap)
2176 switch (status) {
2177 case BitmapOpenFailed:
2178 wwarning(_("failed to open bitmap file \"%s\""), filename);
2179 break;
2180 case BitmapFileInvalid:
2181 wwarning(_("\"%s\" is not a valid bitmap file"), filename);
2182 break;
2183 case BitmapNoMemory:
2184 wwarning(_("out of memory reading bitmap file \"%s\""), filename);
2185 break;
2186 case BitmapSuccess:
2187 XFreePixmap(dpy, bitmap);
2188 break;
2193 * (none)
2194 * (builtin, <cursor_name>)
2195 * (bitmap, <cursor_bitmap>, <cursor_mask>)
2197 static int parse_cursor(WScreen * scr, WMPropList * pl, Cursor * cursor)
2199 WMPropList *elem;
2200 char *val;
2201 int nelem;
2202 int status = 0;
2204 nelem = WMGetPropListItemCount(pl);
2205 if (nelem < 1) {
2206 return (status);
2208 elem = WMGetFromPLArray(pl, 0);
2209 if (!elem || !WMIsPLString(elem)) {
2210 return (status);
2212 val = WMGetFromPLString(elem);
2214 if (strcasecmp(val, "none") == 0) {
2215 status = 1;
2216 *cursor = None;
2217 } else if (strcasecmp(val, "builtin") == 0) {
2218 int i;
2219 int cursor_id = CURSOR_ID_NONE;
2221 if (nelem != 2) {
2222 wwarning(_("bad number of arguments in cursor specification"));
2223 return (status);
2225 elem = WMGetFromPLArray(pl, 1);
2226 if (!elem || !WMIsPLString(elem)) {
2227 return (status);
2229 val = WMGetFromPLString(elem);
2231 for (i = 0; cursor_table[i].name != NULL; i++) {
2232 if (strcasecmp(val, cursor_table[i].name) == 0) {
2233 cursor_id = cursor_table[i].id;
2234 break;
2237 if (CURSOR_ID_NONE == cursor_id) {
2238 wwarning(_("unknown builtin cursor name \"%s\""), val);
2239 } else {
2240 *cursor = XCreateFontCursor(dpy, cursor_id);
2241 status = 1;
2243 } else if (strcasecmp(val, "bitmap") == 0) {
2244 char *bitmap_name;
2245 char *mask_name;
2246 int bitmap_status;
2247 int mask_status;
2248 Pixmap bitmap;
2249 Pixmap mask;
2250 unsigned int w, h;
2251 int x, y;
2252 XColor fg, bg;
2254 if (nelem != 3) {
2255 wwarning(_("bad number of arguments in cursor specification"));
2256 return (status);
2258 elem = WMGetFromPLArray(pl, 1);
2259 if (!elem || !WMIsPLString(elem)) {
2260 return (status);
2262 val = WMGetFromPLString(elem);
2263 bitmap_name = FindImage(wPreferences.pixmap_path, val);
2264 if (!bitmap_name) {
2265 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2266 return (status);
2268 elem = WMGetFromPLArray(pl, 2);
2269 if (!elem || !WMIsPLString(elem)) {
2270 wfree(bitmap_name);
2271 return (status);
2273 val = WMGetFromPLString(elem);
2274 mask_name = FindImage(wPreferences.pixmap_path, val);
2275 if (!mask_name) {
2276 wfree(bitmap_name);
2277 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2278 return (status);
2280 mask_status = XReadBitmapFile(dpy, scr->w_win, mask_name, &w, &h, &mask, &x, &y);
2281 bitmap_status = XReadBitmapFile(dpy, scr->w_win, bitmap_name, &w, &h, &bitmap, &x, &y);
2282 if ((BitmapSuccess == bitmap_status) && (BitmapSuccess == mask_status)) {
2283 fg.pixel = scr->black_pixel;
2284 bg.pixel = scr->white_pixel;
2285 XQueryColor(dpy, scr->w_colormap, &fg);
2286 XQueryColor(dpy, scr->w_colormap, &bg);
2287 *cursor = XCreatePixmapCursor(dpy, bitmap, mask, &fg, &bg, x, y);
2288 status = 1;
2290 check_bitmap_status(bitmap_status, bitmap_name, bitmap);
2291 check_bitmap_status(mask_status, mask_name, mask);
2292 wfree(bitmap_name);
2293 wfree(mask_name);
2295 return (status);
2298 static int getCursor(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2300 static Cursor cursor;
2301 int status;
2302 int changed = 0;
2304 again:
2305 if (!WMIsPLArray(value)) {
2306 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2307 entry->key, "cursor specification");
2308 if (!changed) {
2309 value = entry->plvalue;
2310 changed = 1;
2311 wwarning(_("using default \"%s\" instead"), entry->default_value);
2312 goto again;
2314 return (False);
2316 status = parse_cursor(scr, value, &cursor);
2317 if (!status) {
2318 wwarning(_("Error in cursor specification for key \"%s\""), entry->key);
2319 if (!changed) {
2320 value = entry->plvalue;
2321 changed = 1;
2322 wwarning(_("using default \"%s\" instead"), entry->default_value);
2323 goto again;
2325 return (False);
2327 if (ret) {
2328 *ret = &cursor;
2330 if (addr) {
2331 *(Cursor *) addr = cursor;
2333 return (True);
2336 #undef CURSOR_ID_NONE
2338 /* ---------------- value setting functions --------------- */
2339 static int setJustify(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2341 return REFRESH_WINDOW_TITLE_COLOR;
2344 static int setClearance(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2346 return REFRESH_WINDOW_FONT | REFRESH_BUTTON_IMAGES | REFRESH_MENU_TITLE_FONT | REFRESH_MENU_FONT;
2349 static int setIfDockPresent(WScreen * scr, WDefaultEntry * entry, char *flag, long which)
2351 switch (which) {
2352 case WM_DOCK:
2353 wPreferences.flags.nodock = wPreferences.flags.nodock || *flag;
2354 break;
2355 case WM_CLIP:
2356 wPreferences.flags.noclip = wPreferences.flags.noclip || *flag;
2357 break;
2358 default:
2359 break;
2361 return 0;
2364 static int setStickyIcons(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2366 if (scr->workspaces) {
2367 wWorkspaceForceChange(scr, scr->current_workspace);
2368 wArrangeIcons(scr, False);
2370 return 0;
2373 static int setIconTile(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2375 Pixmap pixmap;
2376 RImage *img;
2377 int reset = 0;
2379 img = wTextureRenderImage(*texture, wPreferences.icon_size,
2380 wPreferences.icon_size, ((*texture)->any.type & WREL_BORDER_MASK)
2381 ? WREL_ICON : WREL_FLAT);
2382 if (!img) {
2383 wwarning(_("could not render texture for icon background"));
2384 if (!entry->addr)
2385 wTextureDestroy(scr, *texture);
2386 return 0;
2388 RConvertImage(scr->rcontext, img, &pixmap);
2390 if (scr->icon_tile) {
2391 reset = 1;
2392 RReleaseImage(scr->icon_tile);
2393 XFreePixmap(dpy, scr->icon_tile_pixmap);
2396 scr->icon_tile = img;
2398 /* put the icon in the noticeboard hint */
2399 PropSetIconTileHint(scr, img);
2401 if (!wPreferences.flags.noclip) {
2402 if (scr->clip_tile) {
2403 RReleaseImage(scr->clip_tile);
2405 scr->clip_tile = wClipMakeTile(scr, img);
2408 scr->icon_tile_pixmap = pixmap;
2410 if (scr->def_icon_pixmap) {
2411 XFreePixmap(dpy, scr->def_icon_pixmap);
2412 scr->def_icon_pixmap = None;
2414 if (scr->def_ticon_pixmap) {
2415 XFreePixmap(dpy, scr->def_ticon_pixmap);
2416 scr->def_ticon_pixmap = None;
2419 if (scr->icon_back_texture) {
2420 wTextureDestroy(scr, (WTexture *) scr->icon_back_texture);
2422 scr->icon_back_texture = wTextureMakeSolid(scr, &((*texture)->any.color));
2424 if (scr->clip_balloon)
2425 XSetWindowBackground(dpy, scr->clip_balloon, (*texture)->any.color.pixel);
2428 * Free the texture as nobody else will use it, nor refer to it.
2430 if (!entry->addr)
2431 wTextureDestroy(scr, *texture);
2433 return (reset ? REFRESH_ICON_TILE : 0);
2436 static int setWinTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2438 if (scr->title_font) {
2439 WMReleaseFont(scr->title_font);
2441 scr->title_font = font;
2443 return REFRESH_WINDOW_FONT | REFRESH_BUTTON_IMAGES;
2446 static int setMenuTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2448 if (scr->menu_title_font) {
2449 WMReleaseFont(scr->menu_title_font);
2452 scr->menu_title_font = font;
2454 return REFRESH_MENU_TITLE_FONT;
2457 static int setMenuTextFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2459 if (scr->menu_entry_font) {
2460 WMReleaseFont(scr->menu_entry_font);
2462 scr->menu_entry_font = font;
2464 return REFRESH_MENU_FONT;
2467 static int setIconTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2469 if (scr->icon_title_font) {
2470 WMReleaseFont(scr->icon_title_font);
2473 scr->icon_title_font = font;
2475 return REFRESH_ICON_FONT;
2478 static int setClipTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2480 if (scr->clip_title_font) {
2481 WMReleaseFont(scr->clip_title_font);
2484 scr->clip_title_font = font;
2486 return REFRESH_ICON_FONT;
2489 static int setLargeDisplayFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2491 if (scr->workspace_name_font) {
2492 WMReleaseFont(scr->workspace_name_font);
2495 scr->workspace_name_font = font;
2497 return 0;
2500 static int setHightlight(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2502 if (scr->select_color)
2503 WMReleaseColor(scr->select_color);
2505 scr->select_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2507 wFreeColor(scr, color->pixel);
2509 return REFRESH_MENU_COLOR;
2512 static int setHightlightText(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2514 if (scr->select_text_color)
2515 WMReleaseColor(scr->select_text_color);
2517 scr->select_text_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2519 wFreeColor(scr, color->pixel);
2521 return REFRESH_MENU_COLOR;
2524 static int setClipTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2526 if (scr->clip_title_color[widx])
2527 WMReleaseColor(scr->clip_title_color[widx]);
2529 scr->clip_title_color[widx] = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2530 wFreeColor(scr, color->pixel);
2532 return REFRESH_ICON_TITLE_COLOR;
2535 static int setWTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2537 if (scr->window_title_color[widx])
2538 WMReleaseColor(scr->window_title_color[widx]);
2540 scr->window_title_color[widx] =
2541 WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2543 wFreeColor(scr, color->pixel);
2545 return REFRESH_WINDOW_TITLE_COLOR;
2548 static int setMenuTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2550 if (scr->menu_title_color[0])
2551 WMReleaseColor(scr->menu_title_color[0]);
2553 scr->menu_title_color[0] = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2555 wFreeColor(scr, color->pixel);
2557 return REFRESH_MENU_TITLE_COLOR;
2560 static int setMenuTextColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2562 if (scr->mtext_color)
2563 WMReleaseColor(scr->mtext_color);
2565 scr->mtext_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2567 if (WMColorPixel(scr->dtext_color) == WMColorPixel(scr->mtext_color)) {
2568 WMSetColorAlpha(scr->dtext_color, 0x7fff);
2569 } else {
2570 WMSetColorAlpha(scr->dtext_color, 0xffff);
2573 wFreeColor(scr, color->pixel);
2575 return REFRESH_MENU_COLOR;
2578 static int setMenuDisabledColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2580 if (scr->dtext_color)
2581 WMReleaseColor(scr->dtext_color);
2583 scr->dtext_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2585 if (WMColorPixel(scr->dtext_color) == WMColorPixel(scr->mtext_color)) {
2586 WMSetColorAlpha(scr->dtext_color, 0x7fff);
2587 } else {
2588 WMSetColorAlpha(scr->dtext_color, 0xffff);
2591 wFreeColor(scr, color->pixel);
2593 return REFRESH_MENU_COLOR;
2596 static int setIconTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2598 if (scr->icon_title_color)
2599 WMReleaseColor(scr->icon_title_color);
2600 scr->icon_title_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2602 wFreeColor(scr, color->pixel);
2604 return REFRESH_ICON_TITLE_COLOR;
2607 static int setIconTitleBack(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2609 if (scr->icon_title_texture) {
2610 wTextureDestroy(scr, (WTexture *) scr->icon_title_texture);
2612 scr->icon_title_texture = wTextureMakeSolid(scr, color);
2614 return REFRESH_ICON_TITLE_BACK;
2617 static void trackDeadProcess(pid_t pid, unsigned char status, WScreen * scr)
2619 close(scr->helper_fd);
2620 scr->helper_fd = 0;
2621 scr->helper_pid = 0;
2622 scr->flags.backimage_helper_launched = 0;
2625 static int setWorkspaceSpecificBack(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *bar)
2627 WMPropList *val;
2628 char *str;
2629 int i;
2631 if (scr->flags.backimage_helper_launched) {
2632 if (WMGetPropListItemCount(value) == 0) {
2633 SendHelperMessage(scr, 'C', 0, NULL);
2634 SendHelperMessage(scr, 'K', 0, NULL);
2636 WMReleasePropList(value);
2637 return 0;
2639 } else {
2640 pid_t pid;
2641 int filedes[2];
2643 if (WMGetPropListItemCount(value) == 0)
2644 return 0;
2646 if (pipe(filedes) < 0) {
2647 werror("pipe() failed:can't set workspace specific background image");
2649 WMReleasePropList(value);
2650 return 0;
2653 pid = fork();
2654 if (pid < 0) {
2655 werror("fork() failed:can't set workspace specific background image");
2656 if (close(filedes[0]) < 0)
2657 werror("could not close pipe");
2658 if (close(filedes[1]) < 0)
2659 werror("could not close pipe");
2661 } else if (pid == 0) {
2662 char *dither;
2664 SetupEnvironment(scr);
2666 if (close(0) < 0)
2667 werror("could not close pipe");
2668 if (dup(filedes[0]) < 0) {
2669 werror("dup() failed:can't set workspace specific background image");
2671 dither = wPreferences.no_dithering ? "-m" : "-d";
2672 if (wPreferences.smooth_workspace_back)
2673 execlp("wmsetbg", "wmsetbg", "-helper", "-S", dither, NULL);
2674 else
2675 execlp("wmsetbg", "wmsetbg", "-helper", dither, NULL);
2676 werror("could not execute wmsetbg");
2677 exit(1);
2678 } else {
2680 if (fcntl(filedes[0], F_SETFD, FD_CLOEXEC) < 0) {
2681 werror("error setting close-on-exec flag");
2683 if (fcntl(filedes[1], F_SETFD, FD_CLOEXEC) < 0) {
2684 werror("error setting close-on-exec flag");
2687 scr->helper_fd = filedes[1];
2688 scr->helper_pid = pid;
2689 scr->flags.backimage_helper_launched = 1;
2691 wAddDeathHandler(pid, (WDeathHandler *) trackDeadProcess, scr);
2693 SendHelperMessage(scr, 'P', -1, wPreferences.pixmap_path);
2698 for (i = 0; i < WMGetPropListItemCount(value); i++) {
2699 val = WMGetFromPLArray(value, i);
2700 if (val && WMIsPLArray(val) && WMGetPropListItemCount(val) > 0) {
2701 str = WMGetPropListDescription(val, False);
2703 SendHelperMessage(scr, 'S', i + 1, str);
2705 wfree(str);
2706 } else {
2707 SendHelperMessage(scr, 'U', i + 1, NULL);
2710 sleep(1);
2712 WMReleasePropList(value);
2713 return 0;
2716 static int setWorkspaceBack(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *bar)
2718 if (scr->flags.backimage_helper_launched) {
2719 char *str;
2721 if (WMGetPropListItemCount(value) == 0) {
2722 SendHelperMessage(scr, 'U', 0, NULL);
2723 } else {
2724 /* set the default workspace background to this one */
2725 str = WMGetPropListDescription(value, False);
2726 if (str) {
2727 SendHelperMessage(scr, 'S', 0, str);
2728 wfree(str);
2729 SendHelperMessage(scr, 'C', scr->current_workspace + 1, NULL);
2730 } else {
2731 SendHelperMessage(scr, 'U', 0, NULL);
2734 } else if (WMGetPropListItemCount(value) > 0) {
2735 char *command;
2736 char *text;
2737 char *dither;
2738 int len;
2740 text = WMGetPropListDescription(value, False);
2741 len = strlen(text) + 40;
2742 command = wmalloc(len);
2743 dither = wPreferences.no_dithering ? "-m" : "-d";
2744 if (wPreferences.smooth_workspace_back)
2745 snprintf(command, len, "wmsetbg %s -S -p '%s' &", dither, text);
2746 else
2747 snprintf(command, len, "wmsetbg %s -p '%s' &", dither, text);
2748 wfree(text);
2749 ExecuteShellCommand(scr, command);
2750 wfree(command);
2752 WMReleasePropList(value);
2754 return 0;
2757 static int setWidgetColor(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2759 if (scr->widget_texture) {
2760 wTextureDestroy(scr, (WTexture *) scr->widget_texture);
2762 scr->widget_texture = *(WTexSolid **) texture;
2764 return 0;
2767 static int setFTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2769 if (scr->window_title_texture[WS_FOCUSED]) {
2770 wTextureDestroy(scr, scr->window_title_texture[WS_FOCUSED]);
2772 scr->window_title_texture[WS_FOCUSED] = *texture;
2774 return REFRESH_WINDOW_TEXTURES;
2777 static int setPTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2779 if (scr->window_title_texture[WS_PFOCUSED]) {
2780 wTextureDestroy(scr, scr->window_title_texture[WS_PFOCUSED]);
2782 scr->window_title_texture[WS_PFOCUSED] = *texture;
2784 return REFRESH_WINDOW_TEXTURES;
2787 static int setUTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2789 if (scr->window_title_texture[WS_UNFOCUSED]) {
2790 wTextureDestroy(scr, scr->window_title_texture[WS_UNFOCUSED]);
2792 scr->window_title_texture[WS_UNFOCUSED] = *texture;
2794 return REFRESH_WINDOW_TEXTURES;
2797 static int setResizebarBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2799 if (scr->resizebar_texture[0]) {
2800 wTextureDestroy(scr, scr->resizebar_texture[0]);
2802 scr->resizebar_texture[0] = *texture;
2804 return REFRESH_WINDOW_TEXTURES;
2807 static int setMenuTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2809 if (scr->menu_title_texture[0]) {
2810 wTextureDestroy(scr, scr->menu_title_texture[0]);
2812 scr->menu_title_texture[0] = *texture;
2814 return REFRESH_MENU_TITLE_TEXTURE;
2817 static int setMenuTextBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2819 if (scr->menu_item_texture) {
2820 wTextureDestroy(scr, scr->menu_item_texture);
2821 wTextureDestroy(scr, (WTexture *) scr->menu_item_auxtexture);
2823 scr->menu_item_texture = *texture;
2825 scr->menu_item_auxtexture = wTextureMakeSolid(scr, &scr->menu_item_texture->any.color);
2827 return REFRESH_MENU_TEXTURE;
2830 static int setKeyGrab(WScreen * scr, WDefaultEntry * entry, WShortKey * shortcut, long widx)
2832 WWindow *wwin;
2833 wKeyBindings[widx] = *shortcut;
2835 wwin = scr->focused_window;
2837 while (wwin != NULL) {
2838 XUngrabKey(dpy, AnyKey, AnyModifier, wwin->frame->core->window);
2840 if (!WFLAGP(wwin, no_bind_keys)) {
2841 wWindowSetKeyGrabs(wwin);
2843 wwin = wwin->prev;
2846 return 0;
2849 static int setIconPosition(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2851 wScreenUpdateUsableArea(scr);
2852 wArrangeIcons(scr, True);
2854 return 0;
2857 static int updateUsableArea(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2859 wScreenUpdateUsableArea(scr);
2861 return 0;
2864 static int setMenuStyle(WScreen * scr, WDefaultEntry * entry, int *value, void *foo)
2866 return REFRESH_MENU_TEXTURE;
2869 static RImage *chopOffImage(RImage * image, int x, int y, int w, int h)
2871 RImage *img = RCreateImage(w, h, image->format == RRGBAFormat);
2873 RCopyArea(img, image, x, y, w, h, 0, 0);
2875 return img;
2878 static int setSwPOptions(WScreen * scr, WDefaultEntry * entry, WMPropList * array, void *foo)
2880 char *path;
2881 RImage *bgimage;
2882 int cwidth, cheight;
2883 WPreferences *prefs = (WPreferences *) foo;
2885 if (!WMIsPLArray(array) || WMGetPropListItemCount(array) == 0) {
2886 if (prefs->swtileImage)
2887 RReleaseImage(prefs->swtileImage);
2888 prefs->swtileImage = NULL;
2890 WMReleasePropList(array);
2891 return 0;
2894 switch (WMGetPropListItemCount(array)) {
2895 case 4:
2896 if (!WMIsPLString(WMGetFromPLArray(array, 1))) {
2897 wwarning(_("Invalid arguments for option \"%s\""), entry->key);
2898 break;
2899 } else
2900 path = FindImage(wPreferences.pixmap_path, WMGetFromPLString(WMGetFromPLArray(array, 1)));
2902 if (!path) {
2903 wwarning(_("Could not find image \"%s\" for option \"%s\""),
2904 WMGetFromPLString(WMGetFromPLArray(array, 1)), entry->key);
2905 } else {
2906 bgimage = RLoadImage(scr->rcontext, path, 0);
2907 if (!bgimage) {
2908 wwarning(_("Could not load image \"%s\" for option \"%s\""), path, entry->key);
2909 wfree(path);
2910 } else {
2911 wfree(path);
2913 cwidth = atoi(WMGetFromPLString(WMGetFromPLArray(array, 2)));
2914 cheight = atoi(WMGetFromPLString(WMGetFromPLArray(array, 3)));
2916 if (cwidth <= 0 || cheight <= 0 ||
2917 cwidth >= bgimage->width - 2 || cheight >= bgimage->height - 2)
2918 wwarning(_("Invalid split sizes for SwitchPanel back image."));
2919 else {
2920 int i;
2921 int swidth, theight;
2922 for (i = 0; i < 9; i++) {
2923 if (prefs->swbackImage[i])
2924 RReleaseImage(prefs->swbackImage[i]);
2925 prefs->swbackImage[i] = NULL;
2927 swidth = (bgimage->width - cwidth) / 2;
2928 theight = (bgimage->height - cheight) / 2;
2930 prefs->swbackImage[0] = chopOffImage(bgimage, 0, 0, swidth, theight);
2931 prefs->swbackImage[1] = chopOffImage(bgimage, swidth, 0, cwidth, theight);
2932 prefs->swbackImage[2] = chopOffImage(bgimage, swidth + cwidth, 0,
2933 swidth, theight);
2935 prefs->swbackImage[3] = chopOffImage(bgimage, 0, theight, swidth, cheight);
2936 prefs->swbackImage[4] = chopOffImage(bgimage, swidth, theight,
2937 cwidth, cheight);
2938 prefs->swbackImage[5] = chopOffImage(bgimage, swidth + cwidth, theight,
2939 swidth, cheight);
2941 prefs->swbackImage[6] = chopOffImage(bgimage, 0, theight + cheight,
2942 swidth, theight);
2943 prefs->swbackImage[7] = chopOffImage(bgimage, swidth, theight + cheight,
2944 cwidth, theight);
2945 prefs->swbackImage[8] =
2946 chopOffImage(bgimage, swidth + cwidth, theight + cheight, swidth,
2947 theight);
2949 // check if anything failed
2950 for (i = 0; i < 9; i++) {
2951 if (!prefs->swbackImage[i]) {
2952 for (; i >= 0; --i) {
2953 RReleaseImage(prefs->swbackImage[i]);
2954 prefs->swbackImage[i] = NULL;
2956 break;
2960 RReleaseImage(bgimage);
2964 case 1:
2965 if (!WMIsPLString(WMGetFromPLArray(array, 0))) {
2966 wwarning(_("Invalid arguments for option \"%s\""), entry->key);
2967 break;
2968 } else
2969 path = FindImage(wPreferences.pixmap_path, WMGetFromPLString(WMGetFromPLArray(array, 0)));
2971 if (!path) {
2972 wwarning(_("Could not find image \"%s\" for option \"%s\""),
2973 WMGetFromPLString(WMGetFromPLArray(array, 0)), entry->key);
2974 } else {
2975 if (prefs->swtileImage)
2976 RReleaseImage(prefs->swtileImage);
2978 prefs->swtileImage = RLoadImage(scr->rcontext, path, 0);
2979 if (!prefs->swtileImage) {
2980 wwarning(_("Could not load image \"%s\" for option \"%s\""), path, entry->key);
2982 wfree(path);
2984 break;
2986 default:
2987 wwarning(_("Invalid number of arguments for option \"%s\""), entry->key);
2988 break;
2991 WMReleasePropList(array);
2993 return 0;
2996 static int setModifierKeyLabels(WScreen * scr, WDefaultEntry * entry, WMPropList * array, void *foo)
2998 int i;
2999 WPreferences *prefs = (WPreferences *) foo;
3001 if (!WMIsPLArray(array) || WMGetPropListItemCount(array) != 7) {
3002 wwarning(_("Value for option \"%s\" must be an array of 7 strings"), entry->key);
3003 WMReleasePropList(array);
3004 return 0;
3007 DestroyWindowMenu(scr);
3009 for (i = 0; i < 7; i++) {
3010 if (prefs->modifier_labels[i])
3011 wfree(prefs->modifier_labels[i]);
3013 if (WMIsPLString(WMGetFromPLArray(array, i))) {
3014 prefs->modifier_labels[i] = wstrdup(WMGetFromPLString(WMGetFromPLArray(array, i)));
3015 } else {
3016 wwarning(_("Invalid argument for option \"%s\" item %d"), entry->key, i);
3017 prefs->modifier_labels[i] = NULL;
3021 WMReleasePropList(array);
3023 return 0;
3027 * Very ugly kluge.
3028 * Need access to the double click variables, so that all widgets in
3029 * wmaker panels will have the same dbl-click values.
3030 * TODO: figure a better way of dealing with it.
3032 #include <WINGs/WINGsP.h>
3034 static int setDoubleClick(WScreen * scr, WDefaultEntry * entry, int *value, void *foo)
3036 extern _WINGsConfiguration WINGsConfiguration;
3038 if (*value <= 0)
3039 *(int *)foo = 1;
3041 WINGsConfiguration.doubleClickDelay = *value;
3043 return 0;
3046 static int setCursor(WScreen * scr, WDefaultEntry * entry, Cursor * cursor, long widx)
3048 if (wCursor[widx] != None) {
3049 XFreeCursor(dpy, wCursor[widx]);
3052 wCursor[widx] = *cursor;
3054 if (widx == WCUR_ROOT && *cursor != None) {
3055 XDefineCursor(dpy, scr->root_win, *cursor);
3058 return 0;