]> Dogcows Code - chaz/openbox/blob - openbox/config.c
aebf433fbb00516fb505c2a7ca6f17a683891ebf
[chaz/openbox] / openbox / config.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 config.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 #include "config.h"
20 #include "keyboard.h"
21 #include "mouse.h"
22 #include "prop.h"
23 #include "translate.h"
24 #include "parser/parse.h"
25 #include "openbox.h"
26
27 gboolean config_focus_new;
28 gboolean config_focus_follow;
29 guint config_focus_delay;
30 guint config_focus_raise;
31
32 char *config_theme;
33
34 gchar *config_title_layout;
35
36 int config_desktops_num;
37 GSList *config_desktops_names;
38
39 gboolean config_redraw_resize;
40
41 ObStackingLayer config_dock_layer;
42 gboolean config_dock_floating;
43 ObDirection config_dock_pos;
44 gint config_dock_x;
45 gint config_dock_y;
46 ObOrientation config_dock_orient;
47 gboolean config_dock_hide;
48 guint config_dock_hide_delay;
49 guint config_dock_app_move_button;
50 guint config_dock_app_move_modifiers;
51
52 guint config_keyboard_reset_keycode;
53 guint config_keyboard_reset_state;
54
55 gint config_mouse_threshold;
56 gint config_mouse_dclicktime;
57
58 gboolean config_dialog_focus;
59 gboolean config_dialog_desktop;
60
61 GSList *config_menu_files;
62
63 gint config_resist_win;
64 gint config_resist_edge;
65
66 /*
67
68 <keybind key="C-x">
69 <action name="ChangeDesktop">
70 <desktop>3</desktop>
71 </action>
72 </keybind>
73
74 */
75
76 static void parse_key(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
77 GList *keylist)
78 {
79 char *key;
80 ObAction *action;
81 xmlNodePtr n, nact;
82 GList *it;
83
84 if ((n = parse_find_node("chainQuitKey", node))) {
85 key = parse_string(doc, n);
86 translate_key(key, &config_keyboard_reset_state,
87 &config_keyboard_reset_keycode);
88 g_free(key);
89 }
90
91 n = parse_find_node("keybind", node);
92 while (n) {
93 if (parse_attr_string("key", n, &key)) {
94 keylist = g_list_append(keylist, key);
95
96 parse_key(i, doc, n->children, keylist);
97
98 it = g_list_last(keylist);
99 g_free(it->data);
100 keylist = g_list_delete_link(keylist, it);
101 }
102 n = parse_find_node("keybind", n->next);
103 }
104 if (keylist) {
105 nact = parse_find_node("action", node);
106 while (nact) {
107 if ((action = action_parse(i, doc, nact,
108 OB_USER_ACTION_KEYBOARD_KEY)))
109 keyboard_bind(keylist, action);
110 nact = parse_find_node("action", nact->next);
111 }
112 }
113 }
114
115 static void parse_keyboard(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
116 void *d)
117 {
118 keyboard_unbind_all();
119
120 parse_key(i, doc, node->children, NULL);
121 }
122
123 /*
124
125 <context name="Titlebar">
126 <mousebind button="Left" action="Press">
127 <action name="Raise"></action>
128 </mousebind>
129 </context>
130
131 */
132
133 static void parse_mouse(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
134 void *d)
135 {
136 xmlNodePtr n, nbut, nact;
137 char *buttonstr;
138 char *contextstr;
139 ObUserAction uact;
140 ObMouseAction mact;
141 ObAction *action;
142
143 mouse_unbind_all();
144
145 node = node->children;
146
147 if ((n = parse_find_node("dragThreshold", node)))
148 config_mouse_threshold = parse_int(doc, n);
149 if ((n = parse_find_node("doubleClickTime", node)))
150 config_mouse_dclicktime = parse_int(doc, n);
151
152 n = parse_find_node("context", node);
153 while (n) {
154 if (!parse_attr_string("name", n, &contextstr))
155 goto next_n;
156 nbut = parse_find_node("mousebind", n->children);
157 while (nbut) {
158 if (!parse_attr_string("button", nbut, &buttonstr))
159 goto next_nbut;
160 if (parse_attr_contains("press", nbut, "action")) {
161 uact = OB_USER_ACTION_MOUSE_PRESS;
162 mact = OB_MOUSE_ACTION_PRESS;
163 } else if (parse_attr_contains("release", nbut, "action")) {
164 uact = OB_USER_ACTION_MOUSE_RELEASE;
165 mact = OB_MOUSE_ACTION_RELEASE;
166 } else if (parse_attr_contains("click", nbut, "action")) {
167 uact = OB_USER_ACTION_MOUSE_CLICK;
168 mact = OB_MOUSE_ACTION_CLICK;
169 } else if (parse_attr_contains("doubleclick", nbut,"action")) {
170 uact = OB_USER_ACTION_MOUSE_DOUBLE_CLICK;
171 mact = OB_MOUSE_ACTION_DOUBLE_CLICK;
172 } else if (parse_attr_contains("drag", nbut, "action")) {
173 uact = OB_USER_ACTION_MOUSE_MOTION;
174 mact = OB_MOUSE_ACTION_MOTION;
175 } else
176 goto next_nbut;
177 nact = parse_find_node("action", nbut->children);
178 while (nact) {
179 if ((action = action_parse(i, doc, nact, uact)))
180 mouse_bind(buttonstr, contextstr, mact, action);
181 nact = parse_find_node("action", nact->next);
182 }
183 g_free(buttonstr);
184 next_nbut:
185 nbut = parse_find_node("mousebind", nbut->next);
186 }
187 g_free(contextstr);
188 next_n:
189 n = parse_find_node("context", n->next);
190 }
191 }
192
193 static void parse_focus(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
194 void *d)
195 {
196 xmlNodePtr n;
197
198 node = node->children;
199
200 if ((n = parse_find_node("focusNew", node)))
201 config_focus_new = parse_bool(doc, n);
202 if ((n = parse_find_node("followMouse", node)))
203 config_focus_follow = parse_bool(doc, n);
204 if ((n = parse_find_node("focusDelay", node)))
205 config_focus_delay = parse_int(doc, n) * 1000;
206 if ((n = parse_find_node("raiseOnFocus", node)))
207 config_focus_raise = parse_bool(doc, n);
208 }
209
210 static void parse_theme(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
211 void *d)
212 {
213 xmlNodePtr n;
214
215 node = node->children;
216
217 if ((n = parse_find_node("name", node))) {
218 gchar *c;
219
220 g_free(config_theme);
221 c = parse_string(doc, n);
222 config_theme = parse_expand_tilde(c);
223 g_free(c);
224 }
225 if ((n = parse_find_node("titleLayout", node))) {
226 g_free(config_title_layout);
227 config_title_layout = parse_string(doc, n);
228 }
229 }
230
231 static void parse_desktops(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
232 void *d)
233 {
234 xmlNodePtr n;
235
236 node = node->children;
237
238 if ((n = parse_find_node("number", node))) {
239 guint d = parse_int(doc, n);
240 if (d > 0)
241 config_desktops_num = d;
242 }
243 if ((n = parse_find_node("names", node))) {
244 GSList *it;
245 xmlNodePtr nname;
246
247 for (it = config_desktops_names; it; it = it->next)
248 g_free(it->data);
249 g_slist_free(config_desktops_names);
250 config_desktops_names = NULL;
251
252 nname = parse_find_node("name", n->children);
253 while (nname) {
254 config_desktops_names = g_slist_append(config_desktops_names,
255 parse_string(doc, nname));
256 nname = parse_find_node("name", nname->next);
257 }
258 }
259 }
260
261 static void parse_resize(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
262 void *d)
263 {
264 xmlNodePtr n;
265
266 node = node->children;
267
268 if ((n = parse_find_node("drawContents", node)))
269 config_redraw_resize = parse_bool(doc, n);
270 }
271
272 static void parse_dock(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, void *d)
273 {
274 xmlNodePtr n;
275
276 node = node->children;
277
278 if ((n = parse_find_node("position", node))) {
279 if (parse_contains("TopLeft", doc, n))
280 config_dock_floating = FALSE,
281 config_dock_pos = OB_DIRECTION_NORTHWEST;
282 else if (parse_contains("Top", doc, n))
283 config_dock_floating = FALSE,
284 config_dock_pos = OB_DIRECTION_NORTH;
285 else if (parse_contains("TopRight", doc, n))
286 config_dock_floating = FALSE,
287 config_dock_pos = OB_DIRECTION_NORTHEAST;
288 else if (parse_contains("Right", doc, n))
289 config_dock_floating = FALSE,
290 config_dock_pos = OB_DIRECTION_EAST;
291 else if (parse_contains("BottomRight", doc, n))
292 config_dock_floating = FALSE,
293 config_dock_pos = OB_DIRECTION_SOUTHEAST;
294 else if (parse_contains("Bottom", doc, n))
295 config_dock_floating = FALSE,
296 config_dock_pos = OB_DIRECTION_SOUTH;
297 else if (parse_contains("BottomLeft", doc, n))
298 config_dock_floating = FALSE,
299 config_dock_pos = OB_DIRECTION_SOUTHWEST;
300 else if (parse_contains("Left", doc, n))
301 config_dock_floating = FALSE,
302 config_dock_pos = OB_DIRECTION_WEST;
303 else if (parse_contains("Floating", doc, n))
304 config_dock_floating = TRUE;
305 }
306 if (config_dock_floating) {
307 if ((n = parse_find_node("floatingX", node)))
308 config_dock_x = parse_int(doc, n);
309 if ((n = parse_find_node("floatingY", node)))
310 config_dock_y = parse_int(doc, n);
311 }
312 if ((n = parse_find_node("stacking", node))) {
313 if (parse_contains("top", doc, n))
314 config_dock_layer = OB_STACKING_LAYER_TOP;
315 else if (parse_contains("normal", doc, n))
316 config_dock_layer = OB_STACKING_LAYER_NORMAL;
317 else if (parse_contains("bottom", doc, n))
318 config_dock_layer = OB_STACKING_LAYER_BELOW;
319 }
320 if ((n = parse_find_node("direction", node))) {
321 if (parse_contains("horizontal", doc, n))
322 config_dock_orient = OB_ORIENTATION_HORZ;
323 else if (parse_contains("vertical", doc, n))
324 config_dock_orient = OB_ORIENTATION_VERT;
325 }
326 if ((n = parse_find_node("autoHide", node)))
327 config_dock_hide = parse_bool(doc, n);
328 if ((n = parse_find_node("hideDelay", node)))
329 config_dock_hide_delay = parse_int(doc, n) * 1000;
330 if ((n = parse_find_node("moveButton", node))) {
331 gchar *str = parse_string(doc, n);
332 guint b, s;
333 if (translate_button(str, &s, &b)) {
334 config_dock_app_move_button = b;
335 config_dock_app_move_modifiers = s;
336 } else {
337 g_warning("invalid button '%s'", str);
338 }
339 g_free(str);
340 }
341 }
342
343 static void parse_menu(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, void *d)
344 {
345 for (node = node->children; node; node = node->next) {
346 if (!xmlStrcasecmp(node->name, (const xmlChar*) "file")) {
347 gchar *c;
348
349 c = parse_string(doc, node);
350 config_menu_files = g_slist_append(config_menu_files,
351 parse_expand_tilde(c));
352 g_free(c);
353 }
354 }
355 }
356
357 static void parse_resistance(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
358 void *d)
359 {
360 xmlNodePtr n;
361
362 node = node->children;
363 if ((n = parse_find_node("strength", node)))
364 config_resist_win = parse_int(doc, n);
365 if ((n = parse_find_node("screen_edge_strength", node)))
366 config_resist_edge = parse_int(doc, n);
367 }
368
369 typedef struct
370 {
371 const gchar *key;
372 const gchar *actname;
373 } ObDefKeyBind;
374
375 static void bind_default_keyboard()
376 {
377 ObDefKeyBind *it;
378 ObDefKeyBind binds[] = {
379 { "A-Tab", "NextWindow" },
380 { "S-A-Tab", "PreviousWindow" },
381 { "A-F4", "Close" },
382 { NULL, NULL }
383 };
384
385 for (it = binds; it->key; ++it) {
386 GList *l = g_list_append(NULL, g_strdup(it->key));
387 keyboard_bind(l, action_from_string(it->actname,
388 OB_USER_ACTION_KEYBOARD_KEY));
389 }
390 }
391
392 typedef struct
393 {
394 const gchar *button;
395 const gchar *context;
396 const ObMouseAction mact;
397 const gchar *actname;
398 } ObDefMouseBind;
399
400 static void bind_default_mouse()
401 {
402 ObDefMouseBind *it;
403 ObDefMouseBind binds[] = {
404 { "Left", "Client", OB_MOUSE_ACTION_PRESS, "Focus" },
405 { "Middle", "Client", OB_MOUSE_ACTION_PRESS, "Focus" },
406 { "Right", "Client", OB_MOUSE_ACTION_PRESS, "Focus" },
407 { "Left", "Desktop", OB_MOUSE_ACTION_PRESS, "Focus" },
408 { "Middle", "Desktop", OB_MOUSE_ACTION_PRESS, "Focus" },
409 { "Right", "Desktop", OB_MOUSE_ACTION_PRESS, "Focus" },
410 { "Left", "Titlebar", OB_MOUSE_ACTION_PRESS, "Focus" },
411 { "Left", "Handle", OB_MOUSE_ACTION_PRESS, "Focus" },
412 { "Left", "BLCorner", OB_MOUSE_ACTION_PRESS, "Focus" },
413 { "Left", "BRCorner", OB_MOUSE_ACTION_PRESS, "Focus" },
414 { "Left", "TLCorner", OB_MOUSE_ACTION_PRESS, "Focus" },
415 { "Left", "TRCorner", OB_MOUSE_ACTION_PRESS, "Focus" },
416 { "Left", "Close", OB_MOUSE_ACTION_PRESS, "Focus" },
417 { "Left", "Maximize", OB_MOUSE_ACTION_PRESS, "Focus" },
418 { "Left", "Iconify", OB_MOUSE_ACTION_PRESS, "Focus" },
419 { "Left", "Icon", OB_MOUSE_ACTION_PRESS, "Focus" },
420 { "Left", "AllDesktops", OB_MOUSE_ACTION_PRESS, "Focus" },
421 { "Left", "Shade", OB_MOUSE_ACTION_PRESS, "Focus" },
422 { "Left", "Client", OB_MOUSE_ACTION_CLICK, "Raise" },
423 { "Left", "Titlebar", OB_MOUSE_ACTION_CLICK, "Raise" },
424 { "Middle", "Titlebar", OB_MOUSE_ACTION_CLICK, "Lower" },
425 { "Left", "Handle", OB_MOUSE_ACTION_CLICK, "Raise" },
426 { "Left", "BLCorner", OB_MOUSE_ACTION_CLICK, "Raise" },
427 { "Left", "BRCorner", OB_MOUSE_ACTION_CLICK, "Raise" },
428 { "Left", "TLCorner", OB_MOUSE_ACTION_CLICK, "Raise" },
429 { "Left", "TRCorner", OB_MOUSE_ACTION_CLICK, "Raise" },
430 { "Left", "Close", OB_MOUSE_ACTION_CLICK, "Raise" },
431 { "Left", "Maximize", OB_MOUSE_ACTION_CLICK, "Raise" },
432 { "Left", "Iconify", OB_MOUSE_ACTION_CLICK, "Raise" },
433 { "Left", "Icon", OB_MOUSE_ACTION_CLICK, "Raise" },
434 { "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK, "Raise" },
435 { "Left", "Shade", OB_MOUSE_ACTION_CLICK, "Raise" },
436 { "Left", "Close", OB_MOUSE_ACTION_CLICK, "Close" },
437 { "Left", "Maximize", OB_MOUSE_ACTION_CLICK, "ToggleMaximizeFull" },
438 { "Left", "Iconify", OB_MOUSE_ACTION_CLICK, "Iconify" },
439 { "Left", "AllDesktops", OB_MOUSE_ACTION_CLICK, "ToggleOmnipresent" },
440 { "Left", "Shade", OB_MOUSE_ACTION_CLICK, "ToggleShade" },
441 { "Left", "TLCorner", OB_MOUSE_ACTION_MOTION, "Resize" },
442 { "Left", "TRCorner", OB_MOUSE_ACTION_MOTION, "Resize" },
443 { "Left", "BLCorner", OB_MOUSE_ACTION_MOTION, "Resize" },
444 { "Left", "BRCorner", OB_MOUSE_ACTION_MOTION, "Resize" },
445 { "Left", "Titlebar", OB_MOUSE_ACTION_MOTION, "Move" },
446 { "A-Left", "Frame", OB_MOUSE_ACTION_MOTION, "Move" },
447 { "A-Middle", "Frame", OB_MOUSE_ACTION_MOTION, "Resize" },
448 { NULL, NULL, 0, NULL }
449 };
450
451 for (it = binds; it->button; ++it) {
452 ObUserAction uact;
453 switch (it->mact) {
454 case OB_MOUSE_ACTION_PRESS:
455 uact = OB_USER_ACTION_MOUSE_PRESS; break;
456 case OB_MOUSE_ACTION_RELEASE:
457 uact = OB_USER_ACTION_MOUSE_RELEASE; break;
458 case OB_MOUSE_ACTION_CLICK:
459 uact = OB_USER_ACTION_MOUSE_CLICK; break;
460 case OB_MOUSE_ACTION_DOUBLE_CLICK:
461 uact = OB_USER_ACTION_MOUSE_DOUBLE_CLICK; break;
462 case OB_MOUSE_ACTION_MOTION:
463 uact = OB_USER_ACTION_MOUSE_MOTION; break;
464 case OB_NUM_MOUSE_ACTIONS:
465 g_assert_not_reached();
466 }
467 mouse_bind(it->button, it->context, it->mact,
468 action_from_string(it->actname, uact));
469 }
470 }
471
472 void config_startup(ObParseInst *i)
473 {
474 config_focus_new = TRUE;
475 config_focus_follow = FALSE;
476 config_focus_delay = 0;
477 config_focus_raise = FALSE;
478
479 parse_register(i, "focus", parse_focus, NULL);
480
481 config_theme = NULL;
482
483 config_title_layout = g_strdup("NLIMC");
484
485 parse_register(i, "theme", parse_theme, NULL);
486
487 config_desktops_num = 4;
488 config_desktops_names = NULL;
489
490 parse_register(i, "desktops", parse_desktops, NULL);
491
492 config_redraw_resize = TRUE;
493
494 parse_register(i, "resize", parse_resize, NULL);
495
496 config_dock_layer = OB_STACKING_LAYER_TOP;
497 config_dock_pos = OB_DIRECTION_NORTHEAST;
498 config_dock_floating = FALSE;
499 config_dock_x = 0;
500 config_dock_y = 0;
501 config_dock_orient = OB_ORIENTATION_VERT;
502 config_dock_hide = FALSE;
503 config_dock_hide_delay = 300;
504 config_dock_app_move_button = 2; /* middle */
505 config_dock_app_move_modifiers = 0;
506
507 parse_register(i, "dock", parse_dock, NULL);
508
509 translate_key("C-g", &config_keyboard_reset_state,
510 &config_keyboard_reset_keycode);
511
512 bind_default_keyboard();
513
514 parse_register(i, "keyboard", parse_keyboard, NULL);
515
516 config_mouse_threshold = 3;
517 config_mouse_dclicktime = 200;
518
519 bind_default_mouse();
520
521 parse_register(i, "mouse", parse_mouse, NULL);
522
523 config_resist_win = 10;
524 config_resist_edge = 20;
525
526 parse_register(i, "resistance", parse_resistance, NULL);
527
528 config_menu_files = NULL;
529
530 parse_register(i, "menu", parse_menu, NULL);
531 }
532
533 void config_shutdown()
534 {
535 GSList *it;
536
537 g_free(config_theme);
538
539 g_free(config_title_layout);
540
541 for (it = config_desktops_names; it; it = g_slist_next(it))
542 g_free(it->data);
543 g_slist_free(config_desktops_names);
544
545 for (it = config_menu_files; it; it = g_slist_next(it))
546 g_free(it->data);
547 g_slist_free(config_menu_files);
548 }
This page took 0.056083 seconds and 3 git commands to generate.