Inheritance: System.EventArgs
Esempio n. 1
0
 protected void OnHookInvoked(HookEventArgs e)
 {
     if (HookInvoked != null)
     {
         HookInvoked(this, e);
     }
 }
Esempio n. 2
0
        // Default filter function
        public int CoreHookProc(int code, IntPtr wParam, IntPtr lParam)
        {
            if (code < 0)
            {
                return(CallNextHookEx(m_hhook, code, wParam, lParam));
            }

            // Let clients determine what to do
            HookEventArgs e = new HookEventArgs();

            e.HookCode = code;
            e.wParam   = wParam;
            e.lParam   = lParam;
            OnHookInvoked(e);

            // Yield to the next hook in the chain
            return(CallNextHookEx(m_hhook, code, wParam, lParam));
        }
Esempio n. 3
0
 protected void OnHookInvoked(HookEventArgs e)
 {
     if (HookInvoked != null)
         HookInvoked(this, e);
 }
Esempio n. 4
0
        // Default filter function
        public int CoreHookProc(int code, IntPtr wParam, IntPtr lParam)
        {
            if (code < 0)
                return CallNextHookEx(m_hhook, code, wParam, lParam);

            // Let clients determine what to do
            HookEventArgs e = new HookEventArgs();
            e.HookCode = code;
            e.wParam = wParam;
            e.lParam = lParam;
            OnHookInvoked(e);

            // Yield to the next hook in the chain
            return CallNextHookEx(m_hhook, code, wParam, lParam);
        }
Esempio n. 5
0
        // Windows hook event handler
        private void HookEventHandler(object sender, HookEventArgs e)
        {
            if (InRefreshingActiveWindow)
                return;

            Win32.CWPRETSTRUCT cwpret = (Win32.CWPRETSTRUCT)Marshal.PtrToStructure(e.lParam, typeof(Win32.CWPRETSTRUCT));
            int msg = cwpret.message;

            if (msg == (int)Win32.Msgs.WM_KILLFOCUS)
            {
                DockPane pane = GetPaneFromHandle((IntPtr)cwpret.wParam);
                if (pane == null)
                {
                    try
                    {
                        User32.PostMessage(this.Handle, WM_REFRESHACTIVEWINDOW, 0, 0);
                    }
                    catch
                    {
                    }
                }
            }
            else if (msg == (int)Win32.Msgs.WM_SETFOCUS)
                User32.PostMessage(this.Handle, WM_REFRESHACTIVEWINDOW, 0, 0);
        }