]> Pileus Git - wmpus/blobdiff - sys-win32.c
Resend mouse events instead of toggling grabs
[wmpus] / sys-win32.c
index 04e4ef4e52d75978520751034339291d9f431d0a..34d5c508bd062b77b508b1b3772b18c09cbaf7b5 100644 (file)
@@ -1,18 +1,16 @@
 /*
- * Copyright (C) 2011 Andy Spencer <andy753421@gmail.com>
- * 
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * Copyright (c) 2011, Andy Spencer <andy753421@gmail.com>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  */
 
 #include <stdio.h>
 #include <search.h>
 
 #define WIN32_LEAN_AND_MEAN
-#define _WIN32_WINNT 0x0500
+#define _WIN32_WINNT 0x0501
 #include <windows.h>
 #include <winbase.h>
 #include <winuser.h>
 
 #include "util.h"
+#include "conf.h"
 #include "sys.h"
 #include "wm.h"
 
+/* Configuration */
+static int no_capture = 0;
+static int stack      = 25;
+
 /* Internal structures */
 struct win_sys {
        HWND hwnd;
-       state_t state;
 };
 
 typedef struct {
-       Key_t key;
-       int   vk;
-} keymap_t;
+       event_t ev;
+       int     vk;
+} event_map_t;
 
 /* Global data */
-static int    shellhookid;
-static void  *cache;
-static win_t *root;
+static int     shellhookid;
+static void   *cache;
+static win_t  *root;
+static list_t *screens;
 
 /* Conversion functions */
