52 lines
		
	
	
	
		
			913 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			913 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <imgui.h>
 | 
						|
 | 
						|
struct GLFWwindow;
 | 
						|
 | 
						|
namespace lt {
 | 
						|
 | 
						|
class Event;
 | 
						|
class SharedContext;
 | 
						|
 | 
						|
class UserInterface
 | 
						|
{
 | 
						|
public:
 | 
						|
	static auto create(GLFWwindow *windowHandle, Ref<SharedContext> sharedContext)
 | 
						|
	    -> Scope<UserInterface>;
 | 
						|
 | 
						|
	static void dockspace_begin();
 | 
						|
 | 
						|
	static void dockspace_end();
 | 
						|
 | 
						|
	UserInterface(const UserInterface &) = delete;
 | 
						|
 | 
						|
	auto operator=(const UserInterface &) -> UserInterface & = delete;
 | 
						|
 | 
						|
	virtual ~UserInterface() = default;
 | 
						|
 | 
						|
	void init(GLFWwindow *windowHandle, Ref<SharedContext> sharedContext);
 | 
						|
 | 
						|
	virtual void platform_implementation(
 | 
						|
	    GLFWwindow *window_handle,
 | 
						|
	    Ref<SharedContext> sharedContext
 | 
						|
	) = 0;
 | 
						|
 | 
						|
	virtual void begin() = 0;
 | 
						|
 | 
						|
	virtual void end() = 0;
 | 
						|
 | 
						|
	virtual void log_debug_data() = 0;
 | 
						|
 | 
						|
protected:
 | 
						|
	UserInterface();
 | 
						|
 | 
						|
private:
 | 
						|
	static UserInterface *s_context;
 | 
						|
 | 
						|
	void set_dark_theme_colors();
 | 
						|
 | 
						|
	ImGuiWindowFlags m_dockspace_flags;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace lt
 |