RenderHelperScrollBar.cs 8.0 KB

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