mirror of
https://github.com/swaywm/sway.git
synced 2026-04-26 06:46:26 -04:00
input include directory
This commit is contained in:
parent
ec7fc42a00
commit
d76e745b73
7 changed files with 10 additions and 10 deletions
22
include/sway/input/input-manager.h
Normal file
22
include/sway/input/input-manager.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef _SWAY_INPUT_MANAGER_H
|
||||
#define _SWAY_INPUT_MANAGER_H
|
||||
#include <libinput.h>
|
||||
#include "sway/server.h"
|
||||
#include "sway/config.h"
|
||||
#include "list.h"
|
||||
|
||||
struct sway_input_manager {
|
||||
struct wl_listener input_add;
|
||||
struct wl_listener input_remove;
|
||||
struct sway_server *server;
|
||||
list_t *seats;
|
||||
};
|
||||
|
||||
struct input_config *new_input_config(const char* identifier);
|
||||
|
||||
char* libinput_dev_unique_id(struct libinput_device *dev);
|
||||
|
||||
struct sway_input_manager *sway_input_manager_create(
|
||||
struct sway_server *server);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue