v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
68
source/frontend/StarOptionsMenu.hpp
Normal file
68
source/frontend/StarOptionsMenu.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue