]> Dogcows Code - chaz/openbox/blobdiff - plugins/keyboard/tree.h
remove the keyboard plugin shit
[chaz/openbox] / plugins / keyboard / tree.h
diff --git a/plugins/keyboard/tree.h b/plugins/keyboard/tree.h
deleted file mode 100644 (file)
index aefb256..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef __plugin_keyboard_tree_h
-#define __plugin_keyboard_tree_h
-
-#include "../../kernel/action.h"
-#include <glib.h>
-
-typedef struct KeyBindingTree {
-    guint state;
-    guint key;
-    GList *keylist;
-    GSList *actions; /* list of Action pointers */
-
-    /* the next binding in the tree at the same level */
-    struct KeyBindingTree *next_sibling; 
-    /* the first child of this binding (next binding in a chained sequence).*/
-    struct KeyBindingTree *first_child;
-} KeyBindingTree;
-
-void tree_destroy(KeyBindingTree *tree);
-KeyBindingTree *tree_build(GList *keylist);
-void tree_assimilate(KeyBindingTree *node);
-KeyBindingTree *tree_find(KeyBindingTree *search, gboolean *conflict);
-
-#endif
This page took 0.0217 seconds and 4 git commands to generate.