]>
Dogcows Code - chaz/openbox/blob - openbox/keytree.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 keytree.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.
21 #include "translate.h"
25 void tree_destroy(KeyBindingTree
*tree
)
30 tree_destroy(tree
->next_sibling
);
31 c
= tree
->first_child
;
35 for (it
= tree
->keylist
; it
!= NULL
; it
= it
->next
)
37 g_list_free(tree
->keylist
);
38 for (sit
= tree
->actions
; sit
!= NULL
; sit
= sit
->next
)
39 actions_act_unref(sit
->data
);
40 g_slist_free(tree
->actions
);
47 KeyBindingTree
*tree_build(GList
*keylist
)
50 KeyBindingTree
*ret
= NULL
, *p
;
52 if (g_list_length(keylist
) <= 0)
53 return NULL
; /* nothing in the list.. */
55 for (it
= g_list_last(keylist
); it
; it
= g_list_previous(it
)) {
59 ret
= g_new0(KeyBindingTree
, 1);
61 for (kit
= it
; kit
!= NULL
; kit
= g_list_previous(kit
))
62 ret
->keylist
= g_list_prepend(ret
->keylist
,
63 g_strdup(kit
->data
)); /* deep copy */
65 if (p
!= NULL
) p
->parent
= ret
;
66 if (!translate_key(it
->data
, &ret
->state
, &ret
->key
)) {
74 void tree_assimilate(KeyBindingTree
*node
)
76 KeyBindingTree
*a
, *b
, *tmp
, *last
;
78 if (keyboard_firstnode
== NULL
) {
79 /* there are no nodes at this level yet */
80 keyboard_firstnode
= node
;
82 a
= keyboard_firstnode
;
87 if (!(a
->state
== b
->state
&& a
->key
== b
->key
)) {
96 if (!(last
->state
== b
->state
&& last
->key
== b
->key
)) {
97 last
->next_sibling
= b
;
98 b
->parent
= last
->parent
;
100 last
->first_child
= b
->first_child
;
101 last
->first_child
->parent
= last
;
107 KeyBindingTree
*tree_find(KeyBindingTree
*search
, gboolean
*conflict
)
109 KeyBindingTree
*a
, *b
;
113 a
= keyboard_firstnode
;
116 if (!(a
->state
== b
->state
&& a
->key
== b
->key
)) {
119 if ((a
->first_child
== NULL
) == (b
->first_child
== NULL
)) {
120 if (a
->first_child
== NULL
) {
121 /* found it! (return the actual node, not the search's) */
126 return NULL
; /* the chain status' don't match (conflict!) */
132 return NULL
; /* it just isn't in here */
135 gboolean
tree_chroot(KeyBindingTree
*tree
, GList
*keylist
)
138 if (translate_key(keylist
->data
, &state
, &key
)) {
139 while (tree
!= NULL
&& !(tree
->state
== state
&& tree
->key
== key
))
140 tree
= tree
->next_sibling
;
142 if (keylist
->next
== NULL
) {
146 return tree_chroot(tree
->first_child
, keylist
->next
);
This page took 0.04496 seconds and 4 git commands to generate.