Newer
Older
ClosedXML / ClosedXML / Excel / Style / XLAlignment.cs
@Aleksei Aleksei on 15 Mar 2018 8 KB Auto format
#region

using System;
using System.Text;

#endregion

namespace ClosedXML.Excel
{
    internal class XLAlignment : IXLAlignment
    {
        #region Static members

        internal static XLAlignmentKey GenerateKey(IXLAlignment d)
        {
            XLAlignmentKey key;
            if (d == null)
            {
                key = XLAlignmentValue.Default.Key;
            }
            else if (d is XLAlignment)
            {
                key = (d as XLAlignment).Key;
            }
            else
            {
                key = new XLAlignmentKey
                {
                    Horizontal = d.Horizontal,
                    Vertical = d.Vertical,
                    Indent = d.Indent,
                    JustifyLastLine = d.JustifyLastLine,
                    ReadingOrder = d.ReadingOrder,
                    RelativeIndent = d.RelativeIndent,
                    ShrinkToFit = d.ShrinkToFit,
                    TextRotation = d.TextRotation,
                    WrapText = d.WrapText
                };
            }
            return key;
        }

        #endregion Static members

        #region Properties
        private readonly XLStyle _style;

        private XLAlignmentValue _value;

        internal XLAlignmentKey Key
        {
            get { return _value.Key; }
            private set { _value = XLAlignmentValue.FromKey(value); }
        }

        #endregion Properties

        #region Constructors

        /// <summary>
        /// Create an instance of XLAlignment initializing it with the specified value.
        /// </summary>
        /// <param name="style">Style to attach the new instance to.</param>
        /// <param name="value">Style value to use.</param>
        public XLAlignment(XLStyle style, XLAlignmentValue value)
        {
            _style = style ?? XLStyle.CreateEmptyStyle();
            _value = value;
        }

        public XLAlignment(XLStyle style, XLAlignmentKey key) : this(style, XLAlignmentValue.FromKey(key))
        {
        }

        public XLAlignment(XLStyle style = null, IXLAlignment d = null) : this(style, GenerateKey(d))
        {
        }

        #endregion Constructors

        #region IXLAlignment Members

        public XLAlignmentHorizontalValues Horizontal
        {
            get { return Key.Horizontal; }
            set
            {
                Boolean updateIndent = !(
                                               value == XLAlignmentHorizontalValues.Left
                                            || value == XLAlignmentHorizontalValues.Right
                                            || value == XLAlignmentHorizontalValues.Distributed
                                        );

                Modify(k => { k.Horizontal = value; return k; });
                if (updateIndent)
                    Indent = 0;
            }
        }

        public XLAlignmentVerticalValues Vertical
        {
            get { return Key.Vertical; }
            set { Modify(k => { k.Vertical = value; return k; }); }
        }

        public Int32 Indent
        {
            get { return Key.Indent; }
            set
            {
                if (Indent != value)
                {
                    if (Horizontal == XLAlignmentHorizontalValues.General)
                        Horizontal = XLAlignmentHorizontalValues.Left;

                    if (value > 0 && !(
                                       Horizontal == XLAlignmentHorizontalValues.Left
                                    || Horizontal == XLAlignmentHorizontalValues.Right
                                    || Horizontal == XLAlignmentHorizontalValues.Distributed
                                ))
                    {
                        throw new ArgumentException(
                            "For indents, only left, right, and distributed horizontal alignments are supported.");
                    }
                }
                Modify(k => { k.Indent = value; return k; });
            }
        }

        public Boolean JustifyLastLine
        {
            get { return Key.JustifyLastLine; }
            set { Modify(k => { k.JustifyLastLine = value; return k; }); }
        }

        public XLAlignmentReadingOrderValues ReadingOrder
        {
            get { return Key.ReadingOrder; }
            set { Modify(k => { k.ReadingOrder = value; return k; }); }
        }

        public Int32 RelativeIndent
        {
            get { return Key.RelativeIndent; }
            set { Modify(k => { k.RelativeIndent = value; return k; }); }
        }

