forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroup.cs
More file actions
159 lines (128 loc) · 4.76 KB
/
Copy pathGroup.cs
File metadata and controls
159 lines (128 loc) · 4.76 KB
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
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System.Linq;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Experimental.UIElements;
namespace UnityEditor.Experimental.UIElements.GraphView
{
public partial class Group : Scope
{
private Label m_TitleItem;
private TextField m_TitleEditor;
private GroupDropArea m_DropArea;
private bool m_EditTitleCancelled = false;
private const int k_TitleEditorFocusDelay = 300;
public string title
{
get { return m_TitleItem.text; }
set
{
if (m_TitleItem.text == value)
return;
m_TitleItem.text = value;
GraphView gv = GetFirstAncestorOfType<GraphView>();
if (gv != null && gv.groupTitleChanged != null)
{
gv.groupTitleChanged(this, value);
}
ScheduleUpdateGeometryFromContent();
}
}
public Group()
{
AddStyleSheetPath("StyleSheets/GraphView/Group.uss");
m_DropArea = new GroupDropArea();
m_DropArea.ClearClassList();
m_DropArea.name = "dropArea";
var visualTree = EditorGUIUtility.Load("UXML/GraphView/GroupTitle.uxml") as VisualTreeAsset;
VisualElement titleContainer = visualTree.CloneTree(null);
titleContainer.name = "titleContainer";
m_TitleItem = titleContainer.Q<Label>(name: "titleLabel");
m_TitleEditor = titleContainer.Q(name: "titleField") as TextField;
m_TitleEditor.visible = false;
m_TitleEditor.RegisterCallback<FocusOutEvent>(e => { OnEditTitleFinished(); });
m_TitleEditor.RegisterCallback<KeyDownEvent>(TitleEditorOnKeyDown);
VisualElement contentContainerPlaceholder = this.Q(name: "contentContainerPlaceholder");
contentContainerPlaceholder.Insert(0, m_DropArea);
headerContainer.Add(titleContainer);
AddToClassList("group");
capabilities |= Capabilities.Selectable | Capabilities.Movable | Capabilities.Deletable;
RegisterCallback<MouseDownEvent>(OnMouseDownEvent);
}
public override bool AcceptsElement(GraphElement element, ref string reasonWhyNotAccepted)
{
if (element is Group)
{
reasonWhyNotAccepted = "Nested group is not supported yet.";
return false;
}
else if (element is Scope)
{
reasonWhyNotAccepted = "Nested scope is not supported yet.";
return false;
}
return true;
}
protected override void OnElementAdded(GraphElement element)
{
GraphView gv = GetFirstAncestorOfType<GraphView>();
if (gv != null && gv.elementAddedToGroup != null)
{
gv.elementAddedToGroup(this, element);
}
}
protected override void OnElementRemoved(GraphElement element)
{
GraphView gv = GetFirstAncestorOfType<GraphView>();
if (gv != null && gv.elementRemovedFromGroup != null)
{
gv.elementRemovedFromGroup(this, element);
}
}
private void TitleEditorOnKeyDown(KeyDownEvent e)
{
switch (e.keyCode)
{
case KeyCode.Escape:
m_EditTitleCancelled = true;
m_TitleEditor.Blur();
break;
case KeyCode.Return:
m_TitleEditor.Blur();
break;
default:
break;
}
}
private void OnEditTitleFinished()
{
m_TitleItem.visible = true;
m_TitleEditor.visible = false;
if (!m_EditTitleCancelled)
{
title = m_TitleEditor.text;
}
m_EditTitleCancelled = false;
}
private void OnMouseDownEvent(MouseDownEvent e)
{
if (e.clickCount == 2)
{
if (HitTest(e.localMousePosition))
{
m_TitleEditor.value = title;
m_TitleEditor.visible = true;
m_TitleItem.visible = false;
this.schedule.Execute(GiveFocusToTitleEditor).StartingIn(k_TitleEditorFocusDelay);
}
}
}
private void GiveFocusToTitleEditor()
{
m_TitleEditor.SelectAll();
m_TitleEditor.Focus();
}
}
}