summaryrefslogtreecommitdiff
path: root/openbox/keytree.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-04-26 01:25:52 +0000
committerDana Jansens <danakj@orodu.net>2007-04-26 01:25:52 +0000
commitb6d2529acb6e31efbf8c7791e44905a1712da891 (patch)
tree752bd615f53234488500bdc655d08ad26f4f2647 /openbox/keytree.c
parent1ee98f4a47e67b653057a62171a0993b80f81f8e (diff)
add chrooting. use chroot="true" on the chroot location
Diffstat (limited to 'openbox/keytree.c')
-rw-r--r--openbox/keytree.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/openbox/keytree.c b/openbox/keytree.c
index b41b1cf7..b26a4da7 100644
--- a/openbox/keytree.c
+++ b/openbox/keytree.c
@@ -61,6 +61,7 @@ KeyBindingTree *tree_build(GList *keylist)
ret->keylist = g_list_prepend(ret->keylist,
g_strdup(kit->data)); /* deep copy */
ret->first_child = p;
+ if (p != NULL) p->parent = ret;
if (!translate_key(it->data, &ret->state, &ret->key)) {
tree_destroy(ret);
return NULL;
@@ -91,10 +92,12 @@ void tree_assimilate(KeyBindingTree *node)
a = a->first_child;
}
}
- if (!(last->state == b->state && last->key == b->key))
+ if (!(last->state == b->state && last->key == b->key)) {
last->next_sibling = b;
- else {
+ b->parent = last->parent;
+ } else {
last->first_child = b->first_child;
+ last->first_child->parent = last;
g_free(b);
}
}
@@ -127,3 +130,20 @@ KeyBindingTree *tree_find(KeyBindingTree *search, gboolean *conflict)
}
return NULL; /* it just isn't in here */
}
+
+gboolean tree_chroot(KeyBindingTree *tree, GList *keylist)
+{
+ if (keylist == NULL) {
+ tree->chroot = TRUE;
+ return TRUE;
+ } else {
+ guint key, state;
+ if (translate_key(keylist->data, &state, &key)) {
+ while (tree != NULL && !(tree->state == state && tree->key == key))
+ tree = tree->next_sibling;
+ if (tree != NULL)
+ return tree_chroot(tree, keylist->next);
+ }
+ }
+ return FALSE;
+}