using System;
using UnityEngine;
namespace FairyGUI
{
    /// 
    /// 
    /// 
    public class PopupMenu : EventDispatcher
    {
        protected GComponent _contentPane;
        protected GList _list;
        protected GObject _expandingItem;
        PopupMenu _parentMenu;
        TimerCallback _showSubMenu;
        TimerCallback _closeSubMenu;
        EventListener _onPopup;
        EventListener _onClose;
        public int visibleItemCount;
        public bool hideOnClickItem;
        public bool autoSize;
        const string EVENT_TYPE = "PopupMenuItemClick";
        public PopupMenu()
        {
            Create(null);
        }
        /// 
        /// 
        /// 
        /// 
        public PopupMenu(string resourceURL)
        {
            Create(resourceURL);
        }
        public EventListener onPopup
        {
            get { return _onPopup ?? (_onPopup = new EventListener(this, "onPopup")); }
        }
        public EventListener onClose
        {
            get { return _onClose ?? (_onClose = new EventListener(this, "onClose")); }
        }
        void Create(string resourceURL)
        {
            if (resourceURL == null)
            {
                resourceURL = UIConfig.popupMenu;
                if (resourceURL == null)
                {
                    Debug.LogError("FairyGUI: UIConfig.popupMenu not defined");
                    return;
                }
            }
            _contentPane = UIPackage.CreateObjectFromURL(resourceURL).asCom;
            _contentPane.onAddedToStage.Add(__addedToStage);
            _contentPane.onRemovedFromStage.Add(__removeFromStage);
            _contentPane.focusable = false;
            _list = _contentPane.GetChild("list").asList;
            _list.RemoveChildrenToPool();
            _list.AddRelation(_contentPane, RelationType.Width);
            _list.RemoveRelation(_contentPane, RelationType.Height);
            _contentPane.AddRelation(_list, RelationType.Height);
            _list.onClickItem.Add(__clickItem);
            hideOnClickItem = true;
            _showSubMenu = __showSubMenu;
            _closeSubMenu = CloseSubMenu;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        public GButton AddItem(string caption, EventCallback0 callback)
        {
            GButton item = CreateItem(caption, callback);
            _list.AddChild(item);
            return item;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        public GButton AddItem(string caption, EventCallback1 callback)
        {
            GButton item = CreateItem(caption, callback);
            _list.AddChild(item);
            return item;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        public GButton AddItemAt(string caption, int index, EventCallback1 callback)
        {
            GButton item = CreateItem(caption, callback);
            _list.AddChildAt(item, index);
            return item;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        public GButton AddItemAt(string caption, int index, EventCallback0 callback)
        {
            GButton item = CreateItem(caption, callback);
            _list.AddChildAt(item, index);
            return item;
        }
        GButton CreateItem(string caption, Delegate callback)
        {
            GButton item = _list.GetFromPool(_list.defaultItem).asButton;
            item.title = caption;
            item.grayed = false;
            Controller c = item.GetController("checked");
            if (c != null)
                c.selectedIndex = 0;
            item.RemoveEventListeners(EVENT_TYPE);
            if (callback is EventCallback0)
                item.AddEventListener(EVENT_TYPE, (EventCallback0)callback);
            else
                item.AddEventListener(EVENT_TYPE, (EventCallback1)callback);
            item.onRollOver.Add(__rollOver);
            item.onRollOut.Add(__rollOut);
            return item;
        }
        /// 
        /// 
        /// 
        public void AddSeperator()
        {
            AddSeperator(-1);
        }
        /// 
        /// 
        /// 
        public void AddSeperator(int index)
        {
            if (UIConfig.popupMenu_seperator == null)
            {
                Debug.LogError("FairyGUI: UIConfig.popupMenu_seperator not defined");
                return;
            }
            if (index == -1)
                _list.AddItemFromPool(UIConfig.popupMenu_seperator);
            else
            {
                GObject item = _list.GetFromPool(UIConfig.popupMenu_seperator);
                _list.AddChildAt(item, index);
            }
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public string GetItemName(int index)
        {
            GButton item = _list.GetChildAt(index).asButton;
            return item.name;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public void SetItemText(string name, string caption)
        {
            GButton item = _list.GetChild(name).asButton;
            item.title = caption;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public void SetItemVisible(string name, bool visible)
        {
            GButton item = _list.GetChild(name).asButton;
            if (item.visible != visible)
            {
                item.visible = visible;
                _list.SetBoundsChangedFlag();
            }
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public void SetItemGrayed(string name, bool grayed)
        {
            GButton item = _list.GetChild(name).asButton;
            item.grayed = grayed;
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public void SetItemCheckable(string name, bool checkable)
        {
            GButton item = _list.GetChild(name).asButton;
            Controller c = item.GetController("checked");
            if (c != null)
            {
                if (checkable)
                {
                    if (c.selectedIndex == 0)
                        c.selectedIndex = 1;
                }
                else
                    c.selectedIndex = 0;
            }
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public void SetItemChecked(string name, bool check)
        {
            GButton item = _list.GetChild(name).asButton;
            Controller c = item.GetController("checked");
            if (c != null)
                c.selectedIndex = check ? 2 : 1;
        }
        [Obsolete("Use IsItemChecked instead")]
        public bool isItemChecked(string name)
        {
            return IsItemChecked(name);
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public bool IsItemChecked(string name)
        {
            GButton item = _list.GetChild(name).asButton;
            Controller c = item.GetController("checked");
            if (c != null)
                return c.selectedIndex == 2;
            else
                return false;
        }
        /// 
        /// 
        /// 
        /// 
        public void RemoveItem(string name)
        {
            GComponent item = _list.GetChild(name).asCom;
            if (item != null)
            {
                item.RemoveEventListeners(EVENT_TYPE);
                if (item.data is PopupMenu)
                {
                    ((PopupMenu)item.data).Dispose();
                    item.data = null;
                }
                int index = _list.GetChildIndex(item);
                _list.RemoveChildToPoolAt(index);
            }
        }
        /// 
        /// 
        /// 
        public void ClearItems()
        {
            _list.RemoveChildrenToPool();
        }
        /// 
        /// 
        /// 
        public int itemCount
        {
            get { return _list.numChildren; }
        }
        /// 
        /// 
        /// 
        public GComponent contentPane
        {
            get { return _contentPane; }
        }
        /// 
        /// 
        /// 
        public GList list
        {
            get { return _list; }
        }
        public void Dispose()
        {
            int cnt = _list.numChildren;
            for (int i = 0; i < cnt; i++)
            {
                GObject obj = _list.GetChildAt(i);
                if (obj.data is PopupMenu)
                    ((PopupMenu)obj.data).Dispose();
            }
            _contentPane.Dispose();
        }
        /// 
        /// 
        /// 
        public void Show()
        {
            Show(null, PopupDirection.Auto);
        }
        /// 
        /// 
        /// 
        /// 
        public void Show(GObject target)
        {
            Show(target, PopupDirection.Auto, null);
        }
        [Obsolete]
        public void Show(GObject target, object downward)
        {
            Show(target, downward == null ? PopupDirection.Auto : ((bool)downward == true ? PopupDirection.Down : PopupDirection.Up), null);
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        public void Show(GObject target, PopupDirection dir)
        {
            Show(target, PopupDirection.Auto, null);
        }
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        public void Show(GObject target, PopupDirection dir, PopupMenu parentMenu)
        {
            GRoot r = target != null ? target.root : GRoot.inst;
            r.ShowPopup(this.contentPane, (target is GRoot) ? null : target, dir);
            _parentMenu = parentMenu;
        }
        public void Hide()
        {
            if (contentPane.parent != null)
                ((GRoot)contentPane.parent).HidePopup(contentPane);
        }
        void ShowSubMenu(GObject item)
        {
            _expandingItem = item;
            PopupMenu popup = item.data as PopupMenu;
            if (item is GButton)
                ((GButton)item).selected = true;
            popup.Show(item, PopupDirection.Auto, this);
            Vector2 pt = contentPane.LocalToRoot(new Vector2(item.x + item.width - 5, item.y - 5), item.root);
            popup.contentPane.position = pt;
        }
        void CloseSubMenu(object param)
        {
            if (contentPane.isDisposed)
                return;
            if (_expandingItem == null)
                return;
            if (_expandingItem is GButton)
                ((GButton)_expandingItem).selected = false;
            PopupMenu popup = (PopupMenu)_expandingItem.data;
            if (popup == null)
                return;
            _expandingItem = null;
            popup.Hide();
        }
        private void __clickItem(EventContext context)
        {
            GButton item = ((GObject)context.data).asButton;
            if (item == null)
                return;
            if (item.grayed)
            {
                _list.selectedIndex = -1;
                return;
            }
            Controller c = item.GetController("checked");
            if (c != null && c.selectedIndex != 0)
            {
                if (c.selectedIndex == 1)
                    c.selectedIndex = 2;
                else
                    c.selectedIndex = 1;
            }
            if (hideOnClickItem)
            {
                if (_parentMenu != null)
                    _parentMenu.Hide();
                Hide();
            }
            item.DispatchEvent(EVENT_TYPE, item); //event data is for backward compatibility 
        }
        void __addedToStage()
        {
            DispatchEvent("onPopup", null);
            if (autoSize)
            {
                _list.EnsureBoundsCorrect();
                int cnt = _list.numChildren;
                float maxDelta = -1000;
                for (int i = 0; i < cnt; i++)
                {
                    GButton obj = _list.GetChildAt(i).asButton;
                    if (obj == null)
                        continue;
                    GTextField tf = obj.GetTextField();
                    if (tf != null)
                    {
                        float v = tf.textWidth - tf.width;
                        if (v > maxDelta)
                            maxDelta = v;
                    }
                }
                if (contentPane.width + maxDelta > contentPane.initWidth)
                    contentPane.width += maxDelta;
                else
                    contentPane.width = contentPane.initWidth;
            }
            _list.selectedIndex = -1;
            _list.ResizeToFit(visibleItemCount > 0 ? visibleItemCount : int.MaxValue, 10);
        }
        void __removeFromStage()
        {
            _parentMenu = null;
            if (_expandingItem != null)
                Timers.inst.Add(0, 1, _closeSubMenu);
            DispatchEvent("onClose", null);
        }
        void __rollOver(EventContext context)
        {
            GObject item = (GObject)context.sender;
            if ((item.data is PopupMenu) || _expandingItem != null)
            {
                Timers.inst.Add(0.1f, 1, _showSubMenu, item);
            }
        }
        void __showSubMenu(object param)
        {
            if (contentPane.isDisposed)
                return;
            GObject item = (GObject)param;
            GRoot r = contentPane.root;
            if (r == null)
                return;
            if (_expandingItem != null)
            {
                if (_expandingItem == item)
                    return;
                CloseSubMenu(null);
            }
            PopupMenu popup = item.data as PopupMenu;
            if (popup == null)
                return;
            ShowSubMenu(item);
        }
        void __rollOut(EventContext context)
        {
            if (_expandingItem == null)
                return;
            Timers.inst.Remove(_showSubMenu);
            GRoot r = contentPane.root;
            if (r != null)
            {
                PopupMenu popup = (PopupMenu)_expandingItem.data;
                Vector2 pt = popup.contentPane.GlobalToLocal(context.inputEvent.position);
                if (pt.x >= 0 && pt.y >= 0 && pt.x < popup.contentPane.width && pt.y < popup.contentPane.height)
                    return;
            }
            CloseSubMenu(null);
        }
    }
}