1211a81aad
This commit mostly duplicates the wlr_log functions, although with a sway_* prefix. (This is very similar to PR #2009.) However, the logging function no longer needs to be replaceable, so sway_log_init's second argument is used to set the exit callback for sway_abort. wlr_log_init is still invoked in sway/main.c This commit makes it easier to remove the wlroots dependency for the helper programs swaymsg, swaybg, swaybar, and swaynag.
85 lines
2.3 KiB
C
85 lines
2.3 KiB
C
#include <libevdev/libevdev.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/input/cursor.h"
|
|
#include "list.h"
|
|
#include "log.h"
|
|
#include "stringop.h"
|
|
|
|
static struct cmd_results *bar_cmd_bind(int argc, char **argv, bool code) {
|
|
const char *command = code ? "bar bindcode" : "bar bindsym";
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, command, EXPECTED_AT_LEAST, 2))) {
|
|
return error;
|
|
}
|
|
if (!config->current_bar) {
|
|
return cmd_results_new(CMD_FAILURE, "No bar defined.");
|
|
}
|
|
|
|
struct bar_binding *binding = calloc(1, sizeof(struct bar_binding));
|
|
if (!binding) {
|
|
return cmd_results_new(CMD_FAILURE, "Unable to allocate bar binding");
|
|
}
|
|
|
|
binding->release = false;
|
|
if (strcmp("--release", argv[0]) == 0) {
|
|
binding->release = true;
|
|
argv++;
|
|
argc--;
|
|
}
|
|
|
|
char *message = NULL;
|
|
if (code) {
|
|
binding->button = get_mouse_bindcode(argv[0], &message);
|
|
} else {
|
|
binding->button = get_mouse_bindsym(argv[0], &message);
|
|
}
|
|
if (message) {
|
|
free_bar_binding(binding);
|
|
error = cmd_results_new(CMD_INVALID, message);
|
|
free(message);
|
|
return error;
|
|
} else if (!binding->button) {
|
|
free_bar_binding(binding);
|
|
return cmd_results_new(CMD_INVALID, "Unknown button %s", argv[0]);
|
|
}
|
|
const char *name = get_mouse_button_name(binding->button);
|
|
|
|
binding->command = join_args(argv + 1, argc - 1);
|
|
|
|
list_t *bindings = config->current_bar->bindings;
|
|
bool overwritten = false;
|
|
for (int i = 0; i < bindings->length; i++) {
|
|
struct bar_binding *other = bindings->items[i];
|
|
if (other->button == binding->button &&
|
|
other->release == binding->release) {
|
|
overwritten = true;
|
|
bindings->items[i] = binding;
|
|
free_bar_binding(other);
|
|
sway_log(SWAY_DEBUG, "[bar %s] Updated binding for %u (%s)%s",
|
|
config->current_bar->id, binding->button, name,
|
|
binding->release ? " - release" : "");
|
|
break;
|
|
}
|
|
}
|
|
if (!overwritten) {
|
|
list_add(bindings, binding);
|
|
sway_log(SWAY_DEBUG, "[bar %s] Added binding for %u (%s)%s",
|
|
config->current_bar->id, binding->button, name,
|
|
binding->release ? " - release" : "");
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|
|
|
|
struct cmd_results *bar_cmd_bindcode(int argc, char **argv) {
|
|
return bar_cmd_bind(argc, argv, true);
|
|
}
|
|
|
|
struct cmd_results *bar_cmd_bindsym(int argc, char **argv) {
|
|
return bar_cmd_bind(argc, argv, false);
|
|
}
|