ShareX/ShareX.HelpersLib/Controls/BlackStyle/BlackStyleProgressBar.cs
2018-01-01 17:59:14 +03:00

188 lines
6 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2018 ShareX Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace ShareX.HelpersLib
{
public class BlackStyleProgressBar : Control
{
public int Maximum
{
get
{
return maximum;
}
set
{
if (maximum != value)
{
if (value < 0)
{
throw new ArgumentOutOfRangeException("Maximum");
}
if (minimum > value)
{
minimum = value;
}
maximum = value;
if (this.value > maximum)
{
this.value = maximum;
}
Refresh();
}
}
}
public int Minimum
{
get
{
return minimum;
}
set
{
if (minimum != value)
{
if (value < 0)
{
throw new ArgumentOutOfRangeException("Minimum");
}
if (maximum < value)
{
maximum = value;
}
minimum = value;
if (this.value < minimum)
{
this.value = minimum;
}
Refresh();
}
}
}
public int Value
{
get
{
return value;
}
set
{
if (this.value != value)
{
if ((value < minimum) || (value > maximum))
{
throw new ArgumentOutOfRangeException("Value");
}
this.value = value;
Refresh();
}
}
}
private int maximum, minimum, value;
public BlackStyleProgressBar()
{
SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw | ControlStyles.OptimizedDoubleBuffer | ControlStyles.SupportsTransparentBackColor, true);
maximum = 100;
minimum = 0;
value = 50;
}
protected override void OnPaint(PaintEventArgs pe)
{
base.OnPaint(pe);
Graphics g = pe.Graphics;
DrawBackground(g);
if (Value > Minimum && Value <= Maximum)
{
DrawProgressBar(g);
}
}
private void DrawBackground(Graphics g)
{
using (LinearGradientBrush backgroundBrush = new LinearGradientBrush(new Rectangle(1, 1, ClientSize.Width - 2, ClientSize.Height - 2),
Color.FromArgb(50, 50, 50), Color.FromArgb(60, 60, 60), LinearGradientMode.Vertical))
{
g.FillRectangle(backgroundBrush, new Rectangle(1, 1, ClientSize.Width - 2, ClientSize.Height - 2));
}
using (Pen borderShadowPen = new Pen(Color.FromArgb(45, 45, 45)))
{
g.DrawLine(borderShadowPen, new Point(1, 1), new Point(ClientSize.Width - 2, 1));
g.DrawLine(borderShadowPen, new Point(ClientSize.Width - 2, 1), new Point(ClientSize.Width - 2, ClientSize.Height - 2));
}
using (Pen borderPen = new Pen(Color.FromArgb(30, 30, 30)))
{
g.DrawRectangle(borderPen, new Rectangle(0, 0, ClientSize.Width - 1, ClientSize.Height - 1));
}
}
private void DrawProgressBar(Graphics g)
{
double progressBarSize = (double)Value / Maximum * (ClientSize.Width - 2);
Rectangle progressBarRect = new Rectangle(1, 1, (int)progressBarSize, ClientSize.Height - 2);
using (LinearGradientBrush progressBarBrush = new LinearGradientBrush(progressBarRect, Color.Black, Color.Black, LinearGradientMode.Vertical))
{
ColorBlend cb = new ColorBlend();
cb.Positions = new float[] { 0, 0.49f, 0.50f, 1 };
cb.Colors = new Color[] { Color.FromArgb(102, 163, 226), Color.FromArgb(83, 135, 186), Color.FromArgb(75, 121, 175), Color.FromArgb(56, 93, 135) };
progressBarBrush.InterpolationColors = cb;
g.FillRectangle(progressBarBrush, progressBarRect);
}
using (LinearGradientBrush innerBorderBrush = new LinearGradientBrush(progressBarRect, Color.FromArgb(133, 192, 241), Color.FromArgb(76, 119, 163), LinearGradientMode.Vertical))
using (Pen innerBorderPen = new Pen(innerBorderBrush))
{
g.DrawRectangle(innerBorderPen, new Rectangle(progressBarRect.X, progressBarRect.Y, progressBarRect.Width - 1, progressBarRect.Height - 1));
}
}
}
}