Codestyle formatting #1522

This commit is contained in:
Wojtek Figat
2023-10-04 22:25:27 +02:00
parent 2e6fa8fc25
commit 92f677f238
11 changed files with 74 additions and 72 deletions

View File

@@ -164,7 +164,7 @@ namespace FlaxEditor.Surface.ContextMenu
HorizontalAlignment = TextAlignment.Far,
Font = titleFontReference,
};
_contextSensitiveToggle = new CheckBox
{
Width = 20,
@@ -174,7 +174,7 @@ namespace FlaxEditor.Surface.ContextMenu
Checked = _contextSensitiveSearchEnabled,
};
_contextSensitiveToggle.StateChanged += OnContextSensitiveToggleStateChanged;
// Search box
_searchBox = new SearchBox(false, 2, 22)
{
@@ -313,7 +313,7 @@ namespace FlaxEditor.Surface.ContextMenu
OnSearchFilterChanged();
}
}
else if(_contextSensitiveSearchEnabled)
else if (_contextSensitiveSearchEnabled)
{
group.EvaluateVisibilityWithBox(_selectedBox);
}
@@ -350,8 +350,8 @@ namespace FlaxEditor.Surface.ContextMenu
Parent = group
};
}
if(_contextSensitiveSearchEnabled)
group.EvaluateVisibilityWithBox(_selectedBox);
if (_contextSensitiveSearchEnabled)
group.EvaluateVisibilityWithBox(_selectedBox);
group.SortChildren();
group.Parent = _groupsPanel;
_groups.Add(group);
@@ -459,7 +459,7 @@ namespace FlaxEditor.Surface.ContextMenu
// Skip events during setup or init stuff
if (IsLayoutLocked)
return;
Profiler.BeginEvent("VisjectCM.OnContextSensitiveToggleStateChanged");
_contextSensitiveSearchEnabled = checkBox.Checked;
UpdateFilters();
@@ -551,7 +551,7 @@ namespace FlaxEditor.Surface.ContextMenu
for (int i = 0; i < _groups.Count; i++)
{
_groups[i].ResetView();
if(_contextSensitiveSearchEnabled)
if (_contextSensitiveSearchEnabled)
_groups[i].EvaluateVisibilityWithBox(_selectedBox);
}
UnlockChildrenRecursive();

View File

@@ -132,7 +132,7 @@ namespace FlaxEditor.Surface.ContextMenu
}
Profiler.BeginEvent("VisjectCMGroup.EvaluateVisibilityWithBox");
bool isAnyVisible = false;
for (int i = 0; i < _children.Count; i++)
{
@@ -142,7 +142,7 @@ namespace FlaxEditor.Surface.ContextMenu
isAnyVisible |= item.Visible;
}
}
// Update itself
if (isAnyVisible)
{

View File

@@ -103,7 +103,7 @@ namespace FlaxEditor.Surface.ContextMenu
{
// Is compatible if box is null for reset reasons
if (startBox == null)
return true;
return true;
if (_archetype == null)
return false;
@@ -112,7 +112,7 @@ namespace FlaxEditor.Surface.ContextMenu
if (startBox.IsOutput && _archetype.IsInputCompatible != null)
{
isCompatible |= _archetype.IsInputCompatible.Invoke(_archetype, startBox.CurrentType, _archetype.ConnectionsHints);
}
}
else if (!startBox.IsOutput && _archetype.IsOutputCompatible != null)
{
isCompatible |= _archetype.IsOutputCompatible.Invoke(_archetype, startBox.CurrentType, startBox.ParentNode.Archetype.ConnectionsHints);
@@ -122,23 +122,23 @@ namespace FlaxEditor.Surface.ContextMenu
// Check compatibility based on the defined elements in the archetype. This handles all the default groups and items
isCompatible = CheckElementsCompatibility(startBox);
}
return isCompatible;
}
private bool CheckElementsCompatibility(Box startBox)
{
bool isCompatible = false;
foreach (NodeElementArchetype element in _archetype.Elements)
{
// Ignore all elements that aren't inputs or outputs (e.g. input fields)
if(element.Type != NodeElementType.Output && element.Type != NodeElementType.Input)
if (element.Type != NodeElementType.Output && element.Type != NodeElementType.Input)
continue;
// Ignore elements with the same direction as the box
if ((startBox.IsOutput && element.Type == NodeElementType.Output) || (!startBox.IsOutput && element.Type == NodeElementType.Input))
continue;
ScriptType fromType;
ScriptType toType;
ConnectionsHint hint;
@@ -154,13 +154,13 @@ namespace FlaxEditor.Surface.ContextMenu
toType = element.ConnectionsType;
hint = startBox.ParentNode.Archetype.ConnectionsHints;
}
isCompatible |= VisjectSurface.FullCastCheck(fromType, toType, hint);
}
return isCompatible;
}
/// <summary>
/// Updates the filter.
/// </summary>
@@ -176,7 +176,7 @@ namespace FlaxEditor.Surface.ContextMenu
return;
}
}
_isStartsWithMatch = _isFullMatch = false;
if (string.IsNullOrEmpty(filterText))
{
@@ -242,7 +242,7 @@ namespace FlaxEditor.Surface.ContextMenu
Data = data;
}
else if(!groupHeaderMatches)
else if (!groupHeaderMatches)
{
// Hide
_highlights?.Clear();