wlroots-hyprland/include/wlr/backend/session.h

121 lines
2.7 KiB
C
Raw Normal View History

#ifndef WLR_BACKEND_SESSION_H
#define WLR_BACKEND_SESSION_H
2017-05-03 04:11:22 +02:00
2018-02-12 21:29:23 +01:00
#include <stdbool.h>
2017-05-14 03:07:34 +02:00
#include <sys/types.h>
#include <wayland-server-core.h>
2017-05-13 13:56:40 +02:00
struct libseat;
2017-05-13 15:12:47 +02:00
struct wlr_device {
int fd;
int device_id;
dev_t dev;
struct wl_list link;
struct {
struct wl_signal change; // struct wlr_device_change_event
struct wl_signal remove;
} events;
};
2017-05-13 15:12:47 +02:00
struct wlr_session {
2017-07-09 13:02:41 +02:00
/*
* Signal for when the session becomes active/inactive.
* It's called when we swap virtual terminal.
*/
2017-07-09 07:53:13 +02:00
bool active;
2018-06-14 10:46:16 +02:00
/*
* 0 if virtual terminals are not supported
* i.e. seat != "seat0"
*/
2017-07-09 07:53:13 +02:00
unsigned vtnr;
2018-06-14 10:46:16 +02:00
char seat[256];
2017-08-26 04:02:04 +02:00
struct udev *udev;
struct udev_monitor *mon;
struct wl_event_source *udev_event;
struct libseat *seat_handle;
struct wl_event_source *libseat_event;
2017-08-26 04:02:04 +02:00
struct wl_list devices;
struct wl_event_loop *event_loop;
struct wl_listener event_loop_destroy;
struct {
struct wl_signal active;
struct wl_signal add_drm_card; // struct wlr_session_add_event
struct wl_signal destroy;
} events;
2017-05-13 15:12:47 +02:00
};
2017-05-03 04:11:22 +02:00
struct wlr_session_add_event {
const char *path;
};
enum wlr_device_change_type {
WLR_DEVICE_HOTPLUG = 1,
WLR_DEVICE_LEASE,
};
struct wlr_device_hotplug_event {
uint32_t connector_id;
uint32_t prop_id;
};
struct wlr_device_change_event {
enum wlr_device_change_type type;
union {
struct wlr_device_hotplug_event hotplug;
};
};
2017-07-09 13:02:41 +02:00
/*
* Opens a session, taking control of the current virtual terminal.
* This should not be called if another program is already in control
* of the terminal (Xorg, another Wayland compositor, etc.).
*
* Returns NULL on error.
*/
struct wlr_session *wlr_session_create(struct wl_event_loop *loop);
2017-07-09 13:02:41 +02:00
/*
* Closes a previously opened session and restores the virtual terminal.
* You should call wlr_session_close_file() on each files you opened
* with wlr_session_open_file() before you call this.
2017-07-09 13:02:41 +02:00
*/
void wlr_session_destroy(struct wlr_session *session);
2017-07-09 13:02:41 +02:00
/*
* Opens the file at path.
*
* This can only be used to open DRM or evdev (input) devices. Files opened via
* this function must be closed by calling wlr_session_close_file().
2017-07-09 13:02:41 +02:00
*
* When the session becomes inactive:
*
2017-07-09 13:02:41 +02:00
* - DRM files lose their DRM master status
* - evdev files become invalid and should be closed
*/
struct wlr_device *wlr_session_open_file(struct wlr_session *session,
const char *path);
2017-07-09 13:02:41 +02:00
/*
* Closes a file previously opened with wlr_session_open_file().
2017-07-09 13:02:41 +02:00
*/
void wlr_session_close_file(struct wlr_session *session,
struct wlr_device *device);
2017-07-09 13:02:41 +02:00
/*
* Changes the virtual terminal.
*/
2017-07-09 07:53:13 +02:00
bool wlr_session_change_vt(struct wlr_session *session, unsigned vt);
2017-05-03 04:11:22 +02:00
ssize_t wlr_session_find_gpus(struct wlr_session *session,
size_t ret_len, struct wlr_device **ret);
2017-08-26 04:02:04 +02:00
2017-05-03 04:11:22 +02:00
#endif