|
|
@ -115,7 +115,8 @@ static uint32_t parse_modifier(const char *symname) {
|
|
|
|
|
|
|
|
|
|
|
|
void add_binding_config(struct wl_list *bindings, const char* combination,
|
|
|
|
void add_binding_config(struct wl_list *bindings, const char* combination,
|
|
|
|
const char* command) {
|
|
|
|
const char* command) {
|
|
|
|
struct binding_config *bc = calloc(1, sizeof(struct binding_config));
|
|
|
|
struct roots_binding_config *bc =
|
|
|
|
|
|
|
|
calloc(1, sizeof(struct roots_binding_config));
|
|
|
|
|
|
|
|
|
|
|
|
xkb_keysym_t keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
|
|
|
xkb_keysym_t keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
|
|
|
char *symnames = strdup(combination);
|
|
|
|
char *symnames = strdup(combination);
|
|
|
@ -151,7 +152,7 @@ void add_binding_config(struct wl_list *bindings, const char* combination,
|
|
|
|
|
|
|
|
|
|
|
|
static void config_handle_keyboard(struct roots_config *config,
|
|
|
|
static void config_handle_keyboard(struct roots_config *config,
|
|
|
|
const char *device_name, const char *name, const char *value) {
|
|
|
|
const char *device_name, const char *name, const char *value) {
|
|
|
|
struct keyboard_config *kc;
|
|
|
|
struct roots_keyboard_config *kc;
|
|
|
|
bool found = false;
|
|
|
|
bool found = false;
|
|
|
|
wl_list_for_each(kc, &config->keyboards, link) {
|
|
|
|
wl_list_for_each(kc, &config->keyboards, link) {
|
|
|
|
if (strcmp(kc->name, device_name) == 0) {
|
|
|
|
if (strcmp(kc->name, device_name) == 0) {
|
|
|
@ -161,7 +162,7 @@ static void config_handle_keyboard(struct roots_config *config,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
if (!found) {
|
|
|
|
kc = calloc(1, sizeof(struct keyboard_config));
|
|
|
|
kc = calloc(1, sizeof(struct roots_keyboard_config));
|
|
|
|
kc->name = strdup(device_name);
|
|
|
|
kc->name = strdup(device_name);
|
|
|
|
wl_list_insert(&config->keyboards, &kc->link);
|
|
|
|
wl_list_insert(&config->keyboards, &kc->link);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -207,7 +208,7 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (strncmp(output_prefix, section, strlen(output_prefix)) == 0) {
|
|
|
|
} else if (strncmp(output_prefix, section, strlen(output_prefix)) == 0) {
|
|
|
|
const char *output_name = section + strlen(output_prefix);
|
|
|
|
const char *output_name = section + strlen(output_prefix);
|
|
|
|
struct output_config *oc;
|
|
|
|
struct roots_output_config *oc;
|
|
|
|
bool found = false;
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
|
|
|
|
wl_list_for_each(oc, &config->outputs, link) {
|
|
|
|
wl_list_for_each(oc, &config->outputs, link) {
|
|
|
@ -218,7 +219,7 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
if (!found) {
|
|
|
|
oc = calloc(1, sizeof(struct output_config));
|
|
|
|
oc = calloc(1, sizeof(struct roots_output_config));
|
|
|
|
oc->name = strdup(output_name);
|
|
|
|
oc->name = strdup(output_name);
|
|
|
|
oc->transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
oc->transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
oc->scale = 1;
|
|
|
|
oc->scale = 1;
|
|
|
@ -281,7 +282,7 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
|
|
|
} else if (strncmp(device_prefix, section, strlen(device_prefix)) == 0) {
|
|
|
|
} else if (strncmp(device_prefix, section, strlen(device_prefix)) == 0) {
|
|
|
|
const char *device_name = section + strlen(device_prefix);
|
|
|
|
const char *device_name = section + strlen(device_prefix);
|
|
|
|
|
|
|
|
|
|
|
|
struct device_config *dc;
|
|
|
|
struct roots_device_config *dc;
|
|
|
|
bool found = false;
|
|
|
|
bool found = false;
|
|
|
|
wl_list_for_each(dc, &config->devices, link) {
|
|
|
|
wl_list_for_each(dc, &config->devices, link) {
|
|
|
|
if (strcmp(dc->name, device_name) == 0) {
|
|
|
|
if (strcmp(dc->name, device_name) == 0) {
|
|
|
@ -291,7 +292,7 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
if (!found) {
|
|
|
|
dc = calloc(1, sizeof(struct device_config));
|
|
|
|
dc = calloc(1, sizeof(struct roots_device_config));
|
|
|
|
dc->name = strdup(device_name);
|
|
|
|
dc->name = strdup(device_name);
|
|
|
|
dc->seat = strdup("seat0");
|
|
|
|
dc->seat = strdup("seat0");
|
|
|
|
wl_list_insert(&config->devices, &dc->link);
|
|
|
|
wl_list_insert(&config->devices, &dc->link);
|
|
|
@ -311,7 +312,8 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (strcmp(section, "keyboard") == 0) {
|
|
|
|
} else if (strcmp(section, "keyboard") == 0) {
|
|
|
|
config_handle_keyboard(config, "", name, value);
|
|
|
|
config_handle_keyboard(config, "", name, value);
|
|
|
|
} else if (strncmp(keyboard_prefix, section, strlen(keyboard_prefix)) == 0) {
|
|
|
|
} else if (strncmp(keyboard_prefix,
|
|
|
|
|
|
|
|
section, strlen(keyboard_prefix)) == 0) {
|
|
|
|
const char *device_name = section + strlen(keyboard_prefix);
|
|
|
|
const char *device_name = section + strlen(keyboard_prefix);
|
|
|
|
config_handle_keyboard(config, device_name, name, value);
|
|
|
|
config_handle_keyboard(config, device_name, name, value);
|
|
|
|
} else if (strcmp(section, "bindings") == 0) {
|
|
|
|
} else if (strcmp(section, "bindings") == 0) {
|
|
|
@ -323,7 +325,7 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
|
|
|
return 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct roots_config *parse_args(int argc, char *argv[]) {
|
|
|
|
struct roots_config *roots_config_create_from_args(int argc, char *argv[]) {
|
|
|
|
struct roots_config *config = calloc(1, sizeof(struct roots_config));
|
|
|
|
struct roots_config *config = calloc(1, sizeof(struct roots_config));
|
|
|
|
if (config == NULL) {
|
|
|
|
if (config == NULL) {
|
|
|
|
return NULL;
|
|
|
|
return NULL;
|
|
|
@ -370,7 +372,8 @@ struct roots_config *parse_args(int argc, char *argv[]) {
|
|
|
|
add_binding_config(&config->bindings, "Logo+Shift+E", "exit");
|
|
|
|
add_binding_config(&config->bindings, "Logo+Shift+E", "exit");
|
|
|
|
add_binding_config(&config->bindings, "Ctrl+q", "close");
|
|
|
|
add_binding_config(&config->bindings, "Ctrl+q", "close");
|
|
|
|
add_binding_config(&config->bindings, "Alt+Tab", "next_window");
|
|
|
|
add_binding_config(&config->bindings, "Alt+Tab", "next_window");
|
|
|
|
struct keyboard_config *kc = calloc(1, sizeof(struct keyboard_config));
|
|
|
|
struct roots_keyboard_config *kc =
|
|
|
|
|
|
|
|
calloc(1, sizeof(struct roots_keyboard_config));
|
|
|
|
kc->meta_key = WLR_MODIFIER_LOGO;
|
|
|
|
kc->meta_key = WLR_MODIFIER_LOGO;
|
|
|
|
kc->name = strdup("");
|
|
|
|
kc->name = strdup("");
|
|
|
|
wl_list_insert(&config->keyboards, &kc->link);
|
|
|
|
wl_list_insert(&config->keyboards, &kc->link);
|
|
|
@ -386,13 +389,13 @@ struct roots_config *parse_args(int argc, char *argv[]) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void roots_config_destroy(struct roots_config *config) {
|
|
|
|
void roots_config_destroy(struct roots_config *config) {
|
|
|
|
struct output_config *oc, *otmp = NULL;
|
|
|
|
struct roots_output_config *oc, *otmp = NULL;
|
|
|
|
wl_list_for_each_safe(oc, otmp, &config->outputs, link) {
|
|
|
|
wl_list_for_each_safe(oc, otmp, &config->outputs, link) {
|
|
|
|
free(oc->name);
|
|
|
|
free(oc->name);
|
|
|
|
free(oc);
|
|
|
|
free(oc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct device_config *dc, *dtmp = NULL;
|
|
|
|
struct roots_device_config *dc, *dtmp = NULL;
|
|
|
|
wl_list_for_each_safe(dc, dtmp, &config->devices, link) {
|
|
|
|
wl_list_for_each_safe(dc, dtmp, &config->devices, link) {
|
|
|
|
free(dc->name);
|
|
|
|
free(dc->name);
|
|
|
|
free(dc->seat);
|
|
|
|
free(dc->seat);
|
|
|
@ -401,7 +404,7 @@ void roots_config_destroy(struct roots_config *config) {
|
|
|
|
free(dc);
|
|
|
|
free(dc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct keyboard_config *kc, *ktmp = NULL;
|
|
|
|
struct roots_keyboard_config *kc, *ktmp = NULL;
|
|
|
|
wl_list_for_each_safe(kc, ktmp, &config->bindings, link) {
|
|
|
|
wl_list_for_each_safe(kc, ktmp, &config->bindings, link) {
|
|
|
|
free(kc->name);
|
|
|
|
free(kc->name);
|
|
|
|
free(kc->rules);
|
|
|
|
free(kc->rules);
|
|
|
@ -412,7 +415,7 @@ void roots_config_destroy(struct roots_config *config) {
|
|
|
|
free(kc);
|
|
|
|
free(kc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct binding_config *bc, *btmp = NULL;
|
|
|
|
struct roots_binding_config *bc, *btmp = NULL;
|
|
|
|
wl_list_for_each_safe(bc, btmp, &config->bindings, link) {
|
|
|
|
wl_list_for_each_safe(bc, btmp, &config->bindings, link) {
|
|
|
|
free(bc->keysyms);
|
|
|
|
free(bc->keysyms);
|
|
|
|
free(bc->command);
|
|
|
|
free(bc->command);
|
|
|
@ -425,9 +428,9 @@ void roots_config_destroy(struct roots_config *config) {
|
|
|
|
free(config);
|
|
|
|
free(config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct output_config *config_get_output(struct roots_config *config,
|
|
|
|
struct roots_output_config *roots_config_get_output(struct roots_config *config,
|
|
|
|
struct wlr_output *output) {
|
|
|
|
struct wlr_output *output) {
|
|
|
|
struct output_config *o_config;
|
|
|
|
struct roots_output_config *o_config;
|
|
|
|
wl_list_for_each(o_config, &config->outputs, link) {
|
|
|
|
wl_list_for_each(o_config, &config->outputs, link) {
|
|
|
|
if (strcmp(o_config->name, output->name) == 0) {
|
|
|
|
if (strcmp(o_config->name, output->name) == 0) {
|
|
|
|
return o_config;
|
|
|
|
return o_config;
|
|
|
@ -437,9 +440,9 @@ struct output_config *config_get_output(struct roots_config *config,
|
|
|
|
return NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct device_config *config_get_device(struct roots_config *config,
|
|
|
|
struct roots_device_config *roots_config_get_device(struct roots_config *config,
|
|
|
|
struct wlr_input_device *device) {
|
|
|
|
struct wlr_input_device *device) {
|
|
|
|
struct device_config *d_config;
|
|
|
|
struct roots_device_config *d_config;
|
|
|
|
wl_list_for_each(d_config, &config->devices, link) {
|
|
|
|
wl_list_for_each(d_config, &config->devices, link) {
|
|
|
|
if (strcmp(d_config->name, device->name) == 0) {
|
|
|
|
if (strcmp(d_config->name, device->name) == 0) {
|
|
|
|
return d_config;
|
|
|
|
return d_config;
|
|
|
@ -449,9 +452,9 @@ struct device_config *config_get_device(struct roots_config *config,
|
|
|
|
return NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct keyboard_config *config_get_keyboard(struct roots_config *config,
|
|
|
|
struct roots_keyboard_config *roots_config_get_keyboard(
|
|
|
|
struct wlr_input_device *device) {
|
|
|
|
struct roots_config *config, struct wlr_input_device *device) {
|
|
|
|
struct keyboard_config *kc;
|
|
|
|
struct roots_keyboard_config *kc;
|
|
|
|
wl_list_for_each(kc, &config->keyboards, link) {
|
|
|
|
wl_list_for_each(kc, &config->keyboards, link) {
|
|
|
|
if ((device != NULL && strcmp(kc->name, device->name) == 0) ||
|
|
|
|
if ((device != NULL && strcmp(kc->name, device->name) == 0) ||
|
|
|
|
(device == NULL && strcmp(kc->name, "") == 0)) {
|
|
|
|
(device == NULL && strcmp(kc->name, "") == 0)) {
|
|
|
|