mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
Contains: - Storage UI v2, required for removing DeferredClose. - Stock market refactor (mostly some basic changes to stock market, didn't want to make a whole other PR for it) - Make guidebook remember where you left off - Any other PRs are purely for fixing issues related to the above PRs or the engine update. 🆑 - add: Ported Storage UI v2. - tweak: The guidebook will now remember where you left off. --------- Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: deltanedas <39013340+deltanedas@users.noreply.github.com> Co-authored-by: 12rabbits <53499656+12rabbits@users.noreply.github.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: gluesniffler <159397573+gluesniffler@users.noreply.github.com> Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com> (cherry picked from commit 3c37ff1c48637d1cdf8bc3c6b1412dad338ea205)
40 lines
2.3 KiB
XML
40 lines
2.3 KiB
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
xmlns:fancyTree="clr-namespace:Content.Client.UserInterface.Controls.FancyTree"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
SetSize="850 700"
|
|
MinSize="100 200"
|
|
Resizable="True"
|
|
Title="{Loc 'guidebook-window-title'}">
|
|
<SplitContainer Orientation="Horizontal" HorizontalExpand="True" Name="Split">
|
|
<!-- Guide select -->
|
|
<BoxContainer Orientation="Horizontal" Name="TreeBox">
|
|
<fancyTree:FancyTree Name="Tree" VerticalExpand="True" HorizontalExpand="True" Access="Public"/>
|
|
<cc:VSeparator StyleClasses="LowDivider" Margin="0 -2"/>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
|
|
<BoxContainer Name="SearchContainer" Visible="False" HorizontalExpand="True">
|
|
<LineEdit
|
|
Name="SearchBar"
|
|
PlaceHolder="{Loc 'guidebook-filter-placeholder-text'}"
|
|
HorizontalExpand="True"
|
|
Margin="0 5 10 5">
|
|
</LineEdit>
|
|
</BoxContainer>
|
|
<BoxContainer Access="Internal" Name="ReturnContainer" Orientation="Horizontal" HorizontalAlignment="Right" Visible="False">
|
|
<Button Name="HomeButton" Text="{Loc 'ui-rules-button-home'}" Margin="0 0 10 0"/>
|
|
</BoxContainer>
|
|
<ScrollContainer Name="Scroll" HScrollEnabled="False" HorizontalExpand="True" VerticalExpand="True">
|
|
<Control>
|
|
<BoxContainer Orientation="Vertical" Name="EntryContainer" Margin="5 5 5 5" Visible="False">
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical" Name="Placeholder" Margin="5 5 5 5">
|
|
<Label HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Loc 'guidebook-placeholder-text'}"/>
|
|
<Label HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Loc 'guidebook-placeholder-text-2'}"/>
|
|
</BoxContainer>
|
|
</Control>
|
|
</ScrollContainer>
|
|
</BoxContainer>
|
|
</SplitContainer>
|
|
</controls:FancyWindow>
|