ControlPaintScroll.cs 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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. public sealed class ControlPaintScroll
  10. {
  11. private ControlPaintScroll()
  12. {
  13. }
  14. public static void DrawCheckedFlag(Graphics g, Rectangle rect, Color color)
  15. {
  16. PointF[] points = new PointF[]
  17. {
  18. new PointF((float)rect.X + (float)rect.Width / 4.5f, (float)rect.Y + (float)rect.Height / 2.5f),
  19. new PointF((float)rect.X + (float)rect.Width / 2.5f, (float)rect.Bottom - (float)rect.Height / 3f),
  20. new PointF((float)rect.Right - (float)rect.Width / 4f, (float)rect.Y + (float)rect.Height / 4.5f)
  21. };
  22. using (Pen pen = new Pen(color, 2f))
  23. {
  24. g.DrawLines(pen, points);
  25. }
  26. }
  27. public static void DrawGlass(Graphics g, RectangleF glassRect, int alphaCenter, int alphaSurround)
  28. {
  29. ControlPaintScroll.DrawGlass(g, glassRect, Color.White, alphaCenter, alphaSurround);
  30. }
  31. public static void DrawGlass(Graphics g, RectangleF glassRect, Color glassColor, int alphaCenter, int alphaSurround)
  32. {
  33. using (GraphicsPath path = new GraphicsPath())
  34. {
  35. path.AddEllipse(glassRect);
  36. using (PathGradientBrush brush = new PathGradientBrush(path))
  37. {
  38. brush.CenterColor = Color.FromArgb(alphaCenter, glassColor);
  39. brush.SurroundColors = new Color[]
  40. {
  41. Color.FromArgb(alphaSurround, glassColor)
  42. };
  43. brush.CenterPoint = new PointF(glassRect.X + glassRect.Width / 2f, glassRect.Y + glassRect.Height / 2f);
  44. g.FillPath(brush, path);
  45. }
  46. }
  47. }
  48. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect)
  49. {
  50. ControlPaintScroll.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, Point.Empty, RightToLeft.No);
  51. }
  52. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset)
  53. {
  54. ControlPaintScroll.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, scrollOffset, RightToLeft.No);
  55. }
  56. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
  57. {
  58. if (g == null)
  59. {
  60. throw new ArgumentNullException("g");
  61. }
  62. if (backgroundImageLayout == ImageLayout.Tile)
  63. {
  64. using (TextureBrush brush = new TextureBrush(backgroundImage, WrapMode.Tile))
  65. {
  66. if (scrollOffset != Point.Empty)
  67. {
  68. Matrix transform = brush.Transform;
  69. transform.Translate((float)scrollOffset.X, (float)scrollOffset.Y);
  70. brush.Transform = transform;
  71. }
  72. g.FillRectangle(brush, clipRect);
  73. return;
  74. }
  75. }
  76. Rectangle rect = ControlPaintScroll.CalculateBackgroundImageRectangle(bounds, backgroundImage, backgroundImageLayout);
  77. if (rightToLeft == RightToLeft.Yes && backgroundImageLayout == ImageLayout.None)
  78. {
  79. rect.X += clipRect.Width - rect.Width;
  80. }
  81. using (SolidBrush brush2 = new SolidBrush(backColor))
  82. {
  83. g.FillRectangle(brush2, clipRect);
  84. }
  85. if (!clipRect.Contains(rect))
  86. {
  87. if (backgroundImageLayout == ImageLayout.Stretch || backgroundImageLayout == ImageLayout.Zoom)
  88. {
  89. rect.Intersect(clipRect);
  90. g.DrawImage(backgroundImage, rect);
  91. return;
  92. }
  93. if (backgroundImageLayout == ImageLayout.None)
  94. {
  95. rect.Offset(clipRect.Location);
  96. Rectangle destRect = rect;
  97. destRect.Intersect(clipRect);
  98. Rectangle rectangle3 = new Rectangle(Point.Empty, destRect.Size);
  99. g.DrawImage(backgroundImage, destRect, rectangle3.X, rectangle3.Y, rectangle3.Width, rectangle3.Height, GraphicsUnit.Pixel);
  100. return;
  101. }
  102. Rectangle rectangle4 = rect;
  103. rectangle4.Intersect(clipRect);
  104. Rectangle rectangle5 = new Rectangle(new Point(rectangle4.X - rect.X, rectangle4.Y - rect.Y), rectangle4.Size);
  105. g.DrawImage(backgroundImage, rectangle4, rectangle5.X, rectangle5.Y, rectangle5.Width, rectangle5.Height, GraphicsUnit.Pixel);
  106. return;
  107. }
  108. else
  109. {
  110. ImageAttributes imageAttr = new ImageAttributes();
  111. imageAttr.SetWrapMode(WrapMode.TileFlipXY);
  112. g.DrawImage(backgroundImage, rect, 0, 0, backgroundImage.Width, backgroundImage.Height, GraphicsUnit.Pixel, imageAttr);
  113. imageAttr.Dispose();
  114. }
  115. }
  116. public static void DrawScrollBarTrack(Graphics g, Rectangle rect, Color begin, Color end, Orientation orientation)
  117. {
  118. LinearGradientMode mode = (orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  119. Blend blend = new Blend();
  120. Blend arg_2D_0 = blend;
  121. float[] array = new float[3];
  122. array[0] = 1f;
  123. array[1] = 0.5f;
  124. arg_2D_0.Factors = array;
  125. blend.Positions = new float[]
  126. {
  127. 0f,
  128. 0.5f,
  129. 1f
  130. };
  131. ControlPaintScroll.DrawGradientRect(g, rect, begin, end, begin, begin, blend, mode, true, false);
  132. }
  133. public static void DrawScrollBarThumb(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Orientation orientation, bool changeColor)
  134. {
  135. if (changeColor)
  136. {
  137. Color tmp = begin;
  138. begin = end;
  139. end = tmp;
  140. }
  141. bool bHorizontal = orientation == Orientation.Horizontal;
  142. LinearGradientMode mode = bHorizontal ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  143. Blend blend = new Blend();
  144. Blend arg_3D_0 = blend;
  145. float[] array = new float[3];
  146. array[0] = 1f;
  147. array[1] = 0.5f;
  148. arg_3D_0.Factors = array;
  149. blend.Positions = new float[]
  150. {
  151. 0f,
  152. 0.5f,
  153. 1f
  154. };
  155. if (bHorizontal)
  156. {
  157. rect.Inflate(0, -1);
  158. }
  159. else
  160. {
  161. rect.Inflate(-1, 0);
  162. }
  163. ControlPaintScroll.DrawGradientRoundRect(g, rect, begin, end, border, innerBorder, blend, mode, 4, RoundStyle.All, true, true);
  164. }
  165. public static void DrawScrollBarArraw(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Color fore, Orientation orientation, ArrowDirection arrowDirection, bool changeColor)
  166. {
  167. if (changeColor)
  168. {
  169. Color tmp = begin;
  170. begin = end;
  171. end = tmp;
  172. }
  173. LinearGradientMode mode = (orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  174. rect.Inflate(-1, -1);
  175. Blend blend = new Blend();
  176. Blend arg_46_0 = blend;
  177. float[] array = new float[3];
  178. array[0] = 1f;
  179. array[1] = 0.5f;
  180. arg_46_0.Factors = array;
  181. blend.Positions = new float[]
  182. {
  183. 0f,
  184. 0.5f,
  185. 1f
  186. };
  187. ControlPaintScroll.DrawGradientRoundRect(g, rect, begin, end, border, innerBorder, blend, mode, 4, RoundStyle.All, true, true);
  188. using (SolidBrush brush = new SolidBrush(fore))
  189. {
  190. RenderHelperScrollBar.RenderArrowInternal(g, rect, arrowDirection, brush);
  191. }
  192. }
  193. internal static void DrawGradientRect(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Blend blend, LinearGradientMode mode, bool drawBorder, bool drawInnerBorder)
  194. {
  195. using (LinearGradientBrush brush = new LinearGradientBrush(rect, begin, end, mode))
  196. {
  197. brush.Blend = blend;
  198. g.FillRectangle(brush, rect);
  199. }
  200. if (drawBorder)
  201. {
  202. ControlPaint.DrawBorder(g, rect, border, ButtonBorderStyle.Solid);
  203. }
  204. if (drawInnerBorder)
  205. {
  206. rect.Inflate(-1, -1);
  207. ControlPaint.DrawBorder(g, rect, border, ButtonBorderStyle.Solid);
  208. }
  209. }
  210. internal static void DrawGradientRoundRect(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Blend blend, LinearGradientMode mode, int radios, RoundStyle roundStyle, bool drawBorder, bool drawInnderBorder)
  211. {
  212. using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, radios, roundStyle, true))
  213. {
  214. using (LinearGradientBrush brush = new LinearGradientBrush(rect, begin, end, mode))
  215. {
  216. brush.Blend = blend;
  217. g.FillPath(brush, path);
  218. }
  219. if (drawBorder)
  220. {
  221. using (Pen pen = new Pen(border))
  222. {
  223. g.DrawPath(pen, path);
  224. }
  225. }
  226. }
  227. if (drawInnderBorder)
  228. {
  229. rect.Inflate(-1, -1);
  230. using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, radios, roundStyle, true))
  231. {
  232. using (Pen pen2 = new Pen(innerBorder))
  233. {
  234. g.DrawPath(pen2, path2);
  235. }
  236. }
  237. }
  238. }
  239. internal static Rectangle CalculateBackgroundImageRectangle(Rectangle bounds, Image backgroundImage, ImageLayout imageLayout)
  240. {
  241. Rectangle rectangle = bounds;
  242. if (backgroundImage != null)
  243. {
  244. switch (imageLayout)
  245. {
  246. case ImageLayout.None:
  247. rectangle.Size = backgroundImage.Size;
  248. return rectangle;
  249. case ImageLayout.Tile:
  250. return rectangle;
  251. case ImageLayout.Center:
  252. {
  253. rectangle.Size = backgroundImage.Size;
  254. Size size = bounds.Size;
  255. if (size.Width > rectangle.Width)
  256. {
  257. rectangle.X = (size.Width - rectangle.Width) / 2;
  258. }
  259. if (size.Height > rectangle.Height)
  260. {
  261. rectangle.Y = (size.Height - rectangle.Height) / 2;
  262. }
  263. return rectangle;
  264. }
  265. case ImageLayout.Stretch:
  266. rectangle.Size = bounds.Size;
  267. return rectangle;
  268. case ImageLayout.Zoom:
  269. {
  270. Size size2 = backgroundImage.Size;
  271. float num = (float)bounds.Width / (float)size2.Width;
  272. float num2 = (float)bounds.Height / (float)size2.Height;
  273. if (num >= num2)
  274. {
  275. rectangle.Height = bounds.Height;
  276. rectangle.Width = (int)((double)((float)size2.Width * num2) + 0.5);
  277. if (bounds.X >= 0)
  278. {
  279. rectangle.X = (bounds.Width - rectangle.Width) / 2;
  280. }
  281. return rectangle;
  282. }
  283. rectangle.Width = bounds.Width;
  284. rectangle.Height = (int)((double)((float)size2.Height * num) + 0.5);
  285. if (bounds.Y >= 0)
  286. {
  287. rectangle.Y = (bounds.Height - rectangle.Height) / 2;
  288. }
  289. return rectangle;
  290. }
  291. }
  292. }
  293. return rectangle;
  294. }
  295. }
  296. }