b77e40e1c7
add config options to the rc3 for the dock. create a window_map, add DockApps to the ObWindow types, use the window_map for translating windows into objects for event handling (only one lookup now) and remove the old maps (client_map, menu_map).
248 lines
7.8 KiB
C
248 lines
7.8 KiB
C
#include "config.h"
|
|
#include "parse.h"
|
|
|
|
gboolean config_focus_new;
|
|
gboolean config_focus_follow;
|
|
gboolean config_focus_last;
|
|
gboolean config_focus_last_on_desktop;
|
|
gboolean config_focus_popup;
|
|
|
|
char *config_theme;
|
|
|
|
int config_desktops_num;
|
|
GSList *config_desktops_names;
|
|
|
|
gboolean config_opaque_move;
|
|
gboolean config_opaque_resize;
|
|
|
|
StackLayer config_dock_layer;
|
|
DockPosition config_dock_pos;
|
|
int config_dock_x;
|
|
int config_dock_y;
|
|
gboolean config_dock_horz;
|
|
gboolean config_dock_hide;
|
|
guint config_dock_hide_timeout;
|
|
|
|
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;
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "cyclingdialog")) {
|
|
if (value->type != TOKEN_BOOL)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_focus_popup = value->data.bool;
|
|
}
|
|
} else
|
|
yyerror("invalid option");
|
|
parse_free_token(value);
|
|
}
|
|
|
|
static void parse_theme(char *name, ParseToken *value)
|
|
{
|
|
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);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
static void parse_moveresize(char *name, ParseToken *value)
|
|
{
|
|
if (!g_ascii_strcasecmp(name, "opaque_move")) {
|
|
if (value->type != TOKEN_BOOL)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_opaque_move = value->data.integer;
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "opaque_resize")) {
|
|
if (value->type != TOKEN_BOOL)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_opaque_resize = value->data.integer;
|
|
}
|
|
} else
|
|
yyerror("invalid option");
|
|
parse_free_token(value);
|
|
}
|
|
|
|
static void parse_dock(char *name, ParseToken *value)
|
|
{
|
|
if (!g_ascii_strcasecmp(name, "stacking")) {
|
|
if (value->type != TOKEN_STRING)
|
|
yyerror("invalid value");
|
|
else {
|
|
if (!g_ascii_strcasecmp(value->data.string, "bottom"))
|
|
config_dock_layer = Layer_Below;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "normal"))
|
|
config_dock_layer = Layer_Normal;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "top"))
|
|
config_dock_layer = Layer_Top;
|
|
else
|
|
yyerror("invalid layer");
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "position")) {
|
|
if (value->type != TOKEN_STRING)
|
|
yyerror("invalid value");
|
|
else {
|
|
if (!g_ascii_strcasecmp(value->data.string, "topleft"))
|
|
config_dock_pos = DockPos_TopLeft;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "top"))
|
|
config_dock_pos = DockPos_Top;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "topright"))
|
|
config_dock_pos = DockPos_TopRight;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "right"))
|
|
config_dock_pos = DockPos_Right;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "bottomright"))
|
|
config_dock_pos = DockPos_BottomRight;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "bottom"))
|
|
config_dock_pos = DockPos_Bottom;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "bottomleft"))
|
|
config_dock_pos = DockPos_BottomLeft;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "left"))
|
|
config_dock_pos = DockPos_Left;
|
|
else if (!g_ascii_strcasecmp(value->data.string, "floating"))
|
|
config_dock_pos = DockPos_Floating;
|
|
else
|
|
yyerror("invalid position");
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "floatingx")) {
|
|
if (value->type != TOKEN_INTEGER)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_dock_x = value->data.integer;
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "floatingy")) {
|
|
if (value->type != TOKEN_INTEGER)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_dock_y = value->data.integer;
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "horizontal")) {
|
|
if (value->type != TOKEN_BOOL)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_dock_horz = value->data.bool;
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "autohide")) {
|
|
if (value->type != TOKEN_BOOL)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_dock_hide = value->data.bool;
|
|
}
|
|
} else if (!g_ascii_strcasecmp(name, "hidetimeout")) {
|
|
if (value->type != TOKEN_INTEGER)
|
|
yyerror("invalid value");
|
|
else {
|
|
config_dock_hide_timeout = value->data.integer;
|
|
}
|
|
} 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;
|
|
config_focus_popup = TRUE;
|
|
|
|
parse_reg_section("focus", NULL, parse_focus);
|
|
|
|
config_theme = NULL;
|
|
|
|
parse_reg_section("theme", NULL, parse_theme);
|
|
|
|
config_desktops_num = 4;
|
|
config_desktops_names = NULL;
|
|
|
|
parse_reg_section("desktops", NULL, parse_desktops);
|
|
|
|
config_opaque_move = TRUE;
|
|
config_opaque_resize = TRUE;
|
|
|
|
parse_reg_section("moveresize", NULL, parse_moveresize);
|
|
|
|
config_dock_layer = Layer_Top;
|
|
config_dock_pos = DockPos_TopRight;
|
|
config_dock_x = 0;
|
|
config_dock_y = 0;
|
|
config_dock_horz = FALSE;
|
|
config_dock_hide = FALSE;
|
|
config_dock_hide_timeout = 3000;
|
|
|
|
parse_reg_section("dock", NULL, parse_dock);
|
|
}
|
|
|
|
void config_shutdown()
|
|
{
|
|
GSList *it;
|
|
|
|
g_free(config_theme);
|
|
|
|
for (it = config_desktops_names; it; it = it->next)
|
|
g_free(it->data);
|
|
g_slist_free(config_desktops_names);
|
|
}
|