1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 config.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
24 #include "translate.h"
27 #include "parser/parse.h"
31 gboolean config_focus_new
;
32 gboolean config_focus_follow
;
33 guint config_focus_delay
;
34 gboolean config_focus_raise
;
35 gboolean config_focus_last
;
37 ObPlacePolicy config_place_policy
;
40 gboolean config_theme_keepborder
;
41 gboolean config_theme_hidedisabled
;
43 gchar
*config_title_layout
;
45 RrFont
*config_font_activewindow
;
46 RrFont
*config_font_inactivewindow
;
47 RrFont
*config_font_menuitem
;
48 RrFont
*config_font_menutitle
;
50 gint config_desktops_num
;
51 GSList
*config_desktops_names
;
52 guint config_screen_firstdesk
;
54 gboolean config_resize_redraw
;
55 gboolean config_resize_four_corners
;
56 gint config_resize_popup_show
;
57 gint config_resize_popup_pos
;
59 ObStackingLayer config_dock_layer
;
60 gboolean config_dock_floating
;
61 gboolean config_dock_nostrut
;
62 ObDirection config_dock_pos
;
65 ObOrientation config_dock_orient
;
66 gboolean config_dock_hide
;
67 guint config_dock_hide_delay
;
68 guint config_dock_show_delay
;
69 guint config_dock_app_move_button
;
70 guint config_dock_app_move_modifiers
;
72 guint config_keyboard_reset_keycode
;
73 guint config_keyboard_reset_state
;
75 gint config_mouse_threshold
;
76 gint config_mouse_dclicktime
;
78 gboolean config_menu_warppointer
;
79 guint config_menu_hide_delay
;
80 gboolean config_menu_middle
;
81 guint config_submenu_show_delay
;
82 gboolean config_menu_client_list_icons
;
84 GSList
*config_menu_files
;
86 gint config_resist_win
;
87 gint config_resist_edge
;
88 gboolean config_resist_layers_below
;
90 GSList
*config_per_app_settings
;
94 <application name="aterm">
97 <application name="Rhythmbox">
108 /* Manages settings for individual applications.
109 Some notes: head is the screen number in a multi monitor
110 (Xinerama) setup (starting from 0) or mouse, meaning the
111 head the pointer is on. Default: mouse.
112 Layer can be three values, above (Always on top), below
113 (Always on bottom) and everything else (normal behaviour).
114 Positions can be an integer value or center, which will
115 center the window in the specified axis. Position is relative
116 from head, so <position><x>center</x></position><head>1</head>
117 will center the window on the second head.
119 static void parse_per_app_settings(ObParseInst
*i
, xmlDocPtr doc
,
120 xmlNodePtr node
, gpointer d
)
122 xmlNodePtr app
= parse_find_node("application", node
->children
);
124 gboolean name_set
, class_set
;
125 gboolean x_pos_given
;
128 name_set
= class_set
= x_pos_given
= FALSE
;
130 class_set
= parse_attr_string("class", app
, &class);
131 name_set
= parse_attr_string("name", app
, &name
);
132 if (class_set
|| name_set
) {
134 ObAppSettings
*settings
= g_new0(ObAppSettings
, 1);
137 settings
->name
= name
;
139 settings
->name
= NULL
;
142 settings
->class = class;
144 settings
->class = NULL
;
146 if (!parse_attr_string("role", app
, &settings
->role
))
147 settings
->role
= NULL
;
149 settings
->decor
= -1;
150 if ((n
= parse_find_node("decor", app
->children
)))
151 settings
->decor
= parse_bool(doc
, n
);
153 settings
->shade
= -1;
154 if ((n
= parse_find_node("shade", app
->children
)))
155 settings
->shade
= parse_bool(doc
, n
);
157 settings
->position
.x
= settings
->position
.y
= 0;
158 settings
->pos_given
= FALSE
;
159 if ((n
= parse_find_node("position", app
->children
))) {
160 if ((c
= parse_find_node("x", n
->children
))) {
161 gchar
*s
= parse_string(doc
, c
);
162 if (!strcmp(s
, "center")) {
163 settings
->center_x
= TRUE
;
166 settings
->position
.x
= parse_int(doc
, c
);
172 if (x_pos_given
&& (c
= parse_find_node("y", n
->children
))) {
173 gchar
*s
= parse_string(doc
, c
);
174 if (!strcmp(s
, "center")) {
175 settings
->center_y
= TRUE
;
176 settings
->pos_given
= TRUE
;
178 settings
->position
.y
= parse_int(doc
, c
);
179 settings
->pos_given
= TRUE
;
185 settings
->focus
= -1;
186 if ((n
= parse_find_node("focus", app
->children
)))
187 settings
->focus
= parse_bool(doc
, n
);
189 if ((n
= parse_find_node("desktop", app
->children
))) {
190 gchar
*s
= parse_string(doc
, n
);
191 if (!strcmp(s
, "all"))
192 settings
->desktop
= DESKTOP_ALL
;
194 settings
->desktop
= parse_int(doc
, n
);
197 settings
->desktop
= DESKTOP_ALL
- 1; /* lets hope the user
201 if ((n
= parse_find_node("head", app
->children
))) {
202 gchar
*s
= parse_string(doc
, n
);
203 if (!strcmp(s
, "mouse"))
206 settings
->head
= parse_int(doc
, n
);
210 settings
->layer
= -2;
211 if ((n
= parse_find_node("layer", app
->children
))) {
212 gchar
*s
= parse_string(doc
, n
);
213 if (!strcmp(s
, "above"))
215 else if (!strcmp(s
, "below"))
216 settings
->layer
= -1;
222 settings
->iconic
= -1;
223 if ((n
= parse_find_node("iconic", app
->children
)))
224 settings
->iconic
= parse_bool(doc
, n
);
226 settings
->skip_pager
= -1;
227 if ((n
= parse_find_node("skip_pager", app
->children
)))
228 settings
->skip_pager
= parse_bool(doc
, n
);
230 settings
->skip_taskbar
= -1;
231 if ((n
= parse_find_node("skip_taskbar", app
->children
)))
232 settings
->skip_taskbar
= parse_bool(doc
, n
);
234 settings
->fullscreen
= -1;
235 if ((n
= parse_find_node("fullscreen", app
->children
)))
236 settings
->fullscreen
= parse_bool(doc
, n
);
238 settings
->max_horz
= -1;
239 settings
->max_vert
= -1;
240 if ((n
= parse_find_node("maximized", app
->children
))) {
241 gchar
*s
= parse_string(doc
, n
);
242 if (!strcmp(s
, "horizontal")) {
243 settings
->max_horz
= TRUE
;
244 settings
->max_vert
= FALSE
;
245 } else if (!strcmp(s
, "vertical")) {
246 settings
->max_horz
= FALSE
;
247 settings
->max_vert
= TRUE
;
249 settings
->max_horz
= settings
->max_vert
=
254 config_per_app_settings
= g_slist_append(config_per_app_settings
,
255 (gpointer
) settings
);
258 app
= parse_find_node("application", app
->next
);
265 <action name="ChangeDesktop">
272 static void parse_key(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
280 if ((n
= parse_find_node("chainQuitKey", node
))) {
281 key
= parse_string(doc
, n
);
282 translate_key(key
, &config_keyboard_reset_state
,
283 &config_keyboard_reset_keycode
);
287 n
= parse_find_node("keybind", node
);
289 if (parse_attr_string("key", n
, &key
)) {
290 keylist
= g_list_append(keylist
, key
);
292 parse_key(i
, doc
, n
->children
, keylist
);
294 it
= g_list_last(keylist
);
296 keylist
= g_list_delete_link(keylist
, it
);
298 n
= parse_find_node("keybind", n
->next
);
301 nact
= parse_find_node("action", node
);
303 if ((action
= action_parse(i
, doc
, nact
,
304 OB_USER_ACTION_KEYBOARD_KEY
)))
305 keyboard_bind(keylist
, action
);
306 nact
= parse_find_node("action", nact
->next
);
311 static void parse_keyboard(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
314 keyboard_unbind_all();
316 parse_key(i
, doc
, node
->children
, NULL
);
321 <context name="Titlebar">
322 <mousebind button="Left" action="Press">
323 <action name="Raise"></action>
329 static void parse_mouse(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
332 xmlNodePtr n
, nbut
, nact
;
341 node
= node
->children
;
343 if ((n
= parse_find_node("dragThreshold", node
)))
344 config_mouse_threshold
= parse_int(doc
, n
);
345 if ((n
= parse_find_node("doubleClickTime", node
)))
346 config_mouse_dclicktime
= parse_int(doc
, n
);
348 n
= parse_find_node("context", node
);
350 if (!parse_attr_string("name", n
, &contextstr
))
352 nbut
= parse_find_node("mousebind", n
->children
);
354 if (!parse_attr_string("button", nbut
, &buttonstr
))
356 if (parse_attr_contains("press", nbut
, "action")) {
357 uact
= OB_USER_ACTION_MOUSE_PRESS
;
358 mact
= OB_MOUSE_ACTION_PRESS
;
359 } else if (parse_attr_contains("release", nbut
, "action")) {
360 uact
= OB_USER_ACTION_MOUSE_RELEASE
;
361 mact
= OB_MOUSE_ACTION_RELEASE
;
362 } else if (parse_attr_contains("click", nbut
, "action")) {
363 uact
= OB_USER_ACTION_MOUSE_CLICK
;
364 mact
= OB_MOUSE_ACTION_CLICK
;
365 } else if (parse_attr_contains("doubleclick", nbut
,"action")) {
366 uact
= OB_USER_ACTION_MOUSE_DOUBLE_CLICK
;
367 mact
= OB_MOUSE_ACTION_DOUBLE_CLICK
;
368 } else if (parse_attr_contains("drag", nbut
, "action")) {
369 uact
= OB_USER_ACTION_MOUSE_MOTION
;
370 mact
= OB_MOUSE_ACTION_MOTION
;
373 nact
= parse_find_node("action", nbut
->children
);
375 if ((action
= action_parse(i
, doc
, nact
, uact
)))
376 mouse_bind(buttonstr
, contextstr
, mact
, action
);
377 nact
= parse_find_node("action", nact
->next
);
381 nbut
= parse_find_node("mousebind", nbut
->next
);
385 n
= parse_find_node("context", n
->next
);
389 static void parse_focus(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
394 node
= node
->children
;
396 if ((n
= parse_find_node("focusNew", node
)))
397 config_focus_new
= parse_bool(doc
, n
);
398 if ((n
= parse_find_node("followMouse", node
)))
399 config_focus_follow
= parse_bool(doc
, n
);
400 if ((n
= parse_find_node("focusDelay", node
)))
401 config_focus_delay
= parse_int(doc
, n
) * 1000;
402 if ((n
= parse_find_node("raiseOnFocus", node
)))
403 config_focus_raise
= parse_bool(doc
, n
);
404 if ((n
= parse_find_node("focusLast", node
)))
405 config_focus_last
= parse_bool(doc
, n
);
408 static void parse_placement(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
413 node
= node
->children
;
415 if ((n
= parse_find_node("policy", node
)))
416 if (parse_contains("UnderMouse", doc
, n
))
417 config_place_policy
= OB_PLACE_POLICY_MOUSE
;
420 static void parse_theme(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
425 node
= node
->children
;
427 if ((n
= parse_find_node("name", node
))) {
430 g_free(config_theme
);
431 c
= parse_string(doc
, n
);
432 config_theme
= parse_expand_tilde(c
);
435 if ((n
= parse_find_node("titleLayout", node
))) {
436 g_free(config_title_layout
);
437 config_title_layout
= parse_string(doc
, n
);
439 if ((n
= parse_find_node("keepBorder", node
)))
440 config_theme_keepborder
= parse_bool(doc
, n
);
441 if ((n
= parse_find_node("hideDisabled", node
)))
442 config_theme_hidedisabled
= parse_bool(doc
, n
);
444 n
= parse_find_node("font", node
);
448 gchar
*name
= g_strdup(RrDefaultFontFamily
);
449 gint size
= RrDefaultFontSize
;
450 RrFontWeight weight
= RrDefaultFontWeight
;
451 RrFontSlant slant
= RrDefaultFontSlant
;
453 if (parse_attr_contains("ActiveWindow", n
, "place"))
454 font
= &config_font_activewindow
;
455 else if (parse_attr_contains("InactiveWindow", n
, "place"))
456 font
= &config_font_inactivewindow
;
457 else if (parse_attr_contains("MenuTitle", n
, "place"))
458 font
= &config_font_menutitle
;
459 else if (parse_attr_contains("MenuItem", n
, "place"))
460 font
= &config_font_menuitem
;
464 if ((fnode
= parse_find_node("name", n
->children
))) {
466 name
= parse_string(doc
, fnode
);
468 if ((fnode
= parse_find_node("size", n
->children
))) {
469 int s
= parse_int(doc
, fnode
);
472 if ((fnode
= parse_find_node("weight", n
->children
))) {
473 gchar
*w
= parse_string(doc
, fnode
);
474 if (!g_ascii_strcasecmp(w
, "Bold"))
475 weight
= RR_FONTWEIGHT_BOLD
;
478 if ((fnode
= parse_find_node("slant", n
->children
))) {
479 gchar
*s
= parse_string(doc
, fnode
);
480 if (!g_ascii_strcasecmp(s
, "Italic"))
481 slant
= RR_FONTSLANT_ITALIC
;
482 if (!g_ascii_strcasecmp(s
, "Oblique"))
483 slant
= RR_FONTSLANT_OBLIQUE
;
487 *font
= RrFontOpen(ob_rr_inst
, name
, size
, weight
, slant
);
490 n
= parse_find_node("font", n
->next
);
494 static void parse_desktops(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
499 node
= node
->children
;
501 if ((n
= parse_find_node("number", node
))) {
502 gint d
= parse_int(doc
, n
);
504 config_desktops_num
= d
;
506 if ((n
= parse_find_node("firstdesk", node
))) {
507 gint d
= parse_int(doc
, n
);
509 config_screen_firstdesk
= (unsigned) d
;
511 if ((n
= parse_find_node("names", node
))) {
515 for (it
= config_desktops_names
; it
; it
= it
->next
)
517 g_slist_free(config_desktops_names
);
518 config_desktops_names
= NULL
;
520 nname
= parse_find_node("name", n
->children
);
522 config_desktops_names
= g_slist_append(config_desktops_names
,
523 parse_string(doc
, nname
));
524 nname
= parse_find_node("name", nname
->next
);
529 static void parse_resize(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
534 node
= node
->children
;
536 if ((n
= parse_find_node("drawContents", node
)))
537 config_resize_redraw
= parse_bool(doc
, n
);
538 if ((n
= parse_find_node("popupShow", node
))) {
539 config_resize_popup_show
= parse_int(doc
, n
);
540 if (parse_contains("Always", doc
, n
))
541 config_resize_popup_show
= 2;
542 else if (parse_contains("Never", doc
, n
))
543 config_resize_popup_show
= 0;
544 else if (parse_contains("Nonpixel", doc
, n
))
545 config_resize_popup_show
= 1;
547 if ((n
= parse_find_node("popupPosition", node
))) {
548 config_resize_popup_pos
= parse_int(doc
, n
);
549 if (parse_contains("Top", doc
, n
))
550 config_resize_popup_pos
= 1;
551 else if (parse_contains("Center", doc
, n
))
552 config_resize_popup_pos
= 0;
556 static void parse_dock(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
561 node
= node
->children
;
563 if ((n
= parse_find_node("position", node
))) {
564 if (parse_contains("TopLeft", doc
, n
))
565 config_dock_floating
= FALSE
,
566 config_dock_pos
= OB_DIRECTION_NORTHWEST
;
567 else if (parse_contains("Top", doc
, n
))
568 config_dock_floating
= FALSE
,
569 config_dock_pos
= OB_DIRECTION_NORTH
;
570 else if (parse_contains("TopRight", doc
, n
))
571 config_dock_floating
= FALSE
,
572 config_dock_pos
= OB_DIRECTION_NORTHEAST
;
573 else if (parse_contains("Right", doc
, n
))
574 config_dock_floating
= FALSE
,
575 config_dock_pos
= OB_DIRECTION_EAST
;
576 else if (parse_contains("BottomRight", doc
, n
))
577 config_dock_floating
= FALSE
,
578 config_dock_pos
= OB_DIRECTION_SOUTHEAST
;
579 else if (parse_contains("Bottom", doc
, n
))
580 config_dock_floating
= FALSE
,
581 config_dock_pos
= OB_DIRECTION_SOUTH
;
582 else if (parse_contains("BottomLeft", doc
, n
))
583 config_dock_floating
= FALSE
,
584 config_dock_pos
= OB_DIRECTION_SOUTHWEST
;
585 else if (parse_contains("Left", doc
, n
))
586 config_dock_floating
= FALSE
,
587 config_dock_pos
= OB_DIRECTION_WEST
;
588 else if (parse_contains("Floating", doc
, n
))
589 config_dock_floating
= TRUE
;
591 if (config_dock_floating
) {
592 if ((n
= parse_find_node("floatingX", node
)))
593 config_dock_x
= parse_int(doc
, n
);
594 if ((n
= parse_find_node("floatingY", node
)))
595 config_dock_y
= parse_int(doc
, n
);
597 if ((n
= parse_find_node("noStrut", node
)))
598 config_dock_nostrut
= parse_bool(doc
, n
);
600 if ((n
= parse_find_node("stacking", node
))) {
601 if (parse_contains("top", doc
, n
))
602 config_dock_layer
= OB_STACKING_LAYER_ABOVE
;
603 else if (parse_contains("normal", doc
, n
))
604 config_dock_layer
= OB_STACKING_LAYER_NORMAL
;
605 else if (parse_contains("bottom", doc
, n
))
606 config_dock_layer
= OB_STACKING_LAYER_BELOW
;
608 if ((n
= parse_find_node("direction", node
))) {
609 if (parse_contains("horizontal", doc
, n
))
610 config_dock_orient
= OB_ORIENTATION_HORZ
;
611 else if (parse_contains("vertical", doc
, n
))
612 config_dock_orient
= OB_ORIENTATION_VERT
;
614 if ((n
= parse_find_node("autoHide", node
)))
615 config_dock_hide
= parse_bool(doc
, n
);
616 if ((n
= parse_find_node("hideDelay", node
)))
617 config_dock_hide_delay
= parse_int(doc
, n
) * 1000;
618 if ((n
= parse_find_node("showDelay", node
)))
619 config_dock_show_delay
= parse_int(doc
, n
) * 1000;
620 if ((n
= parse_find_node("moveButton", node
))) {
621 gchar
*str
= parse_string(doc
, n
);
623 if (translate_button(str
, &s
, &b
)) {
624 config_dock_app_move_button
= b
;
625 config_dock_app_move_modifiers
= s
;
627 g_message(_("Invalid button '%s' specified in config file"), str
);
633 static void parse_menu(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
637 for (node
= node
->children
; node
; node
= node
->next
) {
638 if (!xmlStrcasecmp(node
->name
, (const xmlChar
*) "file")) {
641 c
= parse_string(doc
, node
);
642 config_menu_files
= g_slist_append(config_menu_files
,
643 parse_expand_tilde(c
));
646 if ((n
= parse_find_node("warpPointer", node
)))
647 config_menu_warppointer
= parse_bool(doc
, n
);
648 if ((n
= parse_find_node("hideDelay", node
)))
649 config_menu_hide_delay
= parse_int(doc
, n
);
650 if ((n
= parse_find_node("middle", node
)))
651 config_menu_middle
= parse_bool(doc
, n
);
652 if ((n
= parse_find_node("submenuShowDelay", node
)))
653 config_submenu_show_delay
= parse_int(doc
, n
);
654 if ((n
= parse_find_node("desktopMenuIcons", node
)))
655 config_menu_client_list_icons
= parse_bool(doc
, n
);
659 static void parse_resistance(ObParseInst
*i
, xmlDocPtr doc
, xmlNodePtr node
,
664 node
= node
->children
;
665 if ((n
= parse_find_node("strength", node
)))
666 config_resist_win
= parse_int(doc
, n
);
667 if ((n
= parse_find_node("screen_edge_strength", node
)))
668 config_resist_edge
= parse_int(doc
, n
);
669 if ((n
= parse_find_node("edges_hit_layers_below", node
)))
670 config_resist_layers_below
= parse_bool(doc
, n
);
676 const gchar
*actname
;
679 static void bind_default_keyboard()
682 ObDefKeyBind binds
[] = {
683 { "A-Tab", "NextWindow" },
684 { "S-A-Tab", "PreviousWindow" },
689 for (it
= binds
; it
->key
; ++it
) {
690 GList
*l
= g_list_append(NULL
, g_strdup(it
->key
));
691 keyboard_bind(l
, action_from_string(it
->actname
,
692 OB_USER_ACTION_KEYBOARD_KEY
));
699 const gchar
*context
;
700 const ObMouseAction mact
;
701 const gchar
*actname
;
704 static void bind_default_mouse()
707 ObDefMouseBind binds
[] = {
708 { "Left", "Client", OB_MOUSE_ACTION_PRESS
, "Focus" },
709 { "Middle", "Client", OB_MOUSE_ACTION_PRESS
, "Focus" },
710 { "Right", "Client", OB_MOUSE_ACTION_PRESS
, "Focus" },
711 { "Left", "Desktop", OB_MOUSE_ACTION_PRESS
, "Focus" },
712 { "Middle", "Desktop", OB_MOUSE_ACTION_PRESS
, "Focus" },
713 { "Right", "Desktop", OB_MOUSE_ACTION_PRESS
, "Focus" },
714 { "Left", "Titlebar", OB_MOUSE_ACTION_PRESS
, "Focus" },
715 { "Left", "Handle", OB_MOUSE_ACTION_PRESS
, "Focus" },
716 { "Left", "BLCorner", OB_MOUSE_ACTION_PRESS
, "Focus" },
717 { "Left", "BRCorner", OB_MOUSE_ACTION_PRESS
, "Focus" },
718 { "Left", "TLCorner", OB_MOUSE_ACTION_PRESS
, "Focus" },
719 { "Left", "TRCorner", OB_MOUSE_ACTION_PRESS
, "Focus" },
720 { "Left", "Close", OB_MOUSE_ACTION_PRESS
, "Focus" },
721 { "Left", "Maximize", OB_MOUSE_ACTION_PRESS
, "Focus" },
722 { "Left", "Iconify", OB_MOUSE_ACTION_PRESS
, "Focus" },
723 { "Left", "Icon", OB_MOUSE_ACTION_PRESS
, "Focus" },
724 { "Left", "AllDesktops", OB_MOUSE_ACTION_PRESS
, "Focus" },
725 { "Left", "Shade", OB_MOUSE_ACTION_PRESS
, "Focus" },
726 { "Left", "Client", OB_MOUSE_ACTION_CLICK
, "Raise" },
727 { "Left", "Titlebar", OB_MOUSE_ACTION_CLICK
, "Raise" },
728 { "Middle", "Titlebar", OB_MOUSE_ACTION_CLICK
, "Lower" },
729 { "Left", "Handle", OB_MOUSE_ACTION_CLICK
, "Raise" },
730 { "Left", "BLCorner", OB_MOUSE_ACTION_CLICK
, "Raise" },
731 { "Left", "BRCorner", OB_MOUSE_ACTION_CLICK
, "Raise" },
732 { "Left", "TLCorner", OB_MOUSE_ACTION_CLICK
, "Raise" },
733 { "Left", "TRCorner", OB_MOUSE_ACTION_CLICK
, "Raise" },
734 { "Left", "Close", OB_MOUSE_ACTION_CLICK
, "Raise" },
735 { "Left", "Maximize", OB_MOUSE_ACTION_CLICK
, "Raise" },
736 { "Left", "Iconify", OB_MOUSE_ACTION_CLICK
, "Raise" },
737 { "Left", "Icon", OB_MOUSE_ACTION_CLICK
, "Raise" },
738 { "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK
, "Raise" },
739 { "Left", "Shade", OB_MOUSE_ACTION_CLICK
, "Raise" },
740 { "Left", "Close", OB_MOUSE_ACTION_CLICK
, "Close" },
741 { "Left", "Maximize", OB_MOUSE_ACTION_CLICK
, "ToggleMaximizeFull" },
742 { "Left", "Iconify", OB_MOUSE_ACTION_CLICK
, "Iconify" },
743 { "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK
, "ToggleOmnipresent" },
744 { "Left", "Shade", OB_MOUSE_ACTION_CLICK
, "ToggleShade" },
745 { "Left", "TLCorner", OB_MOUSE_ACTION_MOTION
, "Resize" },
746 { "Left", "TRCorner", OB_MOUSE_ACTION_MOTION
, "Resize" },
747 { "Left", "BLCorner", OB_MOUSE_ACTION_MOTION
, "Resize" },
748 { "Left", "BRCorner", OB_MOUSE_ACTION_MOTION
, "Resize" },
749 { "Left", "Titlebar", OB_MOUSE_ACTION_MOTION
, "Move" },
750 { "A-Left", "Frame", OB_MOUSE_ACTION_MOTION
, "Move" },
751 { "A-Middle", "Frame", OB_MOUSE_ACTION_MOTION
, "Resize" },
752 { NULL
, NULL
, 0, NULL
}
755 for (it
= binds
; it
->button
; ++it
) {
758 case OB_MOUSE_ACTION_PRESS
:
759 uact
= OB_USER_ACTION_MOUSE_PRESS
; break;
760 case OB_MOUSE_ACTION_RELEASE
:
761 uact
= OB_USER_ACTION_MOUSE_RELEASE
; break;
762 case OB_MOUSE_ACTION_CLICK
:
763 uact
= OB_USER_ACTION_MOUSE_CLICK
; break;
764 case OB_MOUSE_ACTION_DOUBLE_CLICK
:
765 uact
= OB_USER_ACTION_MOUSE_DOUBLE_CLICK
; break;
766 case OB_MOUSE_ACTION_MOTION
:
767 uact
= OB_USER_ACTION_MOUSE_MOTION
; break;
769 g_assert_not_reached();
771 mouse_bind(it
->button
, it
->context
, it
->mact
,
772 action_from_string(it
->actname
, uact
));
776 void config_startup(ObParseInst
*i
)
778 config_focus_new
= TRUE
;
779 config_focus_follow
= FALSE
;
780 config_focus_delay
= 0;
781 config_focus_raise
= FALSE
;
782 config_focus_last
= FALSE
;
784 parse_register(i
, "focus", parse_focus
, NULL
);
786 config_place_policy
= OB_PLACE_POLICY_SMART
;
788 parse_register(i
, "placement", parse_placement
, NULL
);
792 config_title_layout
= g_strdup("NLIMC");
793 config_theme_keepborder
= TRUE
;
794 config_theme_hidedisabled
= FALSE
;
796 config_font_activewindow
= NULL
;
797 config_font_inactivewindow
= NULL
;
798 config_font_menuitem
= NULL
;
799 config_font_menutitle
= NULL
;
801 parse_register(i
, "theme", parse_theme
, NULL
);
803 config_desktops_num
= 4;
804 config_screen_firstdesk
= 1;
805 config_desktops_names
= NULL
;
807 parse_register(i
, "desktops", parse_desktops
, NULL
);
809 config_resize_redraw
= TRUE
;
810 config_resize_four_corners
= FALSE
;
811 config_resize_popup_show
= 1; /* nonpixel increments */
812 config_resize_popup_pos
= 0; /* center of client */
814 parse_register(i
, "resize", parse_resize
, NULL
);
816 config_dock_layer
= OB_STACKING_LAYER_ABOVE
;
817 config_dock_pos
= OB_DIRECTION_NORTHEAST
;
818 config_dock_floating
= FALSE
;
819 config_dock_nostrut
= FALSE
;
822 config_dock_orient
= OB_ORIENTATION_VERT
;
823 config_dock_hide
= FALSE
;
824 config_dock_hide_delay
= 300;
825 config_dock_show_delay
= 300;
826 config_dock_app_move_button
= 2; /* middle */
827 config_dock_app_move_modifiers
= 0;
829 parse_register(i
, "dock", parse_dock
, NULL
);
831 translate_key("C-g", &config_keyboard_reset_state
,
832 &config_keyboard_reset_keycode
);
834 bind_default_keyboard();
836 parse_register(i
, "keyboard", parse_keyboard
, NULL
);
838 config_mouse_threshold
= 3;
839 config_mouse_dclicktime
= 200;
841 bind_default_mouse();
843 parse_register(i
, "mouse", parse_mouse
, NULL
);
845 config_resist_win
= 10;
846 config_resist_edge
= 20;
847 config_resist_layers_below
= FALSE
;
849 parse_register(i
, "resistance", parse_resistance
, NULL
);
851 config_menu_warppointer
= TRUE
;
852 config_menu_hide_delay
= 250;
853 config_menu_middle
= FALSE
;
854 config_submenu_show_delay
= 0;
855 config_menu_client_list_icons
= TRUE
;
856 config_menu_files
= NULL
;
858 parse_register(i
, "menu", parse_menu
, NULL
);
860 config_per_app_settings
= NULL
;
862 parse_register(i
, "applications", parse_per_app_settings
, NULL
);
865 void config_shutdown()
869 g_free(config_theme
);
871 g_free(config_title_layout
);
873 RrFontClose(config_font_activewindow
);
874 RrFontClose(config_font_inactivewindow
);
875 RrFontClose(config_font_menuitem
);
876 RrFontClose(config_font_menutitle
);
878 for (it
= config_desktops_names
; it
; it
= g_slist_next(it
))
880 g_slist_free(config_desktops_names
);
882 for (it
= config_menu_files
; it
; it
= g_slist_next(it
))
884 g_slist_free(config_menu_files
);
886 for (it
= config_per_app_settings
; it
; it
= g_slist_next(it
)) {
887 ObAppSettings
*itd
= (ObAppSettings
*)it
->data
;
893 g_slist_free(config_per_app_settings
);