wlroots/include/rootston/config.h

134 lines
2.9 KiB
C
Raw Normal View History

2018-02-12 20:29:23 +00:00
#ifndef ROOTSTON_CONFIG_H
#define ROOTSTON_CONFIG_H
#include <xf86drmMode.h>
2017-09-23 00:24:32 +00:00
#include <wlr/types/wlr_input_device.h>
#include <wlr/types/wlr_switch.h>
2018-02-12 20:29:23 +00:00
#include <wlr/types/wlr_output_layout.h>
2017-09-23 00:24:32 +00:00
2017-11-18 16:34:24 +00:00
#define ROOTS_CONFIG_DEFAULT_SEAT_NAME "seat0"
struct roots_output_mode_config {
drmModeModeInfo info;
struct wl_list link;
};
struct roots_output_config {
2017-09-23 00:24:32 +00:00
char *name;
2018-01-04 14:48:28 +00:00
bool enable;
2017-09-23 00:24:32 +00:00
enum wl_output_transform transform;
int x, y;
2017-12-15 00:00:03 +00:00
float scale;
2017-09-23 00:24:32 +00:00
struct wl_list link;
struct {
int width, height;
float refresh_rate;
} mode;
struct wl_list modes;
2017-09-23 00:24:32 +00:00
};
struct roots_device_config {
2017-09-23 00:24:32 +00:00
char *name;
2017-11-18 16:34:24 +00:00
char *seat;
2017-09-23 00:24:32 +00:00
char *mapped_output;
bool tap_enabled;
2017-09-23 00:24:32 +00:00
struct wlr_box *mapped_box;
struct wl_list link;
};
struct roots_binding_config {
uint32_t modifiers;
xkb_keysym_t *keysyms;
size_t keysyms_len;
char *command;
struct wl_list link;
};
struct roots_keyboard_config {
2017-10-26 17:59:32 +00:00
char *name;
2017-11-18 16:34:24 +00:00
char *seat;
2017-10-26 17:59:32 +00:00
uint32_t meta_key;
char *rules;
char *model;
char *layout;
char *variant;
char *options;
2017-12-08 16:03:05 +00:00
int repeat_rate, repeat_delay;
2017-10-26 17:59:32 +00:00
struct wl_list link;
};
2017-11-18 16:34:24 +00:00
struct roots_cursor_config {
char *seat;
char *mapped_output;
struct wlr_box *mapped_box;
char *theme;
2017-12-11 09:36:22 +00:00
char *default_image;
2017-11-18 16:34:24 +00:00
struct wl_list link;
};
struct roots_switch_config {
char *name;
enum wlr_switch_type switch_type;
enum wlr_switch_state switch_state;
char *command;
struct wl_list link;
};
2017-09-23 00:24:32 +00:00
struct roots_config {
2017-10-06 06:41:50 +00:00
bool xwayland;
bool xwayland_lazy;
2017-09-23 00:24:32 +00:00
struct wl_list outputs;
struct wl_list devices;
struct wl_list bindings;
2017-10-26 17:59:32 +00:00
struct wl_list keyboards;
2017-11-18 16:34:24 +00:00
struct wl_list cursors;
struct wl_list switches;
2017-09-23 00:24:32 +00:00
char *config_path;
char *startup_cmd;
bool debug_damage_tracking;
2017-09-23 00:24:32 +00:00
};
/**
* Create a roots config from the given command line arguments. Command line
* arguments can specify the location of the config file. If it is not
* specified, the default location will be used.
*/
struct roots_config *roots_config_create_from_args(int argc, char *argv[]);
2017-09-23 00:24:32 +00:00
/**
* Destroy the config and free its resources.
*/
2017-09-23 00:24:32 +00:00
void roots_config_destroy(struct roots_config *config);
/**
* Get configuration for the output. If the output is not configured, returns
* NULL.
*/
struct roots_output_config *roots_config_get_output(struct roots_config *config,
2017-10-26 17:59:32 +00:00
struct wlr_output *output);
2017-09-23 00:24:32 +00:00
/**
* Get configuration for the device. If the device is not configured, returns
* NULL.
*/
struct roots_device_config *roots_config_get_device(struct roots_config *config,
2017-10-26 17:59:32 +00:00
struct wlr_input_device *device);
/**
* Get configuration for the keyboard. If the keyboard is not configured,
* returns NULL. A NULL device returns the default config for keyboards.
2017-10-26 17:59:32 +00:00
*/
struct roots_keyboard_config *roots_config_get_keyboard(
2017-11-18 16:34:24 +00:00
struct roots_config *config, struct wlr_input_device *device);
/**
* Get configuration for the cursor. If the cursor is not configured, returns
* NULL. A NULL seat_name returns the default config for cursors.
*/
struct roots_cursor_config *roots_config_get_cursor(struct roots_config *config,
const char *seat_name);
2017-09-23 00:24:32 +00:00
#endif