feat: font selector

This commit is contained in:
2025-12-17 03:06:24 +03:00
parent ef0854aa39
commit c58ff17289
4 changed files with 136 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
#define CLRSYNC_GUI_SETTINGS_WINDOW_HPP
#include <string>
#include <vector>
class settings_window
{
@@ -24,6 +25,9 @@ private:
char m_font[128];
int m_font_size;
std::vector<std::string> m_available_fonts;
int m_selected_font_idx;
std::string m_error_message;
};