aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/input.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-08-09 08:34:59 +0900
committerDrew DeVault <sir@cmpwn.com>2019-08-09 08:34:59 +0900
commit58b2584863201f32d1a4770a1d5cde5e57b300c6 (patch)
tree5e24e6cbb4078eff9c0d1aaeadd24134edea2b90 /include/rootston/input.h
parent913cac18359d7962e74892771bf6bd3ecf54a4a1 (diff)
Remove rootston
Diffstat (limited to 'include/rootston/input.h')
-rw-r--r--include/rootston/input.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/rootston/input.h b/include/rootston/input.h
deleted file mode 100644
index a799db59..00000000
--- a/include/rootston/input.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef ROOTSTON_INPUT_H
-#define ROOTSTON_INPUT_H
-
-#include <wayland-server-core.h>
-#include <wlr/types/wlr_cursor.h>
-#include <wlr/types/wlr_input_device.h>
-#include <wlr/types/wlr_seat.h>
-#include "rootston/config.h"
-#include "rootston/cursor.h"
-#include "rootston/server.h"
-#include "rootston/view.h"
-
-struct roots_input {
- struct roots_config *config;
- struct roots_server *server;
-
- struct wl_listener new_input;
-
- struct wl_list seats; // roots_seat::link
-};
-
-struct roots_input *input_create(struct roots_server *server,
- struct roots_config *config);
-void input_destroy(struct roots_input *input);
-
-struct roots_seat *input_seat_from_wlr_seat(struct roots_input *input,
- struct wlr_seat *seat);
-
-bool input_view_has_focus(struct roots_input *input, struct roots_view *view);
-
-struct roots_seat *input_get_seat(struct roots_input *input, char *name);
-
-struct roots_seat *input_last_active_seat(struct roots_input *input);
-
-void input_update_cursor_focus(struct roots_input *input);
-
-#endif