chore: refactor

This commit is contained in:
2025-12-19 17:22:23 +03:00
parent 82998d688c
commit 4ada2c44ed
38 changed files with 1628 additions and 500 deletions

View File

@@ -8,10 +8,15 @@
#include <string>
#include <vector>
namespace clrsync::gui
{
class ui_manager;
}
class template_editor
{
public:
template_editor();
template_editor(clrsync::gui::ui_manager* ui_mgr);
void render();
void apply_current_palette(const clrsync::core::palette &pal);
@@ -62,6 +67,7 @@ class template_editor
ImVec4 m_autocomplete_dim_text_color;
clrsync::core::palette m_current_palette;
clrsync::gui::ui_manager* m_ui_manager;
};
#endif // CLRSYNC_GUI_TEMPLATE_EDITOR_HPP