aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-11-11 11:04:36 -0500
committerGitHub <noreply@github.com>2017-11-11 11:04:36 -0500
commit2bee288090d930a09be5f9176a519c1ec02c63de (patch)
tree05e8baf4a40288189f746e55b15928caa2793b90 /include/rootston
parentc9916b998c90ea935c79f4fb93fd10f57e488a50 (diff)
parent7072ac87fd1f92cfe6e88a075ff0e8ac2901e870 (diff)
Merge pull request #411 from acrisci/refactor/config-cleanup
Refactor: cleanup config
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/config.h29
-rw-r--r--include/rootston/keyboard.h2
2 files changed, 19 insertions, 12 deletions
diff --git a/include/rootston/config.h b/include/rootston/config.h
index 872dc7b6..71ee61c7 100644
--- a/include/rootston/config.h
+++ b/include/rootston/config.h
@@ -2,9 +2,8 @@
#define _ROOTSTON_CONFIG_H
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_input_device.h>
-#include <wlr/types/wlr_cursor.h>
-struct output_config {
+struct roots_output_config {
char *name;
enum wl_output_transform transform;
int x, y;
@@ -16,7 +15,7 @@ struct output_config {
} mode;
};
-struct device_config {
+struct roots_device_config {
char *name;
char *mapped_output;
struct wlr_box *mapped_box;
@@ -24,7 +23,7 @@ struct device_config {
struct wl_list link;
};
-struct binding_config {
+struct roots_binding_config {
uint32_t modifiers;
xkb_keysym_t *keysyms;
size_t keysyms_len;
@@ -32,7 +31,7 @@ struct binding_config {
struct wl_list link;
};
-struct keyboard_config {
+struct roots_keyboard_config {
char *name;
uint32_t meta_key;
char *rules;
@@ -45,7 +44,7 @@ struct keyboard_config {
struct roots_config {
bool xwayland;
- // TODO: Multiple cursors, multiseat
+
struct {
char *mapped_output;
struct wlr_box *mapped_box;
@@ -59,29 +58,37 @@ struct roots_config {
char *startup_cmd;
};
-struct roots_config *parse_args(int argc, char *argv[]);
+/**
+ * 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 output_config *config_get_output(struct roots_config *config,
+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 device_config *config_get_device(struct roots_config *config,
+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 keyboard_config *config_get_keyboard(struct roots_config *config,
- struct wlr_input_device *device);
+struct roots_keyboard_config *roots_config_get_keyboard(
+ struct roots_config *config, struct wlr_input_device *device);
#endif
diff --git a/include/rootston/keyboard.h b/include/rootston/keyboard.h
index 51977f08..15e7c9c4 100644
--- a/include/rootston/keyboard.h
+++ b/include/rootston/keyboard.h
@@ -10,7 +10,7 @@ struct roots_keyboard {
struct roots_input *input;
struct roots_seat *seat;
struct wlr_input_device *device;
- struct keyboard_config *config;
+ struct roots_keyboard_config *config;
struct wl_list link;
struct wl_listener keyboard_key;