-static keymap_t key2vk[] = {
-       {key_mouse1  , VK_LBUTTON },
-       {key_mouse2  , VK_MBUTTON },
-       {key_mouse3  , VK_RBUTTON },
-       {key_left    , VK_LEFT    },
-       {key_right   , VK_RIGHT   },
-       {key_up      , VK_UP      },
-       {key_down    , VK_DOWN    },
-       {key_home    , VK_HOME    },
-       {key_end     , VK_END     },
-       {key_pageup  , VK_PRIOR   },
-       {key_pagedown, VK_NEXT    },
-       {key_f1      , VK_F1      },
-       {key_f2      , VK_F2      },
-       {key_f3      , VK_F3      },
-       {key_f4      , VK_F4      },
-       {key_f5      , VK_F5      },
-       {key_f6      , VK_F6      },
-       {key_f7      , VK_F7      },
-       {key_f8      , VK_F8      },
-       {key_f9      , VK_F9      },
-       {key_f10     , VK_F10     },
-       {key_f11     , VK_F11     },
-       {key_f12     , VK_F12     },
-       {key_shift   , VK_SHIFT   },
-       {key_shift   , VK_LSHIFT  },
-       {key_shift   , VK_RSHIFT  },
-       {key_ctrl    , VK_CONTROL },
-       {key_ctrl    , VK_LCONTROL},
-       {key_ctrl    , VK_RCONTROL},
-       {key_alt     , VK_MENU    },
-       {key_alt     , VK_LMENU   },
-       {key_alt     , VK_RMENU   },
-       {key_win     , VK_LWIN    },
-       {key_win     , VK_RWIN    },
+static event_map_t ev2vk[] = {
+       {EV_MOUSE1  , VK_LBUTTON },
+       {EV_MOUSE2  , VK_MBUTTON },
+       {EV_MOUSE3  , VK_RBUTTON },
+       {EV_LEFT    , VK_LEFT    },
+       {EV_RIGHT   , VK_RIGHT   },
+       {EV_UP      , VK_UP      },
+       {EV_DOWN    , VK_DOWN    },
+       {EV_HOME    , VK_HOME    },
+       {EV_END     , VK_END     },
+       {EV_PAGEUP  , VK_PRIOR   },
+       {EV_PAGEDOWN, VK_NEXT    },
+       {EV_F1      , VK_F1      },
+       {EV_F2      , VK_F2      },
+       {EV_F3      , VK_F3      },
+       {EV_F4      , VK_F4      },
+       {EV_F5      , VK_F5      },
+       {EV_F6      , VK_F6      },
+       {EV_F7      , VK_F7      },
+       {EV_F8      , VK_F8      },
+       {EV_F9      , VK_F9      },
+       {EV_F10     , VK_F10     },
+       {EV_F11     , VK_F11     },
+       {EV_F12     , VK_F12     },
+       {EV_SHIFT   , VK_SHIFT   },
+       {EV_SHIFT   , VK_LSHIFT  },
+       {EV_SHIFT   , VK_RSHIFT  },
+       {EV_CTRL    , VK_CONTROL },
+       {EV_CTRL    , VK_LCONTROL},
+       {EV_CTRL    , VK_RCONTROL},
+       {EV_ALT     , VK_MENU    },
+       {EV_ALT     , VK_LMENU   },
+       {EV_ALT     , VK_RMENU   },
+       {EV_WIN     , VK_LWIN    },
+       {EV_WIN     , VK_RWIN    },
 };
 
 /* - Keycodes */
-static Key_t w2key(UINT vk)
+static event_t w2ev(UINT vk)
 {
-       keymap_t *km = map_getr(key2vk,vk);
-       return km ? km->key : tolower(vk);
+       event_map_t *em = map_getr(ev2vk,vk);
+       return em ? em->ev : tolower(vk);
 }
 
-static UINT key2w(Key_t key)
+static UINT ev2w(event_t ev)
 {
-       keymap_t *km = map_get(key2vk,key);
-       return km ? km->vk : toupper(key);
+       event_map_t *em = map_get(ev2vk,ev);
+       return em ? em->vk : toupper(ev);
 }
 
 static mod_t getmod(void)
@@ -189,44 +192,44 @@ static win_t *win_focused(void)
 LRESULT CALLBACK KbdProc(int msg, WPARAM wParam, LPARAM lParam)
 {
        KBDLLHOOKSTRUCT *st = (KBDLLHOOKSTRUCT *)lParam;
-       Key_t key = w2key(st->vkCode);
+       event_t ev = w2ev(st->vkCode);
        mod_t mod = getmod();
        mod.up = !!(st->flags & 0x80);
        printf("KbdProc: %d,%x,%lx - %lx,%lx,%lx - %x,%x\n",
                        msg, wParam, lParam,
                        st->vkCode, st->scanCode, st->flags,
-                       key, mod2int(mod));
-       return wm_handle_key(win_focused() ?: root, key, mod, getptr())
+                       ev, mod2int(mod));
+       return wm_handle_event(win_focused() ?: root, ev, mod, getptr())
                || CallNextHookEx(0, msg, wParam, lParam);
 }
 
 LRESULT CALLBACK MllProc(int msg, WPARAM wParam, LPARAM lParam)
 {
-       Key_t  key = key_none;
+       event_t ev = EV_NONE;
        mod_t  mod = getmod();
        win_t *win = win_cursor();
 
        /* Update modifiers */
        switch (wParam) {
-       case WM_LBUTTONDOWN: mod.up = 0; key = key_mouse1; break;
-       case WM_LBUTTONUP:   mod.up = 1; key = key_mouse1; break;
-       case WM_RBUTTONDOWN: mod.up = 0; key = key_mouse3; break;
-       case WM_RBUTTONUP:   mod.up = 1; key = key_mouse3; break;
+       case WM_LBUTTONDOWN: mod.up = 0; ev = EV_MOUSE1; break;
+       case WM_LBUTTONUP:   mod.up = 1; ev = EV_MOUSE1; break;
+       case WM_RBUTTONDOWN: mod.up = 0; ev = EV_MOUSE3; break;
+       case WM_RBUTTONUP:   mod.up = 1; ev = EV_MOUSE3; break;
        }
 
        /* Check for focus-in/focus-out */
        static win_t *old = NULL;
        if (win && win != old) {
-               wm_handle_key(old, key_leave, mod, getptr());
-               wm_handle_key(win, key_enter, mod, getptr());
+               wm_handle_event(old, EV_LEAVE, mod, getptr());
+               wm_handle_event(win, EV_ENTER, mod, getptr());
        }
        old = win;
 
        /* Send mouse movement event */
        if (wParam == WM_MOUSEMOVE)
                return wm_handle_ptr(win_cursor(), getptr());
-       else if (key != key_none)
-               return wm_handle_key(win_cursor(), key, mod, getptr());
+       else if (ev != EV_NONE)
+               return wm_handle_event(win_cursor(), ev, mod, getptr());
        else
                return CallNextHookEx(0, msg, wParam, lParam);
 }
