Option to raise bouncing appicons
[wmaker-crm.git] / src / defaults.c
blob9333e3bef730c4438e2d1cf6da724fb361fec49c
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
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 * USA.
24 #include "wconfig.h"
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.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"
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 extern Cursor wCursor[WCUR_LAST];
152 static int getCursor();
153 static int setCursor();
156 * Tables to convert strings to enumeration values.
157 * Values stored are char
160 /* WARNING: sum of length of all value strings must not exceed
161 * this value */
162 #define TOTAL_VALUES_LENGTH 80
164 #define REFRESH_WINDOW_TEXTURES (1<<0)
165 #define REFRESH_MENU_TEXTURE (1<<1)
166 #define REFRESH_MENU_FONT (1<<2)
167 #define REFRESH_MENU_COLOR (1<<3)
168 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
169 #define REFRESH_MENU_TITLE_FONT (1<<5)
170 #define REFRESH_MENU_TITLE_COLOR (1<<6)
171 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
172 #define REFRESH_WINDOW_FONT (1<<8)
173 #define REFRESH_ICON_TILE (1<<9)
174 #define REFRESH_ICON_FONT (1<<10)
175 #define REFRESH_WORKSPACE_BACK (1<<11)
177 #define REFRESH_BUTTON_IMAGES (1<<12)
179 #define REFRESH_ICON_TITLE_COLOR (1<<13)
180 #define REFRESH_ICON_TITLE_BACK (1<<14)
182 static WOptionEnumeration seFocusModes[] = {
183 {"Manual", WKF_CLICK, 0}, {"ClickToFocus", WKF_CLICK, 1},
184 {"Sloppy", WKF_SLOPPY, 0}, {"SemiAuto", WKF_SLOPPY, 1}, {"Auto", WKF_SLOPPY, 1},
185 {NULL, 0, 0}
188 static WOptionEnumeration seTitlebarModes[] = {
189 {"new", TS_NEW, 0}, {"old", TS_OLD, 0},
190 {"next", TS_NEXT, 0}, {NULL, 0, 0}
193 static WOptionEnumeration seColormapModes[] = {
194 {"Manual", WCM_CLICK, 0}, {"ClickToFocus", WCM_CLICK, 1},
195 {"Auto", WCM_POINTER, 0}, {"FocusFollowMouse", WCM_POINTER, 1},
196 {NULL, 0, 0}
199 static WOptionEnumeration sePlacements[] = {
200 {"Auto", WPM_AUTO, 0},
201 {"Smart", WPM_SMART, 0},
202 {"Cascade", WPM_CASCADE, 0},
203 {"Random", WPM_RANDOM, 0},
204 {"Manual", WPM_MANUAL, 0},
205 {NULL, 0, 0}
208 static WOptionEnumeration seGeomDisplays[] = {
209 {"None", WDIS_NONE, 0},
210 {"Center", WDIS_CENTER, 0},
211 {"Corner", WDIS_TOPLEFT, 0},
212 {"Floating", WDIS_FRAME_CENTER, 0},
213 {"Line", WDIS_NEW, 0},
214 {NULL, 0, 0}
217 static WOptionEnumeration seSpeeds[] = {
218 {"UltraFast", SPEED_ULTRAFAST, 0},
219 {"Fast", SPEED_FAST, 0},
220 {"Medium", SPEED_MEDIUM, 0},
221 {"Slow", SPEED_SLOW, 0},
222 {"UltraSlow", SPEED_ULTRASLOW, 0},
223 {NULL, 0, 0}
226 static WOptionEnumeration seMouseButtonActions[] = {
227 {"None", WA_NONE, 0},
228 {"SelectWindows", WA_SELECT_WINDOWS, 0},
229 {"OpenApplicationsMenu", WA_OPEN_APPMENU, 0},
230 {"OpenWindowListMenu", WA_OPEN_WINLISTMENU, 0},
231 {NULL, 0, 0}
234 static WOptionEnumeration seMouseWheelActions[] = {
235 {"None", WA_NONE, 0},
236 {"SwitchWorkspaces", WA_SWITCH_WORKSPACES, 0},
237 {NULL, 0, 0}
240 static WOptionEnumeration seIconificationStyles[] = {
241 {"Zoom", WIS_ZOOM, 0},
242 {"Twist", WIS_TWIST, 0},
243 {"Flip", WIS_FLIP, 0},
244 {"None", WIS_NONE, 0},
245 {"random", WIS_RANDOM, 0},
246 {NULL, 0, 0}
249 static WOptionEnumeration seJustifications[] = {
250 {"Left", WTJ_LEFT, 0},
251 {"Center", WTJ_CENTER, 0},
252 {"Right", WTJ_RIGHT, 0},
253 {NULL, 0, 0}
256 static WOptionEnumeration seIconPositions[] = {
257 {"blv", IY_BOTTOM | IY_LEFT | IY_VERT, 0},
258 {"blh", IY_BOTTOM | IY_LEFT | IY_HORIZ, 0},
259 {"brv", IY_BOTTOM | IY_RIGHT | IY_VERT, 0},
260 {"brh", IY_BOTTOM | IY_RIGHT | IY_HORIZ, 0},
261 {"tlv", IY_TOP | IY_LEFT | IY_VERT, 0},
262 {"tlh", IY_TOP | IY_LEFT | IY_HORIZ, 0},
263 {"trv", IY_TOP | IY_RIGHT | IY_VERT, 0},
264 {"trh", IY_TOP | IY_RIGHT | IY_HORIZ, 0},
265 {NULL, 0, 0}
268 static WOptionEnumeration seMenuStyles[] = {
269 {"normal", MS_NORMAL, 0},
270 {"singletexture", MS_SINGLE_TEXTURE, 0},
271 {"flat", MS_FLAT, 0},
272 {NULL, 0, 0}
275 static WOptionEnumeration seDisplayPositions[] = {
276 {"none", WD_NONE, 0},
277 {"center", WD_CENTER, 0},
278 {"top", WD_TOP, 0},
279 {"bottom", WD_BOTTOM, 0},
280 {"topleft", WD_TOPLEFT, 0},
281 {"topright", WD_TOPRIGHT, 0},
282 {"bottomleft", WD_BOTTOMLEFT, 0},
283 {"bottomright", WD_BOTTOMRIGHT, 0},
284 {NULL, 0, 0}
287 static WOptionEnumeration seWorkspaceBorder[] = {
288 {"None", WB_NONE, 0},
289 {"LeftRight", WB_LEFTRIGHT, 0},
290 {"TopBottom", WB_TOPBOTTOM, 0},
291 {"AllDirections", WB_ALLDIRS, 0},
292 {NULL, 0, 0}
296 * ALL entries in the tables bellow, NEED to have a default value
297 * defined, and this value needs to be correct.
300 /* these options will only affect the window manager on startup
302 * static defaults can't access the screen data, because it is
303 * created after these defaults are read
305 WDefaultEntry staticOptionList[] = {
307 {"ColormapSize", "4", NULL,
308 &wPreferences.cmap_size, getInt, NULL, NULL, NULL},
309 {"DisableDithering", "NO", NULL,
310 &wPreferences.no_dithering, getBool, NULL, NULL, NULL},
311 {"IconSize", "64", NULL,
312 &wPreferences.icon_size, getInt, NULL, NULL, NULL},
313 {"ModifierKey", "Mod1", NULL,
314 &wPreferences.modifier_mask, getModMask, NULL, NULL, NULL},
315 {"DisableWSMouseActions", "NO", NULL,
316 &wPreferences.disable_root_mouse, getBool, NULL, NULL, NULL},
317 {"FocusMode", "manual", seFocusModes, /* have a problem when switching from */
318 &wPreferences.focus_mode, getEnum, NULL, NULL, NULL}, /* manual to sloppy without restart */
319 {"NewStyle", "new", seTitlebarModes,
320 &wPreferences.new_style, getEnum, NULL, NULL, NULL},
321 {"DisableDock", "NO", (void *)WM_DOCK,
322 NULL, getBool, setIfDockPresent, NULL, NULL},
323 {"DisableClip", "NO", (void *)WM_CLIP,
324 NULL, getBool, setIfDockPresent, NULL, NULL},
325 {"DisableMiniwindows", "NO", NULL,
326 &wPreferences.disable_miniwindows, getBool, NULL, NULL, NULL}
329 WDefaultEntry optionList[] = {
331 /* dynamic options */
333 {"IconPosition", "blh", seIconPositions,
334 &wPreferences.icon_yard, getEnum, setIconPosition, NULL, NULL},
335 {"IconificationStyle", "Zoom", seIconificationStyles,
336 &wPreferences.iconification_style, getEnum, NULL, NULL, NULL},
337 {"MouseLeftButtonAction", "SelectWindows", seMouseButtonActions,
338 &wPreferences.mouse_button1, getEnum, NULL, NULL, NULL},
339 {"MouseMiddleButtonAction", "OpenWindowListMenu", seMouseButtonActions,
340 &wPreferences.mouse_button2, getEnum, NULL, NULL, NULL},
341 {"MouseRightButtonAction", "OpenApplicationsMenu", seMouseButtonActions,
342 &wPreferences.mouse_button3, getEnum, NULL, NULL, NULL},
343 {"MouseWheelAction", "None", seMouseWheelActions,
344 &wPreferences.mouse_wheel, getEnum, NULL, NULL, NULL},
345 {"PixmapPath", DEF_PIXMAP_PATHS, NULL,
346 &wPreferences.pixmap_path, getPathList, NULL, NULL, NULL},
347 {"IconPath", DEF_ICON_PATHS, NULL,
348 &wPreferences.icon_path, getPathList, NULL, NULL, NULL},
349 {"ColormapMode", "auto", seColormapModes,
350 &wPreferences.colormap_mode, getEnum, NULL, NULL, NULL},
351 {"AutoFocus", "NO", NULL,
352 &wPreferences.auto_focus, getBool, NULL, NULL, NULL},
353 {"RaiseDelay", "0", NULL,
354 &wPreferences.raise_delay, getInt, NULL, NULL, NULL},
355 {"CirculateRaise", "NO", NULL,
356 &wPreferences.circ_raise, getBool, NULL, NULL, NULL},
357 {"Superfluous", "NO", NULL,
358 &wPreferences.superfluous, getBool, NULL, NULL, NULL},
359 {"AdvanceToNewWorkspace", "NO", NULL,
360 &wPreferences.ws_advance, getBool, NULL, NULL, NULL},
361 {"CycleWorkspaces", "NO", NULL,
362 &wPreferences.ws_cycle, getBool, NULL, NULL, NULL},
363 {"WorkspaceNameDisplayPosition", "center", seDisplayPositions,
364 &wPreferences.workspace_name_display_position, getEnum, NULL, NULL, NULL},
365 {"WorkspaceBorder", "None", seWorkspaceBorder,
366 &wPreferences.workspace_border_position, getEnum, updateUsableArea, NULL, NULL},
367 {"WorkspaceBorderSize", "0", NULL,
368 &wPreferences.workspace_border_size, getInt, updateUsableArea, NULL, NULL},
369 {"StickyIcons", "NO", NULL,
370 &wPreferences.sticky_icons, getBool, setStickyIcons, NULL, NULL},
371 {"SaveSessionOnExit", "NO", NULL,
372 &wPreferences.save_session_on_exit, getBool, NULL, NULL, NULL},
373 {"WrapMenus", "NO", NULL,
374 &wPreferences.wrap_menus, getBool, NULL, NULL, NULL},
375 {"ScrollableMenus", "NO", NULL,
376 &wPreferences.scrollable_menus, getBool, NULL, NULL, NULL},
377 {"MenuScrollSpeed", "medium", seSpeeds,
378 &wPreferences.menu_scroll_speed, getEnum, NULL, NULL, NULL},
379 {"IconSlideSpeed", "medium", seSpeeds,
380 &wPreferences.icon_slide_speed, getEnum, NULL, NULL, NULL},
381 {"ShadeSpeed", "medium", seSpeeds,
382 &wPreferences.shade_speed, getEnum, NULL, NULL, NULL},
383 {"BounceAppIconsWhenUrgent", "YES", NULL,
384 &wPreferences.bounce_appicons_when_urgent, getBool, NULL, NULL, NULL},
385 {"RaiseAppIconsWhenBouncing", "NO", NULL,
386 &wPreferences.raise_appicons_when_bouncing, getBool, NULL, NULL, NULL},
387 {"DoubleClickTime", "250", (void *)&wPreferences.dblclick_time,
388 &wPreferences.dblclick_time, getInt, setDoubleClick, NULL, NULL},
389 {"AlignSubmenus", "NO", NULL,
390 &wPreferences.align_menus, getBool, NULL, NULL, NULL},
391 {"OpenTransientOnOwnerWorkspace", "NO", NULL,
392 &wPreferences.open_transients_with_parent, getBool, NULL, NULL, NULL},
393 {"WindowPlacement", "auto", sePlacements,
394 &wPreferences.window_placement, getEnum, NULL, NULL, NULL},
395 {"IgnoreFocusClick", "NO", NULL,
396 &wPreferences.ignore_focus_click, getBool, NULL, NULL, NULL},
397 {"UseSaveUnders", "NO", NULL,
398 &wPreferences.use_saveunders, getBool, NULL, NULL, NULL},
399 {"OpaqueMove", "NO", NULL,
400 &wPreferences.opaque_move, getBool, NULL, NULL, NULL},
401 {"DisableAnimations", "NO", NULL,
402 &wPreferences.no_animations, getBool, NULL, NULL, NULL},
403 {"DontLinkWorkspaces", "NO", NULL,
404 &wPreferences.no_autowrap, getBool, NULL, NULL, NULL},
405 {"AutoArrangeIcons", "NO", NULL,
406 &wPreferences.auto_arrange_icons, getBool, NULL, NULL, NULL},
407 {"NoWindowOverDock", "NO", NULL,
408 &wPreferences.no_window_over_dock, getBool, updateUsableArea, NULL, NULL},
409 {"NoWindowOverIcons", "NO", NULL,
410 &wPreferences.no_window_over_icons, getBool, updateUsableArea, NULL, NULL},
411 {"WindowPlaceOrigin", "(0, 0)", NULL,
412 &wPreferences.window_place_origin, getCoord, NULL, NULL, NULL},
413 {"ResizeDisplay", "corner", seGeomDisplays,
414 &wPreferences.size_display, getEnum, NULL, NULL, NULL},
415 {"MoveDisplay", "corner", seGeomDisplays,
416 &wPreferences.move_display, getEnum, NULL, NULL, NULL},
417 {"DontConfirmKill", "NO", NULL,
418 &wPreferences.dont_confirm_kill, getBool, NULL, NULL, NULL},
419 {"WindowTitleBalloons", "NO", NULL,
420 &wPreferences.window_balloon, getBool, NULL, NULL, NULL},
421 {"MiniwindowTitleBalloons", "NO", NULL,
422 &wPreferences.miniwin_balloon, getBool, NULL, NULL, NULL},
423 {"AppIconBalloons", "NO", NULL,
424 &wPreferences.appicon_balloon, getBool, NULL, NULL, NULL},
425 {"HelpBalloons", "NO", NULL,
426 &wPreferences.help_balloon, getBool, NULL, NULL, NULL},
427 {"EdgeResistance", "30", NULL,
428 &wPreferences.edge_resistance, getInt, NULL, NULL, NULL},
429 {"ResizeIncrement", "32", NULL,
430 &wPreferences.resize_increment, getInt, NULL, NULL, NULL},
431 {"Attraction", "NO", NULL,
432 &wPreferences.attract, getBool, NULL, NULL, NULL},
433 {"DisableBlinking", "NO", NULL,
434 &wPreferences.dont_blink, getBool, NULL, NULL, NULL},
435 {"SingleClickLaunch", "NO", NULL,
436 &wPreferences.single_click, getBool, NULL, NULL, NULL},
438 /* style options */
440 {"MenuStyle", "normal", seMenuStyles,
441 &wPreferences.menu_style, getEnum, setMenuStyle, NULL, NULL},
442 {"WidgetColor", "(solid, gray)", NULL,
443 NULL, getTexture, setWidgetColor, NULL, NULL},
444 {"WorkspaceSpecificBack", "()", NULL,
445 NULL, getWSSpecificBackground, setWorkspaceSpecificBack, NULL, NULL},
446 /* WorkspaceBack must come after WorkspaceSpecificBack or
447 * WorkspaceBack wont know WorkspaceSpecificBack was also
448 * specified and 2 copies of wmsetbg will be launched */
449 {"WorkspaceBack", "(solid, black)", NULL,
450 NULL, getWSBackground, setWorkspaceBack, NULL, NULL},
451 {"SmoothWorkspaceBack", "NO", NULL,
452 NULL, getBool, NULL, NULL, NULL},
453 {"IconBack", "(solid, gray)", NULL,
454 NULL, getTexture, setIconTile, NULL, NULL},
455 {"TitleJustify", "center", seJustifications,
456 &wPreferences.title_justification, getEnum, setJustify, NULL, NULL},
457 {"WindowTitleFont", DEF_TITLE_FONT, NULL,
458 NULL, getFont, setWinTitleFont, NULL, NULL},
459 {"WindowTitleExtendSpace", DEF_WINDOW_TITLE_EXTEND_SPACE, NULL,
460 &wPreferences.window_title_clearance, getInt, setClearance, NULL, NULL},
461 {"MenuTitleExtendSpace", DEF_MENU_TITLE_EXTEND_SPACE, NULL,
462 &wPreferences.menu_title_clearance, getInt, setClearance, NULL, NULL},
463 {"MenuTextExtendSpace", DEF_MENU_TEXT_EXTEND_SPACE, NULL,
464 &wPreferences.menu_text_clearance, getInt, setClearance, NULL, NULL},
465 {"MenuTitleFont", DEF_MENU_TITLE_FONT, NULL,
466 NULL, getFont, setMenuTitleFont, NULL, NULL},
467 {"MenuTextFont", DEF_MENU_ENTRY_FONT, NULL,
468 NULL, getFont, setMenuTextFont, NULL, NULL},
469 {"IconTitleFont", DEF_ICON_TITLE_FONT, NULL,
470 NULL, getFont, setIconTitleFont, NULL, NULL},
471 {"ClipTitleFont", DEF_CLIP_TITLE_FONT, NULL,
472 NULL, getFont, setClipTitleFont, NULL, NULL},
473 {"ShowClipTitle", "YES", NULL,
474 &wPreferences.show_clip_title, getBool, NULL, NULL, NULL},
475 {"LargeDisplayFont", DEF_WORKSPACE_NAME_FONT, NULL,
476 NULL, getFont, setLargeDisplayFont, NULL, NULL},
477 {"HighlightColor", "white", NULL,
478 NULL, getColor, setHightlight, NULL, NULL},
479 {"HighlightTextColor", "black", NULL,
480 NULL, getColor, setHightlightText, NULL, NULL},
481 {"ClipTitleColor", "black", (void *)CLIP_NORMAL,
482 NULL, getColor, setClipTitleColor, NULL, NULL},
483 {"CClipTitleColor", "\"#454045\"", (void *)CLIP_COLLAPSED,
484 NULL, getColor, setClipTitleColor, NULL, NULL},
485 {"FTitleColor", "white", (void *)WS_FOCUSED,
486 NULL, getColor, setWTitleColor, NULL, NULL},
487 {"PTitleColor", "white", (void *)WS_PFOCUSED,
488 NULL, getColor, setWTitleColor, NULL, NULL},
489 {"UTitleColor", "black", (void *)WS_UNFOCUSED,
490 NULL, getColor, setWTitleColor, NULL, NULL},
491 {"FTitleBack", "(solid, black)", NULL,
492 NULL, getTexture, setFTitleBack, NULL, NULL},
493 {"PTitleBack", "(solid, \"#616161\")", NULL,
494 NULL, getTexture, setPTitleBack, NULL, NULL},
495 {"UTitleBack", "(solid, gray)", NULL,
496 NULL, getTexture, setUTitleBack, NULL, NULL},
497 {"ResizebarBack", "(solid, gray)", NULL,
498 NULL, getTexture, setResizebarBack, NULL, NULL},
499 {"MenuTitleColor", "white", NULL,
500 NULL, getColor, setMenuTitleColor, NULL, NULL},
501 {"MenuTextColor", "black", NULL,
502 NULL, getColor, setMenuTextColor, NULL, NULL},
503 {"MenuDisabledColor", "\"#616161\"", NULL,
504 NULL, getColor, setMenuDisabledColor, NULL, NULL},
505 {"MenuTitleBack", "(solid, black)", NULL,
506 NULL, getTexture, setMenuTitleBack, NULL, NULL},
507 {"MenuTextBack", "(solid, gray)", NULL,
508 NULL, getTexture, setMenuTextBack, NULL, NULL},
509 {"IconTitleColor", "white", NULL,
510 NULL, getColor, setIconTitleColor, NULL, NULL},
511 {"IconTitleBack", "black", NULL,
512 NULL, getColor, setIconTitleBack, NULL, NULL},
513 {"SwitchPanelImages", "(swtile.png, swback.png, 30, 40)", &wPreferences,
514 NULL, getPropList, setSwPOptions, NULL, NULL},
516 /* keybindings */
518 {"RootMenuKey", "None", (void *)WKBD_ROOTMENU,
519 NULL, getKeybind, setKeyGrab, NULL, NULL},
520 {"WindowListKey", "None", (void *)WKBD_WINDOWLIST,
521 NULL, getKeybind, setKeyGrab, NULL, NULL},
522 {"WindowMenuKey", "None", (void *)WKBD_WINDOWMENU,
523 NULL, getKeybind, setKeyGrab, NULL, NULL},
524 {"DockRaiseLowerKey", "None", (void*)WKBD_DOCKRAISELOWER,
525 NULL, getKeybind, setKeyGrab, NULL, NULL},
526 {"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER,
527 NULL, getKeybind, setKeyGrab, NULL, NULL},
528 {"MiniaturizeKey", "None", (void *)WKBD_MINIATURIZE,
529 NULL, getKeybind, setKeyGrab, NULL, NULL},
530 {"MinimizeAllKey", "None", (void *)WKBD_MINIMIZEALL,
531 NULL, getKeybind, setKeyGrab, NULL, NULL },
532 {"HideKey", "None", (void *)WKBD_HIDE,
533 NULL, getKeybind, setKeyGrab, NULL, NULL},
534 {"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS,
535 NULL, getKeybind, setKeyGrab, NULL, NULL},
536 {"MoveResizeKey", "None", (void *)WKBD_MOVERESIZE,
537 NULL, getKeybind, setKeyGrab, NULL, NULL},
538 {"CloseKey", "None", (void *)WKBD_CLOSE,
539 NULL, getKeybind, setKeyGrab, NULL, NULL},
540 {"MaximizeKey", "None", (void *)WKBD_MAXIMIZE,
541 NULL, getKeybind, setKeyGrab, NULL, NULL},
542 {"VMaximizeKey", "None", (void *)WKBD_VMAXIMIZE,
543 NULL, getKeybind, setKeyGrab, NULL, NULL},
544 {"HMaximizeKey", "None", (void *)WKBD_HMAXIMIZE,
545 NULL, getKeybind, setKeyGrab, NULL, NULL},
546 {"LHMaximizeKey", "None", (void*)WKBD_LHMAXIMIZE,
547 NULL, getKeybind, setKeyGrab, NULL, NULL},
548 {"RHMaximizeKey", "None", (void*)WKBD_RHMAXIMIZE,
549 NULL, getKeybind, setKeyGrab, NULL, NULL},
550 {"MaximusKey", "None", (void*)WKBD_MAXIMUS,
551 NULL, getKeybind, setKeyGrab, NULL, NULL},
552 {"RaiseKey", "\"Meta+Up\"", (void *)WKBD_RAISE,
553 NULL, getKeybind, setKeyGrab, NULL, NULL},
554 {"LowerKey", "\"Meta+Down\"", (void *)WKBD_LOWER,
555 NULL, getKeybind, setKeyGrab, NULL, NULL},
556 {"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER,
557 NULL, getKeybind, setKeyGrab, NULL, NULL},
558 {"ShadeKey", "None", (void *)WKBD_SHADE,
559 NULL, getKeybind, setKeyGrab, NULL, NULL},
560 {"SelectKey", "None", (void *)WKBD_SELECT,
561 NULL, getKeybind, setKeyGrab, NULL, NULL},
562 {"FocusNextKey", "None", (void *)WKBD_FOCUSNEXT,
563 NULL, getKeybind, setKeyGrab, NULL, NULL},
564 {"FocusPrevKey", "None", (void *)WKBD_FOCUSPREV,
565 NULL, getKeybind, setKeyGrab, NULL, NULL},
566 {"GroupNextKey", "None", (void *)WKBD_GROUPNEXT,
567 NULL, getKeybind, setKeyGrab, NULL, NULL},
568 {"GroupPrevKey", "None", (void *)WKBD_GROUPPREV,
569 NULL, getKeybind, setKeyGrab, NULL, NULL},
570 {"NextWorkspaceKey", "None", (void *)WKBD_NEXTWORKSPACE,
571 NULL, getKeybind, setKeyGrab, NULL, NULL},
572 {"PrevWorkspaceKey", "None", (void *)WKBD_PREVWORKSPACE,
573 NULL, getKeybind, setKeyGrab, NULL, NULL},
574 {"NextWorkspaceLayerKey", "None", (void *)WKBD_NEXTWSLAYER,
575 NULL, getKeybind, setKeyGrab, NULL, NULL},
576 {"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER,
577 NULL, getKeybind, setKeyGrab, NULL, NULL},
578 {"Workspace1Key", "None", (void *)WKBD_WORKSPACE1,
579 NULL, getKeybind, setKeyGrab, NULL, NULL},
580 {"Workspace2Key", "None", (void *)WKBD_WORKSPACE2,
581 NULL, getKeybind, setKeyGrab, NULL, NULL},
582 {"Workspace3Key", "None", (void *)WKBD_WORKSPACE3,
583 NULL, getKeybind, setKeyGrab, NULL, NULL},
584 {"Workspace4Key", "None", (void *)WKBD_WORKSPACE4,
585 NULL, getKeybind, setKeyGrab, NULL, NULL},
586 {"Workspace5Key", "None", (void *)WKBD_WORKSPACE5,
587 NULL, getKeybind, setKeyGrab, NULL, NULL},
588 {"Workspace6Key", "None", (void *)WKBD_WORKSPACE6,
589 NULL, getKeybind, setKeyGrab, NULL, NULL},
590 {"Workspace7Key", "None", (void *)WKBD_WORKSPACE7,
591 NULL, getKeybind, setKeyGrab, NULL, NULL},
592 {"Workspace8Key", "None", (void *)WKBD_WORKSPACE8,
593 NULL, getKeybind, setKeyGrab, NULL, NULL},
594 {"Workspace9Key", "None", (void *)WKBD_WORKSPACE9,
595 NULL, getKeybind, setKeyGrab, NULL, NULL},
596 {"Workspace10Key", "None", (void *)WKBD_WORKSPACE10,
597 NULL, getKeybind, setKeyGrab, NULL, NULL},
598 {"WindowShortcut1Key", "None", (void *)WKBD_WINDOW1,
599 NULL, getKeybind, setKeyGrab, NULL, NULL},
600 {"WindowShortcut2Key", "None", (void *)WKBD_WINDOW2,
601 NULL, getKeybind, setKeyGrab, NULL, NULL},
602 {"WindowShortcut3Key", "None", (void *)WKBD_WINDOW3,
603 NULL, getKeybind, setKeyGrab, NULL, NULL},
604 {"WindowShortcut4Key", "None", (void *)WKBD_WINDOW4,
605 NULL, getKeybind, setKeyGrab, NULL, NULL},
606 {"WindowShortcut5Key", "None", (void *)WKBD_WINDOW5,
607 NULL, getKeybind, setKeyGrab, NULL, NULL},
608 {"WindowShortcut6Key", "None", (void *)WKBD_WINDOW6,
609 NULL, getKeybind, setKeyGrab, NULL, NULL},
610 {"WindowShortcut7Key", "None", (void *)WKBD_WINDOW7,
611 NULL, getKeybind, setKeyGrab, NULL, NULL},
612 {"WindowShortcut8Key", "None", (void *)WKBD_WINDOW8,
613 NULL, getKeybind, setKeyGrab, NULL, NULL},
614 {"WindowShortcut9Key", "None", (void *)WKBD_WINDOW9,
615 NULL, getKeybind, setKeyGrab, NULL, NULL},
616 {"WindowShortcut10Key", "None", (void *)WKBD_WINDOW10,
617 NULL, getKeybind, setKeyGrab, NULL, NULL},
618 {"ScreenSwitchKey", "None", (void *)WKBD_SWITCH_SCREEN,
619 NULL, getKeybind, setKeyGrab, NULL, NULL},
621 #ifdef KEEP_XKB_LOCK_STATUS
622 {"ToggleKbdModeKey", "None", (void *)WKBD_TOGGLE,
623 NULL, getKeybind, setKeyGrab, NULL, NULL},
624 {"KbdModeLock", "NO", NULL,
625 &wPreferences.modelock, getBool, NULL, NULL, NULL},
626 #endif /* KEEP_XKB_LOCK_STATUS */
628 {"NormalCursor", "(builtin, left_ptr)", (void *)WCUR_ROOT,
629 NULL, getCursor, setCursor, NULL, NULL},
630 {"ArrowCursor", "(builtin, top_left_arrow)", (void *)WCUR_ARROW,
631 NULL, getCursor, setCursor, NULL, NULL},
632 {"MoveCursor", "(builtin, fleur)", (void *)WCUR_MOVE,
633 NULL, getCursor, setCursor, NULL, NULL},
634 {"ResizeCursor", "(builtin, sizing)", (void *)WCUR_RESIZE,
635 NULL, getCursor, setCursor, NULL, NULL},
636 {"TopLeftResizeCursor", "(builtin, top_left_corner)", (void *)WCUR_TOPLEFTRESIZE,
637 NULL, getCursor, setCursor, NULL, NULL},
638 {"TopRightResizeCursor", "(builtin, top_right_corner)", (void *)WCUR_TOPRIGHTRESIZE,
639 NULL, getCursor, setCursor, NULL, NULL},
640 {"BottomLeftResizeCursor", "(builtin, bottom_left_corner)", (void *)WCUR_BOTTOMLEFTRESIZE,
641 NULL, getCursor, setCursor, NULL, NULL},
642 {"BottomRightResizeCursor", "(builtin, bottom_right_corner)", (void *)WCUR_BOTTOMRIGHTRESIZE,
643 NULL, getCursor, setCursor, NULL, NULL},
644 {"VerticalResizeCursor", "(builtin, sb_v_double_arrow)", (void *)WCUR_VERTICALRESIZE,
645 NULL, getCursor, setCursor, NULL, NULL},
646 {"HorizontalResizeCursor", "(builtin, sb_h_double_arrow)", (void *)WCUR_HORIZONRESIZE,
647 NULL, getCursor, setCursor, NULL, NULL},
648 {"WaitCursor", "(builtin, watch)", (void *)WCUR_WAIT,
649 NULL, getCursor, setCursor, NULL, NULL},
650 {"QuestionCursor", "(builtin, question_arrow)", (void *)WCUR_QUESTION,
651 NULL, getCursor, setCursor, NULL, NULL},
652 {"TextCursor", "(builtin, xterm)", (void *)WCUR_TEXT,
653 NULL, getCursor, setCursor, NULL, NULL},
654 {"SelectCursor", "(builtin, cross)", (void *)WCUR_SELECT,
655 NULL, getCursor, setCursor, NULL, NULL},
656 {"DialogHistoryLines", "500", NULL,
657 &wPreferences.history_lines, getInt, NULL, NULL, NULL},
658 {"CycleActiveHeadOnly", "NO", NULL,
659 &wPreferences.cycle_active_head_only, getBool, NULL, NULL, NULL}
662 static void initDefaults()
664 unsigned int i;
665 WDefaultEntry *entry;
667 WMPLSetCaseSensitive(False);
669 for (i = 0; i < sizeof(optionList) / sizeof(WDefaultEntry); i++) {
670 entry = &optionList[i];
672 entry->plkey = WMCreatePLString(entry->key);
673 if (entry->default_value)
674 entry->plvalue = WMCreatePropListFromDescription(entry->default_value);
675 else
676 entry->plvalue = NULL;
679 for (i = 0; i < sizeof(staticOptionList) / sizeof(WDefaultEntry); i++) {
680 entry = &staticOptionList[i];
682 entry->plkey = WMCreatePLString(entry->key);
683 if (entry->default_value)
684 entry->plvalue = WMCreatePropListFromDescription(entry->default_value);
685 else
686 entry->plvalue = NULL;
690 static WMPropList *readGlobalDomain(char *domainName, Bool requireDictionary)
692 WMPropList *globalDict = NULL;
693 char path[PATH_MAX];
694 struct stat stbuf;
696 snprintf(path, sizeof(path), "%s/%s/%s", SYSCONFDIR, GLOBAL_DEFAULTS_SUBDIR, domainName);
697 if (stat(path, &stbuf) >= 0) {
698 globalDict = WMReadPropListFromFile(path);
699 if (globalDict && requireDictionary && !WMIsPLDictionary(globalDict)) {
700 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"), domainName, path);
701 WMReleasePropList(globalDict);
702 globalDict = NULL;
703 } else if (!globalDict) {
704 wwarning(_("could not load domain %s from global defaults database"), domainName);
708 return globalDict;
711 #if defined(GLOBAL_PREAMBLE_MENU_FILE) || defined(GLOBAL_EPILOGUE_MENU_FILE)
712 static void prependMenu(WMPropList * destarr, WMPropList * array)
714 WMPropList *item;
715 int i;
717 for (i = 0; i < WMGetPropListItemCount(array); i++) {
718 item = WMGetFromPLArray(array, i);
719 if (item)
720 WMInsertInPLArray(destarr, i + 1, item);
724 static void appendMenu(WMPropList * destarr, WMPropList * array)
726 WMPropList *item;
727 int i;
729 for (i = 0; i < WMGetPropListItemCount(array); i++) {
730 item = WMGetFromPLArray(array, i);
731 if (item)
732 WMAddToPLArray(destarr, item);
735 #endif
737 void wDefaultsMergeGlobalMenus(WDDomain * menuDomain)
739 WMPropList *menu = menuDomain->dictionary;
740 WMPropList *submenu;
742 if (!menu || !WMIsPLArray(menu))
743 return;
745 #ifdef GLOBAL_PREAMBLE_MENU_FILE
746 submenu = WMReadPropListFromFile(SYSCONFDIR "/" GLOBAL_DEFAULTS_SUBDIR "/" GLOBAL_PREAMBLE_MENU_FILE);
748 if (submenu && !WMIsPLArray(submenu)) {
749 wwarning(_("invalid global menu file %s"), GLOBAL_PREAMBLE_MENU_FILE);
750 WMReleasePropList(submenu);
751 submenu = NULL;
753 if (submenu) {
754 prependMenu(menu, submenu);
755 WMReleasePropList(submenu);
757 #endif
759 #ifdef GLOBAL_EPILOGUE_MENU_FILE
760 submenu = WMReadPropListFromFile(SYSCONFDIR "/" GLOBAL_DEFAULTS_SUBDIR "/" GLOBAL_EPILOGUE_MENU_FILE);
762 if (submenu && !WMIsPLArray(submenu)) {
763 wwarning(_("invalid global menu file %s"), GLOBAL_EPILOGUE_MENU_FILE);
764 WMReleasePropList(submenu);
765 submenu = NULL;
767 if (submenu) {
768 appendMenu(menu, submenu);
769 WMReleasePropList(submenu);
771 #endif
773 menuDomain->dictionary = menu;
776 void wDefaultsDestroyDomain(WDDomain * domain)
778 if (domain->dictionary)
779 WMReleasePropList(domain->dictionary);
780 wfree(domain->path);
781 wfree(domain);
784 WDDomain *wDefaultsInitDomain(char *domain, Bool requireDictionary)
786 WDDomain *db;
787 struct stat stbuf;
788 static int inited = 0;
789 char path[PATH_MAX];
790 char *the_path;
791 WMPropList *shared_dict = NULL;
793 if (!inited) {
794 inited = 1;
795 initDefaults();
798 db = wmalloc(sizeof(WDDomain));
799 memset(db, 0, sizeof(WDDomain));
800 db->domain_name = domain;
801 db->path = wdefaultspathfordomain(domain);
802 the_path = db->path;
804 if (the_path && stat(the_path, &stbuf) >= 0) {
805 db->dictionary = WMReadPropListFromFile(the_path);
806 if (db->dictionary) {
807 if (requireDictionary && !WMIsPLDictionary(db->dictionary)) {
808 WMReleasePropList(db->dictionary);
809 db->dictionary = NULL;
810 wwarning(_("Domain %s (%s) of defaults database is corrupted!"), domain, the_path);
812 db->timestamp = stbuf.st_mtime;
813 } else {
814 wwarning(_("could not load domain %s from user defaults database"), domain);
818 /* global system dictionary */
819 snprintf(path, sizeof(path), "%s/%s/%s", SYSCONFDIR, GLOBAL_DEFAULTS_SUBDIR, domain);
820 if (stat(path, &stbuf) >= 0) {
821 shared_dict = WMReadPropListFromFile(path);
822 if (shared_dict) {
823 if (requireDictionary && !WMIsPLDictionary(shared_dict)) {
824 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
825 domain, path);
826 WMReleasePropList(shared_dict);
827 shared_dict = NULL;
828 } else {
829 if (db->dictionary && WMIsPLDictionary(shared_dict) &&
830 WMIsPLDictionary(db->dictionary)) {
831 WMMergePLDictionaries(shared_dict, db->dictionary, True);
832 WMReleasePropList(db->dictionary);
833 db->dictionary = shared_dict;
834 if (stbuf.st_mtime > db->timestamp)
835 db->timestamp = stbuf.st_mtime;
836 } else if (!db->dictionary) {
837 db->dictionary = shared_dict;
838 if (stbuf.st_mtime > db->timestamp)
839 db->timestamp = stbuf.st_mtime;
842 } else {
843 wwarning(_("could not load domain %s from global defaults database (%s)"), domain, path);
847 return db;
850 void wReadStaticDefaults(WMPropList * dict)
852 WMPropList *plvalue;
853 WDefaultEntry *entry;
854 unsigned int i;
855 void *tdata;
857 for (i = 0; i < sizeof(staticOptionList) / sizeof(WDefaultEntry); i++) {
858 entry = &staticOptionList[i];
860 if (dict)
861 plvalue = WMGetFromPLDictionary(dict, entry->plkey);
862 else
863 plvalue = NULL;
865 if (!plvalue) {
866 /* no default in the DB. Use builtin default */
867 plvalue = entry->plvalue;
870 if (plvalue) {
871 /* convert data */
872 (*entry->convert) (NULL, entry, plvalue, entry->addr, &tdata);
873 if (entry->update) {
874 (*entry->update) (NULL, entry, tdata, entry->extra_data);
880 void wDefaultsCheckDomains(void* arg)
882 WScreen *scr;
883 struct stat stbuf;
884 WMPropList *shared_dict = NULL;
885 WMPropList *dict;
886 int i;
888 if (stat(WDWindowMaker->path, &stbuf) >= 0 && WDWindowMaker->timestamp < stbuf.st_mtime) {
889 WDWindowMaker->timestamp = stbuf.st_mtime;
891 /* global dictionary */
892 shared_dict = readGlobalDomain("WindowMaker", True);
893 /* user dictionary */
894 dict = WMReadPropListFromFile(WDWindowMaker->path);
895 if (dict) {
896 if (!WMIsPLDictionary(dict)) {
897 WMReleasePropList(dict);
898 dict = NULL;
899 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
900 "WindowMaker", WDWindowMaker->path);
901 } else {
902 if (shared_dict) {
903 WMMergePLDictionaries(shared_dict, dict, True);
904 WMReleasePropList(dict);
905 dict = shared_dict;
906 shared_dict = NULL;
908 for (i = 0; i < wScreenCount; i++) {
909 scr = wScreenWithNumber(i);
910 if (scr)
911 wReadDefaults(scr, dict);
913 if (WDWindowMaker->dictionary) {
914 WMReleasePropList(WDWindowMaker->dictionary);
916 WDWindowMaker->dictionary = dict;
918 } else {
919 wwarning(_("could not load domain %s from user defaults database"), "WindowMaker");
921 if (shared_dict) {
922 WMReleasePropList(shared_dict);
926 if (stat(WDWindowAttributes->path, &stbuf) >= 0 && WDWindowAttributes->timestamp < stbuf.st_mtime) {
927 /* global dictionary */
928 shared_dict = readGlobalDomain("WMWindowAttributes", True);
929 /* user dictionary */
930 dict = WMReadPropListFromFile(WDWindowAttributes->path);
931 if (dict) {
932 if (!WMIsPLDictionary(dict)) {
933 WMReleasePropList(dict);
934 dict = NULL;
935 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
936 "WMWindowAttributes", WDWindowAttributes->path);
937 } else {
938 if (shared_dict) {
939 WMMergePLDictionaries(shared_dict, dict, True);
940 WMReleasePropList(dict);
941 dict = shared_dict;
942 shared_dict = NULL;
944 if (WDWindowAttributes->dictionary) {
945 WMReleasePropList(WDWindowAttributes->dictionary);
947 WDWindowAttributes->dictionary = dict;
948 for (i = 0; i < wScreenCount; i++) {
949 scr = wScreenWithNumber(i);
950 if (scr) {
951 RImage *image;
953 wDefaultUpdateIcons(scr);
955 /* Update the panel image if changed */
956 /* Don't worry. If the image is the same these
957 * functions will have no performance impact. */
958 image = wDefaultGetImage(scr, "Logo", "WMPanel");
960 if (!image) {
961 wwarning(_("could not load logo image for panels: %s"),
962 RMessageForError(RErrorCode));
963 } else {
964 WMSetApplicationIconImage(scr->wmscreen, image);
965 RReleaseImage(image);
970 } else {
971 wwarning(_("could not load domain %s from user defaults database"), "WMWindowAttributes");
973 WDWindowAttributes->timestamp = stbuf.st_mtime;
974 if (shared_dict) {
975 WMReleasePropList(shared_dict);
979 if (stat(WDRootMenu->path, &stbuf) >= 0 && WDRootMenu->timestamp < stbuf.st_mtime) {
980 dict = WMReadPropListFromFile(WDRootMenu->path);
981 if (dict) {
982 if (!WMIsPLArray(dict) && !WMIsPLString(dict)) {
983 WMReleasePropList(dict);
984 dict = NULL;
985 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
986 "WMRootMenu", WDRootMenu->path);
987 } else {
988 if (WDRootMenu->dictionary) {
989 WMReleasePropList(WDRootMenu->dictionary);
991 WDRootMenu->dictionary = dict;
992 wDefaultsMergeGlobalMenus(WDRootMenu);
994 } else {
995 wwarning(_("could not load domain %s from user defaults database"), "WMRootMenu");
997 WDRootMenu->timestamp = stbuf.st_mtime;
999 #ifndef HAVE_INOTIFY
1000 if (!arg)
1001 WMAddTimerHandler(DEFAULTS_CHECK_INTERVAL, wDefaultsCheckDomains, arg);
1002 #endif
1005 void wReadDefaults(WScreen * scr, WMPropList * new_dict)
1007 WMPropList *plvalue, *old_value;
1008 WDefaultEntry *entry;
1009 unsigned int i, must_update;
1010 int update_workspace_back = 0; /* kluge :/ */
1011 unsigned int needs_refresh;
1012 void *tdata;
1013 WMPropList *old_dict = (WDWindowMaker->dictionary != new_dict ? WDWindowMaker->dictionary : NULL);
1015 must_update = 0;
1017 needs_refresh = 0;
1019 for (i = 0; i < sizeof(optionList) / sizeof(WDefaultEntry); i++) {
1020 entry = &optionList[i];
1022 if (new_dict)
1023 plvalue = WMGetFromPLDictionary(new_dict, entry->plkey);
1024 else
1025 plvalue = NULL;
1027 if (!old_dict)
1028 old_value = NULL;
1029 else
1030 old_value = WMGetFromPLDictionary(old_dict, entry->plkey);
1032 if (!plvalue && !old_value) {
1033 /* no default in the DB. Use builtin default */
1034 plvalue = entry->plvalue;
1035 if (plvalue && new_dict) {
1036 WMPutInPLDictionary(new_dict, entry->plkey, plvalue);
1037 must_update = 1;
1039 } else if (!plvalue) {
1040 /* value was deleted from DB. Keep current value */
1041 continue;
1042 } else if (!old_value) {
1043 /* set value for the 1st time */
1044 } else if (!WMIsPropListEqualTo(plvalue, old_value)) {
1045 /* value has changed */
1046 } else {
1048 if (strcmp(entry->key, "WorkspaceBack") == 0
1049 && update_workspace_back && scr->flags.backimage_helper_launched) {
1050 } else {
1051 /* value was not changed since last time */
1052 continue;
1056 if (plvalue) {
1057 /* convert data */
1058 if ((*entry->convert) (scr, entry, plvalue, entry->addr, &tdata)) {
1060 * If the WorkspaceSpecificBack data has been changed
1061 * so that the helper will be launched now, we must be
1062 * sure to send the default background texture config
1063 * to the helper.
1065 if (strcmp(entry->key, "WorkspaceSpecificBack") == 0
1066 && !scr->flags.backimage_helper_launched) {
1067 update_workspace_back = 1;
1069 if (entry->update) {
1070 needs_refresh |= (*entry->update) (scr, entry, tdata, entry->extra_data);
1076 if (needs_refresh != 0 && !scr->flags.startup) {
1077 int foo;
1079 foo = 0;
1080 if (needs_refresh & REFRESH_MENU_TITLE_TEXTURE)
1081 foo |= WTextureSettings;
1082 if (needs_refresh & REFRESH_MENU_TITLE_FONT)
1083 foo |= WFontSettings;
1084 if (needs_refresh & REFRESH_MENU_TITLE_COLOR)
1085 foo |= WColorSettings;
1086 if (foo)
1087 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged, NULL,
1088 (void *)(uintptr_t) foo);
1090 foo = 0;
1091 if (needs_refresh & REFRESH_MENU_TEXTURE)
1092 foo |= WTextureSettings;
1093 if (needs_refresh & REFRESH_MENU_FONT)
1094 foo |= WFontSettings;
1095 if (needs_refresh & REFRESH_MENU_COLOR)
1096 foo |= WColorSettings;
1097 if (foo)
1098 WMPostNotificationName(WNMenuAppearanceSettingsChanged, NULL, (void *)(uintptr_t) foo);
1100 foo = 0;
1101 if (needs_refresh & REFRESH_WINDOW_FONT) {
1102 foo |= WFontSettings;
1104 if (needs_refresh & REFRESH_WINDOW_TEXTURES) {
1105 foo |= WTextureSettings;
1107 if (needs_refresh & REFRESH_WINDOW_TITLE_COLOR) {
1108 foo |= WColorSettings;
1110 if (foo)
1111 WMPostNotificationName(WNWindowAppearanceSettingsChanged, NULL, (void *)(uintptr_t) foo);
1113 if (!(needs_refresh & REFRESH_ICON_TILE)) {
1114 foo = 0;
1115 if (needs_refresh & REFRESH_ICON_FONT) {
1116 foo |= WFontSettings;
1118 if (needs_refresh & REFRESH_ICON_TITLE_COLOR) {
1119 foo |= WTextureSettings;
1121 if (needs_refresh & REFRESH_ICON_TITLE_BACK) {
1122 foo |= WTextureSettings;
1124 if (foo)
1125 WMPostNotificationName(WNIconAppearanceSettingsChanged, NULL,
1126 (void *)(uintptr_t) foo);
1128 if (needs_refresh & REFRESH_ICON_TILE)
1129 WMPostNotificationName(WNIconTileSettingsChanged, NULL, NULL);
1133 void wDefaultUpdateIcons(WScreen * scr)
1135 WAppIcon *aicon = scr->app_icon_list;
1136 WWindow *wwin = scr->focused_window;
1137 char *file;
1139 while (aicon) {
1140 file = wDefaultGetIconFile(scr, aicon->wm_instance, aicon->wm_class, False);
1141 if ((file && aicon->icon->file && strcmp(file, aicon->icon->file) != 0)
1142 || (file && !aicon->icon->file)) {
1143 RImage *new_image;
1145 if (aicon->icon->file)
1146 wfree(aicon->icon->file);
1147 aicon->icon->file = wstrdup(file);
1149 new_image = wDefaultGetImage(scr, aicon->wm_instance, aicon->wm_class);
1150 if (new_image) {
1151 wIconChangeImage(aicon->icon, new_image);
1152 wAppIconPaint(aicon);
1155 aicon = aicon->next;
1158 if (!wPreferences.flags.noclip)
1159 wClipIconPaint(scr->clip_icon);
1161 while (wwin) {
1162 if (wwin->icon && wwin->flags.miniaturized) {
1163 file = wDefaultGetIconFile(scr, wwin->wm_instance, wwin->wm_class, False);
1164 if ((file && wwin->icon->file && strcmp(file, wwin->icon->file) != 0)
1165 || (file && !wwin->icon->file)) {
1166 RImage *new_image;
1168 if (wwin->icon->file)
1169 wfree(wwin->icon->file);
1170 wwin->icon->file = wstrdup(file);
1172 new_image = wDefaultGetImage(scr, wwin->wm_instance, wwin->wm_class);
1173 if (new_image)
1174 wIconChangeImage(wwin->icon, new_image);
1177 wwin = wwin->prev;
1181 /* --------------------------- Local ----------------------- */
1183 #define GET_STRING_OR_DEFAULT(x, var) if (!WMIsPLString(value)) { \
1184 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1185 entry->key, x); \
1186 wwarning(_("using default \"%s\" instead"), entry->default_value); \
1187 var = entry->default_value;\
1188 } else var = WMGetFromPLString(value)\
1191 static int string2index(WMPropList * key, WMPropList * val, char *def, WOptionEnumeration * values)
1193 char *str;
1194 WOptionEnumeration *v;
1195 char buffer[TOTAL_VALUES_LENGTH];
1197 if (WMIsPLString(val) && (str = WMGetFromPLString(val))) {
1198 for (v = values; v->string != NULL; v++) {
1199 if (strcasecmp(v->string, str) == 0)
1200 return v->value;
1204 buffer[0] = 0;
1205 for (v = values; v->string != NULL; v++) {
1206 if (!v->is_alias) {
1207 if (buffer[0] != 0)
1208 strcat(buffer, ", ");
1209 strcat(buffer, v->string);
1212 wwarning(_("wrong option value for key \"%s\". Should be one of %s"), WMGetFromPLString(key), buffer);
1214 if (def) {
1215 return string2index(key, val, NULL, values);
1218 return -1;
1222 * value - is the value in the defaults DB
1223 * addr - is the address to store the data
1224 * ret - is the address to store a pointer to a temporary buffer. ret
1225 * must not be freed and is used by the set functions
1227 static int getBool(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1229 static char data;
1230 char *val;
1231 int second_pass = 0;
1233 GET_STRING_OR_DEFAULT("Boolean", val);
1235 again:
1236 if ((val[1] == '\0' && (val[0] == 'y' || val[0] == 'Y'))
1237 || strcasecmp(val, "YES") == 0) {
1239 data = 1;
1240 } else if ((val[1] == '\0' && (val[0] == 'n' || val[0] == 'N'))
1241 || strcasecmp(val, "NO") == 0) {
1242 data = 0;
1243 } else {
1244 int i;
1245 if (sscanf(val, "%i", &i) == 1) {
1246 if (i != 0)
1247 data = 1;
1248 else
1249 data = 0;
1250 } else {
1251 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""), val, entry->key);
1252 if (second_pass == 0) {
1253 val = WMGetFromPLString(entry->plvalue);
1254 second_pass = 1;
1255 wwarning(_("using default \"%s\" instead"), val);
1256 goto again;
1258 return False;
1262 if (ret)
1263 *ret = &data;
1264 if (addr)
1265 *(char *)addr = data;
1267 return True;
1270 static int getInt(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1272 static int data;
1273 char *val;
1275 GET_STRING_OR_DEFAULT("Integer", val);
1277 if (sscanf(val, "%i", &data) != 1) {
1278 wwarning(_("can't convert \"%s\" to integer for key \"%s\""), val, entry->key);
1279 val = WMGetFromPLString(entry->plvalue);
1280 wwarning(_("using default \"%s\" instead"), val);
1281 if (sscanf(val, "%i", &data) != 1) {
1282 return False;
1286 if (ret)
1287 *ret = &data;
1288 if (addr)
1289 *(int *)addr = data;
1291 return True;
1294 static int getCoord(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1296 static WCoord data;
1297 char *val_x, *val_y;
1298 int nelem, changed = 0;
1299 WMPropList *elem_x, *elem_y;
1301 again:
1302 if (!WMIsPLArray(value)) {
1303 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "Coordinate");
1304 if (changed == 0) {
1305 value = entry->plvalue;
1306 changed = 1;
1307 wwarning(_("using default \"%s\" instead"), entry->default_value);
1308 goto again;
1310 return False;
1313 nelem = WMGetPropListItemCount(value);
1314 if (nelem != 2) {
1315 wwarning(_("Incorrect number of elements in array for key \"%s\"."), entry->key);
1316 if (changed == 0) {
1317 value = entry->plvalue;
1318 changed = 1;
1319 wwarning(_("using default \"%s\" instead"), entry->default_value);
1320 goto again;
1322 return False;
1325 elem_x = WMGetFromPLArray(value, 0);
1326 elem_y = WMGetFromPLArray(value, 1);
1328 if (!elem_x || !elem_y || !WMIsPLString(elem_x) || !WMIsPLString(elem_y)) {
1329 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."), entry->key);
1330 if (changed == 0) {
1331 value = entry->plvalue;
1332 changed = 1;
1333 wwarning(_("using default \"%s\" instead"), entry->default_value);
1334 goto again;
1336 return False;
1339 val_x = WMGetFromPLString(elem_x);
1340 val_y = WMGetFromPLString(elem_y);
1342 if (sscanf(val_x, "%i", &data.x) != 1 || sscanf(val_y, "%i", &data.y) != 1) {
1343 wwarning(_("can't convert array to integers for \"%s\"."), entry->key);
1344 if (changed == 0) {
1345 value = entry->plvalue;
1346 changed = 1;
1347 wwarning(_("using default \"%s\" instead"), entry->default_value);
1348 goto again;
1350 return False;
1353 if (data.x < 0)
1354 data.x = 0;
1355 else if (data.x > scr->scr_width / 3)
1356 data.x = scr->scr_width / 3;
1357 if (data.y < 0)
1358 data.y = 0;
1359 else if (data.y > scr->scr_height / 3)
1360 data.y = scr->scr_height / 3;
1362 if (ret)
1363 *ret = &data;
1364 if (addr)
1365 *(WCoord *) addr = data;
1367 return True;
1370 static int getPropList(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1372 WMRetainPropList(value);
1374 *ret = value;
1376 return True;
1379 static int getPathList(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1381 static char *data;
1382 int i, count, len;
1383 char *ptr;
1384 WMPropList *d;
1385 int changed = 0;
1387 again:
1388 if (!WMIsPLArray(value)) {
1389 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "an array of paths");
1390 if (changed == 0) {
1391 value = entry->plvalue;
1392 changed = 1;
1393 wwarning(_("using default \"%s\" instead"), entry->default_value);
1394 goto again;
1396 return False;
1399 i = 0;
1400 count = WMGetPropListItemCount(value);
1401 if (count < 1) {
1402 if (changed == 0) {
1403 value = entry->plvalue;
1404 changed = 1;
1405 wwarning(_("using default \"%s\" instead"), entry->default_value);
1406 goto again;
1408 return False;
1411 len = 0;
1412 for (i = 0; i < count; i++) {
1413 d = WMGetFromPLArray(value, i);
1414 if (!d || !WMIsPLString(d)) {
1415 count = i;
1416 break;
1418 len += strlen(WMGetFromPLString(d)) + 1;
1421 ptr = data = wmalloc(len + 1);
1423 for (i = 0; i < count; i++) {
1424 d = WMGetFromPLArray(value, i);
1425 if (!d || !WMIsPLString(d)) {
1426 break;
1428 strcpy(ptr, WMGetFromPLString(d));
1429 ptr += strlen(WMGetFromPLString(d));
1430 *ptr = ':';
1431 ptr++;
1433 ptr--;
1434 *(ptr--) = 0;
1436 if (*(char **)addr != NULL) {
1437 wfree(*(char **)addr);
1439 *(char **)addr = data;
1441 return True;
1444 static int getEnum(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1446 static signed char data;
1448 data = string2index(entry->plkey, value, entry->default_value, (WOptionEnumeration *) entry->extra_data);
1449 if (data < 0)
1450 return False;
1452 if (ret)
1453 *ret = &data;
1454 if (addr)
1455 *(signed char *)addr = data;
1457 return True;
1461 * (solid <color>)
1462 * (hgradient <color> <color>)
1463 * (vgradient <color> <color>)
1464 * (dgradient <color> <color>)
1465 * (mhgradient <color> <color> ...)
1466 * (mvgradient <color> <color> ...)
1467 * (mdgradient <color> <color> ...)
1468 * (igradient <color1> <color1> <thickness1> <color2> <color2> <thickness2>)
1469 * (tpixmap <file> <color>)
1470 * (spixmap <file> <color>)
1471 * (cpixmap <file> <color>)
1472 * (thgradient <file> <opaqueness> <color> <color>)
1473 * (tvgradient <file> <opaqueness> <color> <color>)
1474 * (tdgradient <file> <opaqueness> <color> <color>)
1475 * (function <lib> <function> ...)
1478 static WTexture *parse_texture(WScreen * scr, WMPropList * pl)
1480 WMPropList *elem;
1481 char *val;
1482 int nelem;
1483 WTexture *texture = NULL;
1485 nelem = WMGetPropListItemCount(pl);
1486 if (nelem < 1)
1487 return NULL;
1489 elem = WMGetFromPLArray(pl, 0);
1490 if (!elem || !WMIsPLString(elem))
1491 return NULL;
1492 val = WMGetFromPLString(elem);
1494 if (strcasecmp(val, "solid") == 0) {
1495 XColor color;
1497 if (nelem != 2)
1498 return NULL;
1500 /* get color */
1502 elem = WMGetFromPLArray(pl, 1);
1503 if (!elem || !WMIsPLString(elem))
1504 return NULL;
1505 val = WMGetFromPLString(elem);
1507 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1508 wwarning(_("\"%s\" is not a valid color name"), val);
1509 return NULL;
1512 texture = (WTexture *) wTextureMakeSolid(scr, &color);
1513 } else if (strcasecmp(val, "dgradient") == 0
1514 || strcasecmp(val, "vgradient") == 0 || strcasecmp(val, "hgradient") == 0) {
1515 RColor color1, color2;
1516 XColor xcolor;
1517 int type;
1519 if (nelem != 3) {
1520 wwarning(_("bad number of arguments in gradient specification"));
1521 return NULL;
1524 if (val[0] == 'd' || val[0] == 'D')
1525 type = WTEX_DGRADIENT;
1526 else if (val[0] == 'h' || val[0] == 'H')
1527 type = WTEX_HGRADIENT;
1528 else
1529 type = WTEX_VGRADIENT;
1531 /* get from color */
1532 elem = WMGetFromPLArray(pl, 1);
1533 if (!elem || !WMIsPLString(elem))
1534 return NULL;
1535 val = WMGetFromPLString(elem);
1537 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1538 wwarning(_("\"%s\" is not a valid color name"), val);
1539 return NULL;
1541 color1.alpha = 255;
1542 color1.red = xcolor.red >> 8;
1543 color1.green = xcolor.green >> 8;
1544 color1.blue = xcolor.blue >> 8;
1546 /* get to color */
1547 elem = WMGetFromPLArray(pl, 2);
1548 if (!elem || !WMIsPLString(elem)) {
1549 return NULL;
1551 val = WMGetFromPLString(elem);
1553 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1554 wwarning(_("\"%s\" is not a valid color name"), val);
1555 return NULL;
1557 color2.alpha = 255;
1558 color2.red = xcolor.red >> 8;
1559 color2.green = xcolor.green >> 8;
1560 color2.blue = xcolor.blue >> 8;
1562 texture = (WTexture *) wTextureMakeGradient(scr, type, &color1, &color2);
1564 } else if (strcasecmp(val, "igradient") == 0) {
1565 RColor colors1[2], colors2[2];
1566 int th1, th2;
1567 XColor xcolor;
1568 int i;
1570 if (nelem != 7) {
1571 wwarning(_("bad number of arguments in gradient specification"));
1572 return NULL;
1575 /* get from color */
1576 for (i = 0; i < 2; i++) {
1577 elem = WMGetFromPLArray(pl, 1 + i);
1578 if (!elem || !WMIsPLString(elem))
1579 return NULL;
1580 val = WMGetFromPLString(elem);
1582 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1583 wwarning(_("\"%s\" is not a valid color name"), val);
1584 return NULL;
1586 colors1[i].alpha = 255;
1587 colors1[i].red = xcolor.red >> 8;
1588 colors1[i].green = xcolor.green >> 8;
1589 colors1[i].blue = xcolor.blue >> 8;
1591 elem = WMGetFromPLArray(pl, 3);
1592 if (!elem || !WMIsPLString(elem))
1593 return NULL;
1594 val = WMGetFromPLString(elem);
1595 th1 = atoi(val);
1597 /* get from color */
1598 for (i = 0; i < 2; i++) {
1599 elem = WMGetFromPLArray(pl, 4 + i);
1600 if (!elem || !WMIsPLString(elem))
1601 return NULL;
1602 val = WMGetFromPLString(elem);
1604 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1605 wwarning(_("\"%s\" is not a valid color name"), val);
1606 return NULL;
1608 colors2[i].alpha = 255;
1609 colors2[i].red = xcolor.red >> 8;
1610 colors2[i].green = xcolor.green >> 8;
1611 colors2[i].blue = xcolor.blue >> 8;
1613 elem = WMGetFromPLArray(pl, 6);
1614 if (!elem || !WMIsPLString(elem))
1615 return NULL;
1616 val = WMGetFromPLString(elem);
1617 th2 = atoi(val);
1619 texture = (WTexture *) wTextureMakeIGradient(scr, th1, colors1, th2, colors2);
1621 } else if (strcasecmp(val, "mhgradient") == 0
1622 || strcasecmp(val, "mvgradient") == 0 || strcasecmp(val, "mdgradient") == 0) {
1623 XColor color;
1624 RColor **colors;
1625 int i, count;
1626 int type;
1628 if (nelem < 3) {
1629 wwarning(_("too few arguments in multicolor gradient specification"));
1630 return NULL;
1633 if (val[1] == 'h' || val[1] == 'H')
1634 type = WTEX_MHGRADIENT;
1635 else if (val[1] == 'v' || val[1] == 'V')
1636 type = WTEX_MVGRADIENT;
1637 else
1638 type = WTEX_MDGRADIENT;
1640 count = nelem - 1;
1642 colors = wmalloc(sizeof(RColor *) * (count + 1));
1644 for (i = 0; i < count; i++) {
1645 elem = WMGetFromPLArray(pl, i + 1);
1646 if (!elem || !WMIsPLString(elem)) {
1647 for (--i; i >= 0; --i) {
1648 wfree(colors[i]);
1650 wfree(colors);
1651 return NULL;
1653 val = WMGetFromPLString(elem);
1655 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1656 wwarning(_("\"%s\" is not a valid color name"), val);
1657 for (--i; i >= 0; --i) {
1658 wfree(colors[i]);
1660 wfree(colors);
1661 return NULL;
1662 } else {
1663 colors[i] = wmalloc(sizeof(RColor));
1664 colors[i]->red = color.red >> 8;
1665 colors[i]->green = color.green >> 8;
1666 colors[i]->blue = color.blue >> 8;
1669 colors[i] = NULL;
1671 texture = (WTexture *) wTextureMakeMGradient(scr, type, colors);
1672 } else if (strcasecmp(val, "spixmap") == 0 ||
1673 strcasecmp(val, "cpixmap") == 0 || strcasecmp(val, "tpixmap") == 0) {
1674 XColor color;
1675 int type;
1677 if (nelem != 3)
1678 return NULL;
1680 if (val[0] == 's' || val[0] == 'S')
1681 type = WTP_SCALE;
1682 else if (val[0] == 'c' || val[0] == 'C')
1683 type = WTP_CENTER;
1684 else
1685 type = WTP_TILE;
1687 /* get color */
1688 elem = WMGetFromPLArray(pl, 2);
1689 if (!elem || !WMIsPLString(elem)) {
1690 return NULL;
1692 val = WMGetFromPLString(elem);
1694 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1695 wwarning(_("\"%s\" is not a valid color name"), val);
1696 return NULL;
1699 /* file name */
1700 elem = WMGetFromPLArray(pl, 1);
1701 if (!elem || !WMIsPLString(elem))
1702 return NULL;
1703 val = WMGetFromPLString(elem);
1705 texture = (WTexture *) wTextureMakePixmap(scr, type, val, &color);
1706 } else if (strcasecmp(val, "thgradient") == 0
1707 || strcasecmp(val, "tvgradient") == 0 || strcasecmp(val, "tdgradient") == 0) {
1708 RColor color1, color2;
1709 XColor xcolor;
1710 int opacity;
1711 int style;
1713 if (val[1] == 'h' || val[1] == 'H')
1714 style = WTEX_THGRADIENT;
1715 else if (val[1] == 'v' || val[1] == 'V')
1716 style = WTEX_TVGRADIENT;
1717 else
1718 style = WTEX_TDGRADIENT;
1720 if (nelem != 5) {
1721 wwarning(_("bad number of arguments in textured gradient specification"));
1722 return NULL;
1725 /* get from color */
1726 elem = WMGetFromPLArray(pl, 3);
1727 if (!elem || !WMIsPLString(elem))
1728 return NULL;
1729 val = WMGetFromPLString(elem);
1731 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1732 wwarning(_("\"%s\" is not a valid color name"), val);
1733 return NULL;
1735 color1.alpha = 255;
1736 color1.red = xcolor.red >> 8;
1737 color1.green = xcolor.green >> 8;
1738 color1.blue = xcolor.blue >> 8;
1740 /* get to color */
1741 elem = WMGetFromPLArray(pl, 4);
1742 if (!elem || !WMIsPLString(elem)) {
1743 return NULL;
1745 val = WMGetFromPLString(elem);
1747 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1748 wwarning(_("\"%s\" is not a valid color name"), val);
1749 return NULL;
1751 color2.alpha = 255;
1752 color2.red = xcolor.red >> 8;
1753 color2.green = xcolor.green >> 8;
1754 color2.blue = xcolor.blue >> 8;
1756 /* get opacity */
1757 elem = WMGetFromPLArray(pl, 2);
1758 if (!elem || !WMIsPLString(elem))
1759 opacity = 128;
1760 else
1761 val = WMGetFromPLString(elem);
1763 if (!val || (opacity = atoi(val)) < 0 || opacity > 255) {
1764 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val);
1765 opacity = 128;
1768 /* get file name */
1769 elem = WMGetFromPLArray(pl, 1);
1770 if (!elem || !WMIsPLString(elem))
1771 return NULL;
1772 val = WMGetFromPLString(elem);
1774 texture = (WTexture *) wTextureMakeTGradient(scr, style, &color1, &color2, val, opacity);
1775 } else if (strcasecmp(val, "function") == 0) {
1776 /* Leave this in to handle the unlikely case of
1777 * someone actually having function textures configured */
1778 wwarning("function texture support has been removed");
1779 return NULL;
1780 } else {
1781 wwarning(_("invalid texture type %s"), val);
1782 return NULL;
1784 return texture;
1787 static int getTexture(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1789 static WTexture *texture;
1790 int changed = 0;
1792 again:
1793 if (!WMIsPLArray(value)) {
1794 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry->key, "Texture");
1795 if (changed == 0) {
1796 value = entry->plvalue;
1797 changed = 1;
1798 wwarning(_("using default \"%s\" instead"), entry->default_value);
1799 goto again;
1801 return False;
1804 if (strcmp(entry->key, "WidgetColor") == 0 && !changed) {
1805 WMPropList *pl;
1807 pl = WMGetFromPLArray(value, 0);
1808 if (!pl || !WMIsPLString(pl) || !WMGetFromPLString(pl)
1809 || strcasecmp(WMGetFromPLString(pl), "solid") != 0) {
1810 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1811 entry->key, "Solid Texture");
1813 value = entry->plvalue;
1814 changed = 1;
1815 wwarning(_("using default \"%s\" instead"), entry->default_value);
1816 goto again;
1820 texture = parse_texture(scr, value);
1822 if (!texture) {
1823 wwarning(_("Error in texture specification for key \"%s\""), entry->key);
1824 if (changed == 0) {
1825 value = entry->plvalue;
1826 changed = 1;
1827 wwarning(_("using default \"%s\" instead"), entry->default_value);
1828 goto again;
1830 return False;
1833 if (ret)
1834 *ret = &texture;
1836 if (addr)
1837 *(WTexture **) addr = texture;
1839 return True;
1842 static int getWSBackground(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1844 WMPropList *elem;
1845 int changed = 0;
1846 char *val;
1847 int nelem;
1849 again:
1850 if (!WMIsPLArray(value)) {
1851 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1852 "WorkspaceBack", "Texture or None");
1853 if (changed == 0) {
1854 value = entry->plvalue;
1855 changed = 1;
1856 wwarning(_("using default \"%s\" instead"), entry->default_value);
1857 goto again;
1859 return False;
1862 /* only do basic error checking and verify for None texture */
1864 nelem = WMGetPropListItemCount(value);
1865 if (nelem > 0) {
1866 elem = WMGetFromPLArray(value, 0);
1867 if (!elem || !WMIsPLString(elem)) {
1868 wwarning(_("Wrong type for workspace background. Should be a texture type."));
1869 if (changed == 0) {
1870 value = entry->plvalue;
1871 changed = 1;
1872 wwarning(_("using default \"%s\" instead"), entry->default_value);
1873 goto again;
1875 return False;
1877 val = WMGetFromPLString(elem);
1879 if (strcasecmp(val, "None") == 0)
1880 return True;
1882 *ret = WMRetainPropList(value);
1884 return True;
1887 static int
1888 getWSSpecificBackground(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1890 WMPropList *elem;
1891 int nelem;
1892 int changed = 0;
1894 again:
1895 if (!WMIsPLArray(value)) {
1896 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1897 "WorkspaceSpecificBack", "an array of textures");
1898 if (changed == 0) {
1899 value = entry->plvalue;
1900 changed = 1;
1901 wwarning(_("using default \"%s\" instead"), entry->default_value);
1902 goto again;
1904 return False;
1907 /* only do basic error checking and verify for None texture */
1909 nelem = WMGetPropListItemCount(value);
1910 if (nelem > 0) {
1911 while (nelem--) {
1912 elem = WMGetFromPLArray(value, nelem);
1913 if (!elem || !WMIsPLArray(elem)) {
1914 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
1915 nelem);
1920 *ret = WMRetainPropList(value);
1922 #ifdef notworking
1924 * Kluge to force wmsetbg helper to set the default background.
1925 * If the WorkspaceSpecificBack is changed once wmaker has started,
1926 * the WorkspaceBack won't be sent to the helper, unless the user
1927 * changes it's value too. So, we must force this by removing the
1928 * value from the defaults DB.
1930 if (!scr->flags.backimage_helper_launched && !scr->flags.startup) {
1931 WMPropList *key = WMCreatePLString("WorkspaceBack");
1933 WMRemoveFromPLDictionary(WDWindowMaker->dictionary, key);
1935 WMReleasePropList(key);
1937 #endif
1938 return True;
1941 static int getFont(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1943 static WMFont *font;
1944 char *val;
1946 GET_STRING_OR_DEFAULT("Font", val);
1948 font = WMCreateFont(scr->wmscreen, val);
1949 if (!font)
1950 font = WMCreateFont(scr->wmscreen, "fixed");
1952 if (!font) {
1953 wfatal(_("could not load any usable font!!!"));
1954 exit(1);
1957 if (ret)
1958 *ret = font;
1960 /* can't assign font value outside update function */
1961 wassertrv(addr == NULL, True);
1963 return True;
1966 static int getColor(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
1968 static XColor color;
1969 char *val;
1970 int second_pass = 0;
1972 GET_STRING_OR_DEFAULT("Color", val);
1974 again:
1975 if (!wGetColor(scr, val, &color)) {
1976 wwarning(_("could not get color for key \"%s\""), entry->key);
1977 if (second_pass == 0) {
1978 val = WMGetFromPLString(entry->plvalue);
1979 second_pass = 1;
1980 wwarning(_("using default \"%s\" instead"), val);
1981 goto again;
1983 return False;
1986 if (ret)
1987 *ret = &color;
1989 assert(addr == NULL);
1991 if (addr)
1992 *(unsigned long*)addr = pixel;
1995 return True;
1998 static int getKeybind(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2000 static WShortKey shortcut;
2001 KeySym ksym;
2002 char *val;
2003 char *k;
2004 char buf[MAX_SHORTCUT_LENGTH], *b;
2006 GET_STRING_OR_DEFAULT("Key spec", val);
2008 if (!val || strcasecmp(val, "NONE") == 0) {
2009 shortcut.keycode = 0;
2010 shortcut.modifier = 0;
2011 if (ret)
2012 *ret = &shortcut;
2013 return True;
2016 strncpy(buf, val, MAX_SHORTCUT_LENGTH);
2018 b = (char *)buf;
2020 /* get modifiers */
2021 shortcut.modifier = 0;
2022 while ((k = strchr(b, '+')) != NULL) {
2023 int mod;
2025 *k = 0;
2026 mod = wXModifierFromKey(b);
2027 if (mod < 0) {
2028 wwarning(_("%s: invalid key modifier \"%s\""), entry->key, b);
2029 return False;
2031 shortcut.modifier |= mod;
2033 b = k + 1;
2036 /* get key */
2037 ksym = XStringToKeysym(b);
2039 if (ksym == NoSymbol) {
2040 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry->key, val);
2041 return False;
2044 shortcut.keycode = XKeysymToKeycode(dpy, ksym);
2045 if (shortcut.keycode == 0) {
2046 wwarning(_("%s:invalid key in shortcut \"%s\""), entry->key, val);
2047 return False;
2050 if (ret)
2051 *ret = &shortcut;
2053 return True;
2056 static int getModMask(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2058 static int mask;
2059 char *str;
2061 GET_STRING_OR_DEFAULT("Modifier Key", str);
2063 if (!str)
2064 return False;
2066 mask = wXModifierFromKey(str);
2067 if (mask < 0) {
2068 wwarning(_("%s: modifier key %s is not valid"), entry->key, str);
2069 mask = 0;
2070 return False;
2073 if (addr)
2074 *(int *)addr = mask;
2076 if (ret)
2077 *ret = &mask;
2079 return True;
2082 # include <X11/cursorfont.h>
2083 typedef struct {
2084 char *name;
2085 int id;
2086 } WCursorLookup;
2088 #define CURSOR_ID_NONE (XC_num_glyphs)
2090 static WCursorLookup cursor_table[] = {
2091 {"X_cursor", XC_X_cursor},
2092 {"arrow", XC_arrow},
2093 {"based_arrow_down", XC_based_arrow_down},
2094 {"based_arrow_up", XC_based_arrow_up},
2095 {"boat", XC_boat},
2096 {"bogosity", XC_bogosity},
2097 {"bottom_left_corner", XC_bottom_left_corner},
2098 {"bottom_right_corner", XC_bottom_right_corner},
2099 {"bottom_side", XC_bottom_side},
2100 {"bottom_tee", XC_bottom_tee},
2101 {"box_spiral", XC_box_spiral},
2102 {"center_ptr", XC_center_ptr},
2103 {"circle", XC_circle},
2104 {"clock", XC_clock},
2105 {"coffee_mug", XC_coffee_mug},
2106 {"cross", XC_cross},
2107 {"cross_reverse", XC_cross_reverse},
2108 {"crosshair", XC_crosshair},
2109 {"diamond_cross", XC_diamond_cross},
2110 {"dot", XC_dot},
2111 {"dotbox", XC_dotbox},
2112 {"double_arrow", XC_double_arrow},
2113 {"draft_large", XC_draft_large},
2114 {"draft_small", XC_draft_small},
2115 {"draped_box", XC_draped_box},
2116 {"exchange", XC_exchange},
2117 {"fleur", XC_fleur},
2118 {"gobbler", XC_gobbler},
2119 {"gumby", XC_gumby},
2120 {"hand1", XC_hand1},
2121 {"hand2", XC_hand2},
2122 {"heart", XC_heart},
2123 {"icon", XC_icon},
2124 {"iron_cross", XC_iron_cross},
2125 {"left_ptr", XC_left_ptr},
2126 {"left_side", XC_left_side},
2127 {"left_tee", XC_left_tee},
2128 {"leftbutton", XC_leftbutton},
2129 {"ll_angle", XC_ll_angle},
2130 {"lr_angle", XC_lr_angle},
2131 {"man", XC_man},
2132 {"middlebutton", XC_middlebutton},
2133 {"mouse", XC_mouse},
2134 {"pencil", XC_pencil},
2135 {"pirate", XC_pirate},
2136 {"plus", XC_plus},
2137 {"question_arrow", XC_question_arrow},
2138 {"right_ptr", XC_right_ptr},
2139 {"right_side", XC_right_side},
2140 {"right_tee", XC_right_tee},
2141 {"rightbutton", XC_rightbutton},
2142 {"rtl_logo", XC_rtl_logo},
2143 {"sailboat", XC_sailboat},
2144 {"sb_down_arrow", XC_sb_down_arrow},
2145 {"sb_h_double_arrow", XC_sb_h_double_arrow},
2146 {"sb_left_arrow", XC_sb_left_arrow},
2147 {"sb_right_arrow", XC_sb_right_arrow},
2148 {"sb_up_arrow", XC_sb_up_arrow},
2149 {"sb_v_double_arrow", XC_sb_v_double_arrow},
2150 {"shuttle", XC_shuttle},
2151 {"sizing", XC_sizing},
2152 {"spider", XC_spider},
2153 {"spraycan", XC_spraycan},
2154 {"star", XC_star},
2155 {"target", XC_target},
2156 {"tcross", XC_tcross},
2157 {"top_left_arrow", XC_top_left_arrow},
2158 {"top_left_corner", XC_top_left_corner},
2159 {"top_right_corner", XC_top_right_corner},
2160 {"top_side", XC_top_side},
2161 {"top_tee", XC_top_tee},
2162 {"trek", XC_trek},
2163 {"ul_angle", XC_ul_angle},
2164 {"umbrella", XC_umbrella},
2165 {"ur_angle", XC_ur_angle},
2166 {"watch", XC_watch},
2167 {"xterm", XC_xterm},
2168 {NULL, CURSOR_ID_NONE}
2171 static void check_bitmap_status(int status, char *filename, Pixmap bitmap)
2173 switch (status) {
2174 case BitmapOpenFailed:
2175 wwarning(_("failed to open bitmap file \"%s\""), filename);
2176 break;
2177 case BitmapFileInvalid:
2178 wwarning(_("\"%s\" is not a valid bitmap file"), filename);
2179 break;
2180 case BitmapNoMemory:
2181 wwarning(_("out of memory reading bitmap file \"%s\""), filename);
2182 break;
2183 case BitmapSuccess:
2184 XFreePixmap(dpy, bitmap);
2185 break;
2190 * (none)
2191 * (builtin, <cursor_name>)
2192 * (bitmap, <cursor_bitmap>, <cursor_mask>)
2194 static int parse_cursor(WScreen * scr, WMPropList * pl, Cursor * cursor)
2196 WMPropList *elem;
2197 char *val;
2198 int nelem;
2199 int status = 0;
2201 nelem = WMGetPropListItemCount(pl);
2202 if (nelem < 1) {
2203 return (status);
2205 elem = WMGetFromPLArray(pl, 0);
2206 if (!elem || !WMIsPLString(elem)) {
2207 return (status);
2209 val = WMGetFromPLString(elem);
2211 if (strcasecmp(val, "none") == 0) {
2212 status = 1;
2213 *cursor = None;
2214 } else if (strcasecmp(val, "builtin") == 0) {
2215 int i;
2216 int cursor_id = CURSOR_ID_NONE;
2218 if (nelem != 2) {
2219 wwarning(_("bad number of arguments in cursor specification"));
2220 return (status);
2222 elem = WMGetFromPLArray(pl, 1);
2223 if (!elem || !WMIsPLString(elem)) {
2224 return (status);
2226 val = WMGetFromPLString(elem);
2228 for (i = 0; cursor_table[i].name != NULL; i++) {
2229 if (strcasecmp(val, cursor_table[i].name) == 0) {
2230 cursor_id = cursor_table[i].id;
2231 break;
2234 if (CURSOR_ID_NONE == cursor_id) {
2235 wwarning(_("unknown builtin cursor name \"%s\""), val);
2236 } else {
2237 *cursor = XCreateFontCursor(dpy, cursor_id);
2238 status = 1;
2240 } else if (strcasecmp(val, "bitmap") == 0) {
2241 char *bitmap_name;
2242 char *mask_name;
2243 int bitmap_status;
2244 int mask_status;
2245 Pixmap bitmap;
2246 Pixmap mask;
2247 unsigned int w, h;
2248 int x, y;
2249 XColor fg, bg;
2251 if (nelem != 3) {
2252 wwarning(_("bad number of arguments in cursor specification"));
2253 return (status);
2255 elem = WMGetFromPLArray(pl, 1);
2256 if (!elem || !WMIsPLString(elem)) {
2257 return (status);
2259 val = WMGetFromPLString(elem);
2260 bitmap_name = FindImage(wPreferences.pixmap_path, val);
2261 if (!bitmap_name) {
2262 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2263 return (status);
2265 elem = WMGetFromPLArray(pl, 2);
2266 if (!elem || !WMIsPLString(elem)) {
2267 wfree(bitmap_name);
2268 return (status);
2270 val = WMGetFromPLString(elem);
2271 mask_name = FindImage(wPreferences.pixmap_path, val);
2272 if (!mask_name) {
2273 wfree(bitmap_name);
2274 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2275 return (status);
2277 mask_status = XReadBitmapFile(dpy, scr->w_win, mask_name, &w, &h, &mask, &x, &y);
2278 bitmap_status = XReadBitmapFile(dpy, scr->w_win, bitmap_name, &w, &h, &bitmap, &x, &y);
2279 if ((BitmapSuccess == bitmap_status) && (BitmapSuccess == mask_status)) {
2280 fg.pixel = scr->black_pixel;
2281 bg.pixel = scr->white_pixel;
2282 XQueryColor(dpy, scr->w_colormap, &fg);
2283 XQueryColor(dpy, scr->w_colormap, &bg);
2284 *cursor = XCreatePixmapCursor(dpy, bitmap, mask, &fg, &bg, x, y);
2285 status = 1;
2287 check_bitmap_status(bitmap_status, bitmap_name, bitmap);
2288 check_bitmap_status(mask_status, mask_name, mask);
2289 wfree(bitmap_name);
2290 wfree(mask_name);
2292 return (status);
2295 static int getCursor(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *addr, void **ret)
2297 static Cursor cursor;
2298 int status;
2299 int changed = 0;
2301 again:
2302 if (!WMIsPLArray(value)) {
2303 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2304 entry->key, "cursor specification");
2305 if (!changed) {
2306 value = entry->plvalue;
2307 changed = 1;
2308 wwarning(_("using default \"%s\" instead"), entry->default_value);
2309 goto again;
2311 return (False);
2313 status = parse_cursor(scr, value, &cursor);
2314 if (!status) {
2315 wwarning(_("Error in cursor specification for key \"%s\""), entry->key);
2316 if (!changed) {
2317 value = entry->plvalue;
2318 changed = 1;
2319 wwarning(_("using default \"%s\" instead"), entry->default_value);
2320 goto again;
2322 return (False);
2324 if (ret) {
2325 *ret = &cursor;
2327 if (addr) {
2328 *(Cursor *) addr = cursor;
2330 return (True);
2333 #undef CURSOR_ID_NONE
2335 /* ---------------- value setting functions --------------- */
2336 static int setJustify(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2338 return REFRESH_WINDOW_TITLE_COLOR;
2341 static int setClearance(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2343 return REFRESH_WINDOW_FONT | REFRESH_BUTTON_IMAGES | REFRESH_MENU_TITLE_FONT | REFRESH_MENU_FONT;
2346 static int setIfDockPresent(WScreen * scr, WDefaultEntry * entry, char *flag, long which)
2348 switch (which) {
2349 case WM_DOCK:
2350 wPreferences.flags.nodock = wPreferences.flags.nodock || *flag;
2351 break;
2352 case WM_CLIP:
2353 wPreferences.flags.noclip = wPreferences.flags.noclip || *flag;
2354 break;
2355 default:
2356 break;
2358 return 0;
2361 static int setStickyIcons(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2363 if (scr->workspaces) {
2364 wWorkspaceForceChange(scr, scr->current_workspace);
2365 wArrangeIcons(scr, False);
2367 return 0;
2370 static int setIconTile(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2372 Pixmap pixmap;
2373 RImage *img;
2374 int reset = 0;
2376 img = wTextureRenderImage(*texture, wPreferences.icon_size,
2377 wPreferences.icon_size, ((*texture)->any.type & WREL_BORDER_MASK)
2378 ? WREL_ICON : WREL_FLAT);
2379 if (!img) {
2380 wwarning(_("could not render texture for icon background"));
2381 if (!entry->addr)
2382 wTextureDestroy(scr, *texture);
2383 return 0;
2385 RConvertImage(scr->rcontext, img, &pixmap);
2387 if (scr->icon_tile) {
2388 reset = 1;
2389 RReleaseImage(scr->icon_tile);
2390 XFreePixmap(dpy, scr->icon_tile_pixmap);
2393 scr->icon_tile = img;
2395 /* put the icon in the noticeboard hint */
2396 PropSetIconTileHint(scr, img);
2398 if (!wPreferences.flags.noclip) {
2399 if (scr->clip_tile) {
2400 RReleaseImage(scr->clip_tile);
2402 scr->clip_tile = wClipMakeTile(scr, img);
2405 scr->icon_tile_pixmap = pixmap;
2407 if (scr->def_icon_pixmap) {
2408 XFreePixmap(dpy, scr->def_icon_pixmap);
2409 scr->def_icon_pixmap = None;
2411 if (scr->def_ticon_pixmap) {
2412 XFreePixmap(dpy, scr->def_ticon_pixmap);
2413 scr->def_ticon_pixmap = None;
2416 if (scr->icon_back_texture) {
2417 wTextureDestroy(scr, (WTexture *) scr->icon_back_texture);
2419 scr->icon_back_texture = wTextureMakeSolid(scr, &((*texture)->any.color));
2421 if (scr->clip_balloon)
2422 XSetWindowBackground(dpy, scr->clip_balloon, (*texture)->any.color.pixel);
2425 * Free the texture as nobody else will use it, nor refer to it.
2427 if (!entry->addr)
2428 wTextureDestroy(scr, *texture);
2430 return (reset ? REFRESH_ICON_TILE : 0);
2433 static int setWinTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2435 if (scr->title_font) {
2436 WMReleaseFont(scr->title_font);
2438 scr->title_font = font;
2440 return REFRESH_WINDOW_FONT | REFRESH_BUTTON_IMAGES;
2443 static int setMenuTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2445 if (scr->menu_title_font) {
2446 WMReleaseFont(scr->menu_title_font);
2449 scr->menu_title_font = font;
2451 return REFRESH_MENU_TITLE_FONT;
2454 static int setMenuTextFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2456 if (scr->menu_entry_font) {
2457 WMReleaseFont(scr->menu_entry_font);
2459 scr->menu_entry_font = font;
2461 return REFRESH_MENU_FONT;
2464 static int setIconTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2466 if (scr->icon_title_font) {
2467 WMReleaseFont(scr->icon_title_font);
2470 scr->icon_title_font = font;
2472 return REFRESH_ICON_FONT;
2475 static int setClipTitleFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2477 if (scr->clip_title_font) {
2478 WMReleaseFont(scr->clip_title_font);
2481 scr->clip_title_font = font;
2483 return REFRESH_ICON_FONT;
2486 static int setLargeDisplayFont(WScreen * scr, WDefaultEntry * entry, WMFont * font, void *foo)
2488 if (scr->workspace_name_font) {
2489 WMReleaseFont(scr->workspace_name_font);
2492 scr->workspace_name_font = font;
2494 return 0;
2497 static int setHightlight(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2499 if (scr->select_color)
2500 WMReleaseColor(scr->select_color);
2502 scr->select_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2504 wFreeColor(scr, color->pixel);
2506 return REFRESH_MENU_COLOR;
2509 static int setHightlightText(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2511 if (scr->select_text_color)
2512 WMReleaseColor(scr->select_text_color);
2514 scr->select_text_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2516 wFreeColor(scr, color->pixel);
2518 return REFRESH_MENU_COLOR;
2521 static int setClipTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2523 if (scr->clip_title_color[widx])
2524 WMReleaseColor(scr->clip_title_color[widx]);
2525 scr->clip_title_color[widx] = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2526 #ifdef GRADIENT_CLIP_ARROW
2527 if (widx == CLIP_NORMAL) {
2528 RImage *image;
2529 RColor color1, color2;
2530 int pt = CLIP_BUTTON_SIZE * wPreferences.icon_size / 64;
2531 int as = pt - 15; /* 15 = 5+5+5 */
2533 FREE_PIXMAP(scr->clip_arrow_gradient);
2535 color1.red = (color->red >> 8) * 6 / 10;
2536 color1.green = (color->green >> 8) * 6 / 10;
2537 color1.blue = (color->blue >> 8) * 6 / 10;
2539 color2.red = WMIN((color->red >> 8) * 20 / 10, 255);
2540 color2.green = WMIN((color->green >> 8) * 20 / 10, 255);
2541 color2.blue = WMIN((color->blue >> 8) * 20 / 10, 255);
2543 image = RRenderGradient(as + 1, as + 1, &color1, &color2, RDiagonalGradient);
2544 RConvertImage(scr->rcontext, image, &scr->clip_arrow_gradient);
2545 RReleaseImage(image);
2547 #endif /* GRADIENT_CLIP_ARROW */
2549 wFreeColor(scr, color->pixel);
2551 return REFRESH_ICON_TITLE_COLOR;
2554 static int setWTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2556 if (scr->window_title_color[widx])
2557 WMReleaseColor(scr->window_title_color[widx]);
2559 scr->window_title_color[widx] =
2560 WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2562 wFreeColor(scr, color->pixel);
2564 return REFRESH_WINDOW_TITLE_COLOR;
2567 static int setMenuTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, long widx)
2569 if (scr->menu_title_color[0])
2570 WMReleaseColor(scr->menu_title_color[0]);
2572 scr->menu_title_color[0] = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2574 wFreeColor(scr, color->pixel);
2576 return REFRESH_MENU_TITLE_COLOR;
2579 static int setMenuTextColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2581 if (scr->mtext_color)
2582 WMReleaseColor(scr->mtext_color);
2584 scr->mtext_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2586 if (WMColorPixel(scr->dtext_color) == WMColorPixel(scr->mtext_color)) {
2587 WMSetColorAlpha(scr->dtext_color, 0x7fff);
2588 } else {
2589 WMSetColorAlpha(scr->dtext_color, 0xffff);
2592 wFreeColor(scr, color->pixel);
2594 return REFRESH_MENU_COLOR;
2597 static int setMenuDisabledColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2599 if (scr->dtext_color)
2600 WMReleaseColor(scr->dtext_color);
2602 scr->dtext_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2604 if (WMColorPixel(scr->dtext_color) == WMColorPixel(scr->mtext_color)) {
2605 WMSetColorAlpha(scr->dtext_color, 0x7fff);
2606 } else {
2607 WMSetColorAlpha(scr->dtext_color, 0xffff);
2610 wFreeColor(scr, color->pixel);
2612 return REFRESH_MENU_COLOR;
2615 static int setIconTitleColor(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2617 if (scr->icon_title_color)
2618 WMReleaseColor(scr->icon_title_color);
2619 scr->icon_title_color = WMCreateRGBColor(scr->wmscreen, color->red, color->green, color->blue, True);
2621 wFreeColor(scr, color->pixel);
2623 return REFRESH_ICON_TITLE_COLOR;
2626 static int setIconTitleBack(WScreen * scr, WDefaultEntry * entry, XColor * color, void *foo)
2628 if (scr->icon_title_texture) {
2629 wTextureDestroy(scr, (WTexture *) scr->icon_title_texture);
2631 scr->icon_title_texture = wTextureMakeSolid(scr, color);
2633 return REFRESH_ICON_TITLE_BACK;
2636 static void trackDeadProcess(pid_t pid, unsigned char status, WScreen * scr)
2638 close(scr->helper_fd);
2639 scr->helper_fd = 0;
2640 scr->helper_pid = 0;
2641 scr->flags.backimage_helper_launched = 0;
2644 static int setWorkspaceSpecificBack(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *bar)
2646 WMPropList *val;
2647 char *str;
2648 int i;
2650 if (scr->flags.backimage_helper_launched) {
2651 if (WMGetPropListItemCount(value) == 0) {
2652 SendHelperMessage(scr, 'C', 0, NULL);
2653 SendHelperMessage(scr, 'K', 0, NULL);
2655 WMReleasePropList(value);
2656 return 0;
2658 } else {
2659 pid_t pid;
2660 int filedes[2];
2662 if (WMGetPropListItemCount(value) == 0)
2663 return 0;
2665 if (pipe(filedes) < 0) {
2666 wsyserror("pipe() failed:can't set workspace specific background image");
2668 WMReleasePropList(value);
2669 return 0;
2672 pid = fork();
2673 if (pid < 0) {
2674 wsyserror("fork() failed:can't set workspace specific background image");
2675 if (close(filedes[0]) < 0)
2676 wsyserror("could not close pipe");
2677 if (close(filedes[1]) < 0)
2678 wsyserror("could not close pipe");
2680 } else if (pid == 0) {
2681 char *dither;
2683 SetupEnvironment(scr);
2685 if (close(0) < 0)
2686 wsyserror("could not close pipe");
2687 if (dup(filedes[0]) < 0) {
2688 wsyserror("dup() failed:can't set workspace specific background image");
2690 dither = wPreferences.no_dithering ? "-m" : "-d";
2691 if (wPreferences.smooth_workspace_back)
2692 execlp("wmsetbg", "wmsetbg", "-helper", "-S", dither, NULL);
2693 else
2694 execlp("wmsetbg", "wmsetbg", "-helper", dither, NULL);
2695 wsyserror("could not execute wmsetbg");
2696 exit(1);
2697 } else {
2699 if (fcntl(filedes[0], F_SETFD, FD_CLOEXEC) < 0) {
2700 wsyserror("error setting close-on-exec flag");
2702 if (fcntl(filedes[1], F_SETFD, FD_CLOEXEC) < 0) {
2703 wsyserror("error setting close-on-exec flag");
2706 scr->helper_fd = filedes[1];
2707 scr->helper_pid = pid;
2708 scr->flags.backimage_helper_launched = 1;
2710 wAddDeathHandler(pid, (WDeathHandler *) trackDeadProcess, scr);
2712 SendHelperMessage(scr, 'P', -1, wPreferences.pixmap_path);
2717 for (i = 0; i < WMGetPropListItemCount(value); i++) {
2718 val = WMGetFromPLArray(value, i);
2719 if (val && WMIsPLArray(val) && WMGetPropListItemCount(val) > 0) {
2720 str = WMGetPropListDescription(val, False);
2722 SendHelperMessage(scr, 'S', i + 1, str);
2724 wfree(str);
2725 } else {
2726 SendHelperMessage(scr, 'U', i + 1, NULL);
2729 sleep(1);
2731 WMReleasePropList(value);
2732 return 0;
2735 static int setWorkspaceBack(WScreen * scr, WDefaultEntry * entry, WMPropList * value, void *bar)
2737 if (scr->flags.backimage_helper_launched) {
2738 char *str;
2740 if (WMGetPropListItemCount(value) == 0) {
2741 SendHelperMessage(scr, 'U', 0, NULL);
2742 } else {
2743 /* set the default workspace background to this one */
2744 str = WMGetPropListDescription(value, False);
2745 if (str) {
2746 SendHelperMessage(scr, 'S', 0, str);
2747 wfree(str);
2748 SendHelperMessage(scr, 'C', scr->current_workspace + 1, NULL);
2749 } else {
2750 SendHelperMessage(scr, 'U', 0, NULL);
2753 } else if (WMGetPropListItemCount(value) > 0) {
2754 char *command;
2755 char *text;
2756 char *dither;
2757 int len;
2759 text = WMGetPropListDescription(value, False);
2760 len = strlen(text) + 40;
2761 command = wmalloc(len);
2762 dither = wPreferences.no_dithering ? "-m" : "-d";
2763 if (wPreferences.smooth_workspace_back)
2764 snprintf(command, len, "wmsetbg %s -S -p '%s' &", dither, text);
2765 else
2766 snprintf(command, len, "wmsetbg %s -p '%s' &", dither, text);
2767 wfree(text);
2768 ExecuteShellCommand(scr, command);
2769 wfree(command);
2771 WMReleasePropList(value);
2773 return 0;
2776 static int setWidgetColor(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2778 if (scr->widget_texture) {
2779 wTextureDestroy(scr, (WTexture *) scr->widget_texture);
2781 scr->widget_texture = *(WTexSolid **) texture;
2783 return 0;
2786 static int setFTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2788 if (scr->window_title_texture[WS_FOCUSED]) {
2789 wTextureDestroy(scr, scr->window_title_texture[WS_FOCUSED]);
2791 scr->window_title_texture[WS_FOCUSED] = *texture;
2793 return REFRESH_WINDOW_TEXTURES;
2796 static int setPTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2798 if (scr->window_title_texture[WS_PFOCUSED]) {
2799 wTextureDestroy(scr, scr->window_title_texture[WS_PFOCUSED]);
2801 scr->window_title_texture[WS_PFOCUSED] = *texture;
2803 return REFRESH_WINDOW_TEXTURES;
2806 static int setUTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2808 if (scr->window_title_texture[WS_UNFOCUSED]) {
2809 wTextureDestroy(scr, scr->window_title_texture[WS_UNFOCUSED]);
2811 scr->window_title_texture[WS_UNFOCUSED] = *texture;
2813 return REFRESH_WINDOW_TEXTURES;
2816 static int setResizebarBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2818 if (scr->resizebar_texture[0]) {
2819 wTextureDestroy(scr, scr->resizebar_texture[0]);
2821 scr->resizebar_texture[0] = *texture;
2823 return REFRESH_WINDOW_TEXTURES;
2826 static int setMenuTitleBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2828 if (scr->menu_title_texture[0]) {
2829 wTextureDestroy(scr, scr->menu_title_texture[0]);
2831 scr->menu_title_texture[0] = *texture;
2833 return REFRESH_MENU_TITLE_TEXTURE;
2836 static int setMenuTextBack(WScreen * scr, WDefaultEntry * entry, WTexture ** texture, void *foo)
2838 if (scr->menu_item_texture) {
2839 wTextureDestroy(scr, scr->menu_item_texture);
2840 wTextureDestroy(scr, (WTexture *) scr->menu_item_auxtexture);
2842 scr->menu_item_texture = *texture;
2844 scr->menu_item_auxtexture = wTextureMakeSolid(scr, &scr->menu_item_texture->any.color);
2846 return REFRESH_MENU_TEXTURE;
2849 static int setKeyGrab(WScreen * scr, WDefaultEntry * entry, WShortKey * shortcut, long widx)
2851 WWindow *wwin;
2852 wKeyBindings[widx] = *shortcut;
2854 wwin = scr->focused_window;
2856 while (wwin != NULL) {
2857 XUngrabKey(dpy, AnyKey, AnyModifier, wwin->frame->core->window);
2859 if (!WFLAGP(wwin, no_bind_keys)) {
2860 wWindowSetKeyGrabs(wwin);
2862 wwin = wwin->prev;
2865 return 0;
2868 static int setIconPosition(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2870 wScreenUpdateUsableArea(scr);
2871 wArrangeIcons(scr, True);
2873 return 0;
2876 static int updateUsableArea(WScreen * scr, WDefaultEntry * entry, void *bar, void *foo)
2878 wScreenUpdateUsableArea(scr);
2880 return 0;
2883 static int setMenuStyle(WScreen * scr, WDefaultEntry * entry, int *value, void *foo)
2885 return REFRESH_MENU_TEXTURE;
2888 static RImage *chopOffImage(RImage * image, int x, int y, int w, int h)
2890 RImage *img = RCreateImage(w, h, image->format == RRGBAFormat);
2892 RCopyArea(img, image, x, y, w, h, 0, 0);
2894 return img;
2897 static int setSwPOptions(WScreen * scr, WDefaultEntry * entry, WMPropList * array, void *foo)
2899 char *path;
2900 RImage *bgimage;
2901 int cwidth, cheight;
2902 WPreferences *prefs = (WPreferences *) foo;
2904 if (!WMIsPLArray(array) || WMGetPropListItemCount(array) == 0) {
2905 if (prefs->swtileImage)
2906 RReleaseImage(prefs->swtileImage);
2907 prefs->swtileImage = NULL;
2909 WMReleasePropList(array);
2910 return 0;
2913 switch (WMGetPropListItemCount(array)) {
2914 case 4:
2915 if (!WMIsPLString(WMGetFromPLArray(array, 1))) {
2916 wwarning(_("Invalid arguments for option \"%s\""), entry->key);
2917 break;
2918 } else
2919 path = FindImage(wPreferences.pixmap_path, WMGetFromPLString(WMGetFromPLArray(array, 1)));
2921 if (!path) {
2922 wwarning(_("Could not find image \"%s\" for option \"%s\""),
2923 WMGetFromPLString(WMGetFromPLArray(array, 1)), entry->key);
2924 } else {
2925 bgimage = RLoadImage(scr->rcontext, path, 0);
2926 if (!bgimage) {
2927 wwarning(_("Could not load image \"%s\" for option \"%s\""), path, entry->key);
2928 wfree(path);
2929 } else {
2930 wfree(path);
2932 cwidth = atoi(WMGetFromPLString(WMGetFromPLArray(array, 2)));
2933 cheight = atoi(WMGetFromPLString(WMGetFromPLArray(array, 3)));
2935 if (cwidth <= 0 || cheight <= 0 ||
2936 cwidth >= bgimage->width - 2 || cheight >= bgimage->height - 2)
2937 wwarning(_("Invalid split sizes for SwitchPanel back image."));
2938 else {
2939 int i;
2940 int swidth, theight;
2941 for (i = 0; i < 9; i++) {
2942 if (prefs->swbackImage[i])
2943 RReleaseImage(prefs->swbackImage[i]);
2944 prefs->swbackImage[i] = NULL;
2946 swidth = (bgimage->width - cwidth) / 2;
2947 theight = (bgimage->height - cheight) / 2;
2949 prefs->swbackImage[0] = chopOffImage(bgimage, 0, 0, swidth, theight);
2950 prefs->swbackImage[1] = chopOffImage(bgimage, swidth, 0, cwidth, theight);
2951 prefs->swbackImage[2] = chopOffImage(bgimage, swidth + cwidth, 0,
2952 swidth, theight);
2954 prefs->swbackImage[3] = chopOffImage(bgimage, 0, theight, swidth, cheight);
2955 prefs->swbackImage[4] = chopOffImage(bgimage, swidth, theight,
2956 cwidth, cheight);
2957 prefs->swbackImage[5] = chopOffImage(bgimage, swidth + cwidth, theight,
2958 swidth, cheight);
2960 prefs->swbackImage[6] = chopOffImage(bgimage, 0, theight + cheight,
2961 swidth, theight);
2962 prefs->swbackImage[7] = chopOffImage(bgimage, swidth, theight + cheight,
2963 cwidth, theight);
2964 prefs->swbackImage[8] =
2965 chopOffImage(bgimage, swidth + cwidth, theight + cheight, swidth,
2966 theight);
2968 // check if anything failed
2969 for (i = 0; i < 9; i++) {
2970 if (!prefs->swbackImage[i]) {
2971 for (; i >= 0; --i) {
2972 RReleaseImage(prefs->swbackImage[i]);
2973 prefs->swbackImage[i] = NULL;
2975 break;
2979 RReleaseImage(bgimage);
2983 case 1:
2984 if (!WMIsPLString(WMGetFromPLArray(array, 0))) {
2985 wwarning(_("Invalid arguments for option \"%s\""), entry->key);
2986 break;
2987 } else
2988 path = FindImage(wPreferences.pixmap_path, WMGetFromPLString(WMGetFromPLArray(array, 0)));
2990 if (!path) {
2991 wwarning(_("Could not find image \"%s\" for option \"%s\""),
2992 WMGetFromPLString(WMGetFromPLArray(array, 0)), entry->key);
2993 } else {
2994 if (prefs->swtileImage)
2995 RReleaseImage(prefs->swtileImage);
2997 prefs->swtileImage = RLoadImage(scr->rcontext, path, 0);
2998 if (!prefs->swtileImage) {
2999 wwarning(_("Could not load image \"%s\" for option \"%s\""), path, entry->key);
3001 wfree(path);
3003 break;
3005 default:
3006 wwarning(_("Invalid number of arguments for option \"%s\""), entry->key);
3007 break;
3010 WMReleasePropList(array);
3012 return 0;
3016 * Very ugly kluge.
3017 * Need access to the double click variables, so that all widgets in
3018 * wmaker panels will have the same dbl-click values.
3019 * TODO: figure a better way of dealing with it.
3021 #include <WINGs/WINGsP.h>
3023 static int setDoubleClick(WScreen * scr, WDefaultEntry * entry, int *value, void *foo)
3025 extern _WINGsConfiguration WINGsConfiguration;
3027 if (*value <= 0)
3028 *(int *)foo = 1;
3030 WINGsConfiguration.doubleClickDelay = *value;
3032 return 0;
3035 static int setCursor(WScreen * scr, WDefaultEntry * entry, Cursor * cursor, long widx)
3037 if (wCursor[widx] != None) {
3038 XFreeCursor(dpy, wCursor[widx]);
3041 wCursor[widx] = *cursor;
3043 if (widx == WCUR_ROOT && *cursor != None) {
3044 XDefineCursor(dpy, scr->root_win, *cursor);
3047 return 0;