src/ImGuiOptions.hpp
browsing at commit = 158d43ee7c9883723c7b7e2c980c3fa165f41d34
/*
===========================================================================
* Saland Adventures
Copyright (C) 2014-2024 Poul Sander
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
Source information and contacts persons can be found at
https://github.com/sago007/saland
===========================================================================
*/
#ifndef IMGUI_OPTIONS_HPP
#define IMGUI_OPTIONS_HPP
#include "sago/GameStateInterface.hpp"
struct SDL_Renderer;
union SDL_Event;
// Forward declaration
void toggleFullscreen();
class ImGuiOptions : public sago::GameStateInterface {
public:
ImGuiOptions();
virtual bool IsActive() override;
virtual void Draw(SDL_Renderer* target) override;
virtual void ProcessInput(const SDL_Event& event, bool& processed) override;
virtual void Update() override;
ImGuiOptions(const ImGuiOptions&) = delete;
ImGuiOptions& operator=(const ImGuiOptions&) = delete;
virtual ~ImGuiOptions() = default;
private:
bool active = true;
bool pendingFullscreenToggle = false;
};
#endif /* IMGUI_OPTIONS_HPP */