aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/config.h
blob: 5fa4890f0ee8cff9aba5820dfcd8ea2277307466 (plain)
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
#ifndef _ROOTSTON_CONFIG_H
#define _ROOTSTON_CONFIG_H
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_input_device.h>
#include <wlr/types/wlr_cursor.h>

struct output_config {
	char *name;
	enum wl_output_transform transform;
	int x, y;
	struct wl_list link;
};

struct device_config {
	char *name;
	char *mapped_output;
	struct wlr_box *mapped_box;
	struct wl_list link;
};

struct binding_config {
	uint32_t modifiers;
	xkb_keysym_t *keysyms;
	size_t keysyms_len;
	char *command;
	struct wl_list link;
};

struct roots_config {
	bool xwayland;
	// TODO: Multiple cursors, multiseat
	struct {
		char *mapped_output;
		struct wlr_box *mapped_box;
	} cursor;

	struct {
		uint32_t meta_key;
	} keyboard;

	struct wl_list outputs;
	struct wl_list devices;
	struct wl_list bindings;
	char *config_path;
	char *startup_cmd;
};

struct roots_config *parse_args(int argc, char *argv[]);

void roots_config_destroy(struct roots_config *config);

/**
 * Get configuration for the output. If the output is not configured, returns
 * NULL.
 */
struct output_config *config_get_output(struct roots_config *config,
		struct wlr_output *output);

/**
 * Get configuration for the device. If the device is not configured, returns
 * NULL.
 */
struct device_config *config_get_device(struct roots_config *config,
		struct wlr_input_device *device);

#endif