2018-11-28 21:03:42 +01:00
|
|
|
#ifndef ROOTSTON_SWITCH_H
|
|
|
|
#define ROOTSTON_SWITCH_H
|
|
|
|
|
|
|
|
#include "rootston/input.h"
|
|
|
|
|
|
|
|
struct roots_switch {
|
2019-01-21 17:56:19 +01:00
|
|
|
struct roots_seat *seat;
|
|
|
|
struct wlr_input_device *device;
|
|
|
|
struct wl_listener device_destroy;
|
2018-11-28 21:03:42 +01:00
|
|
|
|
2019-01-21 17:56:19 +01:00
|
|
|
struct wl_listener toggle;
|
|
|
|
struct wl_list link;
|
2018-11-28 21:03:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void roots_switch_handle_toggle(struct roots_switch *lid_switch,
|
2019-01-21 17:56:19 +01:00
|
|
|
struct wlr_event_switch_toggle *event);
|
2018-11-28 21:03:42 +01:00
|
|
|
|
2019-01-21 17:56:19 +01:00
|
|
|
#endif
|