mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-06-09 10:06:46 +02:00
118b83165b
* Switch button for gas filter power * Switch button for gas mixer power * Switch button for gas pump power * Switch button for thermomachine power * Switch button for space heater power * Remove redundant switch labels
38 lines
1.9 KiB
XML
38 lines
1.9 KiB
XML
<DefaultWindow xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
MinSize="200 200" Title="Gas Mixer">
|
|
<BoxContainer Orientation="Vertical" Margin="5 5 5 5" SeparationOverride="10">
|
|
<controls:SwitchButton
|
|
Name="ToggleStatusButton"
|
|
HorizontalAlignment="Left"
|
|
Pressed="True" />
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Label Text="{Loc comp-gas-mixer-ui-mixer-output-pressure}"/>
|
|
<Control MinSize="5 0" />
|
|
<LineEdit Name="MixerPressureOutputInput" MinSize="70 0" />
|
|
<Control MinSize="5 0" />
|
|
<Button Name="SetMaxPressureButton" Text="{Loc comp-gas-mixer-ui-mixer-max}" />
|
|
<Control MinSize="5 0" />
|
|
<Control HorizontalExpand="True" />
|
|
<Button Name="SetOutputPressureButton" Text="{Loc comp-gas-mixer-ui-mixer-set}" HorizontalAlignment="Right" Disabled="True"/>
|
|
<Control MinSize="0 5" />
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Control MinSize="0 5" />
|
|
<Label Text="{Loc comp-gas-mixer-ui-mixer-node-primary}"/>
|
|
<Control MinSize="5 0" />
|
|
<LineEdit Name="MixerNodeOneInput" MinSize="60 0" />
|
|
<Label Text=" %"/>
|
|
<Control MinSize="5 0" />
|
|
<Label Text="{Loc comp-gas-mixer-ui-mixer-node-side}"/>
|
|
<Control MinSize="5 0" />
|
|
<LineEdit Name="MixerNodeTwoInput" MinSize="60 0" />
|
|
<Label Text=" %"/>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<Button Name="SetMixerPercentageButton" Text="{Loc comp-gas-mixer-ui-mixer-set}" HorizontalAlignment="Right" Disabled="True"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</DefaultWindow>
|