RenderHelperStrip.cs 6.5 KB

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