aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/client.c
blob: ce5193818676199edfca135a79002c5c912eca6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include "log.h"
#include "sway/commands.h"
#include "sway/config.h"
#include "sway/tree/container.h"

static bool parse_color(char *hexstring, float (*dest)[4]) {
	if (hexstring[0] != '#') {
		return false;
	}

	if (strlen(hexstring) != 7) {
		return false;
	}

	++hexstring;
	char *end;
	uint32_t decimal = strtol(hexstring, &end, 16);

	if (*end != '\0') {
		return false;
	}

	(*dest)[0] = ((decimal >> 16) & 0xff) / 255.0;
	(*dest)[1] = ((decimal >> 8) & 0xff) / 255.0;
	(*dest)[2] = (decimal & 0xff) / 255.0;
	(*dest)[3] = 1.0;
	return true;
}

static struct cmd_results *handle_command(int argc, char **argv,
		struct border_colors *class, char *cmd_name) {
	struct cmd_results *error = NULL;
	if ((error = checkarg(argc, cmd_name, EXPECTED_EQUAL_TO, 5))) {
		return error;
	}

	if (!parse_color(argv[0], &class->border)) {
		return cmd_results_new(CMD_INVALID, cmd_name,
				"Unable to parse border color");
	}

	if (!parse_color(argv[1], &class->background)) {
		return cmd_results_new(CMD_INVALID, cmd_name,
				"Unable to parse background color");
	}

	if (!parse_color(argv[2], &class->text)) {
		return cmd_results_new(CMD_INVALID, cmd_name,
				"Unable to parse text color");
	}

	if (!parse_color(argv[3], &class->indicator)) {
		return cmd_results_new(CMD_INVALID, cmd_name,
				"Unable to parse indicator color");
	}

	if (!parse_color(argv[4], &class->child_border)) {
		return cmd_results_new(CMD_INVALID, cmd_name,
				"Unable to parse child border color");
	}

	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}

struct cmd_results *cmd_client_focused(int argc, char **argv) {
	return handle_command(argc, argv, &config->border_colors.focused, "client.focused");
}

struct cmd_results *cmd_client_focused_inactive(int argc, char **argv) {
	return handle_command(argc, argv, &config->border_colors.focused_inactive, "client.focused_inactive");
}

struct cmd_results *cmd_client_unfocused(int argc, char **argv) {
	return handle_command(argc, argv, &config->border_colors.unfocused, "client.unfocused");
}

struct cmd_results *cmd_client_urgent(int argc, char **argv) {
	return handle_command(argc, argv, &config->border_colors.urgent, "client.urgent");
}