2003-03-18 08:38:33 +00:00
|
|
|
#ifndef __plugin_keyboard_keybaord_h
|
|
|
|
#define __plugin_keyboard_keybaord_h
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2003-03-19 04:16:19 +00:00
|
|
|
#include "../../kernel/action.h"
|
|
|
|
|
2003-03-18 08:38:33 +00:00
|
|
|
typedef struct KeyBindingTree {
|
|
|
|
guint state;
|
|
|
|
guint key;
|
|
|
|
GList *keylist;
|
2003-03-19 04:16:19 +00:00
|
|
|
Action *action;
|
2003-03-18 08:38:33 +00:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
extern KeyBindingTree *firstnode;
|
|
|
|
|
|
|
|
guint keyboard_translate_modifier(char *str);
|
|
|
|
|
|
|
|
#endif
|