123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- using LYFZ.OtherExpansion.Win32;
- using LYFZ.OtherExpansion.Win32.Const;
- using LYFZ.OtherExpansion.Win32.Struct;
- using System;
- using System.Drawing;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- internal abstract class MaskControlBase : NativeWindow, IDisposable
- {
- private CreateParams _createParams;
- private bool _disposed;
- protected bool IsHandleCreated
- {
- get
- {
- return base.Handle != IntPtr.Zero;
- }
- }
- protected virtual CreateParams CreateParams
- {
- get
- {
- return this._createParams;
- }
- }
- protected MaskControlBase(IntPtr hWnd)
- {
- this.CreateParamsInternal(hWnd);
- }
- protected MaskControlBase(IntPtr hWnd, Rectangle rect)
- {
- this.CreateParamsInternal(hWnd, rect);
- }
- ~MaskControlBase()
- {
- this.Dispose(false);
- }
- protected internal void OnCreateHandle()
- {
- base.CreateHandle(this.CreateParams);
- this.SetZorder();
- }
- protected virtual void OnPaint(IntPtr hWnd)
- {
- }
- protected override void WndProc(ref Message m)
- {
- base.WndProc(ref m);
- try
- {
- int msg = m.Msg;
- if (msg == 15 || msg == 133)
- {
- this.OnPaint(m.HWnd);
- }
- }
- catch
- {
- }
- }
- internal void CreateParamsInternal(IntPtr hWnd)
- {
- IntPtr hParent = NativeMethods.GetParent(hWnd);
- RECT rect = default(RECT);
- NativeMethods.Point point = default(NativeMethods.Point);
- NativeMethods.GetWindowRect(hWnd, ref rect);
- point.x = rect.Left;
- point.y = rect.Top;
- NativeMethods.ScreenToClient(hParent, ref point);
- int dwStyle = 1409286157;
- int dwExStyle = 136;
- this._createParams = new CreateParams();
- this._createParams.Parent = hParent;
- this._createParams.ClassName = "STATIC";
- this._createParams.Caption = null;
- this._createParams.Style = dwStyle;
- this._createParams.ExStyle = dwExStyle;
- this._createParams.X = point.x;
- this._createParams.Y = point.y;
- this._createParams.Width = rect.Right - rect.Left;
- this._createParams.Height = rect.Bottom - rect.Top;
- }
- internal void CreateParamsInternal(IntPtr hWnd, Rectangle rect)
- {
- IntPtr hParent = NativeMethods.GetParent(hWnd);
- int dwStyle = 1409286157;
- int dwExStyle = 136;
- this._createParams = new CreateParams();
- this._createParams.Parent = hParent;
- this._createParams.ClassName = "STATIC";
- this._createParams.Caption = null;
- this._createParams.Style = dwStyle;
- this._createParams.ExStyle = dwExStyle;
- this._createParams.X = rect.X;
- this._createParams.Y = rect.Y;
- this._createParams.Width = rect.Width;
- this._createParams.Height = rect.Height;
- }
- internal void DestroyHandleInternal()
- {
- if (this.IsHandleCreated)
- {
- base.DestroyHandle();
- }
- }
- internal void CheckBounds(IntPtr hWnd)
- {
- RECT controlRect = default(RECT);
- RECT maskRect = default(RECT);
- NativeMethods.GetWindowRect(base.Handle, ref maskRect);
- NativeMethods.GetWindowRect(hWnd, ref controlRect);
- uint uFlag = 532u;
- if (!NativeMethods.EqualRect(ref controlRect, ref maskRect))
- {
- NativeMethods.Point point = new NativeMethods.Point(controlRect.Left, controlRect.Top);
- IntPtr hParent = NativeMethods.GetParent(base.Handle);
- NativeMethods.ScreenToClient(hParent, ref point);
- NativeMethods.SetWindowPos(base.Handle, IntPtr.Zero, point.x, point.y, controlRect.Right - controlRect.Left, controlRect.Bottom - controlRect.Top, uFlag);
- }
- }
- internal void SetVisibale(IntPtr hWnd)
- {
- bool bVisible = (NativeMethods.GetWindowLong(hWnd, -16) & 268435456) == 268435456;
- this.SetVisibale(bVisible);
- }
- internal void SetVisibale(bool visibale)
- {
- if (visibale)
- {
- NativeMethods.ShowWindow(base.Handle, 1);
- return;
- }
- NativeMethods.ShowWindow(base.Handle, 0);
- }
- private void SetZorder()
- {
- uint uFlags = 531u;
- NativeMethods.SetWindowPos(base.Handle, HWND.HWND_TOP, 0, 0, 0, 0, uFlags);
- }
- public void Dispose()
- {
- this.Dispose(true);
- GC.SuppressFinalize(this);
- }
- protected virtual void Dispose(bool disposing)
- {
- if (!this._disposed)
- {
- if (disposing)
- {
- this._createParams = null;
- }
- this.DestroyHandleInternal();
- }
- this._disposed = true;
- }
- }
- }
|