1 /* defaults.c - manage configuration through defaults db
3 * Window Maker window manager
5 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * Copyright (c) 1998-2003 Dan Pascu
7 * Copyright (c) 2014 Window Maker Team
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
35 #include <sys/types.h>
41 #define PATH_MAX DEFAULT_PATH_MAX
45 #include <X11/Xutil.h>
46 #include <X11/keysym.h>
50 #include "WindowMaker.h"
55 #include "resources.h"
58 #include "xmodifier.h"
63 #include "workspace.h"
64 #include "properties.h"
68 #define MAX_SHORTCUT_LENGTH 32
70 #ifndef GLOBAL_DEFAULTS_SUBDIR
71 #define GLOBAL_DEFAULTS_SUBDIR "WindowMaker"
75 typedef struct _WDefaultEntry WDefaultEntry
;
76 typedef int (WDECallbackConvert
) (WScreen
*scr
, WDefaultEntry
*entry
, WMPropList
*plvalue
, void *addr
, void **tdata
);
77 typedef int (WDECallbackUpdate
) (WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *extra_data
);
79 struct _WDefaultEntry
{
81 const char *default_value
;
84 WDECallbackConvert
*convert
;
85 WDECallbackUpdate
*update
;
87 WMPropList
*plvalue
; /* default value */
90 /* used to map strings to integers */
98 static WDECallbackConvert getBool
;
99 static WDECallbackConvert getInt
;
100 static WDECallbackConvert getCoord
;
101 static WDECallbackConvert getPathList
;
102 static WDECallbackConvert getEnum
;
103 static WDECallbackConvert getTexture
;
104 static WDECallbackConvert getWSBackground
;
105 static WDECallbackConvert getWSSpecificBackground
;
106 static WDECallbackConvert getFont
;
107 static WDECallbackConvert getColor
;
108 static WDECallbackConvert getKeybind
;
109 static WDECallbackConvert getModMask
;
110 static WDECallbackConvert getPropList
;
112 /* value setting functions */
113 static WDECallbackUpdate setJustify
;
114 static WDECallbackUpdate setClearance
;
115 static WDECallbackUpdate setIfDockPresent
;
116 static WDECallbackUpdate setClipMergedInDock
;
117 static WDECallbackUpdate setWrapAppiconsInDock
;
118 static WDECallbackUpdate setStickyIcons
;
119 static WDECallbackUpdate setWidgetColor
;
120 static WDECallbackUpdate setIconTile
;
121 static WDECallbackUpdate setWinTitleFont
;
122 static WDECallbackUpdate setMenuTitleFont
;
123 static WDECallbackUpdate setMenuTextFont
;
124 static WDECallbackUpdate setIconTitleFont
;
125 static WDECallbackUpdate setIconTitleColor
;
126 static WDECallbackUpdate setIconTitleBack
;
127 static WDECallbackUpdate setFrameBorderWidth
;
128 static WDECallbackUpdate setFrameBorderColor
;
129 static WDECallbackUpdate setFrameFocusedBorderColor
;
130 static WDECallbackUpdate setFrameSelectedBorderColor
;
131 static WDECallbackUpdate setLargeDisplayFont
;
132 static WDECallbackUpdate setWTitleColor
;
133 static WDECallbackUpdate setFTitleBack
;
134 static WDECallbackUpdate setPTitleBack
;
135 static WDECallbackUpdate setUTitleBack
;
136 static WDECallbackUpdate setResizebarBack
;
137 static WDECallbackUpdate setWorkspaceBack
;
138 static WDECallbackUpdate setWorkspaceSpecificBack
;
139 static WDECallbackUpdate setMenuTitleColor
;
140 static WDECallbackUpdate setMenuTextColor
;
141 static WDECallbackUpdate setMenuDisabledColor
;
142 static WDECallbackUpdate setMenuTitleBack
;
143 static WDECallbackUpdate setMenuTextBack
;
144 static WDECallbackUpdate setHightlight
;
145 static WDECallbackUpdate setHightlightText
;
146 static WDECallbackUpdate setKeyGrab
;
147 static WDECallbackUpdate setDoubleClick
;
148 static WDECallbackUpdate setIconPosition
;
149 static WDECallbackUpdate setWorkspaceMapBackground
;
151 static WDECallbackUpdate setClipTitleFont
;
152 static WDECallbackUpdate setClipTitleColor
;
154 static WDECallbackUpdate setMenuStyle
;
155 static WDECallbackUpdate setSwPOptions
;
156 static WDECallbackUpdate updateUsableArea
;
158 static WDECallbackUpdate setModifierKeyLabels
;
160 static WDECallbackConvert getCursor
;
161 static WDECallbackUpdate setCursor
;
164 * Tables to convert strings to enumeration values.
165 * Values stored are char
168 /* WARNING: sum of length of all value strings must not exceed
170 #define TOTAL_VALUES_LENGTH 80
172 #define REFRESH_WINDOW_TEXTURES (1<<0)
173 #define REFRESH_MENU_TEXTURE (1<<1)
174 #define REFRESH_MENU_FONT (1<<2)
175 #define REFRESH_MENU_COLOR (1<<3)
176 #define REFRESH_MENU_TITLE_TEXTURE (1<<4)
177 #define REFRESH_MENU_TITLE_FONT (1<<5)
178 #define REFRESH_MENU_TITLE_COLOR (1<<6)
179 #define REFRESH_WINDOW_TITLE_COLOR (1<<7)
180 #define REFRESH_WINDOW_FONT (1<<8)
181 #define REFRESH_ICON_TILE (1<<9)
182 #define REFRESH_ICON_FONT (1<<10)
183 #define REFRESH_WORKSPACE_BACK (1<<11)
185 #define REFRESH_BUTTON_IMAGES (1<<12)
187 #define REFRESH_ICON_TITLE_COLOR (1<<13)
188 #define REFRESH_ICON_TITLE_BACK (1<<14)
190 #define REFRESH_WORKSPACE_MENU (1<<15)
192 #define REFRESH_FRAME_BORDER REFRESH_MENU_FONT|REFRESH_WINDOW_FONT
194 static WOptionEnumeration seFocusModes
[] = {
195 {"Manual", WKF_CLICK
, 0}, {"ClickToFocus", WKF_CLICK
, 1},
196 {"Sloppy", WKF_SLOPPY
, 0}, {"SemiAuto", WKF_SLOPPY
, 1}, {"Auto", WKF_SLOPPY
, 1},
200 static WOptionEnumeration seTitlebarModes
[] = {
201 {"new", TS_NEW
, 0}, {"old", TS_OLD
, 0},
202 {"next", TS_NEXT
, 0}, {NULL
, 0, 0}
205 static WOptionEnumeration seColormapModes
[] = {
206 {"Manual", WCM_CLICK
, 0}, {"ClickToFocus", WCM_CLICK
, 1},
207 {"Auto", WCM_POINTER
, 0}, {"FocusFollowMouse", WCM_POINTER
, 1},
211 static WOptionEnumeration sePlacements
[] = {
212 {"Auto", WPM_AUTO
, 0},
213 {"Smart", WPM_SMART
, 0},
214 {"Cascade", WPM_CASCADE
, 0},
215 {"Random", WPM_RANDOM
, 0},
216 {"Manual", WPM_MANUAL
, 0},
217 {"Center", WPM_CENTER
, 0},
221 static WOptionEnumeration seGeomDisplays
[] = {
222 {"None", WDIS_NONE
, 0},
223 {"Center", WDIS_CENTER
, 0},
224 {"Corner", WDIS_TOPLEFT
, 0},
225 {"Floating", WDIS_FRAME_CENTER
, 0},
226 {"Line", WDIS_NEW
, 0},
230 static WOptionEnumeration seSpeeds
[] = {
231 {"UltraFast", SPEED_ULTRAFAST
, 0},
232 {"Fast", SPEED_FAST
, 0},
233 {"Medium", SPEED_MEDIUM
, 0},
234 {"Slow", SPEED_SLOW
, 0},
235 {"UltraSlow", SPEED_ULTRASLOW
, 0},
239 static WOptionEnumeration seMouseButtonActions
[] = {
240 {"None", WA_NONE
, 0},
241 {"SelectWindows", WA_SELECT_WINDOWS
, 0},
242 {"OpenApplicationsMenu", WA_OPEN_APPMENU
, 0},
243 {"OpenWindowListMenu", WA_OPEN_WINLISTMENU
, 0},
244 {"MoveToPrevWorkspace", WA_MOVE_PREVWORKSPACE
, 0},
245 {"MoveToNextWorkspace", WA_MOVE_NEXTWORKSPACE
, 0},
246 {"MoveToPrevWindow", WA_MOVE_PREVWINDOW
, 0},
247 {"MoveToNextWindow", WA_MOVE_NEXTWINDOW
, 0},
251 static WOptionEnumeration seMouseWheelActions
[] = {
252 {"None", WA_NONE
, 0},
253 {"SwitchWorkspaces", WA_SWITCH_WORKSPACES
, 0},
254 {"SwitchWindows", WA_SWITCH_WINDOWS
, 0},
258 static WOptionEnumeration seIconificationStyles
[] = {
259 {"Zoom", WIS_ZOOM
, 0},
260 {"Twist", WIS_TWIST
, 0},
261 {"Flip", WIS_FLIP
, 0},
262 {"None", WIS_NONE
, 0},
263 {"random", WIS_RANDOM
, 0},
267 static WOptionEnumeration seJustifications
[] = {
268 {"Left", WTJ_LEFT
, 0},
269 {"Center", WTJ_CENTER
, 0},
270 {"Right", WTJ_RIGHT
, 0},
274 static WOptionEnumeration seIconPositions
[] = {
275 {"blv", IY_BOTTOM
| IY_LEFT
| IY_VERT
, 0},
276 {"blh", IY_BOTTOM
| IY_LEFT
| IY_HORIZ
, 0},
277 {"brv", IY_BOTTOM
| IY_RIGHT
| IY_VERT
, 0},
278 {"brh", IY_BOTTOM
| IY_RIGHT
| IY_HORIZ
, 0},
279 {"tlv", IY_TOP
| IY_LEFT
| IY_VERT
, 0},
280 {"tlh", IY_TOP
| IY_LEFT
| IY_HORIZ
, 0},
281 {"trv", IY_TOP
| IY_RIGHT
| IY_VERT
, 0},
282 {"trh", IY_TOP
| IY_RIGHT
| IY_HORIZ
, 0},
286 static WOptionEnumeration seMenuStyles
[] = {
287 {"normal", MS_NORMAL
, 0},
288 {"singletexture", MS_SINGLE_TEXTURE
, 0},
289 {"flat", MS_FLAT
, 0},
293 static WOptionEnumeration seDisplayPositions
[] = {
294 {"none", WD_NONE
, 0},
295 {"center", WD_CENTER
, 0},
297 {"bottom", WD_BOTTOM
, 0},
298 {"topleft", WD_TOPLEFT
, 0},
299 {"topright", WD_TOPRIGHT
, 0},
300 {"bottomleft", WD_BOTTOMLEFT
, 0},
301 {"bottomright", WD_BOTTOMRIGHT
, 0},
305 static WOptionEnumeration seWorkspaceBorder
[] = {
306 {"None", WB_NONE
, 0},
307 {"LeftRight", WB_LEFTRIGHT
, 0},
308 {"TopBottom", WB_TOPBOTTOM
, 0},
309 {"AllDirections", WB_ALLDIRS
, 0},
313 static WOptionEnumeration seDragMaximizedWindow
[] = {
314 {"Move", DRAGMAX_MOVE
, 0},
315 {"RestoreGeometry", DRAGMAX_RESTORE
, 0},
316 {"Unmaximize", DRAGMAX_UNMAXIMIZE
, 0},
317 {"NoMove", DRAGMAX_NOMOVE
, 0},
322 * Backward Compatibility:
323 * The Mini-Previews were introduced in 0.95.6 under the name "Apercu".
324 * For compatibility, we still support the old names in configuration files,
325 * which are loaded in this structure, so this should stay for at least
326 * 2 years (that means until 2017) */
330 } legacy_minipreview_config
;
333 * ALL entries in the tables bellow, NEED to have a default value
334 * defined, and this value needs to be correct.
337 /* these options will only affect the window manager on startup
339 * static defaults can't access the screen data, because it is
340 * created after these defaults are read
342 WDefaultEntry staticOptionList
[] = {
344 {"ColormapSize", "4", NULL
,
345 &wPreferences
.cmap_size
, getInt
, NULL
, NULL
, NULL
},
346 {"DisableDithering", "NO", NULL
,
347 &wPreferences
.no_dithering
, getBool
, NULL
, NULL
, NULL
},
348 {"IconSize", "64", NULL
,
349 &wPreferences
.icon_size
, getInt
, NULL
, NULL
, NULL
},
350 {"ModifierKey", "Mod1", NULL
,
351 &wPreferences
.modifier_mask
, getModMask
, NULL
, NULL
, NULL
},
352 {"FocusMode", "manual", seFocusModes
, /* have a problem when switching from */
353 &wPreferences
.focus_mode
, getEnum
, NULL
, NULL
, NULL
}, /* manual to sloppy without restart */
354 {"NewStyle", "new", seTitlebarModes
,
355 &wPreferences
.new_style
, getEnum
, NULL
, NULL
, NULL
},
356 {"DisableDock", "NO", (void *)WM_DOCK
,
357 NULL
, getBool
, setIfDockPresent
, NULL
, NULL
},
358 {"DisableClip", "NO", (void *)WM_CLIP
,
359 NULL
, getBool
, setIfDockPresent
, NULL
, NULL
},
360 {"DisableDrawers", "NO", (void *)WM_DRAWER
,
361 NULL
, getBool
, setIfDockPresent
, NULL
, NULL
},
362 {"ClipMergedInDock", "NO", NULL
,
363 NULL
, getBool
, setClipMergedInDock
, NULL
, NULL
},
364 {"DisableMiniwindows", "NO", NULL
,
365 &wPreferences
.disable_miniwindows
, getBool
, NULL
, NULL
, NULL
},
366 {"DisableWorkspacePager", "NO", NULL
,
367 &wPreferences
.disable_workspace_pager
, getBool
, NULL
, NULL
, NULL
}
370 #define NUM2STRING_(x) #x
371 #define NUM2STRING(x) NUM2STRING_(x)
373 WDefaultEntry optionList
[] = {
375 /* dynamic options */
377 {"IconPosition", "blh", seIconPositions
,
378 &wPreferences
.icon_yard
, getEnum
, setIconPosition
, NULL
, NULL
},
379 {"IconificationStyle", "Zoom", seIconificationStyles
,
380 &wPreferences
.iconification_style
, getEnum
, NULL
, NULL
, NULL
},
381 {"DisableWSMouseActions", "NO", NULL
,
382 &wPreferences
.disable_root_mouse
, getBool
, NULL
, NULL
, NULL
},
383 {"MouseLeftButtonAction", "SelectWindows", seMouseButtonActions
,
384 &wPreferences
.mouse_button1
, getEnum
, NULL
, NULL
, NULL
},
385 {"MouseMiddleButtonAction", "OpenWindowListMenu", seMouseButtonActions
,
386 &wPreferences
.mouse_button2
, getEnum
, NULL
, NULL
, NULL
},
387 {"MouseRightButtonAction", "OpenApplicationsMenu", seMouseButtonActions
,
388 &wPreferences
.mouse_button3
, getEnum
, NULL
, NULL
, NULL
},
389 {"MouseBackwardButtonAction", "None", seMouseButtonActions
,
390 &wPreferences
.mouse_button8
, getEnum
, NULL
, NULL
, NULL
},
391 {"MouseForwardButtonAction", "None", seMouseButtonActions
,
392 &wPreferences
.mouse_button9
, getEnum
, NULL
, NULL
, NULL
},
393 {"MouseWheelAction", "None", seMouseWheelActions
,
394 &wPreferences
.mouse_wheel_scroll
, getEnum
, NULL
, NULL
, NULL
},
395 {"MouseWheelTiltAction", "None", seMouseWheelActions
,
396 &wPreferences
.mouse_wheel_tilt
, getEnum
, NULL
, NULL
, NULL
},
397 {"PixmapPath", DEF_PIXMAP_PATHS
, NULL
,
398 &wPreferences
.pixmap_path
, getPathList
, NULL
, NULL
, NULL
},
399 {"IconPath", DEF_ICON_PATHS
, NULL
,
400 &wPreferences
.icon_path
, getPathList
, NULL
, NULL
, NULL
},
401 {"ColormapMode", "auto", seColormapModes
,
402 &wPreferences
.colormap_mode
, getEnum
, NULL
, NULL
, NULL
},
403 {"AutoFocus", "NO", NULL
,
404 &wPreferences
.auto_focus
, getBool
, NULL
, NULL
, NULL
},
405 {"RaiseDelay", "0", NULL
,
406 &wPreferences
.raise_delay
, getInt
, NULL
, NULL
, NULL
},
407 {"CirculateRaise", "NO", NULL
,
408 &wPreferences
.circ_raise
, getBool
, NULL
, NULL
, NULL
},
409 {"Superfluous", "NO", NULL
,
410 &wPreferences
.superfluous
, getBool
, NULL
, NULL
, NULL
},
411 {"AdvanceToNewWorkspace", "NO", NULL
,
412 &wPreferences
.ws_advance
, getBool
, NULL
, NULL
, NULL
},
413 {"CycleWorkspaces", "NO", NULL
,
414 &wPreferences
.ws_cycle
, getBool
, NULL
, NULL
, NULL
},
415 {"WorkspaceNameDisplayPosition", "center", seDisplayPositions
,
416 &wPreferences
.workspace_name_display_position
, getEnum
, NULL
, NULL
, NULL
},
417 {"WorkspaceBorder", "None", seWorkspaceBorder
,
418 &wPreferences
.workspace_border_position
, getEnum
, updateUsableArea
, NULL
, NULL
},
419 {"WorkspaceBorderSize", "0", NULL
,
420 &wPreferences
.workspace_border_size
, getInt
, updateUsableArea
, NULL
, NULL
},
421 {"StickyIcons", "NO", NULL
,
422 &wPreferences
.sticky_icons
, getBool
, setStickyIcons
, NULL
, NULL
},
423 {"SaveSessionOnExit", "NO", NULL
,
424 &wPreferences
.save_session_on_exit
, getBool
, NULL
, NULL
, NULL
},
425 {"WrapMenus", "NO", NULL
,
426 &wPreferences
.wrap_menus
, getBool
, NULL
, NULL
, NULL
},
427 {"ScrollableMenus", "NO", NULL
,
428 &wPreferences
.scrollable_menus
, getBool
, NULL
, NULL
, NULL
},
429 {"MenuScrollSpeed", "medium", seSpeeds
,
430 &wPreferences
.menu_scroll_speed
, getEnum
, NULL
, NULL
, NULL
},
431 {"IconSlideSpeed", "medium", seSpeeds
,
432 &wPreferences
.icon_slide_speed
, getEnum
, NULL
, NULL
, NULL
},
433 {"ShadeSpeed", "medium", seSpeeds
,
434 &wPreferences
.shade_speed
, getEnum
, NULL
, NULL
, NULL
},
435 {"BounceAppIconsWhenUrgent", "YES", NULL
,
436 &wPreferences
.bounce_appicons_when_urgent
, getBool
, NULL
, NULL
, NULL
},
437 {"RaiseAppIconsWhenBouncing", "NO", NULL
,
438 &wPreferences
.raise_appicons_when_bouncing
, getBool
, NULL
, NULL
, NULL
},
439 {"DoNotMakeAppIconsBounce", "NO", NULL
,
440 &wPreferences
.do_not_make_appicons_bounce
, getBool
, NULL
, NULL
, NULL
},
441 {"DoubleClickTime", "250", (void *)&wPreferences
.dblclick_time
,
442 &wPreferences
.dblclick_time
, getInt
, setDoubleClick
, NULL
, NULL
},
443 {"ClipAutoraiseDelay", "600", NULL
,
444 &wPreferences
.clip_auto_raise_delay
, getInt
, NULL
, NULL
, NULL
},
445 {"ClipAutolowerDelay", "1000", NULL
,
446 &wPreferences
.clip_auto_lower_delay
, getInt
, NULL
, NULL
, NULL
},
447 {"ClipAutoexpandDelay", "600", NULL
,
448 &wPreferences
.clip_auto_expand_delay
, getInt
, NULL
, NULL
, NULL
},
449 {"ClipAutocollapseDelay", "1000", NULL
,
450 &wPreferences
.clip_auto_collapse_delay
, getInt
, NULL
, NULL
, NULL
},
451 {"WrapAppiconsInDock", "YES", NULL
,
452 NULL
, getBool
, setWrapAppiconsInDock
, NULL
, NULL
},
453 {"AlignSubmenus", "NO", NULL
,
454 &wPreferences
.align_menus
, getBool
, NULL
, NULL
, NULL
},
455 {"ViKeyMenus", "NO", NULL
,
456 &wPreferences
.vi_key_menus
, getBool
, NULL
, NULL
, NULL
},
457 {"OpenTransientOnOwnerWorkspace", "NO", NULL
,
458 &wPreferences
.open_transients_with_parent
, getBool
, NULL
, NULL
, NULL
},
459 {"WindowPlacement", "auto", sePlacements
,
460 &wPreferences
.window_placement
, getEnum
, NULL
, NULL
, NULL
},
461 {"IgnoreFocusClick", "NO", NULL
,
462 &wPreferences
.ignore_focus_click
, getBool
, NULL
, NULL
, NULL
},
463 {"UseSaveUnders", "NO", NULL
,
464 &wPreferences
.use_saveunders
, getBool
, NULL
, NULL
, NULL
},
465 {"OpaqueMove", "NO", NULL
,
466 &wPreferences
.opaque_move
, getBool
, NULL
, NULL
, NULL
},
467 {"OpaqueResize", "NO", NULL
,
468 &wPreferences
.opaque_resize
, getBool
, NULL
, NULL
, NULL
},
469 {"OpaqueMoveResizeKeyboard", "NO", NULL
,
470 &wPreferences
.opaque_move_resize_keyboard
, getBool
, NULL
, NULL
, NULL
},
471 {"DisableAnimations", "NO", NULL
,
472 &wPreferences
.no_animations
, getBool
, NULL
, NULL
, NULL
},
473 {"DontLinkWorkspaces", "NO", NULL
,
474 &wPreferences
.no_autowrap
, getBool
, NULL
, NULL
, NULL
},
475 {"WindowSnapping", "NO", NULL
,
476 &wPreferences
.window_snapping
, getBool
, NULL
, NULL
, NULL
},
477 {"DragMaximizedWindow", "Move", seDragMaximizedWindow
,
478 &wPreferences
.drag_maximized_window
, getEnum
, NULL
, NULL
, NULL
},
479 {"HighlightActiveApp", "YES", NULL
,
480 &wPreferences
.highlight_active_app
, getBool
, NULL
, NULL
, NULL
},
481 {"AutoArrangeIcons", "NO", NULL
,
482 &wPreferences
.auto_arrange_icons
, getBool
, NULL
, NULL
, NULL
},
483 {"NoWindowOverDock", "NO", NULL
,
484 &wPreferences
.no_window_over_dock
, getBool
, updateUsableArea
, NULL
, NULL
},
485 {"NoWindowOverIcons", "NO", NULL
,
486 &wPreferences
.no_window_over_icons
, getBool
, updateUsableArea
, NULL
, NULL
},
487 {"WindowPlaceOrigin", "(0, 0)", NULL
,
488 &wPreferences
.window_place_origin
, getCoord
, NULL
, NULL
, NULL
},
489 {"ResizeDisplay", "corner", seGeomDisplays
,
490 &wPreferences
.size_display
, getEnum
, NULL
, NULL
, NULL
},
491 {"MoveDisplay", "corner", seGeomDisplays
,
492 &wPreferences
.move_display
, getEnum
, NULL
, NULL
, NULL
},
493 {"DontConfirmKill", "NO", NULL
,
494 &wPreferences
.dont_confirm_kill
, getBool
, NULL
, NULL
, NULL
},
495 {"WindowTitleBalloons", "NO", NULL
,
496 &wPreferences
.window_balloon
, getBool
, NULL
, NULL
, NULL
},
497 {"MiniwindowTitleBalloons", "NO", NULL
,
498 &wPreferences
.miniwin_title_balloon
, getBool
, NULL
, NULL
, NULL
},
499 {"MiniwindowPreviewBalloons", "NO", NULL
,
500 &wPreferences
.miniwin_preview_balloon
, getBool
, NULL
, NULL
, NULL
},
501 {"AppIconBalloons", "NO", NULL
,
502 &wPreferences
.appicon_balloon
, getBool
, NULL
, NULL
, NULL
},
503 {"HelpBalloons", "NO", NULL
,
504 &wPreferences
.help_balloon
, getBool
, NULL
, NULL
, NULL
},
505 {"EdgeResistance", "30", NULL
,
506 &wPreferences
.edge_resistance
, getInt
, NULL
, NULL
, NULL
},
507 {"ResizeIncrement", "0", NULL
,
508 &wPreferences
.resize_increment
, getInt
, NULL
, NULL
, NULL
},
509 {"Attraction", "NO", NULL
,
510 &wPreferences
.attract
, getBool
, NULL
, NULL
, NULL
},
511 {"DisableBlinking", "NO", NULL
,
512 &wPreferences
.dont_blink
, getBool
, NULL
, NULL
, NULL
},
513 {"SingleClickLaunch", "NO", NULL
,
514 &wPreferences
.single_click
, getBool
, NULL
, NULL
, NULL
},
515 {"StrictWindozeCycle", "YES", NULL
,
516 &wPreferences
.strict_windoze_cycle
, getBool
, NULL
, NULL
, NULL
},
517 {"SwitchPanelOnlyOpen", "NO", NULL
,
518 &wPreferences
.panel_only_open
, getBool
, NULL
, NULL
, NULL
},
519 {"MiniPreviewSize", "128", NULL
,
520 &wPreferences
.minipreview_size
, getInt
, NULL
, NULL
, NULL
},
523 * Backward Compatibility:
524 * The Mini-Previews were introduced in 0.95.6 under the name "Apercu".
525 * For compatibility, we still support the old names in configuration files,
526 * so this should stay for at least 2 years (that means until 2017)
528 {"MiniwindowApercuBalloons", "NO", NULL
,
529 &legacy_minipreview_config
.enable
, getBool
, NULL
, NULL
, NULL
},
530 {"ApercuSize", "128", NULL
,
531 &legacy_minipreview_config
.size
, getInt
, NULL
, NULL
, NULL
},
535 {"MenuStyle", "normal", seMenuStyles
,
536 &wPreferences
.menu_style
, getEnum
, setMenuStyle
, NULL
, NULL
},
537 {"WidgetColor", "(solid, gray)", NULL
,
538 NULL
, getTexture
, setWidgetColor
, NULL
, NULL
},
539 {"WorkspaceSpecificBack", "()", NULL
,
540 NULL
, getWSSpecificBackground
, setWorkspaceSpecificBack
, NULL
, NULL
},
541 /* WorkspaceBack must come after WorkspaceSpecificBack or
542 * WorkspaceBack wont know WorkspaceSpecificBack was also
543 * specified and 2 copies of wmsetbg will be launched */
544 {"WorkspaceBack", "(solid, black)", NULL
,
545 NULL
, getWSBackground
, setWorkspaceBack
, NULL
, NULL
},
546 {"SmoothWorkspaceBack", "NO", NULL
,
547 NULL
, getBool
, NULL
, NULL
, NULL
},
548 {"IconBack", "(solid, gray)", NULL
,
549 NULL
, getTexture
, setIconTile
, NULL
, NULL
},
550 {"TitleJustify", "center", seJustifications
,
551 &wPreferences
.title_justification
, getEnum
, setJustify
, NULL
, NULL
},
552 {"WindowTitleFont", DEF_TITLE_FONT
, NULL
,
553 NULL
, getFont
, setWinTitleFont
, NULL
, NULL
},
554 {"WindowTitleExtendSpace", DEF_WINDOW_TITLE_EXTEND_SPACE
, NULL
,
555 &wPreferences
.window_title_clearance
, getInt
, setClearance
, NULL
, NULL
},
556 {"WindowTitleMinHeight", "0", NULL
,
557 &wPreferences
.window_title_min_height
, getInt
, setClearance
, NULL
, NULL
},
558 {"WindowTitleMaxHeight", NUM2STRING(INT_MAX
), NULL
,
559 &wPreferences
.window_title_max_height
, getInt
, setClearance
, NULL
, NULL
},
560 {"MenuTitleExtendSpace", DEF_MENU_TITLE_EXTEND_SPACE
, NULL
,
561 &wPreferences
.menu_title_clearance
, getInt
, setClearance
, NULL
, NULL
},
562 {"MenuTitleMinHeight", "0", NULL
,
563 &wPreferences
.menu_title_min_height
, getInt
, setClearance
, NULL
, NULL
},
564 {"MenuTitleMaxHeight", NUM2STRING(INT_MAX
), NULL
,
565 &wPreferences
.menu_title_max_height
, getInt
, setClearance
, NULL
, NULL
},
566 {"MenuTextExtendSpace", DEF_MENU_TEXT_EXTEND_SPACE
, NULL
,
567 &wPreferences
.menu_text_clearance
, getInt
, setClearance
, NULL
, NULL
},
568 {"MenuTitleFont", DEF_MENU_TITLE_FONT
, NULL
,
569 NULL
, getFont
, setMenuTitleFont
, NULL
, NULL
},
570 {"MenuTextFont", DEF_MENU_ENTRY_FONT
, NULL
,
571 NULL
, getFont
, setMenuTextFont
, NULL
, NULL
},
572 {"IconTitleFont", DEF_ICON_TITLE_FONT
, NULL
,
573 NULL
, getFont
, setIconTitleFont
, NULL
, NULL
},
574 {"ClipTitleFont", DEF_CLIP_TITLE_FONT
, NULL
,
575 NULL
, getFont
, setClipTitleFont
, NULL
, NULL
},
576 {"ShowClipTitle", "YES", NULL
,
577 &wPreferences
.show_clip_title
, getBool
, NULL
, NULL
, NULL
},
578 {"LargeDisplayFont", DEF_WORKSPACE_NAME_FONT
, NULL
,
579 NULL
, getFont
, setLargeDisplayFont
, NULL
, NULL
},
580 {"HighlightColor", "white", NULL
,
581 NULL
, getColor
, setHightlight
, NULL
, NULL
},
582 {"HighlightTextColor", "black", NULL
,
583 NULL
, getColor
, setHightlightText
, NULL
, NULL
},
584 {"ClipTitleColor", "black", (void *)CLIP_NORMAL
,
585 NULL
, getColor
, setClipTitleColor
, NULL
, NULL
},
586 {"CClipTitleColor", "\"#454045\"", (void *)CLIP_COLLAPSED
,
587 NULL
, getColor
, setClipTitleColor
, NULL
, NULL
},
588 {"FTitleColor", "white", (void *)WS_FOCUSED
,
589 NULL
, getColor
, setWTitleColor
, NULL
, NULL
},
590 {"PTitleColor", "white", (void *)WS_PFOCUSED
,
591 NULL
, getColor
, setWTitleColor
, NULL
, NULL
},
592 {"UTitleColor", "black", (void *)WS_UNFOCUSED
,
593 NULL
, getColor
, setWTitleColor
, NULL
, NULL
},
594 {"FTitleBack", "(solid, black)", NULL
,
595 NULL
, getTexture
, setFTitleBack
, NULL
, NULL
},
596 {"PTitleBack", "(solid, \"#616161\")", NULL
,
597 NULL
, getTexture
, setPTitleBack
, NULL
, NULL
},
598 {"UTitleBack", "(solid, gray)", NULL
,
599 NULL
, getTexture
, setUTitleBack
, NULL
, NULL
},
600 {"ResizebarBack", "(solid, gray)", NULL
,
601 NULL
, getTexture
, setResizebarBack
, NULL
, NULL
},
602 {"MenuTitleColor", "white", NULL
,
603 NULL
, getColor
, setMenuTitleColor
, NULL
, NULL
},
604 {"MenuTextColor", "black", NULL
,
605 NULL
, getColor
, setMenuTextColor
, NULL
, NULL
},
606 {"MenuDisabledColor", "\"#616161\"", NULL
,
607 NULL
, getColor
, setMenuDisabledColor
, NULL
, NULL
},
608 {"MenuTitleBack", "(solid, black)", NULL
,
609 NULL
, getTexture
, setMenuTitleBack
, NULL
, NULL
},
610 {"MenuTextBack", "(solid, gray)", NULL
,
611 NULL
, getTexture
, setMenuTextBack
, NULL
, NULL
},
612 {"IconTitleColor", "white", NULL
,
613 NULL
, getColor
, setIconTitleColor
, NULL
, NULL
},
614 {"IconTitleBack", "black", NULL
,
615 NULL
, getColor
, setIconTitleBack
, NULL
, NULL
},
616 {"SwitchPanelImages", "(swtile.png, swback.png, 30, 40)", &wPreferences
,
617 NULL
, getPropList
, setSwPOptions
, NULL
, NULL
},
618 {"ModifierKeyLabels", "(\"Shift+\", \"Control+\", \"Mod1+\", \"Mod2+\", \"Mod3+\", \"Mod4+\", \"Mod5+\")", &wPreferences
,
619 NULL
, getPropList
, setModifierKeyLabels
, NULL
, NULL
},
620 {"FrameBorderWidth", "1", NULL
,
621 NULL
, getInt
, setFrameBorderWidth
, NULL
, NULL
},
622 {"FrameBorderColor", "black", NULL
,
623 NULL
, getColor
, setFrameBorderColor
, NULL
, NULL
},
624 {"FrameFocusedBorderColor", "black", NULL
,
625 NULL
, getColor
, setFrameFocusedBorderColor
, NULL
, NULL
},
626 {"FrameSelectedBorderColor", "white", NULL
,
627 NULL
, getColor
, setFrameSelectedBorderColor
, NULL
, NULL
},
628 {"WorkspaceMapBack", "(solid, black)", NULL
,
629 NULL
, getTexture
, setWorkspaceMapBackground
, NULL
, NULL
},
633 {"RootMenuKey", "None", (void *)WKBD_ROOTMENU
,
634 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
635 {"WindowListKey", "None", (void *)WKBD_WINDOWLIST
,
636 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
637 {"WindowMenuKey", "None", (void *)WKBD_WINDOWMENU
,
638 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
639 {"DockRaiseLowerKey", "None", (void*)WKBD_DOCKRAISELOWER
,
640 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
641 {"ClipRaiseLowerKey", "None", (void *)WKBD_CLIPRAISELOWER
,
642 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
643 {"MiniaturizeKey", "None", (void *)WKBD_MINIATURIZE
,
644 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
645 {"MinimizeAllKey", "None", (void *)WKBD_MINIMIZEALL
,
646 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
647 {"HideKey", "None", (void *)WKBD_HIDE
,
648 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
649 {"HideOthersKey", "None", (void *)WKBD_HIDE_OTHERS
,
650 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
651 {"MoveResizeKey", "None", (void *)WKBD_MOVERESIZE
,
652 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
653 {"CloseKey", "None", (void *)WKBD_CLOSE
,
654 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
655 {"MaximizeKey", "None", (void *)WKBD_MAXIMIZE
,
656 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
657 {"VMaximizeKey", "None", (void *)WKBD_VMAXIMIZE
,
658 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
659 {"HMaximizeKey", "None", (void *)WKBD_HMAXIMIZE
,
660 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
661 {"LHMaximizeKey", "None", (void*)WKBD_LHMAXIMIZE
,
662 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
663 {"RHMaximizeKey", "None", (void*)WKBD_RHMAXIMIZE
,
664 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
665 {"THMaximizeKey", "None", (void*)WKBD_THMAXIMIZE
,
666 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
667 {"BHMaximizeKey", "None", (void*)WKBD_BHMAXIMIZE
,
668 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
669 {"LTCMaximizeKey", "None", (void*)WKBD_LTCMAXIMIZE
,
670 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
671 {"RTCMaximizeKey", "None", (void*)WKBD_RTCMAXIMIZE
,
672 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
673 {"LBCMaximizeKey", "None", (void*)WKBD_LBCMAXIMIZE
,
674 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
675 {"RBCMaximizeKey", "None", (void*)WKBD_RBCMAXIMIZE
,
676 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
677 {"MaximusKey", "None", (void*)WKBD_MAXIMUS
,
678 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
679 {"OmnipresentKey", "None", (void *)WKBD_OMNIPRESENT
,
680 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
681 {"RaiseKey", "\"Meta+Up\"", (void *)WKBD_RAISE
,
682 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
683 {"LowerKey", "\"Meta+Down\"", (void *)WKBD_LOWER
,
684 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
685 {"RaiseLowerKey", "None", (void *)WKBD_RAISELOWER
,
686 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
687 {"ShadeKey", "None", (void *)WKBD_SHADE
,
688 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
689 {"SelectKey", "None", (void *)WKBD_SELECT
,
690 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
691 {"WorkspaceMapKey", "None", (void *)WKBD_WORKSPACEMAP
,
692 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
693 {"FocusNextKey", "None", (void *)WKBD_FOCUSNEXT
,
694 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
695 {"FocusPrevKey", "None", (void *)WKBD_FOCUSPREV
,
696 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
697 {"GroupNextKey", "None", (void *)WKBD_GROUPNEXT
,
698 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
699 {"GroupPrevKey", "None", (void *)WKBD_GROUPPREV
,
700 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
701 {"NextWorkspaceKey", "None", (void *)WKBD_NEXTWORKSPACE
,
702 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
703 {"PrevWorkspaceKey", "None", (void *)WKBD_PREVWORKSPACE
,
704 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
705 {"LastWorkspaceKey", "None", (void *)WKBD_LASTWORKSPACE
,
706 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
707 {"NextWorkspaceLayerKey", "None", (void *)WKBD_NEXTWSLAYER
,
708 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
709 {"PrevWorkspaceLayerKey", "None", (void *)WKBD_PREVWSLAYER
,
710 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
711 {"Workspace1Key", "None", (void *)WKBD_WORKSPACE1
,
712 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
713 {"Workspace2Key", "None", (void *)WKBD_WORKSPACE2
,
714 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
715 {"Workspace3Key", "None", (void *)WKBD_WORKSPACE3
,
716 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
717 {"Workspace4Key", "None", (void *)WKBD_WORKSPACE4
,
718 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
719 {"Workspace5Key", "None", (void *)WKBD_WORKSPACE5
,
720 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
721 {"Workspace6Key", "None", (void *)WKBD_WORKSPACE6
,
722 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
723 {"Workspace7Key", "None", (void *)WKBD_WORKSPACE7
,
724 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
725 {"Workspace8Key", "None", (void *)WKBD_WORKSPACE8
,
726 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
727 {"Workspace9Key", "None", (void *)WKBD_WORKSPACE9
,
728 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
729 {"Workspace10Key", "None", (void *)WKBD_WORKSPACE10
,
730 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
731 {"MoveToWorkspace1Key", "None", (void *)WKBD_MOVE_WORKSPACE1
,
732 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
733 {"MoveToWorkspace2Key", "None", (void *)WKBD_MOVE_WORKSPACE2
,
734 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
735 {"MoveToWorkspace3Key", "None", (void *)WKBD_MOVE_WORKSPACE3
,
736 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
737 {"MoveToWorkspace4Key", "None", (void *)WKBD_MOVE_WORKSPACE4
,
738 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
739 {"MoveToWorkspace5Key", "None", (void *)WKBD_MOVE_WORKSPACE5
,
740 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
741 {"MoveToWorkspace6Key", "None", (void *)WKBD_MOVE_WORKSPACE6
,
742 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
743 {"MoveToWorkspace7Key", "None", (void *)WKBD_MOVE_WORKSPACE7
,
744 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
745 {"MoveToWorkspace8Key", "None", (void *)WKBD_MOVE_WORKSPACE8
,
746 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
747 {"MoveToWorkspace9Key", "None", (void *)WKBD_MOVE_WORKSPACE9
,
748 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
749 {"MoveToWorkspace10Key", "None", (void *)WKBD_MOVE_WORKSPACE10
,
750 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
751 {"MoveToNextWorkspaceKey", "None", (void *)WKBD_MOVE_NEXTWORKSPACE
,
752 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
753 {"MoveToPrevWorkspaceKey", "None", (void *)WKBD_MOVE_PREVWORKSPACE
,
754 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
755 {"MoveToLastWorkspaceKey", "None", (void *)WKBD_MOVE_LASTWORKSPACE
,
756 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
757 {"MoveToNextWorkspaceLayerKey", "None", (void *)WKBD_MOVE_NEXTWSLAYER
,
758 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
759 {"MoveToPrevWorkspaceLayerKey", "None", (void *)WKBD_MOVE_PREVWSLAYER
,
760 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
761 {"WindowShortcut1Key", "None", (void *)WKBD_WINDOW1
,
762 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
763 {"WindowShortcut2Key", "None", (void *)WKBD_WINDOW2
,
764 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
765 {"WindowShortcut3Key", "None", (void *)WKBD_WINDOW3
,
766 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
767 {"WindowShortcut4Key", "None", (void *)WKBD_WINDOW4
,
768 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
769 {"WindowShortcut5Key", "None", (void *)WKBD_WINDOW5
,
770 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
771 {"WindowShortcut6Key", "None", (void *)WKBD_WINDOW6
,
772 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
773 {"WindowShortcut7Key", "None", (void *)WKBD_WINDOW7
,
774 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
775 {"WindowShortcut8Key", "None", (void *)WKBD_WINDOW8
,
776 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
777 {"WindowShortcut9Key", "None", (void *)WKBD_WINDOW9
,
778 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
779 {"WindowShortcut10Key", "None", (void *)WKBD_WINDOW10
,
780 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
781 {"WindowRelaunchKey", "None", (void *)WKBD_RELAUNCH
,
782 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
783 {"ScreenSwitchKey", "None", (void *)WKBD_SWITCH_SCREEN
,
784 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
785 {"RunKey", "None", (void *)WKBD_RUN
,
786 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
788 #ifdef KEEP_XKB_LOCK_STATUS
789 {"ToggleKbdModeKey", "None", (void *)WKBD_TOGGLE
,
790 NULL
, getKeybind
, setKeyGrab
, NULL
, NULL
},
791 {"KbdModeLock", "NO", NULL
,
792 &wPreferences
.modelock
, getBool
, NULL
, NULL
, NULL
},
793 #endif /* KEEP_XKB_LOCK_STATUS */
795 {"NormalCursor", "(builtin, left_ptr)", (void *)WCUR_ROOT
,
796 NULL
, getCursor
, setCursor
, NULL
, NULL
},
797 {"ArrowCursor", "(builtin, top_left_arrow)", (void *)WCUR_ARROW
,
798 NULL
, getCursor
, setCursor
, NULL
, NULL
},
799 {"MoveCursor", "(builtin, fleur)", (void *)WCUR_MOVE
,
800 NULL
, getCursor
, setCursor
, NULL
, NULL
},
801 {"ResizeCursor", "(builtin, sizing)", (void *)WCUR_RESIZE
,
802 NULL
, getCursor
, setCursor
, NULL
, NULL
},
803 {"TopLeftResizeCursor", "(builtin, top_left_corner)", (void *)WCUR_TOPLEFTRESIZE
,
804 NULL
, getCursor
, setCursor
, NULL
, NULL
},
805 {"TopRightResizeCursor", "(builtin, top_right_corner)", (void *)WCUR_TOPRIGHTRESIZE
,
806 NULL
, getCursor
, setCursor
, NULL
, NULL
},
807 {"BottomLeftResizeCursor", "(builtin, bottom_left_corner)", (void *)WCUR_BOTTOMLEFTRESIZE
,
808 NULL
, getCursor
, setCursor
, NULL
, NULL
},
809 {"BottomRightResizeCursor", "(builtin, bottom_right_corner)", (void *)WCUR_BOTTOMRIGHTRESIZE
,
810 NULL
, getCursor
, setCursor
, NULL
, NULL
},
811 {"VerticalResizeCursor", "(builtin, sb_v_double_arrow)", (void *)WCUR_VERTICALRESIZE
,
812 NULL
, getCursor
, setCursor
, NULL
, NULL
},
813 {"HorizontalResizeCursor", "(builtin, sb_h_double_arrow)", (void *)WCUR_HORIZONRESIZE
,
814 NULL
, getCursor
, setCursor
, NULL
, NULL
},
815 {"WaitCursor", "(builtin, watch)", (void *)WCUR_WAIT
,
816 NULL
, getCursor
, setCursor
, NULL
, NULL
},
817 {"QuestionCursor", "(builtin, question_arrow)", (void *)WCUR_QUESTION
,
818 NULL
, getCursor
, setCursor
, NULL
, NULL
},
819 {"TextCursor", "(builtin, xterm)", (void *)WCUR_TEXT
,
820 NULL
, getCursor
, setCursor
, NULL
, NULL
},
821 {"SelectCursor", "(builtin, cross)", (void *)WCUR_SELECT
,
822 NULL
, getCursor
, setCursor
, NULL
, NULL
},
823 {"DialogHistoryLines", "500", NULL
,
824 &wPreferences
.history_lines
, getInt
, NULL
, NULL
, NULL
},
825 {"CycleActiveHeadOnly", "NO", NULL
,
826 &wPreferences
.cycle_active_head_only
, getBool
, NULL
, NULL
, NULL
},
827 {"CycleIgnoreMinimized", "NO", NULL
,
828 &wPreferences
.cycle_ignore_minimized
, getBool
, NULL
, NULL
, NULL
}
831 static void initDefaults(void)
834 WDefaultEntry
*entry
;
836 WMPLSetCaseSensitive(False
);
838 for (i
= 0; i
< wlengthof(optionList
); i
++) {
839 entry
= &optionList
[i
];
841 entry
->plkey
= WMCreatePLString(entry
->key
);
842 if (entry
->default_value
)
843 entry
->plvalue
= WMCreatePropListFromDescription(entry
->default_value
);
845 entry
->plvalue
= NULL
;
848 for (i
= 0; i
< wlengthof(staticOptionList
); i
++) {
849 entry
= &staticOptionList
[i
];
851 entry
->plkey
= WMCreatePLString(entry
->key
);
852 if (entry
->default_value
)
853 entry
->plvalue
= WMCreatePropListFromDescription(entry
->default_value
);
855 entry
->plvalue
= NULL
;
859 static WMPropList
*readGlobalDomain(const char *domainName
, Bool requireDictionary
)
861 WMPropList
*globalDict
= NULL
;
865 snprintf(path
, sizeof(path
), "%s/%s/%s", SYSCONFDIR
, GLOBAL_DEFAULTS_SUBDIR
, domainName
);
866 if (stat(path
, &stbuf
) >= 0) {
867 globalDict
= WMReadPropListFromFile(path
);
868 if (globalDict
&& requireDictionary
&& !WMIsPLDictionary(globalDict
)) {
869 wwarning(_("Domain %s (%s) of global defaults database is corrupted!"), domainName
, path
);
870 WMReleasePropList(globalDict
);
872 } else if (!globalDict
) {
873 wwarning(_("could not load domain %s from global defaults database"), domainName
);
880 #if defined(GLOBAL_PREAMBLE_MENU_FILE) || defined(GLOBAL_EPILOGUE_MENU_FILE)
881 static void prependMenu(WMPropList
* destarr
, WMPropList
* array
)
886 for (i
= 0; i
< WMGetPropListItemCount(array
); i
++) {
887 item
= WMGetFromPLArray(array
, i
);
889 WMInsertInPLArray(destarr
, i
+ 1, item
);
893 static void appendMenu(WMPropList
* destarr
, WMPropList
* array
)
898 for (i
= 0; i
< WMGetPropListItemCount(array
); i
++) {
899 item
= WMGetFromPLArray(array
, i
);
901 WMAddToPLArray(destarr
, item
);
906 void wDefaultsMergeGlobalMenus(WDDomain
* menuDomain
)
908 WMPropList
*menu
= menuDomain
->dictionary
;
911 if (!menu
|| !WMIsPLArray(menu
))
914 #ifdef GLOBAL_PREAMBLE_MENU_FILE
915 submenu
= WMReadPropListFromFile(SYSCONFDIR
"/" GLOBAL_DEFAULTS_SUBDIR
"/" GLOBAL_PREAMBLE_MENU_FILE
);
917 if (submenu
&& !WMIsPLArray(submenu
)) {
918 wwarning(_("invalid global menu file %s"), GLOBAL_PREAMBLE_MENU_FILE
);
919 WMReleasePropList(submenu
);
923 prependMenu(menu
, submenu
);
924 WMReleasePropList(submenu
);
928 #ifdef GLOBAL_EPILOGUE_MENU_FILE
929 submenu
= WMReadPropListFromFile(SYSCONFDIR
"/" GLOBAL_DEFAULTS_SUBDIR
"/" GLOBAL_EPILOGUE_MENU_FILE
);
931 if (submenu
&& !WMIsPLArray(submenu
)) {
932 wwarning(_("invalid global menu file %s"), GLOBAL_EPILOGUE_MENU_FILE
);
933 WMReleasePropList(submenu
);
937 appendMenu(menu
, submenu
);
938 WMReleasePropList(submenu
);
942 menuDomain
->dictionary
= menu
;
945 WDDomain
*wDefaultsInitDomain(const char *domain
, Bool requireDictionary
)
949 static int inited
= 0;
950 WMPropList
*shared_dict
= NULL
;
957 db
= wmalloc(sizeof(WDDomain
));
958 db
->domain_name
= domain
;
959 db
->path
= wdefaultspathfordomain(domain
);
961 if (stat(db
->path
, &stbuf
) >= 0) {
962 db
->dictionary
= WMReadPropListFromFile(db
->path
);
963 if (db
->dictionary
) {
964 if (requireDictionary
&& !WMIsPLDictionary(db
->dictionary
)) {
965 WMReleasePropList(db
->dictionary
);
966 db
->dictionary
= NULL
;
967 wwarning(_("Domain %s (%s) of defaults database is corrupted!"), domain
, db
->path
);
969 db
->timestamp
= stbuf
.st_mtime
;
971 wwarning(_("could not load domain %s from user defaults database"), domain
);
975 /* global system dictionary */
976 shared_dict
= readGlobalDomain(domain
, requireDictionary
);
978 if (shared_dict
&& db
->dictionary
&& WMIsPLDictionary(shared_dict
) &&
979 WMIsPLDictionary(db
->dictionary
)) {
980 WMMergePLDictionaries(shared_dict
, db
->dictionary
, True
);
981 WMReleasePropList(db
->dictionary
);
982 db
->dictionary
= shared_dict
;
983 if (stbuf
.st_mtime
> db
->timestamp
)
984 db
->timestamp
= stbuf
.st_mtime
;
985 } else if (!db
->dictionary
) {
986 db
->dictionary
= shared_dict
;
987 if (stbuf
.st_mtime
> db
->timestamp
)
988 db
->timestamp
= stbuf
.st_mtime
;
994 void wReadStaticDefaults(WMPropList
* dict
)
997 WDefaultEntry
*entry
;
1001 for (i
= 0; i
< wlengthof(staticOptionList
); i
++) {
1002 entry
= &staticOptionList
[i
];
1005 plvalue
= WMGetFromPLDictionary(dict
, entry
->plkey
);
1009 /* no default in the DB. Use builtin default */
1011 plvalue
= entry
->plvalue
;
1015 (*entry
->convert
) (NULL
, entry
, plvalue
, entry
->addr
, &tdata
);
1017 (*entry
->update
) (NULL
, entry
, tdata
, entry
->extra_data
);
1022 void wDefaultsCheckDomains(void* arg
)
1026 WMPropList
*shared_dict
= NULL
;
1030 /* Parameter not used, but tell the compiler that it is ok */
1033 if (stat(w_global
.domain
.wmaker
->path
, &stbuf
) >= 0 && w_global
.domain
.wmaker
->timestamp
< stbuf
.st_mtime
) {
1034 w_global
.domain
.wmaker
->timestamp
= stbuf
.st_mtime
;
1036 /* Global dictionary */
1037 shared_dict
= readGlobalDomain("WindowMaker", True
);
1039 /* User dictionary */
1040 dict
= WMReadPropListFromFile(w_global
.domain
.wmaker
->path
);
1043 if (!WMIsPLDictionary(dict
)) {
1044 WMReleasePropList(dict
);
1046 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1047 "WindowMaker", w_global
.domain
.wmaker
->path
);
1050 WMMergePLDictionaries(shared_dict
, dict
, True
);
1051 WMReleasePropList(dict
);
1056 for (i
= 0; i
< w_global
.screen_count
; i
++) {
1057 scr
= wScreenWithNumber(i
);
1059 wReadDefaults(scr
, dict
);
1062 if (w_global
.domain
.wmaker
->dictionary
)
1063 WMReleasePropList(w_global
.domain
.wmaker
->dictionary
);
1065 w_global
.domain
.wmaker
->dictionary
= dict
;
1068 wwarning(_("could not load domain %s from user defaults database"), "WindowMaker");
1072 WMReleasePropList(shared_dict
);
1076 if (stat(w_global
.domain
.window_attr
->path
, &stbuf
) >= 0 && w_global
.domain
.window_attr
->timestamp
< stbuf
.st_mtime
) {
1077 /* global dictionary */
1078 shared_dict
= readGlobalDomain("WMWindowAttributes", True
);
1079 /* user dictionary */
1080 dict
= WMReadPropListFromFile(w_global
.domain
.window_attr
->path
);
1082 if (!WMIsPLDictionary(dict
)) {
1083 WMReleasePropList(dict
);
1085 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1086 "WMWindowAttributes", w_global
.domain
.window_attr
->path
);
1089 WMMergePLDictionaries(shared_dict
, dict
, True
);
1090 WMReleasePropList(dict
);
1095 if (w_global
.domain
.window_attr
->dictionary
)
1096 WMReleasePropList(w_global
.domain
.window_attr
->dictionary
);
1098 w_global
.domain
.window_attr
->dictionary
= dict
;
1099 for (i
= 0; i
< w_global
.screen_count
; i
++) {
1100 scr
= wScreenWithNumber(i
);
1102 wDefaultUpdateIcons(scr
);
1104 /* Update the panel image if changed */
1105 /* Don't worry. If the image is the same these
1106 * functions will have no performance impact. */
1107 create_logo_image(scr
);
1112 wwarning(_("could not load domain %s from user defaults database"), "WMWindowAttributes");
1115 w_global
.domain
.window_attr
->timestamp
= stbuf
.st_mtime
;
1117 WMReleasePropList(shared_dict
);
1120 if (stat(w_global
.domain
.root_menu
->path
, &stbuf
) >= 0 && w_global
.domain
.root_menu
->timestamp
< stbuf
.st_mtime
) {
1121 dict
= WMReadPropListFromFile(w_global
.domain
.root_menu
->path
);
1123 if (!WMIsPLArray(dict
) && !WMIsPLString(dict
)) {
1124 WMReleasePropList(dict
);
1126 wwarning(_("Domain %s (%s) of defaults database is corrupted!"),
1127 "WMRootMenu", w_global
.domain
.root_menu
->path
);
1129 if (w_global
.domain
.root_menu
->dictionary
)
1130 WMReleasePropList(w_global
.domain
.root_menu
->dictionary
);
1132 w_global
.domain
.root_menu
->dictionary
= dict
;
1133 wDefaultsMergeGlobalMenus(w_global
.domain
.root_menu
);
1136 wwarning(_("could not load domain %s from user defaults database"), "WMRootMenu");
1138 w_global
.domain
.root_menu
->timestamp
= stbuf
.st_mtime
;
1140 #ifndef HAVE_INOTIFY
1142 WMAddTimerHandler(DEFAULTS_CHECK_INTERVAL
, wDefaultsCheckDomains
, arg
);
1146 void wReadDefaults(WScreen
* scr
, WMPropList
* new_dict
)
1148 WMPropList
*plvalue
, *old_value
;
1149 WDefaultEntry
*entry
;
1151 int update_workspace_back
= 0; /* kluge :/ */
1152 unsigned int needs_refresh
;
1154 WMPropList
*old_dict
= (w_global
.domain
.wmaker
->dictionary
!= new_dict
? w_global
.domain
.wmaker
->dictionary
: NULL
);
1156 /* Backward Compatibility: init array to special value to detect if they changed */
1157 legacy_minipreview_config
.enable
= 99;
1158 legacy_minipreview_config
.size
= -1;
1162 for (i
= 0; i
< wlengthof(optionList
); i
++) {
1163 entry
= &optionList
[i
];
1166 plvalue
= WMGetFromPLDictionary(new_dict
, entry
->plkey
);
1173 old_value
= WMGetFromPLDictionary(old_dict
, entry
->plkey
);
1175 if (!plvalue
&& !old_value
) {
1176 /* no default in the DB. Use builtin default */
1177 plvalue
= entry
->plvalue
;
1178 if (plvalue
&& new_dict
)
1179 WMPutInPLDictionary(new_dict
, entry
->plkey
, plvalue
);
1181 } else if (!plvalue
) {
1182 /* value was deleted from DB. Keep current value */
1184 } else if (!old_value
) {
1185 /* set value for the 1st time */
1186 } else if (!WMIsPropListEqualTo(plvalue
, old_value
)) {
1187 /* value has changed */
1189 if (strcmp(entry
->key
, "WorkspaceBack") == 0
1190 && update_workspace_back
&& scr
->flags
.backimage_helper_launched
) {
1192 /* value was not changed since last time */
1199 if ((*entry
->convert
) (scr
, entry
, plvalue
, entry
->addr
, &tdata
)) {
1201 * If the WorkspaceSpecificBack data has been changed
1202 * so that the helper will be launched now, we must be
1203 * sure to send the default background texture config
1206 if (strcmp(entry
->key
, "WorkspaceSpecificBack") == 0 &&
1207 !scr
->flags
.backimage_helper_launched
)
1208 update_workspace_back
= 1;
1211 needs_refresh
|= (*entry
->update
) (scr
, entry
, tdata
, entry
->extra_data
);
1218 * Backward Compatibility:
1219 * Support the old setting names for Apercu, now called Mini-Preview
1221 * This code should probably stay for at least 2 years, you should not consider removing
1222 * it before year 2017
1224 if (legacy_minipreview_config
.enable
!= 99) {
1225 wwarning(_("your configuration is using old syntax for Mini-Preview settings; consider running WPrefs.app to update"));
1226 wPreferences
.miniwin_preview_balloon
= legacy_minipreview_config
.enable
;
1228 if (legacy_minipreview_config
.size
>= 0) {
1230 * the option 'ApercuSize' used to be coded as a multiple of the icon size in v0.95.6
1231 * it is now expressed directly in pixels, but to avoid breaking user's setting we check
1232 * for old coding and convert it now.
1234 if (legacy_minipreview_config
.size
< 24) {
1235 /* 24 is the minimum icon size proposed in WPref's settings */
1236 wPreferences
.minipreview_size
= legacy_minipreview_config
.size
* wPreferences
.icon_size
;
1238 wPreferences
.minipreview_size
= legacy_minipreview_config
.size
;
1243 if (needs_refresh
!= 0 && !scr
->flags
.startup
) {
1247 if (needs_refresh
& REFRESH_MENU_TITLE_TEXTURE
)
1248 foo
|= WTextureSettings
;
1249 if (needs_refresh
& REFRESH_MENU_TITLE_FONT
)
1250 foo
|= WFontSettings
;
1251 if (needs_refresh
& REFRESH_MENU_TITLE_COLOR
)
1252 foo
|= WColorSettings
;
1254 WMPostNotificationName(WNMenuTitleAppearanceSettingsChanged
, NULL
,
1255 (void *)(uintptr_t) foo
);
1258 if (needs_refresh
& REFRESH_MENU_TEXTURE
)
1259 foo
|= WTextureSettings
;
1260 if (needs_refresh
& REFRESH_MENU_FONT
)
1261 foo
|= WFontSettings
;
1262 if (needs_refresh
& REFRESH_MENU_COLOR
)
1263 foo
|= WColorSettings
;
1265 WMPostNotificationName(WNMenuAppearanceSettingsChanged
, NULL
, (void *)(uintptr_t) foo
);
1268 if (needs_refresh
& REFRESH_WINDOW_FONT
)
1269 foo
|= WFontSettings
;
1270 if (needs_refresh
& REFRESH_WINDOW_TEXTURES
)
1271 foo
|= WTextureSettings
;
1272 if (needs_refresh
& REFRESH_WINDOW_TITLE_COLOR
)
1273 foo
|= WColorSettings
;
1275 WMPostNotificationName(WNWindowAppearanceSettingsChanged
, NULL
, (void *)(uintptr_t) foo
);
1277 if (!(needs_refresh
& REFRESH_ICON_TILE
)) {
1279 if (needs_refresh
& REFRESH_ICON_FONT
)
1280 foo
|= WFontSettings
;
1281 if (needs_refresh
& REFRESH_ICON_TITLE_COLOR
)
1282 foo
|= WTextureSettings
;
1283 if (needs_refresh
& REFRESH_ICON_TITLE_BACK
)
1284 foo
|= WTextureSettings
;
1286 WMPostNotificationName(WNIconAppearanceSettingsChanged
, NULL
,
1287 (void *)(uintptr_t) foo
);
1289 if (needs_refresh
& REFRESH_ICON_TILE
)
1290 WMPostNotificationName(WNIconTileSettingsChanged
, NULL
, NULL
);
1292 if (needs_refresh
& REFRESH_WORKSPACE_MENU
) {
1293 if (scr
->workspace_menu
)
1294 wWorkspaceMenuUpdate(scr
, scr
->workspace_menu
);
1295 if (scr
->clip_ws_menu
)
1296 wWorkspaceMenuUpdate(scr
, scr
->clip_ws_menu
);
1297 if (scr
->workspace_submenu
)
1298 scr
->workspace_submenu
->flags
.realized
= 0;
1299 if (scr
->clip_submenu
)
1300 scr
->clip_submenu
->flags
.realized
= 0;
1305 void wDefaultUpdateIcons(WScreen
*scr
)
1307 WAppIcon
*aicon
= scr
->app_icon_list
;
1309 WWindow
*wwin
= scr
->focused_window
;
1312 /* Get the application icon, default included */
1313 wIconChangeImageFile(aicon
->icon
, NULL
);
1314 wAppIconPaint(aicon
);
1315 aicon
= aicon
->next
;
1318 if (!wPreferences
.flags
.noclip
|| wPreferences
.flags
.clip_merged_in_dock
)
1319 wClipIconPaint(scr
->clip_icon
);
1321 for (dc
= scr
->drawers
; dc
!= NULL
; dc
= dc
->next
)
1322 wDrawerIconPaint(dc
->adrawer
->icon_array
[0]);
1325 if (wwin
->icon
&& wwin
->flags
.miniaturized
)
1326 wIconChangeImageFile(wwin
->icon
, NULL
);
1331 /* --------------------------- Local ----------------------- */
1333 #define GET_STRING_OR_DEFAULT(x, var) if (!WMIsPLString(value)) { \
1334 wwarning(_("Wrong option format for key \"%s\". Should be %s."), \
1336 wwarning(_("using default \"%s\" instead"), entry->default_value); \
1337 var = entry->default_value;\
1338 } else var = WMGetFromPLString(value)\
1341 static int string2index(WMPropList *key, WMPropList *val, const char *def, WOptionEnumeration * values)
1344 WOptionEnumeration
*v
;
1345 char buffer
[TOTAL_VALUES_LENGTH
];
1347 if (WMIsPLString(val
) && (str
= WMGetFromPLString(val
))) {
1348 for (v
= values
; v
->string
!= NULL
; v
++) {
1349 if (strcasecmp(v
->string
, str
) == 0)
1355 for (v
= values
; v
->string
!= NULL
; v
++) {
1358 strcat(buffer
, ", ");
1359 snprintf(buffer
+strlen(buffer
),
1360 sizeof(buffer
)-strlen(buffer
)-1, "\"%s\"", v
->string
);
1363 wwarning(_("wrong option value for key \"%s\"; got \"%s\", should be one of %s."),
1364 WMGetFromPLString(key
),
1365 WMIsPLString(val
) ? WMGetFromPLString(val
) : "(unknown)",
1369 return string2index(key
, val
, NULL
, values
);
1376 * value - is the value in the defaults DB
1377 * addr - is the address to store the data
1378 * ret - is the address to store a pointer to a temporary buffer. ret
1379 * must not be freed and is used by the set functions
1381 static int getBool(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1385 int second_pass
= 0;
1387 /* Parameter not used, but tell the compiler that it is ok */
1390 GET_STRING_OR_DEFAULT("Boolean", val
);
1393 if ((val
[1] == '\0' && (val
[0] == 'y' || val
[0] == 'Y'))
1394 || strcasecmp(val
, "YES") == 0) {
1397 } else if ((val
[1] == '\0' && (val
[0] == 'n' || val
[0] == 'N'))
1398 || strcasecmp(val
, "NO") == 0) {
1402 if (sscanf(val
, "%i", &i
) == 1) {
1408 wwarning(_("can't convert \"%s\" to boolean for key \"%s\""), val
, entry
->key
);
1409 if (second_pass
== 0) {
1410 val
= WMGetFromPLString(entry
->plvalue
);
1412 wwarning(_("using default \"%s\" instead"), val
);
1422 *(char *)addr
= data
;
1427 static int getInt(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1432 /* Parameter not used, but tell the compiler that it is ok */
1435 GET_STRING_OR_DEFAULT("Integer", val
);
1437 if (sscanf(val
, "%i", &data
) != 1) {
1438 wwarning(_("can't convert \"%s\" to integer for key \"%s\""), val
, entry
->key
);
1439 val
= WMGetFromPLString(entry
->plvalue
);
1440 wwarning(_("using default \"%s\" instead"), val
);
1441 if (sscanf(val
, "%i", &data
) != 1) {
1449 *(int *)addr
= data
;
1454 static int getCoord(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1457 char *val_x
, *val_y
;
1458 int nelem
, changed
= 0;
1459 WMPropList
*elem_x
, *elem_y
;
1462 if (!WMIsPLArray(value
)) {
1463 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry
->key
, "Coordinate");
1465 value
= entry
->plvalue
;
1467 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1473 nelem
= WMGetPropListItemCount(value
);
1475 wwarning(_("Incorrect number of elements in array for key \"%s\"."), entry
->key
);
1477 value
= entry
->plvalue
;
1479 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1485 elem_x
= WMGetFromPLArray(value
, 0);
1486 elem_y
= WMGetFromPLArray(value
, 1);
1488 if (!elem_x
|| !elem_y
|| !WMIsPLString(elem_x
) || !WMIsPLString(elem_y
)) {
1489 wwarning(_("Wrong value for key \"%s\". Should be Coordinate."), entry
->key
);
1491 value
= entry
->plvalue
;
1493 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1499 val_x
= WMGetFromPLString(elem_x
);
1500 val_y
= WMGetFromPLString(elem_y
);
1502 if (sscanf(val_x
, "%i", &data
.x
) != 1 || sscanf(val_y
, "%i", &data
.y
) != 1) {
1503 wwarning(_("can't convert array to integers for \"%s\"."), entry
->key
);
1505 value
= entry
->plvalue
;
1507 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1515 else if (data
.x
> scr
->scr_width
/ 3)
1516 data
.x
= scr
->scr_width
/ 3;
1519 else if (data
.y
> scr
->scr_height
/ 3)
1520 data
.y
= scr
->scr_height
/ 3;
1525 *(WCoord
*) addr
= data
;
1530 static int getPropList(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1532 /* Parameter not used, but tell the compiler that it is ok */
1537 WMRetainPropList(value
);
1544 static int getPathList(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1552 /* Parameter not used, but tell the compiler that it is ok */
1557 if (!WMIsPLArray(value
)) {
1558 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry
->key
, "an array of paths");
1560 value
= entry
->plvalue
;
1562 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1569 count
= WMGetPropListItemCount(value
);
1572 value
= entry
->plvalue
;
1574 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1581 for (i
= 0; i
< count
; i
++) {
1582 d
= WMGetFromPLArray(value
, i
);
1583 if (!d
|| !WMIsPLString(d
)) {
1587 len
+= strlen(WMGetFromPLString(d
)) + 1;
1590 ptr
= data
= wmalloc(len
+ 1);
1592 for (i
= 0; i
< count
; i
++) {
1593 d
= WMGetFromPLArray(value
, i
);
1594 if (!d
|| !WMIsPLString(d
)) {
1597 strcpy(ptr
, WMGetFromPLString(d
));
1598 ptr
+= strlen(WMGetFromPLString(d
));
1605 if (*(char **)addr
!= NULL
) {
1606 wfree(*(char **)addr
);
1608 *(char **)addr
= data
;
1613 static int getEnum(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1615 static signed char data
;
1617 /* Parameter not used, but tell the compiler that it is ok */
1620 data
= string2index(entry
->plkey
, value
, entry
->default_value
, (WOptionEnumeration
*) entry
->extra_data
);
1627 *(signed char *)addr
= data
;
1634 * (hgradient <color> <color>)
1635 * (vgradient <color> <color>)
1636 * (dgradient <color> <color>)
1637 * (mhgradient <color> <color> ...)
1638 * (mvgradient <color> <color> ...)
1639 * (mdgradient <color> <color> ...)
1640 * (igradient <color1> <color1> <thickness1> <color2> <color2> <thickness2>)
1641 * (tpixmap <file> <color>)
1642 * (spixmap <file> <color>)
1643 * (cpixmap <file> <color>)
1644 * (thgradient <file> <opaqueness> <color> <color>)
1645 * (tvgradient <file> <opaqueness> <color> <color>)
1646 * (tdgradient <file> <opaqueness> <color> <color>)
1647 * (function <lib> <function> ...)
1650 static WTexture
*parse_texture(WScreen
* scr
, WMPropList
* pl
)
1655 WTexture
*texture
= NULL
;
1657 nelem
= WMGetPropListItemCount(pl
);
1661 elem
= WMGetFromPLArray(pl
, 0);
1662 if (!elem
|| !WMIsPLString(elem
))
1664 val
= WMGetFromPLString(elem
);
1666 if (strcasecmp(val
, "solid") == 0) {
1674 elem
= WMGetFromPLArray(pl
, 1);
1675 if (!elem
|| !WMIsPLString(elem
))
1677 val
= WMGetFromPLString(elem
);
1679 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1680 wwarning(_("\"%s\" is not a valid color name"), val
);
1684 texture
= (WTexture
*) wTextureMakeSolid(scr
, &color
);
1685 } else if (strcasecmp(val
, "dgradient") == 0
1686 || strcasecmp(val
, "vgradient") == 0 || strcasecmp(val
, "hgradient") == 0) {
1687 RColor color1
, color2
;
1692 wwarning(_("bad number of arguments in gradient specification"));
1696 if (val
[0] == 'd' || val
[0] == 'D')
1697 type
= WTEX_DGRADIENT
;
1698 else if (val
[0] == 'h' || val
[0] == 'H')
1699 type
= WTEX_HGRADIENT
;
1701 type
= WTEX_VGRADIENT
;
1703 /* get from color */
1704 elem
= WMGetFromPLArray(pl
, 1);
1705 if (!elem
|| !WMIsPLString(elem
))
1707 val
= WMGetFromPLString(elem
);
1709 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1710 wwarning(_("\"%s\" is not a valid color name"), val
);
1714 color1
.red
= xcolor
.red
>> 8;
1715 color1
.green
= xcolor
.green
>> 8;
1716 color1
.blue
= xcolor
.blue
>> 8;
1719 elem
= WMGetFromPLArray(pl
, 2);
1720 if (!elem
|| !WMIsPLString(elem
)) {
1723 val
= WMGetFromPLString(elem
);
1725 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1726 wwarning(_("\"%s\" is not a valid color name"), val
);
1730 color2
.red
= xcolor
.red
>> 8;
1731 color2
.green
= xcolor
.green
>> 8;
1732 color2
.blue
= xcolor
.blue
>> 8;
1734 texture
= (WTexture
*) wTextureMakeGradient(scr
, type
, &color1
, &color2
);
1736 } else if (strcasecmp(val
, "igradient") == 0) {
1737 RColor colors1
[2], colors2
[2];
1743 wwarning(_("bad number of arguments in gradient specification"));
1747 /* get from color */
1748 for (i
= 0; i
< 2; i
++) {
1749 elem
= WMGetFromPLArray(pl
, 1 + i
);
1750 if (!elem
|| !WMIsPLString(elem
))
1752 val
= WMGetFromPLString(elem
);
1754 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1755 wwarning(_("\"%s\" is not a valid color name"), val
);
1758 colors1
[i
].alpha
= 255;
1759 colors1
[i
].red
= xcolor
.red
>> 8;
1760 colors1
[i
].green
= xcolor
.green
>> 8;
1761 colors1
[i
].blue
= xcolor
.blue
>> 8;
1763 elem
= WMGetFromPLArray(pl
, 3);
1764 if (!elem
|| !WMIsPLString(elem
))
1766 val
= WMGetFromPLString(elem
);
1769 /* get from color */
1770 for (i
= 0; i
< 2; i
++) {
1771 elem
= WMGetFromPLArray(pl
, 4 + i
);
1772 if (!elem
|| !WMIsPLString(elem
))
1774 val
= WMGetFromPLString(elem
);
1776 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1777 wwarning(_("\"%s\" is not a valid color name"), val
);
1780 colors2
[i
].alpha
= 255;
1781 colors2
[i
].red
= xcolor
.red
>> 8;
1782 colors2
[i
].green
= xcolor
.green
>> 8;
1783 colors2
[i
].blue
= xcolor
.blue
>> 8;
1785 elem
= WMGetFromPLArray(pl
, 6);
1786 if (!elem
|| !WMIsPLString(elem
))
1788 val
= WMGetFromPLString(elem
);
1791 texture
= (WTexture
*) wTextureMakeIGradient(scr
, th1
, colors1
, th2
, colors2
);
1793 } else if (strcasecmp(val
, "mhgradient") == 0
1794 || strcasecmp(val
, "mvgradient") == 0 || strcasecmp(val
, "mdgradient") == 0) {
1801 wwarning(_("too few arguments in multicolor gradient specification"));
1805 if (val
[1] == 'h' || val
[1] == 'H')
1806 type
= WTEX_MHGRADIENT
;
1807 else if (val
[1] == 'v' || val
[1] == 'V')
1808 type
= WTEX_MVGRADIENT
;
1810 type
= WTEX_MDGRADIENT
;
1814 colors
= wmalloc(sizeof(RColor
*) * (count
+ 1));
1816 for (i
= 0; i
< count
; i
++) {
1817 elem
= WMGetFromPLArray(pl
, i
+ 1);
1818 if (!elem
|| !WMIsPLString(elem
)) {
1819 for (--i
; i
>= 0; --i
) {
1825 val
= WMGetFromPLString(elem
);
1827 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1828 wwarning(_("\"%s\" is not a valid color name"), val
);
1829 for (--i
; i
>= 0; --i
) {
1835 colors
[i
] = wmalloc(sizeof(RColor
));
1836 colors
[i
]->red
= color
.red
>> 8;
1837 colors
[i
]->green
= color
.green
>> 8;
1838 colors
[i
]->blue
= color
.blue
>> 8;
1843 texture
= (WTexture
*) wTextureMakeMGradient(scr
, type
, colors
);
1844 } else if (strcasecmp(val
, "spixmap") == 0 ||
1845 strcasecmp(val
, "cpixmap") == 0 || strcasecmp(val
, "tpixmap") == 0) {
1852 if (val
[0] == 's' || val
[0] == 'S')
1854 else if (val
[0] == 'c' || val
[0] == 'C')
1860 elem
= WMGetFromPLArray(pl
, 2);
1861 if (!elem
|| !WMIsPLString(elem
)) {
1864 val
= WMGetFromPLString(elem
);
1866 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &color
)) {
1867 wwarning(_("\"%s\" is not a valid color name"), val
);
1872 elem
= WMGetFromPLArray(pl
, 1);
1873 if (!elem
|| !WMIsPLString(elem
))
1875 val
= WMGetFromPLString(elem
);
1877 texture
= (WTexture
*) wTextureMakePixmap(scr
, type
, val
, &color
);
1878 } else if (strcasecmp(val
, "thgradient") == 0
1879 || strcasecmp(val
, "tvgradient") == 0 || strcasecmp(val
, "tdgradient") == 0) {
1880 RColor color1
, color2
;
1885 if (val
[1] == 'h' || val
[1] == 'H')
1886 style
= WTEX_THGRADIENT
;
1887 else if (val
[1] == 'v' || val
[1] == 'V')
1888 style
= WTEX_TVGRADIENT
;
1890 style
= WTEX_TDGRADIENT
;
1893 wwarning(_("bad number of arguments in textured gradient specification"));
1897 /* get from color */
1898 elem
= WMGetFromPLArray(pl
, 3);
1899 if (!elem
|| !WMIsPLString(elem
))
1901 val
= WMGetFromPLString(elem
);
1903 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1904 wwarning(_("\"%s\" is not a valid color name"), val
);
1908 color1
.red
= xcolor
.red
>> 8;
1909 color1
.green
= xcolor
.green
>> 8;
1910 color1
.blue
= xcolor
.blue
>> 8;
1913 elem
= WMGetFromPLArray(pl
, 4);
1914 if (!elem
|| !WMIsPLString(elem
)) {
1917 val
= WMGetFromPLString(elem
);
1919 if (!XParseColor(dpy
, scr
->w_colormap
, val
, &xcolor
)) {
1920 wwarning(_("\"%s\" is not a valid color name"), val
);
1924 color2
.red
= xcolor
.red
>> 8;
1925 color2
.green
= xcolor
.green
>> 8;
1926 color2
.blue
= xcolor
.blue
>> 8;
1929 elem
= WMGetFromPLArray(pl
, 2);
1930 if (!elem
|| !WMIsPLString(elem
))
1933 val
= WMGetFromPLString(elem
);
1935 if (!val
|| (opacity
= atoi(val
)) < 0 || opacity
> 255) {
1936 wwarning(_("bad opacity value for tgradient texture \"%s\". Should be [0..255]"), val
);
1941 elem
= WMGetFromPLArray(pl
, 1);
1942 if (!elem
|| !WMIsPLString(elem
))
1944 val
= WMGetFromPLString(elem
);
1946 texture
= (WTexture
*) wTextureMakeTGradient(scr
, style
, &color1
, &color2
, val
, opacity
);
1947 } else if (strcasecmp(val
, "function") == 0) {
1948 /* Leave this in to handle the unlikely case of
1949 * someone actually having function textures configured */
1950 wwarning("function texture support has been removed");
1953 wwarning(_("invalid texture type %s"), val
);
1959 static int getTexture(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
1961 static WTexture
*texture
;
1965 if (!WMIsPLArray(value
)) {
1966 wwarning(_("Wrong option format for key \"%s\". Should be %s."), entry
->key
, "Texture");
1968 value
= entry
->plvalue
;
1970 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1976 if (strcmp(entry
->key
, "WidgetColor") == 0 && !changed
) {
1979 pl
= WMGetFromPLArray(value
, 0);
1980 if (!pl
|| !WMIsPLString(pl
) || !WMGetFromPLString(pl
)
1981 || strcasecmp(WMGetFromPLString(pl
), "solid") != 0) {
1982 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
1983 entry
->key
, "Solid Texture");
1985 value
= entry
->plvalue
;
1987 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
1992 texture
= parse_texture(scr
, value
);
1995 wwarning(_("Error in texture specification for key \"%s\""), entry
->key
);
1997 value
= entry
->plvalue
;
1999 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2009 *(WTexture
**) addr
= texture
;
2014 static int getWSBackground(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2021 /* Parameter not used, but tell the compiler that it is ok */
2026 if (!WMIsPLArray(value
)) {
2027 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2028 "WorkspaceBack", "Texture or None");
2030 value
= entry
->plvalue
;
2032 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2038 /* only do basic error checking and verify for None texture */
2040 nelem
= WMGetPropListItemCount(value
);
2042 elem
= WMGetFromPLArray(value
, 0);
2043 if (!elem
|| !WMIsPLString(elem
)) {
2044 wwarning(_("Wrong type for workspace background. Should be a texture type."));
2046 value
= entry
->plvalue
;
2048 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2053 val
= WMGetFromPLString(elem
);
2055 if (strcasecmp(val
, "None") == 0)
2058 *ret
= WMRetainPropList(value
);
2064 getWSSpecificBackground(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2070 /* Parameter not used, but tell the compiler that it is ok */
2075 if (!WMIsPLArray(value
)) {
2076 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2077 "WorkspaceSpecificBack", "an array of textures");
2079 value
= entry
->plvalue
;
2081 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2087 /* only do basic error checking and verify for None texture */
2089 nelem
= WMGetPropListItemCount(value
);
2092 elem
= WMGetFromPLArray(value
, nelem
);
2093 if (!elem
|| !WMIsPLArray(elem
)) {
2094 wwarning(_("Wrong type for background of workspace %i. Should be a texture."),
2100 *ret
= WMRetainPropList(value
);
2104 * Kluge to force wmsetbg helper to set the default background.
2105 * If the WorkspaceSpecificBack is changed once wmaker has started,
2106 * the WorkspaceBack won't be sent to the helper, unless the user
2107 * changes it's value too. So, we must force this by removing the
2108 * value from the defaults DB.
2110 if (!scr
->flags
.backimage_helper_launched
&& !scr
->flags
.startup
) {
2111 WMPropList
*key
= WMCreatePLString("WorkspaceBack");
2113 WMRemoveFromPLDictionary(w_global
.domain
.wmaker
->dictionary
, key
);
2115 WMReleasePropList(key
);
2121 static int getFont(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2123 static WMFont
*font
;
2128 GET_STRING_OR_DEFAULT("Font", val
);
2130 font
= WMCreateFont(scr
->wmscreen
, val
);
2132 font
= WMCreateFont(scr
->wmscreen
, "fixed");
2135 wfatal(_("could not load any usable font!!!"));
2142 /* can't assign font value outside update function */
2143 wassertrv(addr
== NULL
, True
);
2148 static int getColor(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2150 static XColor color
;
2152 int second_pass
= 0;
2156 GET_STRING_OR_DEFAULT("Color", val
);
2159 if (!wGetColor(scr
, val
, &color
)) {
2160 wwarning(_("could not get color for key \"%s\""), entry
->key
);
2161 if (second_pass
== 0) {
2162 val
= WMGetFromPLString(entry
->plvalue
);
2164 wwarning(_("using default \"%s\" instead"), val
);
2173 assert(addr
== NULL
);
2176 *(unsigned long*)addr = pixel;
2182 static int getKeybind(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2184 static WShortKey shortcut
;
2188 char buf
[MAX_SHORTCUT_LENGTH
], *b
;
2190 /* Parameter not used, but tell the compiler that it is ok */
2194 GET_STRING_OR_DEFAULT("Key spec", val
);
2196 if (!val
|| strcasecmp(val
, "NONE") == 0) {
2197 shortcut
.keycode
= 0;
2198 shortcut
.modifier
= 0;
2204 wstrlcpy(buf
, val
, MAX_SHORTCUT_LENGTH
);
2209 shortcut
.modifier
= 0;
2210 while ((k
= strchr(b
, '+')) != NULL
) {
2214 mod
= wXModifierFromKey(b
);
2216 wwarning(_("%s: invalid key modifier \"%s\""), entry
->key
, b
);
2219 shortcut
.modifier
|= mod
;
2225 ksym
= XStringToKeysym(b
);
2227 if (ksym
== NoSymbol
) {
2228 wwarning(_("%s:invalid kbd shortcut specification \"%s\""), entry
->key
, val
);
2232 shortcut
.keycode
= XKeysymToKeycode(dpy
, ksym
);
2233 if (shortcut
.keycode
== 0) {
2234 wwarning(_("%s:invalid key in shortcut \"%s\""), entry
->key
, val
);
2244 static int getModMask(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2249 /* Parameter not used, but tell the compiler that it is ok */
2252 GET_STRING_OR_DEFAULT("Modifier Key", str
);
2257 mask
= wXModifierFromKey(str
);
2259 wwarning(_("%s: modifier key %s is not valid"), entry
->key
, str
);
2265 *(int *)addr
= mask
;
2273 # include <X11/cursorfont.h>
2279 #define CURSOR_ID_NONE (XC_num_glyphs)
2281 static const WCursorLookup cursor_table
[] = {
2282 {"X_cursor", XC_X_cursor
},
2283 {"arrow", XC_arrow
},
2284 {"based_arrow_down", XC_based_arrow_down
},
2285 {"based_arrow_up", XC_based_arrow_up
},
2287 {"bogosity", XC_bogosity
},
2288 {"bottom_left_corner", XC_bottom_left_corner
},
2289 {"bottom_right_corner", XC_bottom_right_corner
},
2290 {"bottom_side", XC_bottom_side
},
2291 {"bottom_tee", XC_bottom_tee
},
2292 {"box_spiral", XC_box_spiral
},
2293 {"center_ptr", XC_center_ptr
},
2294 {"circle", XC_circle
},
2295 {"clock", XC_clock
},
2296 {"coffee_mug", XC_coffee_mug
},
2297 {"cross", XC_cross
},
2298 {"cross_reverse", XC_cross_reverse
},
2299 {"crosshair", XC_crosshair
},
2300 {"diamond_cross", XC_diamond_cross
},
2302 {"dotbox", XC_dotbox
},
2303 {"double_arrow", XC_double_arrow
},
2304 {"draft_large", XC_draft_large
},
2305 {"draft_small", XC_draft_small
},
2306 {"draped_box", XC_draped_box
},
2307 {"exchange", XC_exchange
},
2308 {"fleur", XC_fleur
},
2309 {"gobbler", XC_gobbler
},
2310 {"gumby", XC_gumby
},
2311 {"hand1", XC_hand1
},
2312 {"hand2", XC_hand2
},
2313 {"heart", XC_heart
},
2315 {"iron_cross", XC_iron_cross
},
2316 {"left_ptr", XC_left_ptr
},
2317 {"left_side", XC_left_side
},
2318 {"left_tee", XC_left_tee
},
2319 {"leftbutton", XC_leftbutton
},
2320 {"ll_angle", XC_ll_angle
},
2321 {"lr_angle", XC_lr_angle
},
2323 {"middlebutton", XC_middlebutton
},
2324 {"mouse", XC_mouse
},
2325 {"pencil", XC_pencil
},
2326 {"pirate", XC_pirate
},
2328 {"question_arrow", XC_question_arrow
},
2329 {"right_ptr", XC_right_ptr
},
2330 {"right_side", XC_right_side
},
2331 {"right_tee", XC_right_tee
},
2332 {"rightbutton", XC_rightbutton
},
2333 {"rtl_logo", XC_rtl_logo
},
2334 {"sailboat", XC_sailboat
},
2335 {"sb_down_arrow", XC_sb_down_arrow
},
2336 {"sb_h_double_arrow", XC_sb_h_double_arrow
},
2337 {"sb_left_arrow", XC_sb_left_arrow
},
2338 {"sb_right_arrow", XC_sb_right_arrow
},
2339 {"sb_up_arrow", XC_sb_up_arrow
},
2340 {"sb_v_double_arrow", XC_sb_v_double_arrow
},
2341 {"shuttle", XC_shuttle
},
2342 {"sizing", XC_sizing
},
2343 {"spider", XC_spider
},
2344 {"spraycan", XC_spraycan
},
2346 {"target", XC_target
},
2347 {"tcross", XC_tcross
},
2348 {"top_left_arrow", XC_top_left_arrow
},
2349 {"top_left_corner", XC_top_left_corner
},
2350 {"top_right_corner", XC_top_right_corner
},
2351 {"top_side", XC_top_side
},
2352 {"top_tee", XC_top_tee
},
2354 {"ul_angle", XC_ul_angle
},
2355 {"umbrella", XC_umbrella
},
2356 {"ur_angle", XC_ur_angle
},
2357 {"watch", XC_watch
},
2358 {"xterm", XC_xterm
},
2359 {NULL
, CURSOR_ID_NONE
}
2362 static void check_bitmap_status(int status
, const char *filename
, Pixmap bitmap
)
2365 case BitmapOpenFailed
:
2366 wwarning(_("failed to open bitmap file \"%s\""), filename
);
2368 case BitmapFileInvalid
:
2369 wwarning(_("\"%s\" is not a valid bitmap file"), filename
);
2371 case BitmapNoMemory
:
2372 wwarning(_("out of memory reading bitmap file \"%s\""), filename
);
2375 XFreePixmap(dpy
, bitmap
);
2382 * (builtin, <cursor_name>)
2383 * (bitmap, <cursor_bitmap>, <cursor_mask>)
2385 static int parse_cursor(WScreen
* scr
, WMPropList
* pl
, Cursor
* cursor
)
2392 nelem
= WMGetPropListItemCount(pl
);
2396 elem
= WMGetFromPLArray(pl
, 0);
2397 if (!elem
|| !WMIsPLString(elem
)) {
2400 val
= WMGetFromPLString(elem
);
2402 if (strcasecmp(val
, "none") == 0) {
2405 } else if (strcasecmp(val
, "builtin") == 0) {
2407 int cursor_id
= CURSOR_ID_NONE
;
2410 wwarning(_("bad number of arguments in cursor specification"));
2413 elem
= WMGetFromPLArray(pl
, 1);
2414 if (!elem
|| !WMIsPLString(elem
)) {
2417 val
= WMGetFromPLString(elem
);
2419 for (i
= 0; cursor_table
[i
].name
!= NULL
; i
++) {
2420 if (strcasecmp(val
, cursor_table
[i
].name
) == 0) {
2421 cursor_id
= cursor_table
[i
].id
;
2425 if (CURSOR_ID_NONE
== cursor_id
) {
2426 wwarning(_("unknown builtin cursor name \"%s\""), val
);
2428 *cursor
= XCreateFontCursor(dpy
, cursor_id
);
2431 } else if (strcasecmp(val
, "bitmap") == 0) {
2443 wwarning(_("bad number of arguments in cursor specification"));
2446 elem
= WMGetFromPLArray(pl
, 1);
2447 if (!elem
|| !WMIsPLString(elem
)) {
2450 val
= WMGetFromPLString(elem
);
2451 bitmap_name
= FindImage(wPreferences
.pixmap_path
, val
);
2453 wwarning(_("could not find cursor bitmap file \"%s\""), val
);
2456 elem
= WMGetFromPLArray(pl
, 2);
2457 if (!elem
|| !WMIsPLString(elem
)) {
2461 val
= WMGetFromPLString(elem
);
2462 mask_name
= FindImage(wPreferences
.pixmap_path
, val
);
2465 wwarning(_("could not find cursor bitmap file \"%s\""), val
);
2468 mask_status
= XReadBitmapFile(dpy
, scr
->w_win
, mask_name
, &w
, &h
, &mask
, &x
, &y
);
2469 bitmap_status
= XReadBitmapFile(dpy
, scr
->w_win
, bitmap_name
, &w
, &h
, &bitmap
, &x
, &y
);
2470 if ((BitmapSuccess
== bitmap_status
) && (BitmapSuccess
== mask_status
)) {
2471 fg
.pixel
= scr
->black_pixel
;
2472 bg
.pixel
= scr
->white_pixel
;
2473 XQueryColor(dpy
, scr
->w_colormap
, &fg
);
2474 XQueryColor(dpy
, scr
->w_colormap
, &bg
);
2475 *cursor
= XCreatePixmapCursor(dpy
, bitmap
, mask
, &fg
, &bg
, x
, y
);
2478 check_bitmap_status(bitmap_status
, bitmap_name
, bitmap
);
2479 check_bitmap_status(mask_status
, mask_name
, mask
);
2486 static int getCursor(WScreen
* scr
, WDefaultEntry
* entry
, WMPropList
* value
, void *addr
, void **ret
)
2488 static Cursor cursor
;
2493 if (!WMIsPLArray(value
)) {
2494 wwarning(_("Wrong option format for key \"%s\". Should be %s."),
2495 entry
->key
, "cursor specification");
2497 value
= entry
->plvalue
;
2499 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2504 status
= parse_cursor(scr
, value
, &cursor
);
2506 wwarning(_("Error in cursor specification for key \"%s\""), entry
->key
);
2508 value
= entry
->plvalue
;
2510 wwarning(_("using default \"%s\" instead"), entry
->default_value
);
2519 *(Cursor
*) addr
= cursor
;
2524 #undef CURSOR_ID_NONE
2526 /* ---------------- value setting functions --------------- */
2527 static int setJustify(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
2529 /* Parameter not used, but tell the compiler that it is ok */
2535 return REFRESH_WINDOW_TITLE_COLOR
;
2538 static int setClearance(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
2540 /* Parameter not used, but tell the compiler that it is ok */
2546 return REFRESH_WINDOW_FONT
| REFRESH_BUTTON_IMAGES
| REFRESH_MENU_TITLE_FONT
| REFRESH_MENU_FONT
;
2549 static int setIfDockPresent(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
2552 long which
= (long) extra_data
;
2554 /* Parameter not used, but tell the compiler that it is ok */
2560 wPreferences
.flags
.nodock
= wPreferences
.flags
.nodock
|| *flag
;
2561 // Drawers require the dock
2562 wPreferences
.flags
.nodrawer
= wPreferences
.flags
.nodrawer
|| wPreferences
.flags
.nodock
;
2565 wPreferences
.flags
.noclip
= wPreferences
.flags
.noclip
|| *flag
;
2568 wPreferences
.flags
.nodrawer
= wPreferences
.flags
.nodrawer
|| *flag
;
2576 static int setClipMergedInDock(WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *foo
)
2580 /* Parameter not used, but tell the compiler that it is ok */
2585 wPreferences
.flags
.clip_merged_in_dock
= *flag
;
2586 wPreferences
.flags
.noclip
= wPreferences
.flags
.noclip
|| *flag
;
2590 static int setWrapAppiconsInDock(WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *foo
)
2594 /* Parameter not used, but tell the compiler that it is ok */
2599 wPreferences
.flags
.wrap_appicons_in_dock
= *flag
;
2603 static int setStickyIcons(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
2605 /* Parameter not used, but tell the compiler that it is ok */
2610 if (scr
->workspaces
) {
2611 wWorkspaceForceChange(scr
, scr
->current_workspace
);
2612 wArrangeIcons(scr
, False
);
2617 static int setIconTile(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2621 WTexture
** texture
= tdata
;
2624 /* Parameter not used, but tell the compiler that it is ok */
2627 img
= wTextureRenderImage(*texture
, wPreferences
.icon_size
,
2628 wPreferences
.icon_size
, ((*texture
)->any
.type
& WREL_BORDER_MASK
)
2629 ? WREL_ICON
: WREL_FLAT
);
2631 wwarning(_("could not render texture for icon background"));
2633 wTextureDestroy(scr
, *texture
);
2636 RConvertImage(scr
->rcontext
, img
, &pixmap
);
2638 if (scr
->icon_tile
) {
2640 RReleaseImage(scr
->icon_tile
);
2641 XFreePixmap(dpy
, scr
->icon_tile_pixmap
);
2644 scr
->icon_tile
= img
;
2646 /* put the icon in the noticeboard hint */
2647 PropSetIconTileHint(scr
, img
);
2649 if (!wPreferences
.flags
.noclip
|| wPreferences
.flags
.clip_merged_in_dock
) {
2650 if (scr
->clip_tile
) {
2651 RReleaseImage(scr
->clip_tile
);
2653 scr
->clip_tile
= wClipMakeTile(img
);
2656 if (!wPreferences
.flags
.nodrawer
) {
2657 if (scr
->drawer_tile
) {
2658 RReleaseImage(scr
->drawer_tile
);
2660 scr
->drawer_tile
= wDrawerMakeTile(scr
, img
);
2663 scr
->icon_tile_pixmap
= pixmap
;
2665 if (scr
->def_icon_rimage
) {
2666 RReleaseImage(scr
->def_icon_rimage
);
2667 scr
->def_icon_rimage
= NULL
;
2670 if (scr
->icon_back_texture
)
2671 wTextureDestroy(scr
, (WTexture
*) scr
->icon_back_texture
);
2673 scr
->icon_back_texture
= wTextureMakeSolid(scr
, &((*texture
)->any
.color
));
2675 /* Free the texture as nobody else will use it, nor refer to it. */
2677 wTextureDestroy(scr
, *texture
);
2679 return (reset
? REFRESH_ICON_TILE
: 0);
2682 static int setWinTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2684 WMFont
*font
= tdata
;
2686 /* Parameter not used, but tell the compiler that it is ok */
2690 if (scr
->title_font
) {
2691 WMReleaseFont(scr
->title_font
);
2693 scr
->title_font
= font
;
2695 return REFRESH_WINDOW_FONT
| REFRESH_BUTTON_IMAGES
;
2698 static int setMenuTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2700 WMFont
*font
= tdata
;
2702 /* Parameter not used, but tell the compiler that it is ok */
2706 if (scr
->menu_title_font
) {
2707 WMReleaseFont(scr
->menu_title_font
);
2710 scr
->menu_title_font
= font
;
2712 return REFRESH_MENU_TITLE_FONT
;
2715 static int setMenuTextFont(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2717 WMFont
*font
= tdata
;
2719 /* Parameter not used, but tell the compiler that it is ok */
2723 if (scr
->menu_entry_font
) {
2724 WMReleaseFont(scr
->menu_entry_font
);
2726 scr
->menu_entry_font
= font
;
2728 return REFRESH_MENU_FONT
;
2731 static int setIconTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2733 WMFont
*font
= tdata
;
2735 /* Parameter not used, but tell the compiler that it is ok */
2739 if (scr
->icon_title_font
) {
2740 WMReleaseFont(scr
->icon_title_font
);
2743 scr
->icon_title_font
= font
;
2745 return REFRESH_ICON_FONT
;
2748 static int setClipTitleFont(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2750 WMFont
*font
= tdata
;
2752 /* Parameter not used, but tell the compiler that it is ok */
2756 if (scr
->clip_title_font
) {
2757 WMReleaseFont(scr
->clip_title_font
);
2760 scr
->clip_title_font
= font
;
2762 return REFRESH_ICON_FONT
;
2765 static int setLargeDisplayFont(WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *foo
)
2767 WMFont
*font
= tdata
;
2769 /* Parameter not used, but tell the compiler that it is ok */
2774 if (scr
->workspace_name_font
)
2775 WMReleaseFont(scr
->workspace_name_font
);
2777 scr
->workspace_name_font
= font
;
2782 static int setHightlight(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2784 XColor
*color
= tdata
;
2786 /* Parameter not used, but tell the compiler that it is ok */
2790 if (scr
->select_color
)
2791 WMReleaseColor(scr
->select_color
);
2793 scr
->select_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2795 wFreeColor(scr
, color
->pixel
);
2797 return REFRESH_MENU_COLOR
;
2800 static int setHightlightText(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2802 XColor
*color
= tdata
;
2804 /* Parameter not used, but tell the compiler that it is ok */
2808 if (scr
->select_text_color
)
2809 WMReleaseColor(scr
->select_text_color
);
2811 scr
->select_text_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2813 wFreeColor(scr
, color
->pixel
);
2815 return REFRESH_MENU_COLOR
;
2818 static int setClipTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
2820 XColor
*color
= tdata
;
2821 long widx
= (long) extra_data
;
2823 /* Parameter not used, but tell the compiler that it is ok */
2826 if (scr
->clip_title_color
[widx
])
2827 WMReleaseColor(scr
->clip_title_color
[widx
]);
2829 scr
->clip_title_color
[widx
] = WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2830 wFreeColor(scr
, color
->pixel
);
2832 return REFRESH_ICON_TITLE_COLOR
;
2835 static int setWTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
2837 XColor
*color
= tdata
;
2838 long widx
= (long) extra_data
;
2840 /* Parameter not used, but tell the compiler that it is ok */
2843 if (scr
->window_title_color
[widx
])
2844 WMReleaseColor(scr
->window_title_color
[widx
]);
2846 scr
->window_title_color
[widx
] =
2847 WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2849 wFreeColor(scr
, color
->pixel
);
2851 return REFRESH_WINDOW_TITLE_COLOR
;
2854 static int setMenuTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
2856 XColor
*color
= tdata
;
2858 /* Parameter not used, but tell the compiler that it is ok */
2862 if (scr
->menu_title_color
[0])
2863 WMReleaseColor(scr
->menu_title_color
[0]);
2865 scr
->menu_title_color
[0] = WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2867 wFreeColor(scr
, color
->pixel
);
2869 return REFRESH_MENU_TITLE_COLOR
;
2872 static int setMenuTextColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2874 XColor
*color
= tdata
;
2876 /* Parameter not used, but tell the compiler that it is ok */
2880 if (scr
->mtext_color
)
2881 WMReleaseColor(scr
->mtext_color
);
2883 scr
->mtext_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2885 if (WMColorPixel(scr
->dtext_color
) == WMColorPixel(scr
->mtext_color
)) {
2886 WMSetColorAlpha(scr
->dtext_color
, 0x7fff);
2888 WMSetColorAlpha(scr
->dtext_color
, 0xffff);
2891 wFreeColor(scr
, color
->pixel
);
2893 return REFRESH_MENU_COLOR
;
2896 static int setMenuDisabledColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2898 XColor
*color
= tdata
;
2900 /* Parameter not used, but tell the compiler that it is ok */
2904 if (scr
->dtext_color
)
2905 WMReleaseColor(scr
->dtext_color
);
2907 scr
->dtext_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2909 if (WMColorPixel(scr
->dtext_color
) == WMColorPixel(scr
->mtext_color
)) {
2910 WMSetColorAlpha(scr
->dtext_color
, 0x7fff);
2912 WMSetColorAlpha(scr
->dtext_color
, 0xffff);
2915 wFreeColor(scr
, color
->pixel
);
2917 return REFRESH_MENU_COLOR
;
2920 static int setIconTitleColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2922 XColor
*color
= tdata
;
2924 /* Parameter not used, but tell the compiler that it is ok */
2928 if (scr
->icon_title_color
)
2929 WMReleaseColor(scr
->icon_title_color
);
2930 scr
->icon_title_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2932 wFreeColor(scr
, color
->pixel
);
2934 return REFRESH_ICON_TITLE_COLOR
;
2937 static int setIconTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2939 XColor
*color
= tdata
;
2941 /* Parameter not used, but tell the compiler that it is ok */
2945 if (scr
->icon_title_texture
) {
2946 wTextureDestroy(scr
, (WTexture
*) scr
->icon_title_texture
);
2948 scr
->icon_title_texture
= wTextureMakeSolid(scr
, color
);
2950 return REFRESH_ICON_TITLE_BACK
;
2953 static int setFrameBorderWidth(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2957 /* Parameter not used, but tell the compiler that it is ok */
2961 scr
->frame_border_width
= *value
;
2963 return REFRESH_FRAME_BORDER
;
2966 static int setFrameBorderColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
2968 XColor
*color
= tdata
;
2970 /* Parameter not used, but tell the compiler that it is ok */
2974 if (scr
->frame_border_color
)
2975 WMReleaseColor(scr
->frame_border_color
);
2976 scr
->frame_border_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2978 wFreeColor(scr
, color
->pixel
);
2980 return REFRESH_FRAME_BORDER
;
2983 static int setFrameFocusedBorderColor(WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *foo
)
2985 XColor
*color
= tdata
;
2987 /* Parameter not used, but tell the compiler that it is ok */
2991 if (scr
->frame_focused_border_color
)
2992 WMReleaseColor(scr
->frame_focused_border_color
);
2993 scr
->frame_focused_border_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
2995 wFreeColor(scr
, color
->pixel
);
2997 return REFRESH_FRAME_BORDER
;
3000 static int setFrameSelectedBorderColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3002 XColor
*color
= tdata
;
3004 /* Parameter not used, but tell the compiler that it is ok */
3008 if (scr
->frame_selected_border_color
)
3009 WMReleaseColor(scr
->frame_selected_border_color
);
3010 scr
->frame_selected_border_color
= WMCreateRGBColor(scr
->wmscreen
, color
->red
, color
->green
, color
->blue
, True
);
3012 wFreeColor(scr
, color
->pixel
);
3014 return REFRESH_FRAME_BORDER
;
3017 static int setWorkspaceSpecificBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *bar
)
3019 WMPropList
*value
= tdata
;
3024 /* Parameter not used, but tell the compiler that it is ok */
3028 if (scr
->flags
.backimage_helper_launched
) {
3029 if (WMGetPropListItemCount(value
) == 0) {
3030 SendHelperMessage(scr
, 'C', 0, NULL
);
3031 SendHelperMessage(scr
, 'K', 0, NULL
);
3033 WMReleasePropList(value
);
3037 if (WMGetPropListItemCount(value
) == 0)
3040 if (!start_bg_helper(scr
)) {
3041 WMReleasePropList(value
);
3045 SendHelperMessage(scr
, 'P', -1, wPreferences
.pixmap_path
);
3048 for (i
= 0; i
< WMGetPropListItemCount(value
); i
++) {
3049 val
= WMGetFromPLArray(value
, i
);
3050 if (val
&& WMIsPLArray(val
) && WMGetPropListItemCount(val
) > 0) {
3051 str
= WMGetPropListDescription(val
, False
);
3053 SendHelperMessage(scr
, 'S', i
+ 1, str
);
3057 SendHelperMessage(scr
, 'U', i
+ 1, NULL
);
3062 WMReleasePropList(value
);
3066 static int setWorkspaceBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *bar
)
3068 WMPropList
*value
= tdata
;
3070 /* Parameter not used, but tell the compiler that it is ok */
3074 if (scr
->flags
.backimage_helper_launched
) {
3077 if (WMGetPropListItemCount(value
) == 0) {
3078 SendHelperMessage(scr
, 'U', 0, NULL
);
3080 /* set the default workspace background to this one */
3081 str
= WMGetPropListDescription(value
, False
);
3083 SendHelperMessage(scr
, 'S', 0, str
);
3085 SendHelperMessage(scr
, 'C', scr
->current_workspace
+ 1, NULL
);
3087 SendHelperMessage(scr
, 'U', 0, NULL
);
3090 } else if (WMGetPropListItemCount(value
) > 0) {
3096 text
= WMGetPropListDescription(value
, False
);
3097 len
= strlen(text
) + 40;
3098 command
= wmalloc(len
);
3099 dither
= wPreferences
.no_dithering
? "-m" : "-d";
3100 if (!strchr(text
, '\'') && !strchr(text
, '\\')) {
3101 command
= wmalloc(len
);
3102 if (wPreferences
.smooth_workspace_back
)
3103 snprintf(command
, len
, "wmsetbg %s -S -p '%s' &", dither
, text
);
3105 snprintf(command
, len
, "wmsetbg %s -p '%s' &", dither
, text
);
3106 ExecuteShellCommand(scr
, command
);
3109 wwarning(_("Invalid arguments for background \"%s\""), text
);
3112 WMReleasePropList(value
);
3117 static int setWidgetColor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3119 WTexture
**texture
= tdata
;
3121 /* Parameter not used, but tell the compiler that it is ok */
3125 if (scr
->widget_texture
) {
3126 wTextureDestroy(scr
, (WTexture
*) scr
->widget_texture
);
3128 scr
->widget_texture
= *(WTexSolid
**) texture
;
3133 static int setFTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3135 WTexture
**texture
= tdata
;
3137 /* Parameter not used, but tell the compiler that it is ok */
3141 if (scr
->window_title_texture
[WS_FOCUSED
]) {
3142 wTextureDestroy(scr
, scr
->window_title_texture
[WS_FOCUSED
]);
3144 scr
->window_title_texture
[WS_FOCUSED
] = *texture
;
3146 return REFRESH_WINDOW_TEXTURES
;
3149 static int setPTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3151 WTexture
**texture
= tdata
;
3153 /* Parameter not used, but tell the compiler that it is ok */
3157 if (scr
->window_title_texture
[WS_PFOCUSED
]) {
3158 wTextureDestroy(scr
, scr
->window_title_texture
[WS_PFOCUSED
]);
3160 scr
->window_title_texture
[WS_PFOCUSED
] = *texture
;
3162 return REFRESH_WINDOW_TEXTURES
;
3165 static int setUTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3167 WTexture
**texture
= tdata
;
3169 /* Parameter not used, but tell the compiler that it is ok */
3173 if (scr
->window_title_texture
[WS_UNFOCUSED
]) {
3174 wTextureDestroy(scr
, scr
->window_title_texture
[WS_UNFOCUSED
]);
3176 scr
->window_title_texture
[WS_UNFOCUSED
] = *texture
;
3178 return REFRESH_WINDOW_TEXTURES
;
3181 static int setResizebarBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3183 WTexture
**texture
= tdata
;
3185 /* Parameter not used, but tell the compiler that it is ok */
3189 if (scr
->resizebar_texture
[0]) {
3190 wTextureDestroy(scr
, scr
->resizebar_texture
[0]);
3192 scr
->resizebar_texture
[0] = *texture
;
3194 return REFRESH_WINDOW_TEXTURES
;
3197 static int setMenuTitleBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3199 WTexture
**texture
= tdata
;
3201 /* Parameter not used, but tell the compiler that it is ok */
3205 if (scr
->menu_title_texture
[0]) {
3206 wTextureDestroy(scr
, scr
->menu_title_texture
[0]);
3208 scr
->menu_title_texture
[0] = *texture
;
3210 return REFRESH_MENU_TITLE_TEXTURE
;
3213 static int setMenuTextBack(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3215 WTexture
**texture
= tdata
;
3217 /* Parameter not used, but tell the compiler that it is ok */
3221 if (scr
->menu_item_texture
) {
3222 wTextureDestroy(scr
, scr
->menu_item_texture
);
3223 wTextureDestroy(scr
, (WTexture
*) scr
->menu_item_auxtexture
);
3225 scr
->menu_item_texture
= *texture
;
3227 scr
->menu_item_auxtexture
= wTextureMakeSolid(scr
, &scr
->menu_item_texture
->any
.color
);
3229 return REFRESH_MENU_TEXTURE
;
3232 static int setKeyGrab(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
3234 WShortKey
*shortcut
= tdata
;
3236 long widx
= (long) extra_data
;
3238 /* Parameter not used, but tell the compiler that it is ok */
3241 wKeyBindings
[widx
] = *shortcut
;
3243 wwin
= scr
->focused_window
;
3245 while (wwin
!= NULL
) {
3246 XUngrabKey(dpy
, AnyKey
, AnyModifier
, wwin
->frame
->core
->window
);
3248 if (!WFLAGP(wwin
, no_bind_keys
)) {
3249 wWindowSetKeyGrabs(wwin
);
3254 /* do we need to update window menus? */
3255 if (widx
>= WKBD_WORKSPACE1
&& widx
<= WKBD_WORKSPACE10
)
3256 return REFRESH_WORKSPACE_MENU
;
3257 if (widx
== WKBD_LASTWORKSPACE
)
3258 return REFRESH_WORKSPACE_MENU
;
3259 if (widx
>= WKBD_MOVE_WORKSPACE1
&& widx
<= WKBD_MOVE_WORKSPACE10
)
3260 return REFRESH_WORKSPACE_MENU
;
3265 static int setIconPosition(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
3267 /* Parameter not used, but tell the compiler that it is ok */
3272 wScreenUpdateUsableArea(scr
);
3273 wArrangeIcons(scr
, True
);
3278 static int updateUsableArea(WScreen
* scr
, WDefaultEntry
* entry
, void *bar
, void *foo
)
3280 /* Parameter not used, but tell the compiler that it is ok */
3285 wScreenUpdateUsableArea(scr
);
3290 static int setWorkspaceMapBackground(WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *foo
)
3292 WTexture
**texture
= tdata
;
3294 /* Parameter not used, but tell the compiler that it is ok */
3298 if (wPreferences
.wsmbackTexture
)
3299 wTextureDestroy(scr
, wPreferences
.wsmbackTexture
);
3301 wPreferences
.wsmbackTexture
= *texture
;
3303 return REFRESH_WINDOW_TEXTURES
;
3306 static int setMenuStyle(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3308 /* Parameter not used, but tell the compiler that it is ok */
3314 return REFRESH_MENU_TEXTURE
;
3317 static RImage
*chopOffImage(RImage
* image
, int x
, int y
, int w
, int h
)
3319 RImage
*img
= RCreateImage(w
, h
, image
->format
== RRGBAFormat
);
3321 RCopyArea(img
, image
, x
, y
, w
, h
, 0, 0);
3326 static int setSwPOptions(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3328 WMPropList
*array
= tdata
;
3331 int cwidth
, cheight
;
3332 struct WPreferences
*prefs
= foo
;
3334 if (!WMIsPLArray(array
) || WMGetPropListItemCount(array
) == 0) {
3335 if (prefs
->swtileImage
)
3336 RReleaseImage(prefs
->swtileImage
);
3337 prefs
->swtileImage
= NULL
;
3339 WMReleasePropList(array
);
3343 switch (WMGetPropListItemCount(array
)) {
3345 if (!WMIsPLString(WMGetFromPLArray(array
, 1))) {
3346 wwarning(_("Invalid arguments for option \"%s\""), entry
->key
);
3349 path
= FindImage(wPreferences
.pixmap_path
, WMGetFromPLString(WMGetFromPLArray(array
, 1)));
3352 wwarning(_("Could not find image \"%s\" for option \"%s\""),
3353 WMGetFromPLString(WMGetFromPLArray(array
, 1)), entry
->key
);
3355 bgimage
= RLoadImage(scr
->rcontext
, path
, 0);
3357 wwarning(_("Could not load image \"%s\" for option \"%s\""), path
, entry
->key
);
3362 cwidth
= atoi(WMGetFromPLString(WMGetFromPLArray(array
, 2)));
3363 cheight
= atoi(WMGetFromPLString(WMGetFromPLArray(array
, 3)));
3365 if (cwidth
<= 0 || cheight
<= 0 ||
3366 cwidth
>= bgimage
->width
- 2 || cheight
>= bgimage
->height
- 2)
3367 wwarning(_("Invalid split sizes for switch panel back image."));
3370 int swidth
, theight
;
3371 for (i
= 0; i
< 9; i
++) {
3372 if (prefs
->swbackImage
[i
])
3373 RReleaseImage(prefs
->swbackImage
[i
]);
3374 prefs
->swbackImage
[i
] = NULL
;
3376 swidth
= (bgimage
->width
- cwidth
) / 2;
3377 theight
= (bgimage
->height
- cheight
) / 2;
3379 prefs
->swbackImage
[0] = chopOffImage(bgimage
, 0, 0, swidth
, theight
);
3380 prefs
->swbackImage
[1] = chopOffImage(bgimage
, swidth
, 0, cwidth
, theight
);
3381 prefs
->swbackImage
[2] = chopOffImage(bgimage
, swidth
+ cwidth
, 0,
3384 prefs
->swbackImage
[3] = chopOffImage(bgimage
, 0, theight
, swidth
, cheight
);
3385 prefs
->swbackImage
[4] = chopOffImage(bgimage
, swidth
, theight
,
3387 prefs
->swbackImage
[5] = chopOffImage(bgimage
, swidth
+ cwidth
, theight
,
3390 prefs
->swbackImage
[6] = chopOffImage(bgimage
, 0, theight
+ cheight
,
3392 prefs
->swbackImage
[7] = chopOffImage(bgimage
, swidth
, theight
+ cheight
,
3394 prefs
->swbackImage
[8] =
3395 chopOffImage(bgimage
, swidth
+ cwidth
, theight
+ cheight
, swidth
,
3398 // check if anything failed
3399 for (i
= 0; i
< 9; i
++) {
3400 if (!prefs
->swbackImage
[i
]) {
3401 for (; i
>= 0; --i
) {
3402 RReleaseImage(prefs
->swbackImage
[i
]);
3403 prefs
->swbackImage
[i
] = NULL
;
3409 RReleaseImage(bgimage
);
3414 if (!WMIsPLString(WMGetFromPLArray(array
, 0))) {
3415 wwarning(_("Invalid arguments for option \"%s\""), entry
->key
);
3418 path
= FindImage(wPreferences
.pixmap_path
, WMGetFromPLString(WMGetFromPLArray(array
, 0)));
3421 wwarning(_("Could not find image \"%s\" for option \"%s\""),
3422 WMGetFromPLString(WMGetFromPLArray(array
, 0)), entry
->key
);
3424 if (prefs
->swtileImage
)
3425 RReleaseImage(prefs
->swtileImage
);
3427 prefs
->swtileImage
= RLoadImage(scr
->rcontext
, path
, 0);
3428 if (!prefs
->swtileImage
) {
3429 wwarning(_("Could not load image \"%s\" for option \"%s\""), path
, entry
->key
);
3436 wwarning(_("Invalid number of arguments for option \"%s\""), entry
->key
);
3440 WMReleasePropList(array
);
3445 static int setModifierKeyLabels(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *foo
)
3447 WMPropList
*array
= tdata
;
3449 struct WPreferences
*prefs
= foo
;
3451 if (!WMIsPLArray(array
) || WMGetPropListItemCount(array
) != 7) {
3452 wwarning(_("Value for option \"%s\" must be an array of 7 strings"), entry
->key
);
3453 WMReleasePropList(array
);
3457 DestroyWindowMenu(scr
);
3459 for (i
= 0; i
< 7; i
++) {
3460 if (prefs
->modifier_labels
[i
])
3461 wfree(prefs
->modifier_labels
[i
]);
3463 if (WMIsPLString(WMGetFromPLArray(array
, i
))) {
3464 prefs
->modifier_labels
[i
] = wstrdup(WMGetFromPLString(WMGetFromPLArray(array
, i
)));
3466 wwarning(_("Invalid argument for option \"%s\" item %d"), entry
->key
, i
);
3467 prefs
->modifier_labels
[i
] = NULL
;
3471 WMReleasePropList(array
);
3476 static int setDoubleClick(WScreen
*scr
, WDefaultEntry
*entry
, void *tdata
, void *foo
)
3480 /* Parameter not used, but tell the compiler that it is ok */
3487 W_setconf_doubleClickDelay(*value
);
3492 static int setCursor(WScreen
* scr
, WDefaultEntry
* entry
, void *tdata
, void *extra_data
)
3494 Cursor
*cursor
= tdata
;
3495 long widx
= (long) extra_data
;
3497 /* Parameter not used, but tell the compiler that it is ok */
3500 if (wPreferences
.cursor
[widx
] != None
) {
3501 XFreeCursor(dpy
, wPreferences
.cursor
[widx
]);
3504 wPreferences
.cursor
[widx
] = *cursor
;
3506 if (widx
== WCUR_ROOT
&& *cursor
!= None
) {
3507 XDefineCursor(dpy
, scr
->root_win
, *cursor
);