-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRoot.cs
1998 lines (1728 loc) · 75.4 KB
/
Root.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// <copyright file="Root.cs" company="Pixel Precision LLC">
// Copyright (c) 2020 All Rights Reserved
// </copyright>
// <author>William Leu</author>
// <date>04/12/2020</date>
// <summary>
// The Root location for the UIDock system.
// </summary>
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace PxPre.UIDock
{
public class Root : UnityEngine.UI.Graphic
{
/// <summary>
/// Target references to be used with Docks to specify where
/// a new window should be docked.
/// </summary>
public enum DropType
{
/// <summary>
/// Not used as an input - only as a return value.
/// </summary>
Invalid,
/// <summary>
/// Dock content into the root.
/// </summary>
Root,
/// <summary>
/// To the left of the coupled dock.
/// </summary>
Left,
/// <summary>
/// To the right of the coupled dock.
/// </summary>
Right,
/// <summary>
/// To the top of the coupled dock.
/// </summary>
Top,
/// <summary>
/// To the bottom of the coupled dock.
/// </summary>
Bottom,
/// <summary>
/// Into the same region as a the coupled dock.
/// </summary>
Into
}
/// <summary>
/// The target for where to dock a floating window.
/// </summary>
public struct DragTarget
{
/// <summary>
/// An existing reference dock.
/// </summary>
public Dock target;
/// <summary>
/// The location in respect to the target dock.
/// </summary>
public DropType type;
/// <summary>
/// The region of space that was/should-be hovered
///
/// The variable is only relelvant when querying the target
/// from a mouse position.
/// </summary>
public Rect region;
/// <summary>
/// True if the region of space was hovered over.
///
/// The variable is only relevant when querying the target
/// from a mouse position.
/// </summary>
public bool ontop;
/// <summary>
/// Constructor.
/// </summary>
/// <param name="target">The reference target.</param>
/// <param name="type">The side of the reference.</param>
/// <param name="region">The hit region.</param>
/// <param name="ontop">The cursor hover value.</param>
public DragTarget(Dock target, DropType type, Rect region, bool ontop)
{
this.target = target;
this.type = type;
this.region = region;
this.ontop = ontop;
}
/// <summary>
/// Generate an invalid DragTarget.
/// </summary>
/// <returns></returns>
public static DragTarget Invalid()
{
return new DragTarget(null, DropType.Invalid, new Rect(), false);
}
/// <summary>
/// Create a clone with a specific ontop value.
/// </summary>
/// <param name="forcedOntop">The ontop value to override</param>
/// <returns>A clone of the invoking object, but with a forced ontop value.</returns>
public DragTarget OnTop(bool forcedOntop)
{
DragTarget dt = new DragTarget();
dt.ontop = forcedOntop;
dt.region = this.region;
dt.target = this.target;
dt.type = this.type;
return dt;
}
}
/// <summary>
/// The sharable properties defining the parameterized behaviours
/// and aethestics.
/// </summary>
public DockProps props;
/// <summary>
/// The root Dock. If the graph is empty, null.
/// </summary>
Dock root = null;
/// <summary>
/// All the windows managed by the system. Both docked and floating.
/// </summary>
Dictionary<RectTransform, Window> windowLookup =
new Dictionary<RectTransform, Window>();
/// <summary>
/// All the docked windows managed by the system.
/// </summary>
Dictionary<RectTransform, Dock> dockLookup =
new Dictionary<RectTransform, Dock>();
/// <summary>
/// All the floating windows managed by the system.
/// </summary>
List<Window> floatingWindows = new List<Window>();
/// <summary>
/// The starting offset of where new windows are added - before
/// cascading is applied.
/// </summary>
public Vector2 winSpawnStart = Vector2.zero;
/// <summary>
/// The amount of offset applied per cascade value.
/// </summary>
public Vector2 winSpawnOffset = new Vector2(10.0f, 10.0f);
/// <summary>
/// The number of times new windows can cascade in their
/// default starting position
/// </summary>
public int spawnWrap = 5;
/// <summary>
/// The current wrappable cascade value.
/// </summary>
int spawnWrapIt = 0;
/// <summary>
/// The parent RectTransforms for floating windows of the
/// system. If set to null, the RectTransform of the Root
/// will be defaulted to.
/// </summary>
public RectTransform floatWindowHome = null;
/// <summary>
/// The window that's currently maximized. If a window
/// isn't maximized, null.
/// </summary>
private Window maximized = null;
/// <summary>
/// When a window is maximized, cache the pre-maximized position, so
/// that when it is restored, we know what to set it to. This is
/// more relevant for floating windows than for docked windows.
/// </summary>
private Vector2 origMaxPos;
/// <summary>
/// When a window is maximized, cache the pre-maximized size, so
/// that when it is restored, we know what to set it to. This is
/// more relevant for floating windows than for docked windows.
/// </summary>
private Vector2 origMaxSize;
/// <summary>
/// Dirty flag when the sash needs construction.
/// </summary>
bool dirtySashConstruction = false;
/// <summary>
/// Dirty flag when the sash needs to be repositions. This flag isn't
/// relevant if dirtySashConstruction is true because reconstruction of
/// sashes will place them in the correct locations.
/// </summary>
bool dirtySashPosition = false;
/// <summary>
/// The coroutine handling the dirty state.dirtSashConstruction and
/// dirtySashPosition will be resolved when the coroutine is finished. The
/// coroutine is also in charge of nulling the dirtyHandle when the
/// processing is finished.
/// </summary>
Coroutine dirtyHandle = null;
/// <summary>
/// The window currently being dragged.
/// </summary>
Window windowDragged = null;
/// <summary>
/// The image used to show the preview for drag-and-drop docking of windows.
/// </summary>
UnityEngine.UI.Image dropVisual = null;
/// <summary>
/// The managed sashes.
/// </summary>
List<DockSash> sashes = new List<DockSash>();
/// <summary>
/// If true, windows can be docked on top of each other to make notebooked
/// tabbed layouts. Else if false, notebook tab docking is not allowed.
/// </summary>
public bool allowTabbedDocking = true;
/// <summary>
/// The windowing assets for tabbed contents.
/// </summary>
Dictionary<Dock, DockedTab> tabAssets = new Dictionary<Dock, DockedTab>();
/// <summary>
/// The event listener.
/// </summary>
public PxPre.UIDock.IDockListener listener = null;
/// <summary>
/// Is there a maximized window.
/// </summary>
/// <returns>True if there is a maximized window; else false.</returns>
public bool IsMaximized()
{
return this.maximized != null;
}
/// <summary>
/// Checks if a specific window is maximized.
/// </summary>
/// <param name="window">The window to check the maximized state of.</param>
/// <returns>True if the specified window is maximized; else false.</returns>
public bool IsMaximized(Window window)
{
return this.maximized == window;
}
/// <summary>
/// Create a Window that contains a specified RectTransform.
/// </summary>
/// <param name="rt">The RectTransform to contain.</param>
/// <param name="title">The titlebar test.</param>
/// <param name="flags">The style flags.</param>
/// <returns></returns>
public Window WrapIntoWindow(RectTransform rt, string title, Window.Flag flags = Window.DefaultFlags)
{
if(this.windowLookup.ContainsKey(rt) == true)
return null;
GameObject goWindow = new GameObject("DockWindow");
Window window = goWindow.AddComponent<Window>();
window.Initialize(this, rt, title, flags);
window.NotifyFloating(true);
window.rectTransform.anchoredPosition =
this.GetNewSpawnSpot();
window.UpdateShadow();
this.floatingWindows.Add(window);
this.windowLookup.Add(rt, window);
return window;
}
/// <summary>
/// Returns the value for the parent of floating windows. The function
/// handles defaulting to the Root's RectTransform is null.
/// </summary>
/// <returns>
/// The RectTransform where floating windows should be parented to.
/// </returns>
RectTransform FloatingWindowContainer()
{
if(this.floatWindowHome == null)
return this.rectTransform;
return this.floatWindowHome;
}
/// <summary>
/// Dock a window managed by the system.
/// </summary>
/// <param name="win">The floating window to dock.</param>
/// <param name="dst">The reference Dock of where to dock the window.</param>
/// <param name="dt">The relative position to the reference of where to dock to.</param>
/// <returns>True if the docking operation was successful; else false.</returns>
public bool DockWindow(Window win, Dock dst, DropType dt)
{
Dock d = DockWindowImpl(win, dst, dt);
if(d == null)
return false;
// If it's in a tab, it need to remain borderless.
if(d.parent == null || d.parent.dockType != Dock.Type.Tab)
d.window.NotifyDocked();
this.dockLookup.Add(win.Win, d);
this.floatingWindows.Remove(win);
win.DisableShadow();
this.SetDirtySashReconstr();
return true;
}
/// <summary>
/// Dock relative to an already docked window.
/// </summary>
/// <param name="win">The window to dock.</param>
/// <param name="relTo">The target window to dock relative to.</param>
/// <param name="dt">The location relative to relTo to dock the window.</param>
/// <returns>True if successfully docked. Else, false.</returns>
public bool DockWindowAtWin(Window win, Window relTo, DropType dt)
{
Dock d;
if(this.dockLookup.TryGetValue(relTo.Win, out d) == false)
return false;
return this.DockWindow(win, d, dt);
}
/// <summary>
/// A part of the implementation of DockWindow() nested into its own function for
/// organizational reasons.
/// </summary>
/// <param name="win">The window to dock.</param>
/// <param name="dst">The reference Dock of where to dock the window; or null, for referencing the root.</param>
/// <param name="dt">The relative position to the reference of where to dock to.</param>
/// <returns>The Dock created holding the win parameter. Or null if the operation fails.</returns>
private Dock DockWindowImpl(Window win, Dock dst, DropType dt)
{
if(dt == DropType.Invalid)
return null;
if (this.root == null)
{
Dock newRoot = new Dock(win);
this.root = newRoot;
this.SetDirty();
return newRoot;
}
if(dst == null)
dst = this.root;
Dock parent = null;
if(dst != null)
parent = dst.parent;
if(dt == DropType.Into)
{
if(this.allowTabbedDocking == false)
{
Debug.LogError("Attempting to dock tabbed notebooks on a layout system with tabs disabled.");
return null;
}
// Edge case for docking to the root.
if (dst.parent == null && this.root == dst)
{
if(dst.dockType != Dock.Type.Window && dst.dockType != Dock.Type.Tab)
{
Debug.LogError("Attempting to create a docked tab into the root when not allowed.");
return null;
}
}
else if(dst.dockType == Dock.Type.Tab)
{ } // Do nothing - eat up if-else condition
else
{
// If we're trying to dock on to a window, while note exactly allowed, it could
// be that its parent is a notebook tabbed collection that we want to drag on to.
// We only do this once because notebook tabs can only contain windows so the
// max depth should be 1.
if (dst.dockType == Dock.Type.Window && dst.parent.dockType == Dock.Type.Tab)
dst = dst.parent;
if (dst.dockType == Dock.Type.Horizontal || dst.dockType == Dock.Type.Vertical)
{
Debug.LogError("Attempting to create a docked tab into a destination that doesn't allow tabs to exist.");
return null;
}
}
// With the error checking at the top, 1 of two valid conditions now exist, we're dropping
// the window onto another window to CREATE a tab notebook system,
// ... or ...
// we're APPENDING to an existing tab system.
Dock newDock = new Dock(win, false);
if (dst.dockType == Dock.Type.Window)
{
Dock oldParent = dst.parent;
Dock newTabDock = new Dock(Dock.Type.Tab, new Dock[]{newDock, dst });
newTabDock.cachedPlace = dst.cachedPlace; // Take on the size of what we're replacing
newTabDock.parent = oldParent;
if (oldParent == null)
this.root = newTabDock;
else
{
int idx = oldParent.children.IndexOf(dst);
oldParent.children[idx] = newTabDock;
}
dst.window.ChangeStyle(DockProps.WinType.BorderlessTabChild);
}
else // if(dst.dockType == Dock.Type.Tab)
{
dst.children.Add(newDock);
newDock.parent = dst;
}
// Layout everything to force creating/deleting tab assets and
// to re-align them.
newDock.parent.activeTab = newDock;
win.ChangeStyle(DockProps.WinType.BorderlessTabChild);
this.SetDirty();
return newDock;
}
if (dst.dockType == Dock.Type.Window || dst.dockType == Dock.Type.Tab)
{ // The top/bottom/left/right handlers
// if our destination is a child of a tab, we're more interested
// in the operation being relative to the tab system (or else it
// would be an illegal layout operation).
if(dst.parent != null && dst.parent.dockType == Dock.Type.Tab)
{
dst = dst.parent;
parent = dst.parent;
}
if (dt == DropType.Top)
{
if (dst == this.root)
{
Dock newDock = new Dock(win, false);
Dock branch = new Dock(Dock.Type.Vertical, newDock, dst);
dst.cachedPlace = new Rect();
this.root = branch;
return newDock;
}
else if (dst.parent.dockType == Dock.Type.Vertical)
{
int idx = dst.parent.children.IndexOf(dst);
Dock newDock = new Dock(win);
parent.children.Insert(idx, newDock);
newDock.parent = dst.parent;
return newDock;
}
else if (dst.parent.dockType == Dock.Type.Horizontal)
{
Dock newDock = new Dock(win);
int idx = parent.children.IndexOf(dst);
Dock branch = new Dock(Dock.Type.Vertical, newDock, dst);
branch.cachedPlace = dst.cachedPlace;
dst.cachedPlace = new Rect();
dst.parent = branch;
parent.children[idx] = branch;
branch.parent = parent;
return newDock;
}
}
else if(dt == DropType.Bottom)
{
if(dst == this.root)
{
Dock newDock = new Dock(win, false);
Dock branch = new Dock(Dock.Type.Vertical, dst, newDock);
dst.cachedPlace = new Rect();
this.root = branch;
return newDock;
}
else if(dst.parent.dockType == Dock.Type.Vertical)
{
int idx = dst.parent.children.IndexOf(dst);
Dock newDock = new Dock(win);
parent.children.Insert(idx + 1, newDock);
newDock.parent = dst.parent;
return newDock;
}
else if(dst.parent.dockType == Dock.Type.Horizontal)
{
Dock newDock = new Dock(win);
int idx = dst.parent.children.IndexOf(dst);
Dock branch = new Dock(Dock.Type.Vertical, dst, newDock);
branch.cachedPlace = dst.cachedPlace;
dst.cachedPlace = new Rect();
dst.parent = branch;
parent.children[idx] = branch;
branch.parent = parent;
return newDock;
}
}
else if(dt == DropType.Left)
{
if (dst == this.root)
{
Dock newDock = new Dock(win, false);
Dock branch = new Dock(Dock.Type.Horizontal, newDock, dst);
dst.cachedPlace = new Rect();
this.root = branch;
return newDock;
}
else if(dst.parent.dockType == Dock.Type.Vertical)
{
Dock newDock = new Dock(win);
int idx = dst.parent.children.IndexOf(dst);
Dock branch = new Dock(Dock.Type.Horizontal, newDock, dst);
branch.cachedPlace = dst.cachedPlace;
dst.cachedPlace = new Rect();
parent.children[idx] = branch;
branch.parent = parent;
return newDock;
}
else if(dst.parent.dockType == Dock.Type.Horizontal)
{
int idx = dst.parent.children.IndexOf(dst);
Dock newDock = new Dock(win);
//
parent.children.Insert(idx, newDock);
newDock.parent = dst.parent;
return newDock;
}
}
else if(dt == DropType.Right)
{
if (dst == this.root)
{
Dock newDock = new Dock(win, false);
Dock branch = new Dock(Dock.Type.Horizontal, dst, newDock);
dst.cachedPlace = new Rect();
this.root = branch;
return newDock;
}
else if (dst.parent.dockType == Dock.Type.Vertical)
{
Dock newDock = new Dock(win);
int idx = dst.parent.children.IndexOf(dst);
Dock branch = new Dock(Dock.Type.Horizontal, dst, newDock);
branch.cachedPlace = dst.cachedPlace;
dst.cachedPlace = new Rect();
parent.children[idx] = branch;
branch.parent = parent;
return newDock;
}
else if (dst.parent.dockType == Dock.Type.Horizontal)
{
int idx = dst.parent.children.IndexOf(dst);
Dock newDock = new Dock(win);
//
parent.children.Insert(idx + 1, newDock);
newDock.parent = dst.parent;
return newDock;
}
}
}
// If we're docking to a sizer, we do similar logic as window/tab docking
// for the top/bottom/left/right above. So there's probably an elegant way
// to unify a lot of logic between top/left/right/bottom destinations and
// window/tab/vertical/horizontal docks, but for now we're just getting the
// basics to work.
if (dst.dockType == Dock.Type.Vertical)
{
if(dt == DropType.Left)
{
if (this.root == dst)
{
Dock newDock = new Dock(win, false);
Dock newVert = new Dock(Dock.Type.Horizontal, newDock, dst);
this.root = newVert;
return newDock;
}
else if(dst.parent.dockType == Dock.Type.Horizontal)
{
Dock newDock = new Dock(win, false);
newDock.parent = dst.parent;
int dstIdx = dst.parent.children.IndexOf(dst);
dst.parent.children.Insert(dstIdx, newDock);
return newDock;
}
}
else if(dt == DropType.Right)
{
if (this.root == dst)
{
Dock newDock = new Dock(win, false);
Dock newVert = new Dock(Dock.Type.Horizontal, dst, newDock);
this.root = newVert;
return newDock;
}
else if (dst.parent.dockType == Dock.Type.Horizontal)
{
Dock newDock = new Dock(win, false);
newDock.parent = dst.parent;
int dstIdx = dst.parent.children.IndexOf(dst);
dst.parent.children.Insert(dstIdx + 1, newDock);
return newDock;
}
}
else if(dt == DropType.Top)
{
Dock newDock = new Dock(win, false);
dst.children.Insert(0, newDock);
newDock.parent = dst;
return newDock;
}
else if(dt == DropType.Bottom)
{
Dock newDock = new Dock(win, false);
dst.children.Add(newDock);
newDock.parent = dst;
return newDock;
}
Debug.LogError("Attempting illegal docking operation onto vertical container.");
return null;
}
if(dst.dockType == Dock.Type.Horizontal)
{
if (dt == DropType.Left)
{
Dock newDock = new Dock(win, false);
newDock.parent = dst;
dst.children.Insert(0, newDock);
return newDock;
}
else if (dt == DropType.Right)
{
Dock newDock = new Dock(win, false);
newDock.parent = dst;
dst.children.Add(newDock);
return newDock;
}
else if (dt == DropType.Top)
{
if(this.root == dst)
{
Dock newDock = new Dock(win, false);
Dock newVert = new Dock(Dock.Type.Vertical, newDock, dst);
this.root = newVert;
return newDock;
}
else if(dst.parent.dockType == Dock.Type.Vertical)
{
Dock newDock = new Dock(win, false);
newDock.parent = dst.parent;
int dstIdx = dst.parent.children.IndexOf(dst);
dst.parent.children.Insert(dstIdx, newDock);
return newDock;
}
}
else if (dt == DropType.Bottom)
{
if (this.root == dst)
{
Dock newDock = new Dock(win, false);
Dock newVert = new Dock(Dock.Type.Vertical, dst, newDock);
this.root = newVert;
return newDock;
}
else if (dst.parent.dockType == Dock.Type.Vertical)
{
Dock newDock = new Dock(win, false);
newDock.parent = dst.parent;
int dstIdx = dst.parent.children.IndexOf(dst);
dst.parent.children.Insert(dstIdx + 1, newDock);
return newDock;
}
}
Debug.LogError("Attempting illegal docking operation into horizontal container.");
return null;
}
return null;
}
/// <summary>
/// Undock a window managed by the system. The window will be converted to a floating
/// window.
/// </summary>
/// <param name="win">The system to undock.</param>
/// <returns>True if the window was undocked successfully; else false.</returns>
/// <remarks>While undocking will remove it from undocked datastructures, the Window will
/// still be tracked by the system as a floating Window.</remarks>
public bool UndockWindow(Window win)
{
Dock dock;
if(this.dockLookup.TryGetValue(win.Win, out dock) == false)
return false;
Dock parent = dock.parent;
if(dock == this.root)
{
this.root = null;
}
else if(parent.IsContainerType() == true)
{
parent.children.Remove(dock);
bool isTab = parent.dockType == Dock.Type.Tab;
if(parent.children.Count == 1)
{
ManageCollapse(parent);
if (isTab == true)
{
// If we collapse tabs by removing enough children, it no longer exists, so
// its assets should be destroyed.
DockedTab dtab;
if (this.tabAssets.TryGetValue(parent, out dtab) == true)
{
dtab.Destroy();
this.tabAssets.Remove(parent);
}
}
}
else
{
if(isTab == true && dock == parent.activeTab)
{
// TODO: Make this more intelligent, maybe set it to the tab before
// the one we closed.
parent.activeTab = parent.children[0];
}
}
}
else
return false;
this.dockLookup.Remove(win.Win);
if(this.maximized == win)
win.NotifyMaximized();
else
win.NotifyFloating();
this.floatingWindows.Add(win);
win.rectTransform.SetAsLastSibling();
win.gameObject.SetActive(true);
win.EnableShadow();
win.UpdateShadow();
this.SetDirtySashReconstr();
return true;
}
/// <summary>
/// Handle collapsing a parent node because it has all its children removed until
/// it only had 1 remaining child.
/// </summary>
/// <param name="colParent">
/// The parent that's being collapse. It should be a container dock with only 1 child.
/// </param>
void ManageCollapse(Dock colParent)
{
if(colParent.dockType == Dock.Type.Window)
return; // Illegal
if(colParent.children.Count != 1)
return;
Dock single = null;
if (colParent == this.root)
{
// If the deletion leave us with a root container
// with only 1 child, that 1 child becomes the new root.
this.root = colParent.children[0];
single = this.root;
this.root.parent = null;
}
else
{
// If the removal leaves a parent with only 1 item, then
// we cascade the deletion by also deleting the parent and
// leaving the single child in its place.
int idx = colParent.parent.children.IndexOf(colParent);
single = colParent.children[0];
colParent.parent.children[idx] = single;
single.parent = colParent.parent;
}
if (
single != null &&
single.dockType == Dock.Type.Window)
{
// This is most important for tabs. If we close the 2nd to last tab and it
// was visible, we need the singled item to be visible, and we need to
//restore the style.
//
// We could if statement this for just Tab parented things,
// but for now it's everything indiscriminantly.
if(single.window.Locked == false)
single.window.ChangeStyle(DockProps.WinType.Docked, true);
single.window.gameObject.SetActive(true);
}
if(single == this.root)
return;
// The parent should no longer exist, but this means we put single
// into another container that we didn't add with the same protections
// with normal docking.
//
// So we need to check if additional collapsing can occur from edge
// cases.
if (
single.IsContainerType() &&
single.parent != null &&
single.dockType == colParent.parent.dockType)
{
// At this point, colParent's parent can either be a horizontal or vertical
// grained container. If it maches the same grain as the parent, we need to
// make the equivalent layout, but by collapsing the contents of single into
// its parent.
int idx = single.parent.children.IndexOf(single);
single.parent.children.RemoveAt(idx);
single.parent.children.InsertRange(idx, single.children);
foreach(Dock d in single.parent.children)
d.parent = single.parent;
}
}
/// <summary>
/// Request a new cadcading spawn position, and increment
/// the cascading location variable.
/// </summary>
/// <returns>The location to move a newly added and floating
/// Window to.</returns>
public Vector2 GetNewSpawnSpot()
{
Vector2 ret =
this.winSpawnStart + winSpawnOffset * this.spawnWrapIt;
this.spawnWrapIt =
(this.spawnWrapIt + 1) % this.spawnWrap;
return ret;
}
/// <summary>
/// Get an iterator through all the docked windows.
/// </summary>
/// <returns>Iterator of docked windows.</returns>
public IEnumerable<Window> DockedWindows()
{
foreach(Dock d in this.dockLookup.Values)
{
if(d.dockType == Dock.Type.Window)
yield return d.window;
}
}
/// <summary>
/// Get an iterator through all the floating windows.
/// </summary>
/// <returns>Iterator of the floating windows.</returns>
public IEnumerable<Window> FloatingWindows()
{
return this.floatingWindows;
}
/// <summary>
/// Maximizes a window.
/// </summary>
/// <param name="window">The window to maximize.</param>
/// <returns>True if the window was successfully maximized, else false.</returns>
public bool MaximizeWindow(Window window)
{
if(window == null)
return false;
if(this.maximized == window)
return true;
if(this.maximized != null)
this.RestoreWindow();
this.maximized = window;
foreach (KeyValuePair<RectTransform, Window> kvp in this.windowLookup)
{
Window winIt = kvp.Value;
winIt.DisableShadow();
if (winIt != this.maximized)
winIt.gameObject.SetActive(false);
}
foreach(DockSash ds in this.sashes)
ds.gameObject.SetActive(false);
RectTransform retMax = window.rectTransform;
this.maximized = window;
this.origMaxPos = retMax.anchoredPosition;
this.origMaxSize = retMax.sizeDelta;
if(retMax.parent != this)
{
retMax.SetParent(this.rectTransform);
Window.PrepareChild(retMax);
}
retMax.anchorMin = Vector2.zero;
retMax.anchorMax = Vector2.one;
retMax.offsetMin = Vector2.zero;
retMax.offsetMax = Vector2.zero;
window.NotifyMaximized();
foreach(KeyValuePair<Dock, DockedTab> kvp in this.tabAssets)
kvp.Value.Hide();
return true;
}
/// <summary>
/// Restore a window.
/// </summary>
/// <param name="window">
/// The window requesting to be restored. While only window will ever be
/// maximized, the requesting window will pass itself as a parameter as a
/// safegaurd that the operation is in the correct state that the invoking
/// windows beleives the Root is in.</param>
/// <returns>True if the restore operation happened successfuly.</returns>
public bool RestoreWindow(Window window)
{
if(this.maximized != window)
return false;
this.maximized = null;
foreach (KeyValuePair<Dock, DockedTab> kvp in this.tabAssets)
kvp.Value.Show();
// If before it was maximized, it was a dock
if (this.dockLookup.ContainsKey(window.Win) == true)
{
window.transform.SetParent(this.rectTransform);
Window.PrepareChild(window.rectTransform);
window.NotifyDocked();
}