Changed the project structure to reflect a shift from `Ghost.App` to `Ghost.Editor`, updating namespaces and class names throughout. Changed the application class in `App.xaml` and `App.xaml.cs` from `GhostApplication` to `EditorApplication`. Changed several service interfaces to reside under `Ghost.Editor.Services.Contracts`, including `IInspectorService`, `INotificationService`, and `IProgressService`. Added `InspectorView` and `InspectorViewModel` classes to manage inspector functionality. Added `NavigationTabView` and `NavigationTabPage` classes to facilitate navigation within the editor. Enhanced `WorldNode` and `EntityNode` classes to support scene graph functionality, including serialization and entity management. Updated the project file `Ghost.Editor.csproj` to reflect the new structure and removed old references. Modified the solution file `GhostEngine.sln` to remove references to `Ghost.App` and include `Ghost.Editor`. Updated unit tests to align with the new namespaces and project structure.
45 lines
2.2 KiB
XML
45 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<internal:NavigationTabPage
|
|
x:Class="Ghost.Editor.View.Pages.EngineEditor.HierarchyPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:internal="using:Ghost.Editor.Controls.Internal"
|
|
xmlns:local="using:Ghost.Editor.View.Pages.EngineEditor"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:sg="using:Ghost.Editor.Core.SceneGraph"
|
|
mc:Ignorable="d">
|
|
|
|
<internal:NavigationTabPage.Resources>
|
|
<DataTemplate x:Key="SceneTemplate" x:DataType="sg:SceneGraphNode">
|
|
<TreeViewItem
|
|
AutomationProperties.Name="{x:Bind Name}"
|
|
Background="{ThemeResource ControlSolidFillColorDefaultBrush}"
|
|
IsExpanded="True"
|
|
ItemsSource="{x:Bind Children}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<FontIcon FontSize="14" Glyph="" />
|
|
<TextBlock Margin="10,0" Text="{x:Bind Name}" />
|
|
</StackPanel>
|
|
</TreeViewItem>
|
|
</DataTemplate>
|
|
|
|
<DataTemplate x:Key="EntityTemplate" x:DataType="sg:SceneGraphNode">
|
|
<TreeViewItem AutomationProperties.Name="{x:Bind Name}" ItemsSource="{x:Bind Children}">
|
|
<StackPanel Margin="10,0" Orientation="Horizontal">
|
|
<FontIcon FontSize="14" Glyph="" />
|
|
<TextBlock Margin="5,0,0,0" Text="{x:Bind Name}" />
|
|
</StackPanel>
|
|
</TreeViewItem>
|
|
</DataTemplate>
|
|
</internal:NavigationTabPage.Resources>
|
|
|
|
<Grid Padding="4,6" Background="{ThemeResource LayerFillColorDefaultBrush}">
|
|
<TreeView ItemsSource="{x:Bind ViewModel.SceneList}" SelectionChanged="TreeView_SelectionChanged">
|
|
<TreeView.ItemTemplateSelector>
|
|
<local:HierarchyTemplateSector EntityTemplate="{StaticResource EntityTemplate}" WorldTemplate="{StaticResource SceneTemplate}" />
|
|
</TreeView.ItemTemplateSelector>
|
|
</TreeView>
|
|
</Grid>
|
|
</internal:NavigationTabPage>
|