1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
| using System; using System.Runtime.InteropServices; using System.Windows.Forms;
namespace ColorPicker.Utils { public class MouseHook { private const int WM_MOUSEMOVE = 0x200; private const int WM_LBUTTONDOWN = 0x201; private const int WM_RBUTTONDOWN = 0x204; private const int WM_MBUTTONDOWN = 0x207; private const int WM_LBUTTONUP = 0x202; private const int WM_RBUTTONUP = 0x205; private const int WM_MBUTTONUP = 0x208; private const int WM_LBUTTONDBLCLK = 0x203; private const int WM_RBUTTONDBLCLK = 0x206; private const int WM_MBUTTONDBLCLK = 0x209;
[StructLayout(LayoutKind.Sequential)] public class POINT { public int x; public int y; }
[StructLayout(LayoutKind.Sequential)] public class MouseHookStruct { public POINT pt; public int hWnd; public int wHitTestCode; public int dwExtraInfo; }
public const int WH_MOUSE_LL = 14;
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)] public static extern int SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hInstance, int threadId);
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)] public static extern bool UnhookWindowsHookEx(int idHook);
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)] public static extern int CallNextHookEx(int idHook, int nCode, Int32 wParam, IntPtr lParam);
public delegate void MouseHandler(object sender, MouseEventArgs e, int downup);
private static event MouseHandler Handlers;
public delegate int HookProc(int nCode, Int32 wParam, IntPtr lParam);
private HookProc _mouseHookProcedure;
private static int _hMouseHook = 0;
public MouseHook() { }
~MouseHook() { Stop(); }
public void Start() { if (_hMouseHook == 0) { if (Handlers == null) { throw new Exception("Please set handler first!Then run Start"); } _mouseHookProcedure = new HookProc(MouseHookProc);
_hMouseHook = SetWindowsHookEx(WH_MOUSE_LL, _mouseHookProcedure, Marshal.GetHINSTANCE(System.Reflection.Assembly.GetExecutingAssembly().GetModules()[0]), 0);
if (_hMouseHook == 0) { Stop(); throw new Exception("SetWindowsHookEx failed."); } } }
public void Stop() { bool retMouse = true;
if (_hMouseHook != 0) { retMouse = UnhookWindowsHookEx(_hMouseHook); _hMouseHook = 0; }
if (!retMouse) throw new Exception("UnhookWindowsHookEx failed."); }
public void AddMouseHandler(MouseHandler handler) { Handlers += handler; }
private int MouseHookProc(int nCode, Int32 wParam, IntPtr lParam) { if ((nCode >= 0) && (Handlers != null)) { MouseButtons button = MouseButtons.None; int clickCount = 0; int downup = 0; bool mouseclick = false;
switch (wParam) { case WM_LBUTTONDOWN: button = MouseButtons.Left; clickCount = 1; mouseclick = true; break;
case WM_LBUTTONUP: button = MouseButtons.Left; clickCount = 1; downup = 1; mouseclick = true; break;
case WM_LBUTTONDBLCLK: button = MouseButtons.Left; clickCount = 2; mouseclick = true; break;
case WM_RBUTTONDOWN: button = MouseButtons.Right; clickCount = 1; mouseclick = true; break;
case WM_RBUTTONUP: button = MouseButtons.Right; clickCount = 1; downup = 1; mouseclick = true; break;
case WM_RBUTTONDBLCLK: button = MouseButtons.Right; clickCount = 2; mouseclick = true; break; }
if (mouseclick) { MouseHookStruct MyMouseHookStruct = (MouseHookStruct)Marshal.PtrToStructure(lParam, typeof(MouseHookStruct)); MouseEventArgs e = new MouseEventArgs(button, clickCount, MyMouseHookStruct.pt.x, MyMouseHookStruct.pt.y, 0);
Handlers(this, e, downup); } }
return CallNextHookEx(_hMouseHook, nCode, wParam, lParam); } } }
|