v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
36
source/frontend/StarGraphicsMenu.hpp
Normal file
36
source/frontend/StarGraphicsMenu.hpp
Normal file
|
@ -0,0 +1,36 @@
|
|||
#ifndef STAR_GRAPHICS_MENU_HPP
|
||||
#define STAR_GRAPHICS_MENU_HPP
|
||||
|
||||
#include "StarPane.hpp"
|
||||
|
||||
namespace Star {
|
||||
|
||||
STAR_CLASS(GraphicsMenu);
|
||||
|
||||
class GraphicsMenu : public Pane {
|
||||
public:
|
||||
GraphicsMenu();
|
||||
|
||||
void show() override;
|
||||
void dismissed() override;
|
||||
|
||||
void toggleFullscreen();
|
||||
|
||||
private:
|
||||
static StringList const ConfigKeys;
|
||||
|
||||
void initConfig();
|
||||
void syncGui();
|
||||
|
||||
void apply();
|
||||
void applyWindowSettings();
|
||||
|
||||
List<Vec2U> m_resList;
|
||||
List<float> m_zoomList;
|
||||
|
||||
JsonObject m_localChanges;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue