123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- /*
- http://www.cgsoso.com/forum-211-1.html
- CG搜搜 Unity3d 每日Unity3d插件免费更新 更有VIP资源!
- CGSOSO 主打游戏开发,影视设计等CG资源素材。
- 插件如若商用,请务必官网购买!
- daily assets update for try.
- U should buy the asset from home store if u use it in your project!
- */
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.EventSystems;
- using UnityEngine.UI;
- namespace Paroxe.PdfRenderer.Internal.Viewer
- {
- public class PDFBookmarkListItem : UIBehaviour
- {
- public Sprite m_CollapseSprite;
- public Image m_ExpandImage;
- public Sprite m_ExpandSprite;
- public Image m_Highlighted;
- public RectTransform m_HorizontalLine;
- public RectTransform m_Internal;
- public RectTransform m_NextSibling;
- public Text m_Title;
- public RectTransform m_VerticalLine;
- public RectTransform m_VerticalLine2;
- #if !UNITY_WEBGL
- private CanvasGroup m_CanvasGroup;
- private List<PDFBookmarkListItem> m_ChildrenItems;
- private bool m_Expanded;
- private bool m_Initialized;
- private bool m_IsLastSibling = false;
- private float m_LastClickTimestamp = 0.0f;
- private LayoutElement m_LayoutElement;
- private PDFBookmark m_PDFBookmark;
- private RectTransform m_RectTransform;
- private int m_SizeAdjusted = 0;
- public void Initilize(PDFBookmark bookmark, int indent, bool lastSibling)
- {
- m_ChildrenItems = new List<PDFBookmarkListItem>();
- m_IsLastSibling = lastSibling;
- m_PDFBookmark = bookmark;
- m_HorizontalLine.gameObject.SetActive(true);
- m_VerticalLine.gameObject.SetActive(false);
- m_VerticalLine2.gameObject.SetActive(true);
- m_ExpandImage.gameObject.SetActive(true);
- if (m_PDFBookmark.IsTopLevelBookmark && m_PDFBookmark.ChildCount == 0)
- {
- m_HorizontalLine.gameObject.SetActive(false);
- m_ExpandImage.gameObject.SetActive(false);
- }
- else if (m_PDFBookmark.ChildCount > 0)
- {
- m_HorizontalLine.gameObject.SetActive(true);
- m_ExpandImage.gameObject.SetActive(true);
- }
- else if (!m_PDFBookmark.IsTopLevelBookmark)
- {
- m_HorizontalLine.gameObject.SetActive(true);
- m_HorizontalLine.offsetMin = new Vector2(m_HorizontalLine.offsetMin.x + 6, m_HorizontalLine.offsetMin.y);
- if (!m_IsLastSibling)
- {
- m_VerticalLine2.gameObject.SetActive(true);
- }
- m_ExpandImage.gameObject.SetActive(false);
- }
- m_Title.text = m_PDFBookmark.GetTitle();
- name = m_Title.text.Substring(0, Mathf.Min(24, m_Title.text.Length));
- for (int i = 0; i < m_PDFBookmark.ChildCount; ++i)
- {
- PDFBookmark child = m_PDFBookmark.GetChild(i);
- PDFBookmarkListItem item = ((GameObject) Instantiate(gameObject)).GetComponent<PDFBookmarkListItem>();
- m_ChildrenItems.Add(item);
- RectTransform itemTransform = item.transform as RectTransform;
- itemTransform.SetParent(transform.parent);
- itemTransform.localScale = Vector3.one;
- itemTransform.anchorMin = new Vector2(0.0f, 1.0f);
- itemTransform.anchorMax = new Vector2(0.0f, 1.0f);
- itemTransform.offsetMin = Vector2.zero;
- itemTransform.offsetMax = Vector2.zero;
- item.Initilize(child, indent + 1, i == m_PDFBookmark.ChildCount - 1);
- if (indent == 0)
- {
- StartCoroutine(SetVisible());
- //item.gameObject.SetActive(true);
- item.m_CanvasGroup.alpha = 0.0f;
- }
- }
- for (int i = 0; i < m_ChildrenItems.Count - 1; ++i)
- {
- m_ChildrenItems[i].m_NextSibling = m_ChildrenItems[i + 1].gameObject.transform as RectTransform;
- }
- m_Internal.offsetMin = new Vector2(20.0f*indent, m_Internal.offsetMin.y);
- m_Initialized = true;
- m_SizeAdjusted = 1;
- }
- public void OnExpandButton()
- {
- if (m_PDFBookmark.ChildCount > 0)
- {
- m_Expanded = !m_Expanded;
- m_VerticalLine.gameObject.SetActive(m_Expanded);
- m_ExpandImage.sprite = m_Expanded ? m_CollapseSprite : m_ExpandSprite;
- foreach (PDFBookmarkListItem child in m_ChildrenItems)
- {
- child.SetState(m_Expanded);
- }
- }
- }
- public void OnItemClicked()
- {
- if (Time.fixedTime - m_LastClickTimestamp < 0.5f)
- {
- OnExpandButton();
- }
- m_LastClickTimestamp = Time.fixedTime;
- PDFBookmarksViewer booksmarkViewer = GetComponentInParent<PDFBookmarksViewer>();
- if (booksmarkViewer.m_LastHighlightedImage != null)
- {
- booksmarkViewer.m_LastHighlightedImage.gameObject.SetActive(false);
- }
- m_Highlighted.gameObject.SetActive(true);
- booksmarkViewer.m_LastHighlightedImage = m_Highlighted;
- m_PDFBookmark.ExecuteBookmarkAction();
- }
- public void SetState(bool active)
- {
- gameObject.SetActive(active);
- if (active)
- {
- StartCoroutine(SetVisible());
- }
- if (m_ChildrenItems.Count > 0)
- {
- m_VerticalLine.gameObject.SetActive(!active);
- m_ExpandImage.sprite = !active ? m_CollapseSprite : m_ExpandSprite;
- }
- if (!active)
- {
- foreach (PDFBookmarkListItem child in m_ChildrenItems)
- {
- child.SetState(active);
- }
- }
- }
- protected override void OnEnable()
- {
- m_RectTransform = transform as RectTransform;
- m_LayoutElement = GetComponent<LayoutElement>();
- m_CanvasGroup = GetComponent<CanvasGroup>();
- if (m_CanvasGroup == null)
- {
- m_CanvasGroup = gameObject.AddComponent<CanvasGroup>();
- m_CanvasGroup.interactable = true;
- m_CanvasGroup.blocksRaycasts = true;
- }
- m_CanvasGroup.alpha = 1.0f;
- }
- private IEnumerator SetVisible()
- {
- m_CanvasGroup.alpha = 0.0f;
- yield return new WaitForSeconds(1.0f/60.0f);
- m_CanvasGroup.alpha = 1.0f;
- }
- void Update()
- {
- if (m_Initialized && m_SizeAdjusted == 0)
- {
- m_LayoutElement.preferredHeight = m_Title.preferredHeight + 20.0f;
- if (m_VerticalLine.gameObject.activeInHierarchy)
- {
- m_VerticalLine.sizeDelta = new Vector2(1.0f, m_LayoutElement.preferredHeight);
- }
- if (!m_PDFBookmark.IsTopLevelBookmark)
- {
- gameObject.SetActive(false);
- }
- m_SizeAdjusted = -1;
- }
- else if (m_SizeAdjusted > 0)
- {
- m_SizeAdjusted--;
- }
- if (m_Initialized && m_SizeAdjusted <= -1)
- {
- m_LayoutElement.preferredHeight = m_Title.preferredHeight + 20.0f;
- if (m_VerticalLine.gameObject.activeInHierarchy)
- {
- m_VerticalLine.sizeDelta = new Vector2(1.0f, m_LayoutElement.preferredHeight);
- }
- if (m_NextSibling != null)
- {
- if (m_VerticalLine2.gameObject.activeInHierarchy)
- {
- float newHeight =
- Mathf.Abs((m_NextSibling.anchoredPosition - m_RectTransform.anchoredPosition).y);
- m_VerticalLine2.sizeDelta = new Vector2(1.0f, newHeight);
- }
- }
- else if (m_VerticalLine2.gameObject.activeInHierarchy)
- {
- m_VerticalLine2.gameObject.SetActive(false);
- }
- if (m_SizeAdjusted == -1)
- {
- m_SizeAdjusted = -2;
- }
- }
- }
- #endif
- }
- }
|