From e4a0432383331e013808a97b7c24707e4ddc4726 Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 26 Sep 2025 12:23:19 +0200 Subject: Initial Commit --- src/config/config_manager.h | 101 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 src/config/config_manager.h (limited to 'src/config/config_manager.h') diff --git a/src/config/config_manager.h b/src/config/config_manager.h new file mode 100644 index 0000000..97f751e --- /dev/null +++ b/src/config/config_manager.h @@ -0,0 +1,101 @@ +#ifndef SRDWM_CONFIG_MANAGER_H +#define SRDWM_CONFIG_MANAGER_H + +#include +#include +#include +#include +#include // Added missing include + +// Forward declarations +class WindowManager; + +// Configuration manager for srdwm +class ConfigManager { +public: + struct KeyBinding { + std::string key; + std::string command; + std::string description; + }; + + struct LayoutConfig { + std::string name; + std::string type; // "tiling", "dynamic", "floating" + std::map properties; + }; + + struct ThemeConfig { + std::string name; + std::map colors; + std::map fonts; + std::map dimensions; + }; + + ConfigManager(); + ~ConfigManager(); + + // Configuration loading + bool load_config(const std::string& config_path); + bool reload_config(); + + // Configuration access + std::string get_string(const std::string& key, const std::string& default_value = "") const; + int get_int(const std::string& key, int default_value = 0) const; + bool get_bool(const std::string& key, bool default_value = false) const; + double get_float(const std::string& key, double default_value = 0.0) const; + + // Key bindings + std::vector get_key_bindings() const; + bool add_key_binding(const std::string& key, const std::string& command, const std::string& description = ""); + bool remove_key_binding(const std::string& key); + + // Layout configuration + std::vector get_layout_configs() const; + LayoutConfig get_layout_config(const std::string& name) const; + + // Theme configuration + ThemeConfig get_theme_config() const; + bool set_theme(const std::string& theme_name); + + // Window rules + struct WindowRule { + std::string match_type; // "class", "title", "role" + std::string match_value; + std::map properties; + }; + + std::vector get_window_rules() const; + bool add_window_rule(const WindowRule& rule); + + // Configuration validation + bool validate_config() const; + std::vector get_validation_errors() const; + +private: + std::string config_path_; + std::map string_values_; + std::map int_values_; + std::map bool_values_; + std::map float_values_; + + std::vector key_bindings_; + std::vector layout_configs_; + std::vector window_rules_; + ThemeConfig current_theme_; + + std::vector validation_errors_; + + // Private methods + void parse_config_file(const std::string& content); + void setup_default_config(); + bool validate_key_binding(const KeyBinding& binding) const; + bool validate_layout_config(const LayoutConfig& config) const; + bool validate_window_rule(const WindowRule& rule) const; + + // Lua integration (placeholder for future implementation) + bool execute_lua_config(const std::string& lua_code); +}; + +#endif // SRDWM_CONFIG_MANAGER_H + -- cgit v1.2.3