WindowDraggable.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. using System;
  2. using UnityEngine;
  3. using UnityEditor.Experimental.GraphView;
  4. using UnityEngine.UIElements;
  5. using UnityEngine.UIElements.StyleSheets;
  6. namespace UnityEditor.ShaderGraph.Drawing
  7. {
  8. class WindowDraggable : MouseManipulator
  9. {
  10. bool m_Active;
  11. WindowDockingLayout m_WindowDockingLayout;
  12. Vector2 m_LocalMosueOffset;
  13. VisualElement m_Handle;
  14. GraphView m_GraphView;
  15. public Action OnDragFinished;
  16. public WindowDraggable(VisualElement handle = null, VisualElement container = null)
  17. {
  18. m_Handle = handle;
  19. m_Active = false;
  20. m_WindowDockingLayout = new WindowDockingLayout();
  21. if (container != null)
  22. container.RegisterCallback<GeometryChangedEvent>(OnParentGeometryChanged);
  23. }
  24. protected override void RegisterCallbacksOnTarget()
  25. {
  26. if (m_Handle == null)
  27. m_Handle = target;
  28. m_Handle.RegisterCallback(new EventCallback<MouseDownEvent>(OnMouseDown), TrickleDownEnum.NoTrickleDown);
  29. m_Handle.RegisterCallback(new EventCallback<MouseMoveEvent>(OnMouseMove), TrickleDownEnum.NoTrickleDown);
  30. m_Handle.RegisterCallback(new EventCallback<MouseUpEvent>(OnMouseUp), TrickleDownEnum.NoTrickleDown);
  31. target.RegisterCallback<GeometryChangedEvent>(OnGeometryChanged);
  32. }
  33. protected override void UnregisterCallbacksFromTarget()
  34. {
  35. m_Handle.UnregisterCallback(new EventCallback<MouseDownEvent>(OnMouseDown), TrickleDownEnum.NoTrickleDown);
  36. m_Handle.UnregisterCallback(new EventCallback<MouseMoveEvent>(OnMouseMove), TrickleDownEnum.NoTrickleDown);
  37. m_Handle.UnregisterCallback(new EventCallback<MouseUpEvent>(OnMouseUp), TrickleDownEnum.NoTrickleDown);
  38. target.UnregisterCallback<GeometryChangedEvent>(OnGeometryChanged);
  39. if (m_GraphView != null)
  40. m_GraphView.UnregisterCallback<GeometryChangedEvent>(OnGeometryChanged);
  41. }
  42. void OnMouseDown(MouseDownEvent evt)
  43. {
  44. m_Active = true;
  45. VisualElement parent = target.parent;
  46. while (parent != null && !(parent is GraphView))
  47. parent = parent.parent;
  48. m_GraphView = parent as GraphView;
  49. if (m_GraphView != null)
  50. m_GraphView.RegisterCallback<GeometryChangedEvent>(OnGeometryChanged);
  51. // m_LocalMouseOffset is offset from the target element's (0, 0) to the
  52. // to the mouse position.
  53. m_LocalMosueOffset = m_Handle.WorldToLocal(evt.mousePosition);
  54. m_Handle.CaptureMouse();
  55. evt.StopImmediatePropagation();
  56. }
  57. void OnMouseMove(MouseMoveEvent evt)
  58. {
  59. if (m_Active)
  60. {
  61. // The mouse position of is corrected according to the offset within the target
  62. // element (m_LocalWorldOffset) to set the position relative to the mouse position
  63. // when the dragging started.
  64. Vector2 position = target.parent.WorldToLocal(evt.mousePosition) - m_LocalMosueOffset;
  65. // Make sure that the object remains in the parent window
  66. position.x = Mathf.Clamp(position.x, 0f, target.parent.layout.width - target.layout.width);
  67. position.y = Mathf.Clamp(position.y, 0f, target.parent.layout.height - target.layout.height);
  68. // While moving, use only the left and top position properties,
  69. // while keeping the others NaN to not affect layout.
  70. target.style.left = position.x;
  71. target.style.top = position.y;
  72. target.style.right = float.NaN;
  73. target.style.bottom = float.NaN;
  74. }
  75. }
  76. void OnMouseUp(MouseUpEvent evt)
  77. {
  78. bool emitDragFinishedEvent = m_Active;
  79. m_Active = false;
  80. if (m_Handle.HasMouseCapture())
  81. {
  82. m_Handle.ReleaseMouse();
  83. }
  84. evt.StopImmediatePropagation();
  85. // Recalculate which corner to dock to
  86. m_WindowDockingLayout.CalculateDockingCornerAndOffset(target.layout, target.parent.layout);
  87. m_WindowDockingLayout.ClampToParentWindow();
  88. // Use the docking results to figure which of left/right and top/bottom needs to be set.
  89. m_WindowDockingLayout.ApplyPosition(target);
  90. // Signal that the dragging has finished.
  91. if (emitDragFinishedEvent && OnDragFinished != null)
  92. OnDragFinished();
  93. }
  94. void OnGeometryChanged(GeometryChangedEvent geometryChangedEvent)
  95. {
  96. // Make the target clamp to the border of the window if the
  97. // parent window becomes too small to contain it.
  98. if (target.parent.layout.width < target.layout.width)
  99. {
  100. if (m_WindowDockingLayout.dockingLeft)
  101. {
  102. target.style.left = 0f;
  103. target.style.right = float.NaN;
  104. }
  105. else
  106. {
  107. target.style.left = float.NaN;
  108. target.style.right = 0f;
  109. }
  110. }
  111. if (target.parent.layout.height < target.layout.height)
  112. {
  113. if (m_WindowDockingLayout.dockingTop)
  114. {
  115. target.style.top = 0f;
  116. target.style.bottom = float.NaN;
  117. }
  118. else
  119. {
  120. target.style.top = float.NaN;
  121. target.style.bottom = 0f;
  122. }
  123. }
  124. }
  125. void OnParentGeometryChanged(GeometryChangedEvent geometryChangedEvent)
  126. {
  127. // Check if the parent window can no longer contain the target window.
  128. // If the window is out of bounds, make one edge clamp to the border of the
  129. // parent window.
  130. if (target.layout.xMin < 0f)
  131. {
  132. target.style.left = 0f;
  133. target.style.right = float.NaN;
  134. }
  135. if (target.layout.xMax > geometryChangedEvent.newRect.width)
  136. {
  137. target.style.left = float.NaN;
  138. target.style.right = 0f;
  139. }
  140. if (target.layout.yMax > geometryChangedEvent.newRect.height)
  141. {
  142. target.style.top = float.NaN;
  143. target.style.bottom = 0f;
  144. }
  145. if (target.layout.yMin < 0f)
  146. {
  147. target.style.top = 0f;
  148. target.style.bottom = float.NaN;
  149. }
  150. }
  151. }
  152. }