X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=plugins%2Fkeyboard%2Fkeyboard.c;h=5ffb3ef5f81ded134435c53c63434d4474d294ec;hb=221415e97c2279e0245d643f120b6558af72879e;hp=45b93ac434d6082f21d0009a2dc546e7aa36a83a;hpb=276b2be581c6cb138b439537761ff2ca42201805;p=chaz%2Fopenbox diff --git a/plugins/keyboard/keyboard.c b/plugins/keyboard/keyboard.c index 45b93ac4..5ffb3ef5 100644 --- a/plugins/keyboard/keyboard.c +++ b/plugins/keyboard/keyboard.c @@ -1,9 +1,11 @@ #include "kernel/focus.h" +#include "kernel/screen.h" #include "kernel/frame.h" #include "kernel/dispatch.h" #include "kernel/openbox.h" #include "kernel/event.h" #include "kernel/grab.h" +#include "kernel/client.h" #include "kernel/action.h" #include "kernel/prop.h" #include "kernel/timer.h" @@ -79,7 +81,7 @@ KeyBindingTree *firstnode = NULL; static KeyBindingTree *curpos; static guint reset_key, reset_state; -static Timer *chain_timer; +static ObTimer *chain_timer; static void grab_for_window(Window win, gboolean grab) { @@ -102,9 +104,9 @@ static void grab_keys(gboolean grab) { GList *it; - grab_for_window(focus_backup, grab); + grab_for_window(screen_support_win, grab); for (it = client_list; it; it = g_list_next(it)) - grab_for_window(((Client*)it->data)->frame->window, grab); + grab_for_window(((ObClient*)it->data)->frame->window, grab); } static void reset_chains() @@ -237,6 +239,11 @@ static void event(ObEvent *e, void *foo) act->data.cycle.cancel = FALSE; } + if (act->func == action_moveresize) { + screen_pointer_pos(&act->data.moveresize.x, + &act->data.moveresize.y); + } + if (act->func == action_cycle_windows && !grabbed_key && grab_keyboard(TRUE)) { grabbed_key = p;