* make extract button green, rename Destroy internally to Extract * 5 --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
65 lines
3.3 KiB
XML
65 lines
3.3 KiB
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
Title="{Loc 'analysis-console-menu-title'}"
|
|
MinSize="620 280"
|
|
SetSize="620 280">
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True" VerticalExpand="True">
|
|
<BoxContainer Margin="10 10 10 10" MinWidth="150" Orientation="Vertical" VerticalExpand="True" SizeFlagsStretchRatio="1">
|
|
<BoxContainer Orientation="Vertical" VerticalExpand="True">
|
|
<Button Name="ServerSelectionButton"
|
|
Text="{Loc 'analysis-console-server-list-button'}"></Button>
|
|
<BoxContainer MinHeight="5"></BoxContainer>
|
|
<Button Name="ScanButton"
|
|
Text="{Loc 'analysis-console-scan-button'}"
|
|
ToolTip="{Loc 'analysis-console-scan-tooltip-info'}">
|
|
</Button>
|
|
<BoxContainer MinHeight="5"></BoxContainer>
|
|
<Button Name="PrintButton"
|
|
Text="{Loc 'analysis-console-print-button'}"
|
|
ToolTip="{Loc 'analysis-console-print-tooltip-info'}">
|
|
</Button>
|
|
<BoxContainer MinHeight="5"></BoxContainer>
|
|
<Button Name="ExtractButton"
|
|
Text="{Loc 'analysis-console-extract-button'}"
|
|
ToolTip="{Loc 'analysis-console-extract-button-info'}">
|
|
</Button>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical">
|
|
<Label Name="ProgressLabel"></Label>
|
|
<ProgressBar
|
|
Name="ProgressBar"
|
|
MinValue="0"
|
|
MaxValue="1"
|
|
SetHeight="20">
|
|
</ProgressBar>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
<customControls:VSeparator StyleClasses="LowDivider"/>
|
|
<PanelContainer Margin="10 10 10 10" HorizontalExpand="True" SizeFlagsStretchRatio="3">
|
|
<PanelContainer.PanelOverride>
|
|
<gfx:StyleBoxFlat BackgroundColor="#000000FF" />
|
|
</PanelContainer.PanelOverride>
|
|
<BoxContainer Margin="10 10 10 10" Orientation="Horizontal">
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True" >
|
|
<BoxContainer VerticalExpand="True">
|
|
<RichTextLabel Name="Information"> </RichTextLabel>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
<BoxContainer VerticalExpand="False" Orientation="Vertical" MaxSize="64 64">
|
|
<SpriteView
|
|
Name="ArtifactDisplay"
|
|
OverrideDirection="South"
|
|
VerticalExpand="False"
|
|
SetSize="64 64"
|
|
MaxSize="64 64"
|
|
Scale="2 2">
|
|
</SpriteView>
|
|
</BoxContainer>
|
|
<BoxContainer VerticalExpand="True"></BoxContainer>
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|