1 /* defaults.c - manage configuration through defaults db
3 * Window Maker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 * Copyright (c) 1998 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,
32 #include <sys/types.h>
45 #define PATH_MAX DEFAULT_PATH_MAX
49 #include <X11/Xutil.h>
50 #include <X11/keysym.h>
55 #include "WindowMaker.h"
61 #include "resources.h"
64 #include "xmodifier.h"
69 #include "workspace.h"
73 * Our own proplist reader parser. This one will not accept any
74 * syntax errors and is more descriptive in the error messages.
75 * It also doesn't seem to crash.
77 extern proplist_t
ReadProplistFromFile(char *file
);
82 extern WDDomain
*WDWindowMaker
;
83 extern WDDomain
*WDWindowAttributes
;
84 extern WDDomain
*WDRootMenu
;
86 extern int wScreenCount
;
89 extern proplist_t wDomainName;
90 extern proplist_t wAttributeDomainName;
92 extern WPreferences wPreferences
;
94 extern WShortKey wKeyBindings
[WKBD_LAST
];
104 proplist_t plvalue
; /* default value */
108 /* used to map strings to integers */
113 } WOptionEnumeration
;
116 /* type converters */
117 static int getBool();
119 static int getCoord();
121 /* this is not used yet */
122 static int getString();
124 static int getPathList();
125 static int getEnum();
126 static int getTexture();
127 static int getWSBackground();
128 static int getWSSpecificBackground();
129 static int getFont();
130 static int getColor();
131 static int getKeybind();
132 static int getModMask();
134 static int getRImage();
138 /* value setting functions */
139 static int setJustify();
140 static int setIfDockPresent();
141 static int setStickyIcons();
143 static int setPositive();
145 static int setWidgetColor();
146 static int setIconTile();
147 static int setWinTitleFont();
148 static int setMenuTitleFont();
149 static int setMenuTextFont();
150 static int setIconTitleFont();
151 static int setIconTitleColor();
152 static int setIconTitleBack();
153 static int setDisplayFont();
154 static int setLargeDisplayFont();
155 static int setWTitleColor();
156 static int setFTitleBack();
157 static int setPTitleBack();
158 static int setUTitleBack();
159 static int setResizebarBack();
160 static int setWorkspaceBack();
161 static int setWorkspaceSpecificBack();
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();
179 static int updateUsableArea();
184 * Tables to convert strings to enumeration values.
185 * Values stored are char
189 /* WARNING: sum of length of all value strings must not exceed
191 #define TOTAL_VALUES_LENGTH 80
196 #define REFRESH_WINDOW_TEXTURES (1<<0)
197 #define REFRESH_MENU_TEXTURE (1<<1)
198 #define REFRESH_MENU_FONT (1<<2)
199 #define REFRESH_MENU_COLOR (1<<3)
200 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
201 #define REFRESH_MENU_TITLE_FONT (1<<5)
202 #define REFRESH_MENU_TITLE_COLOR (1<<6)
203 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
204 #define REFRESH_WINDOW_FONT (1<<8)
205 #define REFRESH_ICON_TILE (1<<9)
206 #define REFRESH_ICON_FONT (1<<10)
207 #define REFRESH_WORKSPACE_BACK (1<<11)
209 #define REFRESH_BUTTON_IMAGES (1<<12)
211 #define REFRESH_ICON_TITLE_COLOR (1<<13)
212 #define REFRESH_ICON_TITLE_BACK (1<<14)
216 static WOptionEnumeration seFocusModes
[] = {
217 {"Manual", WKF_CLICK
, 0}, {"ClickToFocus", WKF_CLICK
, 1},
218 {"Auto", WKF_POINTER
, 0}, {"FocusFollowMouse", WKF_POINTER
, 1},
219 {"Sloppy", WKF_SLOPPY
, 0}, {"SemiAuto", WKF_SLOPPY
, 1},
223 static WOptionEnumeration seColormapModes
[] = {
224 {"Manual", WKF_CLICK
, 0}, {"ClickToFocus", WKF_CLICK
, 1},
225 {"Auto", WKF_POINTER
, 0}, {"FocusFollowMouse", WKF_POINTER
, 1},
229 static WOptionEnumeration sePlacements
[] = {
230 {"Auto", WPM_SMART
, 0}, {"Smart", WPM_SMART
, 1},
231 {"Cascade", WPM_CASCADE
, 0},
232 {"Random", WPM_RANDOM
, 0},
233 {"Manual", WPM_MANUAL
, 0},
237 static WOptionEnumeration seGeomDisplays
[] = {
238 {"Center", WDIS_CENTER
, 0},
239 {"Corner", WDIS_TOPLEFT
, 0},
240 {"Floating", WDIS_FRAME_CENTER
, 0},
241 {"Line", WDIS_NEW
, 0},
245 static WOptionEnumeration seSpeeds
[] = {
246 {"UltraFast", SPEED_ULTRAFAST
, 0},
247 {"Fast", SPEED_FAST
, 0},
248 {"Medium", SPEED_MEDIUM
, 0},
249 {"Slow", SPEED_SLOW
, 0},
250 {"UltraSlow", SPEED_ULTRASLOW
, 0},
254 static WOptionEnumeration seMouseButtons
[] = {
255 {"Left", Button1
, 0}, {"Button1", Button1
, 1},
256 {"Middle", Button2
, 0}, {"Button2", Button2
, 1},
257 {"Right", Button3
, 0}, {"Button3", Button3
, 1},
258 {"Button4", Button4
, 0},
259 {"Button5", Button5
, 0},
263 static WOptionEnumeration seIconificationStyles
[] = {
264 {"Zoom", WIS_ZOOM
, 0},
265 {"Twist", WIS_TWIST
, 0},
266 {"Flip", WIS_FLIP
, 0},
267 {"None", WIS_NONE
, 0},
268 {"random", WIS_RANDOM
, 0},
272 static WOptionEnumeration seJustifications
[] = {
273 {"Left", WTJ_LEFT
, 0},
274 {"Center", WTJ_CENTER
, 0},
275 {"Right", WTJ_RIGHT
, 0},
279 static WOptionEnumeration seIconPositions
[] = {
280 {"blv", IY_BOTTOM
|IY_LEFT
|IY_VERT
, 0},
281 {"blh", IY_BOTTOM
|IY_LEFT
|IY_HORIZ
, 0},
282 {"brv", IY_BOTTOM
|IY_RIGHT
|IY_VERT
, 0},
283 {"brh", IY_BOTTOM
|IY_RIGHT
|IY_HORIZ
, 0},
284 {"tlv", IY_TOP
|IY_LEFT
|IY_VERT
, 0},
285 {"tlh", IY_TOP
|IY_LEFT
|IY_HORIZ
, 0},
286 {"trv", IY_TOP
|IY_RIGHT
|IY_VERT
, 0},
287 {"trh", IY_TOP
|IY_RIGHT
|IY_HORIZ
, 0},
291 static WOptionEnumeration seMenuStyles
[] = {
292 {"normal", MS_NORMAL
, 0},
293 {"singletexture", MS_SINGLE_TEXTURE
, 0},
294 {"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}
312 * ALL entries in the tables bellow, NEED to have a default value
313 * defined, and this value needs to be correct.
316 /* these options will only affect the window manager on startup
318 * static defaults can't access the screen data, because it is
319 * created after these defaults are read
321 WDefaultEntry staticOptionList
[] = {
323 {"DisableDithering", "NO", NULL
,
324 &wPreferences
.no_dithering
, getBool
, NULL
326 {"ColormapSize", "4", NULL
,
327 &wPreferences
.cmap_size
, getInt
, NULL
329 /* static by laziness */
330 {"IconSize", "64", NULL
,
331 &wPreferences
.icon_size
, getInt
, NULL
333 {"ModifierKey", "Mod1", NULL
,
334 &wPreferences
.modifier_mask
, getModMask
, NULL
336 {"DisableWSMouseActions", "NO", NULL
,
337 &wPreferences
.disable_root_mouse
, getBool
, NULL
339 {"FocusMode", "manual", seFocusModes
,
340 &wPreferences
.focus_mode
, getEnum
, NULL
341 }, /* have a problem when switching from manual to sloppy without restart */
342 {"NewStyle", "NO", NULL
,
343 &wPreferences
.new_style
, getBool
, NULL
345 {"DisableDock", "NO", (void*) WM_DOCK
,
346 NULL
, getBool
, setIfDockPresent
348 {"DisableClip", "NO", (void*) WM_CLIP
,
349 NULL
, getBool
, setIfDockPresent
351 {"DisableMiniwindows", "NO", NULL
,
352 &wPreferences
.disable_miniwindows
, getBool
, NULL
358 WDefaultEntry optionList
[] = {
359 /* dynamic options */
360 {"IconPosition", "blh", seIconPositions
,
361 &wPreferences
.icon_yard
, getEnum
, setIconPosition
363 {"IconificationStyle", "Zoom", seIconificationStyles
,
364 &wPreferences
.iconification_style
, getEnum
, NULL
366 {"SelectWindowsMouseButton", "Left", seMouseButtons
,
367 &wPreferences
.select_button
, getEnum
, NULL
369 {"WindowListMouseButton", "Middle", seMouseButtons
,
370 &wPreferences
.windowl_button
, getEnum
, NULL
372 {"ApplicationMenuMouseButton", "Right", seMouseButtons
,
373 &wPreferences
.menu_button
, getEnum
, NULL
375 {"PixmapPath", DEF_PIXMAP_PATHS
, NULL
,
376 &wPreferences
.pixmap_path
, getPathList
, NULL
378 {"IconPath", DEF_ICON_PATHS
, NULL
,
379 &wPreferences
.icon_path
, getPathList
, NULL
381 {"ColormapMode", "auto", seColormapModes
,
382 &wPreferences
.colormap_mode
, getEnum
, NULL
384 {"AutoFocus", "NO", NULL
,
385 &wPreferences
.auto_focus
, getBool
, NULL
387 {"RaiseDelay", "0", NULL
,
388 &wPreferences
.raise_delay
, getInt
, NULL
390 {"CirculateRaise", "NO", NULL
,
391 &wPreferences
.circ_raise
, getBool
, NULL
393 {"Superfluous", "NO", NULL
,
394 &wPreferences
.superfluous
, getBool
, NULL
396 {"AdvanceToNewWorkspace", "NO", NULL
,
397 &wPreferences
.ws_advance
, getBool
, NULL
399 {"CycleWorkspaces", "NO", NULL
,
400 &wPreferences
.ws_cycle
, getBool
, NULL
402 {"WorkspaceNameDisplayPosition", "center", seDisplayPositions
,
403 &wPreferences
.workspace_name_display_position
, getEnum
, NULL
405 {"StickyIcons", "NO", NULL
,
406 &wPreferences
.sticky_icons
, getBool
, setStickyIcons
408 {"SaveSessionOnExit", "NO", NULL
,
409 &wPreferences
.save_session_on_exit
, getBool
, NULL
411 {"WrapMenus", "NO", NULL
,
412 &wPreferences
.wrap_menus
, getBool
, NULL
414 {"ScrollableMenus", "NO", NULL
,
415 &wPreferences
.scrollable_menus
, getBool
, NULL
417 {"MenuScrollSpeed", "medium", seSpeeds
,
418 &wPreferences
.menu_scroll_speed
, getEnum
, NULL
420 {"IconSlideSpeed", "medium", seSpeeds
,
421 &wPreferences
.icon_slide_speed
, getEnum
, NULL
423 {"ShadeSpeed", "medium", seSpeeds
,
424 &wPreferences
.shade_speed
, getEnum
, NULL
426 {"DoubleClickTime", "250", (void*) &wPreferences
.dblclick_time
,
427 &wPreferences
.dblclick_time
, getInt
, setDoubleClick
,
429 {"AlignSubmenus", "NO", NULL
,
430 &wPreferences
.align_menus
, getBool
, NULL
432 {"OpenTransientOnOwnerWorkspace", "NO", NULL
,
433 &wPreferences
.open_transients_with_parent
, getBool
, NULL
435 {"WindowPlacement", "auto", sePlacements
,
436 &wPreferences
.window_placement
, getEnum
, NULL
438 {"IgnoreFocusClick","NO", NULL
,
439 &wPreferences
.ignore_focus_click
, getBool
, NULL
441 {"UseSaveUnders", "NO", NULL
,
442 &wPreferences
.use_saveunders
, getBool
, NULL
444 {"OpaqueMove", "NO", NULL
,
445 &wPreferences
.opaque_move
, getBool
, NULL
447 {"DisableSound", "NO", NULL
,
448 &wPreferences
.no_sound
, getBool
, NULL
450 {"DisableAnimations", "NO", NULL
,
451 &wPreferences
.no_animations
, getBool
, NULL
453 {"DontLinkWorkspaces","NO", NULL
,
454 &wPreferences
.no_autowrap
, getBool
, NULL
456 {"AutoArrangeIcons", "NO", NULL
,
457 &wPreferences
.auto_arrange_icons
, getBool
, NULL
459 {"NoWindowOverDock", "NO", NULL
,
460 &wPreferences
.no_window_over_dock
, getBool
, updateUsableArea
462 {"NoWindowOverIcons", "NO", NULL
,
463 &wPreferences
.no_window_over_icons
, getBool
, updateUsableArea
465 {"WindowPlaceOrigin", "(0, 0)", NULL
,
466 &wPreferences
.window_place_origin
, getCoord
, NULL
468 {"ResizeDisplay", "corner", seGeomDisplays
,
469 &wPreferences
.size_display
, getEnum
, NULL
471 {"MoveDisplay", "corner", seGeomDisplays
,
472 &wPreferences
.move_display
, getEnum
, NULL
474 {"DontConfirmKill", "NO", NULL
,
475 &wPreferences
.dont_confirm_kill
, getBool
,NULL
477 {"WindowTitleBalloons", "NO", NULL
,
478 &wPreferences
.window_balloon
, getBool
, NULL
480 {"MiniwindowTitleBalloons", "NO", NULL
,
481 &wPreferences
.miniwin_balloon
,getBool
, NULL
483 {"AppIconBalloons", "NO", NULL
,
484 &wPreferences
.appicon_balloon
,getBool
, NULL
486 {"HelpBalloons", "NO", NULL
,
487 &wPreferences
.help_balloon
, getBool
, NULL
489 {"EdgeResistance", "30", NULL
,
490 &wPreferences
.edge_resistance
,getInt
, NULL
492 {"DisableBlinking", "NO", NULL
,
493 &wPreferences
.dont_blink
, getBool
, NULL
495 #ifdef WEENDOZE_CYCLE
496 {"WindozeCycling","NO", NULL
,
497 &wPreferences
.windoze_cycling
, getBool
, NULL
499 {"PopupSwitchMenu","YES", NULL
,
500 &wPreferences
.popup_switchmenu
, getBool
, NULL
502 #endif /* WEENDOZE_CYCLE */
504 {"MenuStyle", "normal", seMenuStyles
,
505 &wPreferences
.menu_style
, getEnum
, setMenuStyle
507 {"WidgetColor", "(solid, gray)", NULL
,
508 NULL
, getTexture
, setWidgetColor
,
510 {"WorkspaceSpecificBack","()", NULL
,
511 NULL
, getWSSpecificBackground
, setWorkspaceSpecificBack
513 /* WorkspaceBack must come after WorkspaceSpecificBack or
514 * WorkspaceBack wont know WorkspaceSpecificBack was also
515 * specified and 2 copies of wmsetbg will be launched */
516 {"WorkspaceBack", "(solid, black)", NULL
,
517 NULL
, getWSBackground
,setWorkspaceBack
519 {"SmoothWorkspaceBack", "NO", NULL
,
522 {"IconBack", "(solid, gray)", NULL
,
523 NULL
, getTexture
, setIconTile
525 {"TitleJustify", "center", seJustifications
,
526 &wPreferences
.title_justification
, getEnum
, setJustify
528 {"WindowTitleFont", DEF_TITLE_FONT
, NULL
,
529 NULL
, getFont
, setWinTitleFont
,
531 {"MenuTitleFont", DEF_MENU_TITLE_FONT
, NULL
,
532 NULL
, getFont
, setMenuTitleFont
534 {"MenuTextFont", DEF_MENU_ENTRY_FONT
, NULL
,
535 NULL
, getFont
, setMenuTextFont
537 {"IconTitleFont", DEF_ICON_TITLE_FONT
, NULL
,
538 NULL
, getFont
, setIconTitleFont
540 {"ClipTitleFont", DEF_CLIP_TITLE_FONT
, NULL
,
541 NULL
, getFont
, setClipTitleFont
543 {"DisplayFont", DEF_INFO_TEXT_FONT
, NULL
,
544 NULL
, getFont
, setDisplayFont
546 {"LargeDisplayFont",DEF_WORKSPACE_NAME_FONT
, NULL
,
547 NULL
, getFont
, setLargeDisplayFont
549 {"HighlightColor", "white", NULL
,
550 NULL
, getColor
, setHightlight
552 {"HighlightTextColor", "black", NULL
,
553 NULL
, getColor
, setHightlightText
555 {"ClipTitleColor", "black", (void*)CLIP_NORMAL
,
556 NULL
, getColor
, setClipTitleColor
558 {"CClipTitleColor", "\"#454045\"", (void*)CLIP_COLLAPSED
,
559 NULL
, getColor
, setClipTitleColor
561 {"FTitleColor", "white", (void*)WS_FOCUSED
,
562 NULL
, getColor
, setWTitleColor
564 {"PTitleColor", "white", (void*)WS_PFOCUSED
,
565 NULL
, getColor
, setWTitleColor
567 {"UTitleColor", "black", (void*)WS_UNFOCUSED
,
568 NULL
, getColor
, setWTitleColor
570 {"FTitleBack", "(solid, black)", NULL
,
571 NULL
, getTexture
, setFTitleBack
573 {"PTitleBack", "(solid, \"#616161\")", NULL
,
574 NULL
, getTexture
, setPTitleBack
576 {"UTitleBack", "(solid, gray)", NULL
,
577 NULL
, getTexture
, setUTitleBack
579 {"ResizebarBack", "(solid, gray)", NULL
,
580 NULL
, getTexture
, setResizebarBack
582 {"MenuTitleColor", "white", NULL
,
583 NULL
, getColor
, setMenuTitleColor
585 {"MenuTextColor", "black", NULL
,
586 NULL
, getColor
, setMenuTextColor
588 {"MenuDisabledColor", "\"#616161\"", NULL
,
589 NULL
, getColor
, setMenuDisabledColor
591 {"MenuTitleBack", "(solid, black)", NULL
,
592 NULL
, getTexture
, setMenuTitleBack
594 {"MenuTextBack", "(solid, gray)", NULL
,
595 NULL
, getTexture
, setMenuTextBack
597 {"IconTitleColor", "white", NULL
,
598 NULL
, getColor
, setIconTitleColor
600 {"IconTitleBack", "black", NULL
,
601 NULL
, getColor
, setIconTitleBack
605 {"RootMenuKey", "None", (void*)WKBD_ROOTMENU
,
606 NULL
, getKeybind
, setKeyGrab
608 {"WindowListKey", "None", (void*)WKBD_WINDOWLIST
,
609 NULL
, getKeybind
, setKeyGrab
612 {"WindowMenuKey", "None", (void*)WKBD_WINDOWMENU
,
613 NULL
, getKeybind
, setKeyGrab
615 {"ClipLowerKey", "None", (void*)WKBD_CLIPLOWER
,
616 NULL
, getKeybind
, setKeyGrab
618 {"ClipRaiseKey", "None", (void*)WKBD_CLIPRAISE
,
619 NULL
, getKeybind
, setKeyGrab
621 {"ClipRaiseLowerKey", "None", (void*)WKBD_CLIPRAISELOWER
,
622 NULL
, getKeybind
, setKeyGrab
624 {"MiniaturizeKey", "None", (void*)WKBD_MINIATURIZE
,
625 NULL
, getKeybind
, setKeyGrab
627 {"HideKey", "None", (void*)WKBD_HIDE
,
628 NULL
, getKeybind
, setKeyGrab
630 {"MoveResizeKey", "None", (void*)WKBD_MOVERESIZE
,
631 NULL
, getKeybind
, setKeyGrab
633 {"CloseKey", "None", (void*)WKBD_CLOSE
,
634 NULL
, getKeybind
, setKeyGrab
636 {"MaximizeKey", "None", (void*)WKBD_MAXIMIZE
,
637 NULL
, getKeybind
, setKeyGrab
639 {"VMaximizeKey", "None", (void*)WKBD_VMAXIMIZE
,
640 NULL
, getKeybind
, setKeyGrab
642 {"RaiseKey", "Meta+Up", (void*)WKBD_RAISE
,
643 NULL
, getKeybind
, setKeyGrab
645 {"LowerKey", "Meta+Down", (void*)WKBD_LOWER
,
646 NULL
, getKeybind
, setKeyGrab
648 {"RaiseLowerKey", "None", (void*)WKBD_RAISELOWER
,
649 NULL
, getKeybind
, setKeyGrab
651 {"ShadeKey", "None", (void*)WKBD_SHADE
,
652 NULL
, getKeybind
, setKeyGrab
654 {"SelectKey", "None", (void*)WKBD_SELECT
,
655 NULL
, getKeybind
, setKeyGrab
657 {"FocusNextKey", "None", (void*)WKBD_FOCUSNEXT
,
658 NULL
, getKeybind
, setKeyGrab
660 {"FocusPrevKey", "None", (void*)WKBD_FOCUSPREV
,
661 NULL
, getKeybind
, setKeyGrab
663 {"NextWorkspaceKey", "None", (void*)WKBD_NEXTWORKSPACE
,
664 NULL
, getKeybind
, setKeyGrab
666 {"PrevWorkspaceKey", "None", (void*)WKBD_PREVWORKSPACE
,
667 NULL
, getKeybind
, setKeyGrab
669 {"NextWorkspaceLayerKey", "None", (void*)WKBD_NEXTWSLAYER
,
670 NULL
, getKeybind
, setKeyGrab
672 {"PrevWorkspaceLayerKey", "None", (void*)WKBD_PREVWSLAYER
,
673 NULL
, getKeybind
, setKeyGrab
675 {"Workspace1Key", "None", (void*)WKBD_WORKSPACE1
,
676 NULL
, getKeybind
, setKeyGrab
678 {"Workspace2Key", "None", (void*)WKBD_WORKSPACE2
,
679 NULL
, getKeybind
, setKeyGrab
681 {"Workspace3Key", "None", (void*)WKBD_WORKSPACE3
,
682 NULL
, getKeybind
, setKeyGrab
684 {"Workspace4Key", "None", (void*)WKBD_WORKSPACE4
,
685 NULL
, getKeybind
, setKeyGrab
687 {"Workspace5Key", "None", (void*)WKBD_WORKSPACE5
,
688 NULL
, getKeybind
, setKeyGrab
690 {"Workspace6Key", "None", (void*)WKBD_WORKSPACE6
,
691 NULL
, getKeybind
, setKeyGrab
693 {"Workspace7Key", "None", (void*)WKBD_WORKSPACE7
,
694 NULL
, getKeybind
, setKeyGrab
696 {"Workspace8Key", "None", (void*)WKBD_WORKSPACE8
,
697 NULL
, getKeybind
, setKeyGrab
699 {"Workspace9Key", "None", (void*)WKBD_WORKSPACE9
,
700 NULL
, getKeybind
, setKeyGrab
702 {"Workspace10Key", "None", (void*)WKBD_WORKSPACE10
,
703 NULL
, getKeybind
, setKeyGrab
705 {"WindowShortcut1Key","None", (void*)WKBD_WINDOW1
,
706 NULL
, getKeybind
, setKeyGrab
708 {"WindowShortcut2Key","None", (void*)WKBD_WINDOW2
,
709 NULL
, getKeybind
, setKeyGrab
711 {"WindowShortcut3Key","None", (void*)WKBD_WINDOW3
,
712 NULL
, getKeybind
, setKeyGrab
714 {"WindowShortcut4Key","None", (void*)WKBD_WINDOW4
,
715 NULL
, getKeybind
, setKeyGrab
717 #ifdef EXTEND_WINDOWSHORTCUT
718 ,{"WindowShortcut5Key","None", (void*)WKBD_WINDOW5
,
719 NULL
, getKeybind
, setKeyGrab
721 {"WindowShortcut6Key","None", (void*)WKBD_WINDOW6
,
722 NULL
, getKeybind
, setKeyGrab
724 {"WindowShortcut7Key","None", (void*)WKBD_WINDOW7
,
725 NULL
, getKeybind
, setKeyGrab
727 {"WindowShortcut8Key","None", (void*)WKBD_WINDOW8
,
728 NULL
, getKeybind
, setKeyGrab
730 {"WindowShortcut9Key","None", (void*)WKBD_WINDOW9
,
731 NULL
, getKeybind
, setKeyGrab
733 {"WindowShortcut10Key","None", (void*)WKBD_WINDOW10
,
734 NULL
, getKeybind
, setKeyGrab
736 #endif /* EXTEND_WINDOWSHORTCUT */
738 #ifdef KEEP_XKB_LOCK_STATUS
739 ,{"ToggleKbdModeKey", "None", (void*)WKBD_TOGGLE
,
740 NULL
, getKeybind
, setKeyGrab
742 {"KbdModeLock", "NO", NULL
,
743 &wPreferences
.modelock
, getBool
, NULL
745 #endif /* KEEP_XKB_LOCK_STATUS */
746 #ifdef TITLE_TEXT_SHADOW
747 ,{"FShadowColor", "black", (void*)WS_SFOCUSED
,
748 NULL
, getColor
, setWTitleColor
750 {"PShadowColor", "black", (void*)WS_SPFOCUSED
,
751 NULL
, getColor
, setWTitleColor
753 {"UShadowColor", "grey50", (void*)WS_SUNFOCUSED
,
754 NULL
, getColor
, setWTitleColor
756 {"MShadowColor", "black", (void*)WS_SMENU
,
757 NULL
, getColor
, setMenuTitleColor
759 {"Shadow", "Yes", NULL
,
760 &wPreferences
.title_shadow
, getBool
, setJustify
762 #endif /* TITLE_TEXT_SHADOW */
767 static void rereadDefaults(void);
774 /* must defer the update because accessing X data from a
775 * signal handler can mess up Xlib */
784 WDefaultEntry
*entry
;
786 PLSetStringCmpHook(StringCompareHook
);
788 for (i
=0; i
<sizeof(optionList
)/sizeof(WDefaultEntry
); i
++) {
789 entry
= &optionList
[i
];
791 entry
->plkey
= PLMakeString(entry
->key
);
792 if (entry
->default_value
)
793 entry
->plvalue
= PLGetProplistWithDescription(entry
->default_value
);
795 entry
->plvalue
= NULL
;
798 for (i
=0; i
<sizeof(staticOptionList
)/sizeof(WDefaultEntry
); i
++) {
799 entry
= &staticOptionList
[i
];
801 entry
->plkey
= PLMakeString(entry
->key
);
802 if (entry
->default_value
)
803 entry
->plvalue
= PLGetProplistWithDescription(entry
->default_value
);
805 entry
->plvalue
= NULL
;
809 wDomainName = PLMakeString(WMDOMAIN_NAME);
810 wAttributeDomainName = PLMakeString(WMATTRIBUTE_DOMAIN_NAME);
812 PLRegister(wDomainName, rereadDefaults);
813 PLRegister(wAttributeDomainName, rereadDefaults);
822 wDefaultsInit(int screen_number
)
824 static int defaults_inited
= 0;
827 if (!defaults_inited
) {
831 dict
= PLGetDomain(wDomainName
);
833 wwarning(_("could not read domain \"%s\" from defaults database"),
834 PLGetString(wDomainName
));
843 wDefaultsDestroyDomain(WDDomain
*domain
)
845 if (domain
->dictionary
)
846 PLRelease(domain
->dictionary
);
853 wDefaultsInitDomain(char *domain
, Bool requireDictionary
)
857 static int inited
= 0;
860 proplist_t shared_dict
=NULL
;
867 db
= wmalloc(sizeof(WDDomain
));
868 memset(db
, 0, sizeof(WDDomain
));
869 db
->domain_name
= domain
;
870 db
->path
= wdefaultspathfordomain(domain
);
873 if (the_path
&& stat(the_path
, &stbuf
)>=0) {
874 db
->dictionary
= ReadProplistFromFile(the_path
);
875 if (db
->dictionary
) {
876 if (requireDictionary
&& !PLIsDictionary(db
->dictionary
)) {
877 PLRelease(db
->dictionary
);
878 db
->dictionary
= NULL
;
879 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
882 db
->timestamp
= stbuf
.st_mtime
;
884 wwarning(_("could not load domain %s from user defaults database"),
889 /* global system dictionary */
890 sprintf(path
, "%s/%s", SYSCONFDIR
, domain
);
891 if (stat(path
, &stbuf
)>=0) {
892 shared_dict
= ReadProplistFromFile(path
);
894 if (requireDictionary
&& !PLIsDictionary(shared_dict
)) {
895 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
897 PLRelease(shared_dict
);
900 if (db
->dictionary
&& PLIsDictionary(shared_dict
) &&
901 PLIsDictionary(db
->dictionary
)) {
902 PLMergeDictionaries(shared_dict
, db
->dictionary
);
903 PLRelease(db
->dictionary
);
904 db
->dictionary
= shared_dict
;
905 if (stbuf
.st_mtime
> db
->timestamp
)
906 db
->timestamp
= stbuf
.st_mtime
;
907 } else if (!db
->dictionary
) {
908 db
->dictionary
= shared_dict
;
909 if (stbuf
.st_mtime
> db
->timestamp
)
910 db
->timestamp
= stbuf
.st_mtime
;
914 wwarning(_("could not load domain %s from global defaults database"),
919 /* set to save it in user's directory, no matter from where it was read */
920 if (db
->dictionary
) {
921 proplist_t tmp
= PLMakeString(db
->path
);
923 PLSetFilename(db
->dictionary
, tmp
);
932 wReadStaticDefaults(proplist_t dict
)
935 WDefaultEntry
*entry
;
940 for (i
=0; i
<sizeof(staticOptionList
)/sizeof(WDefaultEntry
); i
++) {
941 entry
= &staticOptionList
[i
];
944 plvalue
= PLGetDictionaryEntry(dict
, entry
->plkey
);
949 /* no default in the DB. Use builtin default */
950 plvalue
= entry
->plvalue
;
955 (*entry
->convert
)(NULL
, entry
, plvalue
, entry
->addr
, &tdata
);
957 (*entry
->update
)(NULL
, entry
, tdata
, entry
->extra_data
);
965 wDefaultsCheckDomains(void *foo
)
974 puts("Checking domains...");
976 if (stat(WDWindowMaker
->path
, &stbuf
)>=0
977 && WDWindowMaker
->timestamp
< stbuf
.st_mtime
) {
978 proplist_t shared_dict
= NULL
;
980 puts("Checking WindowMaker domain");
982 WDWindowMaker
->timestamp
= stbuf
.st_mtime
;
984 /* global dictionary */
985 sprintf(path
, "%s/WindowMaker", SYSCONFDIR
);
986 if (stat(path
, &stbuf
)>=0) {
987 shared_dict
= ReadProplistFromFile(path
);
988 if (shared_dict
&& !PLIsDictionary(shared_dict
)) {
989 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
990 "WindowMaker", path
);
991 PLRelease(shared_dict
);
993 } else if (!shared_dict
) {
994 wwarning(_("could not load domain %s from global defaults database"),
998 /* user dictionary */
999 dict
= ReadProplistFromFile(WDWindowMaker
->path
);
1001 if (!PLIsDictionary(dict
)) {
1004 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1005 "WindowMaker", WDWindowMaker
->path
);
1008 PLSetFilename(shared_dict
, PLGetFilename(dict
));
1009 PLMergeDictionaries(shared_dict
, dict
);
1014 for (i
=0; i
<wScreenCount
; i
++) {
1015 scr
= wScreenWithNumber(i
);
1017 wReadDefaults(scr
, dict
);
1019 if (WDWindowMaker
->dictionary
) {
1020 PLRelease(WDWindowMaker
->dictionary
);
1022 WDWindowMaker
->dictionary
= dict
;
1025 wwarning(_("could not load domain %s from user defaults database"),
1029 PLRelease(shared_dict
);
1033 if (stat(WDWindowAttributes
->path
, &stbuf
)>=0
1034 && WDWindowAttributes
->timestamp
< stbuf
.st_mtime
) {
1036 puts("Checking WMWindowAttributes domain");
1038 dict
= ReadProplistFromFile(WDWindowAttributes
->path
);
1040 if (!PLIsDictionary(dict
)) {
1043 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1044 "WMWindowAttributes", WDWindowAttributes
->path
);
1046 if (WDWindowAttributes
->dictionary
)
1047 PLRelease(WDWindowAttributes
->dictionary
);
1048 WDWindowAttributes
->dictionary
= dict
;
1049 for (i
=0; i
<wScreenCount
; i
++) {
1050 scr
= wScreenWithNumber(i
);
1052 wDefaultUpdateIcons(scr
);
1056 wwarning(_("could not load domain %s from user defaults database"),
1057 "WMWindowAttributes");
1059 WDWindowAttributes
->timestamp
= stbuf
.st_mtime
;
1063 if (stat(WDRootMenu
->path
, &stbuf
)>=0
1064 && WDRootMenu
->timestamp
< stbuf
.st_mtime
) {
1065 dict
= ReadProplistFromFile(WDRootMenu
->path
);
1067 puts("Checking WMRootMenu domain");
1070 if (!PLIsArray(dict
) && !PLIsString(dict
)) {
1073 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1074 "WMRootMenu", WDRootMenu
->path
);
1076 if (WDRootMenu
->dictionary
) {
1077 PLRelease(WDRootMenu
->dictionary
);
1079 WDRootMenu
->dictionary
= dict
;
1082 wwarning(_("could not load domain %s from user defaults database"),
1085 WDRootMenu
->timestamp
= stbuf
.st_mtime
;
1090 WMAddTimerHandler(DEFAULTS_CHECK_INTERVAL
, wDefaultsCheckDomains
, foo
);
1095 wReadDefaults(WScreen
*scr
, proplist_t new_dict
)
1097 proplist_t plvalue
, old_value
;
1098 WDefaultEntry
*entry
;
1102 proplist_t old_dict
= (WDWindowMaker
->dictionary
!=new_dict
1103 ? WDWindowMaker
->dictionary
: NULL
);
1109 for (i
=0; i
<sizeof(optionList
)/sizeof(WDefaultEntry
); i
++) {
1110 entry
= &optionList
[i
];
1113 plvalue
= PLGetDictionaryEntry(new_dict
, entry
->plkey
);
1120 old_value
= PLGetDictionaryEntry(old_dict
, entry
->plkey
);
1123 if (!plvalue
&& !old_value
) {
1124 /* no default in the DB. Use builtin default */
1125 plvalue
= entry
->plvalue
;
1126 if (plvalue
&& new_dict
) {
1127 PLInsertDictionaryEntry(new_dict
, entry
->plkey
, plvalue
);
1130 } else if (!plvalue
) {
1131 /* value was deleted from DB. Keep current value */
1133 } else if (!old_value
) {
1134 /* set value for the 1st time */
1135 } else if (!PLIsEqual(plvalue
, old_value
)) {
1136 /* value has changed */
1138 /* value was not changed since last time */
1144 printf("Updating %s to %s\n", entry
->key
, PLGetDescription(plvalue
));
1147 if ((*entry
->convert
)(scr
, entry
, plvalue
, entry
->addr
, &tdata
)) {
1148 if (entry
->update
) {
1150 (*entry
->update
)(scr
, entry
, tdata
, entry
->extra_data
);
1156 if (needs_refresh
!=0 && !scr
->flags
.startup
) {
1160 if (needs_refresh
& REFRESH_MENU_TITLE_TEXTURE
)
1161 foo
|= WTextureSettings
;
1162 if (needs_refresh
& REFRESH_MENU_TITLE_FONT
)
1163 foo
|= WFontSettings
;
1164 if (needs_refresh
& REFRESH_MENU_TITLE_COLOR
)
1165 foo
|= WColorSettings
;
1167 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged
, NULL
,
1171 if (needs_refresh
& REFRESH_MENU_TEXTURE
)
1172 foo
|= WTextureSettings
;
1173 if (needs_refresh
& REFRESH_MENU_FONT
)
1174 foo
|= WFontSettings
;
1175 if (needs_refresh
& REFRESH_MENU_COLOR
)
1176 foo
|= WColorSettings
;
1178 WMPostNotificationName(WNMenuAppearanceSettingsChanged
, NULL
,
1182 if (needs_refresh
& REFRESH_WINDOW_FONT
) {
1183 foo
|= WFontSettings
;
1185 if (needs_refresh
& REFRESH_WINDOW_TEXTURES
) {
1186 foo
|= WTextureSettings
;
1188 if (needs_refresh
& REFRESH_WINDOW_TITLE_COLOR
) {
1189 foo
|= WColorSettings
;
1192 WMPostNotificationName(WNWindowAppearanceSettingsChanged
, NULL
,
1195 if (!(needs_refresh
& REFRESH_ICON_TILE
)) {
1197 if (needs_refresh
& REFRESH_ICON_FONT
) {
1198 foo
|= WFontSettings
;
1200 if (needs_refresh
& REFRESH_ICON_TITLE_COLOR
) {
1201 foo
|= WTextureSettings
;
1203 if (needs_refresh
& REFRESH_ICON_TITLE_BACK
) {
1204 foo
|= WTextureSettings
;
1207 WMPostNotificationName(WNIconAppearanceSettingsChanged
, NULL
,
1210 if (needs_refresh
& REFRESH_ICON_TILE
)
1211 WMPostNotificationName(WNIconTileSettingsChanged
, NULL
, NULL
);
1217 wDefaultUpdateIcons(WScreen
*scr
)
1219 WAppIcon
*aicon
= scr
->app_icon_list
;
1220 WWindow
*wwin
= scr
->focused_window
;
1224 file
= wDefaultGetIconFile(scr
, aicon
->wm_instance
, aicon
->wm_class
,
1226 if ((file
&& aicon
->icon
->file
&& strcmp(file
, aicon
->icon
->file
)!=0)
1227 || (file
&& !aicon
->icon
->file
)) {
1230 if (aicon
->icon
->file
)
1231 free(aicon
->icon
->file
);
1232 aicon
->icon
->file
= wstrdup(file
);
1234 new_image
= wDefaultGetImage(scr
, aicon
->wm_instance
,
1237 wIconChangeImage(aicon
->icon
, new_image
);
1238 wAppIconPaint(aicon
);
1241 aicon
= aicon
->next
;
1244 if (!wPreferences
.flags
.noclip
)
1245 wClipIconPaint(scr
->clip_icon
);
1248 if (wwin
->icon
&& wwin
->flags
.miniaturized
) {
1249 file
= wDefaultGetIconFile(scr
, wwin
->wm_instance
, wwin
->wm_class
,
1251 if ((file
&& wwin
->icon
->file
&& strcmp(file
, wwin
->icon
->file
)!=0)
1252 || (file
&& !wwin
->icon
->file
)) {
1255 if (wwin
->icon
->file
)
1256 free(wwin
->icon
->file
);
1257 wwin
->icon
->file
= wstrdup(file
);
1259 new_image
= wDefaultGetImage(scr
, wwin
->wm_instance
,
1262 wIconChangeImage(wwin
->icon
, new_image
);
1270 /* --------------------------- Local ----------------------- */
1272 #define STRINGP(x) if (!PLIsString(value)) { \
1273 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1280 string2index(proplist_t key
, proplist_t val
, proplist_t def
,
1281 WOptionEnumeration
*values
)
1284 WOptionEnumeration
*v
;
1285 char buffer
[TOTAL_VALUES_LENGTH
];
1287 if (PLIsString(val
) && (str
= PLGetString(val
))) {
1288 for (v
=values
; v
->string
!=NULL
; v
++) {
1289 if (strcasecmp(v
->string
, str
)==0)
1295 for (v
=values
; v
->string
!=NULL
; v
++) {
1298 strcat(buffer
, ", ");
1299 strcat(buffer
, v
->string
);
1302 wwarning(_("wrong option value for key \"%s\". Should be one of %s"),
1303 PLGetString(key
), buffer
);
1306 return string2index(key
, val
, NULL
, values
);
1316 * value - is the value in the defaults DB
1317 * addr - is the address to store the data
1318 * ret - is the address to store a pointer to a temporary buffer. ret
1319 * must not be freed and is used by the set functions
1322 getBool(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1331 val
= PLGetString(value
);
1334 if ((val
[1]=='\0' && (val
[0]=='y' || val
[0]=='Y'))
1335 || strcasecmp(val
, "YES")==0) {
1338 } else if ((val
[1]=='\0' && (val
[0]=='n' || val
[0]=='N'))
1339 || strcasecmp(val
, "NO")==0) {
1343 if (sscanf(val
, "%i", &i
)==1) {
1349 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""),
1351 if (second_pass
==0) {
1352 val
= PLGetString(entry
->plvalue
);
1354 wwarning(_("using default \"%s\" instead"), val
);
1365 *(char*)addr
= data
;
1373 getInt(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1382 val
= PLGetString(value
);
1384 if (sscanf(val
, "%i", &data
)!=1) {
1385 wwarning(_("can't convert \"%s\" to integer for key \"%s\""),
1387 val
= PLGetString(entry
->plvalue
);
1388 wwarning(_("using default \"%s\" instead"), val
);
1389 if (sscanf(val
, "%i", &data
)!=1) {
1405 getCoord(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1409 char *val_x
, *val_y
;
1410 int nelem
, changed
=0;
1411 proplist_t elem_x
, elem_y
;
1414 if (!PLIsArray(value
)) {
1415 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1416 entry
->key
, "Coordinate");
1418 value
= entry
->plvalue
;
1420 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1426 nelem
= PLGetNumberOfElements(value
);
1428 wwarning(_("Incorrect number of elements in array for key \"%s\"."),
1431 value
= entry
->plvalue
;
1433 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1439 elem_x
= PLGetArrayElement(value
, 0);
1440 elem_y
= PLGetArrayElement(value
, 1);
1442 if (!elem_x
|| !elem_y
|| !PLIsString(elem_x
) || !PLIsString(elem_y
)) {
1443 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."),
1446 value
= entry
->plvalue
;
1448 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1454 val_x
= PLGetString(elem_x
);
1455 val_y
= PLGetString(elem_y
);
1457 if (sscanf(val_x
, "%i", &data
.x
)!=1 || sscanf(val_y
, "%i", &data
.y
)!=1) {
1458 wwarning(_("can't convert array to integers for \"%s\"."), entry
->key
);
1460 value
= entry
->plvalue
;
1462 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1470 else if (data
.x
> scr
->scr_width
/3)
1471 data
.x
= scr
->scr_width
/3;
1474 else if (data
.y
> scr
->scr_height
/3)
1475 data
.y
= scr
->scr_height
/3;
1481 *(WCoord
*)addr
= data
;
1489 /* This function is not used at the moment. */
1491 getString(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1498 data
= PLGetString(value
);
1501 data
= PLGetString(entry
->plvalue
);
1510 *(char**)addr
= wstrdup(data
);
1518 getPathList(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1528 if (!PLIsArray(value
)) {
1529 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1530 entry
->key
, "an array of paths");
1532 value
= entry
->plvalue
;
1534 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1541 count
= PLGetNumberOfElements(value
);
1544 value
= entry
->plvalue
;
1546 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1553 for (i
=0; i
<count
; i
++) {
1554 d
= PLGetArrayElement(value
, i
);
1555 if (!d
|| !PLIsString(d
)) {
1559 len
+= strlen(PLGetString(d
))+1;
1562 ptr
= data
= wmalloc(len
+1);
1564 for (i
=0; i
<count
; i
++) {
1565 d
= PLGetArrayElement(value
, i
);
1566 if (!d
|| !PLIsString(d
)) {
1569 strcpy(ptr
, PLGetString(d
));
1570 ptr
+= strlen(PLGetString(d
));
1574 ptr
--; *(ptr
--) = 0;
1576 if (*(char**)addr
!=NULL
) {
1577 free(*(char**)addr
);
1579 *(char**)addr
= data
;
1586 getEnum(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1589 static signed char data
;
1591 data
= string2index(entry
->plkey
, value
, entry
->default_value
,
1592 (WOptionEnumeration
*)entry
->extra_data
);
1600 *(signed char*)addr
= data
;
1609 * (hgradient <color> <color>)
1610 * (vgradient <color> <color>)
1611 * (dgradient <color> <color>)
1612 * (mhgradient <color> <color> ...)
1613 * (mvgradient <color> <color> ...)
1614 * (tpixmap <file> <color>)
1615 * (spixmap <file> <color>)
1616 * (cpixmap <file> <color>)
1617 * (thgradient <file> <opaqueness> <color> <color>)
1618 * (tvgradient <file> <opaqueness> <color> <color>)
1619 * (tdgradient <file> <opaqueness> <color> <color>)
1620 * (function <lib> <function> ...)
1624 parse_texture(WScreen
*scr
, proplist_t pl
)
1629 WTexture
*texture
=NULL
;
1631 nelem
= PLGetNumberOfElements(pl
);
1636 elem
= PLGetArrayElement(pl
, 0);
1637 if (!elem
|| !PLIsString(elem
))
1639 val
= PLGetString(elem
);
1642 if (strcasecmp(val
, "solid")==0) {
1650 elem
= PLGetArrayElement(pl
, 1);
1651 if (!elem
|| !PLIsString(elem
))
1653 val
= PLGetString(elem
);
1655 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1656 wwarning(_("\"%s\" is not a valid color name"), val
);
1660 texture
= (WTexture
*)wTextureMakeSolid(scr
, &color
);
1661 } else if (strcasecmp(val
, "dgradient")==0
1662 || strcasecmp(val
, "vgradient")==0
1663 || strcasecmp(val
, "hgradient")==0) {
1664 RColor color1
, color2
;
1669 wwarning(_("bad number of arguments in gradient specification"));
1673 if (val
[0]=='d' || val
[0]=='D')
1674 type
= WTEX_DGRADIENT
;
1675 else if (val
[0]=='h' || val
[0]=='H')
1676 type
= WTEX_HGRADIENT
;
1678 type
= WTEX_VGRADIENT
;
1681 /* get from color */
1682 elem
= PLGetArrayElement(pl
, 1);
1683 if (!elem
|| !PLIsString(elem
))
1685 val
= PLGetString(elem
);
1687 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1688 wwarning(_("\"%s\" is not a valid color name"), val
);
1692 color1
.red
= xcolor
.red
>> 8;
1693 color1
.green
= xcolor
.green
>> 8;
1694 color1
.blue
= xcolor
.blue
>> 8;
1697 elem
= PLGetArrayElement(pl
, 2);
1698 if (!elem
|| !PLIsString(elem
)) {
1701 val
= PLGetString(elem
);
1703 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1704 wwarning(_("\"%s\" is not a valid color name"), val
);
1708 color2
.red
= xcolor
.red
>> 8;
1709 color2
.green
= xcolor
.green
>> 8;
1710 color2
.blue
= xcolor
.blue
>> 8;
1712 texture
= (WTexture
*)wTextureMakeGradient(scr
, type
, &color1
, &color2
);
1714 } else if (strcasecmp(val
, "mhgradient")==0
1715 || strcasecmp(val
, "mvgradient")==0
1716 || strcasecmp(val
, "mdgradient")==0) {
1723 wwarning(_("too few arguments in multicolor gradient specification"));
1727 if (val
[1]=='h' || val
[1]=='H')
1728 type
= WTEX_MHGRADIENT
;
1729 else if (val
[1]=='v' || val
[1]=='V')
1730 type
= WTEX_MVGRADIENT
;
1732 type
= WTEX_MDGRADIENT
;
1736 colors
= wmalloc(sizeof(RColor
*)*(count
+1));
1738 for (i
=0; i
<count
; i
++) {
1739 elem
= PLGetArrayElement(pl
, i
+1);
1740 if (!elem
|| !PLIsString(elem
)) {
1741 for (--i
; i
>=0; --i
) {
1747 val
= PLGetString(elem
);
1749 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1750 wwarning(_("\"%s\" is not a valid color name"), val
);
1751 for (--i
; i
>=0; --i
) {
1757 colors
[i
] = wmalloc(sizeof(RColor
));
1758 colors
[i
]->red
= color
.red
>> 8;
1759 colors
[i
]->green
= color
.green
>> 8;
1760 colors
[i
]->blue
= color
.blue
>> 8;
1765 texture
= (WTexture
*)wTextureMakeMGradient(scr
, type
, colors
);
1766 } else if (strcasecmp(val
, "spixmap")==0 ||
1767 strcasecmp(val
, "cpixmap")==0 ||
1768 strcasecmp(val
, "tpixmap")==0) {
1775 if (val
[0] == 's' || val
[0] == 'S')
1777 else if (val
[0] == 'c' || val
[0] == 'C')
1783 elem
= PLGetArrayElement(pl
, 2);
1784 if (!elem
|| !PLIsString(elem
)) {
1787 val
= PLGetString(elem
);
1789 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1790 wwarning(_("\"%s\" is not a valid color name"), val
);
1795 elem
= PLGetArrayElement(pl
, 1);
1796 if (!elem
|| !PLIsString(elem
))
1798 val
= PLGetString(elem
);
1800 texture
= (WTexture
*)wTextureMakePixmap(scr
, type
, val
, &color
);
1801 } else if (strcasecmp(val
, "thgradient")==0
1802 || strcasecmp(val
, "tvgradient")==0
1803 || strcasecmp(val
, "tdgradient")==0) {
1804 RColor color1
, color2
;
1809 if (val
[1]=='h' || val
[1]=='H')
1810 style
= WTEX_THGRADIENT
;
1811 else if (val
[1]=='v' || val
[1]=='V')
1812 style
= WTEX_TVGRADIENT
;
1814 style
= WTEX_TDGRADIENT
;
1817 wwarning(_("bad number of arguments in textured gradient specification"));
1821 /* get from color */
1822 elem
= PLGetArrayElement(pl
, 3);
1823 if (!elem
|| !PLIsString(elem
))
1825 val
= PLGetString(elem
);
1827 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1828 wwarning(_("\"%s\" is not a valid color name"), val
);
1832 color1
.red
= xcolor
.red
>> 8;
1833 color1
.green
= xcolor
.green
>> 8;
1834 color1
.blue
= xcolor
.blue
>> 8;
1837 elem
= PLGetArrayElement(pl
, 4);
1838 if (!elem
|| !PLIsString(elem
)) {
1841 val
= PLGetString(elem
);
1843 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1844 wwarning(_("\"%s\" is not a valid color name"), val
);
1848 color2
.red
= xcolor
.red
>> 8;
1849 color2
.green
= xcolor
.green
>> 8;
1850 color2
.blue
= xcolor
.blue
>> 8;
1853 elem
= PLGetArrayElement(pl
, 2);
1854 if (!elem
|| !PLIsString(elem
))
1857 val
= PLGetString(elem
);
1859 if (!val
|| (opacity
= atoi(val
)) < 0 || opacity
> 255) {
1860 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val
);
1865 elem
= PLGetArrayElement(pl
, 1);
1866 if (!elem
|| !PLIsString(elem
))
1868 val
= PLGetString(elem
);
1870 texture
= (WTexture
*)wTextureMakeTGradient(scr
, style
, &color1
, &color2
,
1873 #ifdef TEXTURE_PLUGIN
1874 else if (strcasecmp(val
, "function")==0) {
1875 WTexFunction
*function
;
1876 void (*initFunc
) (Display
*, Colormap
);
1877 char *lib
, *func
, **argv
;
1883 /* get the library name */
1884 elem
= PLGetArrayElement(pl
, 1);
1885 if (!elem
|| !PLIsString(elem
)) {
1888 lib
= PLGetString(elem
);
1890 /* get the function name */
1891 elem
= PLGetArrayElement(pl
, 2);
1892 if (!elem
|| !PLIsString(elem
)) {
1895 func
= PLGetString(elem
);
1898 argv
= (char **)wmalloc(argc
* sizeof(char *));
1900 /* get the parameters */
1901 argv
[0] = wstrdup(func
);
1902 for (i
= 0; i
< argc
- 1; i
++) {
1903 elem
= PLGetArrayElement(pl
, 3 + i
);
1904 if (!elem
|| !PLIsString(elem
)) {
1909 argv
[i
+1] = wstrdup(PLGetString(elem
));
1912 function
= wTextureMakeFunction(scr
, lib
, func
, argc
, argv
);
1916 initFunc
= dlsym(function
->handle
, "initWindowMaker");
1918 initFunc(dpy
, scr
->w_colormap
);
1920 wwarning(_("could not initialize library %s"), lib
);
1923 wwarning(_("could not find function %s::%s"), lib
, func
);
1925 #endif /* HAVE_DLFCN_H */
1926 texture
= (WTexture
*)function
;
1928 #endif /* TEXTURE_PLUGIN */
1930 wwarning(_("invalid texture type %s"), val
);
1939 getTexture(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
1942 static WTexture
*texture
;
1946 if (!PLIsArray(value
)) {
1947 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1948 entry
->key
, "Texture");
1950 value
= entry
->plvalue
;
1952 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1958 if (strcmp(entry
->key
, "WidgetColor")==0 && !changed
) {
1961 pl
= PLGetArrayElement(value
, 0);
1962 if (!pl
|| !PLIsString(pl
) || !PLGetString(pl
)
1963 || strcasecmp(PLGetString(pl
), "solid")!=0) {
1964 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1965 entry
->key
, "Solid Texture");
1967 value
= entry
->plvalue
;
1969 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1974 texture
= parse_texture(scr
, value
);
1977 wwarning(_("Error in texture specification for key \"%s\""),
1980 value
= entry
->plvalue
;
1982 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1992 *(WTexture
**)addr
= texture
;
2000 getWSBackground(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
,
2001 void *addr
, void **ret
)
2009 if (!PLIsArray(value
)) {
2010 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2011 "WorkspaceBack", "Texture or None");
2013 value
= entry
->plvalue
;
2015 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2021 /* only do basic error checking and verify for None texture */
2023 nelem
= PLGetNumberOfElements(value
);
2025 elem
= PLGetArrayElement(value
, 0);
2026 if (!elem
|| !PLIsString(elem
)) {
2027 wwarning(_("Wrong type for workspace background. Should be a texture type."));
2029 value
= entry
->plvalue
;
2031 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2036 val
= PLGetString(elem
);
2038 if (strcasecmp(val
, "None")==0)
2041 *ret
= PLRetain(value
);
2048 getWSSpecificBackground(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
,
2049 void *addr
, void **ret
)
2056 if (!PLIsArray(value
)) {
2057 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2058 "WorkspaceSpecificBack", "an array of textures");
2060 value
= entry
->plvalue
;
2062 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2068 /* only do basic error checking and verify for None texture */
2070 nelem
= PLGetNumberOfElements(value
);
2073 elem
= PLGetArrayElement(value
, nelem
);
2074 if (!elem
|| !PLIsArray(elem
)) {
2075 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
2081 *ret
= PLRetain(value
);
2085 * Kluge to force wmsetbg helper to set the default background.
2086 * If the WorkspaceSpecificBack is changed once wmaker has started,
2087 * the WorkspaceBack won't be sent to the helper, unless the user
2088 * changes it's value too. So, we must force this by removing the
2089 * value from the defaults DB.
2091 if (!scr
->flags
.backimage_helper_launched
&& !scr
->flags
.startup
) {
2092 proplist_t key
= PLMakeString("WorkspaceBack");
2094 PLRemoveDictionaryEntry(WDWindowMaker
->dictionary
, key
);
2104 getFont(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
2112 val
= PLGetString(value
);
2114 font
= wLoadFont(val
);
2116 wfatal(_("could not load any usable font!!!"));
2123 /* can't assign font value outside update function */
2124 wassertrv(addr
== NULL
, True
);
2131 getColor(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
2134 static XColor color
;
2140 val
= PLGetString(value
);
2143 if (!wGetColor(scr
, val
, &color
)) {
2144 wwarning(_("could not get color for key \"%s\""),
2146 if (second_pass
==0) {
2147 val
= PLGetString(entry
->plvalue
);
2149 wwarning(_("using default \"%s\" instead"), val
);
2161 *(unsigned long*)addr = pixel;
2170 getKeybind(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
2173 static WShortKey shortcut
;
2180 STRINGP("Key spec");
2182 val
= PLGetString(value
);
2184 if (!val
|| strcasecmp(val
, "NONE")==0) {
2185 shortcut
.keycode
= 0;
2186 shortcut
.modifier
= 0;
2197 shortcut
.modifier
= 0;
2198 while ((k
= strchr(b
, '+'))!=NULL
) {
2202 mod
= wXModifierFromKey(b
);
2204 wwarning(_("%s:invalid key modifier \"%s\""), entry
->key
, b
);
2207 shortcut
.modifier
|= mod
;
2213 ksym
= XStringToKeysym(b
);
2215 if (ksym
==NoSymbol
) {
2216 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry
->key
,
2221 shortcut
.keycode
= XKeysymToKeycode(dpy
, ksym
);
2222 if (shortcut
.keycode
==0) {
2223 wwarning(_("%s:invalid key in shortcut \"%s\""), entry
->key
, val
);
2235 getModMask(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
, void *addr
,
2238 static unsigned int mask
;
2241 STRINGP("Modifier Key");
2243 str
= PLGetString(value
);
2247 mask
= wXModifierFromKey(str
);
2249 wwarning(_("%s: modifier key %s is not valid"), entry
->key
, str
);
2255 *(unsigned int*)addr
= mask
;
2266 getRImages(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
,
2267 void *addr
, void **ret
)
2275 STRINGP("Image File Path");
2277 str
= PLGetString(value
);
2281 image
= RLoadImage(scr
->rcontext
, str
, 0);
2283 wwarning(_("could not load image in option %s: %s"), entry
->key
,
2284 RMessageForError(RErrorCode
));
2288 if (*(RImage
**)addr
) {
2289 RDestroyImage(*(RImage
**)addr
);
2292 *(RImage
**)addr
= image
;
2294 assert(ret
== NULL
);
2297 *(RImage**)ret = image;
2305 /* ---------------- value setting functions --------------- */
2307 setJustify(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2309 return REFRESH_WINDOW_TITLE_COLOR
;
2314 setIfDockPresent(WScreen
*scr
, WDefaultEntry
*entry
, int *flag
, long which
)
2318 wPreferences
.flags
.nodock
= wPreferences
.flags
.nodock
|| *flag
;
2321 wPreferences
.flags
.noclip
= wPreferences
.flags
.noclip
|| *flag
;
2331 setStickyIcons(WScreen
*scr
, WDefaultEntry
*entry
, void *bar
, void *foo
)
2333 if (scr
->workspaces
) {
2334 wWorkspaceForceChange(scr
, scr
->current_workspace
);
2335 wArrangeIcons(scr
, False
);
2342 setPositive(WScreen
*scr
, WDefaultEntry
*entry
, int *value
, void *foo
)
2354 setIconTile(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2360 img
= wTextureRenderImage(*texture
, wPreferences
.icon_size
,
2361 wPreferences
.icon_size
,
2362 ((*texture
)->any
.type
& WREL_BORDER_MASK
)
2363 ? WREL_ICON
: WREL_FLAT
);
2365 wwarning(_("could not render texture for icon background"));
2367 wTextureDestroy(scr
, *texture
);
2370 RConvertImage(scr
->rcontext
, img
, &pixmap
);
2372 if (scr
->icon_tile
) {
2374 RDestroyImage(scr
->icon_tile
);
2375 XFreePixmap(dpy
, scr
->icon_tile_pixmap
);
2378 scr
->icon_tile
= img
;
2380 if (!wPreferences
.flags
.noclip
) {
2381 if (scr
->clip_tile
) {
2382 RDestroyImage(scr
->clip_tile
);
2384 scr
->clip_tile
= wClipMakeTile(scr
, img
);
2387 scr
->icon_tile_pixmap
= pixmap
;
2389 if (scr
->def_icon_pixmap
) {
2390 XFreePixmap(dpy
, scr
->def_icon_pixmap
);
2391 scr
->def_icon_pixmap
= None
;
2393 if (scr
->def_ticon_pixmap
) {
2394 XFreePixmap(dpy
, scr
->def_ticon_pixmap
);
2395 scr
->def_ticon_pixmap
= None
;
2398 if (scr
->icon_back_texture
) {
2399 wTextureDestroy(scr
, (WTexture
*)scr
->icon_back_texture
);
2401 scr
->icon_back_texture
= wTextureMakeSolid(scr
, &((*texture
)->any
.color
));
2403 if (scr
->clip_balloon
)
2404 XSetWindowBackground(dpy
, scr
->clip_balloon
,
2405 (*texture
)->any
.color
.pixel
);
2408 * Free the texture as nobody else will use it, nor refer to it.
2411 wTextureDestroy(scr
, *texture
);
2413 return (reset
? REFRESH_ICON_TILE
: 0);
2419 setWinTitleFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2421 if (scr
->title_font
) {
2422 wFreeFont(scr
->title_font
);
2425 scr
->title_font
= font
;
2428 XSetFont(dpy
, scr
->window_title_gc
, font
->font
->fid
);
2431 return REFRESH_WINDOW_FONT
|REFRESH_BUTTON_IMAGES
;
2436 setMenuTitleFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2438 if (scr
->menu_title_font
) {
2439 wFreeFont(scr
->menu_title_font
);
2442 scr
->menu_title_font
= font
;
2445 XSetFont(dpy
, scr
->menu_title_gc
, font
->font
->fid
);
2448 return REFRESH_MENU_TITLE_FONT
;
2453 setMenuTextFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2455 if (scr
->menu_entry_font
) {
2456 wFreeFont(scr
->menu_entry_font
);
2459 scr
->menu_entry_font
= font
;
2462 XSetFont(dpy
, scr
->menu_entry_gc
, font
->font
->fid
);
2463 XSetFont(dpy
, scr
->disabled_menu_entry_gc
, font
->font
->fid
);
2464 XSetFont(dpy
, scr
->select_menu_gc
, font
->font
->fid
);
2467 return REFRESH_MENU_FONT
;
2473 setIconTitleFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2475 if (scr
->icon_title_font
) {
2476 wFreeFont(scr
->icon_title_font
);
2479 scr
->icon_title_font
= font
;
2482 XSetFont(dpy
, scr
->icon_title_gc
, font
->font
->fid
);
2485 return REFRESH_ICON_FONT
;
2490 setClipTitleFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2492 if (scr
->clip_title_font
) {
2493 wFreeFont(scr
->clip_title_font
);
2496 scr
->clip_title_font
= font
;
2499 XSetFont(dpy
, scr
->clip_title_gc
, font
->font
->fid
);
2502 return REFRESH_ICON_FONT
;
2507 setDisplayFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2509 if (scr
->info_text_font
) {
2510 wFreeFont(scr
->info_text_font
);
2513 scr
->info_text_font
= font
;
2516 XSetFont(dpy
, scr
->info_text_gc
, font
->font
->fid
);
2517 XSetFont(dpy
, scr
->line_gc
, font
->font
->fid
);
2520 /* This test works because the scr structure is initially zeroed out
2521 and None = 0. Any other time, the window should be valid. */
2522 if (scr
->geometry_display
!= None
) {
2523 wGetGeometryWindowSize(scr
, &scr
->geometry_display_width
,
2524 &scr
->geometry_display_height
);
2525 XResizeWindow(dpy
, scr
->geometry_display
,
2526 scr
->geometry_display_width
, scr
->geometry_display_height
);
2534 setLargeDisplayFont(WScreen
*scr
, WDefaultEntry
*entry
, WFont
*font
, void *foo
)
2536 if (scr
->workspace_name_font
) {
2537 wFreeFont(scr
->workspace_name_font
);
2540 scr
->workspace_name_font
= font
;
2547 setHightlight(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, void *foo
)
2549 if (scr
->select_pixel
!=scr
->white_pixel
&&
2550 scr
->select_pixel
!=scr
->black_pixel
) {
2551 wFreeColor(scr
, scr
->select_pixel
);
2554 scr
->select_pixel
= color
->pixel
;
2556 return REFRESH_MENU_COLOR
;
2561 setHightlightText(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, void *foo
)
2563 if (scr
->select_text_pixel
!=scr
->white_pixel
&&
2564 scr
->select_text_pixel
!=scr
->black_pixel
) {
2565 wFreeColor(scr
, scr
->select_text_pixel
);
2568 scr
->select_text_pixel
= color
->pixel
;
2570 return REFRESH_MENU_COLOR
;
2575 setClipTitleColor(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, long index
)
2577 if (scr
->clip_title_pixel
[index
]!=scr
->white_pixel
&&
2578 scr
->clip_title_pixel
[index
]!=scr
->black_pixel
) {
2579 wFreeColor(scr
, scr
->clip_title_pixel
[index
]);
2581 scr
->clip_title_pixel
[index
] = color
->pixel
;
2583 #ifdef GRADIENT_CLIP_ARROW
2584 if (index
== CLIP_NORMAL
) {
2586 RColor color1
, color2
;
2587 int pt
= CLIP_BUTTON_SIZE
*wPreferences
.icon_size
/64;
2588 int as
= pt
- 15; /* 15 = 5+5+5 */
2590 FREE_PIXMAP(scr
->clip_arrow_gradient
);
2592 color1
.red
= (color
->red
>> 8)*6/10;
2593 color1
.green
= (color
->green
>> 8)*6/10;
2594 color1
.blue
= (color
->blue
>> 8)*6/10;
2596 color2
.red
= WMIN((color
->red
>> 8)*20/10, 255);
2597 color2
.green
= WMIN((color
->green
>> 8)*20/10, 255);
2598 color2
.blue
= WMIN((color
->blue
>> 8)*20/10, 255);
2600 image
= RRenderGradient(as
+1, as
+1, &color1
, &color2
, RDiagonalGradient
);
2601 RConvertImage(scr
->rcontext
, image
, &scr
->clip_arrow_gradient
);
2602 RDestroyImage(image
);
2604 #endif /* GRADIENT_CLIP_ARROW */
2606 return REFRESH_ICON_TITLE_COLOR
;
2611 setWTitleColor(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, long index
)
2613 if (scr
->window_title_pixel
[index
]!=scr
->white_pixel
&&
2614 scr
->window_title_pixel
[index
]!=scr
->black_pixel
) {
2615 wFreeColor(scr
, scr
->window_title_pixel
[index
]);
2618 scr
->window_title_pixel
[index
] = color
->pixel
;
2620 if (index
== WS_UNFOCUSED
)
2621 XSetForeground(dpy
, scr
->info_text_gc
, color
->pixel
);
2623 return REFRESH_WINDOW_TITLE_COLOR
;
2628 setMenuTitleColor(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, long index
)
2630 #ifdef TITLE_TEXT_SHADOW
2631 if (index
== WS_SMENU
){
2632 if (scr
->menu_title_pixel
[WS_SMENU
]!=scr
->white_pixel
&&
2633 scr
->menu_title_pixel
[WS_SMENU
]!=scr
->black_pixel
) {
2634 wFreeColor(scr
, scr
->menu_title_pixel
[WS_SMENU
]);
2636 scr
->menu_title_pixel
[WS_SMENU
] = color
->pixel
;
2639 if (scr
->menu_title_pixel
[0]!=scr
->white_pixel
&&
2640 scr
->menu_title_pixel
[0]!=scr
->black_pixel
) {
2641 wFreeColor(scr
, scr
->menu_title_pixel
[0]);
2643 scr
->menu_title_pixel
[0] = color
->pixel
;
2645 #else /* !TITLE_TEXT_SHADOW */
2646 if (scr
->menu_title_pixel
[0]!=scr
->white_pixel
&&
2647 scr
->menu_title_pixel
[0]!=scr
->black_pixel
) {
2648 wFreeColor(scr
, scr
->menu_title_pixel
[0]);
2651 scr
->menu_title_pixel
[0] = color
->pixel
;
2652 #endif /* !TITLE_TEXT_SHADOW */
2653 XSetForeground(dpy
, scr
->menu_title_gc
, color
->pixel
);
2655 return REFRESH_MENU_TITLE_COLOR
;
2660 setMenuTextColor(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, void *foo
)
2663 #define gcm (GCForeground|GCBackground|GCFillStyle)
2665 if (scr
->mtext_pixel
!=scr
->white_pixel
&&
2666 scr
->mtext_pixel
!=scr
->black_pixel
) {
2667 wFreeColor(scr
, scr
->mtext_pixel
);
2670 scr
->mtext_pixel
= color
->pixel
;
2672 XSetForeground(dpy
, scr
->menu_entry_gc
, color
->pixel
);
2675 if (scr
->dtext_pixel
== scr
->mtext_pixel
) {
2676 gcv
.foreground
= scr
->white_pixel
;
2677 gcv
.background
= scr
->black_pixel
;
2678 gcv
.fill_style
= FillStippled
;
2680 gcv
.foreground
= scr
->dtext_pixel
;
2681 gcv
.fill_style
= FillSolid
;
2683 XChangeGC(dpy
, scr
->disabled_menu_entry_gc
, gcm
, &gcv
);
2685 return REFRESH_MENU_COLOR
;
2691 setMenuDisabledColor(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, void *foo
)
2694 #define gcm (GCForeground|GCBackground|GCFillStyle)
2696 if (scr
->dtext_pixel
!=scr
->white_pixel
&&
2697 scr
->dtext_pixel
!=scr
->black_pixel
) {
2698 wFreeColor(scr
, scr
->dtext_pixel
);
2701 scr
->dtext_pixel
= color
->pixel
;
2703 if (scr
->dtext_pixel
== scr
->mtext_pixel
) {
2704 gcv
.foreground
= scr
->white_pixel
;
2705 gcv
.background
= scr
->black_pixel
;
2706 gcv
.fill_style
= FillStippled
;
2708 gcv
.foreground
= scr
->dtext_pixel
;
2709 gcv
.fill_style
= FillSolid
;
2711 XChangeGC(dpy
, scr
->disabled_menu_entry_gc
, gcm
, &gcv
);
2713 return REFRESH_MENU_COLOR
;
2718 setIconTitleColor(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, void *foo
)
2720 XSetForeground(dpy
, scr
->icon_title_gc
, color
->pixel
);
2722 return REFRESH_ICON_TITLE_COLOR
;
2727 setIconTitleBack(WScreen
*scr
, WDefaultEntry
*entry
, XColor
*color
, void *foo
)
2729 if (scr
->icon_title_texture
) {
2730 wTextureDestroy(scr
, (WTexture
*)scr
->icon_title_texture
);
2732 XQueryColor (dpy
, scr
->w_colormap
, color
);
2733 scr
->icon_title_texture
= wTextureMakeSolid(scr
, color
);
2735 return REFRESH_ICON_TITLE_BACK
;
2740 trackDeadProcess(pid_t pid
, unsigned char status
, WScreen
*scr
)
2742 close(scr
->helper_fd
);
2744 scr
->helper_pid
= 0;
2745 scr
->flags
.backimage_helper_launched
= 0;
2750 setWorkspaceSpecificBack(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
,
2757 if (scr
->flags
.backimage_helper_launched
) {
2758 if (PLGetNumberOfElements(value
)==0) {
2759 SendHelperMessage(scr
, 'C', 0, NULL
);
2760 SendHelperMessage(scr
, 'K', 0, NULL
);
2769 if (PLGetNumberOfElements(value
) == 0)
2772 if (pipe(filedes
) < 0) {
2773 wsyserror("pipe() failed:can't set workspace specific background image");
2781 wsyserror("fork() failed:can't set workspace specific background image");
2782 if (close(filedes
[0]) < 0)
2783 wsyserror("could not close pipe");
2784 if (close(filedes
[1]) < 0)
2785 wsyserror("could not close pipe");
2787 } else if (pid
== 0) {
2788 SetupEnvironment(scr
);
2791 wsyserror("could not close pipe");
2792 if (dup(filedes
[0]) < 0) {
2793 wsyserror("dup() failed:can't set workspace specific background image");
2795 if (wPreferences
.smooth_workspace_back
)
2796 execlp("wmsetbg", "wmsetbg", "-helper", "-S", "-d", NULL
);
2798 execlp("wmsetbg", "wmsetbg", "-helper", "-d", NULL
);
2799 wsyserror("could not execute wmsetbg");
2803 if (fcntl(filedes
[0], F_SETFD
, FD_CLOEXEC
) < 0) {
2804 wsyserror("error setting close-on-exec flag");
2806 if (fcntl(filedes
[1], F_SETFD
, FD_CLOEXEC
) < 0) {
2807 wsyserror("error setting close-on-exec flag");
2810 scr
->helper_fd
= filedes
[1];
2811 scr
->helper_pid
= pid
;
2812 scr
->flags
.backimage_helper_launched
= 1;
2814 wAddDeathHandler(pid
, (WDeathHandler
*)trackDeadProcess
, scr
);
2816 SendHelperMessage(scr
, 'P', -1, wPreferences
.pixmap_path
);
2820 for (i
= 0; i
< PLGetNumberOfElements(value
); i
++) {
2821 val
= PLGetArrayElement(value
, i
);
2822 if (val
&& PLIsArray(val
) && PLGetNumberOfElements(val
)>0) {
2823 str
= PLGetDescription(val
);
2825 SendHelperMessage(scr
, 'S', i
+1, str
);
2829 SendHelperMessage(scr
, 'U', i
+1, NULL
);
2840 setWorkspaceBack(WScreen
*scr
, WDefaultEntry
*entry
, proplist_t value
,
2843 if (scr
->flags
.backimage_helper_launched
) {
2846 if (PLGetNumberOfElements(value
)==0) {
2847 SendHelperMessage(scr
, 'U', 0, NULL
);
2849 /* set the default workspace background to this one */
2850 str
= PLGetDescription(value
);
2852 SendHelperMessage(scr
, 'S', 0, str
);
2854 SendHelperMessage(scr
, 'C', scr
->current_workspace
+1, NULL
);
2856 SendHelperMessage(scr
, 'U', 0, NULL
);
2863 SetupEnvironment(scr
);
2864 text
= PLGetDescription(value
);
2865 command
= wmalloc(strlen(text
)+40);
2866 if (wPreferences
.smooth_workspace_back
)
2867 sprintf(command
, "wmsetbg -d -S -p '%s' &", text
);
2869 sprintf(command
, "wmsetbg -d -p '%s' &", text
);
2881 setWidgetColor(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2883 if (scr
->widget_texture
) {
2884 wTextureDestroy(scr
, (WTexture
*)scr
->widget_texture
);
2886 scr
->widget_texture
= *(WTexSolid
**)texture
;
2888 if (scr
->geometry_display
!= None
)
2889 XSetWindowBackground(dpy
, scr
->geometry_display
,
2890 scr
->widget_texture
->normal
.pixel
);
2897 setFTitleBack(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2899 if (scr
->window_title_texture
[WS_FOCUSED
]) {
2900 wTextureDestroy(scr
, scr
->window_title_texture
[WS_FOCUSED
]);
2902 scr
->window_title_texture
[WS_FOCUSED
] = *texture
;
2904 return REFRESH_WINDOW_TEXTURES
;
2909 setPTitleBack(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2911 if (scr
->window_title_texture
[WS_PFOCUSED
]) {
2912 wTextureDestroy(scr
, scr
->window_title_texture
[WS_PFOCUSED
]);
2914 scr
->window_title_texture
[WS_PFOCUSED
] = *texture
;
2916 return REFRESH_WINDOW_TEXTURES
;
2921 setUTitleBack(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2923 if (scr
->window_title_texture
[WS_UNFOCUSED
]) {
2924 wTextureDestroy(scr
, scr
->window_title_texture
[WS_UNFOCUSED
]);
2926 scr
->window_title_texture
[WS_UNFOCUSED
] = *texture
;
2928 return REFRESH_WINDOW_TEXTURES
;
2933 setResizebarBack(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2935 if (scr
->resizebar_texture
[0]) {
2936 wTextureDestroy(scr
, scr
->resizebar_texture
[0]);
2938 scr
->resizebar_texture
[0] = *texture
;
2940 return REFRESH_WINDOW_TEXTURES
;
2945 setMenuTitleBack(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2947 if (scr
->menu_title_texture
[0]) {
2948 wTextureDestroy(scr
, scr
->menu_title_texture
[0]);
2950 scr
->menu_title_texture
[0] = *texture
;
2952 return REFRESH_MENU_TITLE_TEXTURE
;
2957 setMenuTextBack(WScreen
*scr
, WDefaultEntry
*entry
, WTexture
**texture
, void *foo
)
2959 if (scr
->menu_item_texture
) {
2960 wTextureDestroy(scr
, scr
->menu_item_texture
);
2961 wTextureDestroy(scr
, (WTexture
*)scr
->menu_item_auxtexture
);
2963 scr
->menu_item_texture
= *texture
;
2965 scr
->menu_item_auxtexture
2966 = wTextureMakeSolid(scr
, &scr
->menu_item_texture
->any
.color
);
2968 return REFRESH_MENU_TEXTURE
;
2973 setKeyGrab(WScreen
*scr
, WDefaultEntry
*entry
, WShortKey
*shortcut
, long index
)
2976 wKeyBindings
[index
] = *shortcut
;
2978 wwin
= scr
->focused_window
;
2980 while (wwin
!=NULL
) {
2981 XUngrabKey(dpy
, AnyKey
, AnyModifier
, wwin
->frame
->core
->window
);
2983 if (!WFLAGP(wwin
, no_bind_keys
)) {
2984 wWindowSetKeyGrabs(wwin
);
2994 setIconPosition(WScreen
*scr
, WDefaultEntry
*entry
, void *bar
, void *foo
)
2996 wArrangeIcons(scr
, True
);
3003 updateUsableArea(WScreen
*scr
, WDefaultEntry
*entry
, void *bar
, void *foo
)
3005 wScreenUpdateUsableArea(scr
);
3012 setMenuStyle(WScreen
*scr
, WDefaultEntry
*entry
, int *value
, void *foo
)
3014 return REFRESH_MENU_TEXTURE
;
3020 setButtonImages(WScreen *scr, WDefaultEntry *entry, int *value, void *foo)
3022 return REFRESH_BUTTON_IMAGES;
3028 * Need access to the double click variables, so that all widgets in
3029 * wmaker panels will have the same dbl-click values.
3030 * TODO: figure a better way of dealing with it.
3035 setDoubleClick(WScreen
*scr
, WDefaultEntry
*entry
, int *value
, void *foo
)
3037 extern _WINGsConfiguration WINGsConfiguration
;
3042 WINGsConfiguration
.doubleClickDelay
= *value
;