mirror of
https://github.com/swaywm/sway.git
synced 2026-04-26 06:46:26 -04:00
rename input to input-manager
This commit is contained in:
parent
338a0399f8
commit
21ce20885a
5 changed files with 12 additions and 9 deletions
19
include/sway/input-manager.h
Normal file
19
include/sway/input-manager.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef _SWAY_INPUT_H
|
||||
#define _SWAY_INPUT_H
|
||||
#include <libinput.h>
|
||||
#include "sway/server.h"
|
||||
#include "config.h"
|
||||
#include "list.h"
|
||||
|
||||
struct sway_input_manager {
|
||||
list_t *input_devices;
|
||||
};
|
||||
|
||||
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