        public Boolean ShrinkToFit
        {
            get { return Key.ShrinkToFit; }
            set { Modify(k => { k.ShrinkToFit = value; return k; }); }
        }

        public Int32 TextRotation
        {
            get { return Key.TextRotation; }
            set
            {
                Int32 rotation = value;

                if (rotation != 255 && (rotation < -90 || rotation > 180))
                    throw new ArgumentException("TextRotation must be between -90 and 180 degrees, or 255.");

                Modify(k => { k.TextRotation = rotation; return k; });
            }
        }

        public Boolean WrapText
        {
            get { return Key.WrapText; }
            set { Modify(k => { k.WrapText = value; return k; }); }
        }

        public Boolean TopToBottom
        {
            get { return TextRotation == 255; }
            set { TextRotation = value ? 255 : 0; }
        }

        public IXLStyle SetHorizontal(XLAlignmentHorizontalValues value)
        {
            Horizontal = value;
            return _style;
        }

        public IXLStyle SetVertical(XLAlignmentVerticalValues value)
        {
            Vertical = value;
            return _style;
        }

        public IXLStyle SetIndent(Int32 value)
        {
            Indent = value;
            return _style;
        }

        public IXLStyle SetJustifyLastLine()
        {
            JustifyLastLine = true;
            return _style;
        }

        public IXLStyle SetJustifyLastLine(Boolean value)
        {
            JustifyLastLine = value;
            return _style;
        }

        public IXLStyle SetReadingOrder(XLAlignmentReadingOrderValues value)
        {
            ReadingOrder = value;
            return _style;
        }

        public IXLStyle SetRelativeIndent(Int32 value)
        {
            RelativeIndent = value;
            return _style;
        }

        public IXLStyle SetShrinkToFit()
        {
            ShrinkToFit = true;
            return _style;
        }

        public IXLStyle SetShrinkToFit(Boolean value)
        {
            ShrinkToFit = value;
            return _style;
        }

        public IXLStyle SetTextRotation(Int32 value)
        {
            TextRotation = value;
            return _style;
        }

        public IXLStyle SetWrapText()
        {
            WrapText = true;
            return _style;
        }

        public IXLStyle SetWrapText(Boolean value)
        {
            WrapText = value;
            return _style;
        }

        public IXLStyle SetTopToBottom()
        {
            TopToBottom = true;
            return _style;
        }

        public IXLStyle SetTopToBottom(Boolean value)
        {
            TopToBottom = value;
            return _style;
        }

        #endregion

        private void Modify(Func<XLAlignmentKey, XLAlignmentKey> modification)
        {
            Key = modification(Key);

            _style.Modify(styleKey =>
            {
                var align = styleKey.Alignment;
                styleKey.Alignment = modification(align);
                return styleKey;
            });
        }

        #region Overridden

        public override string ToString()
        {
            var sb = new StringBuilder();
            sb.Append(Horizontal);
            sb.Append("-");
            sb.Append(Vertical);
            sb.Append("-");
            sb.Append(Indent);
            sb.Append("-");
            sb.Append(JustifyLastLine);
            sb.Append("-");
            sb.Append(ReadingOrder);
            sb.Append("-");
            sb.Append(RelativeIndent);
            sb.Append("-");
            sb.Append(ShrinkToFit);
            sb.Append("-");
            sb.Append(TextRotation);
            sb.Append("-");
            sb.Append(WrapText);
            sb.Append("-");
            return sb.ToString();
        }

        public override bool Equals(object obj)
        {
            return Equals(obj as XLAlignment);
        }

        public bool Equals(IXLAlignment other)
        {
            var otherA = other as XLAlignment;
            if (otherA == null)
                return false;

            return Key == otherA.Key;
        }

        public override int GetHashCode()
        {
            var hashCode = 1214962009;
            hashCode = hashCode * -1521134295 + Key.GetHashCode();
            return hashCode;
        }

        #endregion Overridden
    }
}