aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/switch.h
blob: 28197774347372059e15b3d076f6575b0384241f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ROOTSTON_SWITCH_H
#define ROOTSTON_SWITCH_H

#include "rootston/input.h"

struct roots_switch {
    struct roots_seat *seat;
    struct wlr_input_device *device;
    struct wl_listener device_destroy;

    struct wl_listener toggle;
    struct wl_list link;
};

void roots_switch_handle_toggle(struct roots_switch *lid_switch,
        struct wlr_event_switch_toggle *event);

#endif // ROOTSTON_SWITCH_H