summaryrefslogtreecommitdiff
path: root/plugins/keyboard/tree.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-12 07:27:19 +0000
committerDana Jansens <danakj@orodu.net>2003-08-12 07:27:19 +0000
commita414fe42d4654c4c76e344e5bfe0d5838f24da1e (patch)
tree8c76673a39e4bc4cc0bf378a1e27743cc4d38a49 /plugins/keyboard/tree.h
parentc90da6da781932c2d178bfb7e39ec1d5003543b7 (diff)
remove the keyboard plugin shit
Diffstat (limited to 'plugins/keyboard/tree.h')
-rw-r--r--plugins/keyboard/tree.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/keyboard/tree.h b/plugins/keyboard/tree.h
deleted file mode 100644
index aefb2565..00000000
--- a/plugins/keyboard/tree.h
+++ /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