* Adds UIs for volume and pressure pumps * Update Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs * Update Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs Co-authored-by: ike709 <ike709@github.com>
24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
<SS14Window xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:s="clr-namespace:Content.Client.Stylesheets"
|
|
MinSize="200 120" Title="Pressure Pump">
|
|
<BoxContainer Orientation="Vertical" Margin="5 5 5 5" SeparationOverride="10">
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Label Text="{Loc comp-gas-pump-ui-pump-status} "/>
|
|
<Control MinSize="5 0" />
|
|
<Button Name="ToggleStatusButton"/>
|
|
</BoxContainer>
|
|
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Label Text="{Loc comp-gas-pump-ui-pump-output-pressure} "/>
|
|
<Control MinSize="5 0" />
|
|
<LineEdit Name="PumpPressureOutputInput" MinSize="60 0" />
|
|
<Control MinSize="5 0" />
|
|
<Button Name="SetMaxPressureButton" Text="{Loc comp-gas-pump-ui-pump-set-max}" />
|
|
<Control MinSize="5 0" />
|
|
<Control HorizontalExpand="True" />
|
|
<Button Name="SetOutputPressureButton" Text="{Loc comp-gas-pump-ui-pump-set-rate}" HorizontalAlignment="Right" Disabled="True"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</SS14Window>
|