mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* - add: StyleSheetify * - add: APC style * - tweak: Select only APC now! * - fix: Window positioning * - fix: animations * - add: Fancy chat * - tweak: change some margin think * - fix: add assemblies of stylesheetify for packaging * - tweak: update StyleSheetify * - add: custom LauncherConnection * - tweak: change to paper * - tweak: Update StyleSheetify * - add: fancy lobby screen * - tweak: some beauty think in lobby screen * - add: new icons * - tweak: change icons * - tweak: //WWDP EDIT * - fix: disable style while testing * - fix: Channel Popup button style revert * - fix: test again * - tweak: Update StyleSheetify
41 lines
2.7 KiB
XML
41 lines
2.7 KiB
XML
<screens:SeparatedChatGameScreen
|
|
xmlns="https://spacestation14.io"
|
|
xmlns:screens="clr-namespace:Content.Client.UserInterface.Screens"
|
|
xmlns:menuBar="clr-namespace:Content.Client.UserInterface.Systems.MenuBar.Widgets"
|
|
xmlns:actions="clr-namespace:Content.Client.UserInterface.Systems.Actions.Widgets"
|
|
xmlns:chat="clr-namespace:Content.Client.UserInterface.Systems.Chat.Widgets"
|
|
xmlns:alerts="clr-namespace:Content.Client.UserInterface.Systems.Alerts.Widgets"
|
|
xmlns:hotbar="clr-namespace:Content.Client.UserInterface.Systems.Hotbar.Widgets"
|
|
xmlns:widgets="clr-namespace:Content.Client.UserInterface.Systems.Ghost.Widgets"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
xmlns:inventory="clr-namespace:Content.Client.UserInterface.Systems.Inventory.Widgets"
|
|
xmlns:targeting="clr-namespace:Content.Client._Shitmed.UserInterface.Systems.Targeting.Widgets"
|
|
Name="SeparatedChatHud"
|
|
VerticalExpand="False"
|
|
VerticalAlignment="Bottom"
|
|
HorizontalAlignment="Center">
|
|
<controls:RecordedSplitContainer Name="ScreenContainer" HorizontalExpand="True" VerticalExpand="True" SplitWidth="0" StretchDirection="TopLeft">
|
|
<LayoutContainer Name="ViewportContainer" HorizontalExpand="True" VerticalExpand="True">
|
|
<controls:MainViewport Name="MainViewport"/>
|
|
<widgets:GhostGui Name="Ghost" Access="Protected" />
|
|
<inventory:InventoryGui Name="Inventory" Access="Protected"/>
|
|
<hotbar:HotbarGui Name="Hotbar" Access="Protected"/>
|
|
<targeting:TargetingControl Name="Targeting" Access="Protected"/> <!-- Shitmed Change -->
|
|
<BoxContainer Name="TopLeftContainer" Orientation="Vertical">
|
|
<actions:ActionsBar Name="Actions" Access="Protected" />
|
|
<BoxContainer Name="VoteMenu" Access="Public" Orientation="Vertical"/>
|
|
</BoxContainer>
|
|
<alerts:AlertsUI Name="Alerts" Access="Protected" />
|
|
</LayoutContainer>
|
|
<PanelContainer HorizontalExpand="True" MinWidth="300" StyleClasses="ChatMainPanel">
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SeparationOverride="10" Margin="10">
|
|
<PanelContainer StyleClasses="TopButtonChat">
|
|
<menuBar:GameTopMenuBar Name="TopBar" HorizontalExpand="True" Access="Protected" />
|
|
</PanelContainer>
|
|
<chat:ChatBox VerticalExpand="True" HorizontalExpand="True" Name="Chat" Access="Protected" MinSize="0 0"/>
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
</controls:RecordedSplitContainer>
|
|
</screens:SeparatedChatGameScreen>
|