-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into LoaderATM
- Loading branch information
Showing
108 changed files
with
1,467 additions
and
472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
Content.Client/Bank/BUI/WithdrawlBankATMMenuBoundUserInterface.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,54 @@ | ||
<controls:FancyWindow xmlns="https://spacestation14.io" | ||
xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" | ||
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls" | ||
SetSize="480 230" | ||
MinSize="360 230"> | ||
<BoxContainer Margin="10 2 10 2" Orientation="Vertical"> | ||
<BoxContainer Orientation="Horizontal"> | ||
SetSize="360 315" | ||
MinSize="360 315"> | ||
<BoxContainer Margin="10 2 10 2" Orientation="Vertical" VerticalExpand="True"> | ||
<GridContainer Columns="2" HorizontalExpand="True"> | ||
<Label Text="{Loc 'bank-atm-menu-balance-label'}" | ||
StyleClasses="LabelKeyText" /> | ||
StyleClasses="LabelKeyText" | ||
HorizontalAlignment="Right" /> | ||
<Label Name="BalanceLabel" | ||
Text="{Loc 'bank-atm-menu-no-bank'}" /> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Horizontal"> | ||
Text="{Loc 'bank-atm-menu-no-bank'}" /> | ||
|
||
<Label Text="{Loc 'bank-atm-menu-amount-label'}" | ||
StyleClasses="LabelKeyText" | ||
MinSize="100 0" /> | ||
<LineEdit Name="WithdrawEdit" SetSize="120 30" HorizontalAlignment="Right"/> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Horizontal"> | ||
StyleClasses="LabelKeyText" | ||
HorizontalAlignment="Right" /> | ||
<LineEdit Name="WithdrawEdit" MinSize="120 0" HorizontalExpand="True"/> | ||
|
||
<Label Text="{Loc 'bank-atm-reason-label'}" | ||
StyleClasses="LabelKeyText" | ||
MinSize="100 0" /> | ||
<OptionButton Name="Reasons" | ||
HorizontalExpand="True"/> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Horizontal"> | ||
HorizontalAlignment="Right" /> | ||
<OptionButton Name="WithdrawalReasons" | ||
HorizontalExpand="True"/> | ||
|
||
<Label Text="{Loc 'bank-atm-description-label'}" | ||
StyleClasses="LabelKeyText" | ||
MinSize="100 0" /> | ||
<LineEdit Name="AmountDescription" MinSize="120 0" HorizontalExpand="True"/> | ||
</BoxContainer> | ||
<Button Name="WithdrawButton" | ||
Text="{Loc 'bank-atm-menu-withdraw-button'}"/> | ||
<TextureButton VerticalExpand="True" /> | ||
<BoxContainer Orientation="Horizontal"> | ||
HorizontalAlignment="Right" /> | ||
<LineEdit Name="WithdrawalAmountDescription" MinSize="120 0" HorizontalExpand="True"/> | ||
|
||
<BoxContainer/> <!-- Skip an element --> | ||
<Button Name="WithdrawButton" | ||
Text="{Loc 'bank-atm-menu-withdraw-button'}" | ||
HorizontalExpand="True"/> | ||
|
||
<Label Text="{Loc 'bank-atm-menu-deposit-label'}" | ||
StyleClasses="LabelKeyText" /> | ||
StyleClasses="LabelKeyText" | ||
HorizontalAlignment="Right" /> | ||
<Label Name="DepositLabel" | ||
Text="{Loc 'bank-atm-menu-no-deposit'}" /> | ||
</BoxContainer> | ||
<Button Name="DepositButton" | ||
Text="{Loc 'bank-atm-menu-deposit-button'}"/> | ||
<TextureButton VerticalExpand="True" /> | ||
Text="{Loc 'bank-atm-menu-no-deposit'}" /> | ||
|
||
<Label Text="{Loc 'bank-atm-reason-label'}" | ||
HorizontalAlignment="Right" /> | ||
<OptionButton Name="DepositReasons" | ||
HorizontalExpand="True"/> | ||
|
||
<Label Text="{Loc 'bank-atm-description-label'}" | ||
HorizontalAlignment="Right" /> | ||
<LineEdit Name="DepositAmountDescription" MinSize="120 0" HorizontalExpand="True"/> | ||
|
||
<BoxContainer/> <!-- Skip an element --> | ||
<Button Name="DepositButton" | ||
Text="{Loc 'bank-atm-menu-deposit-button'}" | ||
HorizontalExpand="True"/> | ||
</GridContainer> | ||
</BoxContainer> | ||
</controls:FancyWindow> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
Content.Client/_NF/CartridgeLoader/Cartridges/LedgerEntry.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<BoxContainer xmlns="https://spacestation14.io" | ||
xmlns:cartridges="clr-namespace:Content.Client._NF.CartridgeLoader.Cartridges" | ||
Orientation="Vertical" | ||
HorizontalExpand="True"> | ||
<BoxContainer Orientation="Horizontal" | ||
HorizontalExpand="True" | ||
SetHeight="25"> | ||
<Label Name="Description" | ||
Access="Public"/> | ||
<Label Name="Value" | ||
Access="Public" | ||
HorizontalAlignment="Right" | ||
HorizontalExpand="True"/> | ||
</BoxContainer> | ||
</BoxContainer> |
14 changes: 14 additions & 0 deletions
14
Content.Client/_NF/CartridgeLoader/Cartridges/LedgerEntry.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Robust.Client.AutoGenerated; | ||
using Robust.Client.UserInterface.Controls; | ||
using Robust.Client.UserInterface.XAML; | ||
|
||
namespace Content.Client._NF.CartridgeLoader.Cartridges; | ||
|
||
[GenerateTypedNameReferences] | ||
public sealed partial class LedgerEntry : BoxContainer | ||
{ | ||
public LedgerEntry() | ||
{ | ||
RobustXamlLoader.Load(this); | ||
} | ||
} |
Oops, something went wrong.