mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
94 lines
2.1 KiB
C
94 lines
2.1 KiB
C
#ifndef _ROOTSTON_CONFIG_H
|
|
#define _ROOTSTON_CONFIG_H
|
|
#include <wlr/types/wlr_output_layout.h>
|
|
#include <wlr/types/wlr_input_device.h>
|
|
|
|
struct roots_output_config {
|
|
char *name;
|
|
enum wl_output_transform transform;
|
|
int x, y;
|
|
int scale;
|
|
struct wl_list link;
|
|
struct {
|
|
int width, height;
|
|
float refresh_rate;
|
|
} mode;
|
|
};
|
|
|
|
struct roots_device_config {
|
|
char *name;
|
|
char *mapped_output;
|
|
struct wlr_box *mapped_box;
|
|
char *seat;
|
|
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 {
|
|
char *name;
|
|
uint32_t meta_key;
|
|
char *rules;
|
|
char *model;
|
|
char *layout;
|
|
char *variant;
|
|
char *options;
|
|
struct wl_list link;
|
|
};
|
|
|
|
struct roots_config {
|
|
bool xwayland;
|
|
|
|
struct {
|
|
char *mapped_output;
|
|
struct wlr_box *mapped_box;
|
|
} cursor;
|
|
|
|
struct wl_list outputs;
|
|
struct wl_list devices;
|
|
struct wl_list bindings;
|
|
struct wl_list keyboards;
|
|
char *config_path;
|
|
char *startup_cmd;
|
|
};
|
|
|
|
/**
|
|
* 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[]);
|
|
|
|
/**
|
|
* Destroy the config and free its resources.
|
|
*/
|
|
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,
|
|
struct wlr_output *output);
|
|
|
|
/**
|
|
* 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,
|
|
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.
|
|
*/
|
|
struct roots_keyboard_config *roots_config_get_keyboard(
|
|
struct roots_config *config, struct wlr_input_device *device);
|
|
|
|
#endif
|