CmbRenderHelper.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using System;
  3. using System.Drawing;
  4. using System.Drawing.Drawing2D;
  5. namespace LYFZ.OtherExpansion.SkinControl
  6. {
  7. internal class CmbRenderHelper
  8. {
  9. internal static void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  10. {
  11. CmbRenderHelper.RenderBackgroundInternal(g, rect, baseColor, borderColor, innerBorderColor, style, 8, drawBorder, drawGlass, mode);
  12. }
  13. internal static void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, int roundWidth, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  14. {
  15. CmbRenderHelper.RenderBackgroundInternal(g, rect, baseColor, borderColor, innerBorderColor, style, 8, 0.45f, drawBorder, drawGlass, mode);
  16. }
  17. internal static void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, int roundWidth, float basePosition, bool drawBorder, bool drawGlass, LinearGradientMode mode)
  18. {
  19. if (drawBorder)
  20. {
  21. rect.Width--;
  22. rect.Height--;
  23. }
  24. using (LinearGradientBrush brush = new LinearGradientBrush(rect, Color.Transparent, Color.Transparent, mode))
  25. {
  26. Color[] colors = new Color[]
  27. {
  28. CmbRenderHelper.GetColor(baseColor, 0, 35, 24, 9),
  29. CmbRenderHelper.GetColor(baseColor, 0, 13, 8, 3),
  30. baseColor,
  31. CmbRenderHelper.GetColor(baseColor, 0, 35, 24, 9)
  32. };
  33. brush.InterpolationColors = new ColorBlend
  34. {
  35. Positions = new float[]
  36. {
  37. 0f,
  38. basePosition,
  39. basePosition + 0.05f,
  40. 1f
  41. },
  42. Colors = colors
  43. };
  44. if (style != RoundStyle.None)
  45. {
  46. using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  47. {
  48. g.FillPath(brush, path);
  49. }
  50. if (baseColor.A > 80)
  51. {
  52. Rectangle rectTop = rect;
  53. if (mode == LinearGradientMode.Vertical)
  54. {
  55. rectTop.Height = (int)((float)rectTop.Height * basePosition);
  56. }
  57. else
  58. {
  59. rectTop.Width = (int)((float)rect.Width * basePosition);
  60. }
  61. using (GraphicsPath pathTop = GraphicsPathHelper.CreatePath(rectTop, roundWidth, RoundStyle.Top, false))
  62. {
  63. using (SolidBrush brushAlpha = new SolidBrush(Color.FromArgb(128, 255, 255, 255)))
  64. {
  65. g.FillPath(brushAlpha, pathTop);
  66. }
  67. }
  68. }
  69. if (drawGlass)
  70. {
  71. RectangleF glassRect = rect;
  72. if (mode == LinearGradientMode.Vertical)
  73. {
  74. glassRect.Y = (float)rect.Y + (float)rect.Height * basePosition;
  75. glassRect.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
  76. }
  77. else
  78. {
  79. glassRect.X = (float)rect.X + (float)rect.Width * basePosition;
  80. glassRect.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
  81. }
  82. ControlPaintEx.DrawGlass(g, glassRect, 170, 0);
  83. }
  84. if (!drawBorder)
  85. {
  86. goto IL_412;
  87. }
  88. using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  89. {
  90. using (Pen pen = new Pen(borderColor))
  91. {
  92. g.DrawPath(pen, path2);
  93. }
  94. }
  95. rect.Inflate(-1, -1);
  96. using (GraphicsPath path3 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
  97. {
  98. using (Pen pen2 = new Pen(innerBorderColor))
  99. {
  100. g.DrawPath(pen2, path3);
  101. }
  102. goto IL_412;
  103. }
  104. }
  105. g.FillRectangle(brush, rect);
  106. if (baseColor.A > 80)
  107. {
  108. Rectangle rectTop2 = rect;
  109. if (mode == LinearGradientMode.Vertical)
  110. {
  111. rectTop2.Height = (int)((float)rectTop2.Height * basePosition);
  112. }
  113. else
  114. {
  115. rectTop2.Width = (int)((float)rect.Width * basePosition);
  116. }
  117. using (SolidBrush brushAlpha2 = new SolidBrush(Color.FromArgb(128, 255, 255, 255)))
  118. {
  119. g.FillRectangle(brushAlpha2, rectTop2);
  120. }
  121. }
  122. if (drawGlass)
  123. {
  124. RectangleF glassRect2 = rect;
  125. if (mode == LinearGradientMode.Vertical)
  126. {
  127. glassRect2.Y = (float)rect.Y + (float)rect.Height * basePosition;
  128. glassRect2.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
  129. }
  130. else
  131. {
  132. glassRect2.X = (float)rect.X + (float)rect.Width * basePosition;
  133. glassRect2.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
  134. }
  135. ControlPaintEx.DrawGlass(g, glassRect2, 200, 0);
  136. }
  137. if (drawBorder)
  138. {
  139. using (Pen pen3 = new Pen(borderColor))
  140. {
  141. g.DrawRectangle(pen3, rect);
  142. }
  143. rect.Inflate(-1, -1);
  144. using (Pen pen4 = new Pen(innerBorderColor))
  145. {
  146. g.DrawRectangle(pen4, rect);
  147. }
  148. }
  149. IL_412:;
  150. }
  151. }
  152. internal static Color GetColor(Color colorBase, int a, int r, int g, int b)
  153. {
  154. int a2 = (int)colorBase.A;
  155. int r2 = (int)colorBase.R;
  156. int g2 = (int)colorBase.G;
  157. int b2 = (int)colorBase.B;
  158. if (a + a2 > 255)
  159. {
  160. a = 255;
  161. }
  162. else
  163. {
  164. a = Math.Max(0, a + a2);
  165. }
  166. if (r + r2 > 255)
  167. {
  168. r = 255;
  169. }
  170. else
  171. {
  172. r = Math.Max(0, r + r2);
  173. }
  174. if (g + g2 > 255)
  175. {
  176. g = 255;
  177. }
  178. else
  179. {
  180. g = Math.Max(0, g + g2);
  181. }
  182. if (b + b2 > 255)
  183. {
  184. b = 255;
  185. }
  186. else
  187. {
  188. b = Math.Max(0, b + b2);
  189. }
  190. return Color.FromArgb(a, r, g, b);
  191. }
  192. }
  193. }