-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockSash.cs
167 lines (143 loc) · 5.63 KB
/
DockSash.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// <copyright file="DockSash.cs" company="Pixel Precision LLC">
// Copyright (c) 2020 All Rights Reserved
// </copyright>
// <author>William Leu</author>
// <date>04/12/2020</date>
// <summary>
// A sash to divide docked content and to give the user an interface
// to drag it.
// </summary>
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace PxPre.UIDock
{
public class DockSash :
UnityEngine.UI.Image,
UnityEngine.EventSystems.IDragHandler
{
/// <summary>
/// The direction the sash is dividing.
/// </summary>
public enum Grain
{
/// <summary>
/// The content being divided from the sash is separated horizontally.
/// </summary>
Horizontal,
/// <summary>
/// The content being divided from the sash is separated vertically.
/// </summary>
Vertical
}
/// <summary>
/// The left or top content of the sash, depending on the grain.
/// </summary>
public Dock dockA;
/// <summary>
/// The right or bottom content of the sash, depending on the grain.
/// </summary>
public Dock dockB;
/// <summary>
/// The grain of the sash.
/// </summary>
public Grain grain;
/// <summary>
/// The system.
/// </summary>
public Root system;
/// <summary>
/// Assuming that the sash children are placed correctly, place the
/// dock sash in the middle of them.
/// </summary>
public void Align()
{
if(this.grain == Grain.Horizontal)
{
this.rectTransform.anchoredPosition =
new Vector2(
dockA.cachedPlace.xMax,
-dockA.cachedPlace.y);
this.rectTransform.sizeDelta =
new Vector2(
dockB.cachedPlace.x - dockA.cachedPlace.xMax,
dockA.cachedPlace.height);
}
else
{
this.rectTransform.anchoredPosition =
new Vector2(
dockA.cachedPlace.x,
-dockA.cachedPlace.yMax);
this.rectTransform.sizeDelta =
new Vector2(
dockA.cachedPlace.width,
dockB.cachedPlace.y - dockA.cachedPlace.yMax);
}
}
void UnityEngine.EventSystems.IDragHandler.OnDrag(UnityEngine.EventSystems.PointerEventData eventData)
{
Vector2 delta = eventData.delta;
if (this.grain == Grain.Horizontal)
{
if(delta.x == 0.0f)
return;
float moveAmt = 0.0f;
if(delta.x < 0.0f)
{
if(this.dockA.minSize.x >= this.dockA.cachedPlace.width)
return;
float endSize = this.dockA.cachedPlace.width + delta.x;
endSize = Mathf.Max(endSize, this.dockA.minSize.x);
moveAmt = Mathf.Min(0.0f, endSize - this.dockA.cachedPlace.width);
}
else
{
if(this.dockB.minSize.x >= this.dockB.cachedPlace.width)
return;
float endSize = this.dockB.cachedPlace.width - delta.x;
endSize = Mathf.Max(endSize, this.dockB.minSize.x);
moveAmt = Mathf.Max(0.0f, this.dockB.cachedPlace.width - endSize);
}
if(moveAmt == 0.0f)
return;
this.dockA.cachedPlace.width += moveAmt;
this.dockB.cachedPlace.width -= moveAmt;
this.dockB.cachedPlace.x += moveAmt;
this.system.UpdateDockedBranch(this.dockA);
this.system.UpdateDockedBranch(this.dockB);
this.system.RealignSashes();
}
else if(this.grain == Grain.Vertical)
{
if(delta.y == 0.0)
return;
float moveAmt = 0.0f;
if(delta.y > 0.0f)
{
if(this.dockA.minSize.y >= this.dockA.cachedPlace.height)
return;
float endSize = this.dockA.cachedPlace.height - delta.y;
endSize = Mathf.Max(endSize, this.dockA.minSize.y);
moveAmt = Mathf.Min(0.0f, endSize - this.dockA.cachedPlace.height);
}
else
{
if(this.dockB.minSize.y >= this.dockB.cachedPlace.height)
return;
float endSize = this.dockB.cachedPlace.height + delta.y;
endSize = Mathf.Max(endSize, this.dockB.minSize.y);
moveAmt = Mathf.Max(0.0f, this.dockB.cachedPlace.height - endSize);
}
if(moveAmt == 0.0f)
return;
this.dockA.cachedPlace.height += moveAmt;
this.dockB.cachedPlace.height -= moveAmt;
this.dockB.cachedPlace.y += moveAmt;
this.system.UpdateDockedBranch(this.dockA);
this.system.UpdateDockedBranch(this.dockB);
this.system.RealignSashes();
}
}
}
}