- Add visual file picker for GUI with toggle support. - Introduce `GUIConfig` class for loading GUI settings from configuration file. - Refactor window initialization to support dynamic sizing based on configuration. - Add macOS-specific handling for fullscreen behavior. - Improve header inclusion order and minor code cleanup.
19 lines
318 B
C++
19 lines
318 B
C++
/*
|
|
* GUIRenderer - ImGui-based renderer for GUI mode
|
|
*/
|
|
#ifndef KTE_GUI_RENDERER_H
|
|
#define KTE_GUI_RENDERER_H
|
|
|
|
#include "Renderer.h"
|
|
|
|
class GUIRenderer final : public Renderer {
|
|
public:
|
|
GUIRenderer() = default;
|
|
|
|
~GUIRenderer() override = default;
|
|
|
|
void Draw(Editor &ed) override;
|
|
};
|
|
|
|
#endif // KTE_GUI_RENDERER_H
|