8eb960dfdc9210d922a0a955f2ed0c730e71914d
[wmaker-crm.git] / src / defaults.c
blob8eb960dfdc9210d922a0a955f2ed0c730e71914d
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 "main.h"
60 #include "actions.h"
61 #include "dock.h"
62 #include "workspace.h"
63 #include "properties.h"
65 #define MAX_SHORTCUT_LENGTH 32
67 #ifndef GLOBAL_DEFAULTS_SUBDIR
68 #define GLOBAL_DEFAULTS_SUBDIR "WindowMaker"
69 #endif
71 /***** Global *****/
72 extern WDDomain *WDWindowMaker;
73 extern WDDomain *WDWindowAttributes;
74 extern WDDomain *WDRootMenu;
75 extern int wScreenCount;
76 extern WPreferences wPreferences;
77 extern WShortKey wKeyBindings[WKBD_LAST];
79 typedef struct {
80 char *key;
81 char *default_value;
82 void *extra_data;
83 void *addr;
84 int (*convert) ();
85 int (*update) ();
86 WMPropList *plkey;
87 WMPropList *plvalue; /* default value */
88 } WDefaultEntry;
90 /* used to map strings to integers */
91 typedef struct {
92 char *string;
93 short value;
94 char is_alias;
95 } WOptionEnumeration;
97 /* type converters */
98 static int getBool();
99 static int getInt();
100 static int getCoord();
101 static int getPathList();
102 static int getEnum();
103 static int getTexture();
104 static int getWSBackground();
105 static int getWSSpecificBackground();
106 static int getFont();
107 static int getColor();
108 static int getKeybind();
109 static int getModMask();
110 static int getPropList();
112 /* value setting functions */
113 static int setJustify();
114 static int setClearance();
115 static int setIfDockPresent();
116 static int setStickyIcons();
117 static int setWidgetColor();
118 static int setIconTile();
119 static int setWinTitleFont();
120 static int setMenuTitleFont();
121 static int setMenuTextFont();
122 static int setIconTitleFont();
123 static int setIconTitleColor();
124 static int setIconTitleBack();
125 static int setLargeDisplayFont();
126 static int setWTitleColor();
127 static int setFTitleBack();
128 static int setPTitleBack();
129 static int setUTitleBack();
130 static int setResizebarBack();
131 static int setWorkspaceBack();
132 static int setWorkspaceSpecificBack();
133 static int setMenuTitleColor();
134 static int setMenuTextColor();
135 static int setMenuDisabledColor();
136 static int setMenuTitleBack();
137 static int setMenuTextBack();
138 static int setHightlight();
139 static int setHightlightText();
140 static int setKeyGrab();
141 static int setDoubleClick();
142 static int setIconPosition();
144 static int setClipTitleFont();
145 static int setClipTitleColor();
147 static int setMenuStyle();
148 static int setSwPOptions();
149 static int updateUsableArea();
151 static int setModifierKeyLabels();
153 extern Cursor wCursor[WCUR_LAST];
154 static int getCursor();
155 static int setCursor();
158 * Tables to convert strings to enumeration values.
159 * Values stored are char
162 /* WARNING: sum of length of all value strings must not exceed
163 * this value */
164 #define TOTAL_VALUES_LENGTH 80
166 #define REFRESH_WINDOW_TEXTURES (1<<0)
167 #define REFRESH_MENU_TEXTURE (1<<1)
168 #define REFRESH_MENU_FONT (1<<2)
169 #define REFRESH_MENU_COLOR (1<<3)
170 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
171 #define REFRESH_MENU_TITLE_FONT (1<<5)
172 #define REFRESH_MENU_TITLE_COLOR (1<<6)
173 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
174 #define REFRESH_WINDOW_FONT (1<<8)
175 #define REFRESH_ICON_TILE (1<<9)
176 #define REFRESH_ICON_FONT (1<<10)
177 #define REFRESH_WORKSPACE_BACK (1<<11)
179 #define REFRESH_BUTTON_IMAGES (1<<12)
181 #define REFRESH_ICON_TITLE_COLOR (1<<13)
182 #define REFRESH_ICON_TITLE_BACK (1<<14)
184 static WOptionEnumeration seFocusModes[] = {
185 {"Manual", WKF_CLICK, 0}, {"ClickToFocus", WKF_CLICK, 1},
186 {"Sloppy", WKF_SLOPPY, 0}, {"SemiAuto", WKF_SLOPPY, 1}, {"Auto", WKF_SLOPPY, 1},
187 {NULL, 0, 0}
190 static WOptionEnumeration seTitlebarModes[] = {
191 {"new", TS_NEW, 0}, {"old", TS_OLD, 0},
192 {"next", TS_NEXT, 0}, {NULL, 0, 0}
195 static WOptionEnumeration seColormapModes[] = {
196 {"Manual", WCM_CLICK, 0}, {"ClickToFocus", WCM_CLICK, 1},
197 {"Auto", WCM_POINTER, 0}, {"FocusFollowMouse", WCM_POINTER, 1},
198 {NULL, 0, 0}
201 static WOptionEnumeration sePlacements[] = {
202 {"Auto", WPM_AUTO, 0},
203 {"Smart", WPM_SMART, 0},
204 {"Cascade", WPM_CASCADE, 0},
205 {"Random", WPM_RANDOM, 0},
206 {"Manual", WPM_MANUAL, 0},
207 {"Center", WPM_CENTER, 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 {"HighlightActiveApp", "YES", NULL,
420 &wPreferences.highlight_active_app, getBool, NULL, NULL, NULL},
421 {"AutoArrangeIcons", "NO", NULL,
422 &wPreferences.auto_arrange_icons, getBool, NULL, NULL, NULL},
423 {"NoWindowOverDock", "NO", NULL,
424 &wPreferences.no_window_over_dock, getBool, updateUsableArea, NULL, NULL},
425 {"NoWindowOverIcons", "NO", NULL,
426 &wPreferences.no_window_over_icons, getBool, updateUsableArea, NULL, NULL},
427 {"WindowPlaceOrigin", "(0, 0)", NULL,
428 &wPreferences.window_place_origin, getCoord, NULL, NULL, NULL},
429 {"ResizeDisplay", "corner", seGeomDisplays,
430 &wPreferences.size_display, getEnum, NULL, NULL, NULL},
431 {"MoveDisplay", "corner", seGeomDisplays,
432 &wPreferences.move_display, getEnum, NULL, NULL, NULL},
433 {"DontConfirmKill", "NO", NULL,
434 &wPreferences.dont_confirm_kill, getBool, NULL, NULL, NULL},
435 {"WindowTitleBalloons", "NO", NULL,
436 &wPreferences.window_balloon, getBool, NULL, NULL, NULL},
437 {"MiniwindowTitleBalloons", "NO", NULL,
438 &wPreferences.miniwin_balloon, getBool, NULL, NULL, NULL},
439 {"AppIconBalloons", "NO", NULL,
440 &wPreferences.appicon_balloon, getBool, NULL, NULL, NULL},
441 {"HelpBalloons", "NO", NULL,
442 &wPreferences.help_balloon, getBool, NULL, NULL, NULL},
443 {"EdgeResistance", "30", NULL,
444 &wPreferences.edge_resistance, getInt, NULL, NULL, NULL},
445 {"ResizeIncrement", "32", NULL,
446 &wPreferences.resize_increment, getInt, NULL, NULL, NULL},
447 {"Attraction", "NO", NULL,
448 &wPreferences.attract, getBool, NULL, NULL, NULL},
449 {"DisableBlinking", "NO", NULL,
450 &wPreferences.dont_blink, getBool, NULL, NULL, NULL},
451 {"SingleClickLaunch", "NO", NULL,
452 &wPreferences.single_click, getBool, NULL, NULL, NULL},
454 /* style options */
456 {"MenuStyle", "normal", seMenuStyles,
457 &wPreferences.menu_style, getEnum, setMenuStyle, NULL, NULL},
458 {"WidgetColor", "(solid, gray)", NULL,
459 NULL, getTexture, setWidgetColor, NULL, NULL},
460 {"WorkspaceSpecificBack", "()", NULL,
461 NULL, getWSSpecificBackground, setWorkspaceSpecificBack, NULL, NULL},
462 /* WorkspaceBack must come after WorkspaceSpecificBack or
463 * WorkspaceBack wont know WorkspaceSpecificBack was also
464 * specified and 2 copies of wmsetbg will be launched */
465 {"WorkspaceBack", "(solid, black)", NULL,
466 NULL, getWSBackground, setWorkspaceBack, NULL, NULL},
467 {"SmoothWorkspaceBack", "NO", NULL,
468 NULL, getBool, NULL, NULL, NULL},
469 {"IconBack", "(solid, gray)", NULL,
470 NULL, getTexture, setIconTile, NULL, NULL},
471 {"TitleJustify", "center", seJustifications,
472 &wPreferences.title_justification, getEnum, setJustify, NULL, NULL},
473 {"WindowTitleFont", DEF_TITLE_FONT, NULL,
474 NULL, getFont, setWinTitleFont, NULL, NULL},
475 {"WindowTitleExtendSpace", DEF_WINDOW_TITLE_EXTEND_SPACE, NULL,
476 &wPreferences.window_title_clearance, getInt, setClearance, NULL, NULL},
477 {"WindowTitleMinHeight", "0", NULL,
478 &wPreferences.window_title_min_height, getInt, setClearance, NULL, NULL},
479 {"WindowTitleMaxHeight", NUM2STRING(INT_MAX), NULL,
480 &wPreferences.window_title_max_height, getInt, setClearance, NULL, NULL},
481 {"MenuTitleExtendSpace", DEF_MENU_TITLE_EXTEND_SPACE, NULL,
482 &wPreferences.menu_title_clearance, getInt, setClearance, NULL, NULL},
483 {"MenuTitleMinHeight", "0", NULL,
484 &wPreferences.menu_title_min_height, getInt, setClearance, NULL, NULL},
485 {"MenuTitleMaxHeight", NUM2STRING(INT_MAX), NULL,
486 &wPreferences.menu_title_max_height, getInt, setClearance, NULL, NULL},
487 {"MenuTextExtendSpace", DEF_MENU_TEXT_EXTEND_SPACE, NULL,
488 &wPreferences.menu_text_clearance, getInt, setClearance, NULL, NULL},
489 {"MenuTitleFont", DEF_MENU_TITLE_FONT, NULL,
490 NULL, getFont, setMenuTitleFont, NULL, NULL},
491 {"MenuTextFont", DEF_MENU_ENTRY_FONT, NULL,
492 NULL, getFont, setMenuTextFont, NULL, NULL},
493 {"IconTitleFont", DEF_ICON_TITLE_FONT, NULL,
494 NULL, getFont, setIconTitleFont, NULL, NULL},
495 {"ClipTitleFont", DEF_CLIP_TITLE_FONT, NULL,
496 NULL, getFont, setClipTitleFont, NULL, NULL},
497 {"ShowClipTitle", "YES", NULL,
498 &wPreferences.show_clip_title, getBool, NULL, NULL, NULL},
499 {"LargeDisplayFont", DEF_WORKSPACE_NAME_FONT, NULL,
500 NULL, getFont, setLargeDisplayFont, NULL, NULL},
501 {"HighlightColor", "white", NULL,
502 NULL, getColor, setHightlight, NULL, NULL},
503 {"HighlightTextColor", "black", NULL,
504 NULL, getColor, setHightlightText, NULL, NULL},
505 {"ClipTitleColor", "black", (void *)CLIP_NORMAL,
506 NULL, getColor, setClipTitleColor, NULL, NULL},
507 {"CClipTitleColor", "\"#454045\"", (void *)CLIP_COLLAPSED,
508 NULL, getColor, setClipTitleColor, NULL, NULL},
509 {"FTitleColor", "white", (void *)WS_FOCUSED,
510 NULL, getColor, setWTitleColor, NULL, NULL},
511 {"PTitleColor", "white", (void *)WS_PFOCUSED,
512 NULL, getColor, setWTitleColor, NULL, NULL},
513 {"UTitleColor", "black", (void *)WS_UNFOCUSED,
514 NULL, getColor, setWTitleColor, NULL, NULL},
515 {"FTitleBack", "(solid, black)", NULL,
516 NULL, getTexture, setFTitleBack, NULL, NULL},
517 {"PTitleBack", "(solid, \"#616161\")", NULL,
518 NULL, getTexture, setPTitleBack, NULL, NULL},
519 {"UTitleBack", "(solid, gray)", NULL,
520 NULL, getTexture, setUTitleBack, NULL, NULL},
521 {"ResizebarBack", "(solid, gray)", NULL,
522 NULL, getTexture, setResizebarBack, NULL, NULL},
523 {"MenuTitleColor", "white", NULL,
524 NULL, getColor, setMenuTitleColor, NULL, NULL},
525 {"MenuTextColor", "black", NULL,
526 NULL, getColor, setMenuTextColor, NULL, NULL},
527 {"MenuDisabledColor", "\"#616161\"", NULL,
528 NULL, getColor, setMenuDisabledColor, NULL, NULL},
529 {"MenuTitleBack", "(solid, black)", NULL,
530 NULL, getTexture, setMenuTitleBack, NULL, NULL},
531 {"MenuTextBack", "(solid, gray)", NULL,
532 NULL, getTexture, setMenuTextBack, NULL, NULL},
533 {"IconTitleColor", "white", NULL,
534 NULL, getColor, setIconTitleColor, NULL, NULL},
535 {"IconTitleBack", "black", NULL,
536 NULL, getColor, setIconTitleBack, NULL, NULL},
537 {"SwitchPanelImages", "(swtile.png, swback.png, 30, 40)", &wPreferences,
538 NULL, getPropList, setSwPOptions, NULL, NULL},
539 {"ModifierKeyLabels", "(\"Shift+\", \"Ctrl+\", \"Mod1+\", \"Mod2+\", \"Mod3+\", \"Mod4+\", \"Mod5+\")", &wPreferences,
540 NULL, getPropList, setModifierKeyLabels, NULL, NULL},
542 /* keybindings */
544 {"RootMenuKey", "None", (void *)WKBD_ROOTMENU,
545 NULL, getKeybind, setKeyGrab, NULL, NULL},
546 {"WindowListKey", "None", (void *)WKBD_WINDOWLIST,
547 NULL, getKeybind, setKeyGrab, NULL, NULL},
548 {"WindowMenuKey", "None", (void *)WKBD_WINDOWMENU,
549 NULL, getKeybind, setKeyGrab, NULL, NULL},
550 {"DockRaiseLowerKey", "None", (void*)WKBD_DOCKRAISELOWER,
551 NULL, getKeybind, setKeyGrab, NULL, NULL},
552 {"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER,
553 NULL, getKeybind, setKeyGrab, NULL, NULL},
554 {"MiniaturizeKey", "None", (void *)WKBD_MINIATURIZE,
555 NULL, getKeybind, setKeyGrab, NULL, NULL},
556 {"MinimizeAllKey", "None", (void *)WKBD_MINIMIZEALL,
557 NULL, getKeybind, setKeyGrab, NULL, NULL },
558 {"HideKey", "None", (void *)WKBD_HIDE,
559 NULL, getKeybind, setKeyGrab, NULL, NULL},
560 {"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS,
561 NULL, getKeybind, setKeyGrab, NULL, NULL},
562 {"MoveResizeKey", "None", (void *)WKBD_MOVERESIZE,
563 NULL, getKeybind, setKeyGrab, NULL, NULL},
564 {"CloseKey", "None", (void *)WKBD_CLOSE,
565 NULL, getKeybind, setKeyGrab, NULL, NULL},
566 {"MaximizeKey", "None", (void *)WKBD_MAXIMIZE,
567 NULL, getKeybind, setKeyGrab, NULL, NULL},
568 {"VMaximizeKey", "None", (void *)WKBD_VMAXIMIZE,
569 NULL, getKeybind, setKeyGrab, NULL, NULL},
570 {"HMaximizeKey", "None", (void *)WKBD_HMAXIMIZE,
571 NULL, getKeybind, setKeyGrab, NULL, NULL},
572 {"LHMaximizeKey", "None", (void*)WKBD_LHMAXIMIZE,
573 NULL, getKeybind, setKeyGrab, NULL, NULL},
574 {"RHMaximizeKey", "None", (void*)WKBD_RHMAXIMIZE,
575 NULL, getKeybind, setKeyGrab, NULL, NULL},
576 {"MaximusKey", "None", (void*)WKBD_MAXIMUS,
577 NULL, getKeybind, setKeyGrab, NULL, NULL},
578 {"RaiseKey", "\"Meta+Up\"", (void *)WKBD_RAISE,
579 NULL, getKeybind, setKeyGrab, NULL, NULL},
580 {"LowerKey", "\"Meta+Down\"", (void *)WKBD_LOWER,
581 NULL, getKeybind, setKeyGrab, NULL, NULL},
582 {"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER,
583 NULL, getKeybind, setKeyGrab, NULL, NULL},
584 {"ShadeKey", "None", (void *)WKBD_SHADE,
585 NULL, getKeybind, setKeyGrab, NULL, NULL},
586 {"SelectKey", "None", (void *)WKBD_SELECT,
587 NULL, getKeybind, setKeyGrab, NULL, NULL},
588 {"FocusNextKey", "None", (void *)WKBD_FOCUSNEXT,
589 NULL, getKeybind, setKeyGrab, NULL, NULL},
590 {"FocusPrevKey", "None", (void *)WKBD_FOCUSPREV,
591 NULL, getKeybind, setKeyGrab, NULL, NULL},
592 {"GroupNextKey", "None", (void *)WKBD_GROUPNEXT,
593 NULL, getKeybind, setKeyGrab, NULL, NULL},
594 {"GroupPrevKey", "None", (void *)WKBD_GROUPPREV,
595 NULL, getKeybind, setKeyGrab, NULL, NULL},
596 {"NextWorkspaceKey", "None", (void *)WKBD_NEXTWORKSPACE,
597 NULL, getKeybind, setKeyGrab, NULL, NULL},
598 {"PrevWorkspaceKey", "None", (void *)WKBD_PREVWORKSPACE,
599 NULL, getKeybind, setKeyGrab, NULL, NULL},
600 {"NextWorkspaceLayerKey", "None", (void *)WKBD_NEXTWSLAYER,
601 NULL, getKeybind, setKeyGrab, NULL, NULL},
602 {"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER,
603 NULL, getKeybind, setKeyGrab, NULL, NULL},
604 {"Workspace1Key", "None", (void *)WKBD_WORKSPACE1,
605 NULL, getKeybind, setKeyGrab, NULL, NULL},
606 {"Workspace2Key", "None", (void *)WKBD_WORKSPACE2,
607 NULL, getKeybind, setKeyGrab, NULL, NULL},
608 {"Workspace3Key", "None", (void *)WKBD_WORKSPACE3,
609 NULL, getKeybind, setKeyGrab, NULL, NULL},
610 {"Workspace4Key", "None", (void *)WKBD_WORKSPACE4,
611 NULL, getKeybind, setKeyGrab, NULL, NULL},
612 {"Workspace5Key", "None", (void *)WKBD_WORKSPACE5,
613 NULL, getKeybind, setKeyGrab, NULL, NULL},
614 {"Workspace6Key", "None", (void *)WKBD_WORKSPACE6,
615 NULL, getKeybind, setKeyGrab, NULL, NULL},
616 {"Workspace7Key", "None", (void *)WKBD_WORKSPACE7,
617 NULL, getKeybind, setKeyGrab, NULL, NULL},
618 {"Workspace8Key", "None", (void *)WKBD_WORKSPACE8,
619 NULL, getKeybind, setKeyGrab, NULL, NULL},
620 {"Workspace9Key", "None", (void *)WKBD_WORKSPACE9,
621 NULL, getKeybind, setKeyGrab, NULL, NULL},
622 {"Workspace10Key", "None", (void *)WKBD_WORKSPACE10,
623 NULL, getKeybind, setKeyGrab, NULL, NULL},
624 {"WindowShortcut1Key", "None", (void *)WKBD_WINDOW1,
625 NULL, getKeybind, setKeyGrab, NULL, NULL},
626 {"WindowShortcut2Key", "None", (void *)WKBD_WINDOW2,
627 NULL, getKeybind, setKeyGrab, NULL, NULL},
628 {"WindowShortcut3Key", "None", (void *)WKBD_WINDOW3,
629 NULL, getKeybind, setKeyGrab, NULL, NULL},
630 {"WindowShortcut4Key", "None", (void *)WKBD_WINDOW4,
631 NULL, getKeybind, setKeyGrab, NULL, NULL},
632 {"WindowShortcut5Key", "None", (void *)WKBD_WINDOW5,
633 NULL, getKeybind, setKeyGrab, NULL, NULL},
634 {"WindowShortcut6Key", "None", (void *)WKBD_WINDOW6,
635 NULL, getKeybind, setKeyGrab, NULL, NULL},
636 {"WindowShortcut7Key", "None", (void *)WKBD_WINDOW7,
637 NULL, getKeybind, setKeyGrab, NULL, NULL},
638 {"WindowShortcut8Key", "None", (void *)WKBD_WINDOW8,
639 NULL, getKeybind, setKeyGrab, NULL, NULL},
640 {"WindowShortcut9Key", "None", (void *)WKBD_WINDOW9,
641 NULL, getKeybind, setKeyGrab, NULL, NULL},
642 {"WindowShortcut10Key", "None", (void *)WKBD_WINDOW10,
643 NULL, getKeybind, setKeyGrab, NULL, NULL},
644 {"WindowRelaunchKey", "None", (void *)WKBD_RELAUNCH,
645 NULL, getKeybind, setKeyGrab, NULL, NULL},
646 {"ScreenSwitchKey", "None", (void *)WKBD_SWITCH_SCREEN,
647 NULL, getKeybind, setKeyGrab, NULL, NULL},
649 #ifdef KEEP_XKB_LOCK_STATUS
650 {"ToggleKbdModeKey", "None", (void *)WKBD_TOGGLE,
651 NULL, getKeybind, setKeyGrab, NULL, NULL},
652 {"KbdModeLock", "NO", NULL,
653 &wPreferences.modelock, getBool, NULL, NULL, NULL},
654 #endif /* KEEP_XKB_LOCK_STATUS */
656 {"NormalCursor", "(builtin, left_ptr)", (void *)WCUR_ROOT,
657 NULL, getCursor, setCursor, NULL, NULL},
658 {"ArrowCursor", "(builtin, top_left_arrow)", (void *)WCUR_ARROW,
659 NULL, getCursor, setCursor, NULL, NULL},
660 {"MoveCursor", "(builtin, fleur)", (void *)WCUR_MOVE,
661 NULL, getCursor, setCursor, NULL, NULL},
662 {"ResizeCursor", "(builtin, sizing)", (void *)WCUR_RESIZE,
663 NULL, getCursor, setCursor, NULL, NULL},
664 {"TopLeftResizeCursor", "(builtin, top_left_corner)", (void *)WCUR_TOPLEFTRESIZE,
665 NULL, getCursor, setCursor, NULL, NULL},
666 {"TopRightResizeCursor", "(builtin, top_right_corner)", (void *)WCUR_TOPRIGHTRESIZE,
667 NULL, getCursor, setCursor, NULL, NULL},
668 {"BottomLeftResizeCursor", "(builtin, bottom_left_corner)", (void *)WCUR_BOTTOMLEFTRESIZE,
669 NULL, getCursor, setCursor, NULL, NULL},
670 {"BottomRightResizeCursor", "(builtin, bottom_right_corner)", (void *)WCUR_BOTTOMRIGHTRESIZE,
671 NULL, getCursor, setCursor, NULL, NULL},
672 {"VerticalResizeCursor", "(builtin, sb_v_double_arrow)", (void *)WCUR_VERTICALRESIZE,
673 NULL, getCursor, setCursor, NULL, NULL},
674 {"HorizontalResizeCursor", "(builtin, sb_h_double_arrow)", (void *)WCUR_HORIZONRESIZE,
675 NULL, getCursor, setCursor, NULL, NULL},
676 {"WaitCursor", "(builtin, watch)", (void *)WCUR_WAIT,
677 NULL, getCursor, setCursor, NULL, NULL},
678 {"QuestionCursor", "(builtin, question_arrow)", (void *)WCUR_QUESTION,
679 NULL, getCursor, setCursor, NULL, NULL},
680 {"TextCursor", "(builtin, xterm)", (void *)WCUR_TEXT,
681 NULL, getCursor, setCursor, NULL, NULL},
682 {"SelectCursor", "(builtin, cross)", (void *)WCUR_SELECT,
683 NULL, getCursor, setCursor, NULL, NULL},
684 {"DialogHistoryLines", "500", NULL,
685 &wPreferences.history_lines, getInt, NULL, NULL, NULL},
686 {"CycleActiveHeadOnly", "NO", NULL,
687 &wPreferences.cycle_active_head_only, getBool, NULL, NULL, NULL},
688 {"CycleIgnoreMinimized", "NO", NULL,
689 &wPreferences.cycle_ignore_minimized, getBool, NULL, NULL, NULL}
692 static void initDefaults()
694 unsigned int i;
695 WDefaultEntry *entry;
697 WMPLSetCaseSensitive(False);
699 for (i = 0; i < sizeof(optionList) / sizeof(WDefaultEntry); i++) {
700 entry = &optionList[i];
702 entry->plkey = WMCreatePLString(entry->key);
703 if (entry->default_value)
704 entry->plvalue = WMCreatePropListFromDescription(entry->default_value);
705 else
706 entry->plvalue = NULL;
709 for (i = 0; i < sizeof(staticOptionList) / sizeof(WDefaultEntry); i++) {
710 entry = &staticOptionList[i];
712 entry->plkey = WMCreatePLString(entry->key);
713 if (entry->default_value)
714 entry->plvalue = WMCreatePropListFromDescription(entry->default_value);
715 else
716 entry->plvalue = NULL;
720 static WMPropList *readGlobalDomain(char *domainName, Bool requireDictionary)
722 WMPropList *globalDict = NULL;
723 char path[PATH_MAX];
724 struct stat stbuf;
726 snprintf(path, sizeof(path), "%s/%s/%s", SYSCONFDIR, GLOBAL_DEFAULTS_SUBDIR, domainName);
727 if (stat(path, &stbuf) >= 0) {
728 globalDict = WMReadPropListFromFile(path);
729 if (globalDict && requireDictionary && !WMIsPLDictionary(globalDict)) {
730 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"), domainName, path);
731 WMReleasePropList(globalDict);
732 globalDict = NULL;
733 } else if (!globalDict) {
734 wwarning(_("could not load domain %s from global defaults database"), domainName);
738 return globalDict;
741 #if defined(GLOBAL_PREAMBLE_MENU_FILE) || defined(GLOBAL_EPILOGUE_MENU_FILE)
742 static void prependMenu(WMPropList * destarr, WMPropList * array)
744 WMPropList *item;
745 int i;
747 for (i = 0; i < WMGetPropListItemCount(array); i++) {
748 item = WMGetFromPLArray(array, i);
749 if (item)
750 WMInsertInPLArray(destarr, i + 1, item);
754 static void appendMenu(WMPropList * destarr, WMPropList * array)
756 WMPropList *item;
757 int i;
759 for (i = 0; i < WMGetPropListItemCount(array); i++) {
760 item = WMGetFromPLArray(array, i);
761 if (item)
762 WMAddToPLArray(destarr, item);
765 #endif
767 void wDefaultsMergeGlobalMenus(WDDomain * menuDomain)
769 WMPropList *menu = menuDomain->dictionary;
770 WMPropList *submenu;
772 if (!menu || !WMIsPLArray(menu))
773 return;
775 #ifdef GLOBAL_PREAMBLE_MENU_FILE
776 submenu = WMReadPropListFromFile(SYSCONFDIR "/" GLOBAL_DEFAULTS_SUBDIR "/" GLOBAL_PREAMBLE_MENU_FILE);
778 if (submenu && !WMIsPLArray(submenu)) {
779 wwarning(_("invalid global menu file %s"), GLOBAL_PREAMBLE_MENU_FILE);
780 WMReleasePropList(submenu);
781 submenu = NULL;
783 if (submenu) {
784 prependMenu(menu, submenu);
785 WMReleasePropList(submenu);
787 #endif
789 #ifdef GLOBAL_EPILOGUE_MENU_FILE
790 submenu = WMReadPropListFromFile(SYSCONFDIR "/" GLOBAL_DEFAULTS_SUBDIR "/" GLOBAL_EPILOGUE_MENU_FILE);
792 if (submenu && !WMIsPLArray(submenu)) {
793 wwarning(_("invalid global menu file %s"), GLOBAL_EPILOGUE_MENU_FILE);
794 WMReleasePropList(submenu);
795 submenu = NULL;
797 if (submenu) {
798 appendMenu(menu, submenu);
799 WMReleasePropList(submenu);
801 #endif
803 menuDomain->dictionary = menu;
806 WDDomain *wDefaultsInitDomain(char *domain, Bool requireDictionary)
808 WDDomain *db;
809 struct stat stbuf;
810 static int inited = 0;
811 char *the_path;
812 WMPropList *shared_dict = NULL;
814 if (!inited) {
815 inited = 1;
816 initDefaults();
819 db = wmalloc(sizeof(WDDomain));
820 db->domain_name = domain;
821 db->path = wdefaultspathfordomain(domain);
822 the_path = db->path;
824 if (the_path && stat(the_path, &stbuf) >= 0) {
825 db->dictionary = WMReadPropListFromFile(the_path);
826 if (db->dictionary) {
827 if (requireDictionary && !WMIsPLDictionary(db->dictionary)) {
828 WMReleasePropList(db->dictionary);
829 db->dictionary = NULL;
830 wwarning(_("Domain %s (%s) of defaults database is corrupted!"), domain, the_path);
832 db->timestamp = stbuf.st_mtime;
833 } else {
834 wwarning(_("could not load domain %s from user defaults database"), domain);
838 /* global system dictionary */
839 shared_dict = readGlobalDomain(domain, requireDictionary);
841 if (shared_dict && db->dictionary && WMIsPLDictionary(shared_dict) &&
842 WMIsPLDictionary(db->dictionary)) {
843 WMMergePLDictionaries(shared_dict, db->dictionary, True);
844 WMReleasePropList(db->dictionary);
845 db->dictionary = shared_dict;
846 if (stbuf.st_mtime > db->timestamp)
847 db->timestamp = stbuf.st_mtime;
848 } else if (!db->dictionary) {
849 db->dictionary = shared_dict;
850 if (stbuf.st_mtime > db->timestamp)
851 db->timestamp = stbuf.st_mtime;
854 return db;
857 void wReadStaticDefaults(WMPropList * dict)
859 WMPropList *plvalue;
860 WDefaultEntry *entry;
861 unsigned int i;
862 void *tdata;
864 for (i = 0; i < sizeof(staticOptionList) / sizeof(WDefaultEntry); i++) {
865 entry = &staticOptionList[i];
867 if (dict)
868 plvalue = WMGetFromPLDictionary(dict, entry->plkey);
869 else
870 plvalue = NULL;
872 /* no default in the DB. Use builtin default */
873 if (!plvalue)
874 plvalue = entry->plvalue;
876 if (plvalue) {
877 /* convert data */
878 (*entry->convert) (NULL, entry, plvalue, entry->addr, &tdata);
879 if (entry->update)
880 (*entry->update) (NULL, entry, tdata, entry->extra_data);
885 void wDefaultsCheckDomains(void* arg)
887 WScreen *scr;
888 struct stat stbuf;
889 WMPropList *shared_dict = NULL;
890 WMPropList *dict;
891 int i;
893 if (stat(WDWindowMaker->path, &stbuf) >= 0 && WDWindowMaker->timestamp < stbuf.st_mtime) {
894 WDWindowMaker->timestamp = stbuf.st_mtime;
896 /* Global dictionary */
897 shared_dict = readGlobalDomain("WindowMaker", True);
899 /* User dictionary */
900 dict = WMReadPropListFromFile(WDWindowMaker->path);
902 if (dict) {
903 if (!WMIsPLDictionary(dict)) {
904 WMReleasePropList(dict);
905 dict = NULL;
906 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
907 "WindowMaker", WDWindowMaker->path);
908 } else {
909 if (shared_dict) {
910 WMMergePLDictionaries(shared_dict, dict, True);
911 WMReleasePropList(dict);
912 dict = shared_dict;
913 shared_dict = NULL;
916 for (i = 0; i < wScreenCount; i++) {
917 scr = wScreenWithNumber(i);
918 if (scr)
919 wReadDefaults(scr, dict);
922 if (WDWindowMaker->dictionary)
923 WMReleasePropList(WDWindowMaker->dictionary);
925 WDWindowMaker->dictionary = dict;
927 } else {
928 wwarning(_("could not load domain %s from user defaults database"), "WindowMaker");
931 if (shared_dict)
932 WMReleasePropList(shared_dict);
936 if (stat(WDWindowAttributes->path, &stbuf) >= 0 && WDWindowAttributes->timestamp < stbuf.st_mtime) {
937 /* global dictionary */
938 shared_dict = readGlobalDomain("WMWindowAttributes", True);
939 /* user dictionary */
940 dict = WMReadPropListFromFile(WDWindowAttributes->path);
941 if (dict) {
942 if (!WMIsPLDictionary(dict)) {
943 WMReleasePropList(dict);
944 dict = NULL;
945 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
946 "WMWindowAttributes", WDWindowAttributes->path);
947 } else {
948 if (shared_dict) {
949 WMMergePLDictionaries(shared_dict, dict, True);
950 WMReleasePropList(dict);
951 dict = shared_dict;
952 shared_dict = NULL;
955 if (WDWindowAttributes->dictionary)
956 WMReleasePropList(WDWindowAttributes->dictionary);
958 WDWindowAttributes->dictionary = dict;
959 for (i = 0; i < wScreenCount; i++) {
960 scr = wScreenWithNumber(i);
961 if (scr) {
962 wDefaultUpdateIcons(scr);
964 /* Update the panel image if changed */
965 /* Don't worry. If the image is the same these
966 * functions will have no performance impact. */
967 create_logo_image(scr);
971 } else {
972 wwarning(_("could not load domain %s from user defaults database"), "WMWindowAttributes");
975 WDWindowAttributes->timestamp = stbuf.st_mtime;
976 if (shared_dict)
977 WMReleasePropList(shared_dict);
980 if (stat(WDRootMenu->path, &stbuf) >= 0 && WDRootMenu->timestamp < stbuf.st_mtime) {
981 dict = WMReadPropListFromFile(WDRootMenu->path);
982 if (dict) {
983 if (!WMIsPLArray(dict) && !WMIsPLString(dict)) {
984 WMReleasePropList(dict);
985 dict = NULL;
986 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
987 "WMRootMenu", WDRootMenu->path);
988 } else {
989 if (WDRootMenu->dictionary)
990 WMReleasePropList(WDRootMenu->dictionary);
992 WDRootMenu->dictionary = dict;
993 wDefaultsMergeGlobalMenus(WDRootMenu);
995 } else {
996 wwarning(_("could not load domain %s from user defaults database"), "WMRootMenu");
998 WDRootMenu->timestamp = stbuf.st_mtime;
1000 #ifndef HAVE_INOTIFY
1001 if (!arg)
1002 WMAddTimerHandler(DEFAULTS_CHECK_INTERVAL, wDefaultsCheckDomains, arg);
1003 #endif
1006 void wReadDefaults(WScreen * scr, WMPropList * new_dict)
1008 WMPropList *plvalue, *old_value;
1009 WDefaultEntry *entry;
1010 unsigned int i;
1011 int update_workspace_back = 0; /* kluge :/ */
1012 unsigned int needs_refresh;
1013 void *tdata;
1014 WMPropList *old_dict = (WDWindowMaker->dictionary != new_dict ? WDWindowMaker->dictionary : NULL);
1016 needs_refresh = 0;
1018 for (i = 0; i < sizeof(optionList) / sizeof(WDefaultEntry); i++) {
1019 entry = &optionList[i];
1021 if (new_dict)
1022 plvalue = WMGetFromPLDictionary(new_dict, entry->plkey);
1023 else
1024 plvalue = NULL;
1026 if (!old_dict)
1027 old_value = NULL;
1028 else
1029 old_value = WMGetFromPLDictionary(old_dict, entry->plkey);
1031 if (!plvalue && !old_value) {
1032 /* no default in the DB. Use builtin default */
1033 plvalue = entry->plvalue;
1034 if (plvalue && new_dict)
1035 WMPutInPLDictionary(new_dict, entry->plkey, plvalue);
1037 } else if (!plvalue) {
1038 /* value was deleted from DB. Keep current value */
1039 continue;
1040 } else if (!old_value) {
1041 /* set value for the 1st time */
1042 } else if (!WMIsPropListEqualTo(plvalue, old_value)) {
1043 /* value has changed */
1044 } else {
1045 if (strcmp(entry->key, "WorkspaceBack") == 0
1046 && update_workspace_back && scr->flags.backimage_helper_launched) {
1047 } else {
1048 /* value was not changed since last time */
1049 continue;
1053 if (plvalue) {
1054 /* convert data */
1055 if ((*entry->convert) (scr, entry, plvalue, entry->addr, &tdata)) {
1057 * If the WorkspaceSpecificBack data has been changed
1058 * so that the helper will be launched now, we must be
1059 * sure to send the default background texture config
1060 * to the helper.
1062 if (strcmp(entry->key, "WorkspaceSpecificBack") == 0 &&
1063 !scr->flags.backimage_helper_launched)
1064 update_workspace_back = 1;
1066 if (entry->update)
1067 needs_refresh |= (*entry->update) (scr, entry, tdata, entry->extra_data);
1073 if (needs_refresh != 0 && !scr->flags.startup) {
1074 int foo;
1076 foo = 0;
1077 if (needs_refresh & REFRESH_MENU_TITLE_TEXTURE)
1078 foo |= WTextureSettings;
1079 if (needs_refresh & REFRESH_MENU_TITLE_FONT)
1080 foo |= WFontSettings;
1081 if (needs_refresh & REFRESH_MENU_TITLE_COLOR)
1082 foo |= WColorSettings;
1083 if (foo)
1084 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged, NULL,
1085 (void *)(uintptr_t) foo);
1087 foo = 0;
1088 if (needs_refresh & REFRESH_MENU_TEXTURE)
1089 foo |= WTextureSettings;
1090 if (needs_refresh & REFRESH_MENU_FONT)
1091 foo |= WFontSettings;
1092 if (needs_refresh & REFRESH_MENU_COLOR)
1093 foo |= WColorSettings;
1094 if (foo)
1095 WMPostNotificationName(WNMenuAppearanceSettingsChanged, NULL, (void *)(uintptr_t) foo);
1097 foo = 0;
1098 if (needs_refresh & REFRESH_WINDOW_FONT)
1099 foo |= WFontSettings;
1100 if (needs_refresh & REFRESH_WINDOW_TEXTURES)
1101 foo |= WTextureSettings;
1102 if (needs_refresh & REFRESH_WINDOW_TITLE_COLOR)
1103 foo |= WColorSettings;
1104 if (foo)
1105 WMPostNotificationName(WNWindowAppearanceSettingsChanged, NULL, (void *)(uintptr_t) foo);
1107 if (!(needs_refresh & REFRESH_ICON_TILE)) {
1108 foo = 0;
1109 if (needs_refresh & REFRESH_ICON_FONT)
1110 foo |= WFontSettings;
1111 if (needs_refresh & REFRESH_ICON_TITLE_COLOR)
1112 foo |= WTextureSettings;
1113 if (needs_refresh & REFRESH_ICON_TITLE_BACK)
1114 foo |= WTextureSettings;
1115 if (foo)
1116 WMPostNotificationName(WNIconAppearanceSettingsChanged, NULL,
1117 (void *)(uintptr_t) foo);
1119 if (needs_refresh & REFRESH_ICON_TILE)
1120 WMPostNotificationName(WNIconTileSettingsChanged, NULL, NULL);
1124 void wDefaultUpdateIcons(WScreen *scr)
1126 WAppIcon *aicon = scr->app_icon_list;
1127 WWindow *wwin = scr->focused_window;
1128 char *file;
1130 while (aicon) {
1131 /* Get the application icon, default included */
1132 file = wDefaultGetIconFile(aicon->wm_instance, aicon->wm_class, True);
1133 if ((file && aicon->icon->file && strcmp(file, aicon->icon->file) != 0)
1134 || (file && !aicon->icon->file)) {
1135 wIconChangeImageFile(aicon->icon, file);
1136 wAppIconPaint(aicon);
1138 aicon = aicon->next;
1141 if (!wPreferences.flags.noclip)
1142 wClipIconPaint(scr->clip_icon);
1144 while (wwin) {
1145 if (wwin->icon && wwin->flags.miniaturized) {
1146 /* Get the application icon, default included */
1147 file = wDefaultGetIconFile(wwin->wm_instance, wwin->wm_class, True);
1148 if ((file && wwin->icon->file && strcmp(file, wwin->icon->file) != 0)
1149 || (file && !wwin->icon->file))
1150 wIconChangeImageFile(wwin->icon, file);
1152 wwin = wwin->prev;
1156 /* --------------------------- Local ----------------------- */
1158 #define GET_STRING_OR_DEFAULT(x, var) if (!WMIsPLString(value)) { \
1159 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1160 entry->key, x); \
1161 wwarning(_("using default \"%s\" instead"), entry->default_value); \
1162 var = entry->default_value;\
1163 } else var = WMGetFromPLString(value)\
1166 static int string2index(WMPropList * key, WMPropList * val, char *def, WOptionEnumeration * values)
1168 char *str;
1169 WOptionEnumeration *v;
1170 char buffer[TOTAL_VALUES_LENGTH];
1172 if (WMIsPLString(val) && (str = WMGetFromPLString(val))) {
1173 for (v = values; v->string != NULL; v++) {
1174 if (strcasecmp(v->string, str) == 0)
1175 return v->value;
1179 buffer[0] = 0;
1180 for (v = values; v->string != NULL; v++) {
1181 if (!v->is_alias) {
1182 if (buffer[0] != 0)
1183 strcat(buffer, ", ");
1184 snprintf(buffer+strlen(buffer),
1185 sizeof(buffer)-strlen(buffer)-1, "\"%s\"", v->string);
1188 wwarning(_("wrong option value for key \"%s\"; got \"%s\", should be one of %s."),
1189 WMGetFromPLString(key),
1190 WMIsPLString(val) ? WMGetFromPLString(val) : "(unknown)",
1191 buffer);
1193 if (def) {
1194 return string2index(key, val, NULL, values);
1197 return -1;
1201 * value - is the value in the defaults DB
1202 * addr - is the address to store the data
1203 * ret - is the address to store a pointer to a temporary buffer. ret
1204 * must not be freed and is used by the set functions
1206 static int getBool(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1208 static char data;
1209 char *val;
1210 int second_pass = 0;
1212 GET_STRING_OR_DEFAULT("Boolean", val);
1214 again:
1215 if ((val[1] == '\0' && (val[0] == 'y' || val[0] == 'Y'))
1216 || strcasecmp(val, "YES") == 0) {
1218 data = 1;
1219 } else if ((val[1] == '\0' && (val[0] == 'n' || val[0] == 'N'))
1220 || strcasecmp(val, "NO") == 0) {
1221 data = 0;
1222 } else {
1223 int i;
1224 if (sscanf(val, "%i", &i) == 1) {
1225 if (i != 0)
1226 data = 1;
1227 else
1228 data = 0;
1229 } else {
1230 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""), val, entry->key);
1231 if (second_pass == 0) {
1232 val = WMGetFromPLString(entry->plvalue);
1233 second_pass = 1;
1234 wwarning(_("using default \"%s\" instead"), val);
1235 goto again;
1237 return False;
1241 if (ret)
1242 *ret = &data;
1243 if (addr)
1244 *(char *)addr = data;
1246 return True;
1249 static int getInt(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1251 static int data;
1252 char *val;
1254 GET_STRING_OR_DEFAULT("Integer", val);
1256 if (sscanf(val, "%i", &data) != 1) {
1257 wwarning(_("can't convert \"%s\" to integer for key \"%s\""), val, entry->key);
1258 val = WMGetFromPLString(entry->plvalue);
1259 wwarning(_("using default \"%s\" instead"), val);
1260 if (sscanf(val, "%i", &data) != 1) {
1261 return False;
1265 if (ret)
1266 *ret = &data;
1267 if (addr)
1268 *(int *)addr = data;
1270 return True;
1273 static int getCoord(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1275 static WCoord data;
1276 char *val_x, *val_y;
1277 int nelem, changed = 0;
1278 WMPropList *elem_x, *elem_y;
1280 again:
1281 if (!WMIsPLArray(value)) {
1282 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "Coordinate");
1283 if (changed == 0) {
1284 value = entry->plvalue;
1285 changed = 1;
1286 wwarning(_("using default \"%s\" instead"), entry->default_value);
1287 goto again;
1289 return False;
1292 nelem = WMGetPropListItemCount(value);
1293 if (nelem != 2) {
1294 wwarning(_("Incorrect number of elements in array for key \"%s\"."), entry->key);
1295 if (changed == 0) {
1296 value = entry->plvalue;
1297 changed = 1;
1298 wwarning(_("using default \"%s\" instead"), entry->default_value);
1299 goto again;
1301 return False;
1304 elem_x = WMGetFromPLArray(value, 0);
1305 elem_y = WMGetFromPLArray(value, 1);
1307 if (!elem_x || !elem_y || !WMIsPLString(elem_x) || !WMIsPLString(elem_y)) {
1308 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."), entry->key);
1309 if (changed == 0) {
1310 value = entry->plvalue;
1311 changed = 1;
1312 wwarning(_("using default \"%s\" instead"), entry->default_value);
1313 goto again;
1315 return False;
1318 val_x = WMGetFromPLString(elem_x);
1319 val_y = WMGetFromPLString(elem_y);
1321 if (sscanf(val_x, "%i", &data.x) != 1 || sscanf(val_y, "%i", &data.y) != 1) {
1322 wwarning(_("can't convert array to integers for \"%s\"."), entry->key);
1323 if (changed == 0) {
1324 value = entry->plvalue;
1325 changed = 1;
1326 wwarning(_("using default \"%s\" instead"), entry->default_value);
1327 goto again;
1329 return False;
1332 if (data.x < 0)
1333 data.x = 0;
1334 else if (data.x > scr->scr_width / 3)
1335 data.x = scr->scr_width / 3;
1336 if (data.y < 0)
1337 data.y = 0;
1338 else if (data.y > scr->scr_height / 3)
1339 data.y = scr->scr_height / 3;
1341 if (ret)
1342 *ret = &data;
1343 if (addr)
1344 *(WCoord *) addr = data;
1346 return True;
1349 static int getPropList(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1351 WMRetainPropList(value);
1353 *ret = value;
1355 return True;
1358 static int getPathList(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1360 static char *data;
1361 int i, count, len;
1362 char *ptr;
1363 WMPropList *d;
1364 int changed = 0;
1366 again:
1367 if (!WMIsPLArray(value)) {
1368 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "an array of paths");
1369 if (changed == 0) {
1370 value = entry->plvalue;
1371 changed = 1;
1372 wwarning(_("using default \"%s\" instead"), entry->default_value);
1373 goto again;
1375 return False;
1378 i = 0;
1379 count = WMGetPropListItemCount(value);
1380 if (count < 1) {
1381 if (changed == 0) {
1382 value = entry->plvalue;
1383 changed = 1;
1384 wwarning(_("using default \"%s\" instead"), entry->default_value);
1385 goto again;
1387 return False;
1390 len = 0;
1391 for (i = 0; i < count; i++) {
1392 d = WMGetFromPLArray(value, i);
1393 if (!d || !WMIsPLString(d)) {
1394 count = i;
1395 break;
1397 len += strlen(WMGetFromPLString(d)) + 1;
1400 ptr = data = wmalloc(len + 1);
1402 for (i = 0; i < count; i++) {
1403 d = WMGetFromPLArray(value, i);
1404 if (!d || !WMIsPLString(d)) {
1405 break;
1407 strcpy(ptr, WMGetFromPLString(d));
1408 ptr += strlen(WMGetFromPLString(d));
1409 *ptr = ':';
1410 ptr++;
1412 ptr--;
1413 *(ptr--) = 0;
1415 if (*(char **)addr != NULL) {
1416 wfree(*(char **)addr);
1418 *(char **)addr = data;
1420 return True;
1423 static int getEnum(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1425 static signed char data;
1427 data = string2index(entry->plkey, value, entry->default_value, (WOptionEnumeration *) entry->extra_data);
1428 if (data < 0)
1429 return False;
1431 if (ret)
1432 *ret = &data;
1433 if (addr)
1434 *(signed char *)addr = data;
1436 return True;
1440 * (solid <color>)
1441 * (hgradient <color> <color>)
1442 * (vgradient <color> <color>)
1443 * (dgradient <color> <color>)
1444 * (mhgradient <color> <color> ...)
1445 * (mvgradient <color> <color> ...)
1446 * (mdgradient <color> <color> ...)
1447 * (igradient <color1> <color1> <thickness1> <color2> <color2> <thickness2>)
1448 * (tpixmap <file> <color>)
1449 * (spixmap <file> <color>)
1450 * (cpixmap <file> <color>)
1451 * (thgradient <file> <opaqueness> <color> <color>)
1452 * (tvgradient <file> <opaqueness> <color> <color>)
1453 * (tdgradient <file> <opaqueness> <color> <color>)
1454 * (function <lib> <function> ...)
1457 static WTexture *parse_texture(WScreen * scr, WMPropList * pl)
1459 WMPropList *elem;
1460 char *val;
1461 int nelem;
1462 WTexture *texture = NULL;
1464 nelem = WMGetPropListItemCount(pl);
1465 if (nelem < 1)
1466 return NULL;
1468 elem = WMGetFromPLArray(pl, 0);
1469 if (!elem || !WMIsPLString(elem))
1470 return NULL;
1471 val = WMGetFromPLString(elem);
1473 if (strcasecmp(val, "solid") == 0) {
1474 XColor color;
1476 if (nelem != 2)
1477 return NULL;
1479 /* get color */
1481 elem = WMGetFromPLArray(pl, 1);
1482 if (!elem || !WMIsPLString(elem))
1483 return NULL;
1484 val = WMGetFromPLString(elem);
1486 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1487 wwarning(_("\"%s\" is not a valid color name"), val);
1488 return NULL;
1491 texture = (WTexture *) wTextureMakeSolid(scr, &color);
1492 } else if (strcasecmp(val, "dgradient") == 0
1493 || strcasecmp(val, "vgradient") == 0 || strcasecmp(val, "hgradient") == 0) {
1494 RColor color1, color2;
1495 XColor xcolor;
1496 int type;
1498 if (nelem != 3) {
1499 wwarning(_("bad number of arguments in gradient specification"));
1500 return NULL;
1503 if (val[0] == 'd' || val[0] == 'D')
1504 type = WTEX_DGRADIENT;
1505 else if (val[0] == 'h' || val[0] == 'H')
1506 type = WTEX_HGRADIENT;
1507 else
1508 type = WTEX_VGRADIENT;
1510 /* get from color */
1511 elem = WMGetFromPLArray(pl, 1);
1512 if (!elem || !WMIsPLString(elem))
1513 return NULL;
1514 val = WMGetFromPLString(elem);
1516 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1517 wwarning(_("\"%s\" is not a valid color name"), val);
1518 return NULL;
1520 color1.alpha = 255;
1521 color1.red = xcolor.red >> 8;
1522 color1.green = xcolor.green >> 8;
1523 color1.blue = xcolor.blue >> 8;
1525 /* get to color */
1526 elem = WMGetFromPLArray(pl, 2);
1527 if (!elem || !WMIsPLString(elem)) {
1528 return NULL;
1530 val = WMGetFromPLString(elem);
1532 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1533 wwarning(_("\"%s\" is not a valid color name"), val);
1534 return NULL;
1536 color2.alpha = 255;
1537 color2.red = xcolor.red >> 8;
1538 color2.green = xcolor.green >> 8;
1539 color2.blue = xcolor.blue >> 8;
1541 texture = (WTexture *) wTextureMakeGradient(scr, type, &color1, &color2);
1543 } else if (strcasecmp(val, "igradient") == 0) {
1544 RColor colors1[2], colors2[2];
1545 int th1, th2;
1546 XColor xcolor;
1547 int i;
1549 if (nelem != 7) {
1550 wwarning(_("bad number of arguments in gradient specification"));
1551 return NULL;
1554 /* get from color */
1555 for (i = 0; i < 2; i++) {
1556 elem = WMGetFromPLArray(pl, 1 + i);
1557 if (!elem || !WMIsPLString(elem))
1558 return NULL;
1559 val = WMGetFromPLString(elem);
1561 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1562 wwarning(_("\"%s\" is not a valid color name"), val);
1563 return NULL;
1565 colors1[i].alpha = 255;
1566 colors1[i].red = xcolor.red >> 8;
1567 colors1[i].green = xcolor.green >> 8;
1568 colors1[i].blue = xcolor.blue >> 8;
1570 elem = WMGetFromPLArray(pl, 3);
1571 if (!elem || !WMIsPLString(elem))
1572 return NULL;
1573 val = WMGetFromPLString(elem);
1574 th1 = atoi(val);
1576 /* get from color */
1577 for (i = 0; i < 2; i++) {
1578 elem = WMGetFromPLArray(pl, 4 + i);
1579 if (!elem || !WMIsPLString(elem))
1580 return NULL;
1581 val = WMGetFromPLString(elem);
1583 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1584 wwarning(_("\"%s\" is not a valid color name"), val);
1585 return NULL;
1587 colors2[i].alpha = 255;
1588 colors2[i].red = xcolor.red >> 8;
1589 colors2[i].green = xcolor.green >> 8;
1590 colors2[i].blue = xcolor.blue >> 8;
1592 elem = WMGetFromPLArray(pl, 6);
1593 if (!elem || !WMIsPLString(elem))
1594 return NULL;
1595 val = WMGetFromPLString(elem);
1596 th2 = atoi(val);
1598 texture = (WTexture *) wTextureMakeIGradient(scr, th1, colors1, th2, colors2);
1600 } else if (strcasecmp(val, "mhgradient") == 0
1601 || strcasecmp(val, "mvgradient") == 0 || strcasecmp(val, "mdgradient") == 0) {
1602 XColor color;
1603 RColor **colors;
1604 int i, count;
1605 int type;
1607 if (nelem < 3) {
1608 wwarning(_("too few arguments in multicolor gradient specification"));
1609 return NULL;
1612 if (val[1] == 'h' || val[1] == 'H')
1613 type = WTEX_MHGRADIENT;
1614 else if (val[1] == 'v' || val[1] == 'V')
1615 type = WTEX_MVGRADIENT;
1616 else
1617 type = WTEX_MDGRADIENT;
1619 count = nelem - 1;
1621 colors = wmalloc(sizeof(RColor *) * (count + 1));
1623 for (i = 0; i < count; i++) {
1624 elem = WMGetFromPLArray(pl, i + 1);
1625 if (!elem || !WMIsPLString(elem)) {
1626 for (--i; i >= 0; --i) {
1627 wfree(colors[i]);
1629 wfree(colors);
1630 return NULL;
1632 val = WMGetFromPLString(elem);
1634 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1635 wwarning(_("\"%s\" is not a valid color name"), val);
1636 for (--i; i >= 0; --i) {
1637 wfree(colors[i]);
1639 wfree(colors);
1640 return NULL;
1641 } else {
1642 colors[i] = wmalloc(sizeof(RColor));
1643 colors[i]->red = color.red >> 8;
1644 colors[i]->green = color.green >> 8;
1645 colors[i]->blue = color.blue >> 8;
1648 colors[i] = NULL;
1650 texture = (WTexture *) wTextureMakeMGradient(scr, type, colors);
1651 } else if (strcasecmp(val, "spixmap") == 0 ||
1652 strcasecmp(val, "cpixmap") == 0 || strcasecmp(val, "tpixmap") == 0) {
1653 XColor color;
1654 int type;
1656 if (nelem != 3)
1657 return NULL;
1659 if (val[0] == 's' || val[0] == 'S')
1660 type = WTP_SCALE;
1661 else if (val[0] == 'c' || val[0] == 'C')
1662 type = WTP_CENTER;
1663 else
1664 type = WTP_TILE;
1666 /* get color */
1667 elem = WMGetFromPLArray(pl, 2);
1668 if (!elem || !WMIsPLString(elem)) {
1669 return NULL;
1671 val = WMGetFromPLString(elem);
1673 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1674 wwarning(_("\"%s\" is not a valid color name"), val);
1675 return NULL;
1678 /* file name */
1679 elem = WMGetFromPLArray(pl, 1);
1680 if (!elem || !WMIsPLString(elem))
1681 return NULL;
1682 val = WMGetFromPLString(elem);
1684 texture = (WTexture *) wTextureMakePixmap(scr, type, val, &color);
1685 } else if (strcasecmp(val, "thgradient") == 0
1686 || strcasecmp(val, "tvgradient") == 0 || strcasecmp(val, "tdgradient") == 0) {
1687 RColor color1, color2;
1688 XColor xcolor;
1689 int opacity;
1690 int style;
1692 if (val[1] == 'h' || val[1] == 'H')
1693 style = WTEX_THGRADIENT;
1694 else if (val[1] == 'v' || val[1] == 'V')
1695 style = WTEX_TVGRADIENT;
1696 else
1697 style = WTEX_TDGRADIENT;
1699 if (nelem != 5) {
1700 wwarning(_("bad number of arguments in textured gradient specification"));
1701 return NULL;
1704 /* get from color */
1705 elem = WMGetFromPLArray(pl, 3);
1706 if (!elem || !WMIsPLString(elem))
1707 return NULL;
1708 val = WMGetFromPLString(elem);
1710 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1711 wwarning(_("\"%s\" is not a valid color name"), val);
1712 return NULL;
1714 color1.alpha = 255;
1715 color1.red = xcolor.red >> 8;
1716 color1.green = xcolor.green >> 8;
1717 color1.blue = xcolor.blue >> 8;
1719 /* get to color */
1720 elem = WMGetFromPLArray(pl, 4);
1721 if (!elem || !WMIsPLString(elem)) {
1722 return NULL;
1724 val = WMGetFromPLString(elem);
1726 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1727 wwarning(_("\"%s\" is not a valid color name"), val);
1728 return NULL;
1730 color2.alpha = 255;
1731 color2.red = xcolor.red >> 8;
1732 color2.green = xcolor.green >> 8;
1733 color2.blue = xcolor.blue >> 8;
1735 /* get opacity */
1736 elem = WMGetFromPLArray(pl, 2);
1737 if (!elem || !WMIsPLString(elem))
1738 opacity = 128;
1739 else
1740 val = WMGetFromPLString(elem);
1742 if (!val || (opacity = atoi(val)) < 0 || opacity > 255) {
1743 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val);
1744 opacity = 128;
1747 /* get file name */
1748 elem = WMGetFromPLArray(pl, 1);
1749 if (!elem || !WMIsPLString(elem))
1750 return NULL;
1751 val = WMGetFromPLString(elem);
1753 texture = (WTexture *) wTextureMakeTGradient(scr, style, &color1, &color2, val, opacity);
1754 } else if (strcasecmp(val, "function") == 0) {
1755 /* Leave this in to handle the unlikely case of
1756 * someone actually having function textures configured */
1757 wwarning("function texture support has been removed");
1758 return NULL;
1759 } else {
1760 wwarning(_("invalid texture type %s"), val);
1761 return NULL;
1763 return texture;
1766 static int getTexture(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1768 static WTexture *texture;
1769 int changed = 0;
1771 again:
1772 if (!WMIsPLArray(value)) {
1773 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "Texture");
1774 if (changed == 0) {
1775 value = entry->plvalue;
1776 changed = 1;
1777 wwarning(_("using default \"%s\" instead"), entry->default_value);
1778 goto again;
1780 return False;
1783 if (strcmp(entry->key, "WidgetColor") == 0 && !changed) {
1784 WMPropList *pl;
1786 pl = WMGetFromPLArray(value, 0);
1787 if (!pl || !WMIsPLString(pl) || !WMGetFromPLString(pl)
1788 || strcasecmp(WMGetFromPLString(pl), "solid") != 0) {
1789 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1790 entry->key, "Solid Texture");
1792 value = entry->plvalue;
1793 changed = 1;
1794 wwarning(_("using default \"%s\" instead"), entry->default_value);
1795 goto again;
1799 texture = parse_texture(scr, value);
1801 if (!texture) {
1802 wwarning(_("Error in texture specification for key \"%s\""), entry->key);
1803 if (changed == 0) {
1804 value = entry->plvalue;
1805 changed = 1;
1806 wwarning(_("using default \"%s\" instead"), entry->default_value);
1807 goto again;
1809 return False;
1812 if (ret)
1813 *ret = &texture;
1815 if (addr)
1816 *(WTexture **) addr = texture;
1818 return True;
1821 static int getWSBackground(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1823 WMPropList *elem;
1824 int changed = 0;
1825 char *val;
1826 int nelem;
1828 again:
1829 if (!WMIsPLArray(value)) {
1830 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1831 "WorkspaceBack", "Texture or None");
1832 if (changed == 0) {
1833 value = entry->plvalue;
1834 changed = 1;
1835 wwarning(_("using default \"%s\" instead"), entry->default_value);
1836 goto again;
1838 return False;
1841 /* only do basic error checking and verify for None texture */
1843 nelem = WMGetPropListItemCount(value);
1844 if (nelem > 0) {
1845 elem = WMGetFromPLArray(value, 0);
1846 if (!elem || !WMIsPLString(elem)) {
1847 wwarning(_("Wrong type for workspace background. Should be a texture type."));
1848 if (changed == 0) {
1849 value = entry->plvalue;
1850 changed = 1;
1851 wwarning(_("using default \"%s\" instead"), entry->default_value);
1852 goto again;
1854 return False;
1856 val = WMGetFromPLString(elem);
1858 if (strcasecmp(val, "None") == 0)
1859 return True;
1861 *ret = WMRetainPropList(value);
1863 return True;
1866 static int
1867 getWSSpecificBackground(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1869 WMPropList *elem;
1870 int nelem;
1871 int changed = 0;
1873 again:
1874 if (!WMIsPLArray(value)) {
1875 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1876 "WorkspaceSpecificBack", "an array of textures");
1877 if (changed == 0) {
1878 value = entry->plvalue;
1879 changed = 1;
1880 wwarning(_("using default \"%s\" instead"), entry->default_value);
1881 goto again;
1883 return False;
1886 /* only do basic error checking and verify for None texture */
1888 nelem = WMGetPropListItemCount(value);
1889 if (nelem > 0) {
1890 while (nelem--) {
1891 elem = WMGetFromPLArray(value, nelem);
1892 if (!elem || !WMIsPLArray(elem)) {
1893 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
1894 nelem);
1899 *ret = WMRetainPropList(value);
1901 #ifdef notworking
1903 * Kluge to force wmsetbg helper to set the default background.
1904 * If the WorkspaceSpecificBack is changed once wmaker has started,
1905 * the WorkspaceBack won't be sent to the helper, unless the user
1906 * changes it's value too. So, we must force this by removing the
1907 * value from the defaults DB.
1909 if (!scr->flags.backimage_helper_launched && !scr->flags.startup) {
1910 WMPropList *key = WMCreatePLString("WorkspaceBack");
1912 WMRemoveFromPLDictionary(WDWindowMaker->dictionary, key);
1914 WMReleasePropList(key);
1916 #endif
1917 return True;
1920 static int getFont(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1922 static WMFont *font;
1923 char *val;
1925 GET_STRING_OR_DEFAULT("Font", val);
1927 font = WMCreateFont(scr->wmscreen, val);
1928 if (!font)
1929 font = WMCreateFont(scr->wmscreen, "fixed");
1931 if (!font) {
1932 wfatal(_("could not load any usable font!!!"));
1933 exit(1);
1936 if (ret)
1937 *ret = font;
1939 /* can't assign font value outside update function */
1940 wassertrv(addr == NULL, True);
1942 return True;
1945 static int getColor(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1947 static XColor color;
1948 char *val;
1949 int second_pass = 0;
1951 GET_STRING_OR_DEFAULT("Color", val);
1953 again:
1954 if (!wGetColor(scr, val, &color)) {
1955 wwarning(_("could not get color for key \"%s\""), entry->key);
1956 if (second_pass == 0) {
1957 val = WMGetFromPLString(entry->plvalue);
1958 second_pass = 1;
1959 wwarning(_("using default \"%s\" instead"), val);
1960 goto again;
1962 return False;
1965 if (ret)
1966 *ret = &color;
1968 assert(addr == NULL);
1970 if (addr)
1971 *(unsigned long*)addr = pixel;
1974 return True;
1977 static int getKeybind(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1979 static WShortKey shortcut;
1980 KeySym ksym;
1981 char *val;
1982 char *k;
1983 char buf[MAX_SHORTCUT_LENGTH], *b;
1985 GET_STRING_OR_DEFAULT("Key spec", val);
1987 if (!val || strcasecmp(val, "NONE") == 0) {
1988 shortcut.keycode = 0;
1989 shortcut.modifier = 0;
1990 if (ret)
1991 *ret = &shortcut;
1992 return True;
1995 wstrlcpy(buf, val, MAX_SHORTCUT_LENGTH);
1997 b = (char *)buf;
1999 /* get modifiers */
2000 shortcut.modifier = 0;
2001 while ((k = strchr(b, '+')) != NULL) {
2002 int mod;
2004 *k = 0;
2005 mod = wXModifierFromKey(b);
2006 if (mod < 0) {
2007 wwarning(_("%s: invalid key modifier \"%s\""), entry->key, b);
2008 return False;
2010 shortcut.modifier |= mod;
2012 b = k + 1;
2015 /* get key */
2016 ksym = XStringToKeysym(b);
2018 if (ksym == NoSymbol) {
2019 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry->key, val);
2020 return False;
2023 shortcut.keycode = XKeysymToKeycode(dpy, ksym);
2024 if (shortcut.keycode == 0) {
2025 wwarning(_("%s:invalid key in shortcut \"%s\""), entry->key, val);
2026 return False;
2029 if (ret)
2030 *ret = &shortcut;
2032 return True;
2035 static int getModMask(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2037 static int mask;
2038 char *str;
2040 GET_STRING_OR_DEFAULT("Modifier Key", str);
2042 if (!str)
2043 return False;
2045 mask = wXModifierFromKey(str);
2046 if (mask < 0) {
2047 wwarning(_("%s: modifier key %s is not valid"), entry->key, str);
2048 mask = 0;
2049 return False;
2052 if (addr)
2053 *(int *)addr = mask;
2055 if (ret)
2056 *ret = &mask;
2058 return True;
2061 # include <X11/cursorfont.h>
2062 typedef struct {
2063 char *name;
2064 int id;
2065 } WCursorLookup;
2067 #define CURSOR_ID_NONE (XC_num_glyphs)
2069 static WCursorLookup cursor_table[] = {
2070 {"X_cursor", XC_X_cursor},
2071 {"arrow", XC_arrow},
2072 {"based_arrow_down", XC_based_arrow_down},
2073 {"based_arrow_up", XC_based_arrow_up},
2074 {"boat", XC_boat},
2075 {"bogosity", XC_bogosity},
2076 {"bottom_left_corner", XC_bottom_left_corner},
2077 {"bottom_right_corner", XC_bottom_right_corner},
2078 {"bottom_side", XC_bottom_side},
2079 {"bottom_tee", XC_bottom_tee},
2080 {"box_spiral", XC_box_spiral},
2081 {"center_ptr", XC_center_ptr},
2082 {"circle", XC_circle},
2083 {"clock", XC_clock},
2084 {"coffee_mug", XC_coffee_mug},
2085 {"cross", XC_cross},
2086 {"cross_reverse", XC_cross_reverse},
2087 {"crosshair", XC_crosshair},
2088 {"diamond_cross", XC_diamond_cross},
2089 {"dot", XC_dot},
2090 {"dotbox", XC_dotbox},
2091 {"double_arrow", XC_double_arrow},
2092 {"draft_large", XC_draft_large},
2093 {"draft_small", XC_draft_small},
2094 {"draped_box", XC_draped_box},
2095 {"exchange", XC_exchange},
2096 {"fleur", XC_fleur},
2097 {"gobbler", XC_gobbler},
2098 {"gumby", XC_gumby},
2099 {"hand1", XC_hand1},
2100 {"hand2", XC_hand2},
2101 {"heart", XC_heart},
2102 {"icon", XC_icon},
2103 {"iron_cross", XC_iron_cross},
2104 {"left_ptr", XC_left_ptr},
2105 {"left_side", XC_left_side},
2106 {"left_tee", XC_left_tee},
2107 {"leftbutton", XC_leftbutton},
2108 {"ll_angle", XC_ll_angle},
2109 {"lr_angle", XC_lr_angle},
2110 {"man", XC_man},
2111 {"middlebutton", XC_middlebutton},
2112 {"mouse", XC_mouse},
2113 {"pencil", XC_pencil},
2114 {"pirate", XC_pirate},
2115 {"plus", XC_plus},
2116 {"question_arrow", XC_question_arrow},
2117 {"right_ptr", XC_right_ptr},
2118 {"right_side", XC_right_side},
2119 {"right_tee", XC_right_tee},
2120 {"rightbutton", XC_rightbutton},
2121 {"rtl_logo", XC_rtl_logo},
2122 {"sailboat", XC_sailboat},
2123 {"sb_down_arrow", XC_sb_down_arrow},
2124 {"sb_h_double_arrow", XC_sb_h_double_arrow},
2125 {"sb_left_arrow", XC_sb_left_arrow},
2126 {"sb_right_arrow", XC_sb_right_arrow},
2127 {"sb_up_arrow", XC_sb_up_arrow},
2128 {"sb_v_double_arrow", XC_sb_v_double_arrow},
2129 {"shuttle", XC_shuttle},
2130 {"sizing", XC_sizing},
2131 {"spider", XC_spider},
2132 {"spraycan", XC_spraycan},
2133 {"star", XC_star},
2134 {"target", XC_target},
2135 {"tcross", XC_tcross},
2136 {"top_left_arrow", XC_top_left_arrow},
2137 {"top_left_corner", XC_top_left_corner},
2138 {"top_right_corner", XC_top_right_corner},
2139 {"top_side", XC_top_side},
2140 {"top_tee", XC_top_tee},
2141 {"trek", XC_trek},
2142 {"ul_angle", XC_ul_angle},
2143 {"umbrella", XC_umbrella},
2144 {"ur_angle", XC_ur_angle},
2145 {"watch", XC_watch},
2146 {"xterm", XC_xterm},
2147 {NULL, CURSOR_ID_NONE}
2150 static void check_bitmap_status(int status, char *filename, Pixmap bitmap)
2152 switch (status) {
2153 case BitmapOpenFailed:
2154 wwarning(_("failed to open bitmap file \"%s\""), filename);
2155 break;
2156 case BitmapFileInvalid:
2157 wwarning(_("\"%s\" is not a valid bitmap file"), filename);
2158 break;
2159 case BitmapNoMemory:
2160 wwarning(_("out of memory reading bitmap file \"%s\""), filename);
2161 break;
2162 case BitmapSuccess:
2163 XFreePixmap(dpy, bitmap);
2164 break;
2169 * (none)
2170 * (builtin, <cursor_name>)
2171 * (bitmap, <cursor_bitmap>, <cursor_mask>)
2173 static int parse_cursor(WScreen * scr, WMPropList * pl, Cursor * cursor)
2175 WMPropList *elem;
2176 char *val;
2177 int nelem;
2178 int status = 0;
2180 nelem = WMGetPropListItemCount(pl);
2181 if (nelem < 1) {
2182 return (status);
2184 elem = WMGetFromPLArray(pl, 0);
2185 if (!elem || !WMIsPLString(elem)) {
2186 return (status);
2188 val = WMGetFromPLString(elem);
2190 if (strcasecmp(val, "none") == 0) {
2191 status = 1;
2192 *cursor = None;
2193 } else if (strcasecmp(val, "builtin") == 0) {
2194 int i;
2195 int cursor_id = CURSOR_ID_NONE;
2197 if (nelem != 2) {
2198 wwarning(_("bad number of arguments in cursor specification"));
2199 return (status);
2201 elem = WMGetFromPLArray(pl, 1);
2202 if (!elem || !WMIsPLString(elem)) {
2203 return (status);
2205 val = WMGetFromPLString(elem);
2207 for (i = 0; cursor_table[i].name != NULL; i++) {
2208 if (strcasecmp(val, cursor_table[i].name) == 0) {
2209 cursor_id = cursor_table[i].id;
2210 break;
2213 if (CURSOR_ID_NONE == cursor_id) {
2214 wwarning(_("unknown builtin cursor name \"%s\""), val);
2215 } else {
2216 *cursor = XCreateFontCursor(dpy, cursor_id);
2217 status = 1;
2219 } else if (strcasecmp(val, "bitmap") == 0) {
2220 char *bitmap_name;
2221 char *mask_name;
2222 int bitmap_status;
2223 int mask_status;
2224 Pixmap bitmap;
2225 Pixmap mask;
2226 unsigned int w, h;
2227 int x, y;
2228 XColor fg, bg;
2230 if (nelem != 3) {
2231 wwarning(_("bad number of arguments in cursor specification"));
2232 return (status);
2234 elem = WMGetFromPLArray(pl, 1);
2235 if (!elem || !WMIsPLString(elem)) {
2236 return (status);
2238 val = WMGetFromPLString(elem);
2239 bitmap_name = FindImage(wPreferences.pixmap_path, val);
2240 if (!bitmap_name) {
2241 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2242 return (status);
2244 elem = WMGetFromPLArray(pl, 2);
2245 if (!elem || !WMIsPLString(elem)) {
2246 wfree(bitmap_name);
2247 return (status);
2249 val = WMGetFromPLString(elem);
2250 mask_name = FindImage(wPreferences.pixmap_path, val);
2251 if (!mask_name) {
2252 wfree(bitmap_name);
2253 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2254 return (status);
2256 mask_status = XReadBitmapFile(dpy, scr->w_win, mask_name, &w, &h, &mask, &x, &y);
2257 bitmap_status = XReadBitmapFile(dpy, scr->w_win, bitmap_name, &w, &h, &bitmap, &x, &y);
2258 if ((BitmapSuccess == bitmap_status) && (BitmapSuccess == mask_status)) {
2259 fg.pixel = scr->black_pixel;
2260 bg.pixel = scr->white_pixel;
2261 XQueryColor(dpy, scr->w_colormap, &fg);
2262 XQueryColor(dpy, scr->w_colormap, &bg);
2263 *cursor = XCreatePixmapCursor(dpy, bitmap, mask, &fg, &bg, x, y);
2264 status = 1;
2266 check_bitmap_status(bitmap_status, bitmap_name, bitmap);
2267 check_bitmap_status(mask_status, mask_name, mask);
2268 wfree(bitmap_name);
2269 wfree(mask_name);
2271 return (status);
2274 static int getCursor(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2276 static Cursor cursor;
2277 int status;
2278 int changed = 0;
2280 again:
2281 if (!WMIsPLArray(value)) {
2282 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2283 entry->key, "cursor specification");
2284 if (!changed) {
2285 value = entry->plvalue;
2286 changed = 1;
2287 wwarning(_("using default \"%s\" instead"), entry->default_value);
2288 goto again;
2290 return (False);
2292 status = parse_cursor(scr, value, &cursor);
2293 if (!status) {
2294 wwarning(_("Error in cursor specification for key \"%s\""), entry->key);
2295 if (!changed) {
2296 value = entry->plvalue;
2297 changed = 1;
2298 wwarning(_("using default \"%s\" instead"), entry->default_value);
2299 goto again;
2301 return (False);
2303 if (ret) {
2304 *ret = &cursor;
2306 if (addr) {
2307 *(Cursor *) addr = cursor;
2309 return (True);
2312 #undef CURSOR_ID_NONE
2314 /* ---------------- value setting functions --------------- */
2315 static int setJustify(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2317 return REFRESH_WINDOW_TITLE_COLOR;
2320 static int setClearance(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2322 return REFRESH_WINDOW_FONT | REFRESH_BUTTON_IMAGES | REFRESH_MENU_TITLE_FONT | REFRESH_MENU_FONT;
2325 static int setIfDockPresent(WScreen * scr, WDefaultEntry * entry, char *flag, long which)
2327 switch (which) {
2328 case WM_DOCK:
2329 wPreferences.flags.nodock = wPreferences.flags.nodock || *flag;
2330 break;
2331 case WM_CLIP:
2332 wPreferences.flags.noclip = wPreferences.flags.noclip || *flag;
2333 break;
2334 default:
2335 break;
2337 return 0;
2340 static int setStickyIcons(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2342 if (scr->workspaces) {
2343 wWorkspaceForceChange(scr, scr->current_workspace);
2344 wArrangeIcons(scr, False);
2346 return 0;
2349 static int setIconTile(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2351 Pixmap pixmap;
2352 RImage *img;
2353 int reset = 0;
2355 img = wTextureRenderImage(*texture, wPreferences.icon_size,
2356 wPreferences.icon_size, ((*texture)->any.type & WREL_BORDER_MASK)
2357 ? WREL_ICON : WREL_FLAT);
2358 if (!img) {
2359 wwarning(_("could not render texture for icon background"));
2360 if (!entry->addr)
2361 wTextureDestroy(scr, *texture);
2362 return 0;
2364 RConvertImage(scr->rcontext, img, &pixmap);
2366 if (scr->icon_tile) {
2367 reset = 1;
2368 RReleaseImage(scr->icon_tile);
2369 XFreePixmap(dpy, scr->icon_tile_pixmap);
2372 scr->icon_tile = img;
2374 /* put the icon in the noticeboard hint */
2375 PropSetIconTileHint(scr, img);
2377 if (!wPreferences.flags.noclip) {
2378 if (scr->clip_tile) {
2379 RReleaseImage(scr->clip_tile);
2381 scr->clip_tile = wClipMakeTile(scr, img);
2384 scr->icon_tile_pixmap = pixmap;
2386 if (scr->def_icon_rimage) {
2387 RReleaseImage(scr->def_icon_rimage);
2388 scr->def_icon_rimage = NULL;
2391 if (scr->icon_back_texture)
2392 wTextureDestroy(scr, (WTexture *) scr->icon_back_texture);
2394 scr->icon_back_texture = wTextureMakeSolid(scr, &((*texture)->any.color));
2396 if (scr->clip_balloon)
2397 XSetWindowBackground(dpy, scr->clip_balloon, (*texture)->any.color.pixel);
2400 * Free the texture as nobody else will use it, nor refer to it.
2402 if (!entry->addr)
2403 wTextureDestroy(scr, *texture);
2405 return (reset ? REFRESH_ICON_TILE : 0);
2408 static int setWinTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2410 if (scr->title_font) {
2411 WMReleaseFont(scr->title_font);
2413 scr->title_font = font;
2415 return REFRESH_WINDOW_FONT | REFRESH_BUTTON_IMAGES;
2418 static int setMenuTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2420 if (scr->menu_title_font) {
2421 WMReleaseFont(scr->menu_title_font);
2424 scr->menu_title_font = font;
2426 return REFRESH_MENU_TITLE_FONT;
2429 static int setMenuTextFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2431 if (scr->menu_entry_font) {
2432 WMReleaseFont(scr->menu_entry_font);
2434 scr->menu_entry_font = font;
2436 return REFRESH_MENU_FONT;
2439 static int setIconTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2441 if (scr->icon_title_font) {
2442 WMReleaseFont(scr->icon_title_font);
2445 scr->icon_title_font = font;
2447 return REFRESH_ICON_FONT;
2450 static int setClipTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2452 if (scr->clip_title_font) {
2453 WMReleaseFont(scr->clip_title_font);
2456 scr->clip_title_font = font;
2458 return REFRESH_ICON_FONT;
2461 static int setLargeDisplayFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2463 if (scr->workspace_name_font) {
2464 WMReleaseFont(scr->workspace_name_font);
2467 scr->workspace_name_font = font;
2469 return 0;
2472 static int setHightlight(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2474 if (scr->select_color)
2475 WMReleaseColor(scr->select_color);
2477 scr->select_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2479 wFreeColor(scr, color->pixel);
2481 return REFRESH_MENU_COLOR;
2484 static int setHightlightText(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2486 if (scr->select_text_color)
2487 WMReleaseColor(scr->select_text_color);
2489 scr->select_text_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2491 wFreeColor(scr, color->pixel);
2493 return REFRESH_MENU_COLOR;
2496 static int setClipTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2498 if (scr->clip_title_color[widx])
2499 WMReleaseColor(scr->clip_title_color[widx]);
2501 scr->clip_title_color[widx] = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2502 wFreeColor(scr, color->pixel);
2504 return REFRESH_ICON_TITLE_COLOR;
2507 static int setWTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2509 if (scr->window_title_color[widx])
2510 WMReleaseColor(scr->window_title_color[widx]);
2512 scr->window_title_color[widx] =
2513 WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2515 wFreeColor(scr, color->pixel);
2517 return REFRESH_WINDOW_TITLE_COLOR;
2520 static int setMenuTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2522 if (scr->menu_title_color[0])
2523 WMReleaseColor(scr->menu_title_color[0]);
2525 scr->menu_title_color[0] = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2527 wFreeColor(scr, color->pixel);
2529 return REFRESH_MENU_TITLE_COLOR;
2532 static int setMenuTextColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2534 if (scr->mtext_color)
2535 WMReleaseColor(scr->mtext_color);
2537 scr->mtext_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2539 if (WMColorPixel(scr->dtext_color) == WMColorPixel(scr->mtext_color)) {
2540 WMSetColorAlpha(scr->dtext_color, 0x7fff);
2541 } else {
2542 WMSetColorAlpha(scr->dtext_color, 0xffff);
2545 wFreeColor(scr, color->pixel);
2547 return REFRESH_MENU_COLOR;
2550 static int setMenuDisabledColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2552 if (scr->dtext_color)
2553 WMReleaseColor(scr->dtext_color);
2555 scr->dtext_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2557 if (WMColorPixel(scr->dtext_color) == WMColorPixel(scr->mtext_color)) {
2558 WMSetColorAlpha(scr->dtext_color, 0x7fff);
2559 } else {
2560 WMSetColorAlpha(scr->dtext_color, 0xffff);
2563 wFreeColor(scr, color->pixel);
2565 return REFRESH_MENU_COLOR;
2568 static int setIconTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2570 if (scr->icon_title_color)
2571 WMReleaseColor(scr->icon_title_color);
2572 scr->icon_title_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2574 wFreeColor(scr, color->pixel);
2576 return REFRESH_ICON_TITLE_COLOR;
2579 static int setIconTitleBack(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2581 if (scr->icon_title_texture) {
2582 wTextureDestroy(scr, (WTexture *) scr->icon_title_texture);
2584 scr->icon_title_texture = wTextureMakeSolid(scr, color);
2586 return REFRESH_ICON_TITLE_BACK;
2589 static void trackDeadProcess(pid_t pid, unsigned char status, WScreen * scr)
2591 close(scr->helper_fd);
2592 scr->helper_fd = 0;
2593 scr->helper_pid = 0;
2594 scr->flags.backimage_helper_launched = 0;
2597 static int setWorkspaceSpecificBack(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *bar)
2599 WMPropList *val;
2600 char *str;
2601 int i;
2603 if (scr->flags.backimage_helper_launched) {
2604 if (WMGetPropListItemCount(value) == 0) {
2605 SendHelperMessage(scr, 'C', 0, NULL);
2606 SendHelperMessage(scr, 'K', 0, NULL);
2608 WMReleasePropList(value);
2609 return 0;
2611 } else {
2612 pid_t pid;
2613 int filedes[2];
2615 if (WMGetPropListItemCount(value) == 0)
2616 return 0;
2618 if (pipe(filedes) < 0) {
2619 werror("pipe() failed:can't set workspace specific background image");
2621 WMReleasePropList(value);
2622 return 0;
2625 pid = fork();
2626 if (pid < 0) {
2627 werror("fork() failed:can't set workspace specific background image");
2628 if (close(filedes[0]) < 0)
2629 werror("could not close pipe");
2630 if (close(filedes[1]) < 0)
2631 werror("could not close pipe");
2633 } else if (pid == 0) {
2634 char *dither;
2636 SetupEnvironment(scr);
2638 if (close(0) < 0)
2639 werror("could not close pipe");
2640 if (dup(filedes[0]) < 0) {
2641 werror("dup() failed:can't set workspace specific background image");
2643 dither = wPreferences.no_dithering ? "-m" : "-d";
2644 if (wPreferences.smooth_workspace_back)
2645 execlp("wmsetbg", "wmsetbg", "-helper", "-S", dither, NULL);
2646 else
2647 execlp("wmsetbg", "wmsetbg", "-helper", dither, NULL);
2648 werror("could not execute wmsetbg");
2649 exit(1);
2650 } else {
2652 if (fcntl(filedes[0], F_SETFD, FD_CLOEXEC) < 0) {
2653 werror("error setting close-on-exec flag");
2655 if (fcntl(filedes[1], F_SETFD, FD_CLOEXEC) < 0) {
2656 werror("error setting close-on-exec flag");
2659 scr->helper_fd = filedes[1];
2660 scr->helper_pid = pid;
2661 scr->flags.backimage_helper_launched = 1;
2663 wAddDeathHandler(pid, (WDeathHandler *) trackDeadProcess, scr);
2665 SendHelperMessage(scr, 'P', -1, wPreferences.pixmap_path);
2670 for (i = 0; i < WMGetPropListItemCount(value); i++) {
2671 val = WMGetFromPLArray(value, i);
2672 if (val && WMIsPLArray(val) && WMGetPropListItemCount(val) > 0) {
2673 str = WMGetPropListDescription(val, False);
2675 SendHelperMessage(scr, 'S', i + 1, str);
2677 wfree(str);
2678 } else {
2679 SendHelperMessage(scr, 'U', i + 1, NULL);
2682 sleep(1);
2684 WMReleasePropList(value);
2685 return 0;
2688 static int setWorkspaceBack(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *bar)
2690 if (scr->flags.backimage_helper_launched) {
2691 char *str;
2693 if (WMGetPropListItemCount(value) == 0) {
2694 SendHelperMessage(scr, 'U', 0, NULL);
2695 } else {
2696 /* set the default workspace background to this one */
2697 str = WMGetPropListDescription(value, False);
2698 if (str) {
2699 SendHelperMessage(scr, 'S', 0, str);
2700 wfree(str);
2701 SendHelperMessage(scr, 'C', scr->current_workspace + 1, NULL);
2702 } else {
2703 SendHelperMessage(scr, 'U', 0, NULL);
2706 } else if (WMGetPropListItemCount(value) > 0) {
2707 char *command;
2708 char *text;
2709 char *dither;
2710 int len;
2712 text = WMGetPropListDescription(value, False);
2713 len = strlen(text) + 40;
2714 command = wmalloc(len);
2715 dither = wPreferences.no_dithering ? "-m" : "-d";
2716 if (wPreferences.smooth_workspace_back)
2717 snprintf(command, len, "wmsetbg %s -S -p '%s' &", dither, text);
2718 else
2719 snprintf(command, len, "wmsetbg %s -p '%s' &", dither, text);
2720 wfree(text);
2721 ExecuteShellCommand(scr, command);
2722 wfree(command);
2724 WMReleasePropList(value);
2726 return 0;
2729 static int setWidgetColor(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2731 if (scr->widget_texture) {
2732 wTextureDestroy(scr, (WTexture *) scr->widget_texture);
2734 scr->widget_texture = *(WTexSolid **) texture;
2736 return 0;
2739 static int setFTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2741 if (scr->window_title_texture[WS_FOCUSED]) {
2742 wTextureDestroy(scr, scr->window_title_texture[WS_FOCUSED]);
2744 scr->window_title_texture[WS_FOCUSED] = *texture;
2746 return REFRESH_WINDOW_TEXTURES;
2749 static int setPTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2751 if (scr->window_title_texture[WS_PFOCUSED]) {
2752 wTextureDestroy(scr, scr->window_title_texture[WS_PFOCUSED]);
2754 scr->window_title_texture[WS_PFOCUSED] = *texture;
2756 return REFRESH_WINDOW_TEXTURES;
2759 static int setUTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2761 if (scr->window_title_texture[WS_UNFOCUSED]) {
2762 wTextureDestroy(scr, scr->window_title_texture[WS_UNFOCUSED]);
2764 scr->window_title_texture[WS_UNFOCUSED] = *texture;
2766 return REFRESH_WINDOW_TEXTURES;
2769 static int setResizebarBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2771 if (scr->resizebar_texture[0]) {
2772 wTextureDestroy(scr, scr->resizebar_texture[0]);
2774 scr->resizebar_texture[0] = *texture;
2776 return REFRESH_WINDOW_TEXTURES;
2779 static int setMenuTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2781 if (scr->menu_title_texture[0]) {
2782 wTextureDestroy(scr, scr->menu_title_texture[0]);
2784 scr->menu_title_texture[0] = *texture;
2786 return REFRESH_MENU_TITLE_TEXTURE;
2789 static int setMenuTextBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2791 if (scr->menu_item_texture) {
2792 wTextureDestroy(scr, scr->menu_item_texture);
2793 wTextureDestroy(scr, (WTexture *) scr->menu_item_auxtexture);
2795 scr->menu_item_texture = *texture;
2797 scr->menu_item_auxtexture = wTextureMakeSolid(scr, &scr->menu_item_texture->any.color);
2799 return REFRESH_MENU_TEXTURE;
2802 static int setKeyGrab(WScreen * scr, WDefaultEntry * entry, WShortKey * shortcut, long widx)
2804 WWindow *wwin;
2805 wKeyBindings[widx] = *shortcut;
2807 wwin = scr->focused_window;
2809 while (wwin != NULL) {
2810 XUngrabKey(dpy, AnyKey, AnyModifier, wwin->frame->core->window);
2812 if (!WFLAGP(wwin, no_bind_keys)) {
2813 wWindowSetKeyGrabs(wwin);
2815 wwin = wwin->prev;
2818 return 0;
2821 static int setIconPosition(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2823 wScreenUpdateUsableArea(scr);
2824 wArrangeIcons(scr, True);
2826 return 0;
2829 static int updateUsableArea(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2831 wScreenUpdateUsableArea(scr);
2833 return 0;
2836 static int setMenuStyle(WScreen * scr, WDefaultEntry * entry, int *value, void *foo)
2838 return REFRESH_MENU_TEXTURE;
2841 static RImage *chopOffImage(RImage * image, int x, int y, int w, int h)
2843 RImage *img = RCreateImage(w, h, image->format == RRGBAFormat);
2845 RCopyArea(img, image, x, y, w, h, 0, 0);
2847 return img;
2850 static int setSwPOptions(WScreen * scr, WDefaultEntry * entry, WMPropList * array, void *foo)
2852 char *path;
2853 RImage *bgimage;
2854 int cwidth, cheight;
2855 WPreferences *prefs = (WPreferences *) foo;
2857 if (!WMIsPLArray(array) || WMGetPropListItemCount(array) == 0) {
2858 if (prefs->swtileImage)
2859 RReleaseImage(prefs->swtileImage);
2860 prefs->swtileImage = NULL;
2862 WMReleasePropList(array);
2863 return 0;
2866 switch (WMGetPropListItemCount(array)) {
2867 case 4:
2868 if (!WMIsPLString(WMGetFromPLArray(array, 1))) {
2869 wwarning(_("Invalid arguments for option \"%s\""), entry->key);
2870 break;
2871 } else
2872 path = FindImage(wPreferences.pixmap_path, WMGetFromPLString(WMGetFromPLArray(array, 1)));
2874 if (!path) {
2875 wwarning(_("Could not find image \"%s\" for option \"%s\""),
2876 WMGetFromPLString(WMGetFromPLArray(array, 1)), entry->key);
2877 } else {
2878 bgimage = RLoadImage(scr->rcontext, path, 0);
2879 if (!bgimage) {
2880 wwarning(_("Could not load image \"%s\" for option \"%s\""), path, entry->key);
2881 wfree(path);
2882 } else {
2883 wfree(path);
2885 cwidth = atoi(WMGetFromPLString(WMGetFromPLArray(array, 2)));
2886 cheight = atoi(WMGetFromPLString(WMGetFromPLArray(array, 3)));
2888 if (cwidth <= 0 || cheight <= 0 ||
2889 cwidth >= bgimage->width - 2 || cheight >= bgimage->height - 2)
2890 wwarning(_("Invalid split sizes for SwitchPanel back image."));
2891 else {
2892 int i;
2893 int swidth, theight;
2894 for (i = 0; i < 9; i++) {
2895 if (prefs->swbackImage[i])
2896 RReleaseImage(prefs->swbackImage[i]);
2897 prefs->swbackImage[i] = NULL;
2899 swidth = (bgimage->width - cwidth) / 2;
2900 theight = (bgimage->height - cheight) / 2;
2902 prefs->swbackImage[0] = chopOffImage(bgimage, 0, 0, swidth, theight);
2903 prefs->swbackImage[1] = chopOffImage(bgimage, swidth, 0, cwidth, theight);
2904 prefs->swbackImage[2] = chopOffImage(bgimage, swidth + cwidth, 0,
2905 swidth, theight);
2907 prefs->swbackImage[3] = chopOffImage(bgimage, 0, theight, swidth, cheight);
2908 prefs->swbackImage[4] = chopOffImage(bgimage, swidth, theight,
2909 cwidth, cheight);
2910 prefs->swbackImage[5] = chopOffImage(bgimage, swidth + cwidth, theight,
2911 swidth, cheight);
2913 prefs->swbackImage[6] = chopOffImage(bgimage, 0, theight + cheight,
2914 swidth, theight);
2915 prefs->swbackImage[7] = chopOffImage(bgimage, swidth, theight + cheight,
2916 cwidth, theight);
2917 prefs->swbackImage[8] =
2918 chopOffImage(bgimage, swidth + cwidth, theight + cheight, swidth,
2919 theight);
2921 // check if anything failed
2922 for (i = 0; i < 9; i++) {
2923 if (!prefs->swbackImage[i]) {
2924 for (; i >= 0; --i) {
2925 RReleaseImage(prefs->swbackImage[i]);
2926 prefs->swbackImage[i] = NULL;
2928 break;
2932 RReleaseImage(bgimage);
2936 case 1:
2937 if (!WMIsPLString(WMGetFromPLArray(array, 0))) {
2938 wwarning(_("Invalid arguments for option \"%s\""), entry->key);
2939 break;
2940 } else
2941 path = FindImage(wPreferences.pixmap_path, WMGetFromPLString(WMGetFromPLArray(array, 0)));
2943 if (!path) {
2944 wwarning(_("Could not find image \"%s\" for option \"%s\""),
2945 WMGetFromPLString(WMGetFromPLArray(array, 0)), entry->key);
2946 } else {
2947 if (prefs->swtileImage)
2948 RReleaseImage(prefs->swtileImage);
2950 prefs->swtileImage = RLoadImage(scr->rcontext, path, 0);
2951 if (!prefs->swtileImage) {
2952 wwarning(_("Could not load image \"%s\" for option \"%s\""), path, entry->key);
2954 wfree(path);
2956 break;
2958 default:
2959 wwarning(_("Invalid number of arguments for option \"%s\""), entry->key);
2960 break;
2963 WMReleasePropList(array);
2965 return 0;
2968 static int setModifierKeyLabels(WScreen * scr, WDefaultEntry * entry, WMPropList * array, void *foo)
2970 int i;
2971 WPreferences *prefs = (WPreferences *) foo;
2973 if (!WMIsPLArray(array) || WMGetPropListItemCount(array) != 7) {
2974 wwarning(_("Value for option \"%s\" must be an array of 7 strings"), entry->key);
2975 WMReleasePropList(array);
2976 return 0;
2979 DestroyWindowMenu(scr);
2981 for (i = 0; i < 7; i++) {
2982 if (prefs->modifier_labels[i])
2983 wfree(prefs->modifier_labels[i]);
2985 if (WMIsPLString(WMGetFromPLArray(array, i))) {
2986 prefs->modifier_labels[i] = wstrdup(WMGetFromPLString(WMGetFromPLArray(array, i)));
2987 } else {
2988 wwarning(_("Invalid argument for option \"%s\" item %d"), entry->key, i);
2989 prefs->modifier_labels[i] = NULL;
2993 WMReleasePropList(array);
2995 return 0;
2999 * Very ugly kluge.
3000 * Need access to the double click variables, so that all widgets in
3001 * wmaker panels will have the same dbl-click values.
3002 * TODO: figure a better way of dealing with it.
3004 #include <WINGs/WINGsP.h>
3006 static int setDoubleClick(WScreen * scr, WDefaultEntry * entry, int *value, void *foo)
3008 extern _WINGsConfiguration WINGsConfiguration;
3010 if (*value <= 0)
3011 *(int *)foo = 1;
3013 WINGsConfiguration.doubleClickDelay = *value;
3015 return 0;
3018 static int setCursor(WScreen * scr, WDefaultEntry * entry, Cursor * cursor, long widx)
3020 if (wCursor[widx] != None) {
3021 XFreeCursor(dpy, wCursor[widx]);
3024 wCursor[widx] = *cursor;
3026 if (widx == WCUR_ROOT && *cursor != None) {
3027 XDefineCursor(dpy, scr->root_win, *cursor);
3030 return 0;