xdg-desktop-portal-hyprland/include/xdpw.h

73 lines
2.0 KiB
C
Raw Normal View History

2018-12-12 22:29:57 +01:00
#ifndef XDPW_H
#define XDPW_H
#include <wayland-client.h>
#ifdef HAVE_LIBSYSTEMD
2018-12-12 22:29:57 +01:00
#include <systemd/sd-bus.h>
#elif HAVE_LIBELOGIND
#include <elogind/sd-bus.h>
#elif HAVE_BASU
#include <basu/sd-bus.h>
#endif
2023-03-26 01:20:47 +01:00
#include "config.h"
#include "global_shortcuts.h"
#include "screencast_common.h"
2022-08-22 23:15:02 +02:00
#include "screenshot_common.h"
struct xdpw_state {
2023-03-26 01:20:47 +01:00
struct wl_list xdpw_sessions;
sd_bus *bus;
struct wl_display *wl_display;
struct pw_loop *pw_loop;
struct xdpw_screencast_context screencast;
uint32_t screencast_source_types; // bitfield of enum source_types
uint32_t screencast_cursor_modes; // bitfield of enum cursor_modes
uint32_t screencast_version;
uint32_t screenshot_version;
struct xdpw_config *config;
int timer_poll_fd;
struct wl_list timers;
struct xdpw_timer *next_timer;
struct globalShortcutsInstance shortcutsInstance;
};
2018-12-12 22:29:57 +01:00
2018-12-13 18:03:44 +01:00
struct xdpw_request {
2023-03-26 01:20:47 +01:00
sd_bus_slot *slot;
2018-12-13 18:03:44 +01:00
};
2019-12-09 12:55:12 +01:00
struct xdpw_session {
2023-03-26 01:20:47 +01:00
struct wl_list link;
sd_bus_slot *slot;
char *session_handle;
char *app_id;
struct xdpw_screencast_instance *screencast_instance;
2019-12-09 12:55:12 +01:00
};
typedef void (*xdpw_event_loop_timer_func_t)(void *data);
struct xdpw_timer {
2023-03-26 01:20:47 +01:00
struct xdpw_state *state;
xdpw_event_loop_timer_func_t func;
void *user_data;
struct timespec at;
struct wl_list link; // xdpw_state::timers
};
2023-03-26 01:20:47 +01:00
enum { PORTAL_RESPONSE_SUCCESS = 0, PORTAL_RESPONSE_CANCELLED = 1, PORTAL_RESPONSE_ENDED = 2 };
int xdpw_screenshot_init(struct xdpw_state *state);
int xdpw_screencast_init(struct xdpw_state *state);
2018-12-12 22:29:57 +01:00
struct xdpw_request *xdpw_request_create(sd_bus *bus, const char *object_path);
void xdpw_request_destroy(struct xdpw_request *req);
2018-12-13 18:03:44 +01:00
struct xdpw_session *xdpw_session_create(struct xdpw_state *state, sd_bus *bus, char *object_path);
void xdpw_session_destroy(struct xdpw_session *req);
2019-12-09 12:55:12 +01:00
2023-03-26 01:20:47 +01:00
struct xdpw_timer *xdpw_add_timer(struct xdpw_state *state, uint64_t delay_ns, xdpw_event_loop_timer_func_t func, void *data);
void xdpw_destroy_timer(struct xdpw_timer *timer);
2018-12-12 22:29:57 +01:00
#endif