all repos — openbox @ 515f8d8760f614b127b4435dca7881a32b5b6207

openbox fork - make it a bit more like ryudo

plugins/keyboard/keyboard.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __plugin_keyboard_keybaord_h
#define __plugin_keyboard_keybaord_h

#include <glib.h>

#include "../../kernel/action.h"

typedef struct KeyBindingTree {
    guint state;
    guint key;
    GList *keylist;
    Action *action;

    /* 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