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,
33 #include <sys/types.h>
44 #define PATH_MAX DEFAULT_PATH_MAX
48 #include <X11/Xutil.h>
49 #include <X11/keysym.h>
53 #include "WindowMaker.h"
59 #include "resources.h"
62 #include "xmodifier.h"
67 #include "workspace.h"
68 #include "properties.h"
70 #define MAX_SHORTCUT_LENGTH 32
72 #ifndef GLOBAL_DEFAULTS_SUBDIR
73 #define GLOBAL_DEFAULTS_SUBDIR "WindowMaker"
78 extern WDDomain
*WDWindowMaker
;
79 extern WDDomain
*WDWindowAttributes
;
80 extern WDDomain
*WDRootMenu
;
82 extern int wScreenCount
;
84 extern Atom _XA_WINDOWMAKER_ICON_SIZE
;
85 extern Atom _XA_WINDOWMAKER_ICON_TILE
;
88 extern WMPropList *wDomainName;
89 extern WMPropList *wAttributeDomainName;
91 extern WPreferences wPreferences
;
93 extern WShortKey wKeyBindings
[WKBD_LAST
];
103 WMPropList
*plvalue
; /* default value */
106 /* used to map strings to integers */
111 } WOptionEnumeration
;
113 /* type converters */
114 static int getBool();
116 static int getCoord();
118 /* this is not used yet */
119 static int getString();
121 static int getPathList();
122 static int getEnum();
123 static int getTexture();
124 static int getWSBackground();
125 static int getWSSpecificBackground();
126 static int getFont();
127 static int getColor();
128 static int getKeybind();
129 static int getModMask();
131 static int getRImage();
133 static int getPropList();
135 /* value setting functions */
136 static int setJustify();
137 static int setClearance();
138 static int setIfDockPresent();
139 static int setStickyIcons();
141 static int setPositive();
143 static int setWidgetColor();
144 static int setIconTile();
145 static int setWinTitleFont();
146 static int setMenuTitleFont();
147 static int setMenuTextFont();
148 static int setIconTitleFont();
149 static int setIconTitleColor();
150 static int setIconTitleBack();
151 static int setLargeDisplayFont();
152 static int setWTitleColor();
153 static int setFTitleBack();
154 static int setPTitleBack();
155 static int setUTitleBack();
156 static int setResizebarBack();
157 static int setWorkspaceBack();
158 static int setWorkspaceSpecificBack();
159 #ifdef VIRTUAL_DESKTOP
160 static int setVirtualDeskEnable();
162 static int setMenuTitleColor();
163 static int setMenuTextColor();
164 static int setMenuDisabledColor();
165 static int setMenuTitleBack();
166 static int setMenuTextBack();
167 static int setHightlight();
168 static int setHightlightText();
169 static int setKeyGrab();
170 static int setDoubleClick();
171 static int setIconPosition();
173 static int setClipTitleFont();
174 static int setClipTitleColor();
176 static int setMenuStyle();
177 static int setSwPOptions();
178 static int updateUsableArea();
180 extern Cursor wCursor
[WCUR_LAST
];
181 static int getCursor();
182 static int setCursor();
185 * Tables to convert strings to enumeration values.
186 * Values stored are char
189 /* WARNING: sum of length of all value strings must not exceed
191 #define TOTAL_VALUES_LENGTH 80
193 #define REFRESH_WINDOW_TEXTURES (1<<0)
194 #define REFRESH_MENU_TEXTURE (1<<1)
195 #define REFRESH_MENU_FONT (1<<2)
196 #define REFRESH_MENU_COLOR (1<<3)
197 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
198 #define REFRESH_MENU_TITLE_FONT (1<<5)
199 #define REFRESH_MENU_TITLE_COLOR (1<<6)
200 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
201 #define REFRESH_WINDOW_FONT (1<<8)
202 #define REFRESH_ICON_TILE (1<<9)
203 #define REFRESH_ICON_FONT (1<<10)
204 #define REFRESH_WORKSPACE_BACK (1<<11)
206 #define REFRESH_BUTTON_IMAGES (1<<12)
208 #define REFRESH_ICON_TITLE_COLOR (1<<13)
209 #define REFRESH_ICON_TITLE_BACK (1<<14)
211 static WOptionEnumeration seFocusModes
[] = {
212 {"Manual", WKF_CLICK
, 0}, {"ClickToFocus", WKF_CLICK
, 1},
213 {"Sloppy", WKF_SLOPPY
, 0}, {"SemiAuto", WKF_SLOPPY
, 1}, {"Auto", WKF_SLOPPY
, 1},
217 static WOptionEnumeration seColormapModes
[] = {
218 {"Manual", WCM_CLICK
, 0}, {"ClickToFocus", WCM_CLICK
, 1},
219 {"Auto", WCM_POINTER
, 0}, {"FocusFollowMouse", WCM_POINTER
, 1},
223 static WOptionEnumeration sePlacements
[] = {
224 {"Auto", WPM_AUTO
, 0},
225 {"Smart", WPM_SMART
, 0},
226 {"Cascade", WPM_CASCADE
, 0},
227 {"Random", WPM_RANDOM
, 0},
228 {"Manual", WPM_MANUAL
, 0},
232 static WOptionEnumeration seGeomDisplays
[] = {
233 {"None", WDIS_NONE
, 0},
234 {"Center", WDIS_CENTER
, 0},
235 {"Corner", WDIS_TOPLEFT
, 0},
236 {"Floating", WDIS_FRAME_CENTER
, 0},
237 {"Line", WDIS_NEW
, 0},
241 static WOptionEnumeration seSpeeds
[] = {
242 {"UltraFast", SPEED_ULTRAFAST
, 0},
243 {"Fast", SPEED_FAST
, 0},
244 {"Medium", SPEED_MEDIUM
, 0},
245 {"Slow", SPEED_SLOW
, 0},
246 {"UltraSlow", SPEED_ULTRASLOW
, 0},
250 static WOptionEnumeration seMouseButtonActions
[] = {
251 {"None", WA_NONE
, 0},
252 {"SelectWindows", WA_SELECT_WINDOWS
, 0},
253 {"OpenApplicationsMenu", WA_OPEN_APPMENU
, 0},
254 {"OpenWindowListMenu", WA_OPEN_WINLISTMENU
, 0},
258 static WOptionEnumeration seMouseWheelActions
[] = {
259 {"None", WA_NONE
, 0},
260 {"SwitchWorkspaces", WA_SWITCH_WORKSPACES
, 0},
264 static WOptionEnumeration seIconificationStyles
[] = {
265 {"Zoom", WIS_ZOOM
, 0},
266 {"Twist", WIS_TWIST
, 0},
267 {"Flip", WIS_FLIP
, 0},
268 {"None", WIS_NONE
, 0},
269 {"random", WIS_RANDOM
, 0},
273 static WOptionEnumeration seJustifications
[] = {
274 {"Left", WTJ_LEFT
, 0},
275 {"Center", WTJ_CENTER
, 0},
276 {"Right", WTJ_RIGHT
, 0},
280 static WOptionEnumeration seIconPositions
[] = {
281 {"blv", IY_BOTTOM
| IY_LEFT
| IY_VERT
, 0},
282 {"blh", IY_BOTTOM
| IY_LEFT
| IY_HORIZ
, 0},
283 {"brv", IY_BOTTOM
| IY_RIGHT
| IY_VERT
, 0},
284 {"brh", IY_BOTTOM
| IY_RIGHT
| IY_HORIZ
, 0},
285 {"tlv", IY_TOP
| IY_LEFT
| IY_VERT
, 0},
286 {"tlh", IY_TOP
| IY_LEFT
| IY_HORIZ
, 0},
287 {"trv", IY_TOP
| IY_RIGHT
| IY_VERT
, 0},
288 {"trh", IY_TOP
| IY_RIGHT
| IY_HORIZ
, 0},
292 static WOptionEnumeration seMenuStyles
[] = {
293 {"normal", MS_NORMAL
, 0},
294 {"singletexture", MS_SINGLE_TEXTURE
, 0},
295 {"flat", MS_FLAT
, 0},
299 static WOptionEnumeration seDisplayPositions
[] = {
300 {"none", WD_NONE
, 0},
301 {"center", WD_CENTER
, 0},
303 {"bottom", WD_BOTTOM
, 0},
304 {"topleft", WD_TOPLEFT
, 0},
305 {"topright", WD_TOPRIGHT
, 0},
306 {"bottomleft", WD_BOTTOMLEFT
, 0},
307 {"bottomright", WD_BOTTOMRIGHT
, 0},
311 static WOptionEnumeration seWorkspaceBorder
[] = {
312 {"None", WB_NONE
, 0},
313 {"LeftRight", WB_LEFTRIGHT
, 0},
314 {"TopBottom", WB_TOPBOTTOM
, 0},
315 {"AllDirections", WB_ALLDIRS
, 0},
320 * ALL entries in the tables bellow, NEED to have a default value
321 * defined, and this value needs to be correct.
324 /* these options will only affect the window manager on startup
326 * static defaults can't access the screen data, because it is
327 * created after these defaults are read
329 WDefaultEntry staticOptionList
[] = {
331 {"ColormapSize", "4", NULL
,
332 &wPreferences
.cmap_size
, getInt
, NULL
},
333 {"DisableDithering", "NO", NULL
,
334 &wPreferences
.no_dithering
, getBool
, NULL
},
335 /* static by laziness */
336 {"IconSize", "64", NULL
,
337 &wPreferences
.icon_size
, getInt
, NULL
},
338 {"ModifierKey", "Mod1", NULL
,
339 &wPreferences
.modifier_mask
, getModMask
, NULL
},
340 {"DisableWSMouseActions", "NO", NULL
,
341 &wPreferences
.disable_root_mouse
, getBool
, NULL
},
342 {"FocusMode", "manual", seFocusModes
,
343 &wPreferences
.focus_mode
, getEnum
, NULL
}, /* have a problem when switching from manual to sloppy without restart */
344 {"NewStyle", "NO", NULL
,
345 &wPreferences
.new_style
, getBool
, NULL
},
346 {"DisableDock", "NO", (void *)WM_DOCK
,
347 NULL
, getBool
, setIfDockPresent
},
348 {"DisableClip", "NO", (void *)WM_CLIP
,
349 NULL
, getBool
, setIfDockPresent
},
350 {"DisableMiniwindows", "NO", NULL
,
351 &wPreferences
.disable_miniwindows
, getBool
, NULL
}
354 WDefaultEntry optionList
[] = {
355 /* dynamic options */
356 {"IconPosition", "blh", seIconPositions
,
357 &wPreferences
.icon_yard
, getEnum
, setIconPosition
},
358 {"IconificationStyle", "Zoom", seIconificationStyles
,
359 &wPreferences
.iconification_style
, getEnum
, NULL
},
360 {"MouseLeftButtonAction", "SelectWindows", seMouseButtonActions
,
361 &wPreferences
.mouse_button1
, getEnum
, NULL
},
362 {"MouseMiddleButtonAction", "OpenWindowListMenu", seMouseButtonActions
,
363 &wPreferences
.mouse_button2
, getEnum
, NULL
},
364 {"MouseRightButtonAction", "OpenApplicationsMenu", seMouseButtonActions
,
365 &wPreferences
.mouse_button3
, getEnum
, NULL
},
366 {"MouseWheelAction", "None", seMouseWheelActions
,
367 &wPreferences
.mouse_wheel
, getEnum
, NULL
},
368 {"PixmapPath", DEF_PIXMAP_PATHS
, NULL
,
369 &wPreferences
.pixmap_path
, getPathList
, NULL
},
370 {"IconPath", DEF_ICON_PATHS
, NULL
,
371 &wPreferences
.icon_path
, getPathList
, NULL
},
372 {"ColormapMode", "auto", seColormapModes
,
373 &wPreferences
.colormap_mode
, getEnum
, NULL
},
374 {"AutoFocus", "NO", NULL
,
375 &wPreferences
.auto_focus
, getBool
, NULL
},
376 {"RaiseDelay", "0", NULL
,
377 &wPreferences
.raise_delay
, getInt
, NULL
},
378 {"CirculateRaise", "NO", NULL
,
379 &wPreferences
.circ_raise
, getBool
, NULL
},
380 {"Superfluous", "NO", NULL
,
381 &wPreferences
.superfluous
, getBool
, NULL
},
382 {"AdvanceToNewWorkspace", "NO", NULL
,
383 &wPreferences
.ws_advance
, getBool
, NULL
},
384 {"CycleWorkspaces", "NO", NULL
,
385 &wPreferences
.ws_cycle
, getBool
, NULL
},
386 {"WorkspaceNameDisplayPosition", "center", seDisplayPositions
,
387 &wPreferences
.workspace_name_display_position
, getEnum
, NULL
},
388 {"WorkspaceBorder", "None", seWorkspaceBorder
,
389 &wPreferences
.workspace_border_position
, getEnum
, updateUsableArea
},
390 {"WorkspaceBorderSize", "0", NULL
,
391 &wPreferences
.workspace_border_size
, getInt
, updateUsableArea
},
392 #ifdef VIRTUAL_DESKTOP
393 {"EnableVirtualDesktop", "NO", NULL
,
394 &wPreferences
.vdesk_enable
, getBool
, setVirtualDeskEnable
},
395 {"VirtualEdgeExtendSpace", "0", NULL
,
396 &wPreferences
.vedge_bordersize
, getInt
, NULL
},
397 {"VirtualEdgeHorizonScrollSpeed", "30", NULL
,
398 &wPreferences
.vedge_hscrollspeed
, getInt
, NULL
},
399 {"VirtualEdgeVerticalScrollSpeed", "30", NULL
,
400 &wPreferences
.vedge_vscrollspeed
, getInt
, NULL
},
401 {"VirtualEdgeResistance", "30", NULL
,
402 &wPreferences
.vedge_resistance
, getInt
, NULL
},
403 {"VirtualEdgeAttraction", "30", NULL
,
404 &wPreferences
.vedge_attraction
, getInt
, NULL
},
405 {"VirtualEdgeLeftKey", "None", (void *)WKBD_VDESK_LEFT
,
406 NULL
, getKeybind
, setKeyGrab
},
407 {"VirtualEdgeRightKey", "None", (void *)WKBD_VDESK_RIGHT
,
408 NULL
, getKeybind
, setKeyGrab
},
409 {"VirtualEdgeUpKey", "None", (void *)WKBD_VDESK_UP
,
410 NULL
, getKeybind
, setKeyGrab
},
411 {"VirtualEdgeDownKey", "None", (void *)WKBD_VDESK_DOWN
,
412 NULL
, getKeybind
, setKeyGrab
},
414 {"StickyIcons", "NO", NULL
,
415 &wPreferences
.sticky_icons
, getBool
, setStickyIcons
},
416 {"SaveSessionOnExit", "NO", NULL
,
417 &wPreferences
.save_session_on_exit
, getBool
, NULL
},
418 {"WrapMenus", "NO", NULL
,
419 &wPreferences
.wrap_menus
, getBool
, NULL
},
420 {"ScrollableMenus", "NO", NULL
,
421 &wPreferences
.scrollable_menus
, getBool
, NULL
},
422 {"MenuScrollSpeed", "medium", seSpeeds
,
423 &wPreferences
.menu_scroll_speed
, getEnum
, NULL
},
424 {"IconSlideSpeed", "medium", seSpeeds
,
425 &wPreferences
.icon_slide_speed
, getEnum
, NULL
},
426 {"ShadeSpeed", "medium", seSpeeds
,
427 &wPreferences
.shade_speed
, getEnum
, NULL
},
428 {"DoubleClickTime", "250", (void *)&wPreferences
.dblclick_time
,
429 &wPreferences
.dblclick_time
, getInt
, setDoubleClick
,
431 {"AlignSubmenus", "NO", NULL
,
432 &wPreferences
.align_menus
, getBool
, NULL
},
433 {"OpenTransientOnOwnerWorkspace", "NO", NULL
,
434 &wPreferences
.open_transients_with_parent
, getBool
, NULL
},
435 {"WindowPlacement", "auto", sePlacements
,
436 &wPreferences
.window_placement
, getEnum
, NULL
},
437 {"IgnoreFocusClick", "NO", NULL
,
438 &wPreferences
.ignore_focus_click
, getBool
, NULL
},
439 {"UseSaveUnders", "NO", NULL
,
440 &wPreferences
.use_saveunders
, getBool
, NULL
},
441 {"OpaqueMove", "NO", NULL
,
442 &wPreferences
.opaque_move
, getBool
, NULL
},
443 {"DisableAnimations", "NO", NULL
,
444 &wPreferences
.no_animations
, getBool
, NULL
},
445 {"DontLinkWorkspaces", "NO", NULL
,
446 &wPreferences
.no_autowrap
, getBool
, NULL
},
447 {"AutoArrangeIcons", "NO", NULL
,
448 &wPreferences
.auto_arrange_icons
, getBool
, NULL
},
449 {"NoWindowOverDock", "NO", NULL
,
450 &wPreferences
.no_window_over_dock
, getBool
, updateUsableArea
},
451 {"NoWindowOverIcons", "NO", NULL
,
452 &wPreferences
.no_window_over_icons
, getBool
, updateUsableArea
},
453 {"WindowPlaceOrigin", "(0, 0)", NULL
,
454 &wPreferences
.window_place_origin
, getCoord
, NULL
},
455 {"ResizeDisplay", "corner", seGeomDisplays
,
456 &wPreferences
.size_display
, getEnum
, NULL
},
457 {"MoveDisplay", "corner", seGeomDisplays
,
458 &wPreferences
.move_display
, getEnum
, NULL
},
459 {"DontConfirmKill", "NO", NULL
,
460 &wPreferences
.dont_confirm_kill
, getBool
, NULL
},
461 {"WindowTitleBalloons", "NO", NULL
,
462 &wPreferences
.window_balloon
, getBool
, NULL
},
463 {"MiniwindowTitleBalloons", "NO", NULL
,
464 &wPreferences
.miniwin_balloon
, getBool
, NULL
},
465 {"AppIconBalloons", "NO", NULL
,
466 &wPreferences
.appicon_balloon
, getBool
, NULL
},
467 {"HelpBalloons", "NO", NULL
,
468 &wPreferences
.help_balloon
, getBool
, NULL
},
469 {"EdgeResistance", "30", NULL
,
470 &wPreferences
.edge_resistance
, getInt
, NULL
},
471 {"ResizeIncrement", "32", NULL
,
472 &wPreferences
.resize_increment
, getInt
, NULL
},
473 {"Attraction", "NO", NULL
,
474 &wPreferences
.attract
, getBool
, NULL
},
475 {"DisableBlinking", "NO", NULL
,
476 &wPreferences
.dont_blink
, getBool
, NULL
},
477 {"SingleClickLaunch", "NO", NULL
,
478 &wPreferences
.single_click
, getBool
, NULL
},
480 {"MenuStyle", "normal", seMenuStyles
,
481 &wPreferences
.menu_style
, getEnum
, setMenuStyle
},
482 {"WidgetColor", "(solid, gray)", NULL
,
483 NULL
, getTexture
, setWidgetColor
,
485 {"WorkspaceSpecificBack", "()", NULL
,
486 NULL
, getWSSpecificBackground
, setWorkspaceSpecificBack
},
487 /* WorkspaceBack must come after WorkspaceSpecificBack or
488 * WorkspaceBack wont know WorkspaceSpecificBack was also
489 * specified and 2 copies of wmsetbg will be launched */
490 {"WorkspaceBack", "(solid, black)", NULL
,
491 NULL
, getWSBackground
, setWorkspaceBack
},
492 {"SmoothWorkspaceBack", "NO", NULL
,
493 NULL
, getBool
, NULL
},
494 {"IconBack", "(solid, gray)", NULL
,
495 NULL
, getTexture
, setIconTile
},
496 {"TitleJustify", "center", seJustifications
,
497 &wPreferences
.title_justification
, getEnum
, setJustify
},
498 {"WindowTitleFont", DEF_TITLE_FONT
, NULL
,
499 NULL
, getFont
, setWinTitleFont
,
501 {"WindowTitleExtendSpace", DEF_WINDOW_TITLE_EXTEND_SPACE
, NULL
,
502 &wPreferences
.window_title_clearance
, getInt
, setClearance
},
503 {"MenuTitleExtendSpace", DEF_MENU_TITLE_EXTEND_SPACE
, NULL
,
504 &wPreferences
.menu_title_clearance
, getInt
, setClearance
},
505 {"MenuTextExtendSpace", DEF_MENU_TEXT_EXTEND_SPACE
, NULL
,
506 &wPreferences
.menu_text_clearance
, getInt
, setClearance
},
507 {"MenuTitleFont", DEF_MENU_TITLE_FONT
, NULL
,
508 NULL
, getFont
, setMenuTitleFont
},
509 {"MenuTextFont", DEF_MENU_ENTRY_FONT
, NULL
,
510 NULL
, getFont
, setMenuTextFont
},
511 {"IconTitleFont", DEF_ICON_TITLE_FONT
, NULL
,
512 NULL
, getFont
, setIconTitleFont
},
513 {"ClipTitleFont", DEF_CLIP_TITLE_FONT
, NULL
,
514 NULL
, getFont
, setClipTitleFont
},
515 {"LargeDisplayFont", DEF_WORKSPACE_NAME_FONT
, NULL
,
516 NULL
, getFont
, setLargeDisplayFont
},
517 {"HighlightColor", "white", NULL
,
518 NULL
, getColor
, setHightlight
},
519 {"HighlightTextColor", "black", NULL
,
520 NULL
, getColor
, setHightlightText
},
521 {"ClipTitleColor", "black", (void *)CLIP_NORMAL
,
522 NULL
, getColor
, setClipTitleColor
},
523 {"CClipTitleColor", "\"#454045\"", (void *)CLIP_COLLAPSED
,
524 NULL
, getColor
, setClipTitleColor
},
525 {"FTitleColor", "white", (void *)WS_FOCUSED
,
526 NULL
, getColor
, setWTitleColor
},
527 {"PTitleColor", "white", (void *)WS_PFOCUSED
,
528 NULL
, getColor
, setWTitleColor
},
529 {"UTitleColor", "black", (void *)WS_UNFOCUSED
,
530 NULL
, getColor
, setWTitleColor
},
531 {"FTitleBack", "(solid, black)", NULL
,
532 NULL
, getTexture
, setFTitleBack
},
533 {"PTitleBack", "(solid, \"#616161\")", NULL
,
534 NULL
, getTexture
, setPTitleBack
},
535 {"UTitleBack", "(solid, gray)", NULL
,
536 NULL
, getTexture
, setUTitleBack
},
537 {"ResizebarBack", "(solid, gray)", NULL
,
538 NULL
, getTexture
, setResizebarBack
},
539 {"MenuTitleColor", "white", NULL
,
540 NULL
, getColor
, setMenuTitleColor
},
541 {"MenuTextColor", "black", NULL
,
542 NULL
, getColor
, setMenuTextColor
},
543 {"MenuDisabledColor", "\"#616161\"", NULL
,
544 NULL
, getColor
, setMenuDisabledColor
},
545 {"MenuTitleBack", "(solid, black)", NULL
,
546 NULL
, getTexture
, setMenuTitleBack
},
547 {"MenuTextBack", "(solid, gray)", NULL
,
548 NULL
, getTexture
, setMenuTextBack
},
549 {"IconTitleColor", "white", NULL
,
550 NULL
, getColor
, setIconTitleColor
},
551 {"IconTitleBack", "black", NULL
,
552 NULL
, getColor
, setIconTitleBack
},
553 {"SwitchPanelImages", "(swtile.png, swback.png, 30, 40)", &wPreferences
,
554 NULL
, getPropList
, setSwPOptions
},
556 {"RootMenuKey", "None", (void *)WKBD_ROOTMENU
,
557 NULL
, getKeybind
, setKeyGrab
},
558 {"WindowListKey", "None", (void *)WKBD_WINDOWLIST
,
559 NULL
, getKeybind
, setKeyGrab
},
560 {"WindowMenuKey", "None", (void *)WKBD_WINDOWMENU
,
561 NULL
, getKeybind
, setKeyGrab
},
562 {"ClipLowerKey", "None", (void *)WKBD_CLIPLOWER
,
563 NULL
, getKeybind
, setKeyGrab
},
564 {"ClipRaiseKey", "None", (void *)WKBD_CLIPRAISE
,
565 NULL
, getKeybind
, setKeyGrab
},
566 {"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER
,
567 NULL
, getKeybind
, setKeyGrab
},
568 {"MiniaturizeKey", "None", (void *)WKBD_MINIATURIZE
,
569 NULL
, getKeybind
, setKeyGrab
},
570 {"HideKey", "None", (void *)WKBD_HIDE
,
571 NULL
, getKeybind
, setKeyGrab
},
572 {"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS
,
573 NULL
, getKeybind
, setKeyGrab
},
574 {"MoveResizeKey", "None", (void *)WKBD_MOVERESIZE
,
575 NULL
, getKeybind
, setKeyGrab
},
576 {"CloseKey", "None", (void *)WKBD_CLOSE
,
577 NULL
, getKeybind
, setKeyGrab
},
578 {"MaximizeKey", "None", (void *)WKBD_MAXIMIZE
,
579 NULL
, getKeybind
, setKeyGrab
},
580 {"VMaximizeKey", "None", (void *)WKBD_VMAXIMIZE
,
581 NULL
, getKeybind
, setKeyGrab
},
582 {"HMaximizeKey", "None", (void *)WKBD_HMAXIMIZE
,
583 NULL
, getKeybind
, setKeyGrab
},
584 {"LHMaximizeKey", "None", (void*)WKBD_LHMAXIMIZE
,
585 NULL
, getKeybind
, setKeyGrab
},
586 {"RHMaximizeKey", "None", (void*)WKBD_RHMAXIMIZE
,
587 NULL
, getKeybind
, setKeyGrab
},
588 {"MaximusKey", "None", (void*)WKBD_MAXIMUS
,
589 NULL
, getKeybind
, setKeyGrab
},
590 {"RaiseKey", "\"Meta+Up\"", (void *)WKBD_RAISE
,
591 NULL
, getKeybind
, setKeyGrab
},
592 {"LowerKey", "\"Meta+Down\"", (void *)WKBD_LOWER
,
593 NULL
, getKeybind
, setKeyGrab
},
594 {"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER
,
595 NULL
, getKeybind
, setKeyGrab
},
596 {"ShadeKey", "None", (void *)WKBD_SHADE
,
597 NULL
, getKeybind
, setKeyGrab
},
598 {"SelectKey", "None", (void *)WKBD_SELECT
,
599 NULL
, getKeybind
, setKeyGrab
},
600 {"FocusNextKey", "None", (void *)WKBD_FOCUSNEXT
,
601 NULL
, getKeybind
, setKeyGrab
},
602 {"FocusPrevKey", "None", (void *)WKBD_FOCUSPREV
,
603 NULL
, getKeybind
, setKeyGrab
},
604 {"GroupNextKey", "None", (void *)WKBD_GROUPNEXT
,
605 NULL
, getKeybind
, setKeyGrab
},
606 {"GroupPrevKey", "None", (void *)WKBD_GROUPPREV
,
607 NULL
, getKeybind
, setKeyGrab
},
608 {"NextWorkspaceKey", "None", (void *)WKBD_NEXTWORKSPACE
,
609 NULL
, getKeybind
, setKeyGrab
},
610 {"PrevWorkspaceKey", "None", (void *)WKBD_PREVWORKSPACE
,
611 NULL
, getKeybind
, setKeyGrab
},
612 {"NextWorkspaceLayerKey", "None", (void *)WKBD_NEXTWSLAYER
,
613 NULL
, getKeybind
, setKeyGrab
},
614 {"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER
,
615 NULL
, getKeybind
, setKeyGrab
},
616 {"Workspace1Key", "None", (void *)WKBD_WORKSPACE1
,
617 NULL
, getKeybind
, setKeyGrab
},
618 {"Workspace2Key", "None", (void *)WKBD_WORKSPACE2
,
619 NULL
, getKeybind
, setKeyGrab
},
620 {"Workspace3Key", "None", (void *)WKBD_WORKSPACE3
,
621 NULL
, getKeybind
, setKeyGrab
},
622 {"Workspace4Key", "None", (void *)WKBD_WORKSPACE4
,
623 NULL
, getKeybind
, setKeyGrab
},
624 {"Workspace5Key", "None", (void *)WKBD_WORKSPACE5
,
625 NULL
, getKeybind
, setKeyGrab
},
626 {"Workspace6Key", "None", (void *)WKBD_WORKSPACE6
,
627 NULL
, getKeybind
, setKeyGrab
},
628 {"Workspace7Key", "None", (void *)WKBD_WORKSPACE7
,
629 NULL
, getKeybind
, setKeyGrab
},
630 {"Workspace8Key", "None", (void *)WKBD_WORKSPACE8
,
631 NULL
, getKeybind
, setKeyGrab
},
632 {"Workspace9Key", "None", (void *)WKBD_WORKSPACE9
,
633 NULL
, getKeybind
, setKeyGrab
},
634 {"Workspace10Key", "None", (void *)WKBD_WORKSPACE10
,
635 NULL
, getKeybind
, setKeyGrab
},
636 {"WindowShortcut1Key", "None", (void *)WKBD_WINDOW1
,
637 NULL
, getKeybind
, setKeyGrab
},
638 {"WindowShortcut2Key", "None", (void *)WKBD_WINDOW2
,
639 NULL
, getKeybind
, setKeyGrab
},
640 {"WindowShortcut3Key", "None", (void *)WKBD_WINDOW3
,
641 NULL
, getKeybind
, setKeyGrab
},
642 {"WindowShortcut4Key", "None", (void *)WKBD_WINDOW4
,
643 NULL
, getKeybind
, setKeyGrab
}
644 , {"WindowShortcut5Key", "None", (void *)WKBD_WINDOW5
,
645 NULL
, getKeybind
, setKeyGrab
},
646 {"WindowShortcut6Key", "None", (void *)WKBD_WINDOW6
,
647 NULL
, getKeybind
, setKeyGrab
},
648 {"WindowShortcut7Key", "None", (void *)WKBD_WINDOW7
,
649 NULL
, getKeybind
, setKeyGrab
},
650 {"WindowShortcut8Key", "None", (void *)WKBD_WINDOW8
,
651 NULL
, getKeybind
, setKeyGrab
},
652 {"WindowShortcut9Key", "None", (void *)WKBD_WINDOW9
,
653 NULL
, getKeybind
, setKeyGrab
},
654 {"WindowShortcut10Key", "None", (void *)WKBD_WINDOW10
,
655 NULL
, getKeybind
, setKeyGrab
},
656 {"ScreenSwitchKey", "None", (void *)WKBD_SWITCH_SCREEN
,
657 NULL
, getKeybind
, setKeyGrab
},
659 #ifdef KEEP_XKB_LOCK_STATUS
660 {"ToggleKbdModeKey", "None", (void *)WKBD_TOGGLE
,
661 NULL
, getKeybind
, setKeyGrab
},
662 {"KbdModeLock", "NO", NULL
,
663 &wPreferences
.modelock
, getBool
, NULL
},
664 #endif /* KEEP_XKB_LOCK_STATUS */
666 {"NormalCursor", "(builtin, left_ptr)", (void *)WCUR_ROOT
,
667 NULL
, getCursor
, setCursor
},
668 {"ArrowCursor", "(builtin, top_left_arrow)", (void *)WCUR_ARROW
,
669 NULL
, getCursor
, setCursor
},
670 {"MoveCursor", "(builtin, fleur)", (void *)WCUR_MOVE
,
671 NULL
, getCursor
, setCursor
},
672 {"ResizeCursor", "(builtin, sizing)", (void *)WCUR_RESIZE
,
673 NULL
, getCursor
, setCursor
},
674 {"TopLeftResizeCursor", "(builtin, top_left_corner)",
675 (void *)WCUR_TOPLEFTRESIZE
,
676 NULL
, getCursor
, setCursor
},
677 {"TopRightResizeCursor", "(builtin, top_right_corner)",
678 (void *)WCUR_TOPRIGHTRESIZE
,
679 NULL
, getCursor
, setCursor
},
680 {"BottomLeftResizeCursor", "(builtin, bottom_left_corner)",
681 (void *)WCUR_BOTTOMLEFTRESIZE
,
682 NULL
, getCursor
, setCursor
},
683 {"BottomRightResizeCursor", "(builtin, bottom_right_corner)",
684 (void *)WCUR_BOTTOMRIGHTRESIZE
,
685 NULL
, getCursor
, setCursor
},
686 {"VerticalResizeCursor", "(builtin, sb_v_double_arrow)",
687 (void *)WCUR_VERTICALRESIZE
,
688 NULL
, getCursor
, setCursor
},
689 {"HorizontalResizeCursor", "(builtin, sb_h_double_arrow)",
690 (void *)WCUR_HORIZONRESIZE
,
691 NULL
, getCursor
, setCursor
},
692 {"WaitCursor", "(builtin, watch)", (void *)WCUR_WAIT
,
693 NULL
, getCursor
, setCursor
},
694 {"QuestionCursor", "(builtin, question_arrow)", (void *)WCUR_QUESTION
,
695 NULL
, getCursor
, setCursor
},
696 {"TextCursor", "(builtin, xterm)", (void *)WCUR_TEXT
,
697 NULL
, getCursor
, setCursor
},
698 {"SelectCursor", "(builtin, cross)", (void *)WCUR_SELECT
,
699 NULL
, getCursor
, setCursor
},
700 {"DialogHistoryLines", "500", NULL
,
701 &wPreferences
.history_lines
, getInt
, NULL
}
705 static void rereadDefaults(void);
709 static void rereadDefaults(void)
711 /* must defer the update because accessing X data from a
712 * signal handler can mess up Xlib */
717 static void initDefaults()
720 WDefaultEntry
*entry
;
722 WMPLSetCaseSensitive(False
);
724 for (i
= 0; i
< sizeof(optionList
) / sizeof(WDefaultEntry
); i
++) {
725 entry
= &optionList
[i
];
727 entry
->plkey
= WMCreatePLString(entry
->key
);
728 if (entry
->default_value
)
729 entry
->plvalue
= WMCreatePropListFromDescription(entry
->default_value
);
731 entry
->plvalue
= NULL
;
734 for (i
= 0; i
< sizeof(staticOptionList
) / sizeof(WDefaultEntry
); i
++) {
735 entry
= &staticOptionList
[i
];
737 entry
->plkey
= WMCreatePLString(entry
->key
);
738 if (entry
->default_value
)
739 entry
->plvalue
= WMCreatePropListFromDescription(entry
->default_value
);
741 entry
->plvalue
= NULL
;
745 wDomainName = WMCreatePLString(WMDOMAIN_NAME);
746 wAttributeDomainName = WMCreatePLString(WMATTRIBUTE_DOMAIN_NAME);
748 PLRegister(wDomainName, rereadDefaults);
749 PLRegister(wAttributeDomainName, rereadDefaults);
753 static WMPropList
*readGlobalDomain(char *domainName
, Bool requireDictionary
)
755 WMPropList
*globalDict
= NULL
;
759 snprintf(path
, sizeof(path
), "%s/%s/%s", SYSCONFDIR
, GLOBAL_DEFAULTS_SUBDIR
, domainName
);
760 if (stat(path
, &stbuf
) >= 0) {
761 globalDict
= WMReadPropListFromFile(path
);
762 if (globalDict
&& requireDictionary
&& !WMIsPLDictionary(globalDict
)) {
763 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"), domainName
, path
);
764 WMReleasePropList(globalDict
);
766 } else if (!globalDict
) {
767 wwarning(_("could not load domain %s from global defaults database"), domainName
);
774 #if defined(GLOBAL_PREAMBLE_MENU_FILE) || defined(GLOBAL_EPILOGUE_MENU_FILE)
775 static void prependMenu(WMPropList
* destarr
, WMPropList
* array
)
780 for (i
= 0; i
< WMGetPropListItemCount(array
); i
++) {
781 item
= WMGetFromPLArray(array
, i
);
783 WMInsertInPLArray(destarr
, i
+ 1, item
);
787 static void appendMenu(WMPropList
* destarr
, WMPropList
* array
)
792 for (i
= 0; i
< WMGetPropListItemCount(array
); i
++) {
793 item
= WMGetFromPLArray(array
, i
);
795 WMAddToPLArray(destarr
, item
);
800 /* Fixup paths for cached pixmaps from .AppInfo to Library/WindowMaker/... */
801 static Bool
fixupCachedPixmapsPaths(WMPropList
* dict
)
803 WMPropList
*allApps
, *app
, *props
, *iconkey
, *icon
, *newicon
;
804 char *path
, *fixedpath
, *ptr
, *search
;
806 Bool changed
= False
;
808 search
= "/.AppInfo/WindowMaker/";
809 slen
= strlen(search
);
811 iconkey
= WMCreatePLString("Icon");
812 allApps
= WMGetPLDictionaryKeys(dict
);
814 for (i
= 0; i
< WMGetPropListItemCount(allApps
); i
++) {
815 app
= WMGetFromPLArray(allApps
, i
);
816 props
= WMGetFromPLDictionary(dict
, app
);
819 icon
= WMGetFromPLDictionary(props
, iconkey
);
820 if (icon
&& WMIsPLString(icon
)) {
821 path
= WMGetFromPLString(icon
);
822 ptr
= strstr(path
, search
);
826 fixedpath
= wmalloc(strlen(path
) + 32);
827 strncpy(fixedpath
, path
, len
);
829 strcat(fixedpath
, "/Library/WindowMaker/CachedPixmaps/");
830 strcat(fixedpath
, ptr
+ slen
);
831 newicon
= WMCreatePLString(fixedpath
);
832 WMPutInPLDictionary(props
, iconkey
, newicon
);
833 WMReleasePropList(newicon
);
839 WMReleasePropList(allApps
);
840 WMReleasePropList(iconkey
);
845 void wDefaultsMergeGlobalMenus(WDDomain
* menuDomain
)
847 WMPropList
*menu
= menuDomain
->dictionary
;
850 if (!menu
|| !WMIsPLArray(menu
))
853 #ifdef GLOBAL_PREAMBLE_MENU_FILE
854 submenu
= WMReadPropListFromFile(SYSCONFDIR
"/" GLOBAL_DEFAULTS_SUBDIR
"/" GLOBAL_PREAMBLE_MENU_FILE
);
856 if (submenu
&& !WMIsPLArray(submenu
)) {
857 wwarning(_("invalid global menu file %s"), GLOBAL_PREAMBLE_MENU_FILE
);
858 WMReleasePropList(submenu
);
862 prependMenu(menu
, submenu
);
863 WMReleasePropList(submenu
);
867 #ifdef GLOBAL_EPILOGUE_MENU_FILE
868 submenu
= WMReadPropListFromFile(SYSCONFDIR
"/" GLOBAL_DEFAULTS_SUBDIR
"/" GLOBAL_EPILOGUE_MENU_FILE
);
870 if (submenu
&& !WMIsPLArray(submenu
)) {
871 wwarning(_("invalid global menu file %s"), GLOBAL_EPILOGUE_MENU_FILE
);
872 WMReleasePropList(submenu
);
876 appendMenu(menu
, submenu
);
877 WMReleasePropList(submenu
);
881 menuDomain
->dictionary
= menu
;
885 WMPropList
*wDefaultsInit(int screen_number
)
887 static int defaults_inited
= 0;
890 if (!defaults_inited
) {
894 dict
= PLGetDomain(wDomainName
);
896 wwarning(_("could not read domain \"%s\" from defaults database"), WMGetFromPLString(wDomainName
));
903 void wDefaultsDestroyDomain(WDDomain
* domain
)
905 if (domain
->dictionary
)
906 WMReleasePropList(domain
->dictionary
);
911 WDDomain
*wDefaultsInitDomain(char *domain
, Bool requireDictionary
)
915 static int inited
= 0;
918 WMPropList
*shared_dict
= NULL
;
925 db
= wmalloc(sizeof(WDDomain
));
926 memset(db
, 0, sizeof(WDDomain
));
927 db
->domain_name
= domain
;
928 db
->path
= wdefaultspathfordomain(domain
);
931 if (the_path
&& stat(the_path
, &stbuf
) >= 0) {
932 db
->dictionary
= WMReadPropListFromFile(the_path
);
933 if (db
->dictionary
) {
934 if (requireDictionary
&& !WMIsPLDictionary(db
->dictionary
)) {
935 WMReleasePropList(db
->dictionary
);
936 db
->dictionary
= NULL
;
937 wwarning(_("Domain %s (%s) of defaults database is corrupted!"), domain
, the_path
);
939 if (strcmp(domain
, "WMWindowAttributes") == 0 && db
->dictionary
) {
940 if (fixupCachedPixmapsPaths(db
->dictionary
)) {
941 WMWritePropListToFile(db
->dictionary
, db
->path
, True
);
942 /* re-read the timestamp. if this fails take current time */
943 if (stat(db
->path
, &stbuf
) < 0) {
944 stbuf
.st_mtime
= time(NULL
);
948 db
->timestamp
= stbuf
.st_mtime
;
950 wwarning(_("could not load domain %s from user defaults database"), domain
);
954 /* global system dictionary */
955 snprintf(path
, sizeof(path
), "%s/%s/%s", SYSCONFDIR
, GLOBAL_DEFAULTS_SUBDIR
, domain
);
956 if (stat(path
, &stbuf
) >= 0) {
957 shared_dict
= WMReadPropListFromFile(path
);
959 if (requireDictionary
&& !WMIsPLDictionary(shared_dict
)) {
960 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
962 WMReleasePropList(shared_dict
);
965 if (db
->dictionary
&& WMIsPLDictionary(shared_dict
) &&
966 WMIsPLDictionary(db
->dictionary
)) {
967 WMMergePLDictionaries(shared_dict
, db
->dictionary
, True
);
968 WMReleasePropList(db
->dictionary
);
969 db
->dictionary
= shared_dict
;
970 if (stbuf
.st_mtime
> db
->timestamp
)
971 db
->timestamp
= stbuf
.st_mtime
;
972 } else if (!db
->dictionary
) {
973 db
->dictionary
= shared_dict
;
974 if (stbuf
.st_mtime
> db
->timestamp
)
975 db
->timestamp
= stbuf
.st_mtime
;
979 wwarning(_("could not load domain %s from global defaults database (%s)"), domain
, path
);
986 void wReadStaticDefaults(WMPropList
* dict
)
989 WDefaultEntry
*entry
;
993 for (i
= 0; i
< sizeof(staticOptionList
) / sizeof(WDefaultEntry
); i
++) {
994 entry
= &staticOptionList
[i
];
997 plvalue
= WMGetFromPLDictionary(dict
, entry
->plkey
);
1002 /* no default in the DB. Use builtin default */
1003 plvalue
= entry
->plvalue
;
1008 (*entry
->convert
) (NULL
, entry
, plvalue
, entry
->addr
, &tdata
);
1009 if (entry
->update
) {
1010 (*entry
->update
) (NULL
, entry
, tdata
, entry
->extra_data
);
1016 void wDefaultsCheckDomains(void)
1020 WMPropList
*shared_dict
= NULL
;
1025 puts("Checking domains...");
1027 if (stat(WDWindowMaker
->path
, &stbuf
) >= 0 && WDWindowMaker
->timestamp
< stbuf
.st_mtime
) {
1029 puts("Checking WindowMaker domain");
1031 WDWindowMaker
->timestamp
= stbuf
.st_mtime
;
1033 /* global dictionary */
1034 shared_dict
= readGlobalDomain("WindowMaker", True
);
1035 /* user dictionary */
1036 dict
= WMReadPropListFromFile(WDWindowMaker
->path
);
1038 if (!WMIsPLDictionary(dict
)) {
1039 WMReleasePropList(dict
);
1041 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1042 "WindowMaker", WDWindowMaker
->path
);
1045 WMMergePLDictionaries(shared_dict
, dict
, True
);
1046 WMReleasePropList(dict
);
1050 for (i
= 0; i
< wScreenCount
; i
++) {
1051 scr
= wScreenWithNumber(i
);
1053 wReadDefaults(scr
, dict
);
1055 if (WDWindowMaker
->dictionary
) {
1056 WMReleasePropList(WDWindowMaker
->dictionary
);
1058 WDWindowMaker
->dictionary
= dict
;
1061 wwarning(_("could not load domain %s from user defaults database"), "WindowMaker");
1064 WMReleasePropList(shared_dict
);
1068 if (stat(WDWindowAttributes
->path
, &stbuf
) >= 0 && WDWindowAttributes
->timestamp
< stbuf
.st_mtime
) {
1070 puts("Checking WMWindowAttributes domain");
1072 /* global dictionary */
1073 shared_dict
= readGlobalDomain("WMWindowAttributes", True
);
1074 /* user dictionary */
1075 dict
= WMReadPropListFromFile(WDWindowAttributes
->path
);
1077 if (!WMIsPLDictionary(dict
)) {
1078 WMReleasePropList(dict
);
1080 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1081 "WMWindowAttributes", WDWindowAttributes
->path
);
1084 WMMergePLDictionaries(shared_dict
, dict
, True
);
1085 WMReleasePropList(dict
);
1089 if (WDWindowAttributes
->dictionary
) {
1090 WMReleasePropList(WDWindowAttributes
->dictionary
);
1092 WDWindowAttributes
->dictionary
= dict
;
1093 for (i
= 0; i
< wScreenCount
; i
++) {
1094 scr
= wScreenWithNumber(i
);
1098 wDefaultUpdateIcons(scr
);
1100 /* Update the panel image if changed */
1101 /* Don't worry. If the image is the same these
1102 * functions will have no performance impact. */
1103 image
= wDefaultGetImage(scr
, "Logo", "WMPanel");
1106 wwarning(_("could not load logo image for panels: %s"),
1107 RMessageForError(RErrorCode
));
1109 WMSetApplicationIconImage(scr
->wmscreen
, image
);
1110 RReleaseImage(image
);
1116 wwarning(_("could not load domain %s from user defaults database"), "WMWindowAttributes");
1118 WDWindowAttributes
->timestamp
= stbuf
.st_mtime
;
1120 WMReleasePropList(shared_dict
);
1124 if (stat(WDRootMenu
->path
, &stbuf
) >= 0 && WDRootMenu
->timestamp
< stbuf
.st_mtime
) {
1125 dict
= WMReadPropListFromFile(WDRootMenu
->path
);
1127 puts("Checking WMRootMenu domain");
1130 if (!WMIsPLArray(dict
) && !WMIsPLString(dict
)) {
1131 WMReleasePropList(dict
);
1133 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1134 "WMRootMenu", WDRootMenu
->path
);
1136 if (WDRootMenu
->dictionary
) {
1137 WMReleasePropList(WDRootMenu
->dictionary
);
1139 WDRootMenu
->dictionary
= dict
;
1140 wDefaultsMergeGlobalMenus(WDRootMenu
);
1143 wwarning(_("could not load domain %s from user defaults database"), "WMRootMenu");
1145 WDRootMenu
->timestamp
= stbuf
.st_mtime
;
1149 void wReadDefaults(WScreen
* scr
, WMPropList
* new_dict
)
1151 WMPropList
*plvalue
, *old_value
;
1152 WDefaultEntry
*entry
;
1153 unsigned int i
, must_update
;
1154 int update_workspace_back
= 0; /* kluge :/ */
1155 unsigned int needs_refresh
;
1157 WMPropList
*old_dict
= (WDWindowMaker
->dictionary
!= new_dict
? WDWindowMaker
->dictionary
: NULL
);
1163 for (i
= 0; i
< sizeof(optionList
) / sizeof(WDefaultEntry
); i
++) {
1164 entry
= &optionList
[i
];
1167 plvalue
= WMGetFromPLDictionary(new_dict
, entry
->plkey
);
1174 old_value
= WMGetFromPLDictionary(old_dict
, entry
->plkey
);
1176 if (!plvalue
&& !old_value
) {
1177 /* no default in the DB. Use builtin default */
1178 plvalue
= entry
->plvalue
;
1179 if (plvalue
&& new_dict
) {
1180 WMPutInPLDictionary(new_dict
, entry
->plkey
, plvalue
);
1183 } else if (!plvalue
) {
1184 /* value was deleted from DB. Keep current value */
1186 } else if (!old_value
) {
1187 /* set value for the 1st time */
1188 } else if (!WMIsPropListEqualTo(plvalue
, old_value
)) {
1189 /* value has changed */
1192 if (strcmp(entry
->key
, "WorkspaceBack") == 0
1193 && update_workspace_back
&& scr
->flags
.backimage_helper_launched
) {
1195 /* value was not changed since last time */
1202 printf("Updating %s to %s\n", entry
->key
, WMGetPropListDescription(plvalue
, False
));
1205 if ((*entry
->convert
) (scr
, entry
, plvalue
, entry
->addr
, &tdata
)) {
1207 * If the WorkspaceSpecificBack data has been changed
1208 * so that the helper will be launched now, we must be
1209 * sure to send the default background texture config
1212 if (strcmp(entry
->key
, "WorkspaceSpecificBack") == 0
1213 && !scr
->flags
.backimage_helper_launched
) {
1214 update_workspace_back
= 1;
1216 if (entry
->update
) {
1217 needs_refresh
|= (*entry
->update
) (scr
, entry
, tdata
, entry
->extra_data
);
1223 if (needs_refresh
!= 0 && !scr
->flags
.startup
) {
1227 if (needs_refresh
& REFRESH_MENU_TITLE_TEXTURE
)
1228 foo
|= WTextureSettings
;
1229 if (needs_refresh
& REFRESH_MENU_TITLE_FONT
)
1230 foo
|= WFontSettings
;
1231 if (needs_refresh
& REFRESH_MENU_TITLE_COLOR
)
1232 foo
|= WColorSettings
;
1234 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged
, NULL
,
1235 (void *)(uintptr_t) foo
);
1238 if (needs_refresh
& REFRESH_MENU_TEXTURE
)
1239 foo
|= WTextureSettings
;
1240 if (needs_refresh
& REFRESH_MENU_FONT
)
1241 foo
|= WFontSettings
;
1242 if (needs_refresh
& REFRESH_MENU_COLOR
)
1243 foo
|= WColorSettings
;
1245 WMPostNotificationName(WNMenuAppearanceSettingsChanged
, NULL
, (void *)(uintptr_t) foo
);
1248 if (needs_refresh
& REFRESH_WINDOW_FONT
) {
1249 foo
|= WFontSettings
;
1251 if (needs_refresh
& REFRESH_WINDOW_TEXTURES
) {
1252 foo
|= WTextureSettings
;
1254 if (needs_refresh
& REFRESH_WINDOW_TITLE_COLOR
) {
1255 foo
|= WColorSettings
;
1258 WMPostNotificationName(WNWindowAppearanceSettingsChanged
, NULL
, (void *)(uintptr_t) foo
);
1260 if (!(needs_refresh
& REFRESH_ICON_TILE
)) {
1262 if (needs_refresh
& REFRESH_ICON_FONT
) {
1263 foo
|= WFontSettings
;
1265 if (needs_refresh
& REFRESH_ICON_TITLE_COLOR
) {
1266 foo
|= WTextureSettings
;
1268 if (needs_refresh
& REFRESH_ICON_TITLE_BACK
) {
1269 foo
|= WTextureSettings
;
1272 WMPostNotificationName(WNIconAppearanceSettingsChanged
, NULL
,
1273 (void *)(uintptr_t) foo
);
1275 if (needs_refresh
& REFRESH_ICON_TILE
)
1276 WMPostNotificationName(WNIconTileSettingsChanged
, NULL
, NULL
);
1280 void wDefaultUpdateIcons(WScreen
* scr
)
1282 WAppIcon
*aicon
= scr
->app_icon_list
;
1283 WWindow
*wwin
= scr
->focused_window
;
1287 file
= wDefaultGetIconFile(scr
, aicon
->wm_instance
, aicon
->wm_class
, False
);
1288 if ((file
&& aicon
->icon
->file
&& strcmp(file
, aicon
->icon
->file
) != 0)
1289 || (file
&& !aicon
->icon
->file
)) {
1292 if (aicon
->icon
->file
)
1293 wfree(aicon
->icon
->file
);
1294 aicon
->icon
->file
= wstrdup(file
);
1296 new_image
= wDefaultGetImage(scr
, aicon
->wm_instance
, aicon
->wm_class
);
1298 wIconChangeImage(aicon
->icon
, new_image
);
1299 wAppIconPaint(aicon
);
1302 aicon
= aicon
->next
;
1305 if (!wPreferences
.flags
.noclip
)
1306 wClipIconPaint(scr
->clip_icon
);
1309 if (wwin
->icon
&& wwin
->flags
.miniaturized
) {
1310 file
= wDefaultGetIconFile(scr
, wwin
->wm_instance
, wwin
->wm_class
, False
);
1311 if ((file
&& wwin
->icon
->file
&& strcmp(file
, wwin
->icon
->file
) != 0)
1312 || (file
&& !wwin
->icon
->file
)) {
1315 if (wwin
->icon
->file
)
1316 wfree(wwin
->icon
->file
);
1317 wwin
->icon
->file
= wstrdup(file
);
1319 new_image
= wDefaultGetImage(scr
, wwin
->wm_instance
, wwin
->wm_class
);
1321 wIconChangeImage(wwin
->icon
, new_image
);
1328 /* --------------------------- Local ----------------------- */
1330 #define GET_STRING_OR_DEFAULT(x, var) if (!WMIsPLString(value)) { \
1331 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1333 wwarning(_("using default \"%s\" instead"), entry->default_value); \
1334 var = entry->default_value;\
1335 } else var = WMGetFromPLString(value)\
1338 static int string2index(WMPropList * key, WMPropList * val, char *def, WOptionEnumeration * values)
1341 WOptionEnumeration
*v
;
1342 char buffer
[TOTAL_VALUES_LENGTH
];
1344 if (WMIsPLString(val
) && (str
= WMGetFromPLString(val
))) {
1345 for (v
= values
; v
->string
!= NULL
; v
++) {
1346 if (strcasecmp(v
->string
, str
) == 0)
1352 for (v
= values
; v
->string
!= NULL
; v
++) {
1355 strcat(buffer
, ", ");
1356 strcat(buffer
, v
->string
);
1359 wwarning(_("wrong option value for key \"%s\". Should be one of %s"), WMGetFromPLString(key
), buffer
);
1362 return string2index(key
, val
, NULL
, values
);
1369 * value - is the value in the defaults DB
1370 * addr - is the address to store the data
1371 * ret - is the address to store a pointer to a temporary buffer. ret
1372 * must not be freed and is used by the set functions
1374 static int getBool(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1378 int second_pass
= 0;
1380 GET_STRING_OR_DEFAULT("Boolean", val
);
1383 if ((val
[1] == '\0' && (val
[0] == 'y' || val
[0] == 'Y'))
1384 || strcasecmp(val
, "YES") == 0) {
1387 } else if ((val
[1] == '\0' && (val
[0] == 'n' || val
[0] == 'N'))
1388 || strcasecmp(val
, "NO") == 0) {
1392 if (sscanf(val
, "%i", &i
) == 1) {
1398 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""), val
, entry
->key
);
1399 if (second_pass
== 0) {
1400 val
= WMGetFromPLString(entry
->plvalue
);
1402 wwarning(_("using default \"%s\" instead"), val
);
1412 *(char *)addr
= data
;
1417 static int getInt(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1422 GET_STRING_OR_DEFAULT("Integer", val
);
1424 if (sscanf(val
, "%i", &data
) != 1) {
1425 wwarning(_("can't convert \"%s\" to integer for key \"%s\""), val
, entry
->key
);
1426 val
= WMGetFromPLString(entry
->plvalue
);
1427 wwarning(_("using default \"%s\" instead"), val
);
1428 if (sscanf(val
, "%i", &data
) != 1) {
1436 *(int *)addr
= data
;
1441 static int getCoord(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1444 char *val_x
, *val_y
;
1445 int nelem
, changed
= 0;
1446 WMPropList
*elem_x
, *elem_y
;
1449 if (!WMIsPLArray(value
)) {
1450 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry
->key
, "Coordinate");
1452 value
= entry
->plvalue
;
1454 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1460 nelem
= WMGetPropListItemCount(value
);
1462 wwarning(_("Incorrect number of elements in array for key \"%s\"."), entry
->key
);
1464 value
= entry
->plvalue
;
1466 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1472 elem_x
= WMGetFromPLArray(value
, 0);
1473 elem_y
= WMGetFromPLArray(value
, 1);
1475 if (!elem_x
|| !elem_y
|| !WMIsPLString(elem_x
) || !WMIsPLString(elem_y
)) {
1476 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."), entry
->key
);
1478 value
= entry
->plvalue
;
1480 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1486 val_x
= WMGetFromPLString(elem_x
);
1487 val_y
= WMGetFromPLString(elem_y
);
1489 if (sscanf(val_x
, "%i", &data
.x
) != 1 || sscanf(val_y
, "%i", &data
.y
) != 1) {
1490 wwarning(_("can't convert array to integers for \"%s\"."), entry
->key
);
1492 value
= entry
->plvalue
;
1494 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1502 else if (data
.x
> scr
->scr_width
/ 3)
1503 data
.x
= scr
->scr_width
/ 3;
1506 else if (data
.y
> scr
->scr_height
/ 3)
1507 data
.y
= scr
->scr_height
/ 3;
1512 *(WCoord
*) addr
= data
;
1517 static int getPropList(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1519 WMRetainPropList(value
);
1527 /* This function is not used at the moment. */
1528 static int getString(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1532 GET_STRING_OR_DEFAULT("String", data
);
1535 data
= WMGetFromPLString(entry
->plvalue
);
1543 *(char **)addr
= wstrdup(data
);
1549 static int getPathList(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1558 if (!WMIsPLArray(value
)) {
1559 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry
->key
, "an array of paths");
1561 value
= entry
->plvalue
;
1563 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1570 count
= WMGetPropListItemCount(value
);
1573 value
= entry
->plvalue
;
1575 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1582 for (i
= 0; i
< count
; i
++) {
1583 d
= WMGetFromPLArray(value
, i
);
1584 if (!d
|| !WMIsPLString(d
)) {
1588 len
+= strlen(WMGetFromPLString(d
)) + 1;
1591 ptr
= data
= wmalloc(len
+ 1);
1593 for (i
= 0; i
< count
; i
++) {
1594 d
= WMGetFromPLArray(value
, i
);
1595 if (!d
|| !WMIsPLString(d
)) {
1598 strcpy(ptr
, WMGetFromPLString(d
));
1599 ptr
+= strlen(WMGetFromPLString(d
));
1606 if (*(char **)addr
!= NULL
) {
1607 wfree(*(char **)addr
);
1609 *(char **)addr
= data
;
1614 static int getEnum(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1616 static signed char data
;
1618 data
= string2index(entry
->plkey
, value
, entry
->default_value
, (WOptionEnumeration
*) entry
->extra_data
);
1625 *(signed char *)addr
= data
;
1632 * (hgradient <color> <color>)
1633 * (vgradient <color> <color>)
1634 * (dgradient <color> <color>)
1635 * (mhgradient <color> <color> ...)
1636 * (mvgradient <color> <color> ...)
1637 * (mdgradient <color> <color> ...)
1638 * (igradient <color1> <color1> <thickness1> <color2> <color2> <thickness2>)
1639 * (tpixmap <file> <color>)
1640 * (spixmap <file> <color>)
1641 * (cpixmap <file> <color>)
1642 * (thgradient <file> <opaqueness> <color> <color>)
1643 * (tvgradient <file> <opaqueness> <color> <color>)
1644 * (tdgradient <file> <opaqueness> <color> <color>)
1645 * (function <lib> <function> ...)
1648 static WTexture
*parse_texture(WScreen
* scr
, WMPropList
* pl
)
1653 WTexture
*texture
= NULL
;
1655 nelem
= WMGetPropListItemCount(pl
);
1659 elem
= WMGetFromPLArray(pl
, 0);
1660 if (!elem
|| !WMIsPLString(elem
))
1662 val
= WMGetFromPLString(elem
);
1664 if (strcasecmp(val
, "solid") == 0) {
1672 elem
= WMGetFromPLArray(pl
, 1);
1673 if (!elem
|| !WMIsPLString(elem
))
1675 val
= WMGetFromPLString(elem
);
1677 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1678 wwarning(_("\"%s\" is not a valid color name"), val
);
1682 texture
= (WTexture
*) wTextureMakeSolid(scr
, &color
);
1683 } else if (strcasecmp(val
, "dgradient") == 0
1684 || strcasecmp(val
, "vgradient") == 0 || strcasecmp(val
, "hgradient") == 0) {
1685 RColor color1
, color2
;
1690 wwarning(_("bad number of arguments in gradient specification"));
1694 if (val
[0] == 'd' || val
[0] == 'D')
1695 type
= WTEX_DGRADIENT
;
1696 else if (val
[0] == 'h' || val
[0] == 'H')
1697 type
= WTEX_HGRADIENT
;
1699 type
= WTEX_VGRADIENT
;
1701 /* get from color */
1702 elem
= WMGetFromPLArray(pl
, 1);
1703 if (!elem
|| !WMIsPLString(elem
))
1705 val
= WMGetFromPLString(elem
);
1707 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1708 wwarning(_("\"%s\" is not a valid color name"), val
);
1712 color1
.red
= xcolor
.red
>> 8;
1713 color1
.green
= xcolor
.green
>> 8;
1714 color1
.blue
= xcolor
.blue
>> 8;
1717 elem
= WMGetFromPLArray(pl
, 2);
1718 if (!elem
|| !WMIsPLString(elem
)) {
1721 val
= WMGetFromPLString(elem
);
1723 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1724 wwarning(_("\"%s\" is not a valid color name"), val
);
1728 color2
.red
= xcolor
.red
>> 8;
1729 color2
.green
= xcolor
.green
>> 8;
1730 color2
.blue
= xcolor
.blue
>> 8;
1732 texture
= (WTexture
*) wTextureMakeGradient(scr
, type
, &color1
, &color2
);
1734 } else if (strcasecmp(val
, "igradient") == 0) {
1735 RColor colors1
[2], colors2
[2];
1741 wwarning(_("bad number of arguments in gradient specification"));
1745 /* get from color */
1746 for (i
= 0; i
< 2; i
++) {
1747 elem
= WMGetFromPLArray(pl
, 1 + i
);
1748 if (!elem
|| !WMIsPLString(elem
))
1750 val
= WMGetFromPLString(elem
);
1752 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1753 wwarning(_("\"%s\" is not a valid color name"), val
);
1756 colors1
[i
].alpha
= 255;
1757 colors1
[i
].red
= xcolor
.red
>> 8;
1758 colors1
[i
].green
= xcolor
.green
>> 8;
1759 colors1
[i
].blue
= xcolor
.blue
>> 8;
1761 elem
= WMGetFromPLArray(pl
, 3);
1762 if (!elem
|| !WMIsPLString(elem
))
1764 val
= WMGetFromPLString(elem
);
1767 /* get from color */
1768 for (i
= 0; i
< 2; i
++) {
1769 elem
= WMGetFromPLArray(pl
, 4 + i
);
1770 if (!elem
|| !WMIsPLString(elem
))
1772 val
= WMGetFromPLString(elem
);
1774 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1775 wwarning(_("\"%s\" is not a valid color name"), val
);
1778 colors2
[i
].alpha
= 255;
1779 colors2
[i
].red
= xcolor
.red
>> 8;
1780 colors2
[i
].green
= xcolor
.green
>> 8;
1781 colors2
[i
].blue
= xcolor
.blue
>> 8;
1783 elem
= WMGetFromPLArray(pl
, 6);
1784 if (!elem
|| !WMIsPLString(elem
))
1786 val
= WMGetFromPLString(elem
);
1789 texture
= (WTexture
*) wTextureMakeIGradient(scr
, th1
, colors1
, th2
, colors2
);
1791 } else if (strcasecmp(val
, "mhgradient") == 0
1792 || strcasecmp(val
, "mvgradient") == 0 || strcasecmp(val
, "mdgradient") == 0) {
1799 wwarning(_("too few arguments in multicolor gradient specification"));
1803 if (val
[1] == 'h' || val
[1] == 'H')
1804 type
= WTEX_MHGRADIENT
;
1805 else if (val
[1] == 'v' || val
[1] == 'V')
1806 type
= WTEX_MVGRADIENT
;
1808 type
= WTEX_MDGRADIENT
;
1812 colors
= wmalloc(sizeof(RColor
*) * (count
+ 1));
1814 for (i
= 0; i
< count
; i
++) {
1815 elem
= WMGetFromPLArray(pl
, i
+ 1);
1816 if (!elem
|| !WMIsPLString(elem
)) {
1817 for (--i
; i
>= 0; --i
) {
1823 val
= WMGetFromPLString(elem
);
1825 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1826 wwarning(_("\"%s\" is not a valid color name"), val
);
1827 for (--i
; i
>= 0; --i
) {
1833 colors
[i
] = wmalloc(sizeof(RColor
));
1834 colors
[i
]->red
= color
.red
>> 8;
1835 colors
[i
]->green
= color
.green
>> 8;
1836 colors
[i
]->blue
= color
.blue
>> 8;
1841 texture
= (WTexture
*) wTextureMakeMGradient(scr
, type
, colors
);
1842 } else if (strcasecmp(val
, "spixmap") == 0 ||
1843 strcasecmp(val
, "cpixmap") == 0 || strcasecmp(val
, "tpixmap") == 0) {
1850 if (val
[0] == 's' || val
[0] == 'S')
1852 else if (val
[0] == 'c' || val
[0] == 'C')
1858 elem
= WMGetFromPLArray(pl
, 2);
1859 if (!elem
|| !WMIsPLString(elem
)) {
1862 val
= WMGetFromPLString(elem
);
1864 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1865 wwarning(_("\"%s\" is not a valid color name"), val
);
1870 elem
= WMGetFromPLArray(pl
, 1);
1871 if (!elem
|| !WMIsPLString(elem
))
1873 val
= WMGetFromPLString(elem
);
1875 texture
= (WTexture
*) wTextureMakePixmap(scr
, type
, val
, &color
);
1876 } else if (strcasecmp(val
, "thgradient") == 0
1877 || strcasecmp(val
, "tvgradient") == 0 || strcasecmp(val
, "tdgradient") == 0) {
1878 RColor color1
, color2
;
1883 if (val
[1] == 'h' || val
[1] == 'H')
1884 style
= WTEX_THGRADIENT
;
1885 else if (val
[1] == 'v' || val
[1] == 'V')
1886 style
= WTEX_TVGRADIENT
;
1888 style
= WTEX_TDGRADIENT
;
1891 wwarning(_("bad number of arguments in textured gradient specification"));
1895 /* get from color */
1896 elem
= WMGetFromPLArray(pl
, 3);
1897 if (!elem
|| !WMIsPLString(elem
))
1899 val
= WMGetFromPLString(elem
);
1901 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1902 wwarning(_("\"%s\" is not a valid color name"), val
);
1906 color1
.red
= xcolor
.red
>> 8;
1907 color1
.green
= xcolor
.green
>> 8;
1908 color1
.blue
= xcolor
.blue
>> 8;
1911 elem
= WMGetFromPLArray(pl
, 4);
1912 if (!elem
|| !WMIsPLString(elem
)) {
1915 val
= WMGetFromPLString(elem
);
1917 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1918 wwarning(_("\"%s\" is not a valid color name"), val
);
1922 color2
.red
= xcolor
.red
>> 8;
1923 color2
.green
= xcolor
.green
>> 8;
1924 color2
.blue
= xcolor
.blue
>> 8;
1927 elem
= WMGetFromPLArray(pl
, 2);
1928 if (!elem
|| !WMIsPLString(elem
))
1931 val
= WMGetFromPLString(elem
);
1933 if (!val
|| (opacity
= atoi(val
)) < 0 || opacity
> 255) {
1934 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val
);
1939 elem
= WMGetFromPLArray(pl
, 1);
1940 if (!elem
|| !WMIsPLString(elem
))
1942 val
= WMGetFromPLString(elem
);
1944 texture
= (WTexture
*) wTextureMakeTGradient(scr
, style
, &color1
, &color2
, val
, opacity
);
1946 #ifdef TEXTURE_PLUGIN
1947 else if (strcasecmp(val
, "function") == 0) {
1948 WTexFunction
*function
;
1949 void (*initFunc
) (Display
*, Colormap
);
1950 char *lib
, *func
, **argv
;
1956 /* get the library name */
1957 elem
= WMGetFromPLArray(pl
, 1);
1958 if (!elem
|| !WMIsPLString(elem
)) {
1961 lib
= WMGetFromPLString(elem
);
1963 /* get the function name */
1964 elem
= WMGetFromPLArray(pl
, 2);
1965 if (!elem
|| !WMIsPLString(elem
)) {
1968 func
= WMGetFromPLString(elem
);
1971 argv
= (char **)wmalloc(argc
* sizeof(char *));
1973 /* get the parameters */
1974 argv
[0] = wstrdup(func
);
1975 for (i
= 0; i
< argc
- 1; i
++) {
1976 elem
= WMGetFromPLArray(pl
, 3 + i
);
1977 if (!elem
|| !WMIsPLString(elem
)) {
1982 argv
[i
+ 1] = wstrdup(WMGetFromPLString(elem
));
1985 function
= wTextureMakeFunction(scr
, lib
, func
, argc
, argv
);
1989 initFunc
= dlsym(function
->handle
, "initWindowMaker");
1991 initFunc(dpy
, scr
->w_colormap
);
1993 wwarning(_("could not initialize library %s"), lib
);
1996 wwarning(_("could not find function %s::%s"), lib
, func
);
1998 #endif /* HAVE_DLFCN_H */
1999 texture
= (WTexture
*) function
;
2001 #endif /* TEXTURE_PLUGIN */
2003 wwarning(_("invalid texture type %s"), val
);
2009 static int getTexture(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2011 static WTexture
*texture
;
2015 if (!WMIsPLArray(value
)) {
2016 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry
->key
, "Texture");
2018 value
= entry
->plvalue
;
2020 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2026 if (strcmp(entry
->key
, "WidgetColor") == 0 && !changed
) {
2029 pl
= WMGetFromPLArray(value
, 0);
2030 if (!pl
|| !WMIsPLString(pl
) || !WMGetFromPLString(pl
)
2031 || strcasecmp(WMGetFromPLString(pl
), "solid") != 0) {
2032 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2033 entry
->key
, "Solid Texture");
2035 value
= entry
->plvalue
;
2037 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2042 texture
= parse_texture(scr
, value
);
2045 wwarning(_("Error in texture specification for key \"%s\""), entry
->key
);
2047 value
= entry
->plvalue
;
2049 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2059 *(WTexture
**) addr
= texture
;
2064 static int getWSBackground(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2072 if (!WMIsPLArray(value
)) {
2073 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2074 "WorkspaceBack", "Texture or None");
2076 value
= entry
->plvalue
;
2078 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2084 /* only do basic error checking and verify for None texture */
2086 nelem
= WMGetPropListItemCount(value
);
2088 elem
= WMGetFromPLArray(value
, 0);
2089 if (!elem
|| !WMIsPLString(elem
)) {
2090 wwarning(_("Wrong type for workspace background. Should be a texture type."));
2092 value
= entry
->plvalue
;
2094 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2099 val
= WMGetFromPLString(elem
);
2101 if (strcasecmp(val
, "None") == 0)
2104 *ret
= WMRetainPropList(value
);
2110 getWSSpecificBackground(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2117 if (!WMIsPLArray(value
)) {
2118 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2119 "WorkspaceSpecificBack", "an array of textures");
2121 value
= entry
->plvalue
;
2123 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2129 /* only do basic error checking and verify for None texture */
2131 nelem
= WMGetPropListItemCount(value
);
2134 elem
= WMGetFromPLArray(value
, nelem
);
2135 if (!elem
|| !WMIsPLArray(elem
)) {
2136 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
2142 *ret
= WMRetainPropList(value
);
2146 * Kluge to force wmsetbg helper to set the default background.
2147 * If the WorkspaceSpecificBack is changed once wmaker has started,
2148 * the WorkspaceBack won't be sent to the helper, unless the user
2149 * changes it's value too. So, we must force this by removing the
2150 * value from the defaults DB.
2152 if (!scr
->flags
.backimage_helper_launched
&& !scr
->flags
.startup
) {
2153 WMPropList
*key
= WMCreatePLString("WorkspaceBack");
2155 WMRemoveFromPLDictionary(WDWindowMaker
->dictionary
, key
);
2157 WMReleasePropList(key
);
2163 static int getFont(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2165 static WMFont
*font
;
2168 GET_STRING_OR_DEFAULT("Font", val
);
2170 font
= WMCreateFont(scr
->wmscreen
, val
);
2172 font
= WMCreateFont(scr
->wmscreen
, "fixed");
2175 wfatal(_("could not load any usable font!!!"));
2182 /* can't assign font value outside update function */
2183 wassertrv(addr
== NULL
, True
);
2188 static int getColor(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2190 static XColor color
;
2192 int second_pass
= 0;
2194 GET_STRING_OR_DEFAULT("Color", val
);
2197 if (!wGetColor(scr
, val
, &color
)) {
2198 wwarning(_("could not get color for key \"%s\""), entry
->key
);
2199 if (second_pass
== 0) {
2200 val
= WMGetFromPLString(entry
->plvalue
);
2202 wwarning(_("using default \"%s\" instead"), val
);
2211 assert(addr
== NULL
);
2214 *(unsigned long*)addr = pixel;
2220 static int getKeybind(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2222 static WShortKey shortcut
;
2226 char buf
[MAX_SHORTCUT_LENGTH
], *b
;
2228 GET_STRING_OR_DEFAULT("Key spec", val
);
2230 if (!val
|| strcasecmp(val
, "NONE") == 0) {
2231 shortcut
.keycode
= 0;
2232 shortcut
.modifier
= 0;
2238 strncpy(buf
, val
, MAX_SHORTCUT_LENGTH
);
2243 shortcut
.modifier
= 0;
2244 while ((k
= strchr(b
, '+')) != NULL
) {
2248 mod
= wXModifierFromKey(b
);
2250 wwarning(_("%s: invalid key modifier \"%s\""), entry
->key
, b
);
2253 shortcut
.modifier
|= mod
;
2259 ksym
= XStringToKeysym(b
);
2261 if (ksym
== NoSymbol
) {
2262 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry
->key
, val
);
2266 shortcut
.keycode
= XKeysymToKeycode(dpy
, ksym
);
2267 if (shortcut
.keycode
== 0) {
2268 wwarning(_("%s:invalid key in shortcut \"%s\""), entry
->key
, val
);
2278 static int getModMask(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2283 GET_STRING_OR_DEFAULT("Modifier Key", str
);
2288 mask
= wXModifierFromKey(str
);
2290 wwarning(_("%s: modifier key %s is not valid"), entry
->key
, str
);
2296 *(int *)addr
= mask
;
2304 # include <X11/cursorfont.h>
2310 #define CURSOR_ID_NONE (XC_num_glyphs)
2312 static WCursorLookup cursor_table
[] = {
2313 {"X_cursor", XC_X_cursor
},
2314 {"arrow", XC_arrow
},
2315 {"based_arrow_down", XC_based_arrow_down
},
2316 {"based_arrow_up", XC_based_arrow_up
},
2318 {"bogosity", XC_bogosity
},
2319 {"bottom_left_corner", XC_bottom_left_corner
},
2320 {"bottom_right_corner", XC_bottom_right_corner
},
2321 {"bottom_side", XC_bottom_side
},
2322 {"bottom_tee", XC_bottom_tee
},
2323 {"box_spiral", XC_box_spiral
},
2324 {"center_ptr", XC_center_ptr
},
2325 {"circle", XC_circle
},
2326 {"clock", XC_clock
},
2327 {"coffee_mug", XC_coffee_mug
},
2328 {"cross", XC_cross
},
2329 {"cross_reverse", XC_cross_reverse
},
2330 {"crosshair", XC_crosshair
},
2331 {"diamond_cross", XC_diamond_cross
},
2333 {"dotbox", XC_dotbox
},
2334 {"double_arrow", XC_double_arrow
},
2335 {"draft_large", XC_draft_large
},
2336 {"draft_small", XC_draft_small
},
2337 {"draped_box", XC_draped_box
},
2338 {"exchange", XC_exchange
},
2339 {"fleur", XC_fleur
},
2340 {"gobbler", XC_gobbler
},
2341 {"gumby", XC_gumby
},
2342 {"hand1", XC_hand1
},
2343 {"hand2", XC_hand2
},
2344 {"heart", XC_heart
},
2346 {"iron_cross", XC_iron_cross
},
2347 {"left_ptr", XC_left_ptr
},
2348 {"left_side", XC_left_side
},
2349 {"left_tee", XC_left_tee
},
2350 {"leftbutton", XC_leftbutton
},
2351 {"ll_angle", XC_ll_angle
},
2352 {"lr_angle", XC_lr_angle
},
2354 {"middlebutton", XC_middlebutton
},
2355 {"mouse", XC_mouse
},
2356 {"pencil", XC_pencil
},
2357 {"pirate", XC_pirate
},
2359 {"question_arrow", XC_question_arrow
},
2360 {"right_ptr", XC_right_ptr
},
2361 {"right_side", XC_right_side
},
2362 {"right_tee", XC_right_tee
},
2363 {"rightbutton", XC_rightbutton
},
2364 {"rtl_logo", XC_rtl_logo
},
2365 {"sailboat", XC_sailboat
},
2366 {"sb_down_arrow", XC_sb_down_arrow
},
2367 {"sb_h_double_arrow", XC_sb_h_double_arrow
},
2368 {"sb_left_arrow", XC_sb_left_arrow
},
2369 {"sb_right_arrow", XC_sb_right_arrow
},
2370 {"sb_up_arrow", XC_sb_up_arrow
},
2371 {"sb_v_double_arrow", XC_sb_v_double_arrow
},
2372 {"shuttle", XC_shuttle
},
2373 {"sizing", XC_sizing
},
2374 {"spider", XC_spider
},
2375 {"spraycan", XC_spraycan
},
2377 {"target", XC_target
},
2378 {"tcross", XC_tcross
},
2379 {"top_left_arrow", XC_top_left_arrow
},
2380 {"top_left_corner", XC_top_left_corner
},
2381 {"top_right_corner", XC_top_right_corner
},
2382 {"top_side", XC_top_side
},
2383 {"top_tee", XC_top_tee
},
2385 {"ul_angle", XC_ul_angle
},
2386 {"umbrella", XC_umbrella
},
2387 {"ur_angle", XC_ur_angle
},
2388 {"watch", XC_watch
},
2389 {"xterm", XC_xterm
},
2390 {NULL
, CURSOR_ID_NONE
}
2393 static void check_bitmap_status(int status
, char *filename
, Pixmap bitmap
)
2396 case BitmapOpenFailed
:
2397 wwarning(_("failed to open bitmap file \"%s\""), filename
);
2399 case BitmapFileInvalid
:
2400 wwarning(_("\"%s\" is not a valid bitmap file"), filename
);
2402 case BitmapNoMemory
:
2403 wwarning(_("out of memory reading bitmap file \"%s\""), filename
);
2406 XFreePixmap(dpy
, bitmap
);
2413 * (builtin, <cursor_name>)
2414 * (bitmap, <cursor_bitmap>, <cursor_mask>)
2416 static int parse_cursor(WScreen
* scr
, WMPropList
* pl
, Cursor
* cursor
)
2423 nelem
= WMGetPropListItemCount(pl
);
2427 elem
= WMGetFromPLArray(pl
, 0);
2428 if (!elem
|| !WMIsPLString(elem
)) {
2431 val
= WMGetFromPLString(elem
);
2433 if (0 == strcasecmp(val
, "none")) {
2436 } else if (0 == strcasecmp(val
, "builtin")) {
2438 int cursor_id
= CURSOR_ID_NONE
;
2441 wwarning(_("bad number of arguments in cursor specification"));
2444 elem
= WMGetFromPLArray(pl
, 1);
2445 if (!elem
|| !WMIsPLString(elem
)) {
2448 val
= WMGetFromPLString(elem
);
2450 for (i
= 0; NULL
!= cursor_table
[i
].name
; i
++) {
2451 if (0 == strcasecmp(val
, cursor_table
[i
].name
)) {
2452 cursor_id
= cursor_table
[i
].id
;
2456 if (CURSOR_ID_NONE
== cursor_id
) {
2457 wwarning(_("unknown builtin cursor name \"%s\""), val
);
2459 *cursor
= XCreateFontCursor(dpy
, cursor_id
);
2462 } else if (0 == strcasecmp(val
, "bitmap")) {
2474 wwarning(_("bad number of arguments in cursor specification"));
2477 elem
= WMGetFromPLArray(pl
, 1);
2478 if (!elem
|| !WMIsPLString(elem
)) {
2481 val
= WMGetFromPLString(elem
);
2482 bitmap_name
= FindImage(wPreferences
.pixmap_path
, val
);
2484 wwarning(_("could not find cursor bitmap file \"%s\""), val
);
2487 elem
= WMGetFromPLArray(pl
, 2);
2488 if (!elem
|| !WMIsPLString(elem
)) {
2492 val
= WMGetFromPLString(elem
);
2493 mask_name
= FindImage(wPreferences
.pixmap_path
, val
);
2496 wwarning(_("could not find cursor bitmap file \"%s\""), val
);
2499 mask_status
= XReadBitmapFile(dpy
, scr
->w_win
, mask_name
, &w
, &h
, &mask
, &x
, &y
);
2500 bitmap_status
= XReadBitmapFile(dpy
, scr
->w_win
, bitmap_name
, &w
, &h
, &bitmap
, &x
, &y
);
2501 if ((BitmapSuccess
== bitmap_status
) && (BitmapSuccess
== mask_status
)) {
2502 fg
.pixel
= scr
->black_pixel
;
2503 bg
.pixel
= scr
->white_pixel
;
2504 XQueryColor(dpy
, scr
->w_colormap
, &fg
);
2505 XQueryColor(dpy
, scr
->w_colormap
, &bg
);
2506 *cursor
= XCreatePixmapCursor(dpy
, bitmap
, mask
, &fg
, &bg
, x
, y
);
2509 check_bitmap_status(bitmap_status
, bitmap_name
, bitmap
);
2510 check_bitmap_status(mask_status
, mask_name
, mask
);
2517 static int getCursor(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2519 static Cursor cursor
;
2524 if (!WMIsPLArray(value
)) {
2525 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2526 entry
->key
, "cursor specification");
2528 value
= entry
->plvalue
;
2530 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2535 status
= parse_cursor(scr
, value
, &cursor
);
2537 wwarning(_("Error in cursor specification for key \"%s\""), entry
->key
);
2539 value
= entry
->plvalue
;
2541 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2550 *(Cursor
*) addr
= cursor
;
2555 #undef CURSOR_ID_NONE
2557 /* ---------------- value setting functions --------------- */
2558 static int setJustify(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
2560 return REFRESH_WINDOW_TITLE_COLOR
;
2563 static int setClearance(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
2565 return REFRESH_WINDOW_FONT
| REFRESH_BUTTON_IMAGES
| REFRESH_MENU_TITLE_FONT
| REFRESH_MENU_FONT
;
2568 static int setIfDockPresent(WScreen
* scr
, WDefaultEntry
* entry
, char *flag
, long which
)
2572 wPreferences
.flags
.nodock
= wPreferences
.flags
.nodock
|| *flag
;
2575 wPreferences
.flags
.noclip
= wPreferences
.flags
.noclip
|| *flag
;
2583 static int setStickyIcons(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
2585 if (scr
->workspaces
) {
2586 wWorkspaceForceChange(scr
, scr
->current_workspace
);
2587 wArrangeIcons(scr
, False
);
2593 static int setPositive(WScreen
* scr
, WDefaultEntry
* entry
, int *value
, void *foo
)
2602 static int setIconTile(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
2608 img
= wTextureRenderImage(*texture
, wPreferences
.icon_size
,
2609 wPreferences
.icon_size
, ((*texture
)->any
.type
& WREL_BORDER_MASK
)
2610 ? WREL_ICON
: WREL_FLAT
);
2612 wwarning(_("could not render texture for icon background"));
2614 wTextureDestroy(scr
, *texture
);
2617 RConvertImage(scr
->rcontext
, img
, &pixmap
);
2619 if (scr
->icon_tile
) {
2621 RReleaseImage(scr
->icon_tile
);
2622 XFreePixmap(dpy
, scr
->icon_tile_pixmap
);
2625 scr
->icon_tile
= img
;
2627 /* put the icon in the noticeboard hint */
2628 PropSetIconTileHint(scr
, img
);
2630 if (!wPreferences
.flags
.noclip
) {
2631 if (scr
->clip_tile
) {
2632 RReleaseImage(scr
->clip_tile
);
2634 scr
->clip_tile
= wClipMakeTile(scr
, img
);
2637 scr
->icon_tile_pixmap
= pixmap
;
2639 if (scr
->def_icon_pixmap
) {
2640 XFreePixmap(dpy
, scr
->def_icon_pixmap
);
2641 scr
->def_icon_pixmap
= None
;
2643 if (scr
->def_ticon_pixmap
) {
2644 XFreePixmap(dpy
, scr
->def_ticon_pixmap
);
2645 scr
->def_ticon_pixmap
= None
;
2648 if (scr
->icon_back_texture
) {
2649 wTextureDestroy(scr
, (WTexture
*) scr
->icon_back_texture
);
2651 scr
->icon_back_texture
= wTextureMakeSolid(scr
, &((*texture
)->any
.color
));
2653 if (scr
->clip_balloon
)
2654 XSetWindowBackground(dpy
, scr
->clip_balloon
, (*texture
)->any
.color
.pixel
);
2657 * Free the texture as nobody else will use it, nor refer to it.
2660 wTextureDestroy(scr
, *texture
);
2662 return (reset
? REFRESH_ICON_TILE
: 0);
2665 static int setWinTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, WMFont
* font
, void *foo
)
2667 if (scr
->title_font
) {
2668 WMReleaseFont(scr
->title_font
);
2670 scr
->title_font
= font
;
2672 return REFRESH_WINDOW_FONT
| REFRESH_BUTTON_IMAGES
;
2675 static int setMenuTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, WMFont
* font
, void *foo
)
2677 if (scr
->menu_title_font
) {
2678 WMReleaseFont(scr
->menu_title_font
);
2681 scr
->menu_title_font
= font
;
2683 return REFRESH_MENU_TITLE_FONT
;
2686 static int setMenuTextFont(WScreen
* scr
, WDefaultEntry
* entry
, WMFont
* font
, void *foo
)
2688 if (scr
->menu_entry_font
) {
2689 WMReleaseFont(scr
->menu_entry_font
);
2691 scr
->menu_entry_font
= font
;
2693 return REFRESH_MENU_FONT
;
2696 static int setIconTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, WMFont
* font
, void *foo
)
2698 if (scr
->icon_title_font
) {
2699 WMReleaseFont(scr
->icon_title_font
);
2702 scr
->icon_title_font
= font
;
2704 return REFRESH_ICON_FONT
;
2707 static int setClipTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, WMFont
* font
, void *foo
)
2709 if (scr
->clip_title_font
) {
2710 WMReleaseFont(scr
->clip_title_font
);
2713 scr
->clip_title_font
= font
;
2715 return REFRESH_ICON_FONT
;
2718 static int setLargeDisplayFont(WScreen
* scr
, WDefaultEntry
* entry
, WMFont
* font
, void *foo
)
2720 if (scr
->workspace_name_font
) {
2721 WMReleaseFont(scr
->workspace_name_font
);
2724 scr
->workspace_name_font
= font
;
2729 static int setHightlight(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, void *foo
)
2731 if (scr
->select_color
)
2732 WMReleaseColor(scr
->select_color
);
2734 scr
->select_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2736 wFreeColor(scr
, color
->pixel
);
2738 return REFRESH_MENU_COLOR
;
2741 static int setHightlightText(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, void *foo
)
2743 if (scr
->select_text_color
)
2744 WMReleaseColor(scr
->select_text_color
);
2746 scr
->select_text_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2748 wFreeColor(scr
, color
->pixel
);
2750 return REFRESH_MENU_COLOR
;
2753 static int setClipTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, long widx
)
2755 if (scr
->clip_title_color
[widx
])
2756 WMReleaseColor(scr
->clip_title_color
[widx
]);
2757 scr
->clip_title_color
[widx
] = WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2758 #ifdef GRADIENT_CLIP_ARROW
2759 if (widx
== CLIP_NORMAL
) {
2761 RColor color1
, color2
;
2762 int pt
= CLIP_BUTTON_SIZE
* wPreferences
.icon_size
/ 64;
2763 int as
= pt
- 15; /* 15 = 5+5+5 */
2765 FREE_PIXMAP(scr
->clip_arrow_gradient
);
2767 color1
.red
= (color
->red
>> 8) * 6 / 10;
2768 color1
.green
= (color
->green
>> 8) * 6 / 10;
2769 color1
.blue
= (color
->blue
>> 8) * 6 / 10;
2771 color2
.red
= WMIN((color
->red
>> 8) * 20 / 10, 255);
2772 color2
.green
= WMIN((color
->green
>> 8) * 20 / 10, 255);
2773 color2
.blue
= WMIN((color
->blue
>> 8) * 20 / 10, 255);
2775 image
= RRenderGradient(as
+ 1, as
+ 1, &color1
, &color2
, RDiagonalGradient
);
2776 RConvertImage(scr
->rcontext
, image
, &scr
->clip_arrow_gradient
);
2777 RReleaseImage(image
);
2779 #endif /* GRADIENT_CLIP_ARROW */
2781 wFreeColor(scr
, color
->pixel
);
2783 return REFRESH_ICON_TITLE_COLOR
;
2786 static int setWTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, long widx
)
2788 if (scr
->window_title_color
[widx
])
2789 WMReleaseColor(scr
->window_title_color
[widx
]);
2791 scr
->window_title_color
[widx
] =
2792 WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2794 wFreeColor(scr
, color
->pixel
);
2796 return REFRESH_WINDOW_TITLE_COLOR
;
2799 static int setMenuTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, long widx
)
2801 if (scr
->menu_title_color
[0])
2802 WMReleaseColor(scr
->menu_title_color
[0]);
2804 scr
->menu_title_color
[0] = WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2806 wFreeColor(scr
, color
->pixel
);
2808 return REFRESH_MENU_TITLE_COLOR
;
2811 static int setMenuTextColor(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, void *foo
)
2813 if (scr
->mtext_color
)
2814 WMReleaseColor(scr
->mtext_color
);
2816 scr
->mtext_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2818 if (WMColorPixel(scr
->dtext_color
) == WMColorPixel(scr
->mtext_color
)) {
2819 WMSetColorAlpha(scr
->dtext_color
, 0x7fff);
2821 WMSetColorAlpha(scr
->dtext_color
, 0xffff);
2824 wFreeColor(scr
, color
->pixel
);
2826 return REFRESH_MENU_COLOR
;
2829 static int setMenuDisabledColor(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, void *foo
)
2831 if (scr
->dtext_color
)
2832 WMReleaseColor(scr
->dtext_color
);
2834 scr
->dtext_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2836 if (WMColorPixel(scr
->dtext_color
) == WMColorPixel(scr
->mtext_color
)) {
2837 WMSetColorAlpha(scr
->dtext_color
, 0x7fff);
2839 WMSetColorAlpha(scr
->dtext_color
, 0xffff);
2842 wFreeColor(scr
, color
->pixel
);
2844 return REFRESH_MENU_COLOR
;
2847 static int setIconTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, void *foo
)
2849 if (scr
->icon_title_color
)
2850 WMReleaseColor(scr
->icon_title_color
);
2851 scr
->icon_title_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2853 wFreeColor(scr
, color
->pixel
);
2855 return REFRESH_ICON_TITLE_COLOR
;
2858 static int setIconTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, XColor
* color
, void *foo
)
2860 if (scr
->icon_title_texture
) {
2861 wTextureDestroy(scr
, (WTexture
*) scr
->icon_title_texture
);
2863 scr
->icon_title_texture
= wTextureMakeSolid(scr
, color
);
2865 return REFRESH_ICON_TITLE_BACK
;
2868 static void trackDeadProcess(pid_t pid
, unsigned char status
, WScreen
* scr
)
2870 close(scr
->helper_fd
);
2872 scr
->helper_pid
= 0;
2873 scr
->flags
.backimage_helper_launched
= 0;
2876 static int setWorkspaceSpecificBack(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *bar
)
2882 if (scr
->flags
.backimage_helper_launched
) {
2883 if (WMGetPropListItemCount(value
) == 0) {
2884 SendHelperMessage(scr
, 'C', 0, NULL
);
2885 SendHelperMessage(scr
, 'K', 0, NULL
);
2887 WMReleasePropList(value
);
2894 if (WMGetPropListItemCount(value
) == 0)
2897 if (pipe(filedes
) < 0) {
2898 wsyserror("pipe() failed:can't set workspace specific background image");
2900 WMReleasePropList(value
);
2906 wsyserror("fork() failed:can't set workspace specific background image");
2907 if (close(filedes
[0]) < 0)
2908 wsyserror("could not close pipe");
2909 if (close(filedes
[1]) < 0)
2910 wsyserror("could not close pipe");
2912 } else if (pid
== 0) {
2915 SetupEnvironment(scr
);
2918 wsyserror("could not close pipe");
2919 if (dup(filedes
[0]) < 0) {
2920 wsyserror("dup() failed:can't set workspace specific background image");
2922 dither
= wPreferences
.no_dithering
? "-m" : "-d";
2923 if (wPreferences
.smooth_workspace_back
)
2924 execlp("wmsetbg", "wmsetbg", "-helper", "-S", dither
, NULL
);
2926 execlp("wmsetbg", "wmsetbg", "-helper", dither
, NULL
);
2927 wsyserror("could not execute wmsetbg");
2931 if (fcntl(filedes
[0], F_SETFD
, FD_CLOEXEC
) < 0) {
2932 wsyserror("error setting close-on-exec flag");
2934 if (fcntl(filedes
[1], F_SETFD
, FD_CLOEXEC
) < 0) {
2935 wsyserror("error setting close-on-exec flag");
2938 scr
->helper_fd
= filedes
[1];
2939 scr
->helper_pid
= pid
;
2940 scr
->flags
.backimage_helper_launched
= 1;
2942 wAddDeathHandler(pid
, (WDeathHandler
*) trackDeadProcess
, scr
);
2944 SendHelperMessage(scr
, 'P', -1, wPreferences
.pixmap_path
);
2949 for (i
= 0; i
< WMGetPropListItemCount(value
); i
++) {
2950 val
= WMGetFromPLArray(value
, i
);
2951 if (val
&& WMIsPLArray(val
) && WMGetPropListItemCount(val
) > 0) {
2952 str
= WMGetPropListDescription(val
, False
);
2954 SendHelperMessage(scr
, 'S', i
+ 1, str
);
2958 SendHelperMessage(scr
, 'U', i
+ 1, NULL
);
2963 WMReleasePropList(value
);
2967 static int setWorkspaceBack(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *bar
)
2969 if (scr
->flags
.backimage_helper_launched
) {
2972 if (WMGetPropListItemCount(value
) == 0) {
2973 SendHelperMessage(scr
, 'U', 0, NULL
);
2975 /* set the default workspace background to this one */
2976 str
= WMGetPropListDescription(value
, False
);
2978 SendHelperMessage(scr
, 'S', 0, str
);
2980 SendHelperMessage(scr
, 'C', scr
->current_workspace
+ 1, NULL
);
2982 SendHelperMessage(scr
, 'U', 0, NULL
);
2985 } else if (WMGetPropListItemCount(value
) > 0) {
2991 text
= WMGetPropListDescription(value
, False
);
2992 len
= strlen(text
) + 40;
2993 command
= wmalloc(len
);
2994 dither
= wPreferences
.no_dithering
? "-m" : "-d";
2995 if (wPreferences
.smooth_workspace_back
)
2996 snprintf(command
, len
, "wmsetbg %s -S -p '%s' &", dither
, text
);
2998 snprintf(command
, len
, "wmsetbg %s -p '%s' &", dither
, text
);
3000 ExecuteShellCommand(scr
, command
);
3003 WMReleasePropList(value
);
3008 #ifdef VIRTUAL_DESKTOP
3009 static int setVirtualDeskEnable(WScreen
* scr
, WDefaultEntry
* entry
, void *foo
, void *bar
)
3011 wWorkspaceUpdateEdge(scr
);
3016 static int setWidgetColor(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3018 if (scr
->widget_texture
) {
3019 wTextureDestroy(scr
, (WTexture
*) scr
->widget_texture
);
3021 scr
->widget_texture
= *(WTexSolid
**) texture
;
3026 static int setFTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3028 if (scr
->window_title_texture
[WS_FOCUSED
]) {
3029 wTextureDestroy(scr
, scr
->window_title_texture
[WS_FOCUSED
]);
3031 scr
->window_title_texture
[WS_FOCUSED
] = *texture
;
3033 return REFRESH_WINDOW_TEXTURES
;
3036 static int setPTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3038 if (scr
->window_title_texture
[WS_PFOCUSED
]) {
3039 wTextureDestroy(scr
, scr
->window_title_texture
[WS_PFOCUSED
]);
3041 scr
->window_title_texture
[WS_PFOCUSED
] = *texture
;
3043 return REFRESH_WINDOW_TEXTURES
;
3046 static int setUTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3048 if (scr
->window_title_texture
[WS_UNFOCUSED
]) {
3049 wTextureDestroy(scr
, scr
->window_title_texture
[WS_UNFOCUSED
]);
3051 scr
->window_title_texture
[WS_UNFOCUSED
] = *texture
;
3053 return REFRESH_WINDOW_TEXTURES
;
3056 static int setResizebarBack(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3058 if (scr
->resizebar_texture
[0]) {
3059 wTextureDestroy(scr
, scr
->resizebar_texture
[0]);
3061 scr
->resizebar_texture
[0] = *texture
;
3063 return REFRESH_WINDOW_TEXTURES
;
3066 static int setMenuTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3068 if (scr
->menu_title_texture
[0]) {
3069 wTextureDestroy(scr
, scr
->menu_title_texture
[0]);
3071 scr
->menu_title_texture
[0] = *texture
;
3073 return REFRESH_MENU_TITLE_TEXTURE
;
3076 static int setMenuTextBack(WScreen
* scr
, WDefaultEntry
* entry
, WTexture
** texture
, void *foo
)
3078 if (scr
->menu_item_texture
) {
3079 wTextureDestroy(scr
, scr
->menu_item_texture
);
3080 wTextureDestroy(scr
, (WTexture
*) scr
->menu_item_auxtexture
);
3082 scr
->menu_item_texture
= *texture
;
3084 scr
->menu_item_auxtexture
= wTextureMakeSolid(scr
, &scr
->menu_item_texture
->any
.color
);
3086 return REFRESH_MENU_TEXTURE
;
3089 static int setKeyGrab(WScreen
* scr
, WDefaultEntry
* entry
, WShortKey
* shortcut
, long widx
)
3092 wKeyBindings
[widx
] = *shortcut
;
3094 wwin
= scr
->focused_window
;
3096 while (wwin
!= NULL
) {
3097 XUngrabKey(dpy
, AnyKey
, AnyModifier
, wwin
->frame
->core
->window
);
3099 if (!WFLAGP(wwin
, no_bind_keys
)) {
3100 wWindowSetKeyGrabs(wwin
);
3108 static int setIconPosition(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
3110 wScreenUpdateUsableArea(scr
);
3111 wArrangeIcons(scr
, True
);
3116 static int updateUsableArea(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
3118 wScreenUpdateUsableArea(scr
);
3123 static int setMenuStyle(WScreen
* scr
, WDefaultEntry
* entry
, int *value
, void *foo
)
3125 return REFRESH_MENU_TEXTURE
;
3128 static RImage
*chopOffImage(RImage
* image
, int x
, int y
, int w
, int h
)
3130 RImage
*img
= RCreateImage(w
, h
, image
->format
== RRGBAFormat
);
3132 RCopyArea(img
, image
, x
, y
, w
, h
, 0, 0);
3137 static int setSwPOptions(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* array
, void *foo
)
3141 int cwidth
, cheight
;
3142 WPreferences
*prefs
= (WPreferences
*) foo
;
3144 if (!WMIsPLArray(array
) || WMGetPropListItemCount(array
) == 0) {
3145 if (prefs
->swtileImage
)
3146 RReleaseImage(prefs
->swtileImage
);
3147 prefs
->swtileImage
= NULL
;
3149 WMReleasePropList(array
);
3153 switch (WMGetPropListItemCount(array
)) {
3155 if (!WMIsPLString(WMGetFromPLArray(array
, 1))) {
3156 wwarning(_("Invalid arguments for option \"%s\""), entry
->key
);
3159 path
= FindImage(wPreferences
.pixmap_path
, WMGetFromPLString(WMGetFromPLArray(array
, 1)));
3162 wwarning(_("Could not find image \"%s\" for option \"%s\""),
3163 WMGetFromPLString(WMGetFromPLArray(array
, 1)), entry
->key
);
3165 bgimage
= RLoadImage(scr
->rcontext
, path
, 0);
3167 wwarning(_("Could not load image \"%s\" for option \"%s\""), path
, entry
->key
);
3172 cwidth
= atoi(WMGetFromPLString(WMGetFromPLArray(array
, 2)));
3173 cheight
= atoi(WMGetFromPLString(WMGetFromPLArray(array
, 3)));
3175 if (cwidth
<= 0 || cheight
<= 0 ||
3176 cwidth
>= bgimage
->width
- 2 || cheight
>= bgimage
->height
- 2)
3177 wwarning(_("Invalid split sizes for SwitchPanel back image."));
3180 int swidth
, theight
;
3181 for (i
= 0; i
< 9; i
++) {
3182 if (prefs
->swbackImage
[i
])
3183 RReleaseImage(prefs
->swbackImage
[i
]);
3184 prefs
->swbackImage
[i
] = NULL
;
3186 swidth
= (bgimage
->width
- cwidth
) / 2;
3187 theight
= (bgimage
->height
- cheight
) / 2;
3189 prefs
->swbackImage
[0] = chopOffImage(bgimage
, 0, 0, swidth
, theight
);
3190 prefs
->swbackImage
[1] = chopOffImage(bgimage
, swidth
, 0, cwidth
, theight
);
3191 prefs
->swbackImage
[2] = chopOffImage(bgimage
, swidth
+ cwidth
, 0,
3194 prefs
->swbackImage
[3] = chopOffImage(bgimage
, 0, theight
, swidth
, cheight
);
3195 prefs
->swbackImage
[4] = chopOffImage(bgimage
, swidth
, theight
,
3197 prefs
->swbackImage
[5] = chopOffImage(bgimage
, swidth
+ cwidth
, theight
,
3200 prefs
->swbackImage
[6] = chopOffImage(bgimage
, 0, theight
+ cheight
,
3202 prefs
->swbackImage
[7] = chopOffImage(bgimage
, swidth
, theight
+ cheight
,
3204 prefs
->swbackImage
[8] =
3205 chopOffImage(bgimage
, swidth
+ cwidth
, theight
+ cheight
, swidth
,
3208 // check if anything failed
3209 for (i
= 0; i
< 9; i
++) {
3210 if (!prefs
->swbackImage
[i
]) {
3211 for (; i
>= 0; --i
) {
3212 RReleaseImage(prefs
->swbackImage
[i
]);
3213 prefs
->swbackImage
[i
] = NULL
;
3219 RReleaseImage(bgimage
);
3224 if (!WMIsPLString(WMGetFromPLArray(array
, 0))) {
3225 wwarning(_("Invalid arguments for option \"%s\""), entry
->key
);
3228 path
= FindImage(wPreferences
.pixmap_path
, WMGetFromPLString(WMGetFromPLArray(array
, 0)));
3231 wwarning(_("Could not find image \"%s\" for option \"%s\""),
3232 WMGetFromPLString(WMGetFromPLArray(array
, 0)), entry
->key
);
3234 if (prefs
->swtileImage
)
3235 RReleaseImage(prefs
->swtileImage
);
3237 prefs
->swtileImage
= RLoadImage(scr
->rcontext
, path
, 0);
3238 if (!prefs
->swtileImage
) {
3239 wwarning(_("Could not load image \"%s\" for option \"%s\""), path
, entry
->key
);
3246 wwarning(_("Invalid number of arguments for option \"%s\""), entry
->key
);
3250 WMReleasePropList(array
);
3257 setButtonImages(WScreen *scr, WDefaultEntry *entry, int *value, void *foo)
3259 return REFRESH_BUTTON_IMAGES;
3265 * Need access to the double click variables, so that all widgets in
3266 * wmaker panels will have the same dbl-click values.
3267 * TODO: figure a better way of dealing with it.
3269 #include <WINGs/WINGsP.h>
3271 static int setDoubleClick(WScreen
* scr
, WDefaultEntry
* entry
, int *value
, void *foo
)
3273 extern _WINGsConfiguration WINGsConfiguration
;
3278 WINGsConfiguration
.doubleClickDelay
= *value
;
3283 static int setCursor(WScreen
* scr
, WDefaultEntry
* entry
, Cursor
* cursor
, long widx
)
3285 if (wCursor
[widx
] != None
) {
3286 XFreeCursor(dpy
, wCursor
[widx
]);
3289 wCursor
[widx
] = *cursor
;
3291 if (widx
== WCUR_ROOT
&& *cursor
!= None
) {
3292 XDefineCursor(dpy
, scr
->root_win
, *cursor
);