* Add struct for holding historical data on cargo bounties * Add localisation strings for bounty history * Add new XAML entry for display bounty history * Expand cargo bounty menu to include tabs * Ensure station databases hold historical bounty data * Add to the bounty history when removing one from active * Feed bounty history into cargo's bounty system * Move tab title setting to constructor * Remove redundant access specifications * Remove un-needed override * Fixup BountyHistoryEntry backing code * Fix formatting in CargoBountyMenu * Reformat BountyHistoryData * Rework TryRemoveBounty to use new Entity type * Add Enum for showing bounty results * Rework look and feel of History tab * Add visible text when no bounties have been completed yet * Remove control * Swap default to null * Reverse ordering of bounties so last entry comes first * Remove redundant Visible * Move enum docs into the enum
23 lines
1.1 KiB
XML
23 lines
1.1 KiB
XML
<BoxContainer xmlns="https://spacestation14.io"
|
|
xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
Margin="10 10 10 0"
|
|
HorizontalExpand="True">
|
|
<PanelContainer StyleClasses="AngleRect" HorizontalExpand="True">
|
|
<BoxContainer Orientation="Vertical"
|
|
HorizontalExpand="True">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True">
|
|
<RichTextLabel Name="RewardLabel"/>
|
|
<RichTextLabel Name="ManifestLabel"/>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical" MinWidth="120" Margin="0 0 10 0">
|
|
<RichTextLabel Name="TimestampLabel" HorizontalAlignment="Right" />
|
|
<RichTextLabel Name="IdLabel" HorizontalAlignment="Right" />
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
<customControls:HSeparator Margin="5 10 5 10"/>
|
|
<RichTextLabel Name="NoticeLabel" />
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
</BoxContainer>
|