This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/W32/Wnd32.cs

208 lines
6.7 KiB
C#
Raw Normal View History

2019-09-07 10:12:24 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
2019-09-07 10:12:24 +02:00
using System.Drawing;
using System.Linq;
2019-09-07 10:12:24 +02:00
using System.Text;
using System.Windows.Forms;
using CC_Functions.W32.Native;
2019-09-07 10:12:24 +02:00
namespace CC_Functions.W32
{
2019-10-05 16:37:31 +02:00
public sealed class Wnd32 : IEquatable<Wnd32>
2019-09-07 10:12:24 +02:00
{
#region Exposed
2019-11-29 21:27:24 +01:00
2019-09-07 10:12:24 +02:00
#region CreateInstance
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
private Wnd32(IntPtr wndref) => hWnd = wndref;
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public static Wnd32 fromHandle(IntPtr handle) => new Wnd32(handle);
2019-11-29 21:27:24 +01:00
public static Wnd32 getProcessMain(Process process) => fromHandle(process.MainWindowHandle);
2020-01-10 16:52:06 +01:00
public static Wnd32 fromMetadata(string? lpClassName = null, string? lpWindowName = null) =>
fromHandle(user32.FindWindow(lpClassName, lpWindowName));
2019-11-29 21:27:24 +01:00
public static Wnd32 fromPoint(Point point) => fromHandle(user32.WindowFromPoint(point.X, point.Y));
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public static Wnd32 fromForm(Form form) => fromHandle(form.Handle);
2019-11-29 21:27:24 +01:00
public static Wnd32[] All
{
get { WindowHandles = new List<IntPtr>();
if (!user32.EnumDesktopWindows(IntPtr.Zero, FilterCallback, IntPtr.Zero))
throw new Win32Exception("There was a native error. This should never happen!");
return WindowHandles.Select(s => fromHandle(s)).ToArray(); }
}
public static Wnd32[] Visible => All.Where(s => user32.IsWindowVisible(s.hWnd) && !string.IsNullOrEmpty(s.title)).ToArray();
public static Wnd32 Foreground => fromHandle(user32.GetForegroundWindow());
public static Wnd32 ConsoleWindow => fromHandle(kernel32.GetConsoleWindow());
2019-11-29 21:27:24 +01:00
#endregion CreateInstance
2019-09-07 10:12:24 +02:00
#region InstanceActions
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
public string title
{
get
{
int length = user32.GetWindowTextLength(hWnd);
2019-12-22 16:58:16 +01:00
StringBuilder sb = new StringBuilder(length + 1);
user32.GetWindowText(hWnd, sb, sb.Capacity);
2019-09-07 10:12:24 +02:00
return sb.ToString();
2019-09-11 11:22:16 +02:00
}
set => user32.SetWindowText(hWnd, value);
2019-09-11 11:22:16 +02:00
}
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
public Rectangle position
{
get
{
2019-12-22 16:58:16 +01:00
RECT Rect = new RECT();
user32.GetWindowRect(hWnd, ref Rect);
return new Rectangle(new Point(Rect.Left, Rect.Top),
new Size(Rect.Width, Rect.Height));
2019-09-11 11:22:16 +02:00
}
set
{
2019-12-22 16:58:16 +01:00
RECT Rect = new RECT();
user32.GetWindowRect(hWnd, ref Rect);
user32.MoveWindow(hWnd, value.X, value.Y, value.Width, value.Height, true);
2019-09-11 11:22:16 +02:00
}
}
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
public bool isForeground
{
get => user32.GetForegroundWindow() == hWnd;
set
{
2019-09-07 10:12:24 +02:00
if (value)
user32.SetForegroundWindow(hWnd);
2019-09-07 10:12:24 +02:00
else
throw new InvalidOperationException(
"You can't set a Window not to be in the foreground. Move another one over it!");
2019-09-07 10:12:24 +02:00
}
}
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
public bool enabled
{
get => user32.IsWindowEnabled(hWnd);
set => user32.EnableWindow(hWnd, value);
2019-09-07 10:12:24 +02:00
}
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
public Icon icon
{
get
{
IntPtr hicon = user32.SendMessage(hWnd, 0x7F, 1, 0);
2019-09-11 11:22:16 +02:00
if (hicon == IntPtr.Zero)
hicon = user32.SendMessage(hWnd, 0x7F, 0, 0);
2019-09-11 11:22:16 +02:00
if (hicon == IntPtr.Zero)
hicon = user32.SendMessage(hWnd, 0x7F, 2, 0);
2019-09-11 11:22:16 +02:00
return Icon.FromHandle(hicon);
}
}
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
public bool shown
{
get => user32.IsWindowVisible(hWnd);
set => user32.ShowWindow(hWnd, value ? 9 : 0);
2019-09-11 11:22:16 +02:00
}
2019-11-29 21:27:24 +01:00
public string className
{
get
{
2019-12-22 16:58:16 +01:00
StringBuilder ClassName = new StringBuilder(256);
user32.GetClassName(hWnd, ClassName, ClassName.Capacity);
2019-11-29 21:27:24 +01:00
return ClassName.ToString();
}
}
2019-09-11 11:22:16 +02:00
public FormWindowState state
{
get
{
int style = user32.GetWindowLong(hWnd, -16);
2019-09-11 11:22:16 +02:00
if ((style & 0x01000000) == 0x01000000)
return FormWindowState.Maximized;
if ((style & 0x20000000) == 0x20000000)
2019-09-11 11:22:16 +02:00
return FormWindowState.Minimized;
return FormWindowState.Normal;
2019-09-11 11:22:16 +02:00
}
set
{
2019-09-11 11:22:16 +02:00
switch (value)
{
case FormWindowState.Minimized:
user32.ShowWindow(hWnd, 11);
2019-09-11 11:22:16 +02:00
break;
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
case FormWindowState.Normal:
user32.ShowWindow(hWnd, 1);
2019-09-11 11:22:16 +02:00
break;
2019-11-29 21:27:24 +01:00
2019-09-11 11:22:16 +02:00
case FormWindowState.Maximized:
user32.ShowWindow(hWnd, 3);
2019-09-11 11:22:16 +02:00
break;
}
}
}
2019-11-29 21:27:24 +01:00
public bool overlay
{
set
{
2019-12-22 16:58:16 +01:00
Rectangle tmp = position;
user32.SetWindowPos(hWnd, value ? HWND_TOPMOST : HWND_NOTOPMOST, tmp.X, tmp.Y, tmp.Width, tmp.Height,
value ? SWP_NOMOVE | SWP_NOSIZE : 0);
2019-11-29 21:27:24 +01:00
}
}
2019-09-07 10:12:24 +02:00
public bool Destroy()
{
if (user32.DestroyWindow(hWnd))
2019-09-07 10:12:24 +02:00
return true;
throw new Exception("Failed.");
2019-09-07 10:12:24 +02:00
}
public bool stillExists => user32.IsWindow(hWnd);
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public override string ToString() => hWnd + "; " + title + "; " + position;
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public override bool Equals(object obj) => Equals(obj as Wnd32);
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public bool Equals(Wnd32 other) => other != null && EqualityComparer<IntPtr>.Default.Equals(hWnd, other.hWnd);
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public override int GetHashCode() => -75345830 + EqualityComparer<IntPtr>.Default.GetHashCode(hWnd);
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public static bool operator ==(Wnd32 left, Wnd32 right) => EqualityComparer<Wnd32>.Default.Equals(left, right);
2019-11-29 21:27:24 +01:00
2019-12-22 16:58:16 +01:00
public static bool operator !=(Wnd32 left, Wnd32 right) => !(left == right);
2019-11-29 21:27:24 +01:00
#endregion InstanceActions
#endregion Exposed
#region Internal
2019-11-29 21:27:24 +01:00
2019-09-07 10:12:24 +02:00
public IntPtr hWnd;
2019-11-29 21:27:24 +01:00
private static readonly IntPtr HWND_TOPMOST = new IntPtr(-1);
private static readonly IntPtr HWND_NOTOPMOST = new IntPtr(-2);
private const uint SWP_NOSIZE = 0x0001;
private const uint SWP_NOMOVE = 0x0002;
private static List<IntPtr> WindowHandles;
private static bool FilterCallback(IntPtr hWnd, int lParam)
{
StringBuilder sbTitle = new StringBuilder(1024);
user32.GetWindowText(hWnd, sbTitle, 1024);
WindowHandles.Add(hWnd);
return true;
}
#endregion Internal
2019-09-07 10:12:24 +02:00
}
2019-11-29 21:27:24 +01:00
}