forked from SpaceStation14-Shenanigans/Monolith
59e2ceaa31
Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com>
61 lines
3.8 KiB
XML
61 lines
3.8 KiB
XML
<DefaultWindow xmlns="https://spacestation14.io"
|
|
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
Title="{Loc 'general-station-record-console-window-title'}"
|
|
MinSize="800 500"> <!-- Frontier: width 750<800, add graphics namespace -->
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Margin="5 5 5 10" HorizontalExpand="True">
|
|
<OptionButton Name="StationRecordsFilterType" MinWidth="200" Margin="0 0 10 0"/>
|
|
<LineEdit Name="StationRecordsFiltersValue"
|
|
PlaceHolder="{Loc 'general-station-record-for-filter-line-placeholder'}" HorizontalExpand="True"/>
|
|
<Button Name="StationRecordsFilters" Text="{Loc 'general-station-record-console-search-records'}"/>
|
|
<Button Name="StationRecordsFiltersReset" Text="{Loc 'general-station-record-console-reset-filters'}"/>
|
|
</BoxContainer>
|
|
<BoxContainer VerticalExpand="True">
|
|
<!-- Record listing -->
|
|
<BoxContainer Orientation="Vertical" Margin="5" MinWidth="328" MaxWidth="360">
|
|
<Label Name="RecordListingStatus" Visible="False" />
|
|
<ScrollContainer VerticalExpand="True">
|
|
<ItemList Name="RecordListing" />
|
|
</ScrollContainer>
|
|
<ScrollContainer VerticalExpand="True">
|
|
<BoxContainer Name="JobListing"
|
|
Orientation="Vertical"
|
|
HorizontalExpand="True"
|
|
VerticalExpand="True">
|
|
</BoxContainer>
|
|
</ScrollContainer>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical" Margin="5" HorizontalExpand="True"> <!-- Frontier: add HorizontalExpand-->
|
|
<ScrollContainer VerticalExpand="True"> <!-- Frontier: put record info in a scroll box -->
|
|
<Label Name="RecordContainerStatus" Visible="False" Text="{Loc 'general-station-record-console-select-record-info'}"/>
|
|
<Control Name="RecordContainer" Visible="False"/>
|
|
</ScrollContainer> <!-- Frontier: put record info in a scroll box -->
|
|
<!-- Frontier: ship bio -->
|
|
<BoxContainer Name="AdContainer" Orientation="Vertical" VerticalExpand="True" HorizontalExpand="True" Visible="False">
|
|
<Label Name="AdTitle" Text="{Loc 'general-station-record-console-ad-label'}" StyleClasses="LabelKeyText"/>
|
|
<PanelContainer VerticalExpand="True" HorizontalExpand="True">
|
|
<PanelContainer.PanelOverride>
|
|
<graphics:StyleBoxFlat BorderThickness="2" BorderColor="#777777"/>
|
|
</PanelContainer.PanelOverride>
|
|
<TextEdit Name="AdTextBox" MinHeight="100" VerticalExpand="True" HorizontalExpand="True"/>
|
|
</PanelContainer>
|
|
<BoxContainer Orientation="Horizontal" HorizontalAlignment="Right" Margin="5">
|
|
<Label Name="AdUnsavedChanges"
|
|
Text="{Loc 'general-station-record-console-ad-unsaved-changes'}"
|
|
Visible="False"
|
|
HorizontalAlignment="Right"
|
|
FontColorOverride="yellow"
|
|
Margin="0 0 5 0"/>
|
|
<Button Name="AdSubmitButton"
|
|
Text="{Loc 'general-station-record-console-ad-submit'}"
|
|
Disabled="True"
|
|
SetSize="100 30"
|
|
HorizontalAlignment="Right"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
<!-- Frontier: end ship bio -->
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</DefaultWindow>
|