This commit is contained in:
Aria 2025-03-21 22:23:30 +11:00
commit 9c94d113d3
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10260 changed files with 1237388 additions and 0 deletions

View file

@ -0,0 +1,68 @@
#ifndef STAR_OPTIONS_MENU_HPP
#define STAR_OPTIONS_MENU_HPP
#include "StarPane.hpp"
#include "StarConfiguration.hpp"
#include "StarMainInterfaceTypes.hpp"
namespace Star {
STAR_CLASS(SliderBarWidget);
STAR_CLASS(ButtonWidget);
STAR_CLASS(LabelWidget);
STAR_CLASS(KeybindingsMenu);
STAR_CLASS(GraphicsMenu);
STAR_CLASS(OptionsMenu);
class OptionsMenu : public Pane {
public:
OptionsMenu(PaneManager* manager);
virtual void show() override;
void toggleFullscreen();
private:
static StringList const ConfigKeys;
void initConfig();
void updateSFXVol();
void updateMusicVol();
void updateTutorialMessages();
void updateClientIPJoinable();
void updateClientP2PJoinable();
void updateAllowAssetsMismatch();
void syncGuiToConf();
void displayControls();
void displayGraphics();
SliderBarWidgetPtr m_sfxSlider;
SliderBarWidgetPtr m_musicSlider;
ButtonWidgetPtr m_tutorialMessagesButton;
ButtonWidgetPtr m_interactiveHighlightButton;
ButtonWidgetPtr m_clientIPJoinableButton;
ButtonWidgetPtr m_clientP2PJoinableButton;
ButtonWidgetPtr m_allowAssetsMismatchButton;
LabelWidgetPtr m_sfxLabel;
LabelWidgetPtr m_musicLabel;
LabelWidgetPtr m_p2pJoinableLabel;
Vec2I m_sfxRange;
Vec2I m_musicRange;
JsonObject m_origConfig;
JsonObject m_localChanges;
KeybindingsMenuPtr m_keybindingsMenu;
GraphicsMenuPtr m_graphicsMenu;
PaneManager* m_paneManager;
};
}
#endif