2017-08-24 19:26:51 +00:00
|
|
|
#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;
|
|
|
|
};
|
|
|
|
|
2017-08-25 13:40:01 +00:00
|
|
|
struct device_config {
|
|
|
|
char *name;
|
|
|
|
char *mapped_output;
|
2017-08-25 17:26:13 +00:00
|
|
|
struct wlr_geometry *mapped_geo;
|
2017-08-25 13:40:01 +00:00
|
|
|
struct wl_list link;
|
|
|
|
};
|
|
|
|
|
2017-08-24 19:26:51 +00:00
|
|
|
struct example_config {
|
2017-08-25 12:58:02 +00:00
|
|
|
struct {
|
|
|
|
char *mapped_output;
|
2017-08-25 17:26:13 +00:00
|
|
|
struct wlr_geometry *mapped_geo;
|
2017-08-25 12:58:02 +00:00
|
|
|
} cursor;
|
|
|
|
|
2017-08-24 19:26:51 +00:00
|
|
|
struct wl_list outputs;
|
2017-08-25 13:40:01 +00:00
|
|
|
struct wl_list devices;
|
2017-08-25 12:06:38 +00:00
|
|
|
char *config_path;
|
2017-08-24 19:26:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|