ShareX/ShareX.HelpersLib/Colors/HSB.cs
2023-01-09 23:31:02 +03:00

193 lines
4.7 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2023 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 ShareX.HelpersLib.Properties;
using System.Drawing;
namespace ShareX.HelpersLib
{
public struct HSB
{
private double hue;
private double saturation;
private double brightness;
private int alpha;
public double Hue
{
get
{
return hue;
}
set
{
hue = ColorHelpers.ValidColor(value);
}
}
public double Hue360
{
get
{
return hue * 360;
}
set
{
hue = ColorHelpers.ValidColor(value / 360);
}
}
public double Saturation
{
get
{
return saturation;
}
set
{
saturation = ColorHelpers.ValidColor(value);
}
}
public double Saturation100
{
get
{
return saturation * 100;
}
set
{
saturation = ColorHelpers.ValidColor(value / 100);
}
}
public double Brightness
{
get
{
return brightness;
}
set
{
brightness = ColorHelpers.ValidColor(value);
}
}
public double Brightness100
{
get
{
return brightness * 100;
}
set
{
brightness = ColorHelpers.ValidColor(value / 100);
}
}
public int Alpha
{
get
{
return alpha;
}
set
{
alpha = ColorHelpers.ValidColor(value);
}
}
public HSB(double hue, double saturation, double brightness, int alpha = 255) : this()
{
Hue = hue;
Saturation = saturation;
Brightness = brightness;
Alpha = alpha;
}
public HSB(int hue, int saturation, int brightness, int alpha = 255) : this()
{
Hue360 = hue;
Saturation100 = saturation;
Brightness100 = brightness;
Alpha = alpha;
}
public HSB(Color color)
{
this = ColorHelpers.ColorToHSB(color);
}
public static implicit operator HSB(Color color)
{
return ColorHelpers.ColorToHSB(color);
}
public static implicit operator Color(HSB color)
{
return color.ToColor();
}
public static implicit operator RGBA(HSB color)
{
return color.ToColor();
}
public static implicit operator CMYK(HSB color)
{
return color.ToColor();
}
public static bool operator ==(HSB left, HSB right)
{
return (left.Hue == right.Hue) && (left.Saturation == right.Saturation) && (left.Brightness == right.Brightness);
}
public static bool operator !=(HSB left, HSB right)
{
return !(left == right);
}
public override string ToString()
{
return string.Format(Resources.HSB_ToString_, Hue360, Saturation100, Brightness100);
}
public Color ToColor()
{
return ColorHelpers.HSBToColor(this);
}
public override int GetHashCode()
{
return base.GetHashCode();
}
public override bool Equals(object obj)
{
return base.Equals(obj);
}
}
}