MaskControlBase.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using LYFZ.OtherExpansion.Win32;
  2. using LYFZ.OtherExpansion.Win32.Const;
  3. using LYFZ.OtherExpansion.Win32.Struct;
  4. using System;
  5. using System.Drawing;
  6. using System.Windows.Forms;
  7. namespace LYFZ.OtherExpansion.SkinControl
  8. {
  9. internal abstract class MaskControlBase : NativeWindow, IDisposable
  10. {
  11. private CreateParams _createParams;
  12. private bool _disposed;
  13. protected bool IsHandleCreated
  14. {
  15. get
  16. {
  17. return base.Handle != IntPtr.Zero;
  18. }
  19. }
  20. protected virtual CreateParams CreateParams
  21. {
  22. get
  23. {
  24. return this._createParams;
  25. }
  26. }
  27. protected MaskControlBase(IntPtr hWnd)
  28. {
  29. this.CreateParamsInternal(hWnd);
  30. }
  31. protected MaskControlBase(IntPtr hWnd, Rectangle rect)
  32. {
  33. this.CreateParamsInternal(hWnd, rect);
  34. }
  35. ~MaskControlBase()
  36. {
  37. this.Dispose(false);
  38. }
  39. protected internal void OnCreateHandle()
  40. {
  41. base.CreateHandle(this.CreateParams);
  42. this.SetZorder();
  43. }
  44. protected virtual void OnPaint(IntPtr hWnd)
  45. {
  46. }
  47. protected override void WndProc(ref Message m)
  48. {
  49. base.WndProc(ref m);
  50. try
  51. {
  52. int msg = m.Msg;
  53. if (msg == 15 || msg == 133)
  54. {
  55. this.OnPaint(m.HWnd);
  56. }
  57. }
  58. catch
  59. {
  60. }
  61. }
  62. internal void CreateParamsInternal(IntPtr hWnd)
  63. {
  64. IntPtr hParent = NativeMethods.GetParent(hWnd);
  65. RECT rect = default(RECT);
  66. NativeMethods.Point point = default(NativeMethods.Point);
  67. NativeMethods.GetWindowRect(hWnd, ref rect);
  68. point.x = rect.Left;
  69. point.y = rect.Top;
  70. NativeMethods.ScreenToClient(hParent, ref point);
  71. int dwStyle = 1409286157;
  72. int dwExStyle = 136;
  73. this._createParams = new CreateParams();
  74. this._createParams.Parent = hParent;
  75. this._createParams.ClassName = "STATIC";
  76. this._createParams.Caption = null;
  77. this._createParams.Style = dwStyle;
  78. this._createParams.ExStyle = dwExStyle;
  79. this._createParams.X = point.x;
  80. this._createParams.Y = point.y;
  81. this._createParams.Width = rect.Right - rect.Left;
  82. this._createParams.Height = rect.Bottom - rect.Top;
  83. }
  84. internal void CreateParamsInternal(IntPtr hWnd, Rectangle rect)
  85. {
  86. IntPtr hParent = NativeMethods.GetParent(hWnd);
  87. int dwStyle = 1409286157;
  88. int dwExStyle = 136;
  89. this._createParams = new CreateParams();
  90. this._createParams.Parent = hParent;
  91. this._createParams.ClassName = "STATIC";
  92. this._createParams.Caption = null;
  93. this._createParams.Style = dwStyle;
  94. this._createParams.ExStyle = dwExStyle;
  95. this._createParams.X = rect.X;
  96. this._createParams.Y = rect.Y;
  97. this._createParams.Width = rect.Width;
  98. this._createParams.Height = rect.Height;
  99. }
  100. internal void DestroyHandleInternal()
  101. {
  102. if (this.IsHandleCreated)
  103. {
  104. base.DestroyHandle();
  105. }
  106. }
  107. internal void CheckBounds(IntPtr hWnd)
  108. {
  109. RECT controlRect = default(RECT);
  110. RECT maskRect = default(RECT);
  111. NativeMethods.GetWindowRect(base.Handle, ref maskRect);
  112. NativeMethods.GetWindowRect(hWnd, ref controlRect);
  113. uint uFlag = 532u;
  114. if (!NativeMethods.EqualRect(ref controlRect, ref maskRect))
  115. {
  116. NativeMethods.Point point = new NativeMethods.Point(controlRect.Left, controlRect.Top);
  117. IntPtr hParent = NativeMethods.GetParent(base.Handle);
  118. NativeMethods.ScreenToClient(hParent, ref point);
  119. NativeMethods.SetWindowPos(base.Handle, IntPtr.Zero, point.x, point.y, controlRect.Right - controlRect.Left, controlRect.Bottom - controlRect.Top, uFlag);
  120. }
  121. }
  122. internal void SetVisibale(IntPtr hWnd)
  123. {
  124. bool bVisible = (NativeMethods.GetWindowLong(hWnd, -16) & 268435456) == 268435456;
  125. this.SetVisibale(bVisible);
  126. }
  127. internal void SetVisibale(bool visibale)
  128. {
  129. if (visibale)
  130. {
  131. NativeMethods.ShowWindow(base.Handle, 1);
  132. return;
  133. }
  134. NativeMethods.ShowWindow(base.Handle, 0);
  135. }
  136. private void SetZorder()
  137. {
  138. uint uFlags = 531u;
  139. NativeMethods.SetWindowPos(base.Handle, HWND.HWND_TOP, 0, 0, 0, 0, uFlags);
  140. }
  141. public void Dispose()
  142. {
  143. this.Dispose(true);
  144. GC.SuppressFinalize(this);
  145. }
  146. protected virtual void Dispose(bool disposing)
  147. {
  148. if (!this._disposed)
  149. {
  150. if (disposing)
  151. {
  152. this._createParams = null;
  153. }
  154. this.DestroyHandleInternal();
  155. }
  156. this._disposed = true;
  157. }
  158. }
  159. }