* Fix some bugs in stations and do a little cleanup. * Begin backporting the guidebook. * wow that's a lot of work. * More work, gives the monkey some more interactions. * disco monkye. * monky * jobs entry. * more writing. * disco * im being harassed * fix spacing. * i hate writing. * Update Resources/Prototypes/Entities/Mobs/NPCs/animals.yml Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> * builds again * a * pilfer changes from AL * fix and remove unused code * pilfer actual guide changes from AL * localization * more error logs & safety checks * replace controls button with command * add test * todos * pidgin parsing * remove old parser * Move files and change tree sorting * add localization and public methods. * Add help component/verb * rename ITag to IDocumentTag * Fix yml and tweak tooltips * autoclose tooltip * Split container * Fancier-tree * Hover color * txt to xml * oops * Curse you hidden merge conflicts * Rename parsing manager * Stricter arg parsing tag args must now be of the form key="value" * Change default args * Moar tests * nullable enable * Even fancier tree * extremely fancy trees * better indent icons * stricter xml and subheadings * tweak embed margin * Fix parsing bugs * quick fixes. * spain. * ogh * hn bmvdsyc Co-authored-by: moonheart08 <moonheart08@users.noreply.github.com>
27 lines
1.6 KiB
XML
27 lines
1.6 KiB
XML
<controls:FancyWindow xmlns:ui="clr-namespace:Content.Client.UserInterface"
|
|
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="750 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"/>
|
|
<cc:VSeparator StyleClasses="LowDivider" Margin="0 -2"/>
|
|
</BoxContainer>
|
|
<ScrollContainer Name="Scroll" HScrollEnabled="False" HorizontalExpand="True" VerticalExpand="True">
|
|
<Control>
|
|
<BoxContainer Orientation="Vertical" Name="EntryContainer" Margin="5 5 5 5" Visible="False"/>
|
|
<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>
|
|
</SplitContainer>
|
|
</controls:FancyWindow>
|