aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/seat.h
blob: f6db63cc9adcd6094362a7810b23320af720249f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _ROOTSTON_SEAT_H
#define _ROOTSTON_SEAT_H

#include <wayland-server.h>

#include "rootston/input.h"
#include "rootston/keyboard.h"

struct roots_seat {
	struct roots_input *input;
	struct wlr_seat *seat;
	struct wl_list keyboards;
	struct wl_list link;
};

struct roots_seat *roots_seat_create(struct roots_input *input, char *name);

void roots_seat_destroy(struct roots_seat *seat);

void roots_seat_add_keyboard(struct roots_seat *seat,
		struct roots_keyboard *keyboard);

void roots_seat_remove_keyboard(struct roots_seat *seat,
		struct roots_keyboard *keyboard);

#endif