|
@@ -0,0 +1,258 @@
|
|
|
+using System.Runtime.InteropServices;
|
|
|
+using System.Text;
|
|
|
+
|
|
|
+namespace PixiEditor.Helpers;
|
|
|
+internal class Win32
|
|
|
+{
|
|
|
+ public const uint MONITOR_DEFAULTTONEAREST = 0x00000002;
|
|
|
+ public const int WH_MOUSE_LL = 14;
|
|
|
+
|
|
|
+ public const int WM_GETMINMAXINFO = 0x0024;
|
|
|
+ public const int WM_LBUTTONUP = 0x0202;
|
|
|
+ public const int WM_MBUTTONUP = 0x0208;
|
|
|
+ public const int WM_RBUTTONUP = 0x0205;
|
|
|
+ public const int WM_CLOSE = 0x0010;
|
|
|
+ public const int WM_DESTROY = 0x0002;
|
|
|
+
|
|
|
+ public const int ERROR_CLASS_ALREADY_EXISTS = 1410;
|
|
|
+ public const int CW_USEDEFAULT = unchecked((int)0x80000000);
|
|
|
+
|
|
|
+ public const uint WS_CHILD = 0x40000000;
|
|
|
+ public const uint WS_CAPTION = 0x00C00000;
|
|
|
+ public const uint WS_OVERLAPPED = 0x00000000;
|
|
|
+ public const uint WS_SYSMENU = 0x00080000;
|
|
|
+ public const uint WS_THICKFRAME = 0x00040000;
|
|
|
+ public const uint WS_MINIMIZEBOX = 0x00020000;
|
|
|
+ public const uint WS_MAXIMIZEBOX = 0x00010000;
|
|
|
+ public const uint WS_OVERLAPPEDWINDOW = WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
|
|
|
+
|
|
|
+ public delegate int HookProc(int nCode, int wParam, IntPtr lParam);
|
|
|
+ public delegate IntPtr WndProc(IntPtr hWnd, uint msg, IntPtr wParam, IntPtr lParam);
|
|
|
+
|
|
|
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
|
+ internal struct WNDCLASS
|
|
|
+ {
|
|
|
+ public uint style;
|
|
|
+ public IntPtr lpfnWndProc;
|
|
|
+ public int cbClsExtra;
|
|
|
+ public int cbWndExtra;
|
|
|
+ public IntPtr hInstance;
|
|
|
+ public IntPtr hIcon;
|
|
|
+ public IntPtr hCursor;
|
|
|
+ public IntPtr hbrBackground;
|
|
|
+ [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]
|
|
|
+ public string lpszMenuName;
|
|
|
+ [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)]
|
|
|
+ public string lpszClassName;
|
|
|
+ }
|
|
|
+
|
|
|
+ [StructLayout(LayoutKind.Sequential)]
|
|
|
+ internal struct MSG
|
|
|
+ {
|
|
|
+ public IntPtr hwnd;
|
|
|
+ public uint message;
|
|
|
+ public IntPtr wParam;
|
|
|
+ public IntPtr lParam;
|
|
|
+ public uint time;
|
|
|
+ public POINT pt;
|
|
|
+ public uint lPrivate;
|
|
|
+ }
|
|
|
+
|
|
|
+ [StructLayout(LayoutKind.Sequential)]
|
|
|
+ public struct MSLLHOOKSTRUCT
|
|
|
+ {
|
|
|
+ public POINT Pt;
|
|
|
+ public uint MouseData;
|
|
|
+ public uint Flags;
|
|
|
+ public uint Time;
|
|
|
+ public IntPtr DwExtraInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public enum MapType : uint
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// The uCode parameter is a virtual-key code and is translated into a scan code. If it is a virtual-key code that does not distinguish between left- and right-hand keys, the left-hand scan code is returned. If there is no translation, the function returns 0.
|
|
|
+ /// </summary>
|
|
|
+ MAPVK_VK_TO_VSC = 0x0,
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// The uCode parameter is a scan code and is translated into a virtual-key code that does not distinguish between left- and right-hand keys. If there is no translation, the function returns 0.
|
|
|
+ /// </summary>
|
|
|
+ MAPVK_VSC_TO_VK = 0x1,
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// The uCode parameter is a virtual-key code and is translated into an unshifted character value in the low order word of the return value. Dead keys (diacritics) are indicated by setting the top bit of the return value. If there is no translation, the function returns 0.
|
|
|
+ /// </summary>
|
|
|
+ MAPVK_VK_TO_CHAR = 0x2,
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// The uCode parameter is a scan code and is translated into a virtual-key code that distinguishes between left- and right-hand keys. If there is no translation, the function returns 0.
|
|
|
+ /// </summary>
|
|
|
+ MAPVK_VSC_TO_VK_EX = 0x3,
|
|
|
+ }
|
|
|
+
|
|
|
+ [Serializable]
|
|
|
+ [StructLayout(LayoutKind.Sequential)]
|
|
|
+ public struct RECT
|
|
|
+ {
|
|
|
+ public int Left;
|
|
|
+ public int Top;
|
|
|
+ public int Right;
|
|
|
+ public int Bottom;
|
|
|
+
|
|
|
+ public RECT(int left, int top, int right, int bottom)
|
|
|
+ {
|
|
|
+ this.Left = left;
|
|
|
+ this.Top = top;
|
|
|
+ this.Right = right;
|
|
|
+ this.Bottom = bottom;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ [StructLayout(LayoutKind.Sequential)]
|
|
|
+ public struct MONITORINFO
|
|
|
+ {
|
|
|
+ public int cbSize;
|
|
|
+ public RECT rcMonitor;
|
|
|
+ public RECT rcWork;
|
|
|
+ public uint dwFlags;
|
|
|
+ }
|
|
|
+
|
|
|
+ [Serializable]
|
|
|
+ [StructLayout(LayoutKind.Sequential)]
|
|
|
+ public struct POINT
|
|
|
+ {
|
|
|
+ public int X;
|
|
|
+ public int Y;
|
|
|
+
|
|
|
+ public POINT(int x, int y)
|
|
|
+ {
|
|
|
+ this.X = x;
|
|
|
+ this.Y = y;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ [StructLayout(LayoutKind.Sequential)]
|
|
|
+ public struct MINMAXINFO
|
|
|
+ {
|
|
|
+ public POINT ptReserved;
|
|
|
+ public POINT ptMaxSize;
|
|
|
+ public POINT ptMaxPosition;
|
|
|
+ public POINT ptMinTrackSize;
|
|
|
+ public POINT ptMaxTrackSize;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ [DllImport("user32.dll")]
|
|
|
+ public static extern IntPtr MonitorFromWindow(IntPtr handle, uint flags);
|
|
|
+
|
|
|
+ [DllImport("user32.dll")]
|
|
|
+ public static extern bool GetMonitorInfo(IntPtr hMonitor, ref MONITORINFO lpmi);
|
|
|
+
|
|
|
+ [DllImport("user32.dll")]
|
|
|
+ public static extern int ToUnicode(
|
|
|
+ uint wVirtKey,
|
|
|
+ uint wScanCode,
|
|
|
+ byte[] lpKeyState,
|
|
|
+ [Out, MarshalAs(UnmanagedType.LPWStr, SizeParamIndex = 4)]
|
|
|
+ StringBuilder pwszBuff,
|
|
|
+ int cchBuff,
|
|
|
+ uint wFlags);
|
|
|
+
|
|
|
+ [DllImport("user32.dll")]
|
|
|
+ public static extern bool GetKeyboardState(byte[] lpKeyState);
|
|
|
+
|
|
|
+ [DllImport("user32.dll")]
|
|
|
+ public static extern uint MapVirtualKeyExW(uint uCode, MapType uMapType, int hkl);
|
|
|
+
|
|
|
+ [DllImport(
|
|
|
+ "user32.dll",
|
|
|
+ CharSet = CharSet.Auto,
|
|
|
+ CallingConvention = CallingConvention.StdCall,
|
|
|
+ SetLastError = true)]
|
|
|
+ public static extern int SetWindowsHookEx(int idHook, HookProc lpfn, IntPtr hMod, int dwThreadId);
|
|
|
+
|
|
|
+ [DllImport(
|
|
|
+ "user32.dll",
|
|
|
+ CharSet = CharSet.Auto,
|
|
|
+ CallingConvention = CallingConvention.StdCall,
|
|
|
+ SetLastError = true)]
|
|
|
+ public static extern int UnhookWindowsHookEx(int idHook);
|
|
|
+
|
|
|
+ [DllImport(
|
|
|
+ "user32.dll",
|
|
|
+ CharSet = CharSet.Auto,
|
|
|
+ CallingConvention = CallingConvention.StdCall)]
|
|
|
+ public static extern int CallNextHookEx(int idHook, int nCode, int wParam, IntPtr lParam);
|
|
|
+
|
|
|
+ [DllImport("kernel32.dll")]
|
|
|
+ public static extern IntPtr GetModuleHandle(string name);
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern IntPtr CreateWindowExW(
|
|
|
+ UInt32 dwExStyle,
|
|
|
+ [MarshalAs(UnmanagedType.LPWStr)]
|
|
|
+ string lpClassName,
|
|
|
+ [MarshalAs(UnmanagedType.LPWStr)]
|
|
|
+ string lpWindowName,
|
|
|
+ UInt32 dwStyle,
|
|
|
+ Int32 x,
|
|
|
+ Int32 y,
|
|
|
+ Int32 nWidth,
|
|
|
+ Int32 nHeight,
|
|
|
+ IntPtr hWndParent,
|
|
|
+ IntPtr hMenu,
|
|
|
+ IntPtr hInstance,
|
|
|
+ IntPtr lpParam
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern IntPtr DefWindowProcW(
|
|
|
+ IntPtr hWnd, uint msg, IntPtr wParam, IntPtr lParam
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern bool DestroyWindow(
|
|
|
+ IntPtr hWnd
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern bool ShowWindow(
|
|
|
+ IntPtr hWnd,
|
|
|
+ int nCmdShow
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern bool UpdateWindow(
|
|
|
+ IntPtr hWnd
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern int GetMessage(
|
|
|
+ out MSG lpMsg,
|
|
|
+ IntPtr hWnd,
|
|
|
+ uint wMsgFilterMin,
|
|
|
+ uint wMsgFilterMax
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern bool DispatchMessage(
|
|
|
+ [In] ref MSG lpMsg
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern bool TranslateMessage(
|
|
|
+ [In] ref MSG lpMsg
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("user32.dll", SetLastError = true)]
|
|
|
+ public static extern System.UInt16 RegisterClassW(
|
|
|
+ [In] ref WNDCLASS lpWndClass
|
|
|
+ );
|
|
|
+
|
|
|
+ [DllImport("Kernel32.dll", SetLastError = true)]
|
|
|
+ public static extern int GetCurrentThreadId();
|
|
|
+
|
|
|
+ [DllImport("user32.dll")]
|
|
|
+ public static extern bool PostMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);
|
|
|
+}
|