X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fconfig.c;h=db8856e69c71ee9172a9057079bfff06998424be;hb=92d3f2342db3d3bfd5d41a6c3dc165efa7766ffa;hp=3a5a1c60d4ec79ceb76be0b437b7b76aa75330f4;hpb=d8268296fb82a0395e1bceadfc1ab196f488f955;p=chaz%2Fopenbox diff --git a/openbox/config.c b/openbox/config.c index 3a5a1c60..db8856e6 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -1,234 +1,120 @@ #include "config.h" +#include "parse.h" -#ifdef HAVE_STDIO_H -# include -#endif - -static void config_free_entry(ConfigEntry *entry); -static void config_set_entry(char *name, ConfigValueType type, - ConfigValue value); -static void config_def_free(ConfigDefEntry *entry); -static void print_config(GQuark q, gpointer data, gpointer fonk){ - ConfigDefEntry *e = (ConfigDefEntry *)data; - g_message("config: %s %d", e->name, e->hasList); -} - -static GData *config = NULL; -static GData *config_def = NULL; +gboolean config_focus_new; +gboolean config_focus_follow; +gboolean config_focus_last; +gboolean config_focus_last_on_desktop; -/* provided by cparse.l */ -void cparse_go(char *filename, FILE *); +char *config_theme; +int config_desktops_num; +GSList *config_desktops_names; -void config_startup() +static void parse_focus(char *name, ParseToken *value) { - /* set up options exported by the kernel */ - config_def_set(config_def_new("engine", Config_String, - "Engine", - "The name of the theming engine to be used " - "to decorate windows.")); - config_def_set(config_def_new("theme", Config_String, - "Theme", - "The name of the theme to load with the " - "chosen engine.")); - config_def_set(config_def_new("font", Config_String, - "Titlebar Font", - "The fontstring specifying the font to " - "be used in window titlebars.")); - config_def_set(config_def_new("font.shadow", Config_Bool, - "Titlebar Font Shadow", - "Whether or not the text in the window " - "titlebars gets a drop shadow.")); - config_def_set(config_def_new("font.shadow.offset", Config_Integer, - "Titlebar Font Shadow Offset", - "The offset of the drop shadow for text " - "in the window titlebars.")); - config_def_set(config_def_new("titlebar.layout", Config_String, - "Titlebar Layout", - "The ordering of the elements in the " - "window titlebars.")); - - /*g_datalist_foreach(&config_def, print_config, NULL);*/ + if (!g_ascii_strcasecmp(name, "focusnew")) { + if (value->type != TOKEN_BOOL) + yyerror("invalid value"); + else { + config_focus_new = value->data.bool; + } + } else if (!g_ascii_strcasecmp(name, "followmouse")) { + if (value->type != TOKEN_BOOL) + yyerror("invalid value"); + else { + config_focus_follow = value->data.bool; + } + } else if (!g_ascii_strcasecmp(name, "focuslast")) { + if (value->type != TOKEN_BOOL) + yyerror("invalid value"); + else { + config_focus_last = value->data.bool; + } + } else if (!g_ascii_strcasecmp(name, "focuslastondesktop")) { + if (value->type != TOKEN_BOOL) + yyerror("invalid value"); + else { + config_focus_last_on_desktop = value->data.bool; + } + } else + yyerror("invalid option"); + parse_free_token(value); } -void config_shutdown() +static void parse_theme(char *name, ParseToken *value) { - g_datalist_clear(&config); - g_datalist_clear(&config_def); + if (!g_ascii_strcasecmp(name, "theme")) { + if (value->type != TOKEN_STRING) + yyerror("invalid value"); + else { + g_free(config_theme); + config_theme = g_strdup(value->data.string); + } + } else + yyerror("invalid option"); + parse_free_token(value); } -void config_parse() +static void parse_desktops(char *name, ParseToken *value) { - FILE *file; - char *path; - gboolean load = FALSE; - - /* load the user rc */ - path = g_build_filename(g_get_home_dir(), ".openbox", "rc3", NULL); - if ((file = fopen(path, "r")) != NULL) { - cparse_go(path, file); - fclose(file); - load = TRUE; - } - g_free(path); - - if (!load) { - /* load the system wide rc */ - path = g_build_filename(RCDIR, "rc3", NULL); - if ((file = fopen(path, "r")) != NULL) { - /*cparse_go(path, file);*/ - fclose(file); + GList *it; + + if (!g_ascii_strcasecmp(name, "number")) { + if (value->type != TOKEN_INTEGER) + yyerror("invalid value"); + else { + config_desktops_num = value->data.integer; + } + } else if (!g_ascii_strcasecmp(name, "names")) { + if (value->type == TOKEN_LIST) { + for (it = value->data.list; it; it = it->next) + if (((ParseToken*)it->data)->type != TOKEN_STRING) break; + if (it == NULL) { + /* build a string list */ + g_free(config_desktops_names); + for (it = value->data.list; it; it = it->next) + config_desktops_names = + g_slist_append(config_desktops_names, + g_strdup + (((ParseToken*)it->data)->data.string)); + } else { + yyerror("invalid string in names list"); + } + } else { + yyerror("syntax error (expected list of strings)"); } - g_free(path); - } + } else + yyerror("invalid option"); + parse_free_token(value); } -gboolean config_set(char *name, ConfigValueType type, ConfigValue value) +void config_startup() { - ConfigDefEntry *def; - gboolean ret = FALSE; - - name = g_ascii_strdown(name, -1); - - /*g_datalist_foreach(&config_def, print_config, NULL);*/ - def = g_datalist_get_data(&config_def, name); - - if (def == NULL) { - g_warning("Invalid config option '%s'", name); - } else { - if (def->hasList) { - gboolean found = FALSE; - GSList *it; - - it = def->values; - g_assert(it != NULL); - do { - if (g_ascii_strcasecmp(it->data, value.string) == 0) { - found = TRUE; - break; - } - } while ((it = it->next)); - - if (!found) - g_warning("Invalid value '%s' for config option '%s'", - value.string, name); - else - ret = TRUE; - } else if (type != def->type) { - g_warning("Incorrect type of value for config option '%s'", name); - } else - ret = TRUE; - - } - - if (ret) - config_set_entry(name, type, value); - else - g_free(name); - - return ret; -} + config_focus_new = TRUE; + config_focus_follow = FALSE; + config_focus_last = TRUE; + config_focus_last_on_desktop = TRUE; -gboolean config_get(char *name, ConfigValueType type, ConfigValue *value) -{ - ConfigEntry *entry; - gboolean ret = FALSE; - - name = g_ascii_strdown(name, -1); - entry = g_datalist_get_data(&config, name); - if (entry != NULL && entry->type == type) { - *value = entry->value; - ret = TRUE; - } - g_free(name); - return ret; -} + parse_reg_section("focus", NULL, parse_focus); -static void config_set_entry(char *name, ConfigValueType type, - ConfigValue value) -{ - ConfigEntry *entry = NULL; - - entry = g_new(ConfigEntry, 1); - entry->name = name; - entry->type = type; - if (type == Config_String) - entry->value.string = g_strdup(value.string); - else - entry->value = value; - - g_datalist_set_data_full(&config, name, entry, - (GDestroyNotify)config_free_entry); -} + config_theme = NULL; -static void config_free_entry(ConfigEntry *entry) -{ - g_free(entry->name); - entry->name = NULL; - if(entry->type == Config_String) { - g_free(entry->value.string); - entry->value.string = NULL; - } - g_free(entry); -} + parse_reg_section("theme", NULL, parse_theme); -ConfigDefEntry *config_def_new(char *name, ConfigValueType type, - char *descriptive_name, char *long_description) -{ - ConfigDefEntry *entry; - - entry = g_new(ConfigDefEntry, 1); - entry->name = g_ascii_strdown(name, -1); - entry->descriptive_name = g_strdup(descriptive_name); - entry->long_description = g_strdup(long_description); - entry->hasList = FALSE; - entry->type = type; - entry->values = NULL; - return entry; + config_desktops_num = 4; + config_desktops_names = NULL; + + parse_reg_section("desktops", NULL, parse_desktops); } -static void config_def_free(ConfigDefEntry *entry) +void config_shutdown() { GSList *it; - g_free(entry->name); - g_free(entry->descriptive_name); - g_free(entry->long_description); - if (entry->hasList) { - for (it = entry->values; it != NULL; it = it->next) - g_free(it->data); - g_slist_free(entry->values); - } - g_free(entry); -} - -gboolean config_def_add_value(ConfigDefEntry *entry, char *value) -{ - if (entry->type != Config_String) { - g_warning("Tried adding value to non-string config definition"); - return FALSE; - } - - entry->hasList = TRUE; - entry->values = g_slist_append(entry->values, g_ascii_strdown(value, -1)); - return TRUE; -} + g_free(config_theme); -gboolean config_def_set(ConfigDefEntry *entry) -{ - gboolean ret = FALSE; - ConfigDefEntry *def; - - if ((def = g_datalist_get_data(&config_def, entry->name))) { - g_assert(def != entry); /* adding it twice!? */ - g_warning("Definition already set for config option '%s'. ", - entry->name); - config_def_free(entry); - } else { - g_datalist_set_data_full(&config_def, entry->name, entry, - (GDestroyNotify)config_def_free); - ret = TRUE; - } - - return ret; + for (it = config_desktops_names; it; it = it->next) + g_free(it->data); + g_slist_free(config_desktops_names); }