/** * Copyright (C) 2014-2017 Philip Helger (www.helger.com) * philip[at]helger[dot]com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.helger.css.decl; import javax.annotation.Nonnegative; import javax.annotation.Nonnull; import javax.annotation.concurrent.NotThreadSafe; import com.helger.commons.ValueEnforcer; import com.helger.commons.annotation.Nonempty; import com.helger.commons.hashcode.HashCodeGenerator; import com.helger.commons.lang.ICloneable; import com.helger.commons.string.ToStringGenerator; import com.helger.css.ECSSVersion; import com.helger.css.ICSSVersionAware; import com.helger.css.ICSSWriteable; import com.helger.css.ICSSWriterSettings; import com.helger.css.propertyvalue.CCSSValue; import com.helger.css.utils.CSSColorHelper; /** * Represents a single HSL color value (hue, saturation, lightness). * * @author Philip Helger */ @NotThreadSafe public class CSSHSL implements ICSSWriteable, ICSSVersionAware, ICSSColor, ICloneable <CSSHSL> { private String m_sHue; private String m_sSaturation; private String m_sLightness; /** * Copy constructor * * @param aOther * The object to copy the data from. May not be <code>null</code>. */ public CSSHSL (@Nonnull final CSSHSL aOther) { this (aOther.getHue (), aOther.getSaturation (), aOther.getLightness ()); } /** * Constructor * * @param nHue * Hue value. Is scaled to the range 0-360 * @param nSaturation * Saturation value. Is cut to the range 0-100 (percentage) * @param nLightness * Lightness value. Is cut to the range 0-100 (percentage) */ public CSSHSL (final int nHue, final int nSaturation, final int nLightness) { this (Integer.toString (CSSColorHelper.getHSLHueValue (nHue)), Integer.toString (CSSColorHelper.getHSLPercentageValue (nSaturation)) + "%", Integer.toString (CSSColorHelper.getHSLPercentageValue (nLightness)) + "%"); } /** * Constructor * * @param fHue * Hue value. Is scaled to the range 0-360 * @param fSaturation * Saturation value. Is cut to the range 0-100 (percentage) * @param fLightness * Lightness value. Is cut to the range 0-100 (percentage) */ public CSSHSL (final float fHue, final float fSaturation, final float fLightness) { this (Float.toString (CSSColorHelper.getHSLHueValue (fHue)), Float.toString (CSSColorHelper.getHSLPercentageValue (fSaturation)) + "%", Float.toString (CSSColorHelper.getHSLPercentageValue (fLightness)) + "%"); } public CSSHSL (@Nonnull @Nonempty final String sHue, @Nonnull @Nonempty final String sSaturation, @Nonnull @Nonempty final String sLightness) { setHue (sHue); setSaturation (sSaturation); setLightness (sLightness); } /** * @return hue part */ @Nonnull @Nonempty public String getHue () { return m_sHue; } @Nonnull public CSSHSL setHue (@Nonnull @Nonempty final String sHue) { ValueEnforcer.notEmpty (sHue, "Hue"); m_sHue = sHue; return this; } /** * @return saturation part */ @Nonnull @Nonempty public String getSaturation () { return m_sSaturation; } @Nonnull public CSSHSL setSaturation (@Nonnull @Nonempty final String sSaturation) { ValueEnforcer.notEmpty (sSaturation, "Saturation"); m_sSaturation = sSaturation; return this; } /** * @return lightness part */ @Nonnull @Nonempty public String getLightness () { return m_sLightness; } @Nonnull public CSSHSL setLightness (@Nonnull @Nonempty final String sLightness) { ValueEnforcer.notEmpty (sLightness, "Lightness"); m_sLightness = sLightness; return this; } /** * Convert this value to an HSLA value. * * @param fOpacity * Opacity part. Is fitted to a value between 0 and 1. * @return This value as HSLA value with the passed opacity. Never * <code>null</code>. * @since 3.8.3 */ @Nonnull public CSSHSLA getAsHSLA (final float fOpacity) { return new CSSHSLA (this, fOpacity); } /** * Convert this value to an HSLA value. * * @param sOpacity * Opacity part. May neither be <code>null</code> nor empty. * @return This value as HSLA value with the passed opacity. Never * <code>null</code>. * @since 3.8.3 */ @Nonnull public CSSHSLA getAsHSLA (@Nonnull @Nonempty final String sOpacity) { return new CSSHSLA (this, sOpacity); } /** * {@inheritDoc} * * @since 3.8.3 */ @Nonnull @Nonempty public String getAsString () { return CCSSValue.PREFIX_HSL_OPEN + m_sHue + ',' + m_sSaturation + ',' + m_sLightness + CCSSValue.SUFFIX_HSL_CLOSE; } @Nonnull @Nonempty public String getAsCSSString (@Nonnull final ICSSWriterSettings aSettings, @Nonnegative final int nIndentLevel) { aSettings.checkVersionRequirements (this); return getAsString (); } @Nonnull public ECSSVersion getMinimumCSSVersion () { return ECSSVersion.CSS30; } /** * {@inheritDoc} * * @since 3.8.3 */ @Nonnull public CSSHSL getClone () { return new CSSHSL (this); } @Override public boolean equals (final Object o) { if (o == this) return true; if (o == null || !getClass ().equals (o.getClass ())) return false; final CSSHSL rhs = (CSSHSL) o; return m_sHue.equals (rhs.m_sHue) && m_sSaturation.equals (rhs.m_sSaturation) && m_sLightness.equals (rhs.m_sLightness); } @Override public int hashCode () { return new HashCodeGenerator (this).append (m_sHue).append (m_sSaturation).append (m_sLightness).getHashCode (); } @Override public String toString () { return new ToStringGenerator (this).append ("hue", m_sHue) .append ("saturation", m_sSaturation) .append ("lightness", m_sLightness) .getToString (); } }