- changed behaviour of control/shift double click on titlebar for maximize
[wmaker-crm.git] / src / defaults.c
blob22a641c27634a1f1baf186da10ca4f48221198f8
1 /* defaults.c - manage configuration through defaults db
2 *
3 * Window Maker window manager
4 *
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 * Copyright (c) 1998 Dan Pascu
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 * USA.
24 #include "wconfig.h"
25 #include "plugin.h"
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <ctype.h>
32 #include <time.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <fcntl.h>
36 #include <limits.h>
37 #include <signal.h>
39 #ifdef HAVE_DLFCN_H
40 # include <dlfcn.h>
41 #endif
45 #ifndef PATH_MAX
46 #define PATH_MAX DEFAULT_PATH_MAX
47 #endif
49 #include <X11/Xlib.h>
50 #include <X11/Xutil.h>
51 #include <X11/keysym.h>
53 #include <wraster.h>
56 #include "WindowMaker.h"
57 #include "wcore.h"
58 #include "framewin.h"
59 #include "window.h"
60 #include "texture.h"
61 #include "screen.h"
62 #include "resources.h"
63 #include "defaults.h"
64 #include "keybind.h"
65 #include "xmodifier.h"
66 #include "icon.h"
67 #include "funcs.h"
68 #include "actions.h"
69 #include "dock.h"
70 #include "workspace.h"
71 #include "properties.h"
75 * Our own proplist reader parser. This one will not accept any
76 * syntax errors and is more descriptive in the error messages.
77 * It also doesn't seem to crash.
79 extern proplist_t ReadProplistFromFile(char *file);
82 /***** Global *****/
84 extern WDDomain *WDWindowMaker;
85 extern WDDomain *WDWindowAttributes;
86 extern WDDomain *WDRootMenu;
88 extern int wScreenCount;
90 extern Atom _XA_WINDOWMAKER_ICON_SIZE;
91 extern Atom _XA_WINDOWMAKER_ICON_TILE;
94 extern proplist_t wDomainName;
95 extern proplist_t wAttributeDomainName;
97 extern WPreferences wPreferences;
99 extern WShortKey wKeyBindings[WKBD_LAST];
101 typedef struct {
102 char *key;
103 char *default_value;
104 void *extra_data;
105 void *addr;
106 int (*convert)();
107 int (*update)();
108 proplist_t plkey;
109 proplist_t plvalue; /* default value */
110 } WDefaultEntry;
113 /* used to map strings to integers */
114 typedef struct {
115 char *string;
116 short value;
117 char is_alias;
118 } WOptionEnumeration;
121 /* type converters */
122 static int getBool();
123 static int getInt();
124 static int getCoord();
125 #if 0
126 /* this is not used yet */
127 static int getString();
128 #endif
129 static int getPathList();
130 static int getEnum();
131 static int getTexture();
132 #ifdef DRAWSTRING_PLUGIN
133 static int getTextRenderer();
134 #endif
135 static int getWSBackground();
136 static int getWSSpecificBackground();
137 static int getFont();
138 static int getColor();
139 static int getKeybind();
140 static int getModMask();
141 #ifdef NEWSTUFF
142 static int getRImage();
143 #endif
146 /* value setting functions */
147 static int setJustify();
148 static int setClearance();
149 static int setIfDockPresent();
150 static int setStickyIcons();
152 static int setPositive();
154 static int setWidgetColor();
155 static int setIconTile();
156 static int setWinTitleFont();
157 static int setMenuTitleFont();
158 static int setMenuTextFont();
159 static int setIconTitleFont();
160 static int setIconTitleColor();
161 static int setIconTitleBack();
162 static int setLargeDisplayFont();
163 static int setWTitleColor();
164 static int setFTitleBack();
165 static int setPTitleBack();
166 static int setUTitleBack();
167 static int setResizebarBack();
168 static int setWorkspaceBack();
169 static int setWorkspaceSpecificBack();
170 static int setMenuTitleColor();
171 static int setMenuTextColor();
172 static int setMenuDisabledColor();
173 static int setMenuTitleBack();
174 static int setMenuTextBack();
175 static int setHightlight();
176 static int setHightlightText();
177 static int setKeyGrab();
178 static int setDoubleClick();
179 static int setIconPosition();
181 static int setClipTitleFont();
182 static int setClipTitleColor();
184 static int setMenuStyle();
185 static int setMultiByte();
187 static int updateUsableArea();
189 #ifdef DEFINABLE_CURSOR
190 extern Cursor wCursor[WCUR_LAST];
191 static int getCursor();
192 static int setCursor();
193 #endif
197 * Tables to convert strings to enumeration values.
198 * Values stored are char
202 /* WARNING: sum of length of all value strings must not exceed
203 * this value */
204 #define TOTAL_VALUES_LENGTH 80
209 #define REFRESH_WINDOW_TEXTURES (1<<0)
210 #define REFRESH_MENU_TEXTURE (1<<1)
211 #define REFRESH_MENU_FONT (1<<2)
212 #define REFRESH_MENU_COLOR (1<<3)
213 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
214 #define REFRESH_MENU_TITLE_FONT (1<<5)
215 #define REFRESH_MENU_TITLE_COLOR (1<<6)
216 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
217 #define REFRESH_WINDOW_FONT (1<<8)
218 #define REFRESH_ICON_TILE (1<<9)
219 #define REFRESH_ICON_FONT (1<<10)
220 #define REFRESH_WORKSPACE_BACK (1<<11)
222 #define REFRESH_BUTTON_IMAGES (1<<12)
224 #define REFRESH_ICON_TITLE_COLOR (1<<13)
225 #define REFRESH_ICON_TITLE_BACK (1<<14)
229 static WOptionEnumeration seFocusModes[] = {
230 {"Manual", WKF_CLICK, 0}, {"ClickToFocus", WKF_CLICK, 1},
231 {"Auto", WKF_POINTER, 0}, {"FocusFollowMouse", WKF_POINTER, 1},
232 {"Sloppy", WKF_SLOPPY, 0}, {"SemiAuto", WKF_SLOPPY, 1},
233 {NULL, 0, 0}
236 static WOptionEnumeration seColormapModes[] = {
237 {"Manual", WKF_CLICK, 0}, {"ClickToFocus", WKF_CLICK, 1},
238 {"Auto", WKF_POINTER, 0}, {"FocusFollowMouse", WKF_POINTER, 1},
239 {NULL, 0, 0}
242 static WOptionEnumeration sePlacements[] = {
243 {"Auto", WPM_AUTO, 0},
244 {"Smart", WPM_SMART, 0},
245 {"Cascade", WPM_CASCADE, 0},
246 {"Random", WPM_RANDOM, 0},
247 {"Manual", WPM_MANUAL, 0},
248 {NULL, 0, 0}
251 static WOptionEnumeration seGeomDisplays[] = {
252 {"Center", WDIS_CENTER, 0},
253 {"Corner", WDIS_TOPLEFT, 0},
254 {"Floating", WDIS_FRAME_CENTER, 0},
255 {"Line", WDIS_NEW, 0},
256 {NULL, 0, 0}
259 static WOptionEnumeration seSpeeds[] = {
260 {"UltraFast", SPEED_ULTRAFAST, 0},
261 {"Fast", SPEED_FAST, 0},
262 {"Medium", SPEED_MEDIUM, 0},
263 {"Slow", SPEED_SLOW, 0},
264 {"UltraSlow", SPEED_ULTRASLOW, 0},
265 {NULL, 0, 0}
268 static WOptionEnumeration seMouseButtons[] = {
269 {"None", -1, 0},
270 {"Left", Button1, 0}, {"Button1", Button1, 1},
271 {"Middle", Button2, 0}, {"Button2", Button2, 1},
272 {"Right", Button3, 0}, {"Button3", Button3, 1},
273 {"Button4", Button4, 0},
274 {"Button5", Button5, 0},
275 {NULL, 0, 0}
278 static WOptionEnumeration seIconificationStyles[] = {
279 {"Zoom", WIS_ZOOM, 0},
280 {"Twist", WIS_TWIST, 0},
281 {"Flip", WIS_FLIP, 0},
282 {"None", WIS_NONE, 0},
283 {"random", WIS_RANDOM, 0},
284 {NULL, 0, 0}
287 static WOptionEnumeration seJustifications[] = {
288 {"Left", WTJ_LEFT, 0},
289 {"Center", WTJ_CENTER, 0},
290 {"Right", WTJ_RIGHT, 0},
291 {NULL, 0, 0}
294 static WOptionEnumeration seIconPositions[] = {
295 {"blv", IY_BOTTOM|IY_LEFT|IY_VERT, 0},
296 {"blh", IY_BOTTOM|IY_LEFT|IY_HORIZ, 0},
297 {"brv", IY_BOTTOM|IY_RIGHT|IY_VERT, 0},
298 {"brh", IY_BOTTOM|IY_RIGHT|IY_HORIZ, 0},
299 {"tlv", IY_TOP|IY_LEFT|IY_VERT, 0},
300 {"tlh", IY_TOP|IY_LEFT|IY_HORIZ, 0},
301 {"trv", IY_TOP|IY_RIGHT|IY_VERT, 0},
302 {"trh", IY_TOP|IY_RIGHT|IY_HORIZ, 0},
303 {NULL, 0, 0}
306 static WOptionEnumeration seMenuStyles[] = {
307 {"normal", MS_NORMAL, 0},
308 {"singletexture", MS_SINGLE_TEXTURE, 0},
309 {"flat", MS_FLAT, 0},
310 {NULL, 0, 0}
314 static WOptionEnumeration seDisplayPositions[] = {
315 {"none", WD_NONE, 0},
316 {"center", WD_CENTER, 0},
317 {"top", WD_TOP, 0},
318 {"bottom", WD_BOTTOM, 0},
319 {"topleft", WD_TOPLEFT, 0},
320 {"topright", WD_TOPRIGHT, 0},
321 {"bottomleft", WD_BOTTOMLEFT, 0},
322 {"bottomright", WD_BOTTOMRIGHT, 0}
327 * ALL entries in the tables bellow, NEED to have a default value
328 * defined, and this value needs to be correct.
331 /* these options will only affect the window manager on startup
333 * static defaults can't access the screen data, because it is
334 * created after these defaults are read
336 WDefaultEntry staticOptionList[] = {
338 {"ColormapSize", "4", NULL,
339 &wPreferences.cmap_size, getInt, NULL
341 {"DisableDithering", "NO", NULL,
342 &wPreferences.no_dithering, getBool, NULL
344 /* static by laziness */
345 {"IconSize", "64", NULL,
346 &wPreferences.icon_size, getInt, NULL
348 {"ModifierKey", "Mod1", NULL,
349 &wPreferences.modifier_mask, getModMask, NULL
351 {"DisableWSMouseActions", "NO", NULL,
352 &wPreferences.disable_root_mouse, getBool, NULL
354 {"FocusMode", "manual", seFocusModes,
355 &wPreferences.focus_mode, getEnum, NULL
356 }, /* have a problem when switching from manual to sloppy without restart */
357 {"NewStyle", "NO", NULL,
358 &wPreferences.new_style, getBool, NULL
360 {"DisableDock", "NO", (void*) WM_DOCK,
361 NULL, getBool, setIfDockPresent
363 {"DisableClip", "NO", (void*) WM_CLIP,
364 NULL, getBool, setIfDockPresent
366 {"DisableMiniwindows", "NO", NULL,
367 &wPreferences.disable_miniwindows, getBool, NULL
369 {"MultiByteText", "NO", NULL,
370 &wPreferences.multi_byte_text, getBool, setMultiByte
376 WDefaultEntry optionList[] = {
377 /* dynamic options */
378 {"IconPosition", "blh", seIconPositions,
379 &wPreferences.icon_yard, getEnum, setIconPosition
381 {"IconificationStyle", "Zoom", seIconificationStyles,
382 &wPreferences.iconification_style, getEnum, NULL
384 {"SelectWindowsMouseButton", "Left", seMouseButtons,
385 &wPreferences.select_button, getEnum, NULL
387 {"WindowListMouseButton", "Middle", seMouseButtons,
388 &wPreferences.windowl_button, getEnum, NULL
390 {"ApplicationMenuMouseButton", "Right", seMouseButtons,
391 &wPreferences.menu_button, getEnum, NULL
393 {"PixmapPath", DEF_PIXMAP_PATHS, NULL,
394 &wPreferences.pixmap_path, getPathList, NULL
396 {"IconPath", DEF_ICON_PATHS, NULL,
397 &wPreferences.icon_path, getPathList, NULL
399 {"ColormapMode", "auto", seColormapModes,
400 &wPreferences.colormap_mode, getEnum, NULL
402 {"AutoFocus", "NO", NULL,
403 &wPreferences.auto_focus, getBool, NULL
405 {"RaiseDelay", "0", NULL,
406 &wPreferences.raise_delay, getInt, NULL
408 {"WindozeCycling", "YES", NULL,
409 &wPreferences.windows_cycling,getBool, NULL
411 {"CirculateRaise", "NO", NULL,
412 &wPreferences.circ_raise, getBool, NULL
414 {"Superfluous", "NO", NULL,
415 &wPreferences.superfluous, getBool, NULL
417 {"AdvanceToNewWorkspace", "NO", NULL,
418 &wPreferences.ws_advance, getBool, NULL
420 {"CycleWorkspaces", "NO", NULL,
421 &wPreferences.ws_cycle, getBool, NULL
423 {"WorkspaceNameDisplayPosition", "center", seDisplayPositions,
424 &wPreferences.workspace_name_display_position, getEnum, NULL
426 #ifdef VIRTUAL_DESKTOP
427 {"VirtualEdgeThickness", "1", NULL,
428 &wPreferences.vedge_thickness, getInt, NULL
430 {"VirtualEdgeHorizonScrollSpeed", "1", NULL,
431 &wPreferences.vedge_hscrollspeed, getInt, NULL
433 {"VirtualEdgeVerticalScrollSpeed", "1", NULL,
434 &wPreferences.vedge_vscrollspeed, getInt, NULL
436 {"VirtualEdgeWidth", "2000", NULL,
437 &wPreferences.vedge_width, getInt, NULL
439 {"VirtualEdgeHeight", "2000", NULL,
440 &wPreferences.vedge_height, getInt, NULL
442 #endif
443 {"StickyIcons", "NO", NULL,
444 &wPreferences.sticky_icons, getBool, setStickyIcons
446 {"SaveSessionOnExit", "NO", NULL,
447 &wPreferences.save_session_on_exit, getBool, NULL
449 {"WrapMenus", "NO", NULL,
450 &wPreferences.wrap_menus, getBool, NULL
452 {"ScrollableMenus", "NO", NULL,
453 &wPreferences.scrollable_menus, getBool, NULL
455 {"MenuScrollSpeed", "medium", seSpeeds,
456 &wPreferences.menu_scroll_speed, getEnum, NULL
458 {"IconSlideSpeed", "medium", seSpeeds,
459 &wPreferences.icon_slide_speed, getEnum, NULL
461 {"ShadeSpeed", "medium", seSpeeds,
462 &wPreferences.shade_speed, getEnum, NULL
464 {"DoubleClickTime", "250", (void*) &wPreferences.dblclick_time,
465 &wPreferences.dblclick_time, getInt, setDoubleClick,
467 {"AlignSubmenus", "NO", NULL,
468 &wPreferences.align_menus, getBool, NULL
470 {"OpenTransientOnOwnerWorkspace", "NO", NULL,
471 &wPreferences.open_transients_with_parent, getBool, NULL
473 {"WindowPlacement", "auto", sePlacements,
474 &wPreferences.window_placement, getEnum, NULL
476 {"IgnoreFocusClick","NO", NULL,
477 &wPreferences.ignore_focus_click, getBool, NULL
479 {"UseSaveUnders", "NO", NULL,
480 &wPreferences.use_saveunders, getBool, NULL
482 {"OpaqueMove", "NO", NULL,
483 &wPreferences.opaque_move, getBool, NULL
485 {"DisableSound", "NO", NULL,
486 &wPreferences.no_sound, getBool, NULL
488 {"DisableAnimations", "NO", NULL,
489 &wPreferences.no_animations, getBool, NULL
491 {"DontLinkWorkspaces","NO", NULL,
492 &wPreferences.no_autowrap, getBool, NULL
494 {"AutoArrangeIcons", "NO", NULL,
495 &wPreferences.auto_arrange_icons, getBool, NULL
497 {"NoWindowOverDock", "NO", NULL,
498 &wPreferences.no_window_over_dock, getBool, updateUsableArea
500 {"NoWindowOverIcons", "NO", NULL,
501 &wPreferences.no_window_over_icons, getBool, updateUsableArea
503 {"WindowPlaceOrigin", "(0, 0)", NULL,
504 &wPreferences.window_place_origin, getCoord, NULL
506 {"ResizeDisplay", "corner", seGeomDisplays,
507 &wPreferences.size_display, getEnum, NULL
509 {"MoveDisplay", "corner", seGeomDisplays,
510 &wPreferences.move_display, getEnum, NULL
512 {"DontConfirmKill", "NO", NULL,
513 &wPreferences.dont_confirm_kill, getBool,NULL
515 {"WindowTitleBalloons", "NO", NULL,
516 &wPreferences.window_balloon, getBool, NULL
518 {"MiniwindowTitleBalloons", "NO", NULL,
519 &wPreferences.miniwin_balloon,getBool, NULL
521 {"AppIconBalloons", "NO", NULL,
522 &wPreferences.appicon_balloon,getBool, NULL
524 {"HelpBalloons", "NO", NULL,
525 &wPreferences.help_balloon, getBool, NULL
527 {"EdgeResistance", "30", NULL,
528 &wPreferences.edge_resistance,getInt, NULL
530 {"Attraction", "NO", NULL,
531 &wPreferences.attract, getBool, NULL
533 {"DisableBlinking", "NO", NULL,
534 &wPreferences.dont_blink, getBool, NULL
536 /* style options */
537 {"MenuStyle", "normal", seMenuStyles,
538 &wPreferences.menu_style, getEnum, setMenuStyle
540 {"WidgetColor", "(solid, gray)", NULL,
541 NULL, getTexture, setWidgetColor,
543 {"WorkspaceSpecificBack","()", NULL,
544 NULL, getWSSpecificBackground, setWorkspaceSpecificBack
546 /* WorkspaceBack must come after WorkspaceSpecificBack or
547 * WorkspaceBack wont know WorkspaceSpecificBack was also
548 * specified and 2 copies of wmsetbg will be launched */
549 {"WorkspaceBack", "(solid, black)", NULL,
550 NULL, getWSBackground,setWorkspaceBack
552 {"SmoothWorkspaceBack", "NO", NULL,
553 NULL, getBool, NULL
555 {"IconBack", "(solid, gray)", NULL,
556 NULL, getTexture, setIconTile
558 {"TitleJustify", "center", seJustifications,
559 &wPreferences.title_justification, getEnum, setJustify
561 {"WindowTitleFont", DEF_TITLE_FONT, NULL,
562 NULL, getFont, setWinTitleFont,
564 {"WindowTitleExtendSpace", DEF_WINDOW_TITLE_EXTEND_SPACE, NULL,
565 &wPreferences.window_title_clearance, getInt, setClearance
567 {"MenuTitleExtendSpace", DEF_MENU_TITLE_EXTEND_SPACE, NULL,
568 &wPreferences.menu_title_clearance, getInt, setClearance
570 {"MenuTextExtendSpace", DEF_MENU_TEXT_EXTEND_SPACE, NULL,
571 &wPreferences.menu_text_clearance, getInt, setClearance
573 {"MenuTitleFont", DEF_MENU_TITLE_FONT, NULL,
574 NULL, getFont, setMenuTitleFont
576 {"MenuTextFont", DEF_MENU_ENTRY_FONT, NULL,
577 NULL, getFont, setMenuTextFont
579 {"IconTitleFont", DEF_ICON_TITLE_FONT, NULL,
580 NULL, getFont, setIconTitleFont
582 {"ClipTitleFont", DEF_CLIP_TITLE_FONT, NULL,
583 NULL, getFont, setClipTitleFont
585 {"LargeDisplayFont",DEF_WORKSPACE_NAME_FONT, NULL,
586 NULL, getFont, setLargeDisplayFont
588 {"HighlightColor", "white", NULL,
589 NULL, getColor, setHightlight
591 {"HighlightTextColor", "black", NULL,
592 NULL, getColor, setHightlightText
594 {"ClipTitleColor", "black", (void*)CLIP_NORMAL,
595 NULL, getColor, setClipTitleColor
597 {"CClipTitleColor", "\"#454045\"", (void*)CLIP_COLLAPSED,
598 NULL, getColor, setClipTitleColor
600 #ifdef DRAWSTRING_PLUGIN
601 {"FTitleColor", "white", (void*)WS_FOCUSED,
602 NULL, getTextRenderer, setWTitleColor
604 {"PTitleColor", "white", (void*)WS_PFOCUSED,
605 NULL, getTextRenderer, setWTitleColor
607 {"UTitleColor", "black", (void*)WS_UNFOCUSED,
608 NULL, getTextRenderer, setWTitleColor
610 #else
611 {"FTitleColor", "white", (void*)WS_FOCUSED,
612 NULL, getColor, setWTitleColor
614 {"PTitleColor", "white", (void*)WS_PFOCUSED,
615 NULL, getColor, setWTitleColor
617 {"UTitleColor", "black", (void*)WS_UNFOCUSED,
618 NULL, getColor, setWTitleColor
620 #endif
621 {"FTitleBack", "(solid, black)", NULL,
622 NULL, getTexture, setFTitleBack
624 {"PTitleBack", "(solid, \"#616161\")", NULL,
625 NULL, getTexture, setPTitleBack
627 {"UTitleBack", "(solid, gray)", NULL,
628 NULL, getTexture, setUTitleBack
630 {"ResizebarBack", "(solid, gray)", NULL,
631 NULL, getTexture, setResizebarBack
633 #ifdef DRAWSTRING_PLUGIN
634 {"MenuTitleColor", "white", NULL,
635 NULL, getTextRenderer, setMenuTitleColor
637 #else
638 {"MenuTitleColor", "white", NULL,
639 NULL, getColor, setMenuTitleColor
641 #endif
642 {"MenuTextColor", "black", NULL,
643 NULL, getColor, setMenuTextColor
645 {"MenuDisabledColor", "\"#616161\"", NULL,
646 NULL, getColor, setMenuDisabledColor
648 {"MenuTitleBack", "(solid, black)", NULL,
649 NULL, getTexture, setMenuTitleBack
651 {"MenuTextBack", "(solid, gray)", NULL,
652 NULL, getTexture, setMenuTextBack
654 {"IconTitleColor", "white", NULL,
655 NULL, getColor, setIconTitleColor
657 {"IconTitleBack", "black", NULL,
658 NULL, getColor, setIconTitleBack
660 /* keybindings */
661 #ifndef LITE
662 {"RootMenuKey", "None", (void*)WKBD_ROOTMENU,
663 NULL, getKeybind, setKeyGrab
665 {"WindowListKey", "None", (void*)WKBD_WINDOWLIST,
666 NULL, getKeybind, setKeyGrab
668 #endif /* LITE */
669 {"WindowMenuKey", "None", (void*)WKBD_WINDOWMENU,
670 NULL, getKeybind, setKeyGrab
672 {"ClipLowerKey", "None", (void*)WKBD_CLIPLOWER,
673 NULL, getKeybind, setKeyGrab
675 {"ClipRaiseKey", "None", (void*)WKBD_CLIPRAISE,
676 NULL, getKeybind, setKeyGrab
678 {"ClipRaiseLowerKey", "None", (void*)WKBD_CLIPRAISELOWER,
679 NULL, getKeybind, setKeyGrab
681 {"MiniaturizeKey", "None", (void*)WKBD_MINIATURIZE,
682 NULL, getKeybind, setKeyGrab
684 {"HideKey", "None", (void*)WKBD_HIDE,
685 NULL, getKeybind, setKeyGrab
687 {"MoveResizeKey", "None", (void*)WKBD_MOVERESIZE,
688 NULL, getKeybind, setKeyGrab
690 {"CloseKey", "None", (void*)WKBD_CLOSE,
691 NULL, getKeybind, setKeyGrab
693 {"MaximizeKey", "None", (void*)WKBD_MAXIMIZE,
694 NULL, getKeybind, setKeyGrab
696 {"VMaximizeKey", "None", (void*)WKBD_VMAXIMIZE,
697 NULL, getKeybind, setKeyGrab
699 {"RaiseKey", "\"Meta+Up\"", (void*)WKBD_RAISE,
700 NULL, getKeybind, setKeyGrab
702 {"LowerKey", "\"Meta+Down\"", (void*)WKBD_LOWER,
703 NULL, getKeybind, setKeyGrab
705 {"RaiseLowerKey", "None", (void*)WKBD_RAISELOWER,
706 NULL, getKeybind, setKeyGrab
708 {"ShadeKey", "None", (void*)WKBD_SHADE,
709 NULL, getKeybind, setKeyGrab
711 {"SelectKey", "None", (void*)WKBD_SELECT,
712 NULL, getKeybind, setKeyGrab
714 {"FocusNextKey", "None", (void*)WKBD_FOCUSNEXT,
715 NULL, getKeybind, setKeyGrab
717 {"FocusPrevKey", "None", (void*)WKBD_FOCUSPREV,
718 NULL, getKeybind, setKeyGrab
720 {"NextWorkspaceKey", "None", (void*)WKBD_NEXTWORKSPACE,
721 NULL, getKeybind, setKeyGrab
723 {"PrevWorkspaceKey", "None", (void*)WKBD_PREVWORKSPACE,
724 NULL, getKeybind, setKeyGrab
726 {"NextWorkspaceLayerKey", "None", (void*)WKBD_NEXTWSLAYER,
727 NULL, getKeybind, setKeyGrab
729 {"PrevWorkspaceLayerKey", "None", (void*)WKBD_PREVWSLAYER,
730 NULL, getKeybind, setKeyGrab
732 {"Workspace1Key", "None", (void*)WKBD_WORKSPACE1,
733 NULL, getKeybind, setKeyGrab
735 {"Workspace2Key", "None", (void*)WKBD_WORKSPACE2,
736 NULL, getKeybind, setKeyGrab
738 {"Workspace3Key", "None", (void*)WKBD_WORKSPACE3,
739 NULL, getKeybind, setKeyGrab
741 {"Workspace4Key", "None", (void*)WKBD_WORKSPACE4,
742 NULL, getKeybind, setKeyGrab
744 {"Workspace5Key", "None", (void*)WKBD_WORKSPACE5,
745 NULL, getKeybind, setKeyGrab
747 {"Workspace6Key", "None", (void*)WKBD_WORKSPACE6,
748 NULL, getKeybind, setKeyGrab
750 {"Workspace7Key", "None", (void*)WKBD_WORKSPACE7,
751 NULL, getKeybind, setKeyGrab
753 {"Workspace8Key", "None", (void*)WKBD_WORKSPACE8,
754 NULL, getKeybind, setKeyGrab
756 {"Workspace9Key", "None", (void*)WKBD_WORKSPACE9,
757 NULL, getKeybind, setKeyGrab
759 {"Workspace10Key", "None", (void*)WKBD_WORKSPACE10,
760 NULL, getKeybind, setKeyGrab
762 {"WindowShortcut1Key","None", (void*)WKBD_WINDOW1,
763 NULL, getKeybind, setKeyGrab
765 {"WindowShortcut2Key","None", (void*)WKBD_WINDOW2,
766 NULL, getKeybind, setKeyGrab
768 {"WindowShortcut3Key","None", (void*)WKBD_WINDOW3,
769 NULL, getKeybind, setKeyGrab
771 {"WindowShortcut4Key","None", (void*)WKBD_WINDOW4,
772 NULL, getKeybind, setKeyGrab
774 #ifdef EXTEND_WINDOWSHORTCUT
775 ,{"WindowShortcut5Key","None", (void*)WKBD_WINDOW5,
776 NULL, getKeybind, setKeyGrab
778 {"WindowShortcut6Key","None", (void*)WKBD_WINDOW6,
779 NULL, getKeybind, setKeyGrab
781 {"WindowShortcut7Key","None", (void*)WKBD_WINDOW7,
782 NULL, getKeybind, setKeyGrab
784 {"WindowShortcut8Key","None", (void*)WKBD_WINDOW8,
785 NULL, getKeybind, setKeyGrab
787 {"WindowShortcut9Key","None", (void*)WKBD_WINDOW9,
788 NULL, getKeybind, setKeyGrab
790 {"WindowShortcut10Key","None", (void*)WKBD_WINDOW10,
791 NULL, getKeybind, setKeyGrab
793 #endif /* EXTEND_WINDOWSHORTCUT */
795 #ifdef KEEP_XKB_LOCK_STATUS
796 ,{"ToggleKbdModeKey", "None", (void*)WKBD_TOGGLE,
797 NULL, getKeybind, setKeyGrab
799 {"KbdModeLock", "NO", NULL,
800 &wPreferences.modelock, getBool, NULL
802 #endif /* KEEP_XKB_LOCK_STATUS */
803 #ifdef DEFINABLE_CURSOR
804 ,{"NormalCursor", "(builtin, left_ptr)", (void*)WCUR_ROOT,
805 NULL, getCursor, setCursor
807 ,{"MoveCursor", "(builtin, fleur)", (void*)WCUR_MOVE,
808 NULL, getCursor, setCursor
810 #if 0
811 {"TopLeftResizeCursor", "(builtin, sizing)", (void*)WCUR_TOPLEFTRESIZE,
812 NULL, getCursor, setCursor
814 {"TopRightResizeCursor", "(builtin, sizing)", (void*)WCUR_TOPRIGHTRESIZE,
815 NULL, getCursor, setCursor
817 {"BottomLeftResizeCursor", "(builtin, sizing)", (void*)WCUR_BOTTOMLEFTRESIZE,
818 NULL, getCursor, setCursor
820 {"BottomRightResizeCursor", "(builtin, sizing)", (void*)WCUR_BOTTOMRIGHTRESIZE,
821 NULL, getCursor, setCursor
823 {"VerticalResizeCursor", "(builtin, sizing)", (void*)WCUR_VERTICALRESIZE,
824 NULL, getCursor, setCursor
826 {"HorizonResizeCursor", "(builtin, sizing)", (void*)WCUR_HORIZONRESIZE,
827 NULL, getCursor, setCursor
829 {"WaitCursor", "(builtin, watch)", (void*)WCUR_WAIT,
830 NULL, getCursor, setCursor
832 {"ArrowCursor", "(builtin, top_left_arrow)", (void*)WCUR_ARROW,
833 NULL, getCursor, setCursor
835 #endif
836 #endif /* DEFINABLE_CURSOR */
840 #if 0
841 static void rereadDefaults(void);
842 #endif
844 #if 0
845 static void
846 rereadDefaults(void)
848 /* must defer the update because accessing X data from a
849 * signal handler can mess up Xlib */
852 #endif
854 static void
855 initDefaults()
857 int i;
858 WDefaultEntry *entry;
860 PLSetStringCmpHook(StringCompareHook);
862 for (i=0; i<sizeof(optionList)/sizeof(WDefaultEntry); i++) {
863 entry = &optionList[i];
865 entry->plkey = PLMakeString(entry->key);
866 if (entry->default_value)
867 entry->plvalue = PLGetProplistWithDescription(entry->default_value);
868 else
869 entry->plvalue = NULL;
872 for (i=0; i<sizeof(staticOptionList)/sizeof(WDefaultEntry); i++) {
873 entry = &staticOptionList[i];
875 entry->plkey = PLMakeString(entry->key);
876 if (entry->default_value)
877 entry->plvalue = PLGetProplistWithDescription(entry->default_value);
878 else
879 entry->plvalue = NULL;
883 wDomainName = PLMakeString(WMDOMAIN_NAME);
884 wAttributeDomainName = PLMakeString(WMATTRIBUTE_DOMAIN_NAME);
886 PLRegister(wDomainName, rereadDefaults);
887 PLRegister(wAttributeDomainName, rereadDefaults);
894 #if 0
895 proplist_t
896 wDefaultsInit(int screen_number)
898 static int defaults_inited = 0;
899 proplist_t dict;
901 if (!defaults_inited) {
902 initDefaults();
905 dict = PLGetDomain(wDomainName);
906 if (!dict) {
907 wwarning(_("could not read domain \"%s\" from defaults database"),
908 PLGetString(wDomainName));
911 return dict;
913 #endif
916 void
917 wDefaultsDestroyDomain(WDDomain *domain)
919 if (domain->dictionary)
920 PLRelease(domain->dictionary);
921 free(domain->path);
922 free(domain);
926 WDDomain*
927 wDefaultsInitDomain(char *domain, Bool requireDictionary)
929 WDDomain *db;
930 struct stat stbuf;
931 static int inited = 0;
932 char path[PATH_MAX];
933 char *the_path;
934 proplist_t shared_dict=NULL;
936 if (!inited) {
937 inited = 1;
938 initDefaults();
941 db = wmalloc(sizeof(WDDomain));
942 memset(db, 0, sizeof(WDDomain));
943 db->domain_name = domain;
944 db->path = wdefaultspathfordomain(domain);
945 the_path = db->path;
947 if (the_path && stat(the_path, &stbuf)>=0) {
948 db->dictionary = ReadProplistFromFile(the_path);
949 if (db->dictionary) {
950 if (requireDictionary && !PLIsDictionary(db->dictionary)) {
951 PLRelease(db->dictionary);
952 db->dictionary = NULL;
953 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
954 domain, the_path);
956 db->timestamp = stbuf.st_mtime;
957 } else {
958 wwarning(_("could not load domain %s from user defaults database"),
959 domain);
963 /* global system dictionary */
964 sprintf(path, "%s/WindowMaker/%s", SYSCONFDIR, domain);
965 if (stat(path, &stbuf)>=0) {
966 shared_dict = ReadProplistFromFile(path);
967 if (shared_dict) {
968 if (requireDictionary && !PLIsDictionary(shared_dict)) {
969 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
970 domain, path);
971 PLRelease(shared_dict);
972 shared_dict = NULL;
973 } else {
974 if (db->dictionary && PLIsDictionary(shared_dict) &&
975 PLIsDictionary(db->dictionary)) {
976 PLMergeDictionaries(shared_dict, db->dictionary);
977 PLRelease(db->dictionary);
978 db->dictionary = shared_dict;
979 if (stbuf.st_mtime > db->timestamp)
980 db->timestamp = stbuf.st_mtime;
981 } else if (!db->dictionary) {
982 db->dictionary = shared_dict;
983 if (stbuf.st_mtime > db->timestamp)
984 db->timestamp = stbuf.st_mtime;
987 } else {
988 wwarning(_("could not load domain %s from global defaults database (%s)"),
989 domain, path);
993 /* set to save it in user's directory, no matter from where it was read */
994 if (db->dictionary) {
995 proplist_t tmp = PLMakeString(db->path);
997 PLSetFilename(db->dictionary, tmp);
998 PLRelease(tmp);
1001 return db;
1005 void
1006 wReadStaticDefaults(proplist_t dict)
1008 proplist_t plvalue;
1009 WDefaultEntry *entry;
1010 int i;
1011 void *tdata;
1014 for (i=0; i<sizeof(staticOptionList)/sizeof(WDefaultEntry); i++) {
1015 entry = &staticOptionList[i];
1017 if (dict)
1018 plvalue = PLGetDictionaryEntry(dict, entry->plkey);
1019 else
1020 plvalue = NULL;
1022 if (!plvalue) {
1023 /* no default in the DB. Use builtin default */
1024 plvalue = entry->plvalue;
1027 if (plvalue) {
1028 /* convert data */
1029 (*entry->convert)(NULL, entry, plvalue, entry->addr, &tdata);
1030 if (entry->update) {
1031 (*entry->update)(NULL, entry, tdata, entry->extra_data);
1038 void
1039 wDefaultsCheckDomains(void *foo)
1041 WScreen *scr;
1042 struct stat stbuf;
1043 proplist_t dict;
1044 int i;
1045 char path[PATH_MAX];
1047 #ifdef HEARTBEAT
1048 puts("Checking domains...");
1049 #endif
1050 if (stat(WDWindowMaker->path, &stbuf)>=0
1051 && WDWindowMaker->timestamp < stbuf.st_mtime) {
1052 proplist_t shared_dict = NULL;
1053 #ifdef HEARTBEAT
1054 puts("Checking WindowMaker domain");
1055 #endif
1056 WDWindowMaker->timestamp = stbuf.st_mtime;
1058 /* global dictionary */
1059 sprintf(path, "%s/WindowMaker/WindowMaker", SYSCONFDIR);
1060 if (stat(path, &stbuf)>=0) {
1061 shared_dict = ReadProplistFromFile(path);
1062 if (shared_dict && !PLIsDictionary(shared_dict)) {
1063 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"),
1064 "WindowMaker", path);
1065 PLRelease(shared_dict);
1066 shared_dict = NULL;
1067 } else if (!shared_dict) {
1068 wwarning(_("could not load domain %s from global defaults database"),
1069 "WindowMaker");
1072 /* user dictionary */
1073 dict = ReadProplistFromFile(WDWindowMaker->path);
1074 if (dict) {
1075 if (!PLIsDictionary(dict)) {
1076 PLRelease(dict);
1077 dict = NULL;
1078 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1079 "WindowMaker", WDWindowMaker->path);
1080 } else {
1081 if (shared_dict) {
1082 PLSetFilename(shared_dict, PLGetFilename(dict));
1083 PLMergeDictionaries(shared_dict, dict);
1084 PLRelease(dict);
1085 dict = shared_dict;
1086 shared_dict = NULL;
1088 for (i=0; i<wScreenCount; i++) {
1089 scr = wScreenWithNumber(i);
1090 if (scr)
1091 wReadDefaults(scr, dict);
1093 if (WDWindowMaker->dictionary) {
1094 PLRelease(WDWindowMaker->dictionary);
1096 WDWindowMaker->dictionary = dict;
1098 } else {
1099 wwarning(_("could not load domain %s from user defaults database"),
1100 "WindowMaker");
1102 if (shared_dict) {
1103 PLRelease(shared_dict);
1107 if (stat(WDWindowAttributes->path, &stbuf)>=0
1108 && WDWindowAttributes->timestamp < stbuf.st_mtime) {
1109 #ifdef HEARTBEAT
1110 puts("Checking WMWindowAttributes domain");
1111 #endif
1112 dict = ReadProplistFromFile(WDWindowAttributes->path);
1113 if (dict) {
1114 if (!PLIsDictionary(dict)) {
1115 PLRelease(dict);
1116 dict = NULL;
1117 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1118 "WMWindowAttributes", WDWindowAttributes->path);
1119 } else {
1120 if (WDWindowAttributes->dictionary)
1121 PLRelease(WDWindowAttributes->dictionary);
1122 WDWindowAttributes->dictionary = dict;
1123 for (i=0; i<wScreenCount; i++) {
1124 scr = wScreenWithNumber(i);
1125 if (scr)
1126 wDefaultUpdateIcons(scr);
1129 } else {
1130 wwarning(_("could not load domain %s from user defaults database"),
1131 "WMWindowAttributes");
1133 WDWindowAttributes->timestamp = stbuf.st_mtime;
1136 #ifndef LITE
1137 if (stat(WDRootMenu->path, &stbuf)>=0
1138 && WDRootMenu->timestamp < stbuf.st_mtime) {
1139 dict = ReadProplistFromFile(WDRootMenu->path);
1140 #ifdef HEARTBEAT
1141 puts("Checking WMRootMenu domain");
1142 #endif
1143 if (dict) {
1144 if (!PLIsArray(dict) && !PLIsString(dict)) {
1145 PLRelease(dict);
1146 dict = NULL;
1147 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1148 "WMRootMenu", WDRootMenu->path);
1149 } else {
1150 if (WDRootMenu->dictionary) {
1151 PLRelease(WDRootMenu->dictionary);
1153 WDRootMenu->dictionary = dict;
1155 } else {
1156 wwarning(_("could not load domain %s from user defaults database"),
1157 "WMRootMenu");
1159 WDRootMenu->timestamp = stbuf.st_mtime;
1161 #endif /* !LITE */
1163 if (!foo)
1164 WMAddTimerHandler(DEFAULTS_CHECK_INTERVAL, wDefaultsCheckDomains, foo);
1168 void
1169 wReadDefaults(WScreen *scr, proplist_t new_dict)
1171 proplist_t plvalue, old_value;
1172 WDefaultEntry *entry;
1173 int i, must_update;
1174 int update_workspace_back = 0; /* kluge :/ */
1175 int needs_refresh;
1176 void *tdata;
1177 proplist_t old_dict = (WDWindowMaker->dictionary!=new_dict
1178 ? WDWindowMaker->dictionary : NULL);
1180 must_update = 0;
1182 needs_refresh = 0;
1184 for (i=0; i<sizeof(optionList)/sizeof(WDefaultEntry); i++) {
1185 entry = &optionList[i];
1187 if (new_dict)
1188 plvalue = PLGetDictionaryEntry(new_dict, entry->plkey);
1189 else
1190 plvalue = NULL;
1192 if (!old_dict)
1193 old_value = NULL;
1194 else
1195 old_value = PLGetDictionaryEntry(old_dict, entry->plkey);
1198 if (!plvalue && !old_value) {
1199 /* no default in the DB. Use builtin default */
1200 plvalue = entry->plvalue;
1201 if (plvalue && new_dict) {
1202 PLInsertDictionaryEntry(new_dict, entry->plkey, plvalue);
1203 must_update = 1;
1205 } else if (!plvalue) {
1206 /* value was deleted from DB. Keep current value */
1207 continue;
1208 } else if (!old_value) {
1209 /* set value for the 1st time */
1210 } else if (!PLIsEqual(plvalue, old_value)) {
1211 /* value has changed */
1212 } else {
1214 if (strcmp(entry->key, "WorkspaceBack") == 0
1215 && update_workspace_back
1216 && scr->flags.backimage_helper_launched) {
1217 } else {
1218 /* value was not changed since last time */
1219 continue;
1223 if (plvalue) {
1224 #ifdef DEBUG
1225 printf("Updating %s to %s\n", entry->key,
1226 PLGetDescription(plvalue));
1227 #endif
1228 /* convert data */
1229 if ((*entry->convert)(scr, entry, plvalue, entry->addr, &tdata)) {
1231 * If the WorkspaceSpecificBack data has been changed
1232 * so that the helper will be launched now, we must be
1233 * sure to send the default background texture config
1234 * to the helper.
1236 if (strcmp(entry->key, "WorkspaceSpecificBack") == 0
1237 && !scr->flags.backimage_helper_launched) {
1238 update_workspace_back = 1;
1240 if (entry->update) {
1241 needs_refresh |=
1242 (*entry->update)(scr, entry, tdata, entry->extra_data);
1248 if (needs_refresh!=0 && !scr->flags.startup) {
1249 int foo;
1251 foo = 0;
1252 if (needs_refresh & REFRESH_MENU_TITLE_TEXTURE)
1253 foo |= WTextureSettings;
1254 if (needs_refresh & REFRESH_MENU_TITLE_FONT)
1255 foo |= WFontSettings;
1256 if (needs_refresh & REFRESH_MENU_TITLE_COLOR)
1257 foo |= WColorSettings;
1258 if (foo)
1259 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged, NULL,
1260 (void*)foo);
1262 foo = 0;
1263 if (needs_refresh & REFRESH_MENU_TEXTURE)
1264 foo |= WTextureSettings;
1265 if (needs_refresh & REFRESH_MENU_FONT)
1266 foo |= WFontSettings;
1267 if (needs_refresh & REFRESH_MENU_COLOR)
1268 foo |= WColorSettings;
1269 if (foo)
1270 WMPostNotificationName(WNMenuAppearanceSettingsChanged, NULL,
1271 (void*)foo);
1273 foo = 0;
1274 if (needs_refresh & REFRESH_WINDOW_FONT) {
1275 foo |= WFontSettings;
1277 if (needs_refresh & REFRESH_WINDOW_TEXTURES) {
1278 foo |= WTextureSettings;
1280 if (needs_refresh & REFRESH_WINDOW_TITLE_COLOR) {
1281 foo |= WColorSettings;
1283 if (foo)
1284 WMPostNotificationName(WNWindowAppearanceSettingsChanged, NULL,
1285 (void*)foo);
1287 if (!(needs_refresh & REFRESH_ICON_TILE)) {
1288 foo = 0;
1289 if (needs_refresh & REFRESH_ICON_FONT) {
1290 foo |= WFontSettings;
1292 if (needs_refresh & REFRESH_ICON_TITLE_COLOR) {
1293 foo |= WTextureSettings;
1295 if (needs_refresh & REFRESH_ICON_TITLE_BACK) {
1296 foo |= WTextureSettings;
1298 if (foo)
1299 WMPostNotificationName(WNIconAppearanceSettingsChanged, NULL,
1300 (void*)foo);
1302 if (needs_refresh & REFRESH_ICON_TILE)
1303 WMPostNotificationName(WNIconTileSettingsChanged, NULL, NULL);
1308 void
1309 wDefaultUpdateIcons(WScreen *scr)
1311 WAppIcon *aicon = scr->app_icon_list;
1312 WWindow *wwin = scr->focused_window;
1313 char *file;
1315 while(aicon) {
1316 file = wDefaultGetIconFile(scr, aicon->wm_instance, aicon->wm_class,
1317 False);
1318 if ((file && aicon->icon->file && strcmp(file, aicon->icon->file)!=0)
1319 || (file && !aicon->icon->file)) {
1320 RImage *new_image;
1322 if (aicon->icon->file)
1323 free(aicon->icon->file);
1324 aicon->icon->file = wstrdup(file);
1326 new_image = wDefaultGetImage(scr, aicon->wm_instance,
1327 aicon->wm_class);
1328 if (new_image) {
1329 wIconChangeImage(aicon->icon, new_image);
1330 wAppIconPaint(aicon);
1333 aicon = aicon->next;
1336 if (!wPreferences.flags.noclip)
1337 wClipIconPaint(scr->clip_icon);
1339 while (wwin) {
1340 if (wwin->icon && wwin->flags.miniaturized) {
1341 file = wDefaultGetIconFile(scr, wwin->wm_instance, wwin->wm_class,
1342 False);
1343 if ((file && wwin->icon->file && strcmp(file, wwin->icon->file)!=0)
1344 || (file && !wwin->icon->file)) {
1345 RImage *new_image;
1347 if (wwin->icon->file)
1348 free(wwin->icon->file);
1349 wwin->icon->file = wstrdup(file);
1351 new_image = wDefaultGetImage(scr, wwin->wm_instance,
1352 wwin->wm_class);
1353 if (new_image)
1354 wIconChangeImage(wwin->icon, new_image);
1357 wwin = wwin->prev;
1362 /* --------------------------- Local ----------------------- */
1364 #define GET_STRING_OR_DEFAULT(x, var) if (!PLIsString(value)) { \
1365 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1366 entry->key, x); \
1367 wwarning(_("using default \"%s\" instead"), entry->default_value); \
1368 var = entry->default_value;\
1369 } else var = PLGetString(value)\
1375 static int
1376 string2index(proplist_t key, proplist_t val, proplist_t def,
1377 WOptionEnumeration *values)
1379 char *str;
1380 WOptionEnumeration *v;
1381 char buffer[TOTAL_VALUES_LENGTH];
1383 if (PLIsString(val) && (str = PLGetString(val))) {
1384 for (v=values; v->string!=NULL; v++) {
1385 if (strcasecmp(v->string, str)==0)
1386 return v->value;
1390 buffer[0] = 0;
1391 for (v=values; v->string!=NULL; v++) {
1392 if (!v->is_alias) {
1393 if (buffer[0]!=0)
1394 strcat(buffer, ", ");
1395 strcat(buffer, v->string);
1398 wwarning(_("wrong option value for key \"%s\". Should be one of %s"),
1399 PLGetString(key), buffer);
1401 if (def) {
1402 return string2index(key, val, NULL, values);
1405 return -1;
1412 * value - is the value in the defaults DB
1413 * addr - is the address to store the data
1414 * ret - is the address to store a pointer to a temporary buffer. ret
1415 * must not be freed and is used by the set functions
1417 static int
1418 getBool(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
1419 void **ret)
1421 static char data;
1422 char *val;
1423 int second_pass=0;
1425 GET_STRING_OR_DEFAULT("Boolean", val);
1427 again:
1428 if ((val[1]=='\0' && (val[0]=='y' || val[0]=='Y'))
1429 || strcasecmp(val, "YES")==0) {
1431 data = 1;
1432 } else if ((val[1]=='\0' && (val[0]=='n' || val[0]=='N'))
1433 || strcasecmp(val, "NO")==0) {
1434 data = 0;
1435 } else {
1436 int i;
1437 if (sscanf(val, "%i", &i)==1) {
1438 if (i!=0)
1439 data = 1;
1440 else
1441 data = 0;
1442 } else {
1443 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""),
1444 val, entry->key);
1445 if (second_pass==0) {
1446 val = PLGetString(entry->plvalue);
1447 second_pass = 1;
1448 wwarning(_("using default \"%s\" instead"), val);
1449 goto again;
1451 return False;
1455 if (ret)
1456 *ret = &data;
1458 if (addr) {
1459 *(char*)addr = data;
1462 return True;
1466 static int
1467 getInt(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
1468 void **ret)
1470 static int data;
1471 char *val;
1474 GET_STRING_OR_DEFAULT("Integer", val);
1476 if (sscanf(val, "%i", &data)!=1) {
1477 wwarning(_("can't convert \"%s\" to integer for key \"%s\""),
1478 val, entry->key);
1479 val = PLGetString(entry->plvalue);
1480 wwarning(_("using default \"%s\" instead"), val);
1481 if (sscanf(val, "%i", &data)!=1) {
1482 return False;
1486 if (ret)
1487 *ret = &data;
1489 if (addr) {
1490 *(int*)addr = data;
1492 return True;
1496 static int
1497 getCoord(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
1498 void **ret)
1500 static WCoord data;
1501 char *val_x, *val_y;
1502 int nelem, changed=0;
1503 proplist_t elem_x, elem_y;
1505 again:
1506 if (!PLIsArray(value)) {
1507 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1508 entry->key, "Coordinate");
1509 if (changed==0) {
1510 value = entry->plvalue;
1511 changed = 1;
1512 wwarning(_("using default \"%s\" instead"), entry->default_value);
1513 goto again;
1515 return False;
1518 nelem = PLGetNumberOfElements(value);
1519 if (nelem != 2) {
1520 wwarning(_("Incorrect number of elements in array for key \"%s\"."),
1521 entry->key);
1522 if (changed==0) {
1523 value = entry->plvalue;
1524 changed = 1;
1525 wwarning(_("using default \"%s\" instead"), entry->default_value);
1526 goto again;
1528 return False;
1531 elem_x = PLGetArrayElement(value, 0);
1532 elem_y = PLGetArrayElement(value, 1);
1534 if (!elem_x || !elem_y || !PLIsString(elem_x) || !PLIsString(elem_y)) {
1535 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."),
1536 entry->key);
1537 if (changed==0) {
1538 value = entry->plvalue;
1539 changed = 1;
1540 wwarning(_("using default \"%s\" instead"), entry->default_value);
1541 goto again;
1543 return False;
1546 val_x = PLGetString(elem_x);
1547 val_y = PLGetString(elem_y);
1549 if (sscanf(val_x, "%i", &data.x)!=1 || sscanf(val_y, "%i", &data.y)!=1) {
1550 wwarning(_("can't convert array to integers for \"%s\"."), entry->key);
1551 if (changed==0) {
1552 value = entry->plvalue;
1553 changed = 1;
1554 wwarning(_("using default \"%s\" instead"), entry->default_value);
1555 goto again;
1557 return False;
1560 if (data.x < 0)
1561 data.x = 0;
1562 else if (data.x > scr->scr_width/3)
1563 data.x = scr->scr_width/3;
1564 if (data.y < 0)
1565 data.y = 0;
1566 else if (data.y > scr->scr_height/3)
1567 data.y = scr->scr_height/3;
1569 if (ret)
1570 *ret = &data;
1572 if (addr) {
1573 *(WCoord*)addr = data;
1576 return True;
1580 #if 0
1581 /* This function is not used at the moment. */
1582 static int
1583 getString(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
1584 void **ret)
1586 static char *data;
1588 GET_STRING_OR_DEFAULT("String", data);
1590 if (!data) {
1591 data = PLGetString(entry->plvalue);
1592 if (!data)
1593 return False;
1596 if (ret)
1597 *ret = &data;
1599 if (addr)
1600 *(char**)addr = wstrdup(data);
1602 return True;
1604 #endif
1607 static int
1608 getPathList(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
1609 void **ret)
1611 static char *data;
1612 int i, count, len;
1613 char *ptr;
1614 proplist_t d;
1615 int changed=0;
1617 again:
1618 if (!PLIsArray(value)) {
1619 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1620 entry->key, "an array of paths");
1621 if (changed==0) {
1622 value = entry->plvalue;
1623 changed = 1;
1624 wwarning(_("using default \"%s\" instead"), entry->default_value);
1625 goto again;
1627 return False;
1630 i = 0;
1631 count = PLGetNumberOfElements(value);
1632 if (count < 1) {
1633 if (changed==0) {
1634 value = entry->plvalue;
1635 changed = 1;
1636 wwarning(_("using default \"%s\" instead"), entry->default_value);
1637 goto again;
1639 return False;
1642 len = 0;
1643 for (i=0; i<count; i++) {
1644 d = PLGetArrayElement(value, i);
1645 if (!d || !PLIsString(d)) {
1646 count = i;
1647 break;
1649 len += strlen(PLGetString(d))+1;
1652 ptr = data = wmalloc(len+1);
1654 for (i=0; i<count; i++) {
1655 d = PLGetArrayElement(value, i);
1656 if (!d || !PLIsString(d)) {
1657 break;
1659 strcpy(ptr, PLGetString(d));
1660 ptr += strlen(PLGetString(d));
1661 *ptr = ':';
1662 ptr++;
1664 ptr--; *(ptr--) = 0;
1666 if (*(char**)addr!=NULL) {
1667 free(*(char**)addr);
1669 *(char**)addr = data;
1671 return True;
1675 static int
1676 getEnum(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
1677 void **ret)
1679 static signed char data;
1681 data = string2index(entry->plkey, value, entry->default_value,
1682 (WOptionEnumeration*)entry->extra_data);
1683 if (data < 0)
1684 return False;
1686 if (ret)
1687 *ret = &data;
1689 if (addr)
1690 *(signed char*)addr = data;
1692 return True;
1698 * (solid <color>)
1699 * (hgradient <color> <color>)
1700 * (vgradient <color> <color>)
1701 * (dgradient <color> <color>)
1702 * (mhgradient <color> <color> ...)
1703 * (mvgradient <color> <color> ...)
1704 * (mdgradient <color> <color> ...)
1705 * (igradient <color1> <color1> <thickness1> <color2> <color2> <thickness2>)
1706 * (tpixmap <file> <color>)
1707 * (spixmap <file> <color>)
1708 * (cpixmap <file> <color>)
1709 * (thgradient <file> <opaqueness> <color> <color>)
1710 * (tvgradient <file> <opaqueness> <color> <color>)
1711 * (tdgradient <file> <opaqueness> <color> <color>)
1712 * (function <lib> <function> ...)
1715 static WTexture*
1716 parse_texture(WScreen *scr, proplist_t pl)
1718 proplist_t elem;
1719 char *val;
1720 int nelem;
1721 WTexture *texture=NULL;
1723 nelem = PLGetNumberOfElements(pl);
1724 if (nelem < 1)
1725 return NULL;
1728 elem = PLGetArrayElement(pl, 0);
1729 if (!elem || !PLIsString(elem))
1730 return NULL;
1731 val = PLGetString(elem);
1734 if (strcasecmp(val, "solid")==0) {
1735 XColor color;
1737 if (nelem != 2)
1738 return NULL;
1740 /* get color */
1742 elem = PLGetArrayElement(pl, 1);
1743 if (!elem || !PLIsString(elem))
1744 return NULL;
1745 val = PLGetString(elem);
1747 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1748 wwarning(_("\"%s\" is not a valid color name"), val);
1749 return NULL;
1752 texture = (WTexture*)wTextureMakeSolid(scr, &color);
1753 } else if (strcasecmp(val, "dgradient")==0
1754 || strcasecmp(val, "vgradient")==0
1755 || strcasecmp(val, "hgradient")==0) {
1756 RColor color1, color2;
1757 XColor xcolor;
1758 int type;
1760 if (nelem != 3) {
1761 wwarning(_("bad number of arguments in gradient specification"));
1762 return NULL;
1765 if (val[0]=='d' || val[0]=='D')
1766 type = WTEX_DGRADIENT;
1767 else if (val[0]=='h' || val[0]=='H')
1768 type = WTEX_HGRADIENT;
1769 else
1770 type = WTEX_VGRADIENT;
1773 /* get from color */
1774 elem = PLGetArrayElement(pl, 1);
1775 if (!elem || !PLIsString(elem))
1776 return NULL;
1777 val = PLGetString(elem);
1779 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1780 wwarning(_("\"%s\" is not a valid color name"), val);
1781 return NULL;
1783 color1.alpha = 255;
1784 color1.red = xcolor.red >> 8;
1785 color1.green = xcolor.green >> 8;
1786 color1.blue = xcolor.blue >> 8;
1788 /* get to color */
1789 elem = PLGetArrayElement(pl, 2);
1790 if (!elem || !PLIsString(elem)) {
1791 return NULL;
1793 val = PLGetString(elem);
1795 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1796 wwarning(_("\"%s\" is not a valid color name"), val);
1797 return NULL;
1799 color2.alpha = 255;
1800 color2.red = xcolor.red >> 8;
1801 color2.green = xcolor.green >> 8;
1802 color2.blue = xcolor.blue >> 8;
1804 texture = (WTexture*)wTextureMakeGradient(scr, type, &color1, &color2);
1806 } else if (strcasecmp(val, "igradient")==0) {
1807 RColor colors1[2], colors2[2];
1808 int th1, th2;
1809 XColor xcolor;
1810 int i;
1812 if (nelem != 7) {
1813 wwarning(_("bad number of arguments in gradient specification"));
1814 return NULL;
1817 /* get from color */
1818 for (i = 0; i < 2; i++) {
1819 elem = PLGetArrayElement(pl, 1+i);
1820 if (!elem || !PLIsString(elem))
1821 return NULL;
1822 val = PLGetString(elem);
1824 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1825 wwarning(_("\"%s\" is not a valid color name"), val);
1826 return NULL;
1828 colors1[i].alpha = 255;
1829 colors1[i].red = xcolor.red >> 8;
1830 colors1[i].green = xcolor.green >> 8;
1831 colors1[i].blue = xcolor.blue >> 8;
1833 elem = PLGetArrayElement(pl, 3);
1834 if (!elem || !PLIsString(elem))
1835 return NULL;
1836 val = PLGetString(elem);
1837 th1 = atoi(val);
1840 /* get from color */
1841 for (i = 0; i < 2; i++) {
1842 elem = PLGetArrayElement(pl, 4+i);
1843 if (!elem || !PLIsString(elem))
1844 return NULL;
1845 val = PLGetString(elem);
1847 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1848 wwarning(_("\"%s\" is not a valid color name"), val);
1849 return NULL;
1851 colors2[i].alpha = 255;
1852 colors2[i].red = xcolor.red >> 8;
1853 colors2[i].green = xcolor.green >> 8;
1854 colors2[i].blue = xcolor.blue >> 8;
1856 elem = PLGetArrayElement(pl, 6);
1857 if (!elem || !PLIsString(elem))
1858 return NULL;
1859 val = PLGetString(elem);
1860 th2 = atoi(val);
1862 texture = (WTexture*)wTextureMakeIGradient(scr, th1, colors1,
1863 th2, colors2);
1865 } else if (strcasecmp(val, "mhgradient")==0
1866 || strcasecmp(val, "mvgradient")==0
1867 || strcasecmp(val, "mdgradient")==0) {
1868 XColor color;
1869 RColor **colors;
1870 int i, count;
1871 int type;
1873 if (nelem < 3) {
1874 wwarning(_("too few arguments in multicolor gradient specification"));
1875 return NULL;
1878 if (val[1]=='h' || val[1]=='H')
1879 type = WTEX_MHGRADIENT;
1880 else if (val[1]=='v' || val[1]=='V')
1881 type = WTEX_MVGRADIENT;
1882 else
1883 type = WTEX_MDGRADIENT;
1885 count = nelem-1;
1887 colors = wmalloc(sizeof(RColor*)*(count+1));
1889 for (i=0; i<count; i++) {
1890 elem = PLGetArrayElement(pl, i+1);
1891 if (!elem || !PLIsString(elem)) {
1892 for (--i; i>=0; --i) {
1893 free(colors[i]);
1895 free(colors);
1896 return NULL;
1898 val = PLGetString(elem);
1900 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1901 wwarning(_("\"%s\" is not a valid color name"), val);
1902 for (--i; i>=0; --i) {
1903 free(colors[i]);
1905 free(colors);
1906 return NULL;
1907 } else {
1908 colors[i] = wmalloc(sizeof(RColor));
1909 colors[i]->red = color.red >> 8;
1910 colors[i]->green = color.green >> 8;
1911 colors[i]->blue = color.blue >> 8;
1914 colors[i] = NULL;
1916 texture = (WTexture*)wTextureMakeMGradient(scr, type, colors);
1917 } else if (strcasecmp(val, "spixmap")==0 ||
1918 strcasecmp(val, "cpixmap")==0 ||
1919 strcasecmp(val, "tpixmap")==0) {
1920 XColor color;
1921 int type;
1923 if (nelem != 3)
1924 return NULL;
1926 if (val[0] == 's' || val[0] == 'S')
1927 type = WTP_SCALE;
1928 else if (val[0] == 'c' || val[0] == 'C')
1929 type = WTP_CENTER;
1930 else
1931 type = WTP_TILE;
1933 /* get color */
1934 elem = PLGetArrayElement(pl, 2);
1935 if (!elem || !PLIsString(elem)) {
1936 return NULL;
1938 val = PLGetString(elem);
1940 if (!XParseColor(dpy, scr->w_colormap, val, &color)) {
1941 wwarning(_("\"%s\" is not a valid color name"), val);
1942 return NULL;
1945 /* file name */
1946 elem = PLGetArrayElement(pl, 1);
1947 if (!elem || !PLIsString(elem))
1948 return NULL;
1949 val = PLGetString(elem);
1951 texture = (WTexture*)wTextureMakePixmap(scr, type, val, &color);
1952 } else if (strcasecmp(val, "thgradient")==0
1953 || strcasecmp(val, "tvgradient")==0
1954 || strcasecmp(val, "tdgradient")==0) {
1955 RColor color1, color2;
1956 XColor xcolor;
1957 int opacity;
1958 int style;
1960 if (val[1]=='h' || val[1]=='H')
1961 style = WTEX_THGRADIENT;
1962 else if (val[1]=='v' || val[1]=='V')
1963 style = WTEX_TVGRADIENT;
1964 else
1965 style = WTEX_TDGRADIENT;
1967 if (nelem != 5) {
1968 wwarning(_("bad number of arguments in textured gradient specification"));
1969 return NULL;
1972 /* get from color */
1973 elem = PLGetArrayElement(pl, 3);
1974 if (!elem || !PLIsString(elem))
1975 return NULL;
1976 val = PLGetString(elem);
1978 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1979 wwarning(_("\"%s\" is not a valid color name"), val);
1980 return NULL;
1982 color1.alpha = 255;
1983 color1.red = xcolor.red >> 8;
1984 color1.green = xcolor.green >> 8;
1985 color1.blue = xcolor.blue >> 8;
1987 /* get to color */
1988 elem = PLGetArrayElement(pl, 4);
1989 if (!elem || !PLIsString(elem)) {
1990 return NULL;
1992 val = PLGetString(elem);
1994 if (!XParseColor(dpy, scr->w_colormap, val, &xcolor)) {
1995 wwarning(_("\"%s\" is not a valid color name"), val);
1996 return NULL;
1998 color2.alpha = 255;
1999 color2.red = xcolor.red >> 8;
2000 color2.green = xcolor.green >> 8;
2001 color2.blue = xcolor.blue >> 8;
2003 /* get opacity */
2004 elem = PLGetArrayElement(pl, 2);
2005 if (!elem || !PLIsString(elem))
2006 opacity = 128;
2007 else
2008 val = PLGetString(elem);
2010 if (!val || (opacity = atoi(val)) < 0 || opacity > 255) {
2011 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val);
2012 opacity = 128;
2015 /* get file name */
2016 elem = PLGetArrayElement(pl, 1);
2017 if (!elem || !PLIsString(elem))
2018 return NULL;
2019 val = PLGetString(elem);
2021 texture = (WTexture*)wTextureMakeTGradient(scr, style, &color1, &color2,
2022 val, opacity);
2024 #ifdef TEXTURE_PLUGIN
2025 else if (strcasecmp(val, "function")==0) {
2026 WTexFunction *function;
2027 void (*initFunc) (Display *, Colormap);
2028 char *lib, *func, **argv;
2029 int i, argc;
2031 if (nelem < 3)
2032 return NULL;
2034 /* get the library name */
2035 elem = PLGetArrayElement(pl, 1);
2036 if (!elem || !PLIsString(elem)) {
2037 return NULL;
2039 lib = PLGetString(elem);
2041 /* get the function name */
2042 elem = PLGetArrayElement(pl, 2);
2043 if (!elem || !PLIsString(elem)) {
2044 return NULL;
2046 func = PLGetString(elem);
2048 argc = nelem - 2;
2049 argv = (char **)wmalloc(argc * sizeof(char *));
2051 /* get the parameters */
2052 argv[0] = wstrdup(func);
2053 for (i = 0; i < argc - 1; i++) {
2054 elem = PLGetArrayElement(pl, 3 + i);
2055 if (!elem || !PLIsString(elem)) {
2056 free(argv);
2058 return NULL;
2060 argv[i+1] = wstrdup(PLGetString(elem));
2063 function = wTextureMakeFunction(scr, lib, func, argc, argv);
2065 #ifdef HAVE_DLFCN_H
2066 if (function) {
2067 initFunc = dlsym(function->handle, "initWindowMaker");
2068 if (initFunc) {
2069 initFunc(dpy, scr->w_colormap);
2070 } else {
2071 wwarning(_("could not initialize library %s"), lib);
2073 } else {
2074 wwarning(_("could not find function %s::%s"), lib, func);
2076 #endif /* HAVE_DLFCN_H */
2077 texture = (WTexture*)function;
2079 #endif /* TEXTURE_PLUGIN */
2080 else {
2081 wwarning(_("invalid texture type %s"), val);
2082 return NULL;
2084 return texture;
2089 static int
2090 getTexture(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
2091 void **ret)
2093 static WTexture *texture;
2094 int changed=0;
2096 again:
2097 if (!PLIsArray(value)) {
2098 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2099 entry->key, "Texture");
2100 if (changed==0) {
2101 value = entry->plvalue;
2102 changed = 1;
2103 wwarning(_("using default \"%s\" instead"), entry->default_value);
2104 goto again;
2106 return False;
2109 if (strcmp(entry->key, "WidgetColor")==0 && !changed) {
2110 proplist_t pl;
2112 pl = PLGetArrayElement(value, 0);
2113 if (!pl || !PLIsString(pl) || !PLGetString(pl)
2114 || strcasecmp(PLGetString(pl), "solid")!=0) {
2115 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2116 entry->key, "Solid Texture");
2118 value = entry->plvalue;
2119 changed = 1;
2120 wwarning(_("using default \"%s\" instead"), entry->default_value);
2121 goto again;
2125 texture = parse_texture(scr, value);
2127 if (!texture) {
2128 wwarning(_("Error in texture specification for key \"%s\""),
2129 entry->key);
2130 if (changed==0) {
2131 value = entry->plvalue;
2132 changed = 1;
2133 wwarning(_("using default \"%s\" instead"), entry->default_value);
2134 goto again;
2136 return False;
2139 if (ret)
2140 *ret = &texture;
2142 if (addr)
2143 *(WTexture**)addr = texture;
2145 return True;
2150 #ifdef DRAWSTRING_PLUGIN
2151 static int
2152 getTextRenderer(WScreen *scr, WDefaultEntry *entry, proplist_t value,
2153 void *addr, void **ret)
2155 proplist_t elem;
2156 char *val, *lib, *func, **argv;
2157 int argc, changed;
2159 if (strcmp(entry->key, "FTitleColor")==0) {
2160 wPluginDestroyFunction(scr->drawstring_func[changed = W_STRING_FTITLE]);
2161 scr->drawstring_func[W_STRING_FTITLE] = NULL;
2162 } else if (strcmp(entry->key, "UTitleColor")==0) {
2163 wPluginDestroyFunction(scr->drawstring_func[changed = W_STRING_UTITLE]);
2164 scr->drawstring_func[W_STRING_UTITLE] = NULL;
2165 } else if (strcmp(entry->key, "PTitleColor")==0) {
2166 wPluginDestroyFunction(scr->drawstring_func[changed = W_STRING_PTITLE]);
2167 scr->drawstring_func[W_STRING_PTITLE] = NULL;
2168 } else if (strcmp(entry->key, "MenuTitleColor")==0) {
2169 wPluginDestroyFunction(scr->drawstring_func[changed = W_STRING_MTITLE]);
2170 scr->drawstring_func[W_STRING_MTITLE] = NULL;
2171 } else if (strcmp(entry->key, "MenuPluginColor")==0) {
2172 wPluginDestroyFunction(scr->drawstring_func[changed = W_STRING_MTEXT]);
2173 scr->drawstring_func[W_STRING_MTEXT] = NULL;
2176 if (PLIsArray(value)) {
2177 if ((argc = PLGetNumberOfElements(value)) < 4) return False;
2178 argc -= 2;
2179 argv = (char **)wmalloc(argc * sizeof(char *));
2181 elem = PLGetArrayElement(value,0);
2182 if (!elem || !PLIsString(elem)) return False;
2183 val = PLGetString(elem);
2184 if (strcasecmp(val, "function")==0) {
2185 elem = PLGetArrayElement(value, 1); /* library name */
2186 if (!elem || !PLIsString(elem)) return False;
2187 lib = PLGetString(elem);
2188 elem = PLGetArrayElement(value, 2); /* function name */
2189 if (!elem || !PLIsString(elem)) return False;
2190 func = PLGetString(elem);
2191 scr->drawstring_func[changed] = wPluginCreateFunction (W_FUNCTION_DRAWSTRING,
2192 lib, "initDrawString", func, NULL, value,
2193 wPluginPackInitData(3, dpy, scr->w_colormap,"-DATA-"));
2196 return getColor(scr, entry, PLGetArrayElement(value,3), addr, ret);
2197 } else if (PLIsString(value)) {
2198 return getColor(scr, entry, value, addr, ret);
2201 return False;
2203 #endif /* DRAWSTRING_PLUGIN */
2207 static int
2208 getWSBackground(WScreen *scr, WDefaultEntry *entry, proplist_t value,
2209 void *addr, void **ret)
2211 proplist_t elem;
2212 int changed = 0;
2213 char *val;
2214 int nelem;
2216 again:
2217 if (!PLIsArray(value)) {
2218 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2219 "WorkspaceBack", "Texture or None");
2220 if (changed==0) {
2221 value = entry->plvalue;
2222 changed = 1;
2223 wwarning(_("using default \"%s\" instead"), entry->default_value);
2224 goto again;
2226 return False;
2229 /* only do basic error checking and verify for None texture */
2231 nelem = PLGetNumberOfElements(value);
2232 if (nelem > 0) {
2233 elem = PLGetArrayElement(value, 0);
2234 if (!elem || !PLIsString(elem)) {
2235 wwarning(_("Wrong type for workspace background. Should be a texture type."));
2236 if (changed==0) {
2237 value = entry->plvalue;
2238 changed = 1;
2239 wwarning(_("using default \"%s\" instead"), entry->default_value);
2240 goto again;
2242 return False;
2244 val = PLGetString(elem);
2246 if (strcasecmp(val, "None")==0)
2247 return True;
2249 *ret = PLRetain(value);
2251 return True;
2255 static int
2256 getWSSpecificBackground(WScreen *scr, WDefaultEntry *entry, proplist_t value,
2257 void *addr, void **ret)
2259 proplist_t elem;
2260 int nelem;
2261 int changed = 0;
2263 again:
2264 if (!PLIsArray(value)) {
2265 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2266 "WorkspaceSpecificBack", "an array of textures");
2267 if (changed==0) {
2268 value = entry->plvalue;
2269 changed = 1;
2270 wwarning(_("using default \"%s\" instead"), entry->default_value);
2271 goto again;
2273 return False;
2276 /* only do basic error checking and verify for None texture */
2278 nelem = PLGetNumberOfElements(value);
2279 if (nelem > 0) {
2280 while (nelem--) {
2281 elem = PLGetArrayElement(value, nelem);
2282 if (!elem || !PLIsArray(elem)) {
2283 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
2284 nelem);
2289 *ret = PLRetain(value);
2291 #ifdef notworking
2293 * Kluge to force wmsetbg helper to set the default background.
2294 * If the WorkspaceSpecificBack is changed once wmaker has started,
2295 * the WorkspaceBack won't be sent to the helper, unless the user
2296 * changes it's value too. So, we must force this by removing the
2297 * value from the defaults DB.
2299 if (!scr->flags.backimage_helper_launched && !scr->flags.startup) {
2300 proplist_t key = PLMakeString("WorkspaceBack");
2302 PLRemoveDictionaryEntry(WDWindowMaker->dictionary, key);
2304 PLRelease(key);
2306 #endif
2307 return True;
2311 static int
2312 getFont(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
2313 void **ret)
2315 static WMFont *font;
2316 char *val;
2318 GET_STRING_OR_DEFAULT("Font", val);
2320 font = WMCreateFont(scr->wmscreen, val);
2321 if (!font)
2322 font = WMCreateFont(scr->wmscreen, "fixed");
2324 if (!font) {
2325 wfatal(_("could not load any usable font!!!"));
2326 exit(1);
2329 if (ret)
2330 *ret = font;
2332 /* can't assign font value outside update function */
2333 wassertrv(addr == NULL, True);
2335 return True;
2339 static int
2340 getColor(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
2341 void **ret)
2343 static XColor color;
2344 char *val;
2345 int second_pass=0;
2347 GET_STRING_OR_DEFAULT("Color", val);
2350 again:
2351 if (!wGetColor(scr, val, &color)) {
2352 wwarning(_("could not get color for key \"%s\""),
2353 entry->key);
2354 if (second_pass==0) {
2355 val = PLGetString(entry->plvalue);
2356 second_pass = 1;
2357 wwarning(_("using default \"%s\" instead"), val);
2358 goto again;
2360 return False;
2363 if (ret)
2364 *ret = &color;
2366 assert(addr==NULL);
2368 if (addr)
2369 *(unsigned long*)addr = pixel;
2372 return True;
2377 static int
2378 getKeybind(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
2379 void **ret)
2381 static WShortKey shortcut;
2382 KeySym ksym;
2383 char *val;
2384 char *k;
2385 char buf[128], *b;
2388 GET_STRING_OR_DEFAULT("Key spec", val);
2390 if (!val || strcasecmp(val, "NONE")==0) {
2391 shortcut.keycode = 0;
2392 shortcut.modifier = 0;
2393 if (ret)
2394 *ret = &shortcut;
2395 return True;
2398 strcpy(buf, val);
2400 b = (char*)buf;
2402 /* get modifiers */
2403 shortcut.modifier = 0;
2404 while ((k = strchr(b, '+'))!=NULL) {
2405 int mod;
2407 *k = 0;
2408 mod = wXModifierFromKey(b);
2409 if (mod<0) {
2410 wwarning(_("%s:invalid key modifier \"%s\""), entry->key, b);
2411 return False;
2413 shortcut.modifier |= mod;
2415 b = k+1;
2418 /* get key */
2419 ksym = XStringToKeysym(b);
2421 if (ksym==NoSymbol) {
2422 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry->key,
2423 val);
2424 return False;
2427 shortcut.keycode = XKeysymToKeycode(dpy, ksym);
2428 if (shortcut.keycode==0) {
2429 wwarning(_("%s:invalid key in shortcut \"%s\""), entry->key, val);
2430 return False;
2433 if (ret)
2434 *ret = &shortcut;
2436 return True;
2440 static int
2441 getModMask(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
2442 void **ret)
2444 static unsigned int mask;
2445 char *str;
2447 GET_STRING_OR_DEFAULT("Modifier Key", str);
2449 if (!str)
2450 return False;
2452 mask = wXModifierFromKey(str);
2453 if (mask < 0) {
2454 wwarning(_("%s: modifier key %s is not valid"), entry->key, str);
2455 mask = 0;
2456 return False;
2459 if (addr)
2460 *(unsigned int*)addr = mask;
2462 if (ret)
2463 *ret = &mask;
2465 return True;
2469 #ifdef NEWSTUFF
2470 static int
2471 getRImages(WScreen *scr, WDefaultEntry *entry, proplist_t value,
2472 void *addr, void **ret)
2474 unsigned int mask;
2475 char *str;
2476 RImage *image;
2477 int i, n;
2478 int w, h;
2480 GET_STRING_OR_DEFAULT("Image File Path", str);
2481 if (!str)
2482 return False;
2484 image = RLoadImage(scr->rcontext, str, 0);
2485 if (!image) {
2486 wwarning(_("could not load image in option %s: %s"), entry->key,
2487 RMessageForError(RErrorCode));
2488 return False;
2491 if (*(RImage**)addr) {
2492 RDestroyImage(*(RImage**)addr);
2494 if (addr)
2495 *(RImage**)addr = image;
2497 assert(ret == NULL);
2499 if (ret)
2500 *(RImage**)ret = image;
2503 return True;
2505 #endif
2507 #ifdef DEFINABLE_CURSOR
2509 # include <X11/cursorfont.h>
2510 typedef struct
2512 char *name;
2513 int id;
2514 } WCursorLookup;
2516 #define CURSOR_ID_NONE (XC_num_glyphs)
2518 static WCursorLookup cursor_table[] =
2520 { "X_cursor", XC_X_cursor },
2521 { "arrow", XC_arrow },
2522 { "based_arrow_down", XC_based_arrow_down },
2523 { "based_arrow_up", XC_based_arrow_up },
2524 { "boat", XC_boat },
2525 { "bogosity", XC_bogosity },
2526 { "bottom_left_corner", XC_bottom_left_corner },
2527 { "bottom_right_corner", XC_bottom_right_corner },
2528 { "bottom_side", XC_bottom_side },
2529 { "bottom_tee", XC_bottom_tee },
2530 { "box_spiral", XC_box_spiral },
2531 { "center_ptr", XC_center_ptr },
2532 { "circle", XC_circle },
2533 { "clock", XC_clock },
2534 { "coffee_mug", XC_coffee_mug },
2535 { "cross", XC_cross },
2536 { "cross_reverse", XC_cross_reverse },
2537 { "crosshair", XC_crosshair },
2538 { "diamond_cross", XC_diamond_cross },
2539 { "dot", XC_dot },
2540 { "dotbox", XC_dotbox },
2541 { "double_arrow", XC_double_arrow },
2542 { "draft_large", XC_draft_large },
2543 { "draft_small", XC_draft_small },
2544 { "draped_box", XC_draped_box },
2545 { "exchange", XC_exchange },
2546 { "fleur", XC_fleur },
2547 { "gobbler", XC_gobbler },
2548 { "gumby", XC_gumby },
2549 { "hand1", XC_hand1 },
2550 { "hand2", XC_hand2 },
2551 { "heart", XC_heart },
2552 { "icon", XC_icon },
2553 { "iron_cross", XC_iron_cross },
2554 { "left_ptr", XC_left_ptr },
2555 { "left_side", XC_left_side },
2556 { "left_tee", XC_left_tee },
2557 { "leftbutton", XC_leftbutton },
2558 { "ll_angle", XC_ll_angle },
2559 { "lr_angle", XC_lr_angle },
2560 { "man", XC_man },
2561 { "middlebutton", XC_middlebutton },
2562 { "mouse", XC_mouse },
2563 { "pencil", XC_pencil },
2564 { "pirate", XC_pirate },
2565 { "plus", XC_plus },
2566 { "question_arrow", XC_question_arrow },
2567 { "right_ptr", XC_right_ptr },
2568 { "right_side", XC_right_side },
2569 { "right_tee", XC_right_tee },
2570 { "rightbutton", XC_rightbutton },
2571 { "rtl_logo", XC_rtl_logo },
2572 { "sailboat", XC_sailboat },
2573 { "sb_down_arrow", XC_sb_down_arrow },
2574 { "sb_h_double_arrow", XC_sb_h_double_arrow },
2575 { "sb_left_arrow", XC_sb_left_arrow },
2576 { "sb_right_arrow", XC_sb_right_arrow },
2577 { "sb_up_arrow", XC_sb_up_arrow },
2578 { "sb_v_double_arrow", XC_sb_v_double_arrow },
2579 { "shuttle", XC_shuttle },
2580 { "sizing", XC_sizing },
2581 { "spider", XC_spider },
2582 { "spraycan", XC_spraycan },
2583 { "star", XC_star },
2584 { "target", XC_target },
2585 { "tcross", XC_tcross },
2586 { "top_left_arrow", XC_top_left_arrow },
2587 { "top_left_corner", XC_top_left_corner },
2588 { "top_right_corner", XC_top_right_corner },
2589 { "top_side", XC_top_side },
2590 { "top_tee", XC_top_tee },
2591 { "trek", XC_trek },
2592 { "ul_angle", XC_ul_angle },
2593 { "umbrella", XC_umbrella },
2594 { "ur_angle", XC_ur_angle },
2595 { "watch", XC_watch },
2596 { "xterm", XC_xterm },
2597 { NULL, CURSOR_ID_NONE }
2600 static void check_bitmap_status(int status, char *filename, Pixmap bitmap)
2602 switch(status) {
2603 case BitmapOpenFailed:
2604 wwarning(_("failed to open bitmap file \"%s\""), filename);
2605 break;
2606 case BitmapFileInvalid:
2607 wwarning(_("\"%s\" is not a valid bitmap file"), filename);
2608 break;
2609 case BitmapNoMemory:
2610 wwarning(_("out of memory reading bitmap file \"%s\""), filename);
2611 break;
2612 case BitmapSuccess:
2613 XFreePixmap(dpy, bitmap);
2614 break;
2619 * (none)
2620 * (builtin, <cursor_name>)
2621 * (bitmap, <cursor_bitmap>, <cursor_mask>)
2623 static int parse_cursor(WScreen *scr, proplist_t pl, Cursor *cursor)
2625 proplist_t elem;
2626 char *val;
2627 int nelem;
2628 int status = 0;
2630 nelem = PLGetNumberOfElements(pl);
2631 if (nelem < 1) {
2632 return(status);
2634 elem = PLGetArrayElement(pl, 0);
2635 if (!elem || !PLIsString(elem)) {
2636 return(status);
2638 val = PLGetString(elem);
2640 if (0 == strcasecmp(val, "none")) {
2641 status = 1;
2642 *cursor = None;
2643 } else if (0 == strcasecmp(val, "builtin")) {
2644 int i;
2645 int cursor_id = CURSOR_ID_NONE;
2647 if (2 != nelem) {
2648 wwarning(_("bad number of arguments in cursor specification"));
2649 return(status);
2651 elem = PLGetArrayElement(pl, 1);
2652 if (!elem || !PLIsString(elem)) {
2653 return(status);
2655 val = PLGetString(elem);
2657 for (i = 0; NULL != cursor_table[i].name; i++) {
2658 if (0 == strcasecmp(val, cursor_table[i].name)) {
2659 cursor_id = cursor_table[i].id;
2660 break;
2663 if (CURSOR_ID_NONE == cursor_id) {
2664 wwarning(_("unknown builtin cursor name \"%s\""), val);
2665 } else {
2666 *cursor = XCreateFontCursor(dpy, cursor_id);
2667 status = 1;
2669 } else if (0 == strcasecmp(val, "bitmap")) {
2670 char *bitmap_name;
2671 char *mask_name;
2672 int bitmap_status;
2673 int mask_status;
2674 Pixmap bitmap;
2675 Pixmap mask;
2676 unsigned int w, h;
2677 int x, y;
2678 XColor fg, bg;
2680 if (3 != nelem) {
2681 wwarning(_("bad number of arguments in cursor specification"));
2682 return(status);
2684 elem = PLGetArrayElement(pl, 1);
2685 if (!elem || !PLIsString(elem)) {
2686 return(status);
2688 val = PLGetString(elem);
2689 bitmap_name = FindImage(wPreferences.pixmap_path, val);
2690 if (!bitmap_name) {
2691 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2692 return(status);
2694 elem = PLGetArrayElement(pl, 2);
2695 if (!elem || !PLIsString(elem)) {
2696 free(bitmap_name);
2697 return(status);
2699 val = PLGetString(elem);
2700 mask_name = FindImage(wPreferences.pixmap_path, val);
2701 if (!mask_name) {
2702 free(bitmap_name);
2703 wwarning(_("could not find cursor bitmap file \"%s\""), val);
2704 return(status);
2706 mask_status = XReadBitmapFile(dpy, scr->w_win, mask_name, &w, &h,
2707 &mask, &x, &y);
2708 bitmap_status = XReadBitmapFile(dpy, scr->w_win, bitmap_name, &w, &h,
2709 &bitmap, &x, &y);
2710 if ((BitmapSuccess == bitmap_status) &&
2711 (BitmapSuccess == mask_status)) {
2712 fg.pixel = scr->black_pixel;
2713 bg.pixel = scr->white_pixel;
2714 XQueryColor(dpy, scr->w_colormap, &fg);
2715 XQueryColor(dpy, scr->w_colormap, &bg);
2716 *cursor = XCreatePixmapCursor(dpy, bitmap, mask, &fg, &bg, x, y);
2717 status = 1;
2719 check_bitmap_status(bitmap_status, bitmap_name, bitmap);
2720 check_bitmap_status(mask_status, mask_name, mask);
2721 free(bitmap_name);
2722 free(mask_name);
2724 return(status);
2728 static int
2729 getCursor(WScreen *scr, WDefaultEntry *entry, proplist_t value, void *addr,
2730 void **ret)
2732 static Cursor cursor;
2733 int status;
2734 int changed = 0;
2736 again:
2737 if (!PLIsArray(value)) {
2738 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2739 entry->key, "cursor specification");
2740 if (!changed) {
2741 value = entry->plvalue;
2742 changed = 1;
2743 wwarning(_("using default \"%s\" instead"), entry->default_value);
2744 goto again;
2746 return(False);
2748 status = parse_cursor(scr, value, &cursor);
2749 if (!status) {
2750 wwarning(_("Error in cursor specification for key \"%s\""), entry->key);
2751 if (!changed) {
2752 value = entry->plvalue;
2753 changed = 1;
2754 wwarning(_("using default \"%s\" instead"), entry->default_value);
2755 goto again;
2757 return(False);
2759 if (ret) {
2760 *ret = &cursor;
2762 if (addr) {
2763 *(Cursor *)addr = cursor;
2765 return(True);
2767 #undef CURSOR_ID_NONE
2769 #endif /* DEFINABLE_CURSOR */
2772 /* ---------------- value setting functions --------------- */
2773 static int
2774 setJustify(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
2776 return REFRESH_WINDOW_TITLE_COLOR;
2779 static int
2780 setClearance(WScreen *scr, WDefaultEntry *entry, void *bar, void *foo)
2782 return REFRESH_WINDOW_FONT|REFRESH_BUTTON_IMAGES|REFRESH_MENU_TITLE_FONT|REFRESH_MENU_FONT;
2785 static int
2786 setIfDockPresent(WScreen *scr, WDefaultEntry *entry, char *flag, long which)
2788 switch (which) {
2789 case WM_DOCK:
2790 wPreferences.flags.nodock = wPreferences.flags.nodock || *flag;
2791 break;
2792 case WM_CLIP:
2793 wPreferences.flags.noclip = wPreferences.flags.noclip || *flag;
2794 break;
2795 default:
2796 break;
2798 return 0;
2802 static int
2803 setStickyIcons(WScreen *scr, WDefaultEntry *entry, void *bar, void *foo)
2805 if (scr->workspaces) {
2806 wWorkspaceForceChange(scr, scr->current_workspace);
2807 wArrangeIcons(scr, False);
2809 return 0;
2812 #if not_used
2813 static int
2814 setPositive(WScreen *scr, WDefaultEntry *entry, int *value, void *foo)
2816 if (*value <= 0)
2817 *(int*)foo = 1;
2819 return 0;
2821 #endif
2825 static int
2826 setIconTile(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
2828 Pixmap pixmap;
2829 RImage *img;
2830 int reset = 0;
2832 img = wTextureRenderImage(*texture, wPreferences.icon_size,
2833 wPreferences.icon_size,
2834 ((*texture)->any.type & WREL_BORDER_MASK)
2835 ? WREL_ICON : WREL_FLAT);
2836 if (!img) {
2837 wwarning(_("could not render texture for icon background"));
2838 if (!entry->addr)
2839 wTextureDestroy(scr, *texture);
2840 return 0;
2842 RConvertImage(scr->rcontext, img, &pixmap);
2844 if (scr->icon_tile) {
2845 reset = 1;
2846 RDestroyImage(scr->icon_tile);
2847 XFreePixmap(dpy, scr->icon_tile_pixmap);
2850 scr->icon_tile = img;
2853 /* put the icon in the noticeboard hint */
2854 PropSetIconTileHint(scr, img);
2857 if (!wPreferences.flags.noclip) {
2858 if (scr->clip_tile) {
2859 RDestroyImage(scr->clip_tile);
2861 scr->clip_tile = wClipMakeTile(scr, img);
2864 scr->icon_tile_pixmap = pixmap;
2866 if (scr->def_icon_pixmap) {
2867 XFreePixmap(dpy, scr->def_icon_pixmap);
2868 scr->def_icon_pixmap = None;
2870 if (scr->def_ticon_pixmap) {
2871 XFreePixmap(dpy, scr->def_ticon_pixmap);
2872 scr->def_ticon_pixmap = None;
2875 if (scr->icon_back_texture) {
2876 wTextureDestroy(scr, (WTexture*)scr->icon_back_texture);
2878 scr->icon_back_texture = wTextureMakeSolid(scr, &((*texture)->any.color));
2880 if (scr->clip_balloon)
2881 XSetWindowBackground(dpy, scr->clip_balloon,
2882 (*texture)->any.color.pixel);
2885 * Free the texture as nobody else will use it, nor refer to it.
2887 if (!entry->addr)
2888 wTextureDestroy(scr, *texture);
2890 return (reset ? REFRESH_ICON_TILE : 0);
2895 static int
2896 setWinTitleFont(WScreen *scr, WDefaultEntry *entry, WMFont *font, void *foo)
2898 if (scr->title_font) {
2899 WMReleaseFont(scr->title_font);
2901 scr->title_font = font;
2903 return REFRESH_WINDOW_FONT|REFRESH_BUTTON_IMAGES;
2907 static int
2908 setMenuTitleFont(WScreen *scr, WDefaultEntry *entry, WMFont *font, void *foo)
2910 if (scr->menu_title_font) {
2911 WMReleaseFont(scr->menu_title_font);
2914 scr->menu_title_font = font;
2916 return REFRESH_MENU_TITLE_FONT;
2920 static int
2921 setMenuTextFont(WScreen *scr, WDefaultEntry *entry, WMFont *font, void *foo)
2923 if (scr->menu_entry_font) {
2924 WMReleaseFont(scr->menu_entry_font);
2926 scr->menu_entry_font = font;
2928 return REFRESH_MENU_FONT;
2933 static int
2934 setIconTitleFont(WScreen *scr, WDefaultEntry *entry, WMFont *font, void *foo)
2936 if (scr->icon_title_font) {
2937 WMReleaseFont(scr->icon_title_font);
2940 scr->icon_title_font = font;
2942 return REFRESH_ICON_FONT;
2946 static int
2947 setClipTitleFont(WScreen *scr, WDefaultEntry *entry, WMFont *font, void *foo)
2949 if (scr->clip_title_font) {
2950 WMReleaseFont(scr->clip_title_font);
2953 scr->clip_title_font = font;
2955 return REFRESH_ICON_FONT;
2959 static int
2960 setLargeDisplayFont(WScreen *scr, WDefaultEntry *entry, WMFont *font, void *foo)
2962 if (scr->workspace_name_font) {
2963 WMReleaseFont(scr->workspace_name_font);
2966 scr->workspace_name_font = font;
2968 return 0;
2972 static int
2973 setHightlight(WScreen *scr, WDefaultEntry *entry, XColor *color, void *foo)
2975 if (scr->select_pixel!=scr->white_pixel &&
2976 scr->select_pixel!=scr->black_pixel) {
2977 wFreeColor(scr, scr->select_pixel);
2980 scr->select_pixel = color->pixel;
2982 return REFRESH_MENU_COLOR;
2986 static int
2987 setHightlightText(WScreen *scr, WDefaultEntry *entry, XColor *color, void *foo)
2989 if (scr->select_text_pixel!=scr->white_pixel &&
2990 scr->select_text_pixel!=scr->black_pixel) {
2991 wFreeColor(scr, scr->select_text_pixel);
2994 scr->select_text_pixel = color->pixel;
2996 return REFRESH_MENU_COLOR;
3000 static int
3001 setClipTitleColor(WScreen *scr, WDefaultEntry *entry, XColor *color, long index)
3003 if (scr->clip_title_pixel[index]!=scr->white_pixel &&
3004 scr->clip_title_pixel[index]!=scr->black_pixel) {
3005 wFreeColor(scr, scr->clip_title_pixel[index]);
3007 scr->clip_title_pixel[index] = color->pixel;
3009 #ifdef GRADIENT_CLIP_ARROW
3010 if (index == CLIP_NORMAL) {
3011 RImage *image;
3012 RColor color1, color2;
3013 int pt = CLIP_BUTTON_SIZE*wPreferences.icon_size/64;
3014 int as = pt - 15; /* 15 = 5+5+5 */
3016 FREE_PIXMAP(scr->clip_arrow_gradient);
3018 color1.red = (color->red >> 8)*6/10;
3019 color1.green = (color->green >> 8)*6/10;
3020 color1.blue = (color->blue >> 8)*6/10;
3022 color2.red = WMIN((color->red >> 8)*20/10, 255);
3023 color2.green = WMIN((color->green >> 8)*20/10, 255);
3024 color2.blue = WMIN((color->blue >> 8)*20/10, 255);
3026 image = RRenderGradient(as+1, as+1, &color1, &color2, RDiagonalGradient);
3027 RConvertImage(scr->rcontext, image, &scr->clip_arrow_gradient);
3028 RDestroyImage(image);
3030 #endif /* GRADIENT_CLIP_ARROW */
3032 return REFRESH_ICON_TITLE_COLOR;
3036 static int
3037 setWTitleColor(WScreen *scr, WDefaultEntry *entry, XColor *color, long index)
3039 if (scr->window_title_pixel[index]!=scr->white_pixel &&
3040 scr->window_title_pixel[index]!=scr->black_pixel) {
3041 wFreeColor(scr, scr->window_title_pixel[index]);
3044 scr->window_title_pixel[index] = color->pixel;
3046 if (index == WS_UNFOCUSED)
3047 XSetForeground(dpy, scr->info_text_gc, color->pixel);
3049 return REFRESH_WINDOW_TITLE_COLOR;
3053 static int
3054 setMenuTitleColor(WScreen *scr, WDefaultEntry *entry, XColor *color, long index)
3056 if (scr->menu_title_pixel[0]!=scr->white_pixel &&
3057 scr->menu_title_pixel[0]!=scr->black_pixel) {
3058 #ifdef DRAWSTRING_PLUGIN
3059 if(!scr->drawstring_func[W_STRING_MTITLE])
3060 #endif
3061 wFreeColor(scr, scr->menu_title_pixel[0]);
3064 scr->menu_title_pixel[0] = color->pixel;
3065 XSetForeground(dpy, scr->menu_title_gc, color->pixel);
3067 return REFRESH_MENU_TITLE_COLOR;
3071 static int
3072 setMenuTextColor(WScreen *scr, WDefaultEntry *entry, XColor *color, void *foo)
3074 XGCValues gcv;
3075 #define gcm (GCForeground|GCBackground|GCFillStyle)
3077 if (scr->mtext_pixel!=scr->white_pixel &&
3078 scr->mtext_pixel!=scr->black_pixel) {
3079 wFreeColor(scr, scr->mtext_pixel);
3082 scr->mtext_pixel = color->pixel;
3084 XSetForeground(dpy, scr->menu_entry_gc, color->pixel);
3087 if (scr->dtext_pixel == scr->mtext_pixel) {
3088 gcv.foreground = scr->white_pixel;
3089 gcv.background = scr->black_pixel;
3090 gcv.fill_style = FillStippled;
3091 } else {
3092 gcv.foreground = scr->dtext_pixel;
3093 gcv.fill_style = FillSolid;
3095 XChangeGC(dpy, scr->disabled_menu_entry_gc, gcm, &gcv);
3097 return REFRESH_MENU_COLOR;
3098 #undef gcm
3102 static int
3103 setMenuDisabledColor(WScreen *scr, WDefaultEntry *entry, XColor *color, void *foo)
3105 XGCValues gcv;
3106 #define gcm (GCForeground|GCBackground|GCFillStyle)
3108 if (scr->dtext_pixel!=scr->white_pixel &&
3109 scr->dtext_pixel!=scr->black_pixel) {
3110 wFreeColor(scr, scr->dtext_pixel);
3113 scr->dtext_pixel = color->pixel;
3115 if (scr->dtext_pixel == scr->mtext_pixel) {
3116 gcv.foreground = scr->white_pixel;
3117 gcv.background = scr->black_pixel;
3118 gcv.fill_style = FillStippled;
3119 } else {
3120 gcv.foreground = scr->dtext_pixel;
3121 gcv.fill_style = FillSolid;
3123 XChangeGC(dpy, scr->disabled_menu_entry_gc, gcm, &gcv);
3125 return REFRESH_MENU_COLOR;
3126 #undef gcm
3129 static int
3130 setIconTitleColor(WScreen *scr, WDefaultEntry *entry, XColor *color, void *foo)
3132 XSetForeground(dpy, scr->icon_title_gc, color->pixel);
3134 return REFRESH_ICON_TITLE_COLOR;
3138 static int
3139 setIconTitleBack(WScreen *scr, WDefaultEntry *entry, XColor *color, void *foo)
3141 if (scr->icon_title_texture) {
3142 wTextureDestroy(scr, (WTexture*)scr->icon_title_texture);
3144 XQueryColor (dpy, scr->w_colormap, color);
3145 scr->icon_title_texture = wTextureMakeSolid(scr, color);
3147 return REFRESH_ICON_TITLE_BACK;
3151 static void
3152 trackDeadProcess(pid_t pid, unsigned char status, WScreen *scr)
3154 close(scr->helper_fd);
3155 scr->helper_fd = 0;
3156 scr->helper_pid = 0;
3157 scr->flags.backimage_helper_launched = 0;
3161 static int
3162 setWorkspaceSpecificBack(WScreen *scr, WDefaultEntry *entry, proplist_t value,
3163 void *bar)
3165 int i;
3166 proplist_t val;
3167 char *str;
3169 if (scr->flags.backimage_helper_launched) {
3170 if (PLGetNumberOfElements(value)==0) {
3171 SendHelperMessage(scr, 'C', 0, NULL);
3172 SendHelperMessage(scr, 'K', 0, NULL);
3174 PLRelease(value);
3175 return 0;
3177 } else {
3178 pid_t pid;
3179 int filedes[2];
3181 if (PLGetNumberOfElements(value) == 0)
3182 return 0;
3184 if (pipe(filedes) < 0) {
3185 wsyserror("pipe() failed:can't set workspace specific background image");
3187 PLRelease(value);
3188 return 0;
3191 pid = fork();
3192 if (pid < 0) {
3193 wsyserror("fork() failed:can't set workspace specific background image");
3194 if (close(filedes[0]) < 0)
3195 wsyserror("could not close pipe");
3196 if (close(filedes[1]) < 0)
3197 wsyserror("could not close pipe");
3199 } else if (pid == 0) {
3200 SetupEnvironment(scr);
3202 if (close(0) < 0)
3203 wsyserror("could not close pipe");
3204 if (dup(filedes[0]) < 0) {
3205 wsyserror("dup() failed:can't set workspace specific background image");
3207 if (wPreferences.smooth_workspace_back)
3208 execlp("wmsetbg", "wmsetbg", "-helper", "-S", "-d", NULL);
3209 else
3210 execlp("wmsetbg", "wmsetbg", "-helper", "-d", NULL);
3211 wsyserror("could not execute wmsetbg");
3212 exit(1);
3213 } else {
3215 if (fcntl(filedes[0], F_SETFD, FD_CLOEXEC) < 0) {
3216 wsyserror("error setting close-on-exec flag");
3218 if (fcntl(filedes[1], F_SETFD, FD_CLOEXEC) < 0) {
3219 wsyserror("error setting close-on-exec flag");
3222 scr->helper_fd = filedes[1];
3223 scr->helper_pid = pid;
3224 scr->flags.backimage_helper_launched = 1;
3226 wAddDeathHandler(pid, (WDeathHandler*)trackDeadProcess, scr);
3228 SendHelperMessage(scr, 'P', -1, wPreferences.pixmap_path);
3233 for (i = 0; i < PLGetNumberOfElements(value); i++) {
3234 val = PLGetArrayElement(value, i);
3235 if (val && PLIsArray(val) && PLGetNumberOfElements(val)>0) {
3236 str = PLGetDescription(val);
3238 SendHelperMessage(scr, 'S', i+1, str);
3240 free(str);
3241 } else {
3242 SendHelperMessage(scr, 'U', i+1, NULL);
3245 sleep(1);
3247 PLRelease(value);
3248 return 0;
3252 static int
3253 setWorkspaceBack(WScreen *scr, WDefaultEntry *entry, proplist_t value,
3254 void *bar)
3256 if (scr->flags.backimage_helper_launched) {
3257 char *str;
3259 if (PLGetNumberOfElements(value)==0) {
3260 SendHelperMessage(scr, 'U', 0, NULL);
3261 } else {
3262 /* set the default workspace background to this one */
3263 str = PLGetDescription(value);
3264 if (str) {
3265 SendHelperMessage(scr, 'S', 0, str);
3266 free(str);
3267 SendHelperMessage(scr, 'C', scr->current_workspace+1, NULL);
3268 } else {
3269 SendHelperMessage(scr, 'U', 0, NULL);
3272 } else if (PLGetNumberOfElements(value) > 0) {
3273 char *command;
3274 char *text;
3276 SetupEnvironment(scr);
3277 text = PLGetDescription(value);
3278 command = wmalloc(strlen(text)+40);
3279 if (wPreferences.smooth_workspace_back)
3280 sprintf(command, "wmsetbg -d -S -p '%s' &", text);
3281 else
3282 sprintf(command, "wmsetbg -d -p '%s' &", text);
3283 free(text);
3284 system(command);
3285 free(command);
3287 PLRelease(value);
3289 return 0;
3293 static int
3294 setWidgetColor(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3296 if (scr->widget_texture) {
3297 wTextureDestroy(scr, (WTexture*)scr->widget_texture);
3299 scr->widget_texture = *(WTexSolid**)texture;
3301 return 0;
3305 static int
3306 setFTitleBack(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3308 if (scr->window_title_texture[WS_FOCUSED]) {
3309 wTextureDestroy(scr, scr->window_title_texture[WS_FOCUSED]);
3311 scr->window_title_texture[WS_FOCUSED] = *texture;
3313 return REFRESH_WINDOW_TEXTURES;
3317 static int
3318 setPTitleBack(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3320 if (scr->window_title_texture[WS_PFOCUSED]) {
3321 wTextureDestroy(scr, scr->window_title_texture[WS_PFOCUSED]);
3323 scr->window_title_texture[WS_PFOCUSED] = *texture;
3325 return REFRESH_WINDOW_TEXTURES;
3329 static int
3330 setUTitleBack(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3332 if (scr->window_title_texture[WS_UNFOCUSED]) {
3333 wTextureDestroy(scr, scr->window_title_texture[WS_UNFOCUSED]);
3335 scr->window_title_texture[WS_UNFOCUSED] = *texture;
3337 return REFRESH_WINDOW_TEXTURES;
3341 static int
3342 setResizebarBack(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3344 if (scr->resizebar_texture[0]) {
3345 wTextureDestroy(scr, scr->resizebar_texture[0]);
3347 scr->resizebar_texture[0] = *texture;
3349 return REFRESH_WINDOW_TEXTURES;
3353 static int
3354 setMenuTitleBack(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3356 if (scr->menu_title_texture[0]) {
3357 wTextureDestroy(scr, scr->menu_title_texture[0]);
3359 scr->menu_title_texture[0] = *texture;
3361 return REFRESH_MENU_TITLE_TEXTURE;
3365 static int
3366 setMenuTextBack(WScreen *scr, WDefaultEntry *entry, WTexture **texture, void *foo)
3368 if (scr->menu_item_texture) {
3369 wTextureDestroy(scr, scr->menu_item_texture);
3370 wTextureDestroy(scr, (WTexture*)scr->menu_item_auxtexture);
3372 scr->menu_item_texture = *texture;
3374 scr->menu_item_auxtexture
3375 = wTextureMakeSolid(scr, &scr->menu_item_texture->any.color);
3377 return REFRESH_MENU_TEXTURE;
3381 static int
3382 setKeyGrab(WScreen *scr, WDefaultEntry *entry, WShortKey *shortcut, long index)
3384 WWindow *wwin;
3385 wKeyBindings[index] = *shortcut;
3387 wwin = scr->focused_window;
3389 while (wwin!=NULL) {
3390 XUngrabKey(dpy, AnyKey, AnyModifier, wwin->frame->core->window);
3392 if (!WFLAGP(wwin, no_bind_keys)) {
3393 wWindowSetKeyGrabs(wwin);
3395 wwin = wwin->prev;
3398 return 0;
3402 static int
3403 setIconPosition(WScreen *scr, WDefaultEntry *entry, void *bar, void *foo)
3405 wArrangeIcons(scr, True);
3407 return 0;
3411 static int
3412 updateUsableArea(WScreen *scr, WDefaultEntry *entry, void *bar, void *foo)
3414 wScreenUpdateUsableArea(scr);
3416 return 0;
3420 static int
3421 setMenuStyle(WScreen *scr, WDefaultEntry *entry, int *value, void *foo)
3423 return REFRESH_MENU_TEXTURE;
3428 static int
3429 setButtonImages(WScreen *scr, WDefaultEntry *entry, int *value, void *foo)
3431 return REFRESH_BUTTON_IMAGES;
3436 * Very ugly kluge.
3437 * Need access to the double click variables, so that all widgets in
3438 * wmaker panels will have the same dbl-click values.
3439 * TODO: figure a better way of dealing with it.
3441 #include "WINGsP.h"
3443 static int
3444 setDoubleClick(WScreen *scr, WDefaultEntry *entry, int *value, void *foo)
3446 extern _WINGsConfiguration WINGsConfiguration;
3448 if (*value <= 0)
3449 *(int*)foo = 1;
3451 WINGsConfiguration.doubleClickDelay = *value;
3453 return 0;
3458 static int
3459 setMultiByte(WScreen *scr, WDefaultEntry *entry, char *value, void *foo)
3461 extern _WINGsConfiguration WINGsConfiguration;
3463 WINGsConfiguration.useMultiByte = *value;
3465 return 0;
3469 #ifdef DEFINABLE_CURSOR
3470 static int
3471 setCursor(WScreen *scr, WDefaultEntry *entry, Cursor *cursor, long index)
3473 if (None != wCursor[index])
3475 XFreeCursor(dpy, wCursor[index]);
3478 wCursor[index] = *cursor;
3480 if ((WCUR_ROOT == index) && (None != *cursor))
3482 XDefineCursor(dpy, scr->root_win, *cursor);
3485 return 0;
3487 #endif /* DEFINABLE_CURSOR*/