aboutsummaryrefslogtreecommitdiff
path: root/examples/config.h
blob: cd19dc5ec72d65f9bdbf5a99486e81055f79a5cd (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
#ifndef _EXAMPLE_CONFIG_H
#define _EXAMPLE_CONFIG_H
#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200112L
#endif
#include <wlr/types/wlr_output_layout.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_geometry *mapped_geo;
	struct wl_list link;
};

struct example_config {
	struct {
		char *mapped_output;
		struct wlr_geometry *mapped_geo;
	} cursor;

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

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

void example_config_destroy(struct example_config *config);

struct wlr_output_layout *configure_layout(struct example_config *config,
		struct wl_list *outputs);
#endif