@@ -236,24 +239,30 @@ LRESULT CALLBACK ShlProc(int msg, WPARAM wParam, LPARAM lParam)
        HWND hwnd = (HWND)wParam;
        win_t *win = NULL;
        switch (msg) {
-       case HSHELL_WINDOWCREATED:
        case HSHELL_REDRAW:
+       case HSHELL_WINDOWCREATED:
                printf("ShlProc: %p - %s\n", hwnd, msg == HSHELL_REDRAW ?
                                "redraw" : "window created");
                if (!(win = win_find(hwnd,0)))
                        if ((win = win_find(hwnd,1)))
                                wm_insert(win);
                return 1;
+       case HSHELL_WINDOWREPLACED:
        case HSHELL_WINDOWDESTROYED:
-               printf("ShlProc: %p - window destroyed\n", hwnd);
+               printf("ShlProc: %p - %s\n", hwnd, msg == HSHELL_WINDOWREPLACED ?
+                               "window replaced" : "window destroyed");
                if ((win = win_find(hwnd,0)) &&
-                   win->sys->state == st_show) {
+                   (win->state == ST_SHOW ||
+                    win->state == ST_SHADE)) {
                        wm_remove(win);
                        win_remove(win);
                }
                return 1;
        case HSHELL_WINDOWACTIVATED:
                printf("ShlProc: %p - window activated\n", hwnd);
+               // Fake button-click (causes crazy switching)
+               //if ((win = win_find(hwnd,0)))
+               //      wm_handle_event(win, EV_MOUSE1, MOD(), getptr());
                return 0;
        default:
                printf("ShlProc: %p - unknown msg, %d\n", hwnd, msg);
@@ -286,6 +295,7 @@ BOOL CALLBACK MonProc(HMONITOR mon, HDC dc, LPRECT rect, LPARAM _screens)
        win_t *screen = new0(win_t);
        screen->x = work->left;
        screen->y = work->top;
+       screen->z = !!(info.dwFlags & MONITORINFOF_PRIMARY);
        screen->w = work->right  - work->left;
        screen->h = work->bottom - work->top;
        *screens = list_append(*screens, screen);
@@ -294,6 +304,20 @@ BOOL CALLBACK MonProc(HMONITOR mon, HDC dc, LPRECT rect, LPARAM _screens)
        return TRUE;
 }
 
+BOOL CALLBACK LoopProc(HWND hwnd, LPARAM user)
+{
+       win_t *win;
+       if ((win = win_find(hwnd,1)))
+               wm_insert(win);
+       return TRUE;
+}
+
+BOOL WINAPI CtrlProc(DWORD type)
+{
+       sys_exit();
+       return TRUE;
+}
+
 /********************
  * System functions *
  ********************/
@@ -308,12 +332,15 @@ void sys_move(win_t *win, int x, int y, int w, int h)
 void sys_raise(win_t *win)
 {
        printf("sys_raise: %p\n", win);
-       SetForegroundWindow(win->sys->hwnd);
 
-       //HWND hwnd = win->sys->hwnd;
-       //HWND top  = GetAncestor(hwnd,GA_ROOT);
-       //SetWindowPos(top, HWND_TOPMOST, 0, 0, 0, 0,
-       //              SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE);
+       /* See note in sys_focus */
+       DWORD oldId = GetWindowThreadProcessId(GetForegroundWindow(), NULL);
+       DWORD newId = GetCurrentThreadId();
+       AttachThreadInput(oldId, newId, TRUE);
+
+       SetWindowPos(win->sys->hwnd, NULL, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
+
+       AttachThreadInput(oldId, newId, FALSE);
 }
 
 void sys_focus(win_t *win)
@@ -323,11 +350,21 @@ void sys_focus(win_t *win)
        /* Windows prevents a thread from using SetForegroundInput under
         * certain circumstances and instead flashes the windows toolbar icon.
         * Attaching the thread input queues avoids this behavior */
-       DWORD oldId = GetWindowThreadProcessId(GetForegroundWindow(), NULL);
-       DWORD newId = GetWindowThreadProcessId(win->sys->hwnd,        NULL);
-       AttachThreadInput(oldId, newId, TRUE);
-       SetForegroundWindow(win->sys->hwnd);
-       AttachThreadInput(oldId, newId, FALSE);
+       HWND  fgWin = GetForegroundWindow();
+       if (fgWin == win->sys->hwnd)
+               return; // already focused
+       DWORD oldId = GetWindowThreadProcessId(fgWin, NULL);
+       DWORD newId = GetCurrentThreadId();
+       if (oldId != newId)
+               AttachThreadInput(oldId, newId, TRUE);
+
+       HWND next = GetWindow(win->sys->hwnd, GW_HWNDNEXT);
+       SetWindowPos(win->sys->hwnd, NULL, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
+       if (next)
+               SetWindowPos(win->sys->hwnd, next, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
+
+       if (oldId != newId)
+               AttachThreadInput(oldId, newId, FALSE);
 }
 
 void sys_show(win_t *win, state_t state)
@@ -336,33 +373,37 @@ void sys_show(win_t *win, state_t state)
                char *str;
                int   cmd;
        } map[] = {
-               [st_show ] {"show" , SW_SHOW    },
-               [st_full ] {"full" , SW_MAXIMIZE},
-               [st_shade] {"shade", SW_SHOW    },
-               [st_icon ] {"icon" , SW_MINIMIZE},
-               [st_hide ] {"hide" , SW_HIDE    },
+               [ST_SHOW ] {"show" , SW_SHOW    },
+               [ST_FULL ] {"full" , SW_MAXIMIZE},
+               [ST_SHADE] {"shade", SW_SHOW    },
+               [ST_ICON ] {"icon" , SW_MINIMIZE},
+               [ST_HIDE ] {"hide" , SW_HIDE    },
        };
-       win->sys->state = state;
+       if (win->state != state && win->state == ST_SHADE)
+               SetWindowRgn(win->sys->hwnd, NULL, TRUE);
+       win->state = state;
        printf("sys_show: %s\n", map[state].str);
        ShowWindow(win->sys->hwnd, map[state].cmd);
+       if (state == ST_SHADE)
+               SetWindowRgn(win->sys->hwnd, CreateRectRgn(0,0,win->w,stack), TRUE);
 }
 
