mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 00:55:39 +00:00
34 lines
656 B
C++
34 lines
656 B
C++
#ifndef _SETTINGSMENU_H_
|
|
#define _SETTINGSMENU_H_
|
|
|
|
#include "../GuiComponent.h"
|
|
#include "ComponentListComponent.h"
|
|
#include <vector>
|
|
#include "SwitchComponent.h"
|
|
#include "SliderComponent.h"
|
|
#include "TextComponent.h"
|
|
|
|
class GuiSettingsMenu : public GuiComponent
|
|
{
|
|
public:
|
|
GuiSettingsMenu(Window* window);
|
|
~GuiSettingsMenu();
|
|
|
|
bool input(InputConfig* config, Input input) override;
|
|
|
|
private:
|
|
void loadStates();
|
|
void applyStates();
|
|
|
|
ComponentListComponent mList;
|
|
|
|
SwitchComponent mDrawFramerateSwitch;
|
|
SliderComponent mVolumeSlider;
|
|
SwitchComponent mDisableSoundsSwitch;
|
|
TextComponent mSaveLabel;
|
|
|
|
std::vector<GuiComponent*> mLabels;
|
|
};
|
|
|
|
#endif
|