123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- using LYFZ.OtherExpansion.SkinClass;
- using System;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Drawing.Imaging;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- public sealed class ControlPaintEx
- {
- private ControlPaintEx()
- {
- }
- public static void DrawCheckedFlag(Graphics g, Rectangle rect, Color color)
- {
- PointF[] points = new PointF[]
- {
- new PointF((float)rect.X + (float)rect.Width / 4.5f, (float)rect.Y + (float)rect.Height / 2.5f),
- new PointF((float)rect.X + (float)rect.Width / 2.5f, (float)rect.Bottom - (float)rect.Height / 3f),
- new PointF((float)rect.Right - (float)rect.Width / 4f, (float)rect.Y + (float)rect.Height / 4.5f)
- };
- using (Pen pen = new Pen(color, 2f))
- {
- g.DrawLines(pen, points);
- }
- }
- public static void DrawGlass(Graphics g, RectangleF glassRect, int alphaCenter, int alphaSurround)
- {
- ControlPaintEx.DrawGlass(g, glassRect, Color.White, alphaCenter, alphaSurround);
- }
- public static void DrawGlass(Graphics g, RectangleF glassRect, Color glassColor, int alphaCenter, int alphaSurround)
- {
- using (GraphicsPath path = new GraphicsPath())
- {
- path.AddEllipse(glassRect);
- using (PathGradientBrush brush = new PathGradientBrush(path))
- {
- brush.CenterColor = Color.FromArgb(alphaCenter, glassColor);
- brush.SurroundColors = new Color[]
- {
- Color.FromArgb(alphaSurround, glassColor)
- };
- brush.CenterPoint = new PointF(glassRect.X + glassRect.Width / 2f, glassRect.Y + glassRect.Height / 2f);
- g.FillPath(brush, path);
- }
- }
- }
- public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect)
- {
- ControlPaintEx.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, Point.Empty, RightToLeft.No);
- }
- public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset)
- {
- ControlPaintEx.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, scrollOffset, RightToLeft.No);
- }
- public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
- {
- if (g == null)
- {
- throw new ArgumentNullException("g");
- }
- if (backgroundImageLayout == ImageLayout.Tile)
- {
- using (TextureBrush brush = new TextureBrush(backgroundImage, WrapMode.Tile))
- {
- if (scrollOffset != Point.Empty)
- {
- Matrix transform = brush.Transform;
- transform.Translate((float)scrollOffset.X, (float)scrollOffset.Y);
- brush.Transform = transform;
- }
- g.FillRectangle(brush, clipRect);
- return;
- }
- }
- Rectangle rect = ControlPaintEx.CalculateBackgroundImageRectangle(bounds, backgroundImage, backgroundImageLayout);
- if (rightToLeft == RightToLeft.Yes && backgroundImageLayout == ImageLayout.None)
- {
- rect.X += clipRect.Width - rect.Width;
- }
- using (SolidBrush brush2 = new SolidBrush(backColor))
- {
- g.FillRectangle(brush2, clipRect);
- }
- if (!clipRect.Contains(rect))
- {
- if (backgroundImageLayout == ImageLayout.Stretch || backgroundImageLayout == ImageLayout.Zoom)
- {
- rect.Intersect(clipRect);
- g.DrawImage(backgroundImage, rect);
- return;
- }
- if (backgroundImageLayout == ImageLayout.None)
- {
- rect.Offset(clipRect.Location);
- Rectangle destRect = rect;
- destRect.Intersect(clipRect);
- Rectangle rectangle3 = new Rectangle(Point.Empty, destRect.Size);
- g.DrawImage(backgroundImage, destRect, rectangle3.X, rectangle3.Y, rectangle3.Width, rectangle3.Height, GraphicsUnit.Pixel);
- return;
- }
- Rectangle rectangle4 = rect;
- rectangle4.Intersect(clipRect);
- Rectangle rectangle5 = new Rectangle(new Point(rectangle4.X - rect.X, rectangle4.Y - rect.Y), rectangle4.Size);
- g.DrawImage(backgroundImage, rectangle4, rectangle5.X, rectangle5.Y, rectangle5.Width, rectangle5.Height, GraphicsUnit.Pixel);
- return;
- }
- else
- {
- ImageAttributes imageAttr = new ImageAttributes();
- imageAttr.SetWrapMode(WrapMode.TileFlipXY);
- g.DrawImage(backgroundImage, rect, 0, 0, backgroundImage.Width, backgroundImage.Height, GraphicsUnit.Pixel, imageAttr);
- imageAttr.Dispose();
- }
- }
- public static void DrawScrollBarTrack(Graphics g, Rectangle rect, Color begin, Color end, Orientation orientation)
- {
- LinearGradientMode mode = (orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
- Blend blend = new Blend();
- Blend arg_2D_0 = blend;
- float[] array = new float[3];
- array[0] = 1f;
- array[1] = 0.5f;
- arg_2D_0.Factors = array;
- blend.Positions = new float[]
- {
- 0f,
- 0.5f,
- 1f
- };
- ControlPaintEx.DrawGradientRect(g, rect, begin, end, begin, begin, blend, mode, true, false);
- }
- public static void DrawScrollBarThumb(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Orientation orientation, bool changeColor)
- {
- if (changeColor)
- {
- Color tmp = begin;
- begin = end;
- end = tmp;
- }
- bool bHorizontal = orientation == Orientation.Horizontal;
- LinearGradientMode mode = bHorizontal ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
- Blend blend = new Blend();
- Blend arg_3D_0 = blend;
- float[] array = new float[3];
- array[0] = 1f;
- array[1] = 0.5f;
- arg_3D_0.Factors = array;
- blend.Positions = new float[]
- {
- 0f,
- 0.5f,
- 1f
- };
- if (bHorizontal)
- {
- rect.Inflate(0, -1);
- }
- else
- {
- rect.Inflate(-1, 0);
- }
- ControlPaintEx.DrawGradientRoundRect(g, rect, begin, end, border, innerBorder, blend, mode, 4, RoundStyle.All, true, true);
- }
- public static void DrawScrollBarArraw(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Color fore, Orientation orientation, ArrowDirection arrowDirection, bool changeColor)
- {
- if (changeColor)
- {
- Color tmp = begin;
- begin = end;
- end = tmp;
- }
- LinearGradientMode mode = (orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
- rect.Inflate(-1, -1);
- Blend blend = new Blend();
- Blend arg_46_0 = blend;
- float[] array = new float[3];
- array[0] = 1f;
- array[1] = 0.5f;
- arg_46_0.Factors = array;
- blend.Positions = new float[]
- {
- 0f,
- 0.5f,
- 1f
- };
- ControlPaintEx.DrawGradientRoundRect(g, rect, begin, end, border, innerBorder, blend, mode, 4, RoundStyle.All, true, true);
- using (SolidBrush brush = new SolidBrush(fore))
- {
- RenderHelper.RenderArrowInternal(g, rect, arrowDirection, brush);
- }
- }
- public static void DrawScrollBarSizer(Graphics g, Rectangle rect, Color begin, Color end)
- {
- Blend blend = new Blend();
- Blend arg_1F_0 = blend;
- float[] array = new float[3];
- array[0] = 1f;
- array[1] = 0.5f;
- arg_1F_0.Factors = array;
- blend.Positions = new float[]
- {
- 0f,
- 0.5f,
- 1f
- };
- ControlPaintEx.DrawGradientRect(g, rect, begin, end, begin, begin, blend, LinearGradientMode.Horizontal, true, false);
- }
- internal static void DrawGradientRect(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Blend blend, LinearGradientMode mode, bool drawBorder, bool drawInnerBorder)
- {
- using (LinearGradientBrush brush = new LinearGradientBrush(rect, begin, end, mode))
- {
- brush.Blend = blend;
- g.FillRectangle(brush, rect);
- }
- if (drawBorder)
- {
- ControlPaint.DrawBorder(g, rect, border, ButtonBorderStyle.Solid);
- }
- if (drawInnerBorder)
- {
- rect.Inflate(-1, -1);
- ControlPaint.DrawBorder(g, rect, border, ButtonBorderStyle.Solid);
- }
- }
- 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)
- {
- using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, radios, roundStyle, true))
- {
- using (LinearGradientBrush brush = new LinearGradientBrush(rect, begin, end, mode))
- {
- brush.Blend = blend;
- g.FillPath(brush, path);
- }
- if (drawBorder)
- {
- using (Pen pen = new Pen(border))
- {
- g.DrawPath(pen, path);
- }
- }
- }
- if (drawInnderBorder)
- {
- rect.Inflate(-1, -1);
- using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, radios, roundStyle, true))
- {
- using (Pen pen2 = new Pen(innerBorder))
- {
- g.DrawPath(pen2, path2);
- }
- }
- }
- }
- internal static Rectangle CalculateBackgroundImageRectangle(Rectangle bounds, Image backgroundImage, ImageLayout imageLayout)
- {
- Rectangle rectangle = bounds;
- if (backgroundImage != null)
- {
- switch (imageLayout)
- {
- case ImageLayout.None:
- rectangle.Size = backgroundImage.Size;
- return rectangle;
- case ImageLayout.Tile:
- return rectangle;
- case ImageLayout.Center:
- {
- rectangle.Size = backgroundImage.Size;
- Size size = bounds.Size;
- if (size.Width > rectangle.Width)
- {
- rectangle.X = (size.Width - rectangle.Width) / 2;
- }
- if (size.Height > rectangle.Height)
- {
- rectangle.Y = (size.Height - rectangle.Height) / 2;
- }
- return rectangle;
- }
- case ImageLayout.Stretch:
- rectangle.Size = bounds.Size;
- return rectangle;
- case ImageLayout.Zoom:
- {
- Size size2 = backgroundImage.Size;
- float num = (float)bounds.Width / (float)size2.Width;
- float num2 = (float)bounds.Height / (float)size2.Height;
- if (num >= num2)
- {
- rectangle.Height = bounds.Height;
- rectangle.Width = (int)((double)((float)size2.Width * num2) + 0.5);
- if (bounds.X >= 0)
- {
- rectangle.X = (bounds.Width - rectangle.Width) / 2;
- }
- return rectangle;
- }
- rectangle.Width = bounds.Width;
- rectangle.Height = (int)((double)((float)size2.Height * num) + 0.5);
- if (bounds.Y >= 0)
- {
- rectangle.Y = (bounds.Height - rectangle.Height) / 2;
- }
- return rectangle;
- }
- }
- }
- return rectangle;
- }
- }
- }
|