* Basic attempt at rewriting how the options menu works, move accessibility settings into their own tab. * Audio tab uses the new options system. * Rewrite Misc tab * Clean up heading styling * Rewrite options tab and other minor cleanup all over the place. * Documentation comments and minor cleanup. --------- Co-authored-by: AJCM <AJCM@tutanota.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
35 lines
2.4 KiB
XML
35 lines
2.4 KiB
XML
<tabs:MiscTab xmlns="https://spacestation14.io"
|
|
xmlns:tabs="clr-namespace:Content.Client.Options.UI.Tabs"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ui="clr-namespace:Content.Client.Options.UI">
|
|
<BoxContainer Orientation="Vertical">
|
|
<ScrollContainer VerticalExpand="True" HorizontalExpand="True">
|
|
<BoxContainer Orientation="Vertical" Margin="8 8 8 8" VerticalExpand="True">
|
|
<Label Text="{Loc 'ui-options-general-ui-style'}"
|
|
StyleClasses="LabelKeyText"/>
|
|
<ui:OptionDropDown Name="DropDownHudTheme" Title="{Loc 'ui-options-hud-theme'}" />
|
|
<ui:OptionDropDown Name="DropDownHudLayout" Title="{Loc 'ui-options-hud-layout'}" />
|
|
<Label Text="{Loc 'ui-options-general-discord'}"
|
|
StyleClasses="LabelKeyText"/>
|
|
<CheckBox Name="DiscordRich" Text="{Loc 'ui-options-discordrich'}" />
|
|
<Label Text="{Loc 'ui-options-general-speech'}"
|
|
StyleClasses="LabelKeyText"/>
|
|
<CheckBox Name="ShowOocPatronColor" Text="{Loc 'ui-options-show-ooc-patron-color'}" />
|
|
<CheckBox Name="ShowLoocAboveHeadCheckBox" Text="{Loc 'ui-options-show-looc-on-head'}" />
|
|
<CheckBox Name="FancySpeechBubblesCheckBox" Text="{Loc 'ui-options-fancy-speech'}" />
|
|
<CheckBox Name="FancyNameBackgroundsCheckBox" Text="{Loc 'ui-options-fancy-name-background'}" />
|
|
<Label Text="{Loc 'ui-options-general-cursor'}"
|
|
StyleClasses="LabelKeyText"/>
|
|
<CheckBox Name="ShowHeldItemCheckBox" Text="{Loc 'ui-options-show-held-item'}" />
|
|
<CheckBox Name="ShowCombatModeIndicatorsCheckBox" Text="{Loc 'ui-options-show-combat-mode-indicators'}" />
|
|
<Label Text="{Loc 'ui-options-general-storage'}"
|
|
StyleClasses="LabelKeyText"/>
|
|
<CheckBox Name="OpaqueStorageWindowCheckBox" Text="{Loc 'ui-options-opaque-storage-window'}" />
|
|
<CheckBox Name="StaticStorageUI" Text="{Loc 'ui-options-static-storage-ui'}" />
|
|
<!-- <CheckBox Name="ToggleWalk" Text="{Loc 'ui-options-hotkey-toggle-walk'}" /> -->
|
|
</BoxContainer>
|
|
</ScrollContainer>
|
|
<ui:OptionsTabControlRow Name="Control" Access="Public" />
|
|
</BoxContainer>
|
|
</tabs:MiscTab>
|