-void sys_watch(win_t *win, Key_t key, mod_t mod)
+void sys_watch(win_t *win, event_t ev, mod_t mod)
 {
-       (void)key2w; // TODO
+       (void)ev2w; // TODO
        //printf("sys_watch: %p\n", win);
 }
 
-void sys_unwatch(win_t *win, Key_t key, mod_t mod)
+void sys_unwatch(win_t *win, event_t ev, mod_t mod)
 {
-       (void)key2w; // TODO
+       (void)ev2w; // TODO
        //printf("sys_unwatch: %p\n", win);
 }
 
 list_t *sys_info(win_t *win)
 {
-       list_t *screens = NULL;
-       EnumDisplayMonitors(NULL, NULL, MonProc, (LPARAM)&screens);
+       if (screens == NULL)
+               EnumDisplayMonitors(NULL, NULL, MonProc, (LPARAM)&screens);
        return screens;
 }
 
@@ -371,6 +412,10 @@ win_t *sys_init(void)
        HINSTANCE hInst = GetModuleHandle(NULL);
        HWND      hwnd  = NULL;
 
+       /* Load configuration */
+       no_capture = conf_get_int("main.no-capture", no_capture);
+       stack      = conf_get_int("main.stack",      stack);
+
        /* Setup window class */
        WNDCLASSEX wc    = {
                .cbSize        = sizeof(WNDCLASSEX),
@@ -411,14 +456,32 @@ win_t *sys_init(void)
        //if (!RegisterHotKey(NULL, 123, MOD_CONTROL, VK_LBUTTON))
        //      printf("sys_init: Error Registering Hotkey - %lu\n", GetLastError());
 
+       /* Capture ctrl-c and console widnow close */
+       SetConsoleCtrlHandler(CtrlProc, TRUE);
+
        return root = win_new(hwnd,0);
 }
 
 void sys_run(win_t *root)
 {
-       MSG msg;
-       while (GetMessage(&msg, NULL, 0, 0) > 0) {
+       MSG msg = {};
+       if (!no_capture)
+               EnumWindows(LoopProc, 0);
+       while (GetMessage(&msg, NULL, 0, 0) > 0 &&
+              msg.message != WM_QUIT) {
                TranslateMessage(&msg);
                DispatchMessage(&msg);
        }
 }
+
+void sys_exit(void)
+{
+       PostMessage(root->sys->hwnd, WM_QUIT, 0, 0);
+}
+
+void sys_free(win_t *root)
+{
+       /* I don't really care about this
+        * since I don't know how to use
+        * valgrind on win32 anyway.. */
+}