Refactored AssetHandlerRegistry to a static class and updated all usages. Replaced the docking-based EngineEditorWindow with a new grid/panel layout, adding modern toolbar, menu bar, and status bar. Introduced new divider styles and improved UI details. Removed obsolete and unused files, updated project references, and made minor code and UI/UX improvements.
246 lines
10 KiB
XML
246 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<winex:WindowEx
|
|
x:Class="Ghost.Editor.Views.Windows.EngineEditorWindowOld"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:behaviors="using:CommunityToolkit.WinUI.Behaviors"
|
|
xmlns:controls="using:Ghost.Editor.Views.Controls"
|
|
xmlns:ctc="using:CommunityToolkit.WinUI.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:ee="using:Ghost.Editor.Views.Pages.EngineEditor"
|
|
xmlns:ghost="using:Ghost.Editor.Controls"
|
|
xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
|
|
xmlns:local="using:Ghost.Editor.Views.Windows"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:winex="using:WinUIEx"
|
|
mc:Ignorable="d">
|
|
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
|
|
<Grid Loaded="MainGrid_Loaded" Unloaded="MainGrid_Unloaded">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Titlebar -->
|
|
<TitleBar
|
|
x:Name="PART_TitleBar"
|
|
Grid.Row="0"
|
|
Background="{ThemeResource AcrylicBackgroundFillColorBaseBrush}"
|
|
Subtitle="Ghost Engine">
|
|
<TitleBar.IconSource>
|
|
<ImageIconSource ImageSource="ms-appx:///Assets/icon.targetsize-48.png" />
|
|
</TitleBar.IconSource>
|
|
</TitleBar>
|
|
|
|
<!-- Toolbar -->
|
|
<Grid
|
|
Grid.Row="1"
|
|
Padding="4,0,4,4"
|
|
Background="{ThemeResource AcrylicBackgroundFillColorBaseBrush}">
|
|
<ctc:TabbedCommandBar>
|
|
<ctc:TabbedCommandBar.MenuItems>
|
|
<ctc:TabbedCommandBarItem Header="Home">
|
|
<AppBarButton Label="Undo" />
|
|
<AppBarButton Label="Redo" />
|
|
<AppBarButton Label="Paste" />
|
|
</ctc:TabbedCommandBarItem>
|
|
<ctc:TabbedCommandBarItem Header="Home">
|
|
<AppBarButton Label="Undo" />
|
|
<AppBarButton Label="Redo" />
|
|
<AppBarButton Label="Paste" />
|
|
</ctc:TabbedCommandBarItem>
|
|
<ctc:TabbedCommandBarItem Header="Home">
|
|
<AppBarButton Label="Undo" />
|
|
<AppBarButton Label="Redo" />
|
|
<AppBarButton Label="Paste" />
|
|
</ctc:TabbedCommandBarItem>
|
|
</ctc:TabbedCommandBar.MenuItems>
|
|
</ctc:TabbedCommandBar>
|
|
</Grid>
|
|
|
|
<Grid xmlns:dock="using:Ghost.Editor.Views.Controls.Docking" Grid.Row="2">
|
|
<dock:DockingLayout x:Name="MainDockingLayout" />
|
|
</Grid>
|
|
|
|
<!-- Editor -->
|
|
<!--<Grid Grid.Row="2">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ghost:NavigationTabView
|
|
Grid.Column="0"
|
|
Width="350"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch">
|
|
<ghost:NavigationTabView.TabItems>
|
|
<TabViewItem Header="Hierarchy">
|
|
<TabViewItem.IconSource>
|
|
<FontIconSource Glyph="" />
|
|
</TabViewItem.IconSource>
|
|
<controls:Hierarchy />
|
|
</TabViewItem>
|
|
</ghost:NavigationTabView.TabItems>
|
|
</ghost:NavigationTabView>
|
|
|
|
<ghost:NavigationTabView Grid.Column="1">
|
|
<ghost:NavigationTabView.TabItems>
|
|
<ee:ScenePage Header="Scene">
|
|
<ee:ScenePage.IconSource>
|
|
<FontIconSource Glyph="" />
|
|
</ee:ScenePage.IconSource>
|
|
</ee:ScenePage>
|
|
</ghost:NavigationTabView.TabItems>
|
|
</ghost:NavigationTabView>
|
|
|
|
<ghost:NavigationTabView
|
|
Grid.Column="2"
|
|
Width="350"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Stretch">
|
|
<ghost:NavigationTabView.TabItems>
|
|
<ee:InspectorPage Header="Inspector">
|
|
<ee:InspectorPage.IconSource>
|
|
<FontIconSource Glyph="" />
|
|
</ee:InspectorPage.IconSource>
|
|
</ee:InspectorPage>
|
|
</ghost:NavigationTabView.TabItems>
|
|
</ghost:NavigationTabView>
|
|
</Grid>
|
|
|
|
<ghost:NavigationTabView Grid.Row="1" Height="350">
|
|
<ghost:NavigationTabView.TabItems>
|
|
<TabViewItem Header="Project">
|
|
<TabViewItem.IconSource>
|
|
<FontIconSource Glyph="" />
|
|
</TabViewItem.IconSource>
|
|
<controls:ProjectBrowser />
|
|
</TabViewItem>
|
|
<TabViewItem Header="Console">
|
|
<TabViewItem.IconSource>
|
|
<FontIconSource Glyph="" />
|
|
</TabViewItem.IconSource>
|
|
<ee:ConsolePage />
|
|
</TabViewItem>
|
|
</ghost:NavigationTabView.TabItems>
|
|
</ghost:NavigationTabView>
|
|
</Grid>-->
|
|
|
|
<!-- Status Bar -->
|
|
<Grid
|
|
Grid.Row="3"
|
|
Height="25"
|
|
Background="{ThemeResource SmokeFillColorDefaultBrush}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid Grid.Column="0">
|
|
<FontIcon
|
|
Margin="8,0,0,0"
|
|
FontSize="16"
|
|
Foreground="{ThemeResource SystemFillColorSuccessBrush}"
|
|
Glyph=""
|
|
Visibility="Visible" />
|
|
|
|
<StackPanel Orientation="Horizontal" Visibility="Collapsed">
|
|
<FontIcon
|
|
Margin="8,0,0,0"
|
|
VerticalAlignment="Center"
|
|
FontSize="16"
|
|
Foreground="{ThemeResource SystemFillColorAttentionBrush}"
|
|
Glyph="" />
|
|
<TextBlock
|
|
Margin="4,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="0" />
|
|
<FontIcon
|
|
Margin="8,0,0,0"
|
|
VerticalAlignment="Center"
|
|
FontSize="16"
|
|
Foreground="{ThemeResource SystemFillColorCautionBrush}"
|
|
Glyph="" />
|
|
<TextBlock
|
|
Margin="4,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="0" />
|
|
<FontIcon
|
|
Margin="8,0,0,0"
|
|
VerticalAlignment="Center"
|
|
FontSize="16"
|
|
Foreground="{ThemeResource SystemFillColorCriticalBrush}"
|
|
Glyph="" />
|
|
<TextBlock
|
|
Margin="4,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="0" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
<!-- Info and Progress -->
|
|
<Grid Grid.Row="0" Grid.RowSpan="4">
|
|
<InfoBar
|
|
x:Name="InfoBar"
|
|
Margin="16"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Bottom">
|
|
<interactivity:Interaction.Behaviors>
|
|
<behaviors:StackedNotificationsBehavior x:Name="NotificationQueue" />
|
|
</interactivity:Interaction.Behaviors>
|
|
</InfoBar>
|
|
|
|
<Grid
|
|
x:Name="ProgressBarContainer"
|
|
Background="{ThemeResource SmokeFillColorDefaultBrush}"
|
|
Visibility="Collapsed">
|
|
<Grid
|
|
Height="100"
|
|
Padding="36,24"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Background="{ThemeResource SolidBackgroundFillColorBaseBrush}"
|
|
CornerRadius="{StaticResource OverlayCornerRadius}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock
|
|
x:Name="ProgressMessage"
|
|
Grid.Row="0"
|
|
Margin="0,0,0,12"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource TitleTextBlockStyle}"
|
|
Text="Loading..." />
|
|
<ProgressBar
|
|
x:Name="ProgressBar"
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Center"
|
|
IsIndeterminate="True" />
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</winex:WindowEx> |