diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-02-11 14:39:09 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-02-11 14:39:09 -0500 |
| commit | 5b6f3c6f7a0e4f1efe3c90865226f02ffa03ca9e (patch) | |
| tree | 7d3915b4cbb7fc0059a597893e0bb31a097540dc /openbox/actions.h | |
| parent | 08269cefbce2fe600269c989f9a6a22a98641ba1 (diff) | |
pass an input context to the interactive input function
Diffstat (limited to 'openbox/actions.h')
| -rw-r--r-- | openbox/actions.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/openbox/actions.h b/openbox/actions.h index a56ece39..e03bc577 100644 --- a/openbox/actions.h +++ b/openbox/actions.h @@ -19,6 +19,7 @@ #include "misc.h" #include "frame.h" #include "obt/xml.h" +#include "obt/keyboard.h" #include <glib.h> #include <X11/Xlib.h> @@ -43,9 +44,10 @@ typedef void (*ObActionsShutdownFunc)(void); typedef gboolean (*ObActionsIPreFunc)(guint initial_state, gpointer options); typedef void (*ObActionsIPostFunc)(gpointer options); typedef gboolean (*ObActionsIInputFunc)(guint initial_state, - XEvent *e, - gpointer options, - gboolean *used); + XEvent *e, + ObtIC *ic, + gpointer options, + gboolean *used); typedef void (*ObActionsICancelFunc)(gpointer options); typedef gpointer (*ObActionsIDataSetupFunc)(xmlNodePtr node, ObActionsIPreFunc *pre, |
