2017-08-24 21:26:51 +02: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>
|
2017-09-05 14:24:53 +02:00
|
|
|
#include <wlr/types/wlr_input_device.h>
|
2017-09-05 23:18:37 +02:00
|
|
|
#include <wlr/types/wlr_cursor.h>
|
|
|
|
#include "shared.h"
|
2017-08-24 21:26:51 +02:00
|
|
|
|
|
|
|
struct output_config {
|
|
|
|
char *name;
|
|
|
|
enum wl_output_transform transform;
|
|
|
|
int x, y;
|
|
|
|
struct wl_list link;
|
|
|
|
};
|
|
|
|
|
2017-08-25 15:40:01 +02:00
|
|
|
struct device_config {
|
|
|
|
char *name;
|
|
|
|
char *mapped_output;
|
2017-08-29 18:08:49 +02:00
|
|
|
struct wlr_box *mapped_box;
|
2017-08-25 15:40:01 +02:00
|
|
|
struct wl_list link;
|
|
|
|
};
|
|
|
|
|
2017-08-24 21:26:51 +02:00
|
|
|
struct example_config {
|
2017-08-25 14:58:02 +02:00
|
|
|
struct {
|
|
|
|
char *mapped_output;
|
2017-08-29 18:08:49 +02:00
|
|
|
struct wlr_box *mapped_box;
|
2017-08-25 14:58:02 +02:00
|
|
|
} cursor;
|
|
|
|
|
2017-08-24 21:26:51 +02:00
|
|
|
struct wl_list outputs;
|
2017-08-25 15:40:01 +02:00
|
|
|
struct wl_list devices;
|
2017-08-25 14:06:38 +02:00
|
|
|
char *config_path;
|
2017-08-24 21:26:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct example_config *parse_args(int argc, char *argv[]);
|
|
|
|
|
|
|
|
void example_config_destroy(struct example_config *config);
|
|
|
|
|
2017-08-30 16:39:22 +02:00
|
|
|
/**
|
|
|
|
* Get configuration for the output. If the output is not configured, returns
|
|
|
|
* NULL.
|
|
|
|
*/
|
|
|
|
struct output_config *example_config_get_output(struct example_config *config,
|
|
|
|
struct wlr_output *output);
|
|
|
|
|
2017-09-05 14:24:53 +02:00
|
|
|
/**
|
|
|
|
* Get configuration for the device. If the device is not configured, returns
|
|
|
|
* NULL.
|
|
|
|
*/
|
|
|
|
struct device_config *example_config_get_device(struct example_config *config,
|
|
|
|
struct wlr_input_device *device);
|
|
|
|
|
2017-09-05 23:18:37 +02:00
|
|
|
/**
|
|
|
|
* Configure cursor device mappings.
|
|
|
|
*/
|
|
|
|
void example_config_configure_cursor(struct example_config *config,
|
|
|
|
struct wlr_cursor *cursor, struct compositor_state *state);
|
|
|
|
|
2017-08-24 21:26:51 +02:00
|
|
|
#endif
|