X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fkeytree.c;h=202dd32c9864e55c1623c7b04852bbcead34e871;hb=775d5da7ade2d184dfcef5c046b8d39f91804f01;hp=e033601a307fca90157649a231292f32b9da37c1;hpb=d9f14c1d010860e658f4a9adc6682e0264b410aa;p=chaz%2Fopenbox diff --git a/openbox/keytree.c b/openbox/keytree.c index e033601a..202dd32c 100644 --- a/openbox/keytree.c +++ b/openbox/keytree.c @@ -2,7 +2,7 @@ keytree.c for the Openbox window manager Copyright (c) 2006 Mikael Magnusson - Copyright (c) 2003 Ben Jansens + Copyright (c) 2003-2007 Dana Jansens This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -52,17 +52,16 @@ KeyBindingTree *tree_build(GList *keylist) return NULL; /* nothing in the list.. */ for (it = g_list_last(keylist); it; it = g_list_previous(it)) { + GList *kit; + p = ret; ret = g_new0(KeyBindingTree, 1); - if (p == NULL) { - GList *it; - /* this is the first built node, the bottom node of the tree */ - ret->keylist = g_list_copy(keylist); /* shallow copy */ - for (it = ret->keylist; it; it = g_list_next(it)) /* deep copy */ - it->data = g_strdup(it->data); - } + for (kit = it; kit != NULL; kit = g_list_previous(kit)) + 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; @@ -93,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); } } @@ -129,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) +{ + 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) { + if (keylist->next == NULL) { + tree->chroot = TRUE; + return TRUE; + } else + return tree_chroot(tree->first_child, keylist->next); + } + } + return FALSE; +}