Move/Rename stuff (#11209)

-     Change namespace, and folder of FancyWindow to Content.Client.UserInterface.Controls
-     Change xaml reference from ui to controls in some places
-     Change ClientAlertsSystem from internal to public
-     Change namespace, and folder of HighDivider to Content.Client.UserInterface.Controls
This commit is contained in:
wrexbe
2022-09-11 18:56:21 -07:00
committed by GitHub
parent a905f601c3
commit 56c2ad6a16
36 changed files with 66 additions and 66 deletions

View File

@@ -1,5 +1,5 @@
<userInterface:FancyWindow xmlns="https://spacestation14.io"
xmlns:userInterface="clr-namespace:Content.Client.UserInterface"
<controls:FancyWindow xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
Title="{Loc 'emergency-shuttle-console-window-title'}"
MinSize="400 400">
<BoxContainer Orientation="Vertical"
@@ -38,4 +38,4 @@
<BoxContainer Name="AuthorizationsContainer" Orientation="Vertical">
</BoxContainer>
</BoxContainer>
</userInterface:FancyWindow>
</controls:FancyWindow>

View File

@@ -1,5 +1,5 @@
using Content.Client.Computer;
using Content.Client.UserInterface;
using Content.Client.UserInterface.Controls;
using Content.Shared.Shuttles.BUIStates;
using Content.Shared.Shuttles.Events;
using Robust.Client.AutoGenerated;

View File

@@ -1,5 +1,5 @@
<userInterface:FancyWindow xmlns="https://spacestation14.io"
xmlns:userInterface="clr-namespace:Content.Client.UserInterface"
<controls:FancyWindow xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
Title="{Loc 'iff-console-window-title'}"
MinSize="200 200">
<BoxContainer Orientation="Vertical" HorizontalExpand="True">
@@ -17,4 +17,4 @@
</BoxContainer>
</GridContainer>
</BoxContainer>
</userInterface:FancyWindow>
</controls:FancyWindow>

View File

@@ -1,5 +1,5 @@
using Content.Client.Computer;
using Content.Client.UserInterface;
using Content.Client.UserInterface.Controls;
using Content.Shared.Shuttles.BUIStates;
using Content.Shared.Shuttles.Components;
using Robust.Client.AutoGenerated;

View File

@@ -1,6 +1,6 @@
<userInterface:FancyWindow xmlns="https://spacestation14.io"
xmlns:userInterface="clr-namespace:Content.Client.UserInterface"
<controls:FancyWindow xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:ui="clr-namespace:Content.Client.Shuttles.UI"
Title="{Loc 'radar-console-window-title'}">
<ui:RadarControl Name="RadarScreen"/>
</userInterface:FancyWindow>
</controls:FancyWindow>

View File

@@ -1,5 +1,5 @@
using Content.Client.Computer;
using Content.Client.UserInterface;
using Content.Client.UserInterface.Controls;
using Content.Shared.Shuttles.BUIStates;
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface.XAML;

View File

@@ -1,5 +1,5 @@
<userInterface:FancyWindow xmlns="https://spacestation14.io"
xmlns:userInterface="clr-namespace:Content.Client.UserInterface"
<controls:FancyWindow xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:ui="clr-namespace:Content.Client.Shuttles.UI"
xmlns:ui1="clr-namespace:Content.Client.HUD.UI"
Title="{Loc 'shuttle-console-window-title'}">
@@ -97,4 +97,4 @@
Disabled="True"/>
</BoxContainer>
</GridContainer>
</userInterface:FancyWindow>
</controls:FancyWindow>

View File

@@ -1,5 +1,5 @@
using Content.Client.Computer;
using Content.Client.UserInterface;
using Content.Client.UserInterface.Controls;
using Content.Shared.Shuttles.BUIStates;
using Content.Shared.Shuttles.Components;
using Content.Shared.Shuttles.Systems;