2003-04-08 07:31:26 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "parse.h"
|
|
|
|
|
|
|
|
gboolean config_focus_new;
|
|
|
|
gboolean config_focus_follow;
|
|
|
|
gboolean config_focus_last;
|
|
|
|
gboolean config_focus_last_on_desktop;
|
2003-05-09 16:57:17 +00:00
|
|
|
gboolean config_focus_popup;
|
2003-04-08 07:31:26 +00:00
|
|
|
|
2003-04-13 07:27:21 +00:00
|
|
|
char *config_theme;
|
2003-04-08 07:31:26 +00:00
|
|
|
|
|
|
|
int config_desktops_num;
|
|
|
|
GSList *config_desktops_names;
|
|
|
|
|
|
|
|
static void parse_focus(char *name, ParseToken *value)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
2003-05-09 16:57:17 +00:00
|
|
|
} else if (!g_ascii_strcasecmp(name, "cyclingdialog")) {
|
|
|
|
if (value->type != TOKEN_BOOL)
|
|
|
|
yyerror("invalid value");
|
|
|
|
else {
|
|
|
|
config_focus_popup = value->data.bool;
|
|
|
|
}
|
2003-04-08 07:31:26 +00:00
|
|
|
} else
|
|
|
|
yyerror("invalid option");
|
|
|
|
parse_free_token(value);
|
|
|
|
}
|
|
|
|
|
2003-04-13 07:27:21 +00:00
|
|
|
static void parse_theme(char *name, ParseToken *value)
|
2003-04-08 07:31:26 +00:00
|
|
|
{
|
2003-04-13 07:27:21 +00:00
|
|
|
if (!g_ascii_strcasecmp(name, "theme")) {
|
2003-04-08 07:31:26 +00:00
|
|
|
if (value->type != TOKEN_STRING)
|
|
|
|
yyerror("invalid value");
|
|
|
|
else {
|
2003-04-13 07:27:21 +00:00
|
|
|
g_free(config_theme);
|
|
|
|
config_theme = g_strdup(value->data.string);
|
2003-04-08 07:31:26 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
yyerror("invalid option");
|
|
|
|
parse_free_token(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_desktops(char *name, ParseToken *value)
|
|
|
|
{
|
|
|
|
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)");
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
yyerror("invalid option");
|
|
|
|
parse_free_token(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void config_startup()
|
|
|
|
{
|
|
|
|
config_focus_new = TRUE;
|
|
|
|
config_focus_follow = FALSE;
|
|
|
|
config_focus_last = TRUE;
|
|
|
|
config_focus_last_on_desktop = TRUE;
|
2003-05-09 16:57:17 +00:00
|
|
|
config_focus_popup = TRUE;
|
2003-04-08 07:31:26 +00:00
|
|
|
|
|
|
|
parse_reg_section("focus", NULL, parse_focus);
|
|
|
|
|
2003-04-13 07:27:21 +00:00
|
|
|
config_theme = NULL;
|
2003-04-08 07:31:26 +00:00
|
|
|
|
2003-04-13 07:27:21 +00:00
|
|
|
parse_reg_section("theme", NULL, parse_theme);
|
2003-04-08 07:31:26 +00:00
|
|
|
|
|
|
|
config_desktops_num = 4;
|
|
|
|
config_desktops_names = NULL;
|
|
|
|
|
|
|
|
parse_reg_section("desktops", NULL, parse_desktops);
|
|
|
|
}
|
|
|
|
|
|
|
|
void config_shutdown()
|
|
|
|
{
|
|
|
|
GSList *it;
|
|
|
|
|
2003-04-13 07:27:21 +00:00
|
|
|
g_free(config_theme);
|
2003-04-08 07:31:26 +00:00
|
|
|
|
|
|
|
for (it = config_desktops_names; it; it = it->next)
|
|
|
|
g_free(it->data);
|
|
|
|
g_slist_free(config_desktops_names);
|
|
|
|
}
|