namespace SRDebugger.UI.Other
{
    using System;
    using Controls;
    using SRF;
    using UnityEngine;
    using UnityEngine.Serialization;
    public class SRTab : SRMonoBehaviourEx
    {
        /// 
        /// Content that will be added to the content area of the header
        /// 
        public RectTransform HeaderExtraContent;
        [Obsolete] [HideInInspector] public Sprite Icon;
        /// 
        /// Content that will be added to the content area of the tab button
        /// 
        public RectTransform IconExtraContent;
        public string IconStyleKey = "Icon_Stompy";
        public int SortIndex;
        [HideInInspector] public SRTabButton TabButton;
        public string Title
        {
            get { return _title; }
        }
        public string LongTitle
        {
            get { return !string.IsNullOrEmpty(_longTitle) ? _longTitle : _title; }
        }
        public string Key
        {
            get { return _key; }
        }
#pragma warning disable 649
        [SerializeField] [FormerlySerializedAs("Title")] private string _title;
        [SerializeField] private string _longTitle;
        [SerializeField] private string _key;
#pragma warning restore 649
